]> asedeno.scripts.mit.edu Git - git.git/blob - builtin-send-pack.c
Teach send-pack a mirror mode
[git.git] / builtin-send-pack.c
1 #include "cache.h"
2 #include "commit.h"
3 #include "tag.h"
4 #include "refs.h"
5 #include "pkt-line.h"
6 #include "run-command.h"
7 #include "remote.h"
8 #include "send-pack.h"
9
10 static const char send_pack_usage[] =
11 "git-send-pack [--all | --mirror] [--dry-run] [--force] [--receive-pack=<git-receive-pack>] [--verbose] [--thin] [<host>:]<directory> [<ref>...]\n"
12 "  --all and explicit <ref> specification are mutually exclusive.";
13
14 static struct send_pack_args args = {
15         /* .receivepack = */ "git-receive-pack",
16 };
17
18 /*
19  * Make a pack stream and spit it out into file descriptor fd
20  */
21 static int pack_objects(int fd, struct ref *refs)
22 {
23         /*
24          * The child becomes pack-objects --revs; we feed
25          * the revision parameters to it via its stdin and
26          * let its stdout go back to the other end.
27          */
28         const char *argv[] = {
29                 "pack-objects",
30                 "--all-progress",
31                 "--revs",
32                 "--stdout",
33                 NULL,
34                 NULL,
35         };
36         struct child_process po;
37
38         if (args.use_thin_pack)
39                 argv[4] = "--thin";
40         memset(&po, 0, sizeof(po));
41         po.argv = argv;
42         po.in = -1;
43         po.out = fd;
44         po.git_cmd = 1;
45         if (start_command(&po))
46                 die("git-pack-objects failed (%s)", strerror(errno));
47
48         /*
49          * We feed the pack-objects we just spawned with revision
50          * parameters by writing to the pipe.
51          */
52         while (refs) {
53                 char buf[42];
54
55                 if (!is_null_sha1(refs->old_sha1) &&
56                     has_sha1_file(refs->old_sha1)) {
57                         memcpy(buf + 1, sha1_to_hex(refs->old_sha1), 40);
58                         buf[0] = '^';
59                         buf[41] = '\n';
60                         if (!write_or_whine(po.in, buf, 42,
61                                                 "send-pack: send refs"))
62                                 break;
63                 }
64                 if (!is_null_sha1(refs->new_sha1)) {
65                         memcpy(buf, sha1_to_hex(refs->new_sha1), 40);
66                         buf[40] = '\n';
67                         if (!write_or_whine(po.in, buf, 41,
68                                                 "send-pack: send refs"))
69                                 break;
70                 }
71                 refs = refs->next;
72         }
73
74         if (finish_command(&po))
75                 return error("pack-objects died with strange error");
76         return 0;
77 }
78
79 static void unmark_and_free(struct commit_list *list, unsigned int mark)
80 {
81         while (list) {
82                 struct commit_list *temp = list;
83                 temp->item->object.flags &= ~mark;
84                 list = temp->next;
85                 free(temp);
86         }
87 }
88
89 static int ref_newer(const unsigned char *new_sha1,
90                      const unsigned char *old_sha1)
91 {
92         struct object *o;
93         struct commit *old, *new;
94         struct commit_list *list, *used;
95         int found = 0;
96
97         /* Both new and old must be commit-ish and new is descendant of
98          * old.  Otherwise we require --force.
99          */
100         o = deref_tag(parse_object(old_sha1), NULL, 0);
101         if (!o || o->type != OBJ_COMMIT)
102                 return 0;
103         old = (struct commit *) o;
104
105         o = deref_tag(parse_object(new_sha1), NULL, 0);
106         if (!o || o->type != OBJ_COMMIT)
107                 return 0;
108         new = (struct commit *) o;
109
110         if (parse_commit(new) < 0)
111                 return 0;
112
113         used = list = NULL;
114         commit_list_insert(new, &list);
115         while (list) {
116                 new = pop_most_recent_commit(&list, 1);
117                 commit_list_insert(new, &used);
118                 if (new == old) {
119                         found = 1;
120                         break;
121                 }
122         }
123         unmark_and_free(list, 1);
124         unmark_and_free(used, 1);
125         return found;
126 }
127
128 static struct ref *local_refs, **local_tail;
129 static struct ref *remote_refs, **remote_tail;
130
131 static int one_local_ref(const char *refname, const unsigned char *sha1, int flag, void *cb_data)
132 {
133         struct ref *ref;
134         int len = strlen(refname) + 1;
135         ref = xcalloc(1, sizeof(*ref) + len);
136         hashcpy(ref->new_sha1, sha1);
137         memcpy(ref->name, refname, len);
138         *local_tail = ref;
139         local_tail = &ref->next;
140         return 0;
141 }
142
143 static void get_local_heads(void)
144 {
145         local_tail = &local_refs;
146         for_each_ref(one_local_ref, NULL);
147 }
148
149 static int receive_status(int in)
150 {
151         char line[1000];
152         int ret = 0;
153         int len = packet_read_line(in, line, sizeof(line));
154         if (len < 10 || memcmp(line, "unpack ", 7)) {
155                 fprintf(stderr, "did not receive status back\n");
156                 return -1;
157         }
158         if (memcmp(line, "unpack ok\n", 10)) {
159                 fputs(line, stderr);
160                 ret = -1;
161         }
162         while (1) {
163                 len = packet_read_line(in, line, sizeof(line));
164                 if (!len)
165                         break;
166                 if (len < 3 ||
167                     (memcmp(line, "ok", 2) && memcmp(line, "ng", 2))) {
168                         fprintf(stderr, "protocol error: %s\n", line);
169                         ret = -1;
170                         break;
171                 }
172                 if (!memcmp(line, "ok", 2))
173                         continue;
174                 fputs(line, stderr);
175                 ret = -1;
176         }
177         return ret;
178 }
179
180 static void update_tracking_ref(struct remote *remote, struct ref *ref)
181 {
182         struct refspec rs;
183         int will_delete_ref;
184
185         rs.src = ref->name;
186         rs.dst = NULL;
187
188         if (!ref->peer_ref)
189                 return;
190
191         will_delete_ref = is_null_sha1(ref->peer_ref->new_sha1);
192
193         if (!will_delete_ref &&
194                         !hashcmp(ref->old_sha1, ref->peer_ref->new_sha1))
195                 return;
196
197         if (!remote_find_tracking(remote, &rs)) {
198                 if (args.verbose)
199                         fprintf(stderr, "updating local tracking ref '%s'\n", rs.dst);
200                 if (is_null_sha1(ref->peer_ref->new_sha1)) {
201                         if (delete_ref(rs.dst, NULL))
202                                 error("Failed to delete");
203                 } else
204                         update_ref("update by push", rs.dst,
205                                         ref->new_sha1, NULL, 0, 0);
206                 free(rs.dst);
207         }
208 }
209
210 static const char *prettify_ref(const char *name)
211 {
212         return name + (
213                 !prefixcmp(name, "refs/heads/") ? 11 :
214                 !prefixcmp(name, "refs/tags/") ? 10 :
215                 !prefixcmp(name, "refs/remotes/") ? 13 :
216                 0);
217 }
218
219 #define SUMMARY_WIDTH (2 * DEFAULT_ABBREV + 3)
220
221 static int do_send_pack(int in, int out, struct remote *remote, const char *dest, int nr_refspec, const char **refspec)
222 {
223         struct ref *ref;
224         int new_refs;
225         int ret = 0;
226         int ask_for_status_report = 0;
227         int allow_deleting_refs = 0;
228         int expect_status_report = 0;
229         int shown_dest = 0;
230         int flags = MATCH_REFS_NONE;
231
232         if (args.send_all)
233                 flags |= MATCH_REFS_ALL;
234         if (args.send_mirror)
235                 flags |= MATCH_REFS_MIRROR;
236
237         /* No funny business with the matcher */
238         remote_tail = get_remote_heads(in, &remote_refs, 0, NULL, REF_NORMAL);
239         get_local_heads();
240
241         /* Does the other end support the reporting? */
242         if (server_supports("report-status"))
243                 ask_for_status_report = 1;
244         if (server_supports("delete-refs"))
245                 allow_deleting_refs = 1;
246
247         /* match them up */
248         if (!remote_tail)
249                 remote_tail = &remote_refs;
250         if (match_refs(local_refs, remote_refs, &remote_tail,
251                                                nr_refspec, refspec, flags))
252                 return -1;
253
254         if (!remote_refs) {
255                 fprintf(stderr, "No refs in common and none specified; doing nothing.\n"
256                         "Perhaps you should specify a branch such as 'master'.\n");
257                 return 0;
258         }
259
260         /*
261          * Finally, tell the other end!
262          */
263         new_refs = 0;
264         for (ref = remote_refs; ref; ref = ref->next) {
265                 char old_hex[60], *new_hex;
266                 int will_delete_ref;
267                 const char *pretty_ref;
268                 const char *pretty_peer = NULL; /* only used when not deleting */
269                 const unsigned char *new_sha1;
270
271                 if (!ref->peer_ref) {
272                         if (!args.send_mirror)
273                                 continue;
274                         new_sha1 = null_sha1;
275                 }
276                 else
277                         new_sha1 = ref->peer_ref->new_sha1;
278
279                 if (!shown_dest) {
280                         fprintf(stderr, "To %s\n", dest);
281                         shown_dest = 1;
282                 }
283
284                 will_delete_ref = is_null_sha1(new_sha1);
285
286                 pretty_ref = prettify_ref(ref->name);
287                 if (!will_delete_ref)
288                         pretty_peer = prettify_ref(ref->peer_ref->name);
289
290                 if (will_delete_ref && !allow_deleting_refs) {
291                         fprintf(stderr, " ! %-*s %s (remote does not support deleting refs)\n",
292                                         SUMMARY_WIDTH, "[rejected]", pretty_ref);
293                         ret = -2;
294                         continue;
295                 }
296                 if (!will_delete_ref &&
297                     !hashcmp(ref->old_sha1, new_sha1)) {
298                         if (args.verbose)
299                                 fprintf(stderr, " = %-*s %s -> %s\n",
300                                         SUMMARY_WIDTH, "[up to date]",
301                                         pretty_peer, pretty_ref);
302                         continue;
303                 }
304
305                 /* This part determines what can overwrite what.
306                  * The rules are:
307                  *
308                  * (0) you can always use --force or +A:B notation to
309                  *     selectively force individual ref pairs.
310                  *
311                  * (1) if the old thing does not exist, it is OK.
312                  *
313                  * (2) if you do not have the old thing, you are not allowed
314                  *     to overwrite it; you would not know what you are losing
315                  *     otherwise.
316                  *
317                  * (3) if both new and old are commit-ish, and new is a
318                  *     descendant of old, it is OK.
319                  *
320                  * (4) regardless of all of the above, removing :B is
321                  *     always allowed.
322                  */
323
324                 if (!args.force_update &&
325                     !will_delete_ref &&
326                     !is_null_sha1(ref->old_sha1) &&
327                     !ref->force) {
328                         if (!has_sha1_file(ref->old_sha1) ||
329                             !ref_newer(new_sha1, ref->old_sha1)) {
330                                 /* We do not have the remote ref, or
331                                  * we know that the remote ref is not
332                                  * an ancestor of what we are trying to
333                                  * push.  Either way this can be losing
334                                  * commits at the remote end and likely
335                                  * we were not up to date to begin with.
336                                  */
337                                 fprintf(stderr, " ! %-*s %s -> %s (non-fast forward)\n",
338                                                 SUMMARY_WIDTH, "[rejected]",
339                                                 pretty_peer, pretty_ref);
340                                 ret = -2;
341                                 continue;
342                         }
343                 }
344                 hashcpy(ref->new_sha1, new_sha1);
345                 if (!will_delete_ref)
346                         new_refs++;
347                 strcpy(old_hex, sha1_to_hex(ref->old_sha1));
348                 new_hex = sha1_to_hex(ref->new_sha1);
349
350                 if (!args.dry_run) {
351                         if (ask_for_status_report) {
352                                 packet_write(out, "%s %s %s%c%s",
353                                         old_hex, new_hex, ref->name, 0,
354                                         "report-status");
355                                 ask_for_status_report = 0;
356                                 expect_status_report = 1;
357                         }
358                         else
359                                 packet_write(out, "%s %s %s",
360                                         old_hex, new_hex, ref->name);
361                 }
362                 if (will_delete_ref)
363                         fprintf(stderr, " - %-*s %s\n",
364                                 SUMMARY_WIDTH, "[deleting]",
365                                 pretty_ref);
366                 else if (is_null_sha1(ref->old_sha1)) {
367                         const char *msg;
368
369                         if (!prefixcmp(ref->name, "refs/tags/"))
370                                 msg = "[new tag]";
371                         else
372                                 msg = "[new branch]";
373                         fprintf(stderr, " * %-*s %s -> %s\n",
374                                 SUMMARY_WIDTH, msg,
375                                 pretty_peer, pretty_ref);
376                 }
377                 else {
378                         char quickref[83];
379                         char type = ' ';
380                         const char *msg = "";
381                         const char *old_abb;
382                         old_abb = find_unique_abbrev(ref->old_sha1, DEFAULT_ABBREV);
383                         strcpy(quickref, old_abb ? old_abb : old_hex);
384                         if (ref_newer(ref->peer_ref->new_sha1, ref->old_sha1))
385                                 strcat(quickref, "..");
386                         else {
387                                 strcat(quickref, "...");
388                                 type = '+';
389                                 msg = " (forced update)";
390                         }
391                         strcat(quickref, find_unique_abbrev(ref->new_sha1, DEFAULT_ABBREV));
392
393                         fprintf(stderr, " %c %-*s %s -> %s%s\n",
394                                 type,
395                                 SUMMARY_WIDTH, quickref,
396                                 pretty_peer, pretty_ref,
397                                 msg);
398                 }
399         }
400
401         packet_flush(out);
402         if (new_refs && !args.dry_run)
403                 ret = pack_objects(out, remote_refs);
404         close(out);
405
406         if (expect_status_report) {
407                 if (receive_status(in))
408                         ret = -4;
409         }
410
411         if (!args.dry_run && remote && ret == 0) {
412                 for (ref = remote_refs; ref; ref = ref->next)
413                         update_tracking_ref(remote, ref);
414         }
415
416         if (!new_refs && ret == 0)
417                 fprintf(stderr, "Everything up-to-date\n");
418         return ret;
419 }
420
421 static void verify_remote_names(int nr_heads, const char **heads)
422 {
423         int i;
424
425         for (i = 0; i < nr_heads; i++) {
426                 const char *remote = strchr(heads[i], ':');
427
428                 remote = remote ? (remote + 1) : heads[i];
429                 switch (check_ref_format(remote)) {
430                 case 0: /* ok */
431                 case -2: /* ok but a single level -- that is fine for
432                           * a match pattern.
433                           */
434                 case -3: /* ok but ends with a pattern-match character */
435                         continue;
436                 }
437                 die("remote part of refspec is not a valid name in %s",
438                     heads[i]);
439         }
440 }
441
442 int cmd_send_pack(int argc, const char **argv, const char *prefix)
443 {
444         int i, nr_heads = 0;
445         const char **heads = NULL;
446         const char *remote_name = NULL;
447         struct remote *remote = NULL;
448         const char *dest = NULL;
449
450         argv++;
451         for (i = 1; i < argc; i++, argv++) {
452                 const char *arg = *argv;
453
454                 if (*arg == '-') {
455                         if (!prefixcmp(arg, "--receive-pack=")) {
456                                 args.receivepack = arg + 15;
457                                 continue;
458                         }
459                         if (!prefixcmp(arg, "--exec=")) {
460                                 args.receivepack = arg + 7;
461                                 continue;
462                         }
463                         if (!prefixcmp(arg, "--remote=")) {
464                                 remote_name = arg + 9;
465                                 continue;
466                         }
467                         if (!strcmp(arg, "--all")) {
468                                 args.send_all = 1;
469                                 continue;
470                         }
471                         if (!strcmp(arg, "--dry-run")) {
472                                 args.dry_run = 1;
473                                 continue;
474                         }
475                         if (!strcmp(arg, "--mirror")) {
476                                 args.send_mirror = 1;
477                                 continue;
478                         }
479                         if (!strcmp(arg, "--force")) {
480                                 args.force_update = 1;
481                                 continue;
482                         }
483                         if (!strcmp(arg, "--verbose")) {
484                                 args.verbose = 1;
485                                 continue;
486                         }
487                         if (!strcmp(arg, "--thin")) {
488                                 args.use_thin_pack = 1;
489                                 continue;
490                         }
491                         usage(send_pack_usage);
492                 }
493                 if (!dest) {
494                         dest = arg;
495                         continue;
496                 }
497                 heads = (const char **) argv;
498                 nr_heads = argc - i;
499                 break;
500         }
501         if (!dest)
502                 usage(send_pack_usage);
503         /*
504          * --all and --mirror are incompatible; neither makes sense
505          * with any refspecs.
506          */
507         if ((heads && (args.send_all || args.send_mirror)) ||
508                                         (args.send_all && args.send_mirror))
509                 usage(send_pack_usage);
510
511         if (remote_name) {
512                 remote = remote_get(remote_name);
513                 if (!remote_has_url(remote, dest)) {
514                         die("Destination %s is not a uri for %s",
515                             dest, remote_name);
516                 }
517         }
518
519         return send_pack(&args, dest, remote, nr_heads, heads);
520 }
521
522 int send_pack(struct send_pack_args *my_args,
523               const char *dest, struct remote *remote,
524               int nr_heads, const char **heads)
525 {
526         int fd[2], ret;
527         struct child_process *conn;
528
529         memcpy(&args, my_args, sizeof(args));
530
531         verify_remote_names(nr_heads, heads);
532
533         conn = git_connect(fd, dest, args.receivepack, args.verbose ? CONNECT_VERBOSE : 0);
534         ret = do_send_pack(fd[0], fd[1], remote, dest, nr_heads, heads);
535         close(fd[0]);
536         close(fd[1]);
537         ret |= finish_connect(conn);
538         return !!ret;
539 }