provide a helper to set the commit buffer
[git/mingw.git] / commit.c
blobfc8b4e287d7e0219d13569d40ddb3c90a7a4b96b
1 #include "cache.h"
2 #include "tag.h"
3 #include "commit.h"
4 #include "pkt-line.h"
5 #include "utf8.h"
6 #include "diff.h"
7 #include "revision.h"
8 #include "notes.h"
9 #include "gpg-interface.h"
10 #include "mergesort.h"
11 #include "commit-slab.h"
12 #include "prio-queue.h"
13 #include "sha1-lookup.h"
15 static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
17 int save_commit_buffer = 1;
19 const char *commit_type = "commit";
21 static struct commit *check_commit(struct object *obj,
22 const unsigned char *sha1,
23 int quiet)
25 if (obj->type != OBJ_COMMIT) {
26 if (!quiet)
27 error("Object %s is a %s, not a commit",
28 sha1_to_hex(sha1), typename(obj->type));
29 return NULL;
31 return (struct commit *) obj;
34 struct commit *lookup_commit_reference_gently(const unsigned char *sha1,
35 int quiet)
37 struct object *obj = deref_tag(parse_object(sha1), NULL, 0);
39 if (!obj)
40 return NULL;
41 return check_commit(obj, sha1, quiet);
44 struct commit *lookup_commit_reference(const unsigned char *sha1)
46 return lookup_commit_reference_gently(sha1, 0);
49 struct commit *lookup_commit_or_die(const unsigned char *sha1, const char *ref_name)
51 struct commit *c = lookup_commit_reference(sha1);
52 if (!c)
53 die(_("could not parse %s"), ref_name);
54 if (hashcmp(sha1, c->object.sha1)) {
55 warning(_("%s %s is not a commit!"),
56 ref_name, sha1_to_hex(sha1));
58 return c;
61 struct commit *lookup_commit(const unsigned char *sha1)
63 struct object *obj = lookup_object(sha1);
64 if (!obj) {
65 struct commit *c = alloc_commit_node();
66 return create_object(sha1, OBJ_COMMIT, c);
68 if (!obj->type)
69 obj->type = OBJ_COMMIT;
70 return check_commit(obj, sha1, 0);
73 struct commit *lookup_commit_reference_by_name(const char *name)
75 unsigned char sha1[20];
76 struct commit *commit;
78 if (get_sha1_committish(name, sha1))
79 return NULL;
80 commit = lookup_commit_reference(sha1);
81 if (parse_commit(commit))
82 return NULL;
83 return commit;
86 static unsigned long parse_commit_date(const char *buf, const char *tail)
88 const char *dateptr;
90 if (buf + 6 >= tail)
91 return 0;
92 if (memcmp(buf, "author", 6))
93 return 0;
94 while (buf < tail && *buf++ != '\n')
95 /* nada */;
96 if (buf + 9 >= tail)
97 return 0;
98 if (memcmp(buf, "committer", 9))
99 return 0;
100 while (buf < tail && *buf++ != '>')
101 /* nada */;
102 if (buf >= tail)
103 return 0;
104 dateptr = buf;
105 while (buf < tail && *buf++ != '\n')
106 /* nada */;
107 if (buf >= tail)
108 return 0;
109 /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */
110 return strtoul(dateptr, NULL, 10);
113 static struct commit_graft **commit_graft;
114 static int commit_graft_alloc, commit_graft_nr;
116 static const unsigned char *commit_graft_sha1_access(size_t index, void *table)
118 struct commit_graft **commit_graft_table = table;
119 return commit_graft_table[index]->sha1;
122 static int commit_graft_pos(const unsigned char *sha1)
124 return sha1_pos(sha1, commit_graft, commit_graft_nr,
125 commit_graft_sha1_access);
128 int register_commit_graft(struct commit_graft *graft, int ignore_dups)
130 int pos = commit_graft_pos(graft->sha1);
132 if (0 <= pos) {
133 if (ignore_dups)
134 free(graft);
135 else {
136 free(commit_graft[pos]);
137 commit_graft[pos] = graft;
139 return 1;
141 pos = -pos - 1;
142 ALLOC_GROW(commit_graft, commit_graft_nr + 1, commit_graft_alloc);
143 commit_graft_nr++;
144 if (pos < commit_graft_nr)
145 memmove(commit_graft + pos + 1,
146 commit_graft + pos,
147 (commit_graft_nr - pos - 1) *
148 sizeof(*commit_graft));
149 commit_graft[pos] = graft;
150 return 0;
153 struct commit_graft *read_graft_line(char *buf, int len)
155 /* The format is just "Commit Parent1 Parent2 ...\n" */
156 int i;
157 struct commit_graft *graft = NULL;
159 while (len && isspace(buf[len-1]))
160 buf[--len] = '\0';
161 if (buf[0] == '#' || buf[0] == '\0')
162 return NULL;
163 if ((len + 1) % 41)
164 goto bad_graft_data;
165 i = (len + 1) / 41 - 1;
166 graft = xmalloc(sizeof(*graft) + 20 * i);
167 graft->nr_parent = i;
168 if (get_sha1_hex(buf, graft->sha1))
169 goto bad_graft_data;
170 for (i = 40; i < len; i += 41) {
171 if (buf[i] != ' ')
172 goto bad_graft_data;
173 if (get_sha1_hex(buf + i + 1, graft->parent[i/41]))
174 goto bad_graft_data;
176 return graft;
178 bad_graft_data:
179 error("bad graft data: %s", buf);
180 free(graft);
181 return NULL;
184 static int read_graft_file(const char *graft_file)
186 FILE *fp = fopen(graft_file, "r");
187 struct strbuf buf = STRBUF_INIT;
188 if (!fp)
189 return -1;
190 while (!strbuf_getwholeline(&buf, fp, '\n')) {
191 /* The format is just "Commit Parent1 Parent2 ...\n" */
192 struct commit_graft *graft = read_graft_line(buf.buf, buf.len);
193 if (!graft)
194 continue;
195 if (register_commit_graft(graft, 1))
196 error("duplicate graft data: %s", buf.buf);
198 fclose(fp);
199 strbuf_release(&buf);
200 return 0;
203 static void prepare_commit_graft(void)
205 static int commit_graft_prepared;
206 char *graft_file;
208 if (commit_graft_prepared)
209 return;
210 graft_file = get_graft_file();
211 read_graft_file(graft_file);
212 /* make sure shallows are read */
213 is_repository_shallow();
214 commit_graft_prepared = 1;
217 struct commit_graft *lookup_commit_graft(const unsigned char *sha1)
219 int pos;
220 prepare_commit_graft();
221 pos = commit_graft_pos(sha1);
222 if (pos < 0)
223 return NULL;
224 return commit_graft[pos];
227 int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
229 int i, ret;
230 for (i = ret = 0; i < commit_graft_nr && !ret; i++)
231 ret = fn(commit_graft[i], cb_data);
232 return ret;
235 int unregister_shallow(const unsigned char *sha1)
237 int pos = commit_graft_pos(sha1);
238 if (pos < 0)
239 return -1;
240 if (pos + 1 < commit_graft_nr)
241 memmove(commit_graft + pos, commit_graft + pos + 1,
242 sizeof(struct commit_graft *)
243 * (commit_graft_nr - pos - 1));
244 commit_graft_nr--;
245 return 0;
248 void set_commit_buffer(struct commit *commit, void *buffer)
250 commit->buffer = buffer;
253 void free_commit_buffer(struct commit *commit)
255 free(commit->buffer);
256 commit->buffer = NULL;
259 const void *detach_commit_buffer(struct commit *commit)
261 void *ret = commit->buffer;
262 commit->buffer = NULL;
263 return ret;
266 int parse_commit_buffer(struct commit *item, const void *buffer, unsigned long size)
268 const char *tail = buffer;
269 const char *bufptr = buffer;
270 unsigned char parent[20];
271 struct commit_list **pptr;
272 struct commit_graft *graft;
274 if (item->object.parsed)
275 return 0;
276 item->object.parsed = 1;
277 tail += size;
278 if (tail <= bufptr + 46 || memcmp(bufptr, "tree ", 5) || bufptr[45] != '\n')
279 return error("bogus commit object %s", sha1_to_hex(item->object.sha1));
280 if (get_sha1_hex(bufptr + 5, parent) < 0)
281 return error("bad tree pointer in commit %s",
282 sha1_to_hex(item->object.sha1));
283 item->tree = lookup_tree(parent);
284 bufptr += 46; /* "tree " + "hex sha1" + "\n" */
285 pptr = &item->parents;
287 graft = lookup_commit_graft(item->object.sha1);
288 while (bufptr + 48 < tail && !memcmp(bufptr, "parent ", 7)) {
289 struct commit *new_parent;
291 if (tail <= bufptr + 48 ||
292 get_sha1_hex(bufptr + 7, parent) ||
293 bufptr[47] != '\n')
294 return error("bad parents in commit %s", sha1_to_hex(item->object.sha1));
295 bufptr += 48;
297 * The clone is shallow if nr_parent < 0, and we must
298 * not traverse its real parents even when we unhide them.
300 if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
301 continue;
302 new_parent = lookup_commit(parent);
303 if (new_parent)
304 pptr = &commit_list_insert(new_parent, pptr)->next;
306 if (graft) {
307 int i;
308 struct commit *new_parent;
309 for (i = 0; i < graft->nr_parent; i++) {
310 new_parent = lookup_commit(graft->parent[i]);
311 if (!new_parent)
312 continue;
313 pptr = &commit_list_insert(new_parent, pptr)->next;
316 item->date = parse_commit_date(bufptr, tail);
318 return 0;
321 int parse_commit(struct commit *item)
323 enum object_type type;
324 void *buffer;
325 unsigned long size;
326 int ret;
328 if (!item)
329 return -1;
330 if (item->object.parsed)
331 return 0;
332 buffer = read_sha1_file(item->object.sha1, &type, &size);
333 if (!buffer)
334 return error("Could not read %s",
335 sha1_to_hex(item->object.sha1));
336 if (type != OBJ_COMMIT) {
337 free(buffer);
338 return error("Object %s not a commit",
339 sha1_to_hex(item->object.sha1));
341 ret = parse_commit_buffer(item, buffer, size);
342 if (save_commit_buffer && !ret) {
343 set_commit_buffer(item, buffer);
344 return 0;
346 free(buffer);
347 return ret;
350 void parse_commit_or_die(struct commit *item)
352 if (parse_commit(item))
353 die("unable to parse commit %s",
354 item ? sha1_to_hex(item->object.sha1) : "(null)");
357 int find_commit_subject(const char *commit_buffer, const char **subject)
359 const char *eol;
360 const char *p = commit_buffer;
362 while (*p && (*p != '\n' || p[1] != '\n'))
363 p++;
364 if (*p) {
365 p += 2;
366 for (eol = p; *eol && *eol != '\n'; eol++)
367 ; /* do nothing */
368 } else
369 eol = p;
371 *subject = p;
373 return eol - p;
376 struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
378 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
379 new_list->item = item;
380 new_list->next = *list_p;
381 *list_p = new_list;
382 return new_list;
385 unsigned commit_list_count(const struct commit_list *l)
387 unsigned c = 0;
388 for (; l; l = l->next )
389 c++;
390 return c;
393 struct commit_list *copy_commit_list(struct commit_list *list)
395 struct commit_list *head = NULL;
396 struct commit_list **pp = &head;
397 while (list) {
398 struct commit_list *new;
399 new = xmalloc(sizeof(struct commit_list));
400 new->item = list->item;
401 new->next = NULL;
402 *pp = new;
403 pp = &new->next;
404 list = list->next;
406 return head;
409 void free_commit_list(struct commit_list *list)
411 while (list) {
412 struct commit_list *temp = list;
413 list = temp->next;
414 free(temp);
418 struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
420 struct commit_list **pp = list;
421 struct commit_list *p;
422 while ((p = *pp) != NULL) {
423 if (p->item->date < item->date) {
424 break;
426 pp = &p->next;
428 return commit_list_insert(item, pp);
431 static int commit_list_compare_by_date(const void *a, const void *b)
433 unsigned long a_date = ((const struct commit_list *)a)->item->date;
434 unsigned long b_date = ((const struct commit_list *)b)->item->date;
435 if (a_date < b_date)
436 return 1;
437 if (a_date > b_date)
438 return -1;
439 return 0;
442 static void *commit_list_get_next(const void *a)
444 return ((const struct commit_list *)a)->next;
447 static void commit_list_set_next(void *a, void *next)
449 ((struct commit_list *)a)->next = next;
452 void commit_list_sort_by_date(struct commit_list **list)
454 *list = llist_mergesort(*list, commit_list_get_next, commit_list_set_next,
455 commit_list_compare_by_date);
458 struct commit *pop_most_recent_commit(struct commit_list **list,
459 unsigned int mark)
461 struct commit *ret = (*list)->item;
462 struct commit_list *parents = ret->parents;
463 struct commit_list *old = *list;
465 *list = (*list)->next;
466 free(old);
468 while (parents) {
469 struct commit *commit = parents->item;
470 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
471 commit->object.flags |= mark;
472 commit_list_insert_by_date(commit, list);
474 parents = parents->next;
476 return ret;
479 static void clear_commit_marks_1(struct commit_list **plist,
480 struct commit *commit, unsigned int mark)
482 while (commit) {
483 struct commit_list *parents;
485 if (!(mark & commit->object.flags))
486 return;
488 commit->object.flags &= ~mark;
490 parents = commit->parents;
491 if (!parents)
492 return;
494 while ((parents = parents->next))
495 commit_list_insert(parents->item, plist);
497 commit = commit->parents->item;
501 void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
503 struct commit_list *list = NULL;
505 while (nr--) {
506 commit_list_insert(*commit, &list);
507 commit++;
509 while (list)
510 clear_commit_marks_1(&list, pop_commit(&list), mark);
513 void clear_commit_marks(struct commit *commit, unsigned int mark)
515 clear_commit_marks_many(1, &commit, mark);
518 void clear_commit_marks_for_object_array(struct object_array *a, unsigned mark)
520 struct object *object;
521 struct commit *commit;
522 unsigned int i;
524 for (i = 0; i < a->nr; i++) {
525 object = a->objects[i].item;
526 commit = lookup_commit_reference_gently(object->sha1, 1);
527 if (commit)
528 clear_commit_marks(commit, mark);
532 struct commit *pop_commit(struct commit_list **stack)
534 struct commit_list *top = *stack;
535 struct commit *item = top ? top->item : NULL;
537 if (top) {
538 *stack = top->next;
539 free(top);
541 return item;
545 * Topological sort support
548 /* count number of children that have not been emitted */
549 define_commit_slab(indegree_slab, int);
551 /* record author-date for each commit object */
552 define_commit_slab(author_date_slab, unsigned long);
554 static void record_author_date(struct author_date_slab *author_date,
555 struct commit *commit)
557 const char *buf, *line_end, *ident_line;
558 char *buffer = NULL;
559 struct ident_split ident;
560 char *date_end;
561 unsigned long date;
563 if (!commit->buffer) {
564 unsigned long size;
565 enum object_type type;
566 buffer = read_sha1_file(commit->object.sha1, &type, &size);
567 if (!buffer)
568 return;
571 for (buf = commit->buffer ? commit->buffer : buffer;
572 buf;
573 buf = line_end + 1) {
574 line_end = strchrnul(buf, '\n');
575 ident_line = skip_prefix(buf, "author ");
576 if (!ident_line) {
577 if (!line_end[0] || line_end[1] == '\n')
578 return; /* end of header */
579 continue;
581 if (split_ident_line(&ident,
582 ident_line, line_end - ident_line) ||
583 !ident.date_begin || !ident.date_end)
584 goto fail_exit; /* malformed "author" line */
585 break;
588 date = strtoul(ident.date_begin, &date_end, 10);
589 if (date_end != ident.date_end)
590 goto fail_exit; /* malformed date */
591 *(author_date_slab_at(author_date, commit)) = date;
593 fail_exit:
594 free(buffer);
597 static int compare_commits_by_author_date(const void *a_, const void *b_,
598 void *cb_data)
600 const struct commit *a = a_, *b = b_;
601 struct author_date_slab *author_date = cb_data;
602 unsigned long a_date = *(author_date_slab_at(author_date, a));
603 unsigned long b_date = *(author_date_slab_at(author_date, b));
605 /* newer commits with larger date first */
606 if (a_date < b_date)
607 return 1;
608 else if (a_date > b_date)
609 return -1;
610 return 0;
613 int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused)
615 const struct commit *a = a_, *b = b_;
616 /* newer commits with larger date first */
617 if (a->date < b->date)
618 return 1;
619 else if (a->date > b->date)
620 return -1;
621 return 0;
625 * Performs an in-place topological sort on the list supplied.
627 void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
629 struct commit_list *next, *orig = *list;
630 struct commit_list **pptr;
631 struct indegree_slab indegree;
632 struct prio_queue queue;
633 struct commit *commit;
634 struct author_date_slab author_date;
636 if (!orig)
637 return;
638 *list = NULL;
640 init_indegree_slab(&indegree);
641 memset(&queue, '\0', sizeof(queue));
643 switch (sort_order) {
644 default: /* REV_SORT_IN_GRAPH_ORDER */
645 queue.compare = NULL;
646 break;
647 case REV_SORT_BY_COMMIT_DATE:
648 queue.compare = compare_commits_by_commit_date;
649 break;
650 case REV_SORT_BY_AUTHOR_DATE:
651 init_author_date_slab(&author_date);
652 queue.compare = compare_commits_by_author_date;
653 queue.cb_data = &author_date;
654 break;
657 /* Mark them and clear the indegree */
658 for (next = orig; next; next = next->next) {
659 struct commit *commit = next->item;
660 *(indegree_slab_at(&indegree, commit)) = 1;
661 /* also record the author dates, if needed */
662 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
663 record_author_date(&author_date, commit);
666 /* update the indegree */
667 for (next = orig; next; next = next->next) {
668 struct commit_list *parents = next->item->parents;
669 while (parents) {
670 struct commit *parent = parents->item;
671 int *pi = indegree_slab_at(&indegree, parent);
673 if (*pi)
674 (*pi)++;
675 parents = parents->next;
680 * find the tips
682 * tips are nodes not reachable from any other node in the list
684 * the tips serve as a starting set for the work queue.
686 for (next = orig; next; next = next->next) {
687 struct commit *commit = next->item;
689 if (*(indegree_slab_at(&indegree, commit)) == 1)
690 prio_queue_put(&queue, commit);
694 * This is unfortunate; the initial tips need to be shown
695 * in the order given from the revision traversal machinery.
697 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
698 prio_queue_reverse(&queue);
700 /* We no longer need the commit list */
701 free_commit_list(orig);
703 pptr = list;
704 *list = NULL;
705 while ((commit = prio_queue_get(&queue)) != NULL) {
706 struct commit_list *parents;
708 for (parents = commit->parents; parents ; parents = parents->next) {
709 struct commit *parent = parents->item;
710 int *pi = indegree_slab_at(&indegree, parent);
712 if (!*pi)
713 continue;
716 * parents are only enqueued for emission
717 * when all their children have been emitted thereby
718 * guaranteeing topological order.
720 if (--(*pi) == 1)
721 prio_queue_put(&queue, parent);
724 * all children of commit have already been
725 * emitted. we can emit it now.
727 *(indegree_slab_at(&indegree, commit)) = 0;
729 pptr = &commit_list_insert(commit, pptr)->next;
732 clear_indegree_slab(&indegree);
733 clear_prio_queue(&queue);
734 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
735 clear_author_date_slab(&author_date);
738 /* merge-base stuff */
740 /* Remember to update object flag allocation in object.h */
741 #define PARENT1 (1u<<16)
742 #define PARENT2 (1u<<17)
743 #define STALE (1u<<18)
744 #define RESULT (1u<<19)
746 static const unsigned all_flags = (PARENT1 | PARENT2 | STALE | RESULT);
748 static struct commit *interesting(struct commit_list *list)
750 while (list) {
751 struct commit *commit = list->item;
752 list = list->next;
753 if (commit->object.flags & STALE)
754 continue;
755 return commit;
757 return NULL;
760 /* all input commits in one and twos[] must have been parsed! */
761 static struct commit_list *paint_down_to_common(struct commit *one, int n, struct commit **twos)
763 struct commit_list *list = NULL;
764 struct commit_list *result = NULL;
765 int i;
767 one->object.flags |= PARENT1;
768 commit_list_insert_by_date(one, &list);
769 if (!n)
770 return list;
771 for (i = 0; i < n; i++) {
772 twos[i]->object.flags |= PARENT2;
773 commit_list_insert_by_date(twos[i], &list);
776 while (interesting(list)) {
777 struct commit *commit;
778 struct commit_list *parents;
779 struct commit_list *next;
780 int flags;
782 commit = list->item;
783 next = list->next;
784 free(list);
785 list = next;
787 flags = commit->object.flags & (PARENT1 | PARENT2 | STALE);
788 if (flags == (PARENT1 | PARENT2)) {
789 if (!(commit->object.flags & RESULT)) {
790 commit->object.flags |= RESULT;
791 commit_list_insert_by_date(commit, &result);
793 /* Mark parents of a found merge stale */
794 flags |= STALE;
796 parents = commit->parents;
797 while (parents) {
798 struct commit *p = parents->item;
799 parents = parents->next;
800 if ((p->object.flags & flags) == flags)
801 continue;
802 if (parse_commit(p))
803 return NULL;
804 p->object.flags |= flags;
805 commit_list_insert_by_date(p, &list);
809 free_commit_list(list);
810 return result;
813 static struct commit_list *merge_bases_many(struct commit *one, int n, struct commit **twos)
815 struct commit_list *list = NULL;
816 struct commit_list *result = NULL;
817 int i;
819 for (i = 0; i < n; i++) {
820 if (one == twos[i])
822 * We do not mark this even with RESULT so we do not
823 * have to clean it up.
825 return commit_list_insert(one, &result);
828 if (parse_commit(one))
829 return NULL;
830 for (i = 0; i < n; i++) {
831 if (parse_commit(twos[i]))
832 return NULL;
835 list = paint_down_to_common(one, n, twos);
837 while (list) {
838 struct commit_list *next = list->next;
839 if (!(list->item->object.flags & STALE))
840 commit_list_insert_by_date(list->item, &result);
841 free(list);
842 list = next;
844 return result;
847 struct commit_list *get_octopus_merge_bases(struct commit_list *in)
849 struct commit_list *i, *j, *k, *ret = NULL;
851 if (!in)
852 return ret;
854 commit_list_insert(in->item, &ret);
856 for (i = in->next; i; i = i->next) {
857 struct commit_list *new = NULL, *end = NULL;
859 for (j = ret; j; j = j->next) {
860 struct commit_list *bases;
861 bases = get_merge_bases(i->item, j->item, 1);
862 if (!new)
863 new = bases;
864 else
865 end->next = bases;
866 for (k = bases; k; k = k->next)
867 end = k;
869 ret = new;
871 return ret;
874 static int remove_redundant(struct commit **array, int cnt)
877 * Some commit in the array may be an ancestor of
878 * another commit. Move such commit to the end of
879 * the array, and return the number of commits that
880 * are independent from each other.
882 struct commit **work;
883 unsigned char *redundant;
884 int *filled_index;
885 int i, j, filled;
887 work = xcalloc(cnt, sizeof(*work));
888 redundant = xcalloc(cnt, 1);
889 filled_index = xmalloc(sizeof(*filled_index) * (cnt - 1));
891 for (i = 0; i < cnt; i++)
892 parse_commit(array[i]);
893 for (i = 0; i < cnt; i++) {
894 struct commit_list *common;
896 if (redundant[i])
897 continue;
898 for (j = filled = 0; j < cnt; j++) {
899 if (i == j || redundant[j])
900 continue;
901 filled_index[filled] = j;
902 work[filled++] = array[j];
904 common = paint_down_to_common(array[i], filled, work);
905 if (array[i]->object.flags & PARENT2)
906 redundant[i] = 1;
907 for (j = 0; j < filled; j++)
908 if (work[j]->object.flags & PARENT1)
909 redundant[filled_index[j]] = 1;
910 clear_commit_marks(array[i], all_flags);
911 for (j = 0; j < filled; j++)
912 clear_commit_marks(work[j], all_flags);
913 free_commit_list(common);
916 /* Now collect the result */
917 memcpy(work, array, sizeof(*array) * cnt);
918 for (i = filled = 0; i < cnt; i++)
919 if (!redundant[i])
920 array[filled++] = work[i];
921 for (j = filled, i = 0; i < cnt; i++)
922 if (redundant[i])
923 array[j++] = work[i];
924 free(work);
925 free(redundant);
926 free(filled_index);
927 return filled;
930 struct commit_list *get_merge_bases_many(struct commit *one,
931 int n,
932 struct commit **twos,
933 int cleanup)
935 struct commit_list *list;
936 struct commit **rslt;
937 struct commit_list *result;
938 int cnt, i;
940 result = merge_bases_many(one, n, twos);
941 for (i = 0; i < n; i++) {
942 if (one == twos[i])
943 return result;
945 if (!result || !result->next) {
946 if (cleanup) {
947 clear_commit_marks(one, all_flags);
948 clear_commit_marks_many(n, twos, all_flags);
950 return result;
953 /* There are more than one */
954 cnt = 0;
955 list = result;
956 while (list) {
957 list = list->next;
958 cnt++;
960 rslt = xcalloc(cnt, sizeof(*rslt));
961 for (list = result, i = 0; list; list = list->next)
962 rslt[i++] = list->item;
963 free_commit_list(result);
965 clear_commit_marks(one, all_flags);
966 clear_commit_marks_many(n, twos, all_flags);
968 cnt = remove_redundant(rslt, cnt);
969 result = NULL;
970 for (i = 0; i < cnt; i++)
971 commit_list_insert_by_date(rslt[i], &result);
972 free(rslt);
973 return result;
976 struct commit_list *get_merge_bases(struct commit *one, struct commit *two,
977 int cleanup)
979 return get_merge_bases_many(one, 1, &two, cleanup);
983 * Is "commit" a descendant of one of the elements on the "with_commit" list?
985 int is_descendant_of(struct commit *commit, struct commit_list *with_commit)
987 if (!with_commit)
988 return 1;
989 while (with_commit) {
990 struct commit *other;
992 other = with_commit->item;
993 with_commit = with_commit->next;
994 if (in_merge_bases(other, commit))
995 return 1;
997 return 0;
1001 * Is "commit" an ancestor of one of the "references"?
1003 int in_merge_bases_many(struct commit *commit, int nr_reference, struct commit **reference)
1005 struct commit_list *bases;
1006 int ret = 0, i;
1008 if (parse_commit(commit))
1009 return ret;
1010 for (i = 0; i < nr_reference; i++)
1011 if (parse_commit(reference[i]))
1012 return ret;
1014 bases = paint_down_to_common(commit, nr_reference, reference);
1015 if (commit->object.flags & PARENT2)
1016 ret = 1;
1017 clear_commit_marks(commit, all_flags);
1018 clear_commit_marks_many(nr_reference, reference, all_flags);
1019 free_commit_list(bases);
1020 return ret;
1024 * Is "commit" an ancestor of (i.e. reachable from) the "reference"?
1026 int in_merge_bases(struct commit *commit, struct commit *reference)
1028 return in_merge_bases_many(commit, 1, &reference);
1031 struct commit_list *reduce_heads(struct commit_list *heads)
1033 struct commit_list *p;
1034 struct commit_list *result = NULL, **tail = &result;
1035 struct commit **array;
1036 int num_head, i;
1038 if (!heads)
1039 return NULL;
1041 /* Uniquify */
1042 for (p = heads; p; p = p->next)
1043 p->item->object.flags &= ~STALE;
1044 for (p = heads, num_head = 0; p; p = p->next) {
1045 if (p->item->object.flags & STALE)
1046 continue;
1047 p->item->object.flags |= STALE;
1048 num_head++;
1050 array = xcalloc(sizeof(*array), num_head);
1051 for (p = heads, i = 0; p; p = p->next) {
1052 if (p->item->object.flags & STALE) {
1053 array[i++] = p->item;
1054 p->item->object.flags &= ~STALE;
1057 num_head = remove_redundant(array, num_head);
1058 for (i = 0; i < num_head; i++)
1059 tail = &commit_list_insert(array[i], tail)->next;
1060 return result;
1063 static const char gpg_sig_header[] = "gpgsig";
1064 static const int gpg_sig_header_len = sizeof(gpg_sig_header) - 1;
1066 static int do_sign_commit(struct strbuf *buf, const char *keyid)
1068 struct strbuf sig = STRBUF_INIT;
1069 int inspos, copypos;
1071 /* find the end of the header */
1072 inspos = strstr(buf->buf, "\n\n") - buf->buf + 1;
1074 if (!keyid || !*keyid)
1075 keyid = get_signing_key();
1076 if (sign_buffer(buf, &sig, keyid)) {
1077 strbuf_release(&sig);
1078 return -1;
1081 for (copypos = 0; sig.buf[copypos]; ) {
1082 const char *bol = sig.buf + copypos;
1083 const char *eol = strchrnul(bol, '\n');
1084 int len = (eol - bol) + !!*eol;
1086 if (!copypos) {
1087 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1088 inspos += gpg_sig_header_len;
1090 strbuf_insert(buf, inspos++, " ", 1);
1091 strbuf_insert(buf, inspos, bol, len);
1092 inspos += len;
1093 copypos += len;
1095 strbuf_release(&sig);
1096 return 0;
1099 int parse_signed_commit(const unsigned char *sha1,
1100 struct strbuf *payload, struct strbuf *signature)
1102 unsigned long size;
1103 enum object_type type;
1104 char *buffer = read_sha1_file(sha1, &type, &size);
1105 int in_signature, saw_signature = -1;
1106 char *line, *tail;
1108 if (!buffer || type != OBJ_COMMIT)
1109 goto cleanup;
1111 line = buffer;
1112 tail = buffer + size;
1113 in_signature = 0;
1114 saw_signature = 0;
1115 while (line < tail) {
1116 const char *sig = NULL;
1117 char *next = memchr(line, '\n', tail - line);
1119 next = next ? next + 1 : tail;
1120 if (in_signature && line[0] == ' ')
1121 sig = line + 1;
1122 else if (starts_with(line, gpg_sig_header) &&
1123 line[gpg_sig_header_len] == ' ')
1124 sig = line + gpg_sig_header_len + 1;
1125 if (sig) {
1126 strbuf_add(signature, sig, next - sig);
1127 saw_signature = 1;
1128 in_signature = 1;
1129 } else {
1130 if (*line == '\n')
1131 /* dump the whole remainder of the buffer */
1132 next = tail;
1133 strbuf_add(payload, line, next - line);
1134 in_signature = 0;
1136 line = next;
1138 cleanup:
1139 free(buffer);
1140 return saw_signature;
1143 static void handle_signed_tag(struct commit *parent, struct commit_extra_header ***tail)
1145 struct merge_remote_desc *desc;
1146 struct commit_extra_header *mergetag;
1147 char *buf;
1148 unsigned long size, len;
1149 enum object_type type;
1151 desc = merge_remote_util(parent);
1152 if (!desc || !desc->obj)
1153 return;
1154 buf = read_sha1_file(desc->obj->sha1, &type, &size);
1155 if (!buf || type != OBJ_TAG)
1156 goto free_return;
1157 len = parse_signature(buf, size);
1158 if (size == len)
1159 goto free_return;
1161 * We could verify this signature and either omit the tag when
1162 * it does not validate, but the integrator may not have the
1163 * public key of the signer of the tag he is merging, while a
1164 * later auditor may have it while auditing, so let's not run
1165 * verify-signed-buffer here for now...
1167 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1168 * warn("warning: signed tag unverified.");
1170 mergetag = xcalloc(1, sizeof(*mergetag));
1171 mergetag->key = xstrdup("mergetag");
1172 mergetag->value = buf;
1173 mergetag->len = size;
1175 **tail = mergetag;
1176 *tail = &mergetag->next;
1177 return;
1179 free_return:
1180 free(buf);
1183 static struct {
1184 char result;
1185 const char *check;
1186 } sigcheck_gpg_status[] = {
1187 { 'G', "\n[GNUPG:] GOODSIG " },
1188 { 'B', "\n[GNUPG:] BADSIG " },
1189 { 'U', "\n[GNUPG:] TRUST_NEVER" },
1190 { 'U', "\n[GNUPG:] TRUST_UNDEFINED" },
1193 static void parse_gpg_output(struct signature_check *sigc)
1195 const char *buf = sigc->gpg_status;
1196 int i;
1198 /* Iterate over all search strings */
1199 for (i = 0; i < ARRAY_SIZE(sigcheck_gpg_status); i++) {
1200 const char *found, *next;
1202 found = skip_prefix(buf, sigcheck_gpg_status[i].check + 1);
1203 if (!found) {
1204 found = strstr(buf, sigcheck_gpg_status[i].check);
1205 if (!found)
1206 continue;
1207 found += strlen(sigcheck_gpg_status[i].check);
1209 sigc->result = sigcheck_gpg_status[i].result;
1210 /* The trust messages are not followed by key/signer information */
1211 if (sigc->result != 'U') {
1212 sigc->key = xmemdupz(found, 16);
1213 found += 17;
1214 next = strchrnul(found, '\n');
1215 sigc->signer = xmemdupz(found, next - found);
1220 void check_commit_signature(const struct commit* commit, struct signature_check *sigc)
1222 struct strbuf payload = STRBUF_INIT;
1223 struct strbuf signature = STRBUF_INIT;
1224 struct strbuf gpg_output = STRBUF_INIT;
1225 struct strbuf gpg_status = STRBUF_INIT;
1226 int status;
1228 sigc->result = 'N';
1230 if (parse_signed_commit(commit->object.sha1,
1231 &payload, &signature) <= 0)
1232 goto out;
1233 status = verify_signed_buffer(payload.buf, payload.len,
1234 signature.buf, signature.len,
1235 &gpg_output, &gpg_status);
1236 if (status && !gpg_output.len)
1237 goto out;
1238 sigc->gpg_output = strbuf_detach(&gpg_output, NULL);
1239 sigc->gpg_status = strbuf_detach(&gpg_status, NULL);
1240 parse_gpg_output(sigc);
1242 out:
1243 strbuf_release(&gpg_status);
1244 strbuf_release(&gpg_output);
1245 strbuf_release(&payload);
1246 strbuf_release(&signature);
1251 void append_merge_tag_headers(struct commit_list *parents,
1252 struct commit_extra_header ***tail)
1254 while (parents) {
1255 struct commit *parent = parents->item;
1256 handle_signed_tag(parent, tail);
1257 parents = parents->next;
1261 static void add_extra_header(struct strbuf *buffer,
1262 struct commit_extra_header *extra)
1264 strbuf_addstr(buffer, extra->key);
1265 if (extra->len)
1266 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1267 else
1268 strbuf_addch(buffer, '\n');
1271 struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1272 const char **exclude)
1274 struct commit_extra_header *extra = NULL;
1275 unsigned long size;
1276 enum object_type type;
1277 char *buffer = read_sha1_file(commit->object.sha1, &type, &size);
1278 if (buffer && type == OBJ_COMMIT)
1279 extra = read_commit_extra_header_lines(buffer, size, exclude);
1280 free(buffer);
1281 return extra;
1284 static inline int standard_header_field(const char *field, size_t len)
1286 return ((len == 4 && !memcmp(field, "tree ", 5)) ||
1287 (len == 6 && !memcmp(field, "parent ", 7)) ||
1288 (len == 6 && !memcmp(field, "author ", 7)) ||
1289 (len == 9 && !memcmp(field, "committer ", 10)) ||
1290 (len == 8 && !memcmp(field, "encoding ", 9)));
1293 static int excluded_header_field(const char *field, size_t len, const char **exclude)
1295 if (!exclude)
1296 return 0;
1298 while (*exclude) {
1299 size_t xlen = strlen(*exclude);
1300 if (len == xlen &&
1301 !memcmp(field, *exclude, xlen) && field[xlen] == ' ')
1302 return 1;
1303 exclude++;
1305 return 0;
1308 static struct commit_extra_header *read_commit_extra_header_lines(
1309 const char *buffer, size_t size,
1310 const char **exclude)
1312 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1313 const char *line, *next, *eof, *eob;
1314 struct strbuf buf = STRBUF_INIT;
1316 for (line = buffer, eob = line + size;
1317 line < eob && *line != '\n';
1318 line = next) {
1319 next = memchr(line, '\n', eob - line);
1320 next = next ? next + 1 : eob;
1321 if (*line == ' ') {
1322 /* continuation */
1323 if (it)
1324 strbuf_add(&buf, line + 1, next - (line + 1));
1325 continue;
1327 if (it)
1328 it->value = strbuf_detach(&buf, &it->len);
1329 strbuf_reset(&buf);
1330 it = NULL;
1332 eof = strchr(line, ' ');
1333 if (next <= eof)
1334 eof = next;
1336 if (standard_header_field(line, eof - line) ||
1337 excluded_header_field(line, eof - line, exclude))
1338 continue;
1340 it = xcalloc(1, sizeof(*it));
1341 it->key = xmemdupz(line, eof-line);
1342 *tail = it;
1343 tail = &it->next;
1344 if (eof + 1 < next)
1345 strbuf_add(&buf, eof + 1, next - (eof + 1));
1347 if (it)
1348 it->value = strbuf_detach(&buf, &it->len);
1349 return extra;
1352 void free_commit_extra_headers(struct commit_extra_header *extra)
1354 while (extra) {
1355 struct commit_extra_header *next = extra->next;
1356 free(extra->key);
1357 free(extra->value);
1358 free(extra);
1359 extra = next;
1363 int commit_tree(const char *msg, size_t msg_len,
1364 const unsigned char *tree,
1365 struct commit_list *parents, unsigned char *ret,
1366 const char *author, const char *sign_commit)
1368 struct commit_extra_header *extra = NULL, **tail = &extra;
1369 int result;
1371 append_merge_tag_headers(parents, &tail);
1372 result = commit_tree_extended(msg, msg_len, tree, parents, ret,
1373 author, sign_commit, extra);
1374 free_commit_extra_headers(extra);
1375 return result;
1378 static int find_invalid_utf8(const char *buf, int len)
1380 int offset = 0;
1381 static const unsigned int max_codepoint[] = {
1382 0x7f, 0x7ff, 0xffff, 0x10ffff
1385 while (len) {
1386 unsigned char c = *buf++;
1387 int bytes, bad_offset;
1388 unsigned int codepoint;
1389 unsigned int min_val, max_val;
1391 len--;
1392 offset++;
1394 /* Simple US-ASCII? No worries. */
1395 if (c < 0x80)
1396 continue;
1398 bad_offset = offset-1;
1401 * Count how many more high bits set: that's how
1402 * many more bytes this sequence should have.
1404 bytes = 0;
1405 while (c & 0x40) {
1406 c <<= 1;
1407 bytes++;
1411 * Must be between 1 and 3 more bytes. Longer sequences result in
1412 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1414 if (bytes < 1 || 3 < bytes)
1415 return bad_offset;
1417 /* Do we *have* that many bytes? */
1418 if (len < bytes)
1419 return bad_offset;
1422 * Place the encoded bits at the bottom of the value and compute the
1423 * valid range.
1425 codepoint = (c & 0x7f) >> bytes;
1426 min_val = max_codepoint[bytes-1] + 1;
1427 max_val = max_codepoint[bytes];
1429 offset += bytes;
1430 len -= bytes;
1432 /* And verify that they are good continuation bytes */
1433 do {
1434 codepoint <<= 6;
1435 codepoint |= *buf & 0x3f;
1436 if ((*buf++ & 0xc0) != 0x80)
1437 return bad_offset;
1438 } while (--bytes);
1440 /* Reject codepoints that are out of range for the sequence length. */
1441 if (codepoint < min_val || codepoint > max_val)
1442 return bad_offset;
1443 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1444 if ((codepoint & 0x1ff800) == 0xd800)
1445 return bad_offset;
1446 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
1447 if ((codepoint & 0xfffe) == 0xfffe)
1448 return bad_offset;
1449 /* So are anything in the range U+FDD0..U+FDEF. */
1450 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
1451 return bad_offset;
1453 return -1;
1457 * This verifies that the buffer is in proper utf8 format.
1459 * If it isn't, it assumes any non-utf8 characters are Latin1,
1460 * and does the conversion.
1462 static int verify_utf8(struct strbuf *buf)
1464 int ok = 1;
1465 long pos = 0;
1467 for (;;) {
1468 int bad;
1469 unsigned char c;
1470 unsigned char replace[2];
1472 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1473 if (bad < 0)
1474 return ok;
1475 pos += bad;
1476 ok = 0;
1477 c = buf->buf[pos];
1478 strbuf_remove(buf, pos, 1);
1480 /* We know 'c' must be in the range 128-255 */
1481 replace[0] = 0xc0 + (c >> 6);
1482 replace[1] = 0x80 + (c & 0x3f);
1483 strbuf_insert(buf, pos, replace, 2);
1484 pos += 2;
1488 static const char commit_utf8_warn[] =
1489 "Warning: commit message did not conform to UTF-8.\n"
1490 "You may want to amend it after fixing the message, or set the config\n"
1491 "variable i18n.commitencoding to the encoding your project uses.\n";
1493 int commit_tree_extended(const char *msg, size_t msg_len,
1494 const unsigned char *tree,
1495 struct commit_list *parents, unsigned char *ret,
1496 const char *author, const char *sign_commit,
1497 struct commit_extra_header *extra)
1499 int result;
1500 int encoding_is_utf8;
1501 struct strbuf buffer;
1503 assert_sha1_type(tree, OBJ_TREE);
1505 if (memchr(msg, '\0', msg_len))
1506 return error("a NUL byte in commit log message not allowed.");
1508 /* Not having i18n.commitencoding is the same as having utf-8 */
1509 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1511 strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */
1512 strbuf_addf(&buffer, "tree %s\n", sha1_to_hex(tree));
1515 * NOTE! This ordering means that the same exact tree merged with a
1516 * different order of parents will be a _different_ changeset even
1517 * if everything else stays the same.
1519 while (parents) {
1520 struct commit_list *next = parents->next;
1521 struct commit *parent = parents->item;
1523 strbuf_addf(&buffer, "parent %s\n",
1524 sha1_to_hex(parent->object.sha1));
1525 free(parents);
1526 parents = next;
1529 /* Person/date information */
1530 if (!author)
1531 author = git_author_info(IDENT_STRICT);
1532 strbuf_addf(&buffer, "author %s\n", author);
1533 strbuf_addf(&buffer, "committer %s\n", git_committer_info(IDENT_STRICT));
1534 if (!encoding_is_utf8)
1535 strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding);
1537 while (extra) {
1538 add_extra_header(&buffer, extra);
1539 extra = extra->next;
1541 strbuf_addch(&buffer, '\n');
1543 /* And add the comment */
1544 strbuf_add(&buffer, msg, msg_len);
1546 /* And check the encoding */
1547 if (encoding_is_utf8 && !verify_utf8(&buffer))
1548 fprintf(stderr, commit_utf8_warn);
1550 if (sign_commit && do_sign_commit(&buffer, sign_commit))
1551 return -1;
1553 result = write_sha1_file(buffer.buf, buffer.len, commit_type, ret);
1554 strbuf_release(&buffer);
1555 return result;
1558 struct commit *get_merge_parent(const char *name)
1560 struct object *obj;
1561 struct commit *commit;
1562 unsigned char sha1[20];
1563 if (get_sha1(name, sha1))
1564 return NULL;
1565 obj = parse_object(sha1);
1566 commit = (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
1567 if (commit && !commit->util) {
1568 struct merge_remote_desc *desc;
1569 desc = xmalloc(sizeof(*desc));
1570 desc->obj = obj;
1571 desc->name = strdup(name);
1572 commit->util = desc;
1574 return commit;
1578 * Append a commit to the end of the commit_list.
1580 * next starts by pointing to the variable that holds the head of an
1581 * empty commit_list, and is updated to point to the "next" field of
1582 * the last item on the list as new commits are appended.
1584 * Usage example:
1586 * struct commit_list *list;
1587 * struct commit_list **next = &list;
1589 * next = commit_list_append(c1, next);
1590 * next = commit_list_append(c2, next);
1591 * assert(commit_list_count(list) == 2);
1592 * return list;
1594 struct commit_list **commit_list_append(struct commit *commit,
1595 struct commit_list **next)
1597 struct commit_list *new = xmalloc(sizeof(struct commit_list));
1598 new->item = commit;
1599 *next = new;
1600 new->next = NULL;
1601 return &new->next;
1604 void print_commit_list(struct commit_list *list,
1605 const char *format_cur,
1606 const char *format_last)
1608 for ( ; list; list = list->next) {
1609 const char *format = list->next ? format_cur : format_last;
1610 printf(format, sha1_to_hex(list->item->object.sha1));