Merge branch 'nb/gnome-keyring-build'
[git] / upload-pack.c
1 #include "cache.h"
2 #include "refs.h"
3 #include "pkt-line.h"
4 #include "sideband.h"
5 #include "tag.h"
6 #include "object.h"
7 #include "commit.h"
8 #include "exec_cmd.h"
9 #include "diff.h"
10 #include "revision.h"
11 #include "list-objects.h"
12 #include "run-command.h"
13 #include "connect.h"
14 #include "sigchain.h"
15 #include "version.h"
16 #include "string-list.h"
17 #include "parse-options.h"
18
19 static const char * const upload_pack_usage[] = {
20         N_("git upload-pack [<options>] <dir>"),
21         NULL
22 };
23
24 /* Remember to update object flag allocation in object.h */
25 #define THEY_HAVE       (1u << 11)
26 #define OUR_REF         (1u << 12)
27 #define WANTED          (1u << 13)
28 #define COMMON_KNOWN    (1u << 14)
29 #define REACHABLE       (1u << 15)
30
31 #define SHALLOW         (1u << 16)
32 #define NOT_SHALLOW     (1u << 17)
33 #define CLIENT_SHALLOW  (1u << 18)
34 #define HIDDEN_REF      (1u << 19)
35
36 static unsigned long oldest_have;
37
38 static int multi_ack;
39 static int no_done;
40 static int use_thin_pack, use_ofs_delta, use_include_tag;
41 static int no_progress, daemon_mode;
42 /* Allow specifying sha1 if it is a ref tip. */
43 #define ALLOW_TIP_SHA1  01
44 /* Allow request of a sha1 if it is reachable from a ref (possibly hidden ref). */
45 #define ALLOW_REACHABLE_SHA1    02
46 static unsigned int allow_unadvertised_object_request;
47 static int shallow_nr;
48 static struct object_array have_obj;
49 static struct object_array want_obj;
50 static struct object_array extra_edge_obj;
51 static unsigned int timeout;
52 static int keepalive = 5;
53 /* 0 for no sideband,
54  * otherwise maximum packet size (up to 65520 bytes).
55  */
56 static int use_sideband;
57 static int advertise_refs;
58 static int stateless_rpc;
59
60 static void reset_timeout(void)
61 {
62         alarm(timeout);
63 }
64
65 static ssize_t send_client_data(int fd, const char *data, ssize_t sz)
66 {
67         if (use_sideband)
68                 return send_sideband(1, fd, data, sz, use_sideband);
69         if (fd == 3)
70                 /* emergency quit */
71                 fd = 2;
72         if (fd == 2) {
73                 /* XXX: are we happy to lose stuff here? */
74                 xwrite(fd, data, sz);
75                 return sz;
76         }
77         write_or_die(fd, data, sz);
78         return sz;
79 }
80
81 static int write_one_shallow(const struct commit_graft *graft, void *cb_data)
82 {
83         FILE *fp = cb_data;
84         if (graft->nr_parent == -1)
85                 fprintf(fp, "--shallow %s\n", oid_to_hex(&graft->oid));
86         return 0;
87 }
88
89 static void create_pack_file(void)
90 {
91         struct child_process pack_objects = CHILD_PROCESS_INIT;
92         char data[8193], progress[128];
93         char abort_msg[] = "aborting due to possible repository "
94                 "corruption on the remote side.";
95         int buffered = -1;
96         ssize_t sz;
97         int i;
98         FILE *pipe_fd;
99
100         if (shallow_nr) {
101                 argv_array_push(&pack_objects.args, "--shallow-file");
102                 argv_array_push(&pack_objects.args, "");
103         }
104         argv_array_push(&pack_objects.args, "pack-objects");
105         argv_array_push(&pack_objects.args, "--revs");
106         if (use_thin_pack)
107                 argv_array_push(&pack_objects.args, "--thin");
108
109         argv_array_push(&pack_objects.args, "--stdout");
110         if (shallow_nr)
111                 argv_array_push(&pack_objects.args, "--shallow");
112         if (!no_progress)
113                 argv_array_push(&pack_objects.args, "--progress");
114         if (use_ofs_delta)
115                 argv_array_push(&pack_objects.args, "--delta-base-offset");
116         if (use_include_tag)
117                 argv_array_push(&pack_objects.args, "--include-tag");
118
119         pack_objects.in = -1;
120         pack_objects.out = -1;
121         pack_objects.err = -1;
122         pack_objects.git_cmd = 1;
123
124         if (start_command(&pack_objects))
125                 die("git upload-pack: unable to fork git-pack-objects");
126
127         pipe_fd = xfdopen(pack_objects.in, "w");
128
129         if (shallow_nr)
130                 for_each_commit_graft(write_one_shallow, pipe_fd);
131
132         for (i = 0; i < want_obj.nr; i++)
133                 fprintf(pipe_fd, "%s\n",
134                         oid_to_hex(&want_obj.objects[i].item->oid));
135         fprintf(pipe_fd, "--not\n");
136         for (i = 0; i < have_obj.nr; i++)
137                 fprintf(pipe_fd, "%s\n",
138                         oid_to_hex(&have_obj.objects[i].item->oid));
139         for (i = 0; i < extra_edge_obj.nr; i++)
140                 fprintf(pipe_fd, "%s\n",
141                         oid_to_hex(&extra_edge_obj.objects[i].item->oid));
142         fprintf(pipe_fd, "\n");
143         fflush(pipe_fd);
144         fclose(pipe_fd);
145
146         /* We read from pack_objects.err to capture stderr output for
147          * progress bar, and pack_objects.out to capture the pack data.
148          */
149
150         while (1) {
151                 struct pollfd pfd[2];
152                 int pe, pu, pollsize;
153                 int ret;
154
155                 reset_timeout();
156
157                 pollsize = 0;
158                 pe = pu = -1;
159
160                 if (0 <= pack_objects.out) {
161                         pfd[pollsize].fd = pack_objects.out;
162                         pfd[pollsize].events = POLLIN;
163                         pu = pollsize;
164                         pollsize++;
165                 }
166                 if (0 <= pack_objects.err) {
167                         pfd[pollsize].fd = pack_objects.err;
168                         pfd[pollsize].events = POLLIN;
169                         pe = pollsize;
170                         pollsize++;
171                 }
172
173                 if (!pollsize)
174                         break;
175
176                 ret = poll(pfd, pollsize,
177                         keepalive < 0 ? -1 : 1000 * keepalive);
178
179                 if (ret < 0) {
180                         if (errno != EINTR) {
181                                 error_errno("poll failed, resuming");
182                                 sleep(1);
183                         }
184                         continue;
185                 }
186                 if (0 <= pe && (pfd[pe].revents & (POLLIN|POLLHUP))) {
187                         /* Status ready; we ship that in the side-band
188                          * or dump to the standard error.
189                          */
190                         sz = xread(pack_objects.err, progress,
191                                   sizeof(progress));
192                         if (0 < sz)
193                                 send_client_data(2, progress, sz);
194                         else if (sz == 0) {
195                                 close(pack_objects.err);
196                                 pack_objects.err = -1;
197                         }
198                         else
199                                 goto fail;
200                         /* give priority to status messages */
201                         continue;
202                 }
203                 if (0 <= pu && (pfd[pu].revents & (POLLIN|POLLHUP))) {
204                         /* Data ready; we keep the last byte to ourselves
205                          * in case we detect broken rev-list, so that we
206                          * can leave the stream corrupted.  This is
207                          * unfortunate -- unpack-objects would happily
208                          * accept a valid packdata with trailing garbage,
209                          * so appending garbage after we pass all the
210                          * pack data is not good enough to signal
211                          * breakage to downstream.
212                          */
213                         char *cp = data;
214                         ssize_t outsz = 0;
215                         if (0 <= buffered) {
216                                 *cp++ = buffered;
217                                 outsz++;
218                         }
219                         sz = xread(pack_objects.out, cp,
220                                   sizeof(data) - outsz);
221                         if (0 < sz)
222                                 ;
223                         else if (sz == 0) {
224                                 close(pack_objects.out);
225                                 pack_objects.out = -1;
226                         }
227                         else
228                                 goto fail;
229                         sz += outsz;
230                         if (1 < sz) {
231                                 buffered = data[sz-1] & 0xFF;
232                                 sz--;
233                         }
234                         else
235                                 buffered = -1;
236                         sz = send_client_data(1, data, sz);
237                         if (sz < 0)
238                                 goto fail;
239                 }
240
241                 /*
242                  * We hit the keepalive timeout without saying anything; send
243                  * an empty message on the data sideband just to let the other
244                  * side know we're still working on it, but don't have any data
245                  * yet.
246                  *
247                  * If we don't have a sideband channel, there's no room in the
248                  * protocol to say anything, so those clients are just out of
249                  * luck.
250                  */
251                 if (!ret && use_sideband) {
252                         static const char buf[] = "0005\1";
253                         write_or_die(1, buf, 5);
254                 }
255         }
256
257         if (finish_command(&pack_objects)) {
258                 error("git upload-pack: git-pack-objects died with error.");
259                 goto fail;
260         }
261
262         /* flush the data */
263         if (0 <= buffered) {
264                 data[0] = buffered;
265                 sz = send_client_data(1, data, 1);
266                 if (sz < 0)
267                         goto fail;
268                 fprintf(stderr, "flushed.\n");
269         }
270         if (use_sideband)
271                 packet_flush(1);
272         return;
273
274  fail:
275         send_client_data(3, abort_msg, sizeof(abort_msg));
276         die("git upload-pack: %s", abort_msg);
277 }
278
279 static int got_sha1(char *hex, unsigned char *sha1)
280 {
281         struct object *o;
282         int we_knew_they_have = 0;
283
284         if (get_sha1_hex(hex, sha1))
285                 die("git upload-pack: expected SHA1 object, got '%s'", hex);
286         if (!has_sha1_file(sha1))
287                 return -1;
288
289         o = parse_object(sha1);
290         if (!o)
291                 die("oops (%s)", sha1_to_hex(sha1));
292         if (o->type == OBJ_COMMIT) {
293                 struct commit_list *parents;
294                 struct commit *commit = (struct commit *)o;
295                 if (o->flags & THEY_HAVE)
296                         we_knew_they_have = 1;
297                 else
298                         o->flags |= THEY_HAVE;
299                 if (!oldest_have || (commit->date < oldest_have))
300                         oldest_have = commit->date;
301                 for (parents = commit->parents;
302                      parents;
303                      parents = parents->next)
304                         parents->item->object.flags |= THEY_HAVE;
305         }
306         if (!we_knew_they_have) {
307                 add_object_array(o, NULL, &have_obj);
308                 return 1;
309         }
310         return 0;
311 }
312
313 static int reachable(struct commit *want)
314 {
315         struct commit_list *work = NULL;
316
317         commit_list_insert_by_date(want, &work);
318         while (work) {
319                 struct commit_list *list;
320                 struct commit *commit = pop_commit(&work);
321
322                 if (commit->object.flags & THEY_HAVE) {
323                         want->object.flags |= COMMON_KNOWN;
324                         break;
325                 }
326                 if (!commit->object.parsed)
327                         parse_object(commit->object.oid.hash);
328                 if (commit->object.flags & REACHABLE)
329                         continue;
330                 commit->object.flags |= REACHABLE;
331                 if (commit->date < oldest_have)
332                         continue;
333                 for (list = commit->parents; list; list = list->next) {
334                         struct commit *parent = list->item;
335                         if (!(parent->object.flags & REACHABLE))
336                                 commit_list_insert_by_date(parent, &work);
337                 }
338         }
339         want->object.flags |= REACHABLE;
340         clear_commit_marks(want, REACHABLE);
341         free_commit_list(work);
342         return (want->object.flags & COMMON_KNOWN);
343 }
344
345 static int ok_to_give_up(void)
346 {
347         int i;
348
349         if (!have_obj.nr)
350                 return 0;
351
352         for (i = 0; i < want_obj.nr; i++) {
353                 struct object *want = want_obj.objects[i].item;
354
355                 if (want->flags & COMMON_KNOWN)
356                         continue;
357                 want = deref_tag(want, "a want line", 0);
358                 if (!want || want->type != OBJ_COMMIT) {
359                         /* no way to tell if this is reachable by
360                          * looking at the ancestry chain alone, so
361                          * leave a note to ourselves not to worry about
362                          * this object anymore.
363                          */
364                         want_obj.objects[i].item->flags |= COMMON_KNOWN;
365                         continue;
366                 }
367                 if (!reachable((struct commit *)want))
368                         return 0;
369         }
370         return 1;
371 }
372
373 static int get_common_commits(void)
374 {
375         unsigned char sha1[20];
376         char last_hex[41];
377         int got_common = 0;
378         int got_other = 0;
379         int sent_ready = 0;
380
381         save_commit_buffer = 0;
382
383         for (;;) {
384                 char *line = packet_read_line(0, NULL);
385                 reset_timeout();
386
387                 if (!line) {
388                         if (multi_ack == 2 && got_common
389                             && !got_other && ok_to_give_up()) {
390                                 sent_ready = 1;
391                                 packet_write(1, "ACK %s ready\n", last_hex);
392                         }
393                         if (have_obj.nr == 0 || multi_ack)
394                                 packet_write(1, "NAK\n");
395
396                         if (no_done && sent_ready) {
397                                 packet_write(1, "ACK %s\n", last_hex);
398                                 return 0;
399                         }
400                         if (stateless_rpc)
401                                 exit(0);
402                         got_common = 0;
403                         got_other = 0;
404                         continue;
405                 }
406                 if (starts_with(line, "have ")) {
407                         switch (got_sha1(line+5, sha1)) {
408                         case -1: /* they have what we do not */
409                                 got_other = 1;
410                                 if (multi_ack && ok_to_give_up()) {
411                                         const char *hex = sha1_to_hex(sha1);
412                                         if (multi_ack == 2) {
413                                                 sent_ready = 1;
414                                                 packet_write(1, "ACK %s ready\n", hex);
415                                         } else
416                                                 packet_write(1, "ACK %s continue\n", hex);
417                                 }
418                                 break;
419                         default:
420                                 got_common = 1;
421                                 memcpy(last_hex, sha1_to_hex(sha1), 41);
422                                 if (multi_ack == 2)
423                                         packet_write(1, "ACK %s common\n", last_hex);
424                                 else if (multi_ack)
425                                         packet_write(1, "ACK %s continue\n", last_hex);
426                                 else if (have_obj.nr == 1)
427                                         packet_write(1, "ACK %s\n", last_hex);
428                                 break;
429                         }
430                         continue;
431                 }
432                 if (!strcmp(line, "done")) {
433                         if (have_obj.nr > 0) {
434                                 if (multi_ack)
435                                         packet_write(1, "ACK %s\n", last_hex);
436                                 return 0;
437                         }
438                         packet_write(1, "NAK\n");
439                         return -1;
440                 }
441                 die("git upload-pack: expected SHA1 list, got '%s'", line);
442         }
443 }
444
445 static int is_our_ref(struct object *o)
446 {
447         int allow_hidden_ref = (allow_unadvertised_object_request &
448                         (ALLOW_TIP_SHA1 | ALLOW_REACHABLE_SHA1));
449         return o->flags & ((allow_hidden_ref ? HIDDEN_REF : 0) | OUR_REF);
450 }
451
452 static void check_non_tip(void)
453 {
454         static const char *argv[] = {
455                 "rev-list", "--stdin", NULL,
456         };
457         static struct child_process cmd = CHILD_PROCESS_INIT;
458         struct object *o;
459         char namebuf[42]; /* ^ + SHA-1 + LF */
460         int i;
461
462         /*
463          * In the normal in-process case without
464          * uploadpack.allowReachableSHA1InWant,
465          * non-tip requests can never happen.
466          */
467         if (!stateless_rpc && !(allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1))
468                 goto error;
469
470         cmd.argv = argv;
471         cmd.git_cmd = 1;
472         cmd.no_stderr = 1;
473         cmd.in = -1;
474         cmd.out = -1;
475
476         if (start_command(&cmd))
477                 goto error;
478
479         /*
480          * If rev-list --stdin encounters an unknown commit, it
481          * terminates, which will cause SIGPIPE in the write loop
482          * below.
483          */
484         sigchain_push(SIGPIPE, SIG_IGN);
485
486         namebuf[0] = '^';
487         namebuf[41] = '\n';
488         for (i = get_max_object_index(); 0 < i; ) {
489                 o = get_indexed_object(--i);
490                 if (!o)
491                         continue;
492                 if (!is_our_ref(o))
493                         continue;
494                 memcpy(namebuf + 1, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
495                 if (write_in_full(cmd.in, namebuf, 42) < 0)
496                         goto error;
497         }
498         namebuf[40] = '\n';
499         for (i = 0; i < want_obj.nr; i++) {
500                 o = want_obj.objects[i].item;
501                 if (is_our_ref(o))
502                         continue;
503                 memcpy(namebuf, oid_to_hex(&o->oid), GIT_SHA1_HEXSZ);
504                 if (write_in_full(cmd.in, namebuf, 41) < 0)
505                         goto error;
506         }
507         close(cmd.in);
508
509         sigchain_pop(SIGPIPE);
510
511         /*
512          * The commits out of the rev-list are not ancestors of
513          * our ref.
514          */
515         i = read_in_full(cmd.out, namebuf, 1);
516         if (i)
517                 goto error;
518         close(cmd.out);
519
520         /*
521          * rev-list may have died by encountering a bad commit
522          * in the history, in which case we do want to bail out
523          * even when it showed no commit.
524          */
525         if (finish_command(&cmd))
526                 goto error;
527
528         /* All the non-tip ones are ancestors of what we advertised */
529         return;
530
531 error:
532         /* Pick one of them (we know there at least is one) */
533         for (i = 0; i < want_obj.nr; i++) {
534                 o = want_obj.objects[i].item;
535                 if (!is_our_ref(o))
536                         die("git upload-pack: not our ref %s",
537                             oid_to_hex(&o->oid));
538         }
539 }
540
541 static void receive_needs(void)
542 {
543         struct object_array shallows = OBJECT_ARRAY_INIT;
544         int depth = 0;
545         int has_non_tip = 0;
546
547         shallow_nr = 0;
548         for (;;) {
549                 struct object *o;
550                 const char *features;
551                 unsigned char sha1_buf[20];
552                 char *line = packet_read_line(0, NULL);
553                 reset_timeout();
554                 if (!line)
555                         break;
556
557                 if (starts_with(line, "shallow ")) {
558                         unsigned char sha1[20];
559                         struct object *object;
560                         if (get_sha1_hex(line + 8, sha1))
561                                 die("invalid shallow line: %s", line);
562                         object = parse_object(sha1);
563                         if (!object)
564                                 continue;
565                         if (object->type != OBJ_COMMIT)
566                                 die("invalid shallow object %s", sha1_to_hex(sha1));
567                         if (!(object->flags & CLIENT_SHALLOW)) {
568                                 object->flags |= CLIENT_SHALLOW;
569                                 add_object_array(object, NULL, &shallows);
570                         }
571                         continue;
572                 }
573                 if (starts_with(line, "deepen ")) {
574                         char *end;
575                         depth = strtol(line + 7, &end, 0);
576                         if (end == line + 7 || depth <= 0)
577                                 die("Invalid deepen: %s", line);
578                         continue;
579                 }
580                 if (!starts_with(line, "want ") ||
581                     get_sha1_hex(line+5, sha1_buf))
582                         die("git upload-pack: protocol error, "
583                             "expected to get sha, not '%s'", line);
584
585                 features = line + 45;
586
587                 if (parse_feature_request(features, "multi_ack_detailed"))
588                         multi_ack = 2;
589                 else if (parse_feature_request(features, "multi_ack"))
590                         multi_ack = 1;
591                 if (parse_feature_request(features, "no-done"))
592                         no_done = 1;
593                 if (parse_feature_request(features, "thin-pack"))
594                         use_thin_pack = 1;
595                 if (parse_feature_request(features, "ofs-delta"))
596                         use_ofs_delta = 1;
597                 if (parse_feature_request(features, "side-band-64k"))
598                         use_sideband = LARGE_PACKET_MAX;
599                 else if (parse_feature_request(features, "side-band"))
600                         use_sideband = DEFAULT_PACKET_MAX;
601                 if (parse_feature_request(features, "no-progress"))
602                         no_progress = 1;
603                 if (parse_feature_request(features, "include-tag"))
604                         use_include_tag = 1;
605
606                 o = parse_object(sha1_buf);
607                 if (!o)
608                         die("git upload-pack: not our ref %s",
609                             sha1_to_hex(sha1_buf));
610                 if (!(o->flags & WANTED)) {
611                         o->flags |= WANTED;
612                         if (!is_our_ref(o))
613                                 has_non_tip = 1;
614                         add_object_array(o, NULL, &want_obj);
615                 }
616         }
617
618         /*
619          * We have sent all our refs already, and the other end
620          * should have chosen out of them. When we are operating
621          * in the stateless RPC mode, however, their choice may
622          * have been based on the set of older refs advertised
623          * by another process that handled the initial request.
624          */
625         if (has_non_tip)
626                 check_non_tip();
627
628         if (!use_sideband && daemon_mode)
629                 no_progress = 1;
630
631         if (depth == 0 && shallows.nr == 0)
632                 return;
633         if (depth > 0) {
634                 struct commit_list *result = NULL, *backup = NULL;
635                 int i;
636                 if (depth == INFINITE_DEPTH && !is_repository_shallow())
637                         for (i = 0; i < shallows.nr; i++) {
638                                 struct object *object = shallows.objects[i].item;
639                                 object->flags |= NOT_SHALLOW;
640                         }
641                 else
642                         backup = result =
643                                 get_shallow_commits(&want_obj, depth,
644                                                     SHALLOW, NOT_SHALLOW);
645                 while (result) {
646                         struct object *object = &result->item->object;
647                         if (!(object->flags & (CLIENT_SHALLOW|NOT_SHALLOW))) {
648                                 packet_write(1, "shallow %s",
649                                                 oid_to_hex(&object->oid));
650                                 register_shallow(object->oid.hash);
651                                 shallow_nr++;
652                         }
653                         result = result->next;
654                 }
655                 free_commit_list(backup);
656                 for (i = 0; i < shallows.nr; i++) {
657                         struct object *object = shallows.objects[i].item;
658                         if (object->flags & NOT_SHALLOW) {
659                                 struct commit_list *parents;
660                                 packet_write(1, "unshallow %s",
661                                         oid_to_hex(&object->oid));
662                                 object->flags &= ~CLIENT_SHALLOW;
663                                 /* make sure the real parents are parsed */
664                                 unregister_shallow(object->oid.hash);
665                                 object->parsed = 0;
666                                 parse_commit_or_die((struct commit *)object);
667                                 parents = ((struct commit *)object)->parents;
668                                 while (parents) {
669                                         add_object_array(&parents->item->object,
670                                                         NULL, &want_obj);
671                                         parents = parents->next;
672                                 }
673                                 add_object_array(object, NULL, &extra_edge_obj);
674                         }
675                         /* make sure commit traversal conforms to client */
676                         register_shallow(object->oid.hash);
677                 }
678                 packet_flush(1);
679         } else
680                 if (shallows.nr > 0) {
681                         int i;
682                         for (i = 0; i < shallows.nr; i++)
683                                 register_shallow(shallows.objects[i].item->oid.hash);
684                 }
685
686         shallow_nr += shallows.nr;
687         free(shallows.objects);
688 }
689
690 /* return non-zero if the ref is hidden, otherwise 0 */
691 static int mark_our_ref(const char *refname, const char *refname_full,
692                         const struct object_id *oid)
693 {
694         struct object *o = lookup_unknown_object(oid->hash);
695
696         if (ref_is_hidden(refname, refname_full)) {
697                 o->flags |= HIDDEN_REF;
698                 return 1;
699         }
700         o->flags |= OUR_REF;
701         return 0;
702 }
703
704 static int check_ref(const char *refname_full, const struct object_id *oid,
705                      int flag, void *cb_data)
706 {
707         const char *refname = strip_namespace(refname_full);
708
709         mark_our_ref(refname, refname_full, oid);
710         return 0;
711 }
712
713 static void format_symref_info(struct strbuf *buf, struct string_list *symref)
714 {
715         struct string_list_item *item;
716
717         if (!symref->nr)
718                 return;
719         for_each_string_list_item(item, symref)
720                 strbuf_addf(buf, " symref=%s:%s", item->string, (char *)item->util);
721 }
722
723 static int send_ref(const char *refname, const struct object_id *oid,
724                     int flag, void *cb_data)
725 {
726         static const char *capabilities = "multi_ack thin-pack side-band"
727                 " side-band-64k ofs-delta shallow no-progress"
728                 " include-tag multi_ack_detailed";
729         const char *refname_nons = strip_namespace(refname);
730         struct object_id peeled;
731
732         if (mark_our_ref(refname_nons, refname, oid))
733                 return 0;
734
735         if (capabilities) {
736                 struct strbuf symref_info = STRBUF_INIT;
737
738                 format_symref_info(&symref_info, cb_data);
739                 packet_write(1, "%s %s%c%s%s%s%s%s agent=%s\n",
740                              oid_to_hex(oid), refname_nons,
741                              0, capabilities,
742                              (allow_unadvertised_object_request & ALLOW_TIP_SHA1) ?
743                                      " allow-tip-sha1-in-want" : "",
744                              (allow_unadvertised_object_request & ALLOW_REACHABLE_SHA1) ?
745                                      " allow-reachable-sha1-in-want" : "",
746                              stateless_rpc ? " no-done" : "",
747                              symref_info.buf,
748                              git_user_agent_sanitized());
749                 strbuf_release(&symref_info);
750         } else {
751                 packet_write(1, "%s %s\n", oid_to_hex(oid), refname_nons);
752         }
753         capabilities = NULL;
754         if (!peel_ref(refname, peeled.hash))
755                 packet_write(1, "%s %s^{}\n", oid_to_hex(&peeled), refname_nons);
756         return 0;
757 }
758
759 static int find_symref(const char *refname, const struct object_id *oid,
760                        int flag, void *cb_data)
761 {
762         const char *symref_target;
763         struct string_list_item *item;
764         struct object_id unused;
765
766         if ((flag & REF_ISSYMREF) == 0)
767                 return 0;
768         symref_target = resolve_ref_unsafe(refname, 0, unused.hash, &flag);
769         if (!symref_target || (flag & REF_ISSYMREF) == 0)
770                 die("'%s' is a symref but it is not?", refname);
771         item = string_list_append(cb_data, refname);
772         item->util = xstrdup(symref_target);
773         return 0;
774 }
775
776 static void upload_pack(void)
777 {
778         struct string_list symref = STRING_LIST_INIT_DUP;
779
780         head_ref_namespaced(find_symref, &symref);
781
782         if (advertise_refs || !stateless_rpc) {
783                 reset_timeout();
784                 head_ref_namespaced(send_ref, &symref);
785                 for_each_namespaced_ref(send_ref, &symref);
786                 advertise_shallow_grafts(1);
787                 packet_flush(1);
788         } else {
789                 head_ref_namespaced(check_ref, NULL);
790                 for_each_namespaced_ref(check_ref, NULL);
791         }
792         string_list_clear(&symref, 1);
793         if (advertise_refs)
794                 return;
795
796         receive_needs();
797         if (want_obj.nr) {
798                 get_common_commits();
799                 create_pack_file();
800         }
801 }
802
803 static int upload_pack_config(const char *var, const char *value, void *unused)
804 {
805         if (!strcmp("uploadpack.allowtipsha1inwant", var)) {
806                 if (git_config_bool(var, value))
807                         allow_unadvertised_object_request |= ALLOW_TIP_SHA1;
808                 else
809                         allow_unadvertised_object_request &= ~ALLOW_TIP_SHA1;
810         } else if (!strcmp("uploadpack.allowreachablesha1inwant", var)) {
811                 if (git_config_bool(var, value))
812                         allow_unadvertised_object_request |= ALLOW_REACHABLE_SHA1;
813                 else
814                         allow_unadvertised_object_request &= ~ALLOW_REACHABLE_SHA1;
815         } else if (!strcmp("uploadpack.keepalive", var)) {
816                 keepalive = git_config_int(var, value);
817                 if (!keepalive)
818                         keepalive = -1;
819         }
820         return parse_hide_refs_config(var, value, "uploadpack");
821 }
822
823 int main(int argc, const char **argv)
824 {
825         const char *dir;
826         int strict = 0;
827         struct option options[] = {
828                 OPT_BOOL(0, "stateless-rpc", &stateless_rpc,
829                          N_("quit after a single request/response exchange")),
830                 OPT_BOOL(0, "advertise-refs", &advertise_refs,
831                          N_("exit immediately after intial ref advertisement")),
832                 OPT_BOOL(0, "strict", &strict,
833                          N_("do not try <directory>/.git/ if <directory> is no Git directory")),
834                 OPT_INTEGER(0, "timeout", &timeout,
835                             N_("interrupt transfer after <n> seconds of inactivity")),
836                 OPT_END()
837         };
838
839         git_setup_gettext();
840
841         packet_trace_identity("upload-pack");
842         git_extract_argv0_path(argv[0]);
843         check_replace_refs = 0;
844
845         argc = parse_options(argc, argv, NULL, options, upload_pack_usage, 0);
846
847         if (argc != 1)
848                 usage_with_options(upload_pack_usage, options);
849
850         if (timeout)
851                 daemon_mode = 1;
852
853         setup_path();
854
855         dir = argv[0];
856
857         if (!enter_repo(dir, strict))
858                 die("'%s' does not appear to be a git repository", dir);
859
860         git_config(upload_pack_config, NULL);
861         upload_pack();
862         return 0;
863 }