3 #include "run-command.h"
5 char packet_buffer[LARGE_PACKET_MAX];
6 static const char *packet_trace_prefix = "git";
7 static struct trace_key trace_packet = TRACE_KEY_INIT(PACKET);
8 static struct trace_key trace_pack = TRACE_KEY_INIT(PACKFILE);
10 void packet_trace_identity(const char *prog)
12 packet_trace_prefix = xstrdup(prog);
15 static const char *get_trace_prefix(void)
17 return in_async() ? "sideband" : packet_trace_prefix;
20 static int packet_trace_pack(const char *buf, unsigned int len, int sideband)
23 trace_verbatim(&trace_pack, buf, len);
25 } else if (len && *buf == '\1') {
26 trace_verbatim(&trace_pack, buf + 1, len - 1);
29 /* it's another non-pack sideband */
34 static void packet_trace(const char *buf, unsigned int len, int write)
38 static int in_pack, sideband;
40 if (!trace_want(&trace_packet) && !trace_want(&trace_pack))
44 if (packet_trace_pack(buf, len, sideband))
46 } else if (starts_with(buf, "PACK") || starts_with(buf, "\1PACK")) {
48 sideband = *buf == '\1';
49 packet_trace_pack(buf, len, sideband);
52 * Make a note in the human-readable trace that the pack data
59 if (!trace_want(&trace_packet))
62 /* +32 is just a guess for header + quoting */
63 strbuf_init(&out, len+32);
65 strbuf_addf(&out, "packet: %12s%c ",
66 get_trace_prefix(), write ? '>' : '<');
68 /* XXX we should really handle printable utf8 */
69 for (i = 0; i < len; i++) {
70 /* suppress newlines */
73 if (buf[i] >= 0x20 && buf[i] <= 0x7e)
74 strbuf_addch(&out, buf[i]);
76 strbuf_addf(&out, "\\%o", buf[i]);
79 strbuf_addch(&out, '\n');
80 trace_strbuf(&trace_packet, &out);
85 * If we buffered things up above (we don't, but we should),
88 void packet_flush(int fd)
90 packet_trace("0000", 4, 1);
91 write_or_die(fd, "0000", 4);
94 void packet_buf_flush(struct strbuf *buf)
96 packet_trace("0000", 4, 1);
97 strbuf_add(buf, "0000", 4);
100 static void set_packet_header(char *buf, const int size)
102 static char hexchar[] = "0123456789abcdef";
104 #define hex(a) (hexchar[(a) & 15])
105 buf[0] = hex(size >> 12);
106 buf[1] = hex(size >> 8);
107 buf[2] = hex(size >> 4);
112 static void format_packet(struct strbuf *out, const char *fmt, va_list args)
117 strbuf_addstr(out, "0000");
118 strbuf_vaddf(out, fmt, args);
119 n = out->len - orig_len;
121 if (n > LARGE_PACKET_MAX)
122 die("protocol error: impossibly long line");
124 set_packet_header(&out->buf[orig_len], n);
125 packet_trace(out->buf + orig_len + 4, n - 4, 1);
128 static int packet_write_fmt_1(int fd, int gently,
129 const char *fmt, va_list args)
131 struct strbuf buf = STRBUF_INIT;
134 format_packet(&buf, fmt, args);
135 count = write_in_full(fd, buf.buf, buf.len);
136 if (count == buf.len)
141 die_errno("packet write with format failed");
143 return error("packet write with format failed");
146 void packet_write_fmt(int fd, const char *fmt, ...)
151 packet_write_fmt_1(fd, 0, fmt, args);
155 int packet_write_fmt_gently(int fd, const char *fmt, ...)
161 status = packet_write_fmt_1(fd, 1, fmt, args);
166 void packet_buf_write(struct strbuf *buf, const char *fmt, ...)
171 format_packet(buf, fmt, args);
175 static int get_packet_data(int fd, char **src_buf, size_t *src_size,
176 void *dst, unsigned size, int options)
180 if (fd >= 0 && src_buf && *src_buf)
181 die("BUG: multiple sources given to packet_read");
183 /* Read up to "size" bytes from our source, whatever it is. */
184 if (src_buf && *src_buf) {
185 ret = size < *src_size ? size : *src_size;
186 memcpy(dst, *src_buf, ret);
190 ret = read_in_full(fd, dst, size);
192 die_errno("read error");
195 /* And complain if we didn't get enough bytes to satisfy the read. */
197 if (options & PACKET_READ_GENTLE_ON_EOF)
200 die("The remote end hung up unexpectedly");
206 static int packet_length(const char *linelen)
208 int val = hex2chr(linelen);
209 return (val < 0) ? val : (val << 8) | hex2chr(linelen + 2);
212 int packet_read(int fd, char **src_buf, size_t *src_len,
213 char *buffer, unsigned size, int options)
218 ret = get_packet_data(fd, src_buf, src_len, linelen, 4, options);
221 len = packet_length(linelen);
223 die("protocol error: bad line length character: %.4s", linelen);
225 packet_trace("0000", 4, 0);
230 die("protocol error: bad line length %d", len);
231 ret = get_packet_data(fd, src_buf, src_len, buffer, len, options);
235 if ((options & PACKET_READ_CHOMP_NEWLINE) &&
236 len && buffer[len-1] == '\n')
240 packet_trace(buffer, len, 0);
244 static char *packet_read_line_generic(int fd,
245 char **src, size_t *src_len,
248 int len = packet_read(fd, src, src_len,
249 packet_buffer, sizeof(packet_buffer),
250 PACKET_READ_CHOMP_NEWLINE);
253 return len ? packet_buffer : NULL;
256 char *packet_read_line(int fd, int *len_p)
258 return packet_read_line_generic(fd, NULL, NULL, len_p);
261 char *packet_read_line_buf(char **src, size_t *src_len, int *dst_len)
263 return packet_read_line_generic(-1, src, src_len, dst_len);