The eleventh batch
[git/gitster.git] / commit.c
blobcc03a9303623ad39a770c397d442cc4a7fad84c0
1 #define USE_THE_REPOSITORY_VARIABLE
3 #include "git-compat-util.h"
4 #include "tag.h"
5 #include "commit.h"
6 #include "commit-graph.h"
7 #include "environment.h"
8 #include "gettext.h"
9 #include "hex.h"
10 #include "repository.h"
11 #include "object-name.h"
12 #include "object-store-ll.h"
13 #include "utf8.h"
14 #include "diff.h"
15 #include "revision.h"
16 #include "notes.h"
17 #include "alloc.h"
18 #include "gpg-interface.h"
19 #include "mergesort.h"
20 #include "commit-slab.h"
21 #include "prio-queue.h"
22 #include "hash-lookup.h"
23 #include "wt-status.h"
24 #include "advice.h"
25 #include "refs.h"
26 #include "commit-reach.h"
27 #include "setup.h"
28 #include "shallow.h"
29 #include "tree.h"
30 #include "hook.h"
31 #include "parse.h"
32 #include "object-file-convert.h"
34 static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
36 int save_commit_buffer = 1;
37 int no_graft_file_deprecated_advice;
39 const char *commit_type = "commit";
41 struct commit *lookup_commit_reference_gently(struct repository *r,
42 const struct object_id *oid, int quiet)
44 struct object *obj = deref_tag(r,
45 parse_object(r, oid),
46 NULL, 0);
48 if (!obj)
49 return NULL;
50 return object_as_type(obj, OBJ_COMMIT, quiet);
53 struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
55 return lookup_commit_reference_gently(r, oid, 0);
58 struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)
60 struct commit *c = lookup_commit_reference(the_repository, oid);
61 if (!c)
62 die(_("could not parse %s"), ref_name);
63 if (!oideq(oid, &c->object.oid)) {
64 warning(_("%s %s is not a commit!"),
65 ref_name, oid_to_hex(oid));
67 return c;
70 struct commit *lookup_commit_object(struct repository *r,
71 const struct object_id *oid)
73 struct object *obj = parse_object(r, oid);
74 return obj ? object_as_type(obj, OBJ_COMMIT, 0) : NULL;
78 struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
80 struct object *obj = lookup_object(r, oid);
81 if (!obj)
82 return create_object(r, oid, alloc_commit_node(r));
83 return object_as_type(obj, OBJ_COMMIT, 0);
86 struct commit *lookup_commit_reference_by_name(const char *name)
88 return lookup_commit_reference_by_name_gently(name, 0);
91 struct commit *lookup_commit_reference_by_name_gently(const char *name,
92 int quiet)
94 struct object_id oid;
95 struct commit *commit;
97 if (repo_get_oid_committish(the_repository, name, &oid))
98 return NULL;
99 commit = lookup_commit_reference_gently(the_repository, &oid, quiet);
100 if (repo_parse_commit(the_repository, commit))
101 return NULL;
102 return commit;
105 static timestamp_t parse_commit_date(const char *buf, const char *tail)
107 const char *dateptr;
108 const char *eol;
110 if (buf + 6 >= tail)
111 return 0;
112 if (memcmp(buf, "author", 6))
113 return 0;
114 while (buf < tail && *buf++ != '\n')
115 /* nada */;
116 if (buf + 9 >= tail)
117 return 0;
118 if (memcmp(buf, "committer", 9))
119 return 0;
122 * Jump to end-of-line so that we can walk backwards to find the
123 * end-of-email ">". This is more forgiving of malformed cases
124 * because unexpected characters tend to be in the name and email
125 * fields.
127 eol = memchr(buf, '\n', tail - buf);
128 if (!eol)
129 return 0;
130 dateptr = eol;
131 while (dateptr > buf && dateptr[-1] != '>')
132 dateptr--;
133 if (dateptr == buf)
134 return 0;
137 * Trim leading whitespace, but make sure we have at least one
138 * non-whitespace character, as parse_timestamp() will otherwise walk
139 * right past the newline we found in "eol" when skipping whitespace
140 * itself.
142 * In theory it would be sufficient to allow any character not matched
143 * by isspace(), but there's a catch: our isspace() does not
144 * necessarily match the behavior of parse_timestamp(), as the latter
145 * is implemented by system routines which match more exotic control
146 * codes, or even locale-dependent sequences.
148 * Since we expect the timestamp to be a number, we can check for that.
149 * Anything else (e.g., a non-numeric token like "foo") would just
150 * cause parse_timestamp() to return 0 anyway.
152 while (dateptr < eol && isspace(*dateptr))
153 dateptr++;
154 if (!isdigit(*dateptr) && *dateptr != '-')
155 return 0;
158 * We know there is at least one digit (or dash), so we'll begin
159 * parsing there and stop at worst case at eol.
161 * Note that we may feed parse_timestamp() extra characters here if the
162 * commit is malformed, and it will parse as far as it can. For
163 * example, "123foo456" would return "123". That might be questionable
164 * (versus returning "0"), but it would help in a hypothetical case
165 * like "123456+0100", where the whitespace from the timezone is
166 * missing. Since such syntactic errors may be baked into history and
167 * hard to correct now, let's err on trying to make our best guess
168 * here, rather than insist on perfect syntax.
170 return parse_timestamp(dateptr, NULL, 10);
173 static const struct object_id *commit_graft_oid_access(size_t index, const void *table)
175 const struct commit_graft * const *commit_graft_table = table;
176 return &commit_graft_table[index]->oid;
179 int commit_graft_pos(struct repository *r, const struct object_id *oid)
181 return oid_pos(oid, r->parsed_objects->grafts,
182 r->parsed_objects->grafts_nr,
183 commit_graft_oid_access);
186 void unparse_commit(struct repository *r, const struct object_id *oid)
188 struct commit *c = lookup_commit(r, oid);
190 if (!c->object.parsed)
191 return;
192 free_commit_list(c->parents);
193 c->parents = NULL;
194 c->object.parsed = 0;
197 int register_commit_graft(struct repository *r, struct commit_graft *graft,
198 int ignore_dups)
200 int pos = commit_graft_pos(r, &graft->oid);
202 if (0 <= pos) {
203 if (ignore_dups)
204 free(graft);
205 else {
206 free(r->parsed_objects->grafts[pos]);
207 r->parsed_objects->grafts[pos] = graft;
209 return 1;
211 pos = -pos - 1;
212 ALLOC_GROW(r->parsed_objects->grafts,
213 r->parsed_objects->grafts_nr + 1,
214 r->parsed_objects->grafts_alloc);
215 r->parsed_objects->grafts_nr++;
216 if (pos < r->parsed_objects->grafts_nr)
217 memmove(r->parsed_objects->grafts + pos + 1,
218 r->parsed_objects->grafts + pos,
219 (r->parsed_objects->grafts_nr - pos - 1) *
220 sizeof(*r->parsed_objects->grafts));
221 r->parsed_objects->grafts[pos] = graft;
222 unparse_commit(r, &graft->oid);
223 return 0;
226 struct commit_graft *read_graft_line(struct strbuf *line)
228 /* The format is just "Commit Parent1 Parent2 ...\n" */
229 int i, phase;
230 const char *tail = NULL;
231 struct commit_graft *graft = NULL;
232 struct object_id dummy_oid, *oid;
234 strbuf_rtrim(line);
235 if (!line->len || line->buf[0] == '#')
236 return NULL;
238 * phase 0 verifies line, counts hashes in line and allocates graft
239 * phase 1 fills graft
241 for (phase = 0; phase < 2; phase++) {
242 oid = graft ? &graft->oid : &dummy_oid;
243 if (parse_oid_hex(line->buf, oid, &tail))
244 goto bad_graft_data;
245 for (i = 0; *tail != '\0'; i++) {
246 oid = graft ? &graft->parent[i] : &dummy_oid;
247 if (!isspace(*tail++) || parse_oid_hex(tail, oid, &tail))
248 goto bad_graft_data;
250 if (!graft) {
251 graft = xmalloc(st_add(sizeof(*graft),
252 st_mult(sizeof(struct object_id), i)));
253 graft->nr_parent = i;
256 return graft;
258 bad_graft_data:
259 error("bad graft data: %s", line->buf);
260 assert(!graft);
261 return NULL;
264 static int read_graft_file(struct repository *r, const char *graft_file)
266 FILE *fp = fopen_or_warn(graft_file, "r");
267 struct strbuf buf = STRBUF_INIT;
268 if (!fp)
269 return -1;
270 if (!no_graft_file_deprecated_advice &&
271 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED))
272 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
273 "and will be removed in a future Git version.\n"
274 "\n"
275 "Please use \"git replace --convert-graft-file\"\n"
276 "to convert the grafts into replace refs.\n"
277 "\n"
278 "Turn this message off by running\n"
279 "\"git config advice.graftFileDeprecated false\""));
280 while (!strbuf_getwholeline(&buf, fp, '\n')) {
281 /* The format is just "Commit Parent1 Parent2 ...\n" */
282 struct commit_graft *graft = read_graft_line(&buf);
283 if (!graft)
284 continue;
285 if (register_commit_graft(r, graft, 1))
286 error("duplicate graft data: %s", buf.buf);
288 fclose(fp);
289 strbuf_release(&buf);
290 return 0;
293 void prepare_commit_graft(struct repository *r)
295 const char *graft_file;
297 if (r->parsed_objects->commit_graft_prepared)
298 return;
299 if (!startup_info->have_repository)
300 return;
302 graft_file = repo_get_graft_file(r);
303 read_graft_file(r, graft_file);
304 /* make sure shallows are read */
305 is_repository_shallow(r);
306 r->parsed_objects->commit_graft_prepared = 1;
309 struct commit_graft *lookup_commit_graft(struct repository *r, const struct object_id *oid)
311 int pos;
312 prepare_commit_graft(r);
313 pos = commit_graft_pos(r, oid);
314 if (pos < 0)
315 return NULL;
316 return r->parsed_objects->grafts[pos];
319 int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
321 int i, ret;
322 for (i = ret = 0; i < the_repository->parsed_objects->grafts_nr && !ret; i++)
323 ret = fn(the_repository->parsed_objects->grafts[i], cb_data);
324 return ret;
327 struct commit_buffer {
328 void *buffer;
329 unsigned long size;
331 define_commit_slab(buffer_slab, struct commit_buffer);
333 struct buffer_slab *allocate_commit_buffer_slab(void)
335 struct buffer_slab *bs = xmalloc(sizeof(*bs));
336 init_buffer_slab(bs);
337 return bs;
340 void free_commit_buffer_slab(struct buffer_slab *bs)
342 clear_buffer_slab(bs);
343 free(bs);
346 void set_commit_buffer(struct repository *r, struct commit *commit, void *buffer, unsigned long size)
348 struct commit_buffer *v = buffer_slab_at(
349 r->parsed_objects->buffer_slab, commit);
350 v->buffer = buffer;
351 v->size = size;
354 const void *get_cached_commit_buffer(struct repository *r, const struct commit *commit, unsigned long *sizep)
356 struct commit_buffer *v = buffer_slab_peek(
357 r->parsed_objects->buffer_slab, commit);
358 if (!v) {
359 if (sizep)
360 *sizep = 0;
361 return NULL;
363 if (sizep)
364 *sizep = v->size;
365 return v->buffer;
368 const void *repo_get_commit_buffer(struct repository *r,
369 const struct commit *commit,
370 unsigned long *sizep)
372 const void *ret = get_cached_commit_buffer(r, commit, sizep);
373 if (!ret) {
374 enum object_type type;
375 unsigned long size;
376 ret = repo_read_object_file(r, &commit->object.oid, &type, &size);
377 if (!ret)
378 die("cannot read commit object %s",
379 oid_to_hex(&commit->object.oid));
380 if (type != OBJ_COMMIT)
381 die("expected commit for %s, got %s",
382 oid_to_hex(&commit->object.oid), type_name(type));
383 if (sizep)
384 *sizep = size;
386 return ret;
389 void repo_unuse_commit_buffer(struct repository *r,
390 const struct commit *commit,
391 const void *buffer)
393 struct commit_buffer *v = buffer_slab_peek(
394 r->parsed_objects->buffer_slab, commit);
395 if (!(v && v->buffer == buffer))
396 free((void *)buffer);
399 void free_commit_buffer(struct parsed_object_pool *pool, struct commit *commit)
401 struct commit_buffer *v = buffer_slab_peek(
402 pool->buffer_slab, commit);
403 if (v) {
404 FREE_AND_NULL(v->buffer);
405 v->size = 0;
409 static inline void set_commit_tree(struct commit *c, struct tree *t)
411 c->maybe_tree = t;
414 struct tree *repo_get_commit_tree(struct repository *r,
415 const struct commit *commit)
417 if (commit->maybe_tree || !commit->object.parsed)
418 return commit->maybe_tree;
420 if (commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
421 return get_commit_tree_in_graph(r, commit);
423 return NULL;
426 struct object_id *get_commit_tree_oid(const struct commit *commit)
428 struct tree *tree = repo_get_commit_tree(the_repository, commit);
429 return tree ? &tree->object.oid : NULL;
432 void release_commit_memory(struct parsed_object_pool *pool, struct commit *c)
434 set_commit_tree(c, NULL);
435 free_commit_buffer(pool, c);
436 c->index = 0;
437 free_commit_list(c->parents);
439 c->object.parsed = 0;
442 const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
444 struct commit_buffer *v = buffer_slab_peek(
445 the_repository->parsed_objects->buffer_slab, commit);
446 void *ret;
448 if (!v) {
449 if (sizep)
450 *sizep = 0;
451 return NULL;
453 ret = v->buffer;
454 if (sizep)
455 *sizep = v->size;
457 v->buffer = NULL;
458 v->size = 0;
459 return ret;
462 int parse_commit_buffer(struct repository *r, struct commit *item, const void *buffer, unsigned long size, int check_graph)
464 const char *tail = buffer;
465 const char *bufptr = buffer;
466 struct object_id parent;
467 struct commit_list **pptr;
468 struct commit_graft *graft;
469 const int tree_entry_len = the_hash_algo->hexsz + 5;
470 const int parent_entry_len = the_hash_algo->hexsz + 7;
471 struct tree *tree;
473 if (item->object.parsed)
474 return 0;
476 * Presumably this is leftover from an earlier failed parse;
477 * clear it out in preparation for us re-parsing (we'll hit the
478 * same error, but that's good, since it lets our caller know
479 * the result cannot be trusted.
481 free_commit_list(item->parents);
482 item->parents = NULL;
484 tail += size;
485 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
486 bufptr[tree_entry_len] != '\n')
487 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
488 if (get_oid_hex(bufptr + 5, &parent) < 0)
489 return error("bad tree pointer in commit %s",
490 oid_to_hex(&item->object.oid));
491 tree = lookup_tree(r, &parent);
492 if (!tree)
493 return error("bad tree pointer %s in commit %s",
494 oid_to_hex(&parent),
495 oid_to_hex(&item->object.oid));
496 set_commit_tree(item, tree);
497 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
498 pptr = &item->parents;
500 graft = lookup_commit_graft(r, &item->object.oid);
501 if (graft)
502 r->parsed_objects->substituted_parent = 1;
503 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
504 struct commit *new_parent;
506 if (tail <= bufptr + parent_entry_len + 1 ||
507 get_oid_hex(bufptr + 7, &parent) ||
508 bufptr[parent_entry_len] != '\n')
509 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
510 bufptr += parent_entry_len + 1;
512 * The clone is shallow if nr_parent < 0, and we must
513 * not traverse its real parents even when we unhide them.
515 if (graft && (graft->nr_parent < 0 || !grafts_keep_true_parents))
516 continue;
517 new_parent = lookup_commit(r, &parent);
518 if (!new_parent)
519 return error("bad parent %s in commit %s",
520 oid_to_hex(&parent),
521 oid_to_hex(&item->object.oid));
522 pptr = &commit_list_insert(new_parent, pptr)->next;
524 if (graft) {
525 int i;
526 struct commit *new_parent;
527 for (i = 0; i < graft->nr_parent; i++) {
528 new_parent = lookup_commit(r,
529 &graft->parent[i]);
530 if (!new_parent)
531 return error("bad graft parent %s in commit %s",
532 oid_to_hex(&graft->parent[i]),
533 oid_to_hex(&item->object.oid));
534 pptr = &commit_list_insert(new_parent, pptr)->next;
537 item->date = parse_commit_date(bufptr, tail);
539 if (check_graph)
540 load_commit_graph_info(r, item);
542 item->object.parsed = 1;
543 return 0;
546 int repo_parse_commit_internal(struct repository *r,
547 struct commit *item,
548 int quiet_on_missing,
549 int use_commit_graph)
551 enum object_type type;
552 void *buffer;
553 unsigned long size;
554 struct object_info oi = {
555 .typep = &type,
556 .sizep = &size,
557 .contentp = &buffer,
560 * Git does not support partial clones that exclude commits, so set
561 * OBJECT_INFO_SKIP_FETCH_OBJECT to fail fast when an object is missing.
563 int flags = OBJECT_INFO_LOOKUP_REPLACE | OBJECT_INFO_SKIP_FETCH_OBJECT |
564 OBJECT_INFO_DIE_IF_CORRUPT;
565 int ret;
567 if (!item)
568 return -1;
569 if (item->object.parsed)
570 return 0;
571 if (use_commit_graph && parse_commit_in_graph(r, item)) {
572 static int commit_graph_paranoia = -1;
574 if (commit_graph_paranoia == -1)
575 commit_graph_paranoia = git_env_bool(GIT_COMMIT_GRAPH_PARANOIA, 0);
577 if (commit_graph_paranoia && !has_object(r, &item->object.oid, 0)) {
578 unparse_commit(r, &item->object.oid);
579 return quiet_on_missing ? -1 :
580 error(_("commit %s exists in commit-graph but not in the object database"),
581 oid_to_hex(&item->object.oid));
584 return 0;
587 if (oid_object_info_extended(r, &item->object.oid, &oi, flags) < 0)
588 return quiet_on_missing ? -1 :
589 error("Could not read %s",
590 oid_to_hex(&item->object.oid));
591 if (type != OBJ_COMMIT) {
592 free(buffer);
593 return error("Object %s not a commit",
594 oid_to_hex(&item->object.oid));
597 ret = parse_commit_buffer(r, item, buffer, size, 0);
598 if (save_commit_buffer && !ret &&
599 !get_cached_commit_buffer(r, item, NULL)) {
600 set_commit_buffer(r, item, buffer, size);
601 return 0;
603 free(buffer);
604 return ret;
607 int repo_parse_commit_gently(struct repository *r,
608 struct commit *item, int quiet_on_missing)
610 return repo_parse_commit_internal(r, item, quiet_on_missing, 1);
613 void parse_commit_or_die(struct commit *item)
615 if (repo_parse_commit(the_repository, item))
616 die("unable to parse commit %s",
617 item ? oid_to_hex(&item->object.oid) : "(null)");
620 int find_commit_subject(const char *commit_buffer, const char **subject)
622 const char *eol;
623 const char *p = commit_buffer;
625 while (*p && (*p != '\n' || p[1] != '\n'))
626 p++;
627 if (*p) {
628 p = skip_blank_lines(p + 2);
629 eol = strchrnul(p, '\n');
630 } else
631 eol = p;
633 *subject = p;
635 return eol - p;
638 size_t commit_subject_length(const char *body)
640 const char *p = body;
641 while (*p) {
642 const char *next = skip_blank_lines(p);
643 if (next != p)
644 break;
645 p = strchrnul(p, '\n');
646 if (*p)
647 p++;
649 return p - body;
652 struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
654 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
655 new_list->item = item;
656 new_list->next = *list_p;
657 *list_p = new_list;
658 return new_list;
661 int commit_list_contains(struct commit *item, struct commit_list *list)
663 while (list) {
664 if (list->item == item)
665 return 1;
666 list = list->next;
669 return 0;
672 unsigned commit_list_count(const struct commit_list *l)
674 unsigned c = 0;
675 for (; l; l = l->next )
676 c++;
677 return c;
680 struct commit_list *copy_commit_list(const struct commit_list *list)
682 struct commit_list *head = NULL;
683 struct commit_list **pp = &head;
684 while (list) {
685 pp = commit_list_append(list->item, pp);
686 list = list->next;
688 return head;
691 struct commit_list *reverse_commit_list(struct commit_list *list)
693 struct commit_list *next = NULL, *current, *backup;
694 for (current = list; current; current = backup) {
695 backup = current->next;
696 current->next = next;
697 next = current;
699 return next;
702 void free_commit_list(struct commit_list *list)
704 while (list)
705 pop_commit(&list);
708 struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
710 struct commit_list **pp = list;
711 struct commit_list *p;
712 while ((p = *pp) != NULL) {
713 if (p->item->date < item->date) {
714 break;
716 pp = &p->next;
718 return commit_list_insert(item, pp);
721 static int commit_list_compare_by_date(const struct commit_list *a,
722 const struct commit_list *b)
724 timestamp_t a_date = a->item->date;
725 timestamp_t b_date = b->item->date;
726 if (a_date < b_date)
727 return 1;
728 if (a_date > b_date)
729 return -1;
730 return 0;
733 DEFINE_LIST_SORT(static, commit_list_sort, struct commit_list, next);
735 void commit_list_sort_by_date(struct commit_list **list)
737 commit_list_sort(list, commit_list_compare_by_date);
740 struct commit *pop_most_recent_commit(struct commit_list **list,
741 unsigned int mark)
743 struct commit *ret = pop_commit(list);
744 struct commit_list *parents = ret->parents;
746 while (parents) {
747 struct commit *commit = parents->item;
748 if (!repo_parse_commit(the_repository, commit) && !(commit->object.flags & mark)) {
749 commit->object.flags |= mark;
750 commit_list_insert_by_date(commit, list);
752 parents = parents->next;
754 return ret;
757 static void clear_commit_marks_1(struct commit_list **plist,
758 struct commit *commit, unsigned int mark)
760 while (commit) {
761 struct commit_list *parents;
763 if (!(mark & commit->object.flags))
764 return;
766 commit->object.flags &= ~mark;
768 parents = commit->parents;
769 if (!parents)
770 return;
772 while ((parents = parents->next)) {
773 if (parents->item->object.flags & mark)
774 commit_list_insert(parents->item, plist);
777 commit = commit->parents->item;
781 void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
783 struct commit_list *list = NULL;
785 while (nr--) {
786 clear_commit_marks_1(&list, *commit, mark);
787 commit++;
789 while (list)
790 clear_commit_marks_1(&list, pop_commit(&list), mark);
793 void clear_commit_marks(struct commit *commit, unsigned int mark)
795 clear_commit_marks_many(1, &commit, mark);
798 struct commit *pop_commit(struct commit_list **stack)
800 struct commit_list *top = *stack;
801 struct commit *item = top ? top->item : NULL;
803 if (top) {
804 *stack = top->next;
805 free(top);
807 return item;
811 * Topological sort support
814 /* count number of children that have not been emitted */
815 define_commit_slab(indegree_slab, int);
817 define_commit_slab(author_date_slab, timestamp_t);
819 void record_author_date(struct author_date_slab *author_date,
820 struct commit *commit)
822 const char *buffer = repo_get_commit_buffer(the_repository, commit,
823 NULL);
824 struct ident_split ident;
825 const char *ident_line;
826 size_t ident_len;
827 char *date_end;
828 timestamp_t date;
830 ident_line = find_commit_header(buffer, "author", &ident_len);
831 if (!ident_line)
832 goto fail_exit; /* no author line */
833 if (split_ident_line(&ident, ident_line, ident_len) ||
834 !ident.date_begin || !ident.date_end)
835 goto fail_exit; /* malformed "author" line */
837 date = parse_timestamp(ident.date_begin, &date_end, 10);
838 if (date_end != ident.date_end)
839 goto fail_exit; /* malformed date */
840 *(author_date_slab_at(author_date, commit)) = date;
842 fail_exit:
843 repo_unuse_commit_buffer(the_repository, commit, buffer);
846 int compare_commits_by_author_date(const void *a_, const void *b_,
847 void *cb_data)
849 const struct commit *a = a_, *b = b_;
850 struct author_date_slab *author_date = cb_data;
851 timestamp_t a_date = *(author_date_slab_at(author_date, a));
852 timestamp_t b_date = *(author_date_slab_at(author_date, b));
854 /* newer commits with larger date first */
855 if (a_date < b_date)
856 return 1;
857 else if (a_date > b_date)
858 return -1;
859 return 0;
862 int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_,
863 void *unused UNUSED)
865 const struct commit *a = a_, *b = b_;
866 const timestamp_t generation_a = commit_graph_generation(a),
867 generation_b = commit_graph_generation(b);
869 /* newer commits first */
870 if (generation_a < generation_b)
871 return 1;
872 else if (generation_a > generation_b)
873 return -1;
875 /* use date as a heuristic when generations are equal */
876 if (a->date < b->date)
877 return 1;
878 else if (a->date > b->date)
879 return -1;
880 return 0;
883 int compare_commits_by_commit_date(const void *a_, const void *b_,
884 void *unused UNUSED)
886 const struct commit *a = a_, *b = b_;
887 /* newer commits with larger date first */
888 if (a->date < b->date)
889 return 1;
890 else if (a->date > b->date)
891 return -1;
892 return 0;
896 * Performs an in-place topological sort on the list supplied.
898 void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
900 struct commit_list *next, *orig = *list;
901 struct commit_list **pptr;
902 struct indegree_slab indegree;
903 struct prio_queue queue;
904 struct commit *commit;
905 struct author_date_slab author_date;
907 if (!orig)
908 return;
909 *list = NULL;
911 init_indegree_slab(&indegree);
912 memset(&queue, '\0', sizeof(queue));
914 switch (sort_order) {
915 default: /* REV_SORT_IN_GRAPH_ORDER */
916 queue.compare = NULL;
917 break;
918 case REV_SORT_BY_COMMIT_DATE:
919 queue.compare = compare_commits_by_commit_date;
920 break;
921 case REV_SORT_BY_AUTHOR_DATE:
922 init_author_date_slab(&author_date);
923 queue.compare = compare_commits_by_author_date;
924 queue.cb_data = &author_date;
925 break;
928 /* Mark them and clear the indegree */
929 for (next = orig; next; next = next->next) {
930 struct commit *commit = next->item;
931 *(indegree_slab_at(&indegree, commit)) = 1;
932 /* also record the author dates, if needed */
933 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
934 record_author_date(&author_date, commit);
937 /* update the indegree */
938 for (next = orig; next; next = next->next) {
939 struct commit_list *parents = next->item->parents;
940 while (parents) {
941 struct commit *parent = parents->item;
942 int *pi = indegree_slab_at(&indegree, parent);
944 if (*pi)
945 (*pi)++;
946 parents = parents->next;
951 * find the tips
953 * tips are nodes not reachable from any other node in the list
955 * the tips serve as a starting set for the work queue.
957 for (next = orig; next; next = next->next) {
958 struct commit *commit = next->item;
960 if (*(indegree_slab_at(&indegree, commit)) == 1)
961 prio_queue_put(&queue, commit);
965 * This is unfortunate; the initial tips need to be shown
966 * in the order given from the revision traversal machinery.
968 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
969 prio_queue_reverse(&queue);
971 /* We no longer need the commit list */
972 free_commit_list(orig);
974 pptr = list;
975 *list = NULL;
976 while ((commit = prio_queue_get(&queue)) != NULL) {
977 struct commit_list *parents;
979 for (parents = commit->parents; parents ; parents = parents->next) {
980 struct commit *parent = parents->item;
981 int *pi = indegree_slab_at(&indegree, parent);
983 if (!*pi)
984 continue;
987 * parents are only enqueued for emission
988 * when all their children have been emitted thereby
989 * guaranteeing topological order.
991 if (--(*pi) == 1)
992 prio_queue_put(&queue, parent);
995 * all children of commit have already been
996 * emitted. we can emit it now.
998 *(indegree_slab_at(&indegree, commit)) = 0;
1000 pptr = &commit_list_insert(commit, pptr)->next;
1003 clear_indegree_slab(&indegree);
1004 clear_prio_queue(&queue);
1005 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
1006 clear_author_date_slab(&author_date);
1009 struct rev_collect {
1010 struct commit **commit;
1011 int nr;
1012 int alloc;
1013 unsigned int initial : 1;
1016 static void add_one_commit(struct object_id *oid, struct rev_collect *revs)
1018 struct commit *commit;
1020 if (is_null_oid(oid))
1021 return;
1023 commit = lookup_commit(the_repository, oid);
1024 if (!commit ||
1025 (commit->object.flags & TMP_MARK) ||
1026 repo_parse_commit(the_repository, commit))
1027 return;
1029 ALLOC_GROW(revs->commit, revs->nr + 1, revs->alloc);
1030 revs->commit[revs->nr++] = commit;
1031 commit->object.flags |= TMP_MARK;
1034 static int collect_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
1035 const char *ident UNUSED,
1036 timestamp_t timestamp UNUSED, int tz UNUSED,
1037 const char *message UNUSED, void *cbdata)
1039 struct rev_collect *revs = cbdata;
1041 if (revs->initial) {
1042 revs->initial = 0;
1043 add_one_commit(ooid, revs);
1045 add_one_commit(noid, revs);
1046 return 0;
1049 struct commit *get_fork_point(const char *refname, struct commit *commit)
1051 struct object_id oid;
1052 struct rev_collect revs;
1053 struct commit_list *bases = NULL;
1054 int i;
1055 struct commit *ret = NULL;
1056 char *full_refname;
1058 switch (repo_dwim_ref(the_repository, refname, strlen(refname), &oid,
1059 &full_refname, 0)) {
1060 case 0:
1061 die("No such ref: '%s'", refname);
1062 case 1:
1063 break; /* good */
1064 default:
1065 die("Ambiguous refname: '%s'", refname);
1068 memset(&revs, 0, sizeof(revs));
1069 revs.initial = 1;
1070 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1071 full_refname, collect_one_reflog_ent, &revs);
1073 if (!revs.nr)
1074 add_one_commit(&oid, &revs);
1076 for (i = 0; i < revs.nr; i++)
1077 revs.commit[i]->object.flags &= ~TMP_MARK;
1079 if (repo_get_merge_bases_many(the_repository, commit, revs.nr,
1080 revs.commit, &bases) < 0)
1081 exit(128);
1084 * There should be one and only one merge base, when we found
1085 * a common ancestor among reflog entries.
1087 if (!bases || bases->next)
1088 goto cleanup_return;
1090 /* And the found one must be one of the reflog entries */
1091 for (i = 0; i < revs.nr; i++)
1092 if (&bases->item->object == &revs.commit[i]->object)
1093 break; /* found */
1094 if (revs.nr <= i)
1095 goto cleanup_return;
1097 ret = bases->item;
1099 cleanup_return:
1100 free(revs.commit);
1101 free_commit_list(bases);
1102 free(full_refname);
1103 return ret;
1107 * Indexed by hash algorithm identifier.
1109 static const char *gpg_sig_headers[] = {
1110 NULL,
1111 "gpgsig",
1112 "gpgsig-sha256",
1115 int add_header_signature(struct strbuf *buf, struct strbuf *sig, const struct git_hash_algo *algo)
1117 int inspos, copypos;
1118 const char *eoh;
1119 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algo)];
1120 int gpg_sig_header_len = strlen(gpg_sig_header);
1122 /* find the end of the header */
1123 eoh = strstr(buf->buf, "\n\n");
1124 if (!eoh)
1125 inspos = buf->len;
1126 else
1127 inspos = eoh - buf->buf + 1;
1129 for (copypos = 0; sig->buf[copypos]; ) {
1130 const char *bol = sig->buf + copypos;
1131 const char *eol = strchrnul(bol, '\n');
1132 int len = (eol - bol) + !!*eol;
1134 if (!copypos) {
1135 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1136 inspos += gpg_sig_header_len;
1138 strbuf_insertstr(buf, inspos++, " ");
1139 strbuf_insert(buf, inspos, bol, len);
1140 inspos += len;
1141 copypos += len;
1143 return 0;
1146 static int sign_commit_to_strbuf(struct strbuf *sig, struct strbuf *buf, const char *keyid)
1148 char *keyid_to_free = NULL;
1149 int ret = 0;
1150 if (!keyid || !*keyid)
1151 keyid = keyid_to_free = get_signing_key();
1152 if (sign_buffer(buf, sig, keyid))
1153 ret = -1;
1154 free(keyid_to_free);
1155 return ret;
1158 int parse_signed_commit(const struct commit *commit,
1159 struct strbuf *payload, struct strbuf *signature,
1160 const struct git_hash_algo *algop)
1162 unsigned long size;
1163 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1164 &size);
1165 int ret = parse_buffer_signed_by_header(buffer, size, payload, signature, algop);
1167 repo_unuse_commit_buffer(the_repository, commit, buffer);
1168 return ret;
1171 int parse_buffer_signed_by_header(const char *buffer,
1172 unsigned long size,
1173 struct strbuf *payload,
1174 struct strbuf *signature,
1175 const struct git_hash_algo *algop)
1177 int in_signature = 0, saw_signature = 0, other_signature = 0;
1178 const char *line, *tail, *p;
1179 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algop)];
1181 line = buffer;
1182 tail = buffer + size;
1183 while (line < tail) {
1184 const char *sig = NULL;
1185 const char *next = memchr(line, '\n', tail - line);
1187 next = next ? next + 1 : tail;
1188 if (in_signature && line[0] == ' ')
1189 sig = line + 1;
1190 else if (skip_prefix(line, gpg_sig_header, &p) &&
1191 *p == ' ') {
1192 sig = line + strlen(gpg_sig_header) + 1;
1193 other_signature = 0;
1195 else if (starts_with(line, "gpgsig"))
1196 other_signature = 1;
1197 else if (other_signature && line[0] != ' ')
1198 other_signature = 0;
1199 if (sig) {
1200 strbuf_add(signature, sig, next - sig);
1201 saw_signature = 1;
1202 in_signature = 1;
1203 } else {
1204 if (*line == '\n')
1205 /* dump the whole remainder of the buffer */
1206 next = tail;
1207 if (!other_signature)
1208 strbuf_add(payload, line, next - line);
1209 in_signature = 0;
1211 line = next;
1213 return saw_signature;
1216 int remove_signature(struct strbuf *buf)
1218 const char *line = buf->buf;
1219 const char *tail = buf->buf + buf->len;
1220 int in_signature = 0;
1221 struct sigbuf {
1222 const char *start;
1223 const char *end;
1224 } sigs[2], *sigp = &sigs[0];
1225 int i;
1226 const char *orig_buf = buf->buf;
1228 memset(sigs, 0, sizeof(sigs));
1230 while (line < tail) {
1231 const char *next = memchr(line, '\n', tail - line);
1232 next = next ? next + 1 : tail;
1234 if (in_signature && line[0] == ' ')
1235 sigp->end = next;
1236 else if (starts_with(line, "gpgsig")) {
1237 int i;
1238 for (i = 1; i < GIT_HASH_NALGOS; i++) {
1239 const char *p;
1240 if (skip_prefix(line, gpg_sig_headers[i], &p) &&
1241 *p == ' ') {
1242 sigp->start = line;
1243 sigp->end = next;
1244 in_signature = 1;
1247 } else {
1248 if (*line == '\n')
1249 /* dump the whole remainder of the buffer */
1250 next = tail;
1251 if (in_signature && sigp - sigs != ARRAY_SIZE(sigs))
1252 sigp++;
1253 in_signature = 0;
1255 line = next;
1258 for (i = ARRAY_SIZE(sigs) - 1; i >= 0; i--)
1259 if (sigs[i].start)
1260 strbuf_remove(buf, sigs[i].start - orig_buf, sigs[i].end - sigs[i].start);
1262 return sigs[0].start != NULL;
1265 static void handle_signed_tag(const struct commit *parent, struct commit_extra_header ***tail)
1267 struct merge_remote_desc *desc;
1268 struct commit_extra_header *mergetag;
1269 char *buf;
1270 unsigned long size;
1271 enum object_type type;
1272 struct strbuf payload = STRBUF_INIT;
1273 struct strbuf signature = STRBUF_INIT;
1275 desc = merge_remote_util(parent);
1276 if (!desc || !desc->obj)
1277 return;
1278 buf = repo_read_object_file(the_repository, &desc->obj->oid, &type,
1279 &size);
1280 if (!buf || type != OBJ_TAG)
1281 goto free_return;
1282 if (!parse_signature(buf, size, &payload, &signature))
1283 goto free_return;
1285 * We could verify this signature and either omit the tag when
1286 * it does not validate, but the integrator may not have the
1287 * public key of the signer of the tag being merged, while a
1288 * later auditor may have it while auditing, so let's not run
1289 * verify-signed-buffer here for now...
1291 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1292 * warn("warning: signed tag unverified.");
1294 CALLOC_ARRAY(mergetag, 1);
1295 mergetag->key = xstrdup("mergetag");
1296 mergetag->value = buf;
1297 mergetag->len = size;
1299 **tail = mergetag;
1300 *tail = &mergetag->next;
1301 strbuf_release(&payload);
1302 strbuf_release(&signature);
1303 return;
1305 free_return:
1306 free(buf);
1309 int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
1311 struct strbuf payload = STRBUF_INIT;
1312 struct strbuf signature = STRBUF_INIT;
1313 int ret = 1;
1315 sigc->result = 'N';
1317 if (parse_signed_commit(commit, &payload, &signature, the_hash_algo) <= 0)
1318 goto out;
1320 sigc->payload_type = SIGNATURE_PAYLOAD_COMMIT;
1321 sigc->payload = strbuf_detach(&payload, &sigc->payload_len);
1322 ret = check_signature(sigc, signature.buf, signature.len);
1324 out:
1325 strbuf_release(&payload);
1326 strbuf_release(&signature);
1328 return ret;
1331 void verify_merge_signature(struct commit *commit, int verbosity,
1332 int check_trust)
1334 char hex[GIT_MAX_HEXSZ + 1];
1335 struct signature_check signature_check;
1336 int ret;
1337 memset(&signature_check, 0, sizeof(signature_check));
1339 ret = check_commit_signature(commit, &signature_check);
1341 repo_find_unique_abbrev_r(the_repository, hex, &commit->object.oid,
1342 DEFAULT_ABBREV);
1343 switch (signature_check.result) {
1344 case 'G':
1345 if (ret || (check_trust && signature_check.trust_level < TRUST_MARGINAL))
1346 die(_("Commit %s has an untrusted GPG signature, "
1347 "allegedly by %s."), hex, signature_check.signer);
1348 break;
1349 case 'B':
1350 die(_("Commit %s has a bad GPG signature "
1351 "allegedly by %s."), hex, signature_check.signer);
1352 default: /* 'N' */
1353 die(_("Commit %s does not have a GPG signature."), hex);
1355 if (verbosity >= 0 && signature_check.result == 'G')
1356 printf(_("Commit %s has a good GPG signature by %s\n"),
1357 hex, signature_check.signer);
1359 signature_check_clear(&signature_check);
1362 void append_merge_tag_headers(const struct commit_list *parents,
1363 struct commit_extra_header ***tail)
1365 while (parents) {
1366 const struct commit *parent = parents->item;
1367 handle_signed_tag(parent, tail);
1368 parents = parents->next;
1372 static int convert_commit_extra_headers(const struct commit_extra_header *orig,
1373 struct commit_extra_header **result)
1375 const struct git_hash_algo *compat = the_repository->compat_hash_algo;
1376 const struct git_hash_algo *algo = the_repository->hash_algo;
1377 struct commit_extra_header *extra = NULL, **tail = &extra;
1378 struct strbuf out = STRBUF_INIT;
1379 while (orig) {
1380 struct commit_extra_header *new;
1381 CALLOC_ARRAY(new, 1);
1382 if (!strcmp(orig->key, "mergetag")) {
1383 if (convert_object_file(&out, algo, compat,
1384 orig->value, orig->len,
1385 OBJ_TAG, 1)) {
1386 free(new);
1387 free_commit_extra_headers(extra);
1388 return -1;
1390 new->key = xstrdup("mergetag");
1391 new->value = strbuf_detach(&out, &new->len);
1392 } else {
1393 new->key = xstrdup(orig->key);
1394 new->len = orig->len;
1395 new->value = xmemdupz(orig->value, orig->len);
1397 *tail = new;
1398 tail = &new->next;
1399 orig = orig->next;
1401 *result = extra;
1402 return 0;
1405 static void add_extra_header(struct strbuf *buffer,
1406 const struct commit_extra_header *extra)
1408 strbuf_addstr(buffer, extra->key);
1409 if (extra->len)
1410 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1411 else
1412 strbuf_addch(buffer, '\n');
1415 struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1416 const char **exclude)
1418 struct commit_extra_header *extra = NULL;
1419 unsigned long size;
1420 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1421 &size);
1422 extra = read_commit_extra_header_lines(buffer, size, exclude);
1423 repo_unuse_commit_buffer(the_repository, commit, buffer);
1424 return extra;
1427 int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
1429 struct commit_extra_header *extra, *to_free;
1430 int res = 0;
1432 to_free = read_commit_extra_headers(commit, NULL);
1433 for (extra = to_free; !res && extra; extra = extra->next) {
1434 if (strcmp(extra->key, "mergetag"))
1435 continue; /* not a merge tag */
1436 res = fn(commit, extra, data);
1438 free_commit_extra_headers(to_free);
1439 return res;
1442 static inline int standard_header_field(const char *field, size_t len)
1444 return ((len == 4 && !memcmp(field, "tree", 4)) ||
1445 (len == 6 && !memcmp(field, "parent", 6)) ||
1446 (len == 6 && !memcmp(field, "author", 6)) ||
1447 (len == 9 && !memcmp(field, "committer", 9)) ||
1448 (len == 8 && !memcmp(field, "encoding", 8)));
1451 static int excluded_header_field(const char *field, size_t len, const char **exclude)
1453 if (!exclude)
1454 return 0;
1456 while (*exclude) {
1457 size_t xlen = strlen(*exclude);
1458 if (len == xlen && !memcmp(field, *exclude, xlen))
1459 return 1;
1460 exclude++;
1462 return 0;
1465 static struct commit_extra_header *read_commit_extra_header_lines(
1466 const char *buffer, size_t size,
1467 const char **exclude)
1469 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1470 const char *line, *next, *eof, *eob;
1471 struct strbuf buf = STRBUF_INIT;
1473 for (line = buffer, eob = line + size;
1474 line < eob && *line != '\n';
1475 line = next) {
1476 next = memchr(line, '\n', eob - line);
1477 next = next ? next + 1 : eob;
1478 if (*line == ' ') {
1479 /* continuation */
1480 if (it)
1481 strbuf_add(&buf, line + 1, next - (line + 1));
1482 continue;
1484 if (it)
1485 it->value = strbuf_detach(&buf, &it->len);
1486 strbuf_reset(&buf);
1487 it = NULL;
1489 eof = memchr(line, ' ', next - line);
1490 if (!eof)
1491 eof = next;
1492 else if (standard_header_field(line, eof - line) ||
1493 excluded_header_field(line, eof - line, exclude))
1494 continue;
1496 CALLOC_ARRAY(it, 1);
1497 it->key = xmemdupz(line, eof-line);
1498 *tail = it;
1499 tail = &it->next;
1500 if (eof + 1 < next)
1501 strbuf_add(&buf, eof + 1, next - (eof + 1));
1503 if (it)
1504 it->value = strbuf_detach(&buf, &it->len);
1505 return extra;
1508 void free_commit_extra_headers(struct commit_extra_header *extra)
1510 while (extra) {
1511 struct commit_extra_header *next = extra->next;
1512 free(extra->key);
1513 free(extra->value);
1514 free(extra);
1515 extra = next;
1519 int commit_tree(const char *msg, size_t msg_len, const struct object_id *tree,
1520 const struct commit_list *parents, struct object_id *ret,
1521 const char *author, const char *sign_commit)
1523 struct commit_extra_header *extra = NULL, **tail = &extra;
1524 int result;
1526 append_merge_tag_headers(parents, &tail);
1527 result = commit_tree_extended(msg, msg_len, tree, parents, ret, author,
1528 NULL, sign_commit, extra);
1529 free_commit_extra_headers(extra);
1530 return result;
1533 static int find_invalid_utf8(const char *buf, int len)
1535 int offset = 0;
1536 static const unsigned int max_codepoint[] = {
1537 0x7f, 0x7ff, 0xffff, 0x10ffff
1540 while (len) {
1541 unsigned char c = *buf++;
1542 int bytes, bad_offset;
1543 unsigned int codepoint;
1544 unsigned int min_val, max_val;
1546 len--;
1547 offset++;
1549 /* Simple US-ASCII? No worries. */
1550 if (c < 0x80)
1551 continue;
1553 bad_offset = offset-1;
1556 * Count how many more high bits set: that's how
1557 * many more bytes this sequence should have.
1559 bytes = 0;
1560 while (c & 0x40) {
1561 c <<= 1;
1562 bytes++;
1566 * Must be between 1 and 3 more bytes. Longer sequences result in
1567 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1569 if (bytes < 1 || 3 < bytes)
1570 return bad_offset;
1572 /* Do we *have* that many bytes? */
1573 if (len < bytes)
1574 return bad_offset;
1577 * Place the encoded bits at the bottom of the value and compute the
1578 * valid range.
1580 codepoint = (c & 0x7f) >> bytes;
1581 min_val = max_codepoint[bytes-1] + 1;
1582 max_val = max_codepoint[bytes];
1584 offset += bytes;
1585 len -= bytes;
1587 /* And verify that they are good continuation bytes */
1588 do {
1589 codepoint <<= 6;
1590 codepoint |= *buf & 0x3f;
1591 if ((*buf++ & 0xc0) != 0x80)
1592 return bad_offset;
1593 } while (--bytes);
1595 /* Reject codepoints that are out of range for the sequence length. */
1596 if (codepoint < min_val || codepoint > max_val)
1597 return bad_offset;
1598 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1599 if ((codepoint & 0x1ff800) == 0xd800)
1600 return bad_offset;
1601 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
1602 if ((codepoint & 0xfffe) == 0xfffe)
1603 return bad_offset;
1604 /* So are anything in the range U+FDD0..U+FDEF. */
1605 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
1606 return bad_offset;
1608 return -1;
1612 * This verifies that the buffer is in proper utf8 format.
1614 * If it isn't, it assumes any non-utf8 characters are Latin1,
1615 * and does the conversion.
1617 static int verify_utf8(struct strbuf *buf)
1619 int ok = 1;
1620 long pos = 0;
1622 for (;;) {
1623 int bad;
1624 unsigned char c;
1625 unsigned char replace[2];
1627 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1628 if (bad < 0)
1629 return ok;
1630 pos += bad;
1631 ok = 0;
1632 c = buf->buf[pos];
1633 strbuf_remove(buf, pos, 1);
1635 /* We know 'c' must be in the range 128-255 */
1636 replace[0] = 0xc0 + (c >> 6);
1637 replace[1] = 0x80 + (c & 0x3f);
1638 strbuf_insert(buf, pos, replace, 2);
1639 pos += 2;
1643 static const char commit_utf8_warn[] =
1644 N_("Warning: commit message did not conform to UTF-8.\n"
1645 "You may want to amend it after fixing the message, or set the config\n"
1646 "variable i18n.commitEncoding to the encoding your project uses.\n");
1648 static void write_commit_tree(struct strbuf *buffer, const char *msg, size_t msg_len,
1649 const struct object_id *tree,
1650 const struct object_id *parents, size_t parents_len,
1651 const char *author, const char *committer,
1652 const struct commit_extra_header *extra)
1654 int encoding_is_utf8;
1655 size_t i;
1657 /* Not having i18n.commitencoding is the same as having utf-8 */
1658 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1660 strbuf_grow(buffer, 8192); /* should avoid reallocs for the headers */
1661 strbuf_addf(buffer, "tree %s\n", oid_to_hex(tree));
1664 * NOTE! This ordering means that the same exact tree merged with a
1665 * different order of parents will be a _different_ changeset even
1666 * if everything else stays the same.
1668 for (i = 0; i < parents_len; i++)
1669 strbuf_addf(buffer, "parent %s\n", oid_to_hex(&parents[i]));
1671 /* Person/date information */
1672 if (!author)
1673 author = git_author_info(IDENT_STRICT);
1674 strbuf_addf(buffer, "author %s\n", author);
1675 if (!committer)
1676 committer = git_committer_info(IDENT_STRICT);
1677 strbuf_addf(buffer, "committer %s\n", committer);
1678 if (!encoding_is_utf8)
1679 strbuf_addf(buffer, "encoding %s\n", git_commit_encoding);
1681 while (extra) {
1682 add_extra_header(buffer, extra);
1683 extra = extra->next;
1685 strbuf_addch(buffer, '\n');
1687 /* And add the comment */
1688 strbuf_add(buffer, msg, msg_len);
1691 int commit_tree_extended(const char *msg, size_t msg_len,
1692 const struct object_id *tree,
1693 const struct commit_list *parents, struct object_id *ret,
1694 const char *author, const char *committer,
1695 const char *sign_commit,
1696 const struct commit_extra_header *extra)
1698 struct repository *r = the_repository;
1699 int result = 0;
1700 int encoding_is_utf8;
1701 struct strbuf buffer = STRBUF_INIT, compat_buffer = STRBUF_INIT;
1702 struct strbuf sig = STRBUF_INIT, compat_sig = STRBUF_INIT;
1703 struct object_id *parent_buf = NULL, *compat_oid = NULL;
1704 struct object_id compat_oid_buf;
1705 size_t i, nparents;
1707 /* Not having i18n.commitencoding is the same as having utf-8 */
1708 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1710 assert_oid_type(tree, OBJ_TREE);
1712 if (memchr(msg, '\0', msg_len))
1713 return error("a NUL byte in commit log message not allowed.");
1715 nparents = commit_list_count(parents);
1716 CALLOC_ARRAY(parent_buf, nparents);
1717 i = 0;
1718 for (const struct commit_list *p = parents; p; p = p->next)
1719 oidcpy(&parent_buf[i++], &p->item->object.oid);
1721 write_commit_tree(&buffer, msg, msg_len, tree, parent_buf, nparents, author, committer, extra);
1722 if (sign_commit && sign_commit_to_strbuf(&sig, &buffer, sign_commit)) {
1723 result = -1;
1724 goto out;
1726 if (r->compat_hash_algo) {
1727 struct commit_extra_header *compat_extra = NULL;
1728 struct object_id mapped_tree;
1729 struct object_id *mapped_parents;
1731 CALLOC_ARRAY(mapped_parents, nparents);
1733 if (repo_oid_to_algop(r, tree, r->compat_hash_algo, &mapped_tree)) {
1734 result = -1;
1735 free(mapped_parents);
1736 goto out;
1738 for (i = 0; i < nparents; i++)
1739 if (repo_oid_to_algop(r, &parent_buf[i], r->compat_hash_algo, &mapped_parents[i])) {
1740 result = -1;
1741 free(mapped_parents);
1742 goto out;
1744 if (convert_commit_extra_headers(extra, &compat_extra)) {
1745 result = -1;
1746 free(mapped_parents);
1747 goto out;
1749 write_commit_tree(&compat_buffer, msg, msg_len, &mapped_tree,
1750 mapped_parents, nparents, author, committer, compat_extra);
1751 free_commit_extra_headers(compat_extra);
1752 free(mapped_parents);
1754 if (sign_commit && sign_commit_to_strbuf(&compat_sig, &compat_buffer, sign_commit)) {
1755 result = -1;
1756 goto out;
1760 if (sign_commit) {
1761 struct sig_pairs {
1762 struct strbuf *sig;
1763 const struct git_hash_algo *algo;
1764 } bufs [2] = {
1765 { &compat_sig, r->compat_hash_algo },
1766 { &sig, r->hash_algo },
1768 int i;
1771 * We write algorithms in the order they were implemented in
1772 * Git to produce a stable hash when multiple algorithms are
1773 * used.
1775 if (r->compat_hash_algo && hash_algo_by_ptr(bufs[0].algo) > hash_algo_by_ptr(bufs[1].algo))
1776 SWAP(bufs[0], bufs[1]);
1779 * We traverse each algorithm in order, and apply the signature
1780 * to each buffer.
1782 for (i = 0; i < ARRAY_SIZE(bufs); i++) {
1783 if (!bufs[i].algo)
1784 continue;
1785 add_header_signature(&buffer, bufs[i].sig, bufs[i].algo);
1786 if (r->compat_hash_algo)
1787 add_header_signature(&compat_buffer, bufs[i].sig, bufs[i].algo);
1791 /* And check the encoding. */
1792 if (encoding_is_utf8 && (!verify_utf8(&buffer) || !verify_utf8(&compat_buffer)))
1793 fprintf(stderr, _(commit_utf8_warn));
1795 if (r->compat_hash_algo) {
1796 hash_object_file(r->compat_hash_algo, compat_buffer.buf, compat_buffer.len,
1797 OBJ_COMMIT, &compat_oid_buf);
1798 compat_oid = &compat_oid_buf;
1801 result = write_object_file_flags(buffer.buf, buffer.len, OBJ_COMMIT,
1802 ret, compat_oid, 0);
1803 out:
1804 free(parent_buf);
1805 strbuf_release(&buffer);
1806 strbuf_release(&compat_buffer);
1807 strbuf_release(&sig);
1808 strbuf_release(&compat_sig);
1809 return result;
1812 define_commit_slab(merge_desc_slab, struct merge_remote_desc *);
1813 static struct merge_desc_slab merge_desc_slab = COMMIT_SLAB_INIT(1, merge_desc_slab);
1815 struct merge_remote_desc *merge_remote_util(const struct commit *commit)
1817 return *merge_desc_slab_at(&merge_desc_slab, commit);
1820 void set_merge_remote_desc(struct commit *commit,
1821 const char *name, struct object *obj)
1823 struct merge_remote_desc *desc;
1824 FLEX_ALLOC_STR(desc, name, name);
1825 desc->obj = obj;
1826 *merge_desc_slab_at(&merge_desc_slab, commit) = desc;
1829 struct commit *get_merge_parent(const char *name)
1831 struct object *obj;
1832 struct commit *commit;
1833 struct object_id oid;
1834 if (repo_get_oid(the_repository, name, &oid))
1835 return NULL;
1836 obj = parse_object(the_repository, &oid);
1837 commit = (struct commit *)repo_peel_to_type(the_repository, name, 0,
1838 obj, OBJ_COMMIT);
1839 if (commit && !merge_remote_util(commit))
1840 set_merge_remote_desc(commit, name, obj);
1841 return commit;
1845 * Append a commit to the end of the commit_list.
1847 * next starts by pointing to the variable that holds the head of an
1848 * empty commit_list, and is updated to point to the "next" field of
1849 * the last item on the list as new commits are appended.
1851 * Usage example:
1853 * struct commit_list *list;
1854 * struct commit_list **next = &list;
1856 * next = commit_list_append(c1, next);
1857 * next = commit_list_append(c2, next);
1858 * assert(commit_list_count(list) == 2);
1859 * return list;
1861 struct commit_list **commit_list_append(struct commit *commit,
1862 struct commit_list **next)
1864 struct commit_list *new_commit = xmalloc(sizeof(struct commit_list));
1865 new_commit->item = commit;
1866 *next = new_commit;
1867 new_commit->next = NULL;
1868 return &new_commit->next;
1871 const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
1873 int key_len = strlen(key);
1874 const char *line = msg;
1876 while (line) {
1877 const char *eol = strchrnul(line, '\n');
1879 if (line == eol)
1880 return NULL;
1882 if (eol - line > key_len &&
1883 !strncmp(line, key, key_len) &&
1884 line[key_len] == ' ') {
1885 *out_len = eol - line - key_len - 1;
1886 return line + key_len + 1;
1888 line = *eol ? eol + 1 : NULL;
1890 return NULL;
1894 * Inspect the given string and determine the true "end" of the log message, in
1895 * order to find where to put a new Signed-off-by trailer. Ignored are
1896 * trailing comment lines and blank lines. To support "git commit -s
1897 * --amend" on an existing commit, we also ignore "Conflicts:". To
1898 * support "git commit -v", we truncate at cut lines.
1900 * Returns the number of bytes from the tail to ignore, to be fed as
1901 * the second parameter to append_signoff().
1903 size_t ignored_log_message_bytes(const char *buf, size_t len)
1905 size_t boc = 0;
1906 size_t bol = 0;
1907 int in_old_conflicts_block = 0;
1908 size_t cutoff = wt_status_locate_end(buf, len);
1910 while (bol < cutoff) {
1911 const char *next_line = memchr(buf + bol, '\n', len - bol);
1913 if (!next_line)
1914 next_line = buf + len;
1915 else
1916 next_line++;
1918 if (starts_with_mem(buf + bol, cutoff - bol, comment_line_str) ||
1919 buf[bol] == '\n') {
1920 /* is this the first of the run of comments? */
1921 if (!boc)
1922 boc = bol;
1923 /* otherwise, it is just continuing */
1924 } else if (starts_with(buf + bol, "Conflicts:\n")) {
1925 in_old_conflicts_block = 1;
1926 if (!boc)
1927 boc = bol;
1928 } else if (in_old_conflicts_block && buf[bol] == '\t') {
1929 ; /* a pathname in the conflicts block */
1930 } else if (boc) {
1931 /* the previous was not trailing comment */
1932 boc = 0;
1933 in_old_conflicts_block = 0;
1935 bol = next_line - buf;
1937 return boc ? len - boc : len - cutoff;
1940 int run_commit_hook(int editor_is_used, const char *index_file,
1941 int *invoked_hook, const char *name, ...)
1943 struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT;
1944 va_list args;
1945 const char *arg;
1947 strvec_pushf(&opt.env, "GIT_INDEX_FILE=%s", index_file);
1950 * Let the hook know that no editor will be launched.
1952 if (!editor_is_used)
1953 strvec_push(&opt.env, "GIT_EDITOR=:");
1955 va_start(args, name);
1956 while ((arg = va_arg(args, const char *)))
1957 strvec_push(&opt.args, arg);
1958 va_end(args);
1960 opt.invoked_hook = invoked_hook;
1961 return run_hooks_opt(the_repository, name, &opt);