Blame


1 93658fb9 2020-03-18 stsp /*
2 93658fb9 2020-03-18 stsp * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
3 93658fb9 2020-03-18 stsp *
4 93658fb9 2020-03-18 stsp * Permission to use, copy, modify, and distribute this software for any
5 93658fb9 2020-03-18 stsp * purpose with or without fee is hereby granted, provided that the above
6 93658fb9 2020-03-18 stsp * copyright notice and this permission notice appear in all copies.
7 93658fb9 2020-03-18 stsp *
8 93658fb9 2020-03-18 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 93658fb9 2020-03-18 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 93658fb9 2020-03-18 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 93658fb9 2020-03-18 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 93658fb9 2020-03-18 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 93658fb9 2020-03-18 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 93658fb9 2020-03-18 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 93658fb9 2020-03-18 stsp */
16 93658fb9 2020-03-18 stsp
17 93658fb9 2020-03-18 stsp #include <sys/types.h>
18 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
19 93658fb9 2020-03-18 stsp #include <sys/uio.h>
20 93658fb9 2020-03-18 stsp #include <sys/time.h>
21 93658fb9 2020-03-18 stsp #include <sys/stat.h>
22 93658fb9 2020-03-18 stsp
23 93658fb9 2020-03-18 stsp #include <stdint.h>
24 93658fb9 2020-03-18 stsp #include <errno.h>
25 93658fb9 2020-03-18 stsp #include <limits.h>
26 93658fb9 2020-03-18 stsp #include <signal.h>
27 93658fb9 2020-03-18 stsp #include <stdio.h>
28 93658fb9 2020-03-18 stsp #include <stdlib.h>
29 93658fb9 2020-03-18 stsp #include <string.h>
30 93658fb9 2020-03-18 stsp #include <ctype.h>
31 93658fb9 2020-03-18 stsp #include <fcntl.h>
32 81a12da5 2020-09-09 naddy #include <unistd.h>
33 93658fb9 2020-03-18 stsp #include <zlib.h>
34 93658fb9 2020-03-18 stsp #include <err.h>
35 dd038bc6 2021-09-21 thomas.ad
36 dd038bc6 2021-09-21 thomas.ad #include "got_compat.h"
37 93658fb9 2020-03-18 stsp
38 93658fb9 2020-03-18 stsp #include "got_error.h"
39 93658fb9 2020-03-18 stsp #include "got_object.h"
40 abe0f35f 2020-03-18 stsp #include "got_path.h"
41 8a29a085 2020-03-18 stsp #include "got_version.h"
42 f1c6967f 2020-03-19 stsp #include "got_fetch.h"
43 659e7fbd 2020-03-20 stsp #include "got_reference.h"
44 93658fb9 2020-03-18 stsp
45 93658fb9 2020-03-18 stsp #include "got_lib_sha1.h"
46 93658fb9 2020-03-18 stsp #include "got_lib_delta.h"
47 93658fb9 2020-03-18 stsp #include "got_lib_object.h"
48 93658fb9 2020-03-18 stsp #include "got_lib_object_parse.h"
49 93658fb9 2020-03-18 stsp #include "got_lib_privsep.h"
50 0872c0b0 2020-03-18 stsp #include "got_lib_pack.h"
51 f024663d 2021-09-05 stsp #include "got_lib_pkt.h"
52 bd3d9e54 2021-09-05 stsp #include "got_lib_gitproto.h"
53 b637eb2e 2022-02-23 thomas #include "got_lib_ratelimit.h"
54 9439b99a 2022-10-30 thomas
55 9439b99a 2022-10-30 thomas #ifndef MIN
56 9439b99a 2022-10-30 thomas #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
57 9439b99a 2022-10-30 thomas #endif
58 93658fb9 2020-03-18 stsp
59 8a29a085 2020-03-18 stsp #ifndef nitems
60 8a29a085 2020-03-18 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
61 8a29a085 2020-03-18 stsp #endif
62 8a29a085 2020-03-18 stsp
63 93658fb9 2020-03-18 stsp struct got_object *indexed;
64 858b0dfb 2020-03-20 stsp static int chattygot;
65 93658fb9 2020-03-18 stsp
66 bd3d9e54 2021-09-05 stsp static const struct got_capability got_capabilities[] = {
67 bd3d9e54 2021-09-05 stsp { GOT_CAPA_AGENT, "got/" GOT_VERSION_STR },
68 bd3d9e54 2021-09-05 stsp { GOT_CAPA_OFS_DELTA, NULL },
69 bd3d9e54 2021-09-05 stsp { GOT_CAPA_SIDE_BAND_64K, NULL },
70 bd3d9e54 2021-09-05 stsp };
71 bd3d9e54 2021-09-05 stsp
72 7848a0e1 2020-03-19 stsp static void
73 7848a0e1 2020-03-19 stsp match_remote_ref(struct got_pathlist_head *have_refs,
74 9d0a7ee3 2023-02-07 thomas struct got_object_id *my_id, const char *refname)
75 93658fb9 2020-03-18 stsp {
76 33501562 2020-03-18 stsp struct got_pathlist_entry *pe;
77 93658fb9 2020-03-18 stsp
78 7848a0e1 2020-03-19 stsp /* XXX zero-hash signifies we don't have this ref;
79 7848a0e1 2020-03-19 stsp * we should use a flag instead */
80 7848a0e1 2020-03-19 stsp memset(my_id, 0, sizeof(*my_id));
81 93658fb9 2020-03-18 stsp
82 33501562 2020-03-18 stsp TAILQ_FOREACH(pe, have_refs, entry) {
83 7848a0e1 2020-03-19 stsp struct got_object_id *id = pe->data;
84 b6b86fd1 2022-08-30 thomas if (strcmp(pe->path, refname) == 0) {
85 7848a0e1 2020-03-19 stsp memcpy(my_id, id, sizeof(*my_id));
86 33501562 2020-03-18 stsp break;
87 33501562 2020-03-18 stsp }
88 93658fb9 2020-03-18 stsp }
89 93658fb9 2020-03-18 stsp }
90 93658fb9 2020-03-18 stsp
91 93658fb9 2020-03-18 stsp static int
92 659e7fbd 2020-03-20 stsp match_branch(const char *branch, const char *wanted_branch)
93 93658fb9 2020-03-18 stsp {
94 659e7fbd 2020-03-20 stsp if (strncmp(branch, "refs/heads/", 11) != 0)
95 659e7fbd 2020-03-20 stsp return 0;
96 93658fb9 2020-03-18 stsp
97 659e7fbd 2020-03-20 stsp if (strncmp(wanted_branch, "refs/heads/", 11) == 0)
98 659e7fbd 2020-03-20 stsp wanted_branch += 11;
99 659e7fbd 2020-03-20 stsp
100 659e7fbd 2020-03-20 stsp return (strcmp(branch + 11, wanted_branch) == 0);
101 0e4002ca 2020-03-21 stsp }
102 0e4002ca 2020-03-21 stsp
103 0e4002ca 2020-03-21 stsp static int
104 0e4002ca 2020-03-21 stsp match_wanted_ref(const char *refname, const char *wanted_ref)
105 0e4002ca 2020-03-21 stsp {
106 0e4002ca 2020-03-21 stsp if (strncmp(refname, "refs/", 5) != 0)
107 0e4002ca 2020-03-21 stsp return 0;
108 0e4002ca 2020-03-21 stsp refname += 5;
109 0e4002ca 2020-03-21 stsp
110 0e4002ca 2020-03-21 stsp /*
111 0e4002ca 2020-03-21 stsp * Prevent fetching of references that won't make any
112 0e4002ca 2020-03-21 stsp * sense outside of the remote repository's context.
113 0e4002ca 2020-03-21 stsp */
114 0e4002ca 2020-03-21 stsp if (strncmp(refname, "got/", 4) == 0)
115 0e4002ca 2020-03-21 stsp return 0;
116 0e4002ca 2020-03-21 stsp if (strncmp(refname, "remotes/", 8) == 0)
117 0e4002ca 2020-03-21 stsp return 0;
118 0e4002ca 2020-03-21 stsp
119 0e4002ca 2020-03-21 stsp if (strncmp(wanted_ref, "refs/", 5) == 0)
120 0e4002ca 2020-03-21 stsp wanted_ref += 5;
121 0e4002ca 2020-03-21 stsp
122 0e4002ca 2020-03-21 stsp /* Allow prefix match. */
123 0e4002ca 2020-03-21 stsp if (got_path_is_child(refname, wanted_ref, strlen(wanted_ref)))
124 0e4002ca 2020-03-21 stsp return 1;
125 0e4002ca 2020-03-21 stsp
126 0e4002ca 2020-03-21 stsp /* Allow exact match. */
127 0e4002ca 2020-03-21 stsp return (strcmp(refname, wanted_ref) == 0);
128 abe0f35f 2020-03-18 stsp }
129 abe0f35f 2020-03-18 stsp
130 abe0f35f 2020-03-18 stsp static const struct got_error *
131 e70bf110 2020-03-22 stsp send_fetch_server_progress(struct imsgbuf *ibuf, const char *msg, size_t msglen)
132 e70bf110 2020-03-22 stsp {
133 e70bf110 2020-03-22 stsp if (msglen > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
134 e70bf110 2020-03-22 stsp return got_error(GOT_ERR_NO_SPACE);
135 e70bf110 2020-03-22 stsp
136 e70bf110 2020-03-22 stsp if (msglen == 0)
137 e70bf110 2020-03-22 stsp return NULL;
138 e70bf110 2020-03-22 stsp
139 e70bf110 2020-03-22 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_SERVER_PROGRESS, 0, 0, -1,
140 e70bf110 2020-03-22 stsp msg, msglen) == -1)
141 e70bf110 2020-03-22 stsp return got_error_from_errno(
142 e70bf110 2020-03-22 stsp "imsg_compose FETCH_SERVER_PROGRESS");
143 e70bf110 2020-03-22 stsp
144 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
145 531c3985 2020-03-18 stsp }
146 531c3985 2020-03-18 stsp
147 531c3985 2020-03-18 stsp static const struct got_error *
148 b637eb2e 2022-02-23 thomas send_fetch_download_progress(struct imsgbuf *ibuf, off_t bytes,
149 b637eb2e 2022-02-23 thomas struct got_ratelimit *rl)
150 e70bf110 2020-03-22 stsp {
151 b637eb2e 2022-02-23 thomas const struct got_error *err;
152 b637eb2e 2022-02-23 thomas int elapsed = 0;
153 b637eb2e 2022-02-23 thomas
154 b637eb2e 2022-02-23 thomas if (rl) {
155 b637eb2e 2022-02-23 thomas err = got_ratelimit_check(&elapsed, rl);
156 b637eb2e 2022-02-23 thomas if (err || !elapsed)
157 b637eb2e 2022-02-23 thomas return err;
158 b637eb2e 2022-02-23 thomas }
159 b637eb2e 2022-02-23 thomas
160 e70bf110 2020-03-22 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_DOWNLOAD_PROGRESS, 0, 0, -1,
161 e70bf110 2020-03-22 stsp &bytes, sizeof(bytes)) == -1)
162 e70bf110 2020-03-22 stsp return got_error_from_errno(
163 e70bf110 2020-03-22 stsp "imsg_compose FETCH_DOWNLOAD_PROGRESS");
164 e70bf110 2020-03-22 stsp
165 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
166 e70bf110 2020-03-22 stsp }
167 e70bf110 2020-03-22 stsp
168 e70bf110 2020-03-22 stsp static const struct got_error *
169 1d72a2a0 2020-03-24 stsp send_fetch_done(struct imsgbuf *ibuf, uint8_t *pack_sha1)
170 e70bf110 2020-03-22 stsp {
171 e70bf110 2020-03-22 stsp if (imsg_compose(ibuf, GOT_IMSG_FETCH_DONE, 0, 0, -1,
172 1d72a2a0 2020-03-24 stsp pack_sha1, SHA1_DIGEST_LENGTH) == -1)
173 e70bf110 2020-03-22 stsp return got_error_from_errno("imsg_compose FETCH");
174 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
175 e70bf110 2020-03-22 stsp }
176 e70bf110 2020-03-22 stsp
177 e70bf110 2020-03-22 stsp static const struct got_error *
178 531c3985 2020-03-18 stsp fetch_progress(struct imsgbuf *ibuf, const char *buf, size_t len)
179 531c3985 2020-03-18 stsp {
180 6059809a 2020-12-17 stsp size_t i;
181 531c3985 2020-03-18 stsp
182 531c3985 2020-03-18 stsp if (len == 0)
183 531c3985 2020-03-18 stsp return NULL;
184 531c3985 2020-03-18 stsp
185 531c3985 2020-03-18 stsp /*
186 531c3985 2020-03-18 stsp * Truncate messages which exceed the maximum imsg payload size.
187 531c3985 2020-03-18 stsp * Server may send up to 64k.
188 531c3985 2020-03-18 stsp */
189 531c3985 2020-03-18 stsp if (len > MAX_IMSGSIZE - IMSG_HEADER_SIZE)
190 531c3985 2020-03-18 stsp len = MAX_IMSGSIZE - IMSG_HEADER_SIZE;
191 531c3985 2020-03-18 stsp
192 531c3985 2020-03-18 stsp /* Only allow printable ASCII. */
193 531c3985 2020-03-18 stsp for (i = 0; i < len; i++) {
194 531c3985 2020-03-18 stsp if (isprint((unsigned char)buf[i]) ||
195 531c3985 2020-03-18 stsp isspace((unsigned char)buf[i]))
196 531c3985 2020-03-18 stsp continue;
197 531c3985 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKET,
198 531c3985 2020-03-18 stsp "non-printable progress message received from server");
199 531c3985 2020-03-18 stsp }
200 531c3985 2020-03-18 stsp
201 e70bf110 2020-03-22 stsp return send_fetch_server_progress(ibuf, buf, len);
202 8a29a085 2020-03-18 stsp }
203 abe0f35f 2020-03-18 stsp
204 8a29a085 2020-03-18 stsp static const struct got_error *
205 531c3985 2020-03-18 stsp fetch_error(const char *buf, size_t len)
206 531c3985 2020-03-18 stsp {
207 531c3985 2020-03-18 stsp static char msg[1024];
208 6059809a 2020-12-17 stsp size_t i;
209 531c3985 2020-03-18 stsp
210 531c3985 2020-03-18 stsp for (i = 0; i < len && i < sizeof(msg) - 1; i++) {
211 6771d425 2022-11-17 thomas if (!isprint((unsigned char)buf[i]))
212 531c3985 2020-03-18 stsp return got_error_msg(GOT_ERR_BAD_PACKET,
213 531c3985 2020-03-18 stsp "non-printable error message received from server");
214 531c3985 2020-03-18 stsp msg[i] = buf[i];
215 531c3985 2020-03-18 stsp }
216 531c3985 2020-03-18 stsp msg[i] = '\0';
217 531c3985 2020-03-18 stsp return got_error_msg(GOT_ERR_FETCH_FAILED, msg);
218 531c3985 2020-03-18 stsp }
219 531c3985 2020-03-18 stsp
220 531c3985 2020-03-18 stsp static const struct got_error *
221 e70bf110 2020-03-22 stsp send_fetch_symrefs(struct imsgbuf *ibuf, struct got_pathlist_head *symrefs)
222 e70bf110 2020-03-22 stsp {
223 e70bf110 2020-03-22 stsp struct ibuf *wbuf;
224 e70bf110 2020-03-22 stsp size_t len, nsymrefs = 0;
225 e70bf110 2020-03-22 stsp struct got_pathlist_entry *pe;
226 e70bf110 2020-03-22 stsp
227 e70bf110 2020-03-22 stsp len = sizeof(struct got_imsg_fetch_symrefs);
228 e70bf110 2020-03-22 stsp TAILQ_FOREACH(pe, symrefs, entry) {
229 e70bf110 2020-03-22 stsp const char *target = pe->data;
230 e70bf110 2020-03-22 stsp len += sizeof(struct got_imsg_fetch_symref) +
231 e70bf110 2020-03-22 stsp pe->path_len + strlen(target);
232 e70bf110 2020-03-22 stsp nsymrefs++;
233 e70bf110 2020-03-22 stsp }
234 e70bf110 2020-03-22 stsp
235 e70bf110 2020-03-22 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
236 e70bf110 2020-03-22 stsp return got_error(GOT_ERR_NO_SPACE);
237 e70bf110 2020-03-22 stsp
238 e70bf110 2020-03-22 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_SYMREFS, 0, 0, len);
239 e70bf110 2020-03-22 stsp if (wbuf == NULL)
240 e70bf110 2020-03-22 stsp return got_error_from_errno("imsg_create FETCH_SYMREFS");
241 e70bf110 2020-03-22 stsp
242 e70bf110 2020-03-22 stsp /* Keep in sync with struct got_imsg_fetch_symrefs definition! */
243 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &nsymrefs, sizeof(nsymrefs)) == -1)
244 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_SYMREFS");
245 e70bf110 2020-03-22 stsp
246 e70bf110 2020-03-22 stsp TAILQ_FOREACH(pe, symrefs, entry) {
247 e70bf110 2020-03-22 stsp const char *name = pe->path;
248 e70bf110 2020-03-22 stsp size_t name_len = pe->path_len;
249 e70bf110 2020-03-22 stsp const char *target = pe->data;
250 e70bf110 2020-03-22 stsp size_t target_len = strlen(target);
251 e70bf110 2020-03-22 stsp
252 e70bf110 2020-03-22 stsp /* Keep in sync with struct got_imsg_fetch_symref definition! */
253 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &name_len, sizeof(name_len)) == -1)
254 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_SYMREFS");
255 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, &target_len, sizeof(target_len)) == -1)
256 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_SYMREFS");
257 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, name, name_len) == -1)
258 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_SYMREFS");
259 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, target, target_len) == -1)
260 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_SYMREFS");
261 e70bf110 2020-03-22 stsp }
262 e70bf110 2020-03-22 stsp
263 e70bf110 2020-03-22 stsp wbuf->fd = -1;
264 e70bf110 2020-03-22 stsp imsg_close(ibuf, wbuf);
265 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
266 e70bf110 2020-03-22 stsp }
267 e70bf110 2020-03-22 stsp
268 e70bf110 2020-03-22 stsp static const struct got_error *
269 e70bf110 2020-03-22 stsp send_fetch_ref(struct imsgbuf *ibuf, struct got_object_id *refid,
270 e70bf110 2020-03-22 stsp const char *refname)
271 e70bf110 2020-03-22 stsp {
272 e70bf110 2020-03-22 stsp struct ibuf *wbuf;
273 e70bf110 2020-03-22 stsp size_t len, reflen = strlen(refname);
274 e70bf110 2020-03-22 stsp
275 e70bf110 2020-03-22 stsp len = sizeof(struct got_imsg_fetch_ref) + reflen;
276 e70bf110 2020-03-22 stsp if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
277 e70bf110 2020-03-22 stsp return got_error(GOT_ERR_NO_SPACE);
278 e70bf110 2020-03-22 stsp
279 e70bf110 2020-03-22 stsp wbuf = imsg_create(ibuf, GOT_IMSG_FETCH_REF, 0, 0, len);
280 e70bf110 2020-03-22 stsp if (wbuf == NULL)
281 e70bf110 2020-03-22 stsp return got_error_from_errno("imsg_create FETCH_REF");
282 e70bf110 2020-03-22 stsp
283 e70bf110 2020-03-22 stsp /* Keep in sync with struct got_imsg_fetch_ref definition! */
284 9228a15c 2023-02-03 thomas if (imsg_add(wbuf, refid, sizeof(*refid)) == -1)
285 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_REF");
286 e9f1a409 2022-05-19 thomas if (imsg_add(wbuf, refname, reflen) == -1)
287 e9f1a409 2022-05-19 thomas return got_error_from_errno("imsg_add FETCH_REF");
288 e70bf110 2020-03-22 stsp
289 e70bf110 2020-03-22 stsp wbuf->fd = -1;
290 e70bf110 2020-03-22 stsp imsg_close(ibuf, wbuf);
291 e70bf110 2020-03-22 stsp return got_privsep_flush_imsg(ibuf);
292 9d0a7ee3 2023-02-07 thomas }
293 9d0a7ee3 2023-02-07 thomas
294 9d0a7ee3 2023-02-07 thomas static const struct got_error *
295 9d0a7ee3 2023-02-07 thomas fetch_ref(struct imsgbuf *ibuf, struct got_pathlist_head *have_refs,
296 9d0a7ee3 2023-02-07 thomas struct got_object_id *have, struct got_object_id *want,
297 9d0a7ee3 2023-02-07 thomas const char *refname, const char *id_str)
298 9d0a7ee3 2023-02-07 thomas {
299 9d0a7ee3 2023-02-07 thomas const struct got_error *err;
300 9d0a7ee3 2023-02-07 thomas char *theirs = NULL, *mine = NULL;
301 9d0a7ee3 2023-02-07 thomas
302 9d0a7ee3 2023-02-07 thomas if (!got_parse_sha1_digest(want->sha1, id_str)) {
303 9d0a7ee3 2023-02-07 thomas err = got_error(GOT_ERR_BAD_OBJ_ID_STR);
304 9d0a7ee3 2023-02-07 thomas goto done;
305 9d0a7ee3 2023-02-07 thomas }
306 9d0a7ee3 2023-02-07 thomas
307 9d0a7ee3 2023-02-07 thomas match_remote_ref(have_refs, have, refname);
308 9d0a7ee3 2023-02-07 thomas err = send_fetch_ref(ibuf, want, refname);
309 9d0a7ee3 2023-02-07 thomas if (err)
310 9d0a7ee3 2023-02-07 thomas goto done;
311 9d0a7ee3 2023-02-07 thomas
312 9d0a7ee3 2023-02-07 thomas if (chattygot)
313 9d0a7ee3 2023-02-07 thomas fprintf(stderr, "%s: %s will be fetched\n",
314 9d0a7ee3 2023-02-07 thomas getprogname(), refname);
315 9d0a7ee3 2023-02-07 thomas if (chattygot > 1) {
316 9d0a7ee3 2023-02-07 thomas err = got_object_id_str(&theirs, want);
317 9d0a7ee3 2023-02-07 thomas if (err)
318 9d0a7ee3 2023-02-07 thomas goto done;
319 9d0a7ee3 2023-02-07 thomas err = got_object_id_str(&mine, have);
320 9d0a7ee3 2023-02-07 thomas if (err)
321 9d0a7ee3 2023-02-07 thomas goto done;
322 9d0a7ee3 2023-02-07 thomas fprintf(stderr, "%s: remote: %s\n%s: local: %s\n",
323 9d0a7ee3 2023-02-07 thomas getprogname(), theirs, getprogname(), mine);
324 9d0a7ee3 2023-02-07 thomas }
325 9d0a7ee3 2023-02-07 thomas done:
326 9d0a7ee3 2023-02-07 thomas free(theirs);
327 9d0a7ee3 2023-02-07 thomas free(mine);
328 9d0a7ee3 2023-02-07 thomas return err;
329 e70bf110 2020-03-22 stsp }
330 729743d1 2020-03-23 stsp
331 e70bf110 2020-03-22 stsp static const struct got_error *
332 1d72a2a0 2020-03-24 stsp fetch_pack(int fd, int packfd, uint8_t *pack_sha1,
333 659e7fbd 2020-03-20 stsp struct got_pathlist_head *have_refs, int fetch_all_branches,
334 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_branches,
335 0e4002ca 2020-03-21 stsp struct got_pathlist_head *wanted_refs, int list_refs_only,
336 e0380e3d 2023-02-17 thomas const char *worktree_branch, int no_head, struct imsgbuf *ibuf)
337 93658fb9 2020-03-18 stsp {
338 9ff10419 2020-03-18 stsp const struct got_error *err = NULL;
339 77d7d3bb 2021-09-05 stsp char buf[GOT_PKT_MAX];
340 93658fb9 2020-03-18 stsp char hashstr[SHA1_DIGEST_STRING_LENGTH];
341 93658fb9 2020-03-18 stsp struct got_object_id *have, *want;
342 8a29a085 2020-03-18 stsp int is_firstpkt = 1, nref = 0, refsz = 16;
343 7848a0e1 2020-03-19 stsp int i, n, nwant = 0, nhave = 0, acked = 0;
344 5672d305 2020-03-18 stsp off_t packsz = 0, last_reported_packsz = 0;
345 9d0a7ee3 2023-02-07 thomas char *id_str = NULL, *default_id_str = NULL, *refname = NULL;
346 00cd0e0a 2020-03-18 stsp char *server_capabilities = NULL, *my_capabilities = NULL;
347 659e7fbd 2020-03-20 stsp const char *default_branch = NULL;
348 abe0f35f 2020-03-18 stsp struct got_pathlist_head symrefs;
349 abe0f35f 2020-03-18 stsp struct got_pathlist_entry *pe;
350 406106ee 2020-03-20 stsp int sent_my_capabilites = 0, have_sidebands = 0;
351 659e7fbd 2020-03-20 stsp int found_branch = 0;
352 dc671e91 2020-03-24 stsp SHA1_CTX sha1_ctx;
353 dc671e91 2020-03-24 stsp uint8_t sha1_buf[SHA1_DIGEST_LENGTH];
354 dc671e91 2020-03-24 stsp size_t sha1_buf_len = 0;
355 dc671e91 2020-03-24 stsp ssize_t w;
356 b637eb2e 2022-02-23 thomas struct got_ratelimit rl;
357 93658fb9 2020-03-18 stsp
358 abe0f35f 2020-03-18 stsp TAILQ_INIT(&symrefs);
359 dc671e91 2020-03-24 stsp SHA1Init(&sha1_ctx);
360 b637eb2e 2022-02-23 thomas got_ratelimit_init(&rl, 0, 500);
361 abe0f35f 2020-03-18 stsp
362 93658fb9 2020-03-18 stsp have = malloc(refsz * sizeof(have[0]));
363 9ff10419 2020-03-18 stsp if (have == NULL)
364 9ff10419 2020-03-18 stsp return got_error_from_errno("malloc");
365 93658fb9 2020-03-18 stsp want = malloc(refsz * sizeof(want[0]));
366 9ff10419 2020-03-18 stsp if (want == NULL) {
367 9ff10419 2020-03-18 stsp err = got_error_from_errno("malloc");
368 9ff10419 2020-03-18 stsp goto done;
369 9ff10419 2020-03-18 stsp }
370 9ff10419 2020-03-18 stsp while (1) {
371 f024663d 2021-09-05 stsp err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
372 fe53745c 2020-03-18 stsp if (err)
373 9ff10419 2020-03-18 stsp goto done;
374 9ff10419 2020-03-18 stsp if (n == 0)
375 93658fb9 2020-03-18 stsp break;
376 a6f88e33 2020-03-18 stsp if (n >= 4 && strncmp(buf, "ERR ", 4) == 0) {
377 531c3985 2020-03-18 stsp err = fetch_error(&buf[4], n - 4);
378 9ff10419 2020-03-18 stsp goto done;
379 9ff10419 2020-03-18 stsp }
380 35add24a 2021-10-08 thomas free(id_str);
381 35add24a 2021-10-08 thomas free(refname);
382 bd3d9e54 2021-09-05 stsp err = got_gitproto_parse_refline(&id_str, &refname,
383 bd3d9e54 2021-09-05 stsp &server_capabilities, buf, n);
384 0d0a341c 2020-03-18 stsp if (err)
385 9ff10419 2020-03-18 stsp goto done;
386 9d0a7ee3 2023-02-07 thomas
387 9d0a7ee3 2023-02-07 thomas if (refsz == nref + 1) {
388 84073f62 2023-02-07 thomas struct got_object_id *h, *w;
389 84073f62 2023-02-07 thomas
390 9d0a7ee3 2023-02-07 thomas refsz *= 2;
391 84073f62 2023-02-07 thomas h = reallocarray(have, refsz, sizeof(have[0]));
392 84073f62 2023-02-07 thomas if (h == NULL) {
393 9d0a7ee3 2023-02-07 thomas err = got_error_from_errno("reallocarray");
394 9d0a7ee3 2023-02-07 thomas goto done;
395 9d0a7ee3 2023-02-07 thomas }
396 84073f62 2023-02-07 thomas have = h;
397 84073f62 2023-02-07 thomas w = reallocarray(want, refsz, sizeof(want[0]));
398 84073f62 2023-02-07 thomas if (w == NULL) {
399 9d0a7ee3 2023-02-07 thomas err = got_error_from_errno("reallocarray");
400 9d0a7ee3 2023-02-07 thomas goto done;
401 9d0a7ee3 2023-02-07 thomas }
402 84073f62 2023-02-07 thomas want = w;
403 9d0a7ee3 2023-02-07 thomas }
404 9d0a7ee3 2023-02-07 thomas
405 8a29a085 2020-03-18 stsp if (is_firstpkt) {
406 858b0dfb 2020-03-20 stsp if (chattygot && server_capabilities[0] != '\0')
407 858b0dfb 2020-03-20 stsp fprintf(stderr, "%s: server capabilities: %s\n",
408 858b0dfb 2020-03-20 stsp getprogname(), server_capabilities);
409 bd3d9e54 2021-09-05 stsp err = got_gitproto_match_capabilities(&my_capabilities,
410 bd3d9e54 2021-09-05 stsp &symrefs, server_capabilities,
411 bd3d9e54 2021-09-05 stsp got_capabilities, nitems(got_capabilities));
412 8a29a085 2020-03-18 stsp if (err)
413 8a29a085 2020-03-18 stsp goto done;
414 858b0dfb 2020-03-20 stsp if (chattygot)
415 2690194b 2020-03-21 stsp fprintf(stderr, "%s: my capabilities:%s\n",
416 a90356f7 2021-08-26 stsp getprogname(), my_capabilities != NULL ?
417 a90356f7 2021-08-26 stsp my_capabilities : "");
418 e70bf110 2020-03-22 stsp err = send_fetch_symrefs(ibuf, &symrefs);
419 abe0f35f 2020-03-18 stsp if (err)
420 abe0f35f 2020-03-18 stsp goto done;
421 7848a0e1 2020-03-19 stsp is_firstpkt = 0;
422 659e7fbd 2020-03-20 stsp if (!fetch_all_branches) {
423 659e7fbd 2020-03-20 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
424 659e7fbd 2020-03-20 stsp const char *name = pe->path;
425 659e7fbd 2020-03-20 stsp const char *symref_target = pe->data;
426 659e7fbd 2020-03-20 stsp if (strcmp(name, GOT_REF_HEAD) != 0)
427 659e7fbd 2020-03-20 stsp continue;
428 659e7fbd 2020-03-20 stsp default_branch = symref_target;
429 659e7fbd 2020-03-20 stsp break;
430 659e7fbd 2020-03-20 stsp }
431 659e7fbd 2020-03-20 stsp }
432 c22ed3f5 2022-11-08 thomas if (default_branch)
433 c22ed3f5 2022-11-08 thomas continue;
434 8a29a085 2020-03-18 stsp }
435 2690194b 2020-03-21 stsp if (strstr(refname, "^{}")) {
436 2690194b 2020-03-21 stsp if (chattygot) {
437 2690194b 2020-03-21 stsp fprintf(stderr, "%s: ignoring %s\n",
438 2690194b 2020-03-21 stsp getprogname(), refname);
439 2690194b 2020-03-21 stsp }
440 93658fb9 2020-03-18 stsp continue;
441 2690194b 2020-03-21 stsp }
442 9d0a7ee3 2023-02-07 thomas if (default_branch && default_id_str == NULL &&
443 9d0a7ee3 2023-02-07 thomas strcmp(refname, default_branch) == 0) {
444 9d0a7ee3 2023-02-07 thomas default_id_str = strdup(id_str);
445 9d0a7ee3 2023-02-07 thomas if (default_id_str == NULL) {
446 9d0a7ee3 2023-02-07 thomas err = got_error_from_errno("strdup");
447 9ff10419 2020-03-18 stsp goto done;
448 9ff10419 2020-03-18 stsp }
449 93658fb9 2020-03-18 stsp }
450 858b0dfb 2020-03-20 stsp
451 9d0a7ee3 2023-02-07 thomas if (list_refs_only || strncmp(refname, "refs/tags/", 10) == 0) {
452 9d0a7ee3 2023-02-07 thomas err = fetch_ref(ibuf, have_refs, &have[nref],
453 9d0a7ee3 2023-02-07 thomas &want[nref], refname, id_str);
454 858b0dfb 2020-03-20 stsp if (err)
455 858b0dfb 2020-03-20 stsp goto done;
456 9d0a7ee3 2023-02-07 thomas nref++;
457 9d0a7ee3 2023-02-07 thomas } else if (strncmp(refname, "refs/heads/", 11) == 0) {
458 9d0a7ee3 2023-02-07 thomas if (fetch_all_branches) {
459 9d0a7ee3 2023-02-07 thomas err = fetch_ref(ibuf, have_refs, &have[nref],
460 9d0a7ee3 2023-02-07 thomas &want[nref], refname, id_str);
461 9d0a7ee3 2023-02-07 thomas if (err)
462 9d0a7ee3 2023-02-07 thomas goto done;
463 9d0a7ee3 2023-02-07 thomas nref++;
464 9d0a7ee3 2023-02-07 thomas found_branch = 1;
465 9d0a7ee3 2023-02-07 thomas continue;
466 858b0dfb 2020-03-20 stsp }
467 9d0a7ee3 2023-02-07 thomas TAILQ_FOREACH(pe, wanted_branches, entry) {
468 9d0a7ee3 2023-02-07 thomas if (match_branch(refname, pe->path))
469 9d0a7ee3 2023-02-07 thomas break;
470 9d0a7ee3 2023-02-07 thomas }
471 9d0a7ee3 2023-02-07 thomas if (pe != NULL || (worktree_branch != NULL &&
472 9d0a7ee3 2023-02-07 thomas match_branch(refname, worktree_branch))) {
473 9d0a7ee3 2023-02-07 thomas err = fetch_ref(ibuf, have_refs, &have[nref],
474 9d0a7ee3 2023-02-07 thomas &want[nref], refname, id_str);
475 9d0a7ee3 2023-02-07 thomas if (err)
476 9d0a7ee3 2023-02-07 thomas goto done;
477 9d0a7ee3 2023-02-07 thomas nref++;
478 9d0a7ee3 2023-02-07 thomas found_branch = 1;
479 9d0a7ee3 2023-02-07 thomas } else if (chattygot) {
480 9d0a7ee3 2023-02-07 thomas fprintf(stderr, "%s: ignoring %s\n",
481 9d0a7ee3 2023-02-07 thomas getprogname(), refname);
482 9d0a7ee3 2023-02-07 thomas }
483 9d0a7ee3 2023-02-07 thomas } else {
484 9d0a7ee3 2023-02-07 thomas TAILQ_FOREACH(pe, wanted_refs, entry) {
485 9d0a7ee3 2023-02-07 thomas if (match_wanted_ref(refname, pe->path))
486 9d0a7ee3 2023-02-07 thomas break;
487 9d0a7ee3 2023-02-07 thomas }
488 9d0a7ee3 2023-02-07 thomas if (pe != NULL) {
489 9d0a7ee3 2023-02-07 thomas err = fetch_ref(ibuf, have_refs, &have[nref],
490 9d0a7ee3 2023-02-07 thomas &want[nref], refname, id_str);
491 9d0a7ee3 2023-02-07 thomas if (err)
492 9d0a7ee3 2023-02-07 thomas goto done;
493 9d0a7ee3 2023-02-07 thomas nref++;
494 9d0a7ee3 2023-02-07 thomas } else if (chattygot) {
495 9d0a7ee3 2023-02-07 thomas fprintf(stderr, "%s: ignoring %s\n",
496 9d0a7ee3 2023-02-07 thomas getprogname(), refname);
497 9d0a7ee3 2023-02-07 thomas }
498 858b0dfb 2020-03-20 stsp }
499 93658fb9 2020-03-18 stsp }
500 93658fb9 2020-03-18 stsp
501 41b0de12 2020-03-21 stsp if (list_refs_only)
502 41b0de12 2020-03-21 stsp goto done;
503 41b0de12 2020-03-21 stsp
504 e0380e3d 2023-02-17 thomas if (!found_branch && !no_head && default_branch && default_id_str &&
505 9d0a7ee3 2023-02-07 thomas strncmp(default_branch, "refs/heads/", 11) == 0) {
506 9d0a7ee3 2023-02-07 thomas err = fetch_ref(ibuf, have_refs, &have[nref],
507 9d0a7ee3 2023-02-07 thomas &want[nref], default_branch, default_id_str);
508 9d0a7ee3 2023-02-07 thomas if (err)
509 9d0a7ee3 2023-02-07 thomas goto done;
510 9d0a7ee3 2023-02-07 thomas nref++;
511 9d0a7ee3 2023-02-07 thomas found_branch = 1;
512 9d0a7ee3 2023-02-07 thomas }
513 9d0a7ee3 2023-02-07 thomas
514 9d0a7ee3 2023-02-07 thomas /* Abort if we haven't found anything to fetch. */
515 9d0a7ee3 2023-02-07 thomas if (nref == 0) {
516 d392cc0a 2023-02-17 thomas struct got_pathlist_entry *pe;
517 d392cc0a 2023-02-17 thomas static char msg[PATH_MAX + 33];
518 d392cc0a 2023-02-17 thomas
519 d392cc0a 2023-02-17 thomas pe = TAILQ_FIRST(wanted_branches);
520 d392cc0a 2023-02-17 thomas if (pe) {
521 d392cc0a 2023-02-17 thomas snprintf(msg, sizeof(msg),
522 d392cc0a 2023-02-17 thomas "branch \"%s\" not found on server", pe->path);
523 d392cc0a 2023-02-17 thomas err = got_error_msg(GOT_ERR_FETCH_NO_BRANCH, msg);
524 d392cc0a 2023-02-17 thomas goto done;
525 d392cc0a 2023-02-17 thomas }
526 d392cc0a 2023-02-17 thomas
527 d392cc0a 2023-02-17 thomas pe = TAILQ_FIRST(wanted_refs);
528 d392cc0a 2023-02-17 thomas if (pe) {
529 d392cc0a 2023-02-17 thomas snprintf(msg, sizeof(msg),
530 d392cc0a 2023-02-17 thomas "reference \"%s\" not found on server", pe->path);
531 d392cc0a 2023-02-17 thomas err = got_error_msg(GOT_ERR_FETCH_NO_BRANCH, msg);
532 d392cc0a 2023-02-17 thomas goto done;
533 d392cc0a 2023-02-17 thomas }
534 d392cc0a 2023-02-17 thomas
535 659e7fbd 2020-03-20 stsp err = got_error(GOT_ERR_FETCH_NO_BRANCH);
536 659e7fbd 2020-03-20 stsp goto done;
537 659e7fbd 2020-03-20 stsp }
538 659e7fbd 2020-03-20 stsp
539 cf875574 2020-03-18 stsp for (i = 0; i < nref; i++) {
540 93658fb9 2020-03-18 stsp if (got_object_id_cmp(&have[i], &want[i]) == 0)
541 93658fb9 2020-03-18 stsp continue;
542 93658fb9 2020-03-18 stsp got_sha1_digest_to_str(want[i].sha1, hashstr, sizeof(hashstr));
543 406106ee 2020-03-20 stsp n = snprintf(buf, sizeof(buf), "want %s%s\n", hashstr,
544 a90356f7 2021-08-26 stsp sent_my_capabilites || my_capabilities == NULL ?
545 a90356f7 2021-08-26 stsp "" : my_capabilities);
546 717a78d4 2022-08-16 thomas if (n < 0 || (size_t)n >= sizeof(buf)) {
547 9ff10419 2020-03-18 stsp err = got_error(GOT_ERR_NO_SPACE);
548 9ff10419 2020-03-18 stsp goto done;
549 9ff10419 2020-03-18 stsp }
550 f024663d 2021-09-05 stsp err = got_pkt_writepkt(fd, buf, n, chattygot);
551 344e4747 2020-03-18 stsp if (err)
552 9ff10419 2020-03-18 stsp goto done;
553 858b0dfb 2020-03-20 stsp sent_my_capabilites = 1;
554 7848a0e1 2020-03-19 stsp nwant++;
555 93658fb9 2020-03-18 stsp }
556 f024663d 2021-09-05 stsp err = got_pkt_flushpkt(fd, chattygot);
557 38c670f1 2020-03-18 stsp if (err)
558 38c670f1 2020-03-18 stsp goto done;
559 7848a0e1 2020-03-19 stsp
560 3c912d14 2020-03-19 stsp if (nwant == 0)
561 7848a0e1 2020-03-19 stsp goto done;
562 7848a0e1 2020-03-19 stsp
563 ea83355f 2021-10-08 thomas TAILQ_FOREACH(pe, have_refs, entry) {
564 ea83355f 2021-10-08 thomas struct got_object_id *id = pe->data;
565 ea83355f 2021-10-08 thomas got_sha1_digest_to_str(id->sha1, hashstr, sizeof(hashstr));
566 93658fb9 2020-03-18 stsp n = snprintf(buf, sizeof(buf), "have %s\n", hashstr);
567 717a78d4 2022-08-16 thomas if (n < 0 || (size_t)n >= sizeof(buf)) {
568 9ff10419 2020-03-18 stsp err = got_error(GOT_ERR_NO_SPACE);
569 9ff10419 2020-03-18 stsp goto done;
570 9ff10419 2020-03-18 stsp }
571 f024663d 2021-09-05 stsp err = got_pkt_writepkt(fd, buf, n, chattygot);
572 344e4747 2020-03-18 stsp if (err)
573 9ff10419 2020-03-18 stsp goto done;
574 7848a0e1 2020-03-19 stsp nhave++;
575 93658fb9 2020-03-18 stsp }
576 7848a0e1 2020-03-19 stsp
577 7848a0e1 2020-03-19 stsp while (nhave > 0 && !acked) {
578 7848a0e1 2020-03-19 stsp struct got_object_id common_id;
579 7848a0e1 2020-03-19 stsp
580 7848a0e1 2020-03-19 stsp /* The server should ACK the object IDs we need. */
581 f024663d 2021-09-05 stsp err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
582 38c670f1 2020-03-18 stsp if (err)
583 38c670f1 2020-03-18 stsp goto done;
584 7848a0e1 2020-03-19 stsp if (n >= 4 && strncmp(buf, "ERR ", 4) == 0) {
585 7848a0e1 2020-03-19 stsp err = fetch_error(&buf[4], n - 4);
586 7848a0e1 2020-03-19 stsp goto done;
587 7848a0e1 2020-03-19 stsp }
588 7848a0e1 2020-03-19 stsp if (n >= 4 && strncmp(buf, "NAK\n", 4) == 0) {
589 7848a0e1 2020-03-19 stsp /* Server has not located our objects yet. */
590 7848a0e1 2020-03-19 stsp continue;
591 7848a0e1 2020-03-19 stsp }
592 7848a0e1 2020-03-19 stsp if (n < 4 + SHA1_DIGEST_STRING_LENGTH ||
593 7848a0e1 2020-03-19 stsp strncmp(buf, "ACK ", 4) != 0) {
594 7848a0e1 2020-03-19 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
595 7848a0e1 2020-03-19 stsp "unexpected message from server");
596 7848a0e1 2020-03-19 stsp goto done;
597 7848a0e1 2020-03-19 stsp }
598 7848a0e1 2020-03-19 stsp if (!got_parse_sha1_digest(common_id.sha1, buf + 4)) {
599 7848a0e1 2020-03-19 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
600 7848a0e1 2020-03-19 stsp "bad object ID in ACK packet from server");
601 7848a0e1 2020-03-19 stsp goto done;
602 7848a0e1 2020-03-19 stsp }
603 7848a0e1 2020-03-19 stsp acked++;
604 93658fb9 2020-03-18 stsp }
605 7848a0e1 2020-03-19 stsp
606 406d5a24 2022-08-16 thomas n = strlcpy(buf, "done\n", sizeof(buf));
607 f024663d 2021-09-05 stsp err = got_pkt_writepkt(fd, buf, n, chattygot);
608 344e4747 2020-03-18 stsp if (err)
609 9ff10419 2020-03-18 stsp goto done;
610 93658fb9 2020-03-18 stsp
611 7848a0e1 2020-03-19 stsp if (nhave == 0) {
612 f024663d 2021-09-05 stsp err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
613 7848a0e1 2020-03-19 stsp if (err)
614 7848a0e1 2020-03-19 stsp goto done;
615 7848a0e1 2020-03-19 stsp if (n != 4 || strncmp(buf, "NAK\n", n) != 0) {
616 7848a0e1 2020-03-19 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
617 7848a0e1 2020-03-19 stsp "unexpected message from server");
618 7848a0e1 2020-03-19 stsp goto done;
619 7848a0e1 2020-03-19 stsp }
620 04c53c18 2020-03-18 stsp }
621 93658fb9 2020-03-18 stsp
622 858b0dfb 2020-03-20 stsp if (chattygot)
623 858b0dfb 2020-03-20 stsp fprintf(stderr, "%s: fetching...\n", getprogname());
624 858b0dfb 2020-03-20 stsp
625 531c3985 2020-03-18 stsp if (my_capabilities != NULL &&
626 531c3985 2020-03-18 stsp strstr(my_capabilities, GOT_CAPA_SIDE_BAND_64K) != NULL)
627 531c3985 2020-03-18 stsp have_sidebands = 1;
628 531c3985 2020-03-18 stsp
629 9ff10419 2020-03-18 stsp while (1) {
630 dc671e91 2020-03-24 stsp ssize_t r = 0;
631 531c3985 2020-03-18 stsp int datalen = -1;
632 531c3985 2020-03-18 stsp
633 531c3985 2020-03-18 stsp if (have_sidebands) {
634 f024663d 2021-09-05 stsp err = got_pkt_readhdr(&datalen, fd, chattygot);
635 531c3985 2020-03-18 stsp if (err)
636 531c3985 2020-03-18 stsp goto done;
637 531c3985 2020-03-18 stsp if (datalen <= 0)
638 531c3985 2020-03-18 stsp break;
639 531c3985 2020-03-18 stsp
640 531c3985 2020-03-18 stsp /* Read sideband channel ID (one byte). */
641 531c3985 2020-03-18 stsp r = read(fd, buf, 1);
642 531c3985 2020-03-18 stsp if (r == -1) {
643 531c3985 2020-03-18 stsp err = got_error_from_errno("read");
644 531c3985 2020-03-18 stsp goto done;
645 531c3985 2020-03-18 stsp }
646 531c3985 2020-03-18 stsp if (r != 1) {
647 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
648 531c3985 2020-03-18 stsp "short packet");
649 531c3985 2020-03-18 stsp goto done;
650 531c3985 2020-03-18 stsp }
651 531c3985 2020-03-18 stsp if (datalen > sizeof(buf) - 5) {
652 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
653 531c3985 2020-03-18 stsp "bad packet length");
654 531c3985 2020-03-18 stsp goto done;
655 531c3985 2020-03-18 stsp }
656 531c3985 2020-03-18 stsp datalen--; /* sideband ID has been read */
657 531c3985 2020-03-18 stsp if (buf[0] == GOT_SIDEBAND_PACKFILE_DATA) {
658 531c3985 2020-03-18 stsp /* Read packfile data. */
659 f024663d 2021-09-05 stsp err = got_pkt_readn(&r, fd, buf, datalen);
660 531c3985 2020-03-18 stsp if (err)
661 531c3985 2020-03-18 stsp goto done;
662 531c3985 2020-03-18 stsp if (r != datalen) {
663 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
664 531c3985 2020-03-18 stsp "packet too short");
665 531c3985 2020-03-18 stsp goto done;
666 531c3985 2020-03-18 stsp }
667 531c3985 2020-03-18 stsp } else if (buf[0] == GOT_SIDEBAND_PROGRESS_INFO) {
668 f024663d 2021-09-05 stsp err = got_pkt_readn(&r, fd, buf, datalen);
669 531c3985 2020-03-18 stsp if (err)
670 531c3985 2020-03-18 stsp goto done;
671 531c3985 2020-03-18 stsp if (r != datalen) {
672 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
673 531c3985 2020-03-18 stsp "packet too short");
674 531c3985 2020-03-18 stsp goto done;
675 531c3985 2020-03-18 stsp }
676 531c3985 2020-03-18 stsp err = fetch_progress(ibuf, buf, r);
677 531c3985 2020-03-18 stsp if (err)
678 531c3985 2020-03-18 stsp goto done;
679 531c3985 2020-03-18 stsp continue;
680 531c3985 2020-03-18 stsp } else if (buf[0] == GOT_SIDEBAND_ERROR_INFO) {
681 f024663d 2021-09-05 stsp err = got_pkt_readn(&r, fd, buf, datalen);
682 531c3985 2020-03-18 stsp if (err)
683 531c3985 2020-03-18 stsp goto done;
684 531c3985 2020-03-18 stsp if (r != datalen) {
685 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
686 531c3985 2020-03-18 stsp "packet too short");
687 531c3985 2020-03-18 stsp goto done;
688 531c3985 2020-03-18 stsp }
689 531c3985 2020-03-18 stsp err = fetch_error(buf, r);
690 531c3985 2020-03-18 stsp goto done;
691 98f64f14 2021-01-05 stsp } else if (buf[0] == 'A') {
692 f024663d 2021-09-05 stsp err = got_pkt_readn(&r, fd, buf, datalen);
693 98f64f14 2021-01-05 stsp if (err)
694 98f64f14 2021-01-05 stsp goto done;
695 98f64f14 2021-01-05 stsp if (r != datalen) {
696 98f64f14 2021-01-05 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
697 98f64f14 2021-01-05 stsp "packet too short");
698 98f64f14 2021-01-05 stsp goto done;
699 98f64f14 2021-01-05 stsp }
700 98f64f14 2021-01-05 stsp /*
701 98f64f14 2021-01-05 stsp * Git server responds with ACK after 'done'
702 98f64f14 2021-01-05 stsp * even though multi_ack is disabled?!?
703 98f64f14 2021-01-05 stsp */
704 98f64f14 2021-01-05 stsp buf[r] = '\0';
705 98f64f14 2021-01-05 stsp if (strncmp(buf, "CK ", 3) == 0)
706 98f64f14 2021-01-05 stsp continue; /* ignore */
707 98f64f14 2021-01-05 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
708 98f64f14 2021-01-05 stsp "unexpected message from server");
709 98f64f14 2021-01-05 stsp goto done;
710 531c3985 2020-03-18 stsp } else {
711 531c3985 2020-03-18 stsp err = got_error_msg(GOT_ERR_BAD_PACKET,
712 531c3985 2020-03-18 stsp "unknown side-band received from server");
713 531c3985 2020-03-18 stsp goto done;
714 531c3985 2020-03-18 stsp }
715 531c3985 2020-03-18 stsp } else {
716 531c3985 2020-03-18 stsp /* No sideband channel. Every byte is packfile data. */
717 f024663d 2021-09-05 stsp err = got_pkt_readn(&r, fd, buf, sizeof buf);
718 531c3985 2020-03-18 stsp if (err)
719 531c3985 2020-03-18 stsp goto done;
720 531c3985 2020-03-18 stsp if (r <= 0)
721 531c3985 2020-03-18 stsp break;
722 531c3985 2020-03-18 stsp }
723 dc671e91 2020-03-24 stsp
724 dc671e91 2020-03-24 stsp /*
725 dc671e91 2020-03-24 stsp * An expected SHA1 checksum sits at the end of the pack file.
726 dc671e91 2020-03-24 stsp * Since we don't know the file size ahead of time we have to
727 dc671e91 2020-03-24 stsp * keep SHA1_DIGEST_LENGTH bytes buffered and avoid mixing
728 dc671e91 2020-03-24 stsp * those bytes into our SHA1 checksum computation until we
729 dc671e91 2020-03-24 stsp * know for sure that additional pack file data bytes follow.
730 dc671e91 2020-03-24 stsp *
731 dc671e91 2020-03-24 stsp * We can assume r > 0 since otherwise the loop would exit.
732 dc671e91 2020-03-24 stsp */
733 dc671e91 2020-03-24 stsp if (r < SHA1_DIGEST_LENGTH) {
734 dc671e91 2020-03-24 stsp if (sha1_buf_len < SHA1_DIGEST_LENGTH) {
735 dc671e91 2020-03-24 stsp /*
736 dc671e91 2020-03-24 stsp * If there's enough buffered + read data to
737 dc671e91 2020-03-24 stsp * fill up the buffer then shift a sufficient
738 dc671e91 2020-03-24 stsp * amount of bytes out at the front to make
739 dc671e91 2020-03-24 stsp * room, mixing those bytes into the checksum.
740 dc671e91 2020-03-24 stsp */
741 9439b99a 2022-10-30 thomas if (sha1_buf_len > 0 &&
742 dc671e91 2020-03-24 stsp sha1_buf_len + r > SHA1_DIGEST_LENGTH) {
743 9439b99a 2022-10-30 thomas size_t nshift = MIN(sha1_buf_len + r -
744 9439b99a 2022-10-30 thomas SHA1_DIGEST_LENGTH, sha1_buf_len);
745 9439b99a 2022-10-30 thomas SHA1Update(&sha1_ctx, sha1_buf, nshift);
746 9439b99a 2022-10-30 thomas memmove(sha1_buf, sha1_buf + nshift,
747 9439b99a 2022-10-30 thomas sha1_buf_len - nshift);
748 9439b99a 2022-10-30 thomas sha1_buf_len -= nshift;
749 dc671e91 2020-03-24 stsp }
750 dc671e91 2020-03-24 stsp
751 dc671e91 2020-03-24 stsp /* Buffer potential checksum bytes. */
752 dc671e91 2020-03-24 stsp memcpy(sha1_buf + sha1_buf_len, buf, r);
753 dc671e91 2020-03-24 stsp sha1_buf_len += r;
754 dc671e91 2020-03-24 stsp } else {
755 dc671e91 2020-03-24 stsp /*
756 dc671e91 2020-03-24 stsp * Mix in previously buffered bytes which
757 dc671e91 2020-03-24 stsp * are not part of the checksum after all.
758 dc671e91 2020-03-24 stsp */
759 dc671e91 2020-03-24 stsp SHA1Update(&sha1_ctx, sha1_buf, r);
760 531c3985 2020-03-18 stsp
761 dc671e91 2020-03-24 stsp /* Update potential checksum buffer. */
762 dc671e91 2020-03-24 stsp memmove(sha1_buf, sha1_buf + r,
763 dc671e91 2020-03-24 stsp sha1_buf_len - r);
764 dc671e91 2020-03-24 stsp memcpy(sha1_buf + sha1_buf_len - r, buf, r);
765 dc671e91 2020-03-24 stsp }
766 dc671e91 2020-03-24 stsp } else {
767 dc671e91 2020-03-24 stsp /* Mix in any previously buffered bytes. */
768 dc671e91 2020-03-24 stsp SHA1Update(&sha1_ctx, sha1_buf, sha1_buf_len);
769 dc671e91 2020-03-24 stsp
770 dc671e91 2020-03-24 stsp /* Mix in bytes read minus potential checksum bytes. */
771 dc671e91 2020-03-24 stsp SHA1Update(&sha1_ctx, buf, r - SHA1_DIGEST_LENGTH);
772 dc671e91 2020-03-24 stsp
773 dc671e91 2020-03-24 stsp /* Buffer potential checksum bytes. */
774 dc671e91 2020-03-24 stsp memcpy(sha1_buf, buf + r - SHA1_DIGEST_LENGTH,
775 dc671e91 2020-03-24 stsp SHA1_DIGEST_LENGTH);
776 dc671e91 2020-03-24 stsp sha1_buf_len = SHA1_DIGEST_LENGTH;
777 dc671e91 2020-03-24 stsp }
778 3168e5da 2020-09-10 stsp
779 531c3985 2020-03-18 stsp /* Write packfile data to temporary pack file. */
780 fe53745c 2020-03-18 stsp w = write(packfd, buf, r);
781 9ff10419 2020-03-18 stsp if (w == -1) {
782 9ff10419 2020-03-18 stsp err = got_error_from_errno("write");
783 9ff10419 2020-03-18 stsp goto done;
784 9ff10419 2020-03-18 stsp }
785 fe53745c 2020-03-18 stsp if (w != r) {
786 9ff10419 2020-03-18 stsp err = got_error(GOT_ERR_IO);
787 9ff10419 2020-03-18 stsp goto done;
788 9ff10419 2020-03-18 stsp }
789 531c3985 2020-03-18 stsp packsz += w;
790 5672d305 2020-03-18 stsp
791 5672d305 2020-03-18 stsp /* Don't send too many progress privsep messages. */
792 5672d305 2020-03-18 stsp if (packsz > last_reported_packsz + 1024) {
793 b637eb2e 2022-02-23 thomas err = send_fetch_download_progress(ibuf, packsz, &rl);
794 5672d305 2020-03-18 stsp if (err)
795 5672d305 2020-03-18 stsp goto done;
796 5672d305 2020-03-18 stsp last_reported_packsz = packsz;
797 5672d305 2020-03-18 stsp }
798 93658fb9 2020-03-18 stsp }
799 b637eb2e 2022-02-23 thomas err = send_fetch_download_progress(ibuf, packsz, NULL);
800 5672d305 2020-03-18 stsp if (err)
801 5672d305 2020-03-18 stsp goto done;
802 dc671e91 2020-03-24 stsp
803 dc671e91 2020-03-24 stsp SHA1Final(pack_sha1, &sha1_ctx);
804 dc671e91 2020-03-24 stsp if (sha1_buf_len != SHA1_DIGEST_LENGTH ||
805 dc671e91 2020-03-24 stsp memcmp(pack_sha1, sha1_buf, sha1_buf_len) != 0) {
806 dc671e91 2020-03-24 stsp err = got_error_msg(GOT_ERR_BAD_PACKFILE,
807 dc671e91 2020-03-24 stsp "pack file checksum mismatch");
808 dc671e91 2020-03-24 stsp }
809 9ff10419 2020-03-18 stsp done:
810 21c2d8be 2023-01-10 thomas got_pathlist_free(&symrefs, GOT_PATHLIST_FREE_ALL);
811 9ff10419 2020-03-18 stsp free(have);
812 9ff10419 2020-03-18 stsp free(want);
813 00cd0e0a 2020-03-18 stsp free(id_str);
814 9d0a7ee3 2023-02-07 thomas free(default_id_str);
815 00cd0e0a 2020-03-18 stsp free(refname);
816 00cd0e0a 2020-03-18 stsp free(server_capabilities);
817 8f2d01a6 2020-03-18 stsp return err;
818 93658fb9 2020-03-18 stsp }
819 93658fb9 2020-03-18 stsp
820 93658fb9 2020-03-18 stsp
821 93658fb9 2020-03-18 stsp int
822 93658fb9 2020-03-18 stsp main(int argc, char **argv)
823 93658fb9 2020-03-18 stsp {
824 93658fb9 2020-03-18 stsp const struct got_error *err = NULL;
825 d639f28b 2023-01-10 thomas int fetchfd = -1, packfd = -1;
826 1d72a2a0 2020-03-24 stsp uint8_t pack_sha1[SHA1_DIGEST_LENGTH];
827 93658fb9 2020-03-18 stsp struct imsgbuf ibuf;
828 93658fb9 2020-03-18 stsp struct imsg imsg;
829 33501562 2020-03-18 stsp struct got_pathlist_head have_refs;
830 4ba14133 2020-03-20 stsp struct got_pathlist_head wanted_branches;
831 0e4002ca 2020-03-21 stsp struct got_pathlist_head wanted_refs;
832 4ba14133 2020-03-20 stsp struct got_imsg_fetch_request fetch_req;
833 659e7fbd 2020-03-20 stsp struct got_imsg_fetch_have_ref href;
834 4ba14133 2020-03-20 stsp struct got_imsg_fetch_wanted_branch wbranch;
835 0e4002ca 2020-03-21 stsp struct got_imsg_fetch_wanted_ref wref;
836 01bb5a15 2021-09-25 thomas.ad size_t datalen, i;
837 9d0a7ee3 2023-02-07 thomas char *worktree_branch = NULL;
838 7848a0e1 2020-03-19 stsp #if 0
839 7848a0e1 2020-03-19 stsp static int attached;
840 7848a0e1 2020-03-19 stsp while (!attached)
841 7848a0e1 2020-03-19 stsp sleep (1);
842 7848a0e1 2020-03-19 stsp #endif
843 33501562 2020-03-18 stsp
844 33501562 2020-03-18 stsp TAILQ_INIT(&have_refs);
845 4ba14133 2020-03-20 stsp TAILQ_INIT(&wanted_branches);
846 0e4002ca 2020-03-21 stsp TAILQ_INIT(&wanted_refs);
847 858b0dfb 2020-03-20 stsp
848 93658fb9 2020-03-18 stsp imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
849 ffb5f621 2020-03-18 stsp #ifndef PROFILE
850 ffb5f621 2020-03-18 stsp /* revoke access to most system calls */
851 ffb5f621 2020-03-18 stsp if (pledge("stdio recvfd", NULL) == -1) {
852 ffb5f621 2020-03-18 stsp err = got_error_from_errno("pledge");
853 ffb5f621 2020-03-18 stsp got_privsep_send_error(&ibuf, err);
854 ffb5f621 2020-03-18 stsp return 1;
855 ffb5f621 2020-03-18 stsp }
856 97799ccd 2022-02-06 thomas
857 97799ccd 2022-02-06 thomas /* revoke fs access */
858 97799ccd 2022-02-06 thomas if (landlock_no_fs() == -1) {
859 97799ccd 2022-02-06 thomas err = got_error_from_errno("landlock_no_fs");
860 97799ccd 2022-02-06 thomas got_privsep_send_error(&ibuf, err);
861 97799ccd 2022-02-06 thomas return 1;
862 97799ccd 2022-02-06 thomas }
863 5d120ea8 2022-06-23 op if (cap_enter() == -1) {
864 5d120ea8 2022-06-23 op err = got_error_from_errno("cap_enter");
865 5d120ea8 2022-06-23 op got_privsep_send_error(&ibuf, err);
866 5d120ea8 2022-06-23 op return 1;
867 5d120ea8 2022-06-23 op }
868 ffb5f621 2020-03-18 stsp #endif
869 9ca26ac3 2021-08-06 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
870 9ca26ac3 2021-08-06 stsp if (err) {
871 93658fb9 2020-03-18 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
872 93658fb9 2020-03-18 stsp err = NULL;
873 93658fb9 2020-03-18 stsp goto done;
874 93658fb9 2020-03-18 stsp }
875 93658fb9 2020-03-18 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
876 93658fb9 2020-03-18 stsp goto done;
877 93658fb9 2020-03-18 stsp if (imsg.hdr.type != GOT_IMSG_FETCH_REQUEST) {
878 93658fb9 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
879 93658fb9 2020-03-18 stsp goto done;
880 93658fb9 2020-03-18 stsp }
881 33501562 2020-03-18 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
882 4ba14133 2020-03-20 stsp if (datalen < sizeof(fetch_req)) {
883 93658fb9 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
884 93658fb9 2020-03-18 stsp goto done;
885 93658fb9 2020-03-18 stsp }
886 4ba14133 2020-03-20 stsp memcpy(&fetch_req, imsg.data, sizeof(fetch_req));
887 4ba14133 2020-03-20 stsp fetchfd = imsg.fd;
888 9d0a7ee3 2023-02-07 thomas
889 9d0a7ee3 2023-02-07 thomas if (datalen != sizeof(fetch_req) +
890 9d0a7ee3 2023-02-07 thomas fetch_req.worktree_branch_len) {
891 9d0a7ee3 2023-02-07 thomas err = got_error(GOT_ERR_PRIVSEP_LEN);
892 9d0a7ee3 2023-02-07 thomas goto done;
893 9d0a7ee3 2023-02-07 thomas }
894 9d0a7ee3 2023-02-07 thomas
895 9d0a7ee3 2023-02-07 thomas if (fetch_req.worktree_branch_len != 0) {
896 9d0a7ee3 2023-02-07 thomas worktree_branch = strndup(imsg.data +
897 9d0a7ee3 2023-02-07 thomas sizeof(fetch_req), fetch_req.worktree_branch_len);
898 9d0a7ee3 2023-02-07 thomas if (worktree_branch == NULL) {
899 9d0a7ee3 2023-02-07 thomas err = got_error_from_errno("strndup");
900 9d0a7ee3 2023-02-07 thomas goto done;
901 9d0a7ee3 2023-02-07 thomas }
902 9d0a7ee3 2023-02-07 thomas }
903 9d0a7ee3 2023-02-07 thomas
904 4ba14133 2020-03-20 stsp imsg_free(&imsg);
905 4ba14133 2020-03-20 stsp
906 2690194b 2020-03-21 stsp if (fetch_req.verbosity > 0)
907 2690194b 2020-03-21 stsp chattygot += fetch_req.verbosity;
908 2690194b 2020-03-21 stsp
909 4ba14133 2020-03-20 stsp for (i = 0; i < fetch_req.n_have_refs; i++) {
910 7848a0e1 2020-03-19 stsp struct got_object_id *id;
911 7848a0e1 2020-03-19 stsp char *refname;
912 7848a0e1 2020-03-19 stsp
913 9ca26ac3 2021-08-06 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
914 9ca26ac3 2021-08-06 stsp if (err) {
915 4ba14133 2020-03-20 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
916 4ba14133 2020-03-20 stsp err = NULL;
917 4ba14133 2020-03-20 stsp goto done;
918 4ba14133 2020-03-20 stsp }
919 4ba14133 2020-03-20 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
920 4ba14133 2020-03-20 stsp goto done;
921 4ba14133 2020-03-20 stsp if (imsg.hdr.type != GOT_IMSG_FETCH_HAVE_REF) {
922 4ba14133 2020-03-20 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
923 4ba14133 2020-03-20 stsp goto done;
924 4ba14133 2020-03-20 stsp }
925 4ba14133 2020-03-20 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
926 4ba14133 2020-03-20 stsp if (datalen < sizeof(href)) {
927 659e7fbd 2020-03-20 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
928 659e7fbd 2020-03-20 stsp goto done;
929 659e7fbd 2020-03-20 stsp }
930 4ba14133 2020-03-20 stsp memcpy(&href, imsg.data, sizeof(href));
931 4ba14133 2020-03-20 stsp if (datalen - sizeof(href) < href.name_len) {
932 7848a0e1 2020-03-19 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
933 7848a0e1 2020-03-19 stsp goto done;
934 7848a0e1 2020-03-19 stsp }
935 fcbb06bf 2023-01-14 thomas refname = strndup(imsg.data + sizeof(href), href.name_len);
936 7848a0e1 2020-03-19 stsp if (refname == NULL) {
937 fcbb06bf 2023-01-14 thomas err = got_error_from_errno("strndup");
938 7848a0e1 2020-03-19 stsp goto done;
939 7848a0e1 2020-03-19 stsp }
940 659e7fbd 2020-03-20 stsp
941 7848a0e1 2020-03-19 stsp id = malloc(sizeof(*id));
942 7848a0e1 2020-03-19 stsp if (id == NULL) {
943 7848a0e1 2020-03-19 stsp free(refname);
944 7848a0e1 2020-03-19 stsp err = got_error_from_errno("malloc");
945 7848a0e1 2020-03-19 stsp goto done;
946 7848a0e1 2020-03-19 stsp }
947 f9f54468 2023-02-03 thomas memcpy(id, &href.id, sizeof(*id));
948 7848a0e1 2020-03-19 stsp err = got_pathlist_append(&have_refs, refname, id);
949 7848a0e1 2020-03-19 stsp if (err) {
950 7848a0e1 2020-03-19 stsp free(refname);
951 7848a0e1 2020-03-19 stsp free(id);
952 7848a0e1 2020-03-19 stsp goto done;
953 7848a0e1 2020-03-19 stsp }
954 4ba14133 2020-03-20 stsp
955 4ba14133 2020-03-20 stsp imsg_free(&imsg);
956 659e7fbd 2020-03-20 stsp }
957 93658fb9 2020-03-18 stsp
958 4ba14133 2020-03-20 stsp for (i = 0; i < fetch_req.n_wanted_branches; i++) {
959 4ba14133 2020-03-20 stsp char *refname;
960 4ba14133 2020-03-20 stsp
961 9ca26ac3 2021-08-06 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
962 9ca26ac3 2021-08-06 stsp if (err) {
963 4ba14133 2020-03-20 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
964 4ba14133 2020-03-20 stsp err = NULL;
965 4ba14133 2020-03-20 stsp goto done;
966 4ba14133 2020-03-20 stsp }
967 4ba14133 2020-03-20 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
968 4ba14133 2020-03-20 stsp goto done;
969 4ba14133 2020-03-20 stsp if (imsg.hdr.type != GOT_IMSG_FETCH_WANTED_BRANCH) {
970 4ba14133 2020-03-20 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
971 4ba14133 2020-03-20 stsp goto done;
972 4ba14133 2020-03-20 stsp }
973 4ba14133 2020-03-20 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
974 4ba14133 2020-03-20 stsp if (datalen < sizeof(wbranch)) {
975 4ba14133 2020-03-20 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
976 4ba14133 2020-03-20 stsp goto done;
977 4ba14133 2020-03-20 stsp }
978 4ba14133 2020-03-20 stsp memcpy(&wbranch, imsg.data, sizeof(wbranch));
979 4ba14133 2020-03-20 stsp if (datalen - sizeof(wbranch) < wbranch.name_len) {
980 4ba14133 2020-03-20 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
981 4ba14133 2020-03-20 stsp goto done;
982 4ba14133 2020-03-20 stsp }
983 fcbb06bf 2023-01-14 thomas refname = strndup(imsg.data + sizeof(wbranch),
984 fcbb06bf 2023-01-14 thomas wbranch.name_len);
985 4ba14133 2020-03-20 stsp if (refname == NULL) {
986 fcbb06bf 2023-01-14 thomas err = got_error_from_errno("strndup");
987 4ba14133 2020-03-20 stsp goto done;
988 4ba14133 2020-03-20 stsp }
989 4ba14133 2020-03-20 stsp
990 4ba14133 2020-03-20 stsp err = got_pathlist_append(&wanted_branches, refname, NULL);
991 4ba14133 2020-03-20 stsp if (err) {
992 4ba14133 2020-03-20 stsp free(refname);
993 4ba14133 2020-03-20 stsp goto done;
994 4ba14133 2020-03-20 stsp }
995 4ba14133 2020-03-20 stsp
996 4ba14133 2020-03-20 stsp imsg_free(&imsg);
997 4ba14133 2020-03-20 stsp }
998 4ba14133 2020-03-20 stsp
999 0e4002ca 2020-03-21 stsp for (i = 0; i < fetch_req.n_wanted_refs; i++) {
1000 0e4002ca 2020-03-21 stsp char *refname;
1001 0e4002ca 2020-03-21 stsp
1002 9ca26ac3 2021-08-06 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
1003 9ca26ac3 2021-08-06 stsp if (err) {
1004 0e4002ca 2020-03-21 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
1005 0e4002ca 2020-03-21 stsp err = NULL;
1006 0e4002ca 2020-03-21 stsp goto done;
1007 0e4002ca 2020-03-21 stsp }
1008 0e4002ca 2020-03-21 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
1009 0e4002ca 2020-03-21 stsp goto done;
1010 0e4002ca 2020-03-21 stsp if (imsg.hdr.type != GOT_IMSG_FETCH_WANTED_REF) {
1011 0e4002ca 2020-03-21 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1012 0e4002ca 2020-03-21 stsp goto done;
1013 0e4002ca 2020-03-21 stsp }
1014 0e4002ca 2020-03-21 stsp datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
1015 0e4002ca 2020-03-21 stsp if (datalen < sizeof(wref)) {
1016 0e4002ca 2020-03-21 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1017 0e4002ca 2020-03-21 stsp goto done;
1018 0e4002ca 2020-03-21 stsp }
1019 0e4002ca 2020-03-21 stsp memcpy(&wref, imsg.data, sizeof(wref));
1020 0e4002ca 2020-03-21 stsp if (datalen - sizeof(wref) < wref.name_len) {
1021 0e4002ca 2020-03-21 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1022 0e4002ca 2020-03-21 stsp goto done;
1023 0e4002ca 2020-03-21 stsp }
1024 fcbb06bf 2023-01-14 thomas refname = strndup(imsg.data + sizeof(wref), wref.name_len);
1025 0e4002ca 2020-03-21 stsp if (refname == NULL) {
1026 fcbb06bf 2023-01-14 thomas err = got_error_from_errno("strndup");
1027 0e4002ca 2020-03-21 stsp goto done;
1028 0e4002ca 2020-03-21 stsp }
1029 0e4002ca 2020-03-21 stsp
1030 0e4002ca 2020-03-21 stsp err = got_pathlist_append(&wanted_refs, refname, NULL);
1031 0e4002ca 2020-03-21 stsp if (err) {
1032 0e4002ca 2020-03-21 stsp free(refname);
1033 0e4002ca 2020-03-21 stsp goto done;
1034 0e4002ca 2020-03-21 stsp }
1035 0e4002ca 2020-03-21 stsp
1036 0e4002ca 2020-03-21 stsp imsg_free(&imsg);
1037 0e4002ca 2020-03-21 stsp }
1038 0e4002ca 2020-03-21 stsp
1039 9ca26ac3 2021-08-06 stsp err = got_privsep_recv_imsg(&imsg, &ibuf, 0);
1040 9ca26ac3 2021-08-06 stsp if (err) {
1041 93658fb9 2020-03-18 stsp if (err->code == GOT_ERR_PRIVSEP_PIPE)
1042 93658fb9 2020-03-18 stsp err = NULL;
1043 93658fb9 2020-03-18 stsp goto done;
1044 93658fb9 2020-03-18 stsp }
1045 93658fb9 2020-03-18 stsp if (imsg.hdr.type == GOT_IMSG_STOP)
1046 93658fb9 2020-03-18 stsp goto done;
1047 f826addf 2020-03-18 stsp if (imsg.hdr.type != GOT_IMSG_FETCH_OUTFD) {
1048 93658fb9 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_MSG);
1049 93658fb9 2020-03-18 stsp goto done;
1050 93658fb9 2020-03-18 stsp }
1051 93658fb9 2020-03-18 stsp if (imsg.hdr.len - IMSG_HEADER_SIZE != 0) {
1052 93658fb9 2020-03-18 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
1053 93658fb9 2020-03-18 stsp goto done;
1054 93658fb9 2020-03-18 stsp }
1055 93658fb9 2020-03-18 stsp packfd = imsg.fd;
1056 93658fb9 2020-03-18 stsp
1057 1d72a2a0 2020-03-24 stsp err = fetch_pack(fetchfd, packfd, pack_sha1, &have_refs,
1058 41b0de12 2020-03-21 stsp fetch_req.fetch_all_branches, &wanted_branches,
1059 9d0a7ee3 2023-02-07 thomas &wanted_refs, fetch_req.list_refs_only,
1060 e0380e3d 2023-02-17 thomas worktree_branch, fetch_req.no_head, &ibuf);
1061 93658fb9 2020-03-18 stsp done:
1062 9d0a7ee3 2023-02-07 thomas free(worktree_branch);
1063 21c2d8be 2023-01-10 thomas got_pathlist_free(&have_refs, GOT_PATHLIST_FREE_ALL);
1064 21c2d8be 2023-01-10 thomas got_pathlist_free(&wanted_branches, GOT_PATHLIST_FREE_PATH);
1065 0bec957e 2020-03-21 stsp if (fetchfd != -1 && close(fetchfd) == -1 && err == NULL)
1066 0bec957e 2020-03-21 stsp err = got_error_from_errno("close");
1067 9ff10419 2020-03-18 stsp if (packfd != -1 && close(packfd) == -1 && err == NULL)
1068 9ff10419 2020-03-18 stsp err = got_error_from_errno("close");
1069 9ff10419 2020-03-18 stsp if (err != NULL)
1070 93658fb9 2020-03-18 stsp got_privsep_send_error(&ibuf, err);
1071 93658fb9 2020-03-18 stsp else
1072 1d72a2a0 2020-03-24 stsp err = send_fetch_done(&ibuf, pack_sha1);
1073 cf875574 2020-03-18 stsp if (err != NULL) {
1074 93658fb9 2020-03-18 stsp fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
1075 93658fb9 2020-03-18 stsp got_privsep_send_error(&ibuf, err);
1076 93658fb9 2020-03-18 stsp }
1077 93658fb9 2020-03-18 stsp
1078 93658fb9 2020-03-18 stsp exit(0);
1079 93658fb9 2020-03-18 stsp }