116ef52c2d414376c703c30acf68849cd66d45be
1#include "cache.h"
2#include "pkt-line.h"
3#include "run-command.h"
4
5char packet_buffer[LARGE_PACKET_MAX];
6static const char *packet_trace_prefix = "git";
7static struct trace_key trace_packet = TRACE_KEY_INIT(PACKET);
8static struct trace_key trace_pack = TRACE_KEY_INIT(PACKFILE);
9
10void packet_trace_identity(const char *prog)
11{
12 packet_trace_prefix = xstrdup(prog);
13}
14
15static const char *get_trace_prefix(void)
16{
17 return in_async() ? "sideband" : packet_trace_prefix;
18}
19
20static int packet_trace_pack(const char *buf, unsigned int len, int sideband)
21{
22 if (!sideband) {
23 trace_verbatim(&trace_pack, buf, len);
24 return 1;
25 } else if (len && *buf == '\1') {
26 trace_verbatim(&trace_pack, buf + 1, len - 1);
27 return 1;
28 } else {
29 /* it's another non-pack sideband */
30 return 0;
31 }
32}
33
34static void packet_trace(const char *buf, unsigned int len, int write)
35{
36 int i;
37 struct strbuf out;
38 static int in_pack, sideband;
39
40 if (!trace_want(&trace_packet) && !trace_want(&trace_pack))
41 return;
42
43 if (in_pack) {
44 if (packet_trace_pack(buf, len, sideband))
45 return;
46 } else if (starts_with(buf, "PACK") || starts_with(buf, "\1PACK")) {
47 in_pack = 1;
48 sideband = *buf == '\1';
49 packet_trace_pack(buf, len, sideband);
50
51 /*
52 * Make a note in the human-readable trace that the pack data
53 * started.
54 */
55 buf = "PACK ...";
56 len = strlen(buf);
57 }
58
59 if (!trace_want(&trace_packet))
60 return;
61
62 /* +32 is just a guess for header + quoting */
63 strbuf_init(&out, len+32);
64
65 strbuf_addf(&out, "packet: %12s%c ",
66 get_trace_prefix(), write ? '>' : '<');
67
68 /* XXX we should really handle printable utf8 */
69 for (i = 0; i < len; i++) {
70 /* suppress newlines */
71 if (buf[i] == '\n')
72 continue;
73 if (buf[i] >= 0x20 && buf[i] <= 0x7e)
74 strbuf_addch(&out, buf[i]);
75 else
76 strbuf_addf(&out, "\\%o", buf[i]);
77 }
78
79 strbuf_addch(&out, '\n');
80 trace_strbuf(&trace_packet, &out);
81 strbuf_release(&out);
82}
83
84/*
85 * If we buffered things up above (we don't, but we should),
86 * we'd flush it here
87 */
88void packet_flush(int fd)
89{
90 packet_trace("0000", 4, 1);
91 write_or_die(fd, "0000", 4);
92}
93
94void packet_buf_flush(struct strbuf *buf)
95{
96 packet_trace("0000", 4, 1);
97 strbuf_add(buf, "0000", 4);
98}
99
100static void set_packet_header(char *buf, const int size)
101{
102 static char hexchar[] = "0123456789abcdef";
103
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);
108 buf[3] = hex(size);
109 #undef hex
110}
111
112static void format_packet(struct strbuf *out, const char *fmt, va_list args)
113{
114 size_t orig_len, n;
115
116 orig_len = out->len;
117 strbuf_addstr(out, "0000");
118 strbuf_vaddf(out, fmt, args);
119 n = out->len - orig_len;
120
121 if (n > LARGE_PACKET_MAX)
122 die("protocol error: impossibly long line");
123
124 set_packet_header(&out->buf[orig_len], n);
125 packet_trace(out->buf + orig_len + 4, n - 4, 1);
126}
127
128void packet_write_fmt(int fd, const char *fmt, ...)
129{
130 static struct strbuf buf = STRBUF_INIT;
131 va_list args;
132
133 strbuf_reset(&buf);
134 va_start(args, fmt);
135 format_packet(&buf, fmt, args);
136 va_end(args);
137 write_or_die(fd, buf.buf, buf.len);
138}
139
140void packet_buf_write(struct strbuf *buf, const char *fmt, ...)
141{
142 va_list args;
143
144 va_start(args, fmt);
145 format_packet(buf, fmt, args);
146 va_end(args);
147}
148
149static int get_packet_data(int fd, char **src_buf, size_t *src_size,
150 void *dst, unsigned size, int options)
151{
152 ssize_t ret;
153
154 if (fd >= 0 && src_buf && *src_buf)
155 die("BUG: multiple sources given to packet_read");
156
157 /* Read up to "size" bytes from our source, whatever it is. */
158 if (src_buf && *src_buf) {
159 ret = size < *src_size ? size : *src_size;
160 memcpy(dst, *src_buf, ret);
161 *src_buf += ret;
162 *src_size -= ret;
163 } else {
164 ret = read_in_full(fd, dst, size);
165 if (ret < 0)
166 die_errno("read error");
167 }
168
169 /* And complain if we didn't get enough bytes to satisfy the read. */
170 if (ret < size) {
171 if (options & PACKET_READ_GENTLE_ON_EOF)
172 return -1;
173
174 die("The remote end hung up unexpectedly");
175 }
176
177 return ret;
178}
179
180static int packet_length(const char *linelen)
181{
182 int val = hex2chr(linelen);
183 return (val < 0) ? val : (val << 8) | hex2chr(linelen + 2);
184}
185
186int packet_read(int fd, char **src_buf, size_t *src_len,
187 char *buffer, unsigned size, int options)
188{
189 int len, ret;
190 char linelen[4];
191
192 ret = get_packet_data(fd, src_buf, src_len, linelen, 4, options);
193 if (ret < 0)
194 return ret;
195 len = packet_length(linelen);
196 if (len < 0)
197 die("protocol error: bad line length character: %.4s", linelen);
198 if (!len) {
199 packet_trace("0000", 4, 0);
200 return 0;
201 }
202 len -= 4;
203 if (len >= size)
204 die("protocol error: bad line length %d", len);
205 ret = get_packet_data(fd, src_buf, src_len, buffer, len, options);
206 if (ret < 0)
207 return ret;
208
209 if ((options & PACKET_READ_CHOMP_NEWLINE) &&
210 len && buffer[len-1] == '\n')
211 len--;
212
213 buffer[len] = 0;
214 packet_trace(buffer, len, 0);
215 return len;
216}
217
218static char *packet_read_line_generic(int fd,
219 char **src, size_t *src_len,
220 int *dst_len)
221{
222 int len = packet_read(fd, src, src_len,
223 packet_buffer, sizeof(packet_buffer),
224 PACKET_READ_CHOMP_NEWLINE);
225 if (dst_len)
226 *dst_len = len;
227 return len ? packet_buffer : NULL;
228}
229
230char *packet_read_line(int fd, int *len_p)
231{
232 return packet_read_line_generic(fd, NULL, NULL, len_p);
233}
234
235char *packet_read_line_buf(char **src, size_t *src_len, int *dst_len)
236{
237 return packet_read_line_generic(-1, src, src_len, dst_len);
238}