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 #define hex(a) (hexchar[(a) & 15])
101 static void format_packet(struct strbuf *out, const char *fmt, va_list args)
103 static char hexchar[] = "0123456789abcdef";
107 strbuf_addstr(out, "0000");
108 strbuf_vaddf(out, fmt, args);
109 n = out->len - orig_len;
111 if (n > LARGE_PACKET_MAX)
112 die("protocol error: impossibly long line");
114 out->buf[orig_len + 0] = hex(n >> 12);
115 out->buf[orig_len + 1] = hex(n >> 8);
116 out->buf[orig_len + 2] = hex(n >> 4);
117 out->buf[orig_len + 3] = hex(n);
118 packet_trace(out->buf + orig_len + 4, n - 4, 1);
121 void packet_write(int fd, const char *fmt, ...)
123 static struct strbuf buf = STRBUF_INIT;
128 format_packet(&buf, fmt, args);
130 write_or_die(fd, buf.buf, buf.len);
133 void packet_buf_write(struct strbuf *buf, const char *fmt, ...)
138 format_packet(buf, fmt, args);
142 static int get_packet_data(int fd, char **src_buf, size_t *src_size,
143 void *dst, unsigned size, int options)
147 if (fd >= 0 && src_buf && *src_buf)
148 die("BUG: multiple sources given to packet_read");
150 /* Read up to "size" bytes from our source, whatever it is. */
151 if (src_buf && *src_buf) {
152 ret = size < *src_size ? size : *src_size;
153 memcpy(dst, *src_buf, ret);
157 ret = read_in_full(fd, dst, size);
159 die_errno("read error");
162 /* And complain if we didn't get enough bytes to satisfy the read. */
164 if (options & PACKET_READ_GENTLE_ON_EOF)
167 die("The remote end hung up unexpectedly");
173 static int packet_length(const char *linelen)
178 for (n = 0; n < 4; n++) {
179 unsigned char c = linelen[n];
181 if (c >= '0' && c <= '9') {
185 if (c >= 'a' && c <= 'f') {
189 if (c >= 'A' && c <= 'F') {
198 int packet_read(int fd, char **src_buf, size_t *src_len,
199 char *buffer, unsigned size, int options)
204 ret = get_packet_data(fd, src_buf, src_len, linelen, 4, options);
207 len = packet_length(linelen);
209 die("protocol error: bad line length character: %.4s", linelen);
211 packet_trace("0000", 4, 0);
216 die("protocol error: bad line length %d", len);
217 ret = get_packet_data(fd, src_buf, src_len, buffer, len, options);
221 if ((options & PACKET_READ_CHOMP_NEWLINE) &&
222 len && buffer[len-1] == '\n')
226 packet_trace(buffer, len, 0);
230 static char *packet_read_line_generic(int fd,
231 char **src, size_t *src_len,
234 int len = packet_read(fd, src, src_len,
235 packet_buffer, sizeof(packet_buffer),
236 PACKET_READ_CHOMP_NEWLINE);
239 return len ? packet_buffer : NULL;
242 char *packet_read_line(int fd, int *len_p)
244 return packet_read_line_generic(fd, NULL, NULL, len_p);
247 char *packet_read_line_buf(char **src, size_t *src_len, int *dst_len)
249 return packet_read_line_generic(-1, src, src_len, dst_len);