Blob


1 /*
2 * Copyright (c) 2019 Ori Bernstein <ori@openbsd.org>
3 * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <sys/types.h>
19 #include <sys/queue.h>
20 #include <sys/uio.h>
21 #include <sys/time.h>
22 #include <sys/stat.h>
24 #include <stdint.h>
25 #include <errno.h>
26 #include <imsg.h>
27 #include <limits.h>
28 #include <signal.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #include <ctype.h>
33 #include <sha1.h>
34 #include <fcntl.h>
35 #include <unistd.h>
36 #include <zlib.h>
37 #include <err.h>
39 #include "got_error.h"
40 #include "got_object.h"
41 #include "got_path.h"
42 #include "got_version.h"
43 #include "got_fetch.h"
44 #include "got_reference.h"
46 #include "got_lib_sha1.h"
47 #include "got_lib_delta.h"
48 #include "got_lib_object.h"
49 #include "got_lib_object_parse.h"
50 #include "got_lib_privsep.h"
51 #include "got_lib_pack.h"
52 #include "got_lib_pkt.h"
53 #include "got_lib_gitproto.h"
54 #include "got_lib_ratelimit.h"
56 #ifndef nitems
57 #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
58 #endif
60 struct got_object *indexed;
61 static int chattygot;
63 static const struct got_capability got_capabilities[] = {
64 { GOT_CAPA_AGENT, "got/" GOT_VERSION_STR },
65 { GOT_CAPA_OFS_DELTA, NULL },
66 #if 0
67 { GOT_CAPA_SIDE_BAND_64K, NULL },
68 #endif
69 { GOT_CAPA_REPORT_STATUS, NULL },
70 { GOT_CAPA_DELETE_REFS, NULL },
71 };
73 static const struct got_error *
74 send_upload_progress(struct imsgbuf *ibuf, off_t bytes,
75 struct got_ratelimit *rl)
76 {
77 const struct got_error *err = NULL;
78 int elapsed = 0;
80 if (rl) {
81 err = got_ratelimit_check(&elapsed, rl);
82 if (err || !elapsed)
83 return err;
84 }
86 if (imsg_compose(ibuf, GOT_IMSG_SEND_UPLOAD_PROGRESS, 0, 0, -1,
87 &bytes, sizeof(bytes)) == -1)
88 return got_error_from_errno(
89 "imsg_compose SEND_UPLOAD_PROGRESS");
91 return got_privsep_flush_imsg(ibuf);
92 }
94 static const struct got_error *
95 send_pack_request(struct imsgbuf *ibuf)
96 {
97 if (imsg_compose(ibuf, GOT_IMSG_SEND_PACK_REQUEST, 0, 0, -1,
98 NULL, 0) == -1)
99 return got_error_from_errno("imsg_compose SEND_PACK_REQUEST");
100 return got_privsep_flush_imsg(ibuf);
103 static const struct got_error *
104 send_done(struct imsgbuf *ibuf)
106 if (imsg_compose(ibuf, GOT_IMSG_SEND_DONE, 0, 0, -1, NULL, 0) == -1)
107 return got_error_from_errno("imsg_compose SEND_DONE");
108 return got_privsep_flush_imsg(ibuf);
111 static const struct got_error *
112 recv_packfd(int *packfd, struct imsgbuf *ibuf)
114 const struct got_error *err;
115 struct imsg imsg;
117 *packfd = -1;
119 err = got_privsep_recv_imsg(&imsg, ibuf, 0);
120 if (err)
121 return err;
123 if (imsg.hdr.type == GOT_IMSG_STOP) {
124 err = got_error(GOT_ERR_CANCELLED);
125 goto done;
128 if (imsg.hdr.type != GOT_IMSG_SEND_PACKFD) {
129 err = got_error(GOT_ERR_PRIVSEP_MSG);
130 goto done;
133 if (imsg.hdr.len - IMSG_HEADER_SIZE != 0) {
134 err = got_error(GOT_ERR_PRIVSEP_LEN);
135 goto done;
138 *packfd = imsg.fd;
139 done:
140 imsg_free(&imsg);
141 return err;
144 static const struct got_error *
145 send_pack_file(int sendfd, int packfd, struct imsgbuf *ibuf)
147 const struct got_error *err;
148 unsigned char buf[8192];
149 ssize_t r, w;
150 off_t wtotal = 0;
151 struct got_ratelimit rl;
153 if (lseek(packfd, 0L, SEEK_SET) == -1)
154 return got_error_from_errno("lseek");
156 got_ratelimit_init(&rl, 0, 500);
158 for (;;) {
159 r = read(packfd, buf, sizeof(buf));
160 if (r == -1)
161 return got_error_from_errno("read");
162 if (r == 0)
163 break;
164 w = write(sendfd, buf, r);
165 if (w == -1)
166 return got_error_from_errno("write");
167 if (w != r)
168 return got_error(GOT_ERR_IO);
169 wtotal += w;
170 err = send_upload_progress(ibuf, wtotal, &rl);
171 if (err)
172 return err;
175 return send_upload_progress(ibuf, wtotal, NULL);
178 static const struct got_error *
179 send_error(const char *buf, size_t len)
181 static char msg[1024];
182 size_t i;
184 for (i = 0; i < len && i < sizeof(msg) - 1; i++) {
185 if (!isprint(buf[i]))
186 return got_error_msg(GOT_ERR_BAD_PACKET,
187 "non-printable error message received from server");
188 msg[i] = buf[i];
190 msg[i] = '\0';
191 return got_error_msg(GOT_ERR_SEND_FAILED, msg);
194 static const struct got_error *
195 send_their_ref(struct imsgbuf *ibuf, struct got_object_id *refid,
196 const char *refname)
198 struct ibuf *wbuf;
199 size_t len, reflen = strlen(refname);
201 len = sizeof(struct got_imsg_send_remote_ref) + reflen;
202 if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
203 return got_error(GOT_ERR_NO_SPACE);
205 wbuf = imsg_create(ibuf, GOT_IMSG_SEND_REMOTE_REF, 0, 0, len);
206 if (wbuf == NULL)
207 return got_error_from_errno("imsg_create SEND_REMOTE_REF");
209 /* Keep in sync with struct got_imsg_send_remote_ref definition! */
210 if (imsg_add(wbuf, refid->sha1, SHA1_DIGEST_LENGTH) == -1)
211 return got_error_from_errno("imsg_add SEND_REMOTE_REF");
212 if (imsg_add(wbuf, &reflen, sizeof(reflen)) == -1)
213 return got_error_from_errno("imsg_add SEND_REMOTE_REF");
214 if (imsg_add(wbuf, refname, reflen) == -1)
215 return got_error_from_errno("imsg_add SEND_REMOTE_REF");
217 wbuf->fd = -1;
218 imsg_close(ibuf, wbuf);
219 return got_privsep_flush_imsg(ibuf);
222 static const struct got_error *
223 send_ref_status(struct imsgbuf *ibuf, const char *refname, int success,
224 struct got_pathlist_head *refs, struct got_pathlist_head *delete_refs)
226 struct ibuf *wbuf;
227 size_t len, reflen = strlen(refname);
228 struct got_pathlist_entry *pe;
229 int ref_valid = 0;
230 char *eol;
232 eol = strchr(refname, '\n');
233 if (eol == NULL) {
234 return got_error_msg(GOT_ERR_BAD_PACKET,
235 "unexpected message from server");
237 *eol = '\0';
239 TAILQ_FOREACH(pe, refs, entry) {
240 if (strcmp(refname, pe->path) == 0) {
241 ref_valid = 1;
242 break;
245 if (!ref_valid) {
246 TAILQ_FOREACH(pe, delete_refs, entry) {
247 if (strcmp(refname, pe->path) == 0) {
248 ref_valid = 1;
249 break;
253 if (!ref_valid) {
254 return got_error_msg(GOT_ERR_BAD_PACKET,
255 "unexpected message from server");
258 len = sizeof(struct got_imsg_send_ref_status) + reflen;
259 if (len >= MAX_IMSGSIZE - IMSG_HEADER_SIZE)
260 return got_error(GOT_ERR_NO_SPACE);
262 wbuf = imsg_create(ibuf, GOT_IMSG_SEND_REF_STATUS,
263 0, 0, len);
264 if (wbuf == NULL)
265 return got_error_from_errno("imsg_create SEND_REF_STATUS");
267 /* Keep in sync with struct got_imsg_send_ref_status definition! */
268 if (imsg_add(wbuf, &success, sizeof(success)) == -1)
269 return got_error_from_errno("imsg_add SEND_REF_STATUS");
270 if (imsg_add(wbuf, &reflen, sizeof(reflen)) == -1)
271 return got_error_from_errno("imsg_add SEND_REF_STATUS");
272 if (imsg_add(wbuf, refname, reflen) == -1)
273 return got_error_from_errno("imsg_add SEND_REF_STATUS");
275 wbuf->fd = -1;
276 imsg_close(ibuf, wbuf);
277 return got_privsep_flush_imsg(ibuf);
280 static const struct got_error *
281 describe_refchange(int *n, int *sent_my_capabilites,
282 const char *my_capabilities, char *buf, size_t bufsize,
283 const char *refname, const char *old_hashstr, const char *new_hashstr)
285 *n = snprintf(buf, bufsize, "%s %s %s",
286 old_hashstr, new_hashstr, refname);
287 if (*n < 0 || (size_t)*n >= bufsize)
288 return got_error(GOT_ERR_NO_SPACE);
290 /*
291 * We must announce our capabilities along with the first
292 * reference. Unfortunately, the protocol requires an embedded
293 * NUL as a separator between reference name and capabilities,
294 * which we have to deal with here.
295 * It also requires a linefeed for terminating packet data.
296 */
297 if (!*sent_my_capabilites && my_capabilities != NULL) {
298 int m;
299 if (*n >= bufsize - 1)
300 return got_error(GOT_ERR_NO_SPACE);
301 m = snprintf(buf + *n + 1, /* offset after '\0' */
302 bufsize - (*n + 1), "%s\n", my_capabilities);
303 if (m < 0 || *n + m >= bufsize)
304 return got_error(GOT_ERR_NO_SPACE);
305 *n += m;
306 *sent_my_capabilites = 1;
307 } else {
308 *n = strlcat(buf, "\n", bufsize);
309 if (*n >= bufsize)
310 return got_error(GOT_ERR_NO_SPACE);
313 return NULL;
316 static const struct got_error *
317 send_pack(int fd, struct got_pathlist_head *refs,
318 struct got_pathlist_head *delete_refs, struct imsgbuf *ibuf)
320 const struct got_error *err = NULL;
321 char buf[GOT_PKT_MAX];
322 const unsigned char zero_id[SHA1_DIGEST_LENGTH] = { 0 };
323 char old_hashstr[SHA1_DIGEST_STRING_LENGTH];
324 char new_hashstr[SHA1_DIGEST_STRING_LENGTH];
325 struct got_pathlist_head their_refs;
326 int is_firstpkt = 1;
327 int n, nsent = 0;
328 int packfd = -1;
329 char *id_str = NULL, *refname = NULL;
330 struct got_object_id *id = NULL;
331 char *server_capabilities = NULL, *my_capabilities = NULL;
332 struct got_pathlist_entry *pe;
333 int sent_my_capabilites = 0;
335 TAILQ_INIT(&their_refs);
337 if (TAILQ_EMPTY(refs) && TAILQ_EMPTY(delete_refs))
338 return got_error(GOT_ERR_SEND_EMPTY);
340 while (1) {
341 err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
342 if (err)
343 goto done;
344 if (n == 0)
345 break;
346 if (n >= 4 && strncmp(buf, "ERR ", 4) == 0) {
347 err = send_error(&buf[4], n - 4);
348 goto done;
350 free(id_str);
351 free(refname);
352 err = got_gitproto_parse_refline(&id_str, &refname,
353 &server_capabilities, buf, n);
354 if (err)
355 goto done;
356 if (is_firstpkt) {
357 if (chattygot && server_capabilities[0] != '\0')
358 fprintf(stderr, "%s: server capabilities: %s\n",
359 getprogname(), server_capabilities);
360 err = got_gitproto_match_capabilities(&my_capabilities,
361 NULL, server_capabilities, got_capabilities,
362 nitems(got_capabilities));
363 if (err)
364 goto done;
365 if (chattygot)
366 fprintf(stderr, "%s: my capabilities:%s\n",
367 getprogname(), my_capabilities);
368 is_firstpkt = 0;
370 if (strstr(refname, "^{}")) {
371 if (chattygot) {
372 fprintf(stderr, "%s: ignoring %s\n",
373 getprogname(), refname);
375 continue;
378 id = malloc(sizeof(*id));
379 if (id == NULL) {
380 err = got_error_from_errno("malloc");
381 goto done;
383 if (!got_parse_sha1_digest(id->sha1, id_str)) {
384 err = got_error(GOT_ERR_BAD_OBJ_ID_STR);
385 goto done;
387 err = send_their_ref(ibuf, id, refname);
388 if (err)
389 goto done;
391 err = got_pathlist_append(&their_refs, refname, id);
392 if (err)
393 goto done;
395 if (chattygot)
396 fprintf(stderr, "%s: remote has %s %s\n",
397 getprogname(), refname, id_str);
398 free(id_str);
399 id_str = NULL;
400 refname = NULL; /* do not free; owned by their_refs */
401 id = NULL; /* do not free; owned by their_refs */
404 if (!TAILQ_EMPTY(delete_refs)) {
405 if (my_capabilities == NULL ||
406 strstr(my_capabilities, GOT_CAPA_DELETE_REFS) == NULL) {
407 err = got_error(GOT_ERR_CAPA_DELETE_REFS);
408 goto done;
412 TAILQ_FOREACH(pe, delete_refs, entry) {
413 const char *refname = pe->path;
414 struct got_pathlist_entry *their_pe;
415 struct got_object_id *their_id = NULL;
417 TAILQ_FOREACH(their_pe, &their_refs, entry) {
418 const char *their_refname = their_pe->path;
419 if (got_path_cmp(refname, their_refname,
420 strlen(refname), strlen(their_refname)) == 0) {
421 their_id = their_pe->data;
422 break;
425 if (their_id == NULL) {
426 err = got_error_fmt(GOT_ERR_NOT_REF,
427 "%s does not exist in remote repository",
428 refname);
429 goto done;
432 got_sha1_digest_to_str(their_id->sha1, old_hashstr,
433 sizeof(old_hashstr));
434 got_sha1_digest_to_str(zero_id, new_hashstr,
435 sizeof(new_hashstr));
436 err = describe_refchange(&n, &sent_my_capabilites,
437 my_capabilities, buf, sizeof(buf), refname,
438 old_hashstr, new_hashstr);
439 if (err)
440 goto done;
441 err = got_pkt_writepkt(fd, buf, n, chattygot);
442 if (err)
443 goto done;
444 if (chattygot) {
445 fprintf(stderr, "%s: deleting %s %s\n",
446 getprogname(), refname, old_hashstr);
448 nsent++;
451 TAILQ_FOREACH(pe, refs, entry) {
452 const char *refname = pe->path;
453 struct got_object_id *id = pe->data;
454 struct got_object_id *their_id = NULL;
455 struct got_pathlist_entry *their_pe;
457 TAILQ_FOREACH(their_pe, &their_refs, entry) {
458 const char *their_refname = their_pe->path;
459 if (got_path_cmp(refname, their_refname,
460 strlen(refname), strlen(their_refname)) == 0) {
461 their_id = their_pe->data;
462 break;
465 if (their_id) {
466 if (got_object_id_cmp(id, their_id) == 0) {
467 if (chattygot) {
468 fprintf(stderr,
469 "%s: no change for %s\n",
470 getprogname(), refname);
472 continue;
474 got_sha1_digest_to_str(their_id->sha1, old_hashstr,
475 sizeof(old_hashstr));
476 } else {
477 got_sha1_digest_to_str(zero_id, old_hashstr,
478 sizeof(old_hashstr));
480 got_sha1_digest_to_str(id->sha1, new_hashstr,
481 sizeof(new_hashstr));
482 err = describe_refchange(&n, &sent_my_capabilites,
483 my_capabilities, buf, sizeof(buf), refname,
484 old_hashstr, new_hashstr);
485 if (err)
486 goto done;
487 err = got_pkt_writepkt(fd, buf, n, chattygot);
488 if (err)
489 goto done;
490 if (chattygot) {
491 if (their_id) {
492 fprintf(stderr, "%s: updating %s %s -> %s\n",
493 getprogname(), refname, old_hashstr,
494 new_hashstr);
495 } else {
496 fprintf(stderr, "%s: creating %s %s\n",
497 getprogname(), refname, new_hashstr);
500 nsent++;
502 err = got_pkt_flushpkt(fd, chattygot);
503 if (err)
504 goto done;
506 err = send_pack_request(ibuf);
507 if (err)
508 goto done;
510 err = recv_packfd(&packfd, ibuf);
511 if (err)
512 goto done;
514 if (packfd != -1) {
515 err = send_pack_file(fd, packfd, ibuf);
516 if (err)
517 goto done;
520 err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
521 if (err)
522 goto done;
523 if (n >= 4 && strncmp(buf, "ERR ", 4) == 0) {
524 err = send_error(&buf[4], n - 4);
525 goto done;
526 } else if (n < 10 || strncmp(buf, "unpack ok\n", 10) != 0) {
527 err = got_error_msg(GOT_ERR_BAD_PACKET,
528 "unexpected message from server");
529 goto done;
532 while (nsent > 0) {
533 err = got_pkt_readpkt(&n, fd, buf, sizeof(buf), chattygot);
534 if (err)
535 goto done;
536 if (n < 3) {
537 err = got_error_msg(GOT_ERR_BAD_PACKET,
538 "unexpected message from server");
539 goto done;
540 } else if (strncmp(buf, "ok ", 3) == 0) {
541 err = send_ref_status(ibuf, buf + 3, 1,
542 refs, delete_refs);
543 if (err)
544 goto done;
545 } else if (strncmp(buf, "ng ", 3) == 0) {
546 err = send_ref_status(ibuf, buf + 3, 0,
547 refs, delete_refs);
548 if (err)
549 goto done;
550 } else {
551 err = got_error_msg(GOT_ERR_BAD_PACKET,
552 "unexpected message from server");
553 goto done;
555 nsent--;
558 err = send_done(ibuf);
559 done:
560 TAILQ_FOREACH(pe, &their_refs, entry) {
561 free((void *)pe->path);
562 free(pe->data);
564 got_pathlist_free(&their_refs);
565 free(id_str);
566 free(id);
567 free(refname);
568 free(server_capabilities);
569 return err;
572 int
573 main(int argc, char **argv)
575 const struct got_error *err = NULL;
576 int sendfd;
577 struct imsgbuf ibuf;
578 struct imsg imsg;
579 struct got_pathlist_head refs;
580 struct got_pathlist_head delete_refs;
581 struct got_pathlist_entry *pe;
582 struct got_imsg_send_request send_req;
583 struct got_imsg_send_ref href;
584 size_t datalen, i;
585 #if 0
586 static int attached;
587 while (!attached)
588 sleep (1);
589 #endif
591 TAILQ_INIT(&refs);
592 TAILQ_INIT(&delete_refs);
594 imsg_init(&ibuf, GOT_IMSG_FD_CHILD);
595 #ifndef PROFILE
596 /* revoke access to most system calls */
597 if (pledge("stdio recvfd", NULL) == -1) {
598 err = got_error_from_errno("pledge");
599 got_privsep_send_error(&ibuf, err);
600 return 1;
602 #endif
603 if ((err = got_privsep_recv_imsg(&imsg, &ibuf, 0)) != 0) {
604 if (err->code == GOT_ERR_PRIVSEP_PIPE)
605 err = NULL;
606 goto done;
608 if (imsg.hdr.type == GOT_IMSG_STOP)
609 goto done;
610 if (imsg.hdr.type != GOT_IMSG_SEND_REQUEST) {
611 err = got_error(GOT_ERR_PRIVSEP_MSG);
612 goto done;
614 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
615 if (datalen < sizeof(send_req)) {
616 err = got_error(GOT_ERR_PRIVSEP_LEN);
617 goto done;
619 memcpy(&send_req, imsg.data, sizeof(send_req));
620 sendfd = imsg.fd;
621 imsg_free(&imsg);
623 if (send_req.verbosity > 0)
624 chattygot += send_req.verbosity;
626 for (i = 0; i < send_req.nrefs; i++) {
627 struct got_object_id *id;
628 char *refname;
630 if ((err = got_privsep_recv_imsg(&imsg, &ibuf, 0)) != 0) {
631 if (err->code == GOT_ERR_PRIVSEP_PIPE)
632 err = NULL;
633 goto done;
635 if (imsg.hdr.type == GOT_IMSG_STOP)
636 goto done;
637 if (imsg.hdr.type != GOT_IMSG_SEND_REF) {
638 err = got_error(GOT_ERR_PRIVSEP_MSG);
639 goto done;
641 datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
642 if (datalen < sizeof(href)) {
643 err = got_error(GOT_ERR_PRIVSEP_LEN);
644 goto done;
646 memcpy(&href, imsg.data, sizeof(href));
647 if (datalen - sizeof(href) < href.name_len) {
648 err = got_error(GOT_ERR_PRIVSEP_LEN);
649 goto done;
651 refname = malloc(href.name_len + 1);
652 if (refname == NULL) {
653 err = got_error_from_errno("malloc");
654 goto done;
656 memcpy(refname, imsg.data + sizeof(href), href.name_len);
657 refname[href.name_len] = '\0';
659 /*
660 * Prevent sending of references that won't make any
661 * sense outside the local repository's context.
662 */
663 if (strncmp(refname, "refs/got/", 9) == 0 ||
664 strncmp(refname, "refs/remotes/", 13) == 0) {
665 err = got_error_fmt(GOT_ERR_SEND_BAD_REF,
666 "%s", refname);
667 goto done;
670 id = malloc(sizeof(*id));
671 if (id == NULL) {
672 free(refname);
673 err = got_error_from_errno("malloc");
674 goto done;
676 memcpy(id->sha1, href.id, SHA1_DIGEST_LENGTH);
677 if (href.delete)
678 err = got_pathlist_append(&delete_refs, refname, id);
679 else
680 err = got_pathlist_append(&refs, refname, id);
681 if (err) {
682 free(refname);
683 free(id);
684 goto done;
687 imsg_free(&imsg);
690 err = send_pack(sendfd, &refs, &delete_refs, &ibuf);
691 done:
692 TAILQ_FOREACH(pe, &refs, entry) {
693 free((char *)pe->path);
694 free(pe->data);
696 got_pathlist_free(&refs);
697 TAILQ_FOREACH(pe, &delete_refs, entry) {
698 free((char *)pe->path);
699 free(pe->data);
701 got_pathlist_free(&delete_refs);
702 if (sendfd != -1 && close(sendfd) == -1 && err == NULL)
703 err = got_error_from_errno("close");
704 if (err != NULL && err->code != GOT_ERR_CANCELLED) {
705 fprintf(stderr, "%s: %s\n", getprogname(), err->msg);
706 got_privsep_send_error(&ibuf, err);
709 exit(0);