9 #include "gpg-interface.h"
11 int save_commit_buffer
= 1;
13 const char *commit_type
= "commit";
15 static struct commit
*check_commit(struct object
*obj
,
16 const unsigned char *sha1
,
19 if (obj
->type
!= OBJ_COMMIT
) {
21 error("Object %s is a %s, not a commit",
22 sha1_to_hex(sha1
), typename(obj
->type
));
25 return (struct commit
*) obj
;
28 struct commit
*lookup_commit_reference_gently(const unsigned char *sha1
,
31 struct object
*obj
= deref_tag(parse_object(sha1
), NULL
, 0);
35 return check_commit(obj
, sha1
, quiet
);
38 struct commit
*lookup_commit_reference(const unsigned char *sha1
)
40 return lookup_commit_reference_gently(sha1
, 0);
43 struct commit
*lookup_commit_or_die(const unsigned char *sha1
, const char *ref_name
)
45 struct commit
*c
= lookup_commit_reference(sha1
);
47 die(_("could not parse %s"), ref_name
);
48 if (hashcmp(sha1
, c
->object
.sha1
)) {
49 warning(_("%s %s is not a commit!"),
50 ref_name
, sha1_to_hex(sha1
));
55 struct commit
*lookup_commit(const unsigned char *sha1
)
57 struct object
*obj
= lookup_object(sha1
);
59 return create_object(sha1
, OBJ_COMMIT
, alloc_commit_node());
61 obj
->type
= OBJ_COMMIT
;
62 return check_commit(obj
, sha1
, 0);
65 struct commit
*lookup_commit_reference_by_name(const char *name
)
67 unsigned char sha1
[20];
68 struct commit
*commit
;
70 if (get_sha1(name
, sha1
))
72 commit
= lookup_commit_reference(sha1
);
73 if (!commit
|| parse_commit(commit
))
78 static unsigned long parse_commit_date(const char *buf
, const char *tail
)
84 if (memcmp(buf
, "author", 6))
86 while (buf
< tail
&& *buf
++ != '\n')
90 if (memcmp(buf
, "committer", 9))
92 while (buf
< tail
&& *buf
++ != '>')
97 while (buf
< tail
&& *buf
++ != '\n')
101 /* dateptr < buf && buf[-1] == '\n', so strtoul will stop at buf-1 */
102 return strtoul(dateptr
, NULL
, 10);
105 static struct commit_graft
**commit_graft
;
106 static int commit_graft_alloc
, commit_graft_nr
;
108 static int commit_graft_pos(const unsigned char *sha1
)
112 hi
= commit_graft_nr
;
114 int mi
= (lo
+ hi
) / 2;
115 struct commit_graft
*graft
= commit_graft
[mi
];
116 int cmp
= hashcmp(sha1
, graft
->sha1
);
127 int register_commit_graft(struct commit_graft
*graft
, int ignore_dups
)
129 int pos
= commit_graft_pos(graft
->sha1
);
135 free(commit_graft
[pos
]);
136 commit_graft
[pos
] = graft
;
141 if (commit_graft_alloc
<= ++commit_graft_nr
) {
142 commit_graft_alloc
= alloc_nr(commit_graft_alloc
);
143 commit_graft
= xrealloc(commit_graft
,
144 sizeof(*commit_graft
) *
147 if (pos
< commit_graft_nr
)
148 memmove(commit_graft
+ pos
+ 1,
150 (commit_graft_nr
- pos
- 1) *
151 sizeof(*commit_graft
));
152 commit_graft
[pos
] = graft
;
156 struct commit_graft
*read_graft_line(char *buf
, int len
)
158 /* The format is just "Commit Parent1 Parent2 ...\n" */
160 struct commit_graft
*graft
= NULL
;
162 while (len
&& isspace(buf
[len
-1]))
164 if (buf
[0] == '#' || buf
[0] == '\0')
168 i
= (len
+ 1) / 41 - 1;
169 graft
= xmalloc(sizeof(*graft
) + 20 * i
);
170 graft
->nr_parent
= i
;
171 if (get_sha1_hex(buf
, graft
->sha1
))
173 for (i
= 40; i
< len
; i
+= 41) {
176 if (get_sha1_hex(buf
+ i
+ 1, graft
->parent
[i
/41]))
182 error("bad graft data: %s", buf
);
187 static int read_graft_file(const char *graft_file
)
189 FILE *fp
= fopen(graft_file
, "r");
193 while (fgets(buf
, sizeof(buf
), fp
)) {
194 /* The format is just "Commit Parent1 Parent2 ...\n" */
195 int len
= strlen(buf
);
196 struct commit_graft
*graft
= read_graft_line(buf
, len
);
199 if (register_commit_graft(graft
, 1))
200 error("duplicate graft data: %s", buf
);
206 static void prepare_commit_graft(void)
208 static int commit_graft_prepared
;
211 if (commit_graft_prepared
)
213 graft_file
= get_graft_file();
214 read_graft_file(graft_file
);
215 /* make sure shallows are read */
216 is_repository_shallow();
217 commit_graft_prepared
= 1;
220 struct commit_graft
*lookup_commit_graft(const unsigned char *sha1
)
223 prepare_commit_graft();
224 pos
= commit_graft_pos(sha1
);
227 return commit_graft
[pos
];
230 int for_each_commit_graft(each_commit_graft_fn fn
, void *cb_data
)
233 for (i
= ret
= 0; i
< commit_graft_nr
&& !ret
; i
++)
234 ret
= fn(commit_graft
[i
], cb_data
);
238 int unregister_shallow(const unsigned char *sha1
)
240 int pos
= commit_graft_pos(sha1
);
243 if (pos
+ 1 < commit_graft_nr
)
244 memmove(commit_graft
+ pos
, commit_graft
+ pos
+ 1,
245 sizeof(struct commit_graft
*)
246 * (commit_graft_nr
- pos
- 1));
251 int parse_commit_buffer(struct commit
*item
, const void *buffer
, unsigned long size
)
253 const char *tail
= buffer
;
254 const char *bufptr
= buffer
;
255 unsigned char parent
[20];
256 struct commit_list
**pptr
;
257 struct commit_graft
*graft
;
259 if (item
->object
.parsed
)
261 item
->object
.parsed
= 1;
263 if (tail
<= bufptr
+ 46 || memcmp(bufptr
, "tree ", 5) || bufptr
[45] != '\n')
264 return error("bogus commit object %s", sha1_to_hex(item
->object
.sha1
));
265 if (get_sha1_hex(bufptr
+ 5, parent
) < 0)
266 return error("bad tree pointer in commit %s",
267 sha1_to_hex(item
->object
.sha1
));
268 item
->tree
= lookup_tree(parent
);
269 bufptr
+= 46; /* "tree " + "hex sha1" + "\n" */
270 pptr
= &item
->parents
;
272 graft
= lookup_commit_graft(item
->object
.sha1
);
273 while (bufptr
+ 48 < tail
&& !memcmp(bufptr
, "parent ", 7)) {
274 struct commit
*new_parent
;
276 if (tail
<= bufptr
+ 48 ||
277 get_sha1_hex(bufptr
+ 7, parent
) ||
279 return error("bad parents in commit %s", sha1_to_hex(item
->object
.sha1
));
282 * The clone is shallow if nr_parent < 0, and we must
283 * not traverse its real parents even when we unhide them.
285 if (graft
&& (graft
->nr_parent
< 0 || grafts_replace_parents
))
287 new_parent
= lookup_commit(parent
);
289 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
293 struct commit
*new_parent
;
294 for (i
= 0; i
< graft
->nr_parent
; i
++) {
295 new_parent
= lookup_commit(graft
->parent
[i
]);
298 pptr
= &commit_list_insert(new_parent
, pptr
)->next
;
301 item
->date
= parse_commit_date(bufptr
, tail
);
306 int parse_commit(struct commit
*item
)
308 enum object_type type
;
315 if (item
->object
.parsed
)
317 buffer
= read_sha1_file(item
->object
.sha1
, &type
, &size
);
319 return error("Could not read %s",
320 sha1_to_hex(item
->object
.sha1
));
321 if (type
!= OBJ_COMMIT
) {
323 return error("Object %s not a commit",
324 sha1_to_hex(item
->object
.sha1
));
326 ret
= parse_commit_buffer(item
, buffer
, size
);
327 if (save_commit_buffer
&& !ret
) {
328 item
->buffer
= buffer
;
335 int find_commit_subject(const char *commit_buffer
, const char **subject
)
338 const char *p
= commit_buffer
;
340 while (*p
&& (*p
!= '\n' || p
[1] != '\n'))
344 for (eol
= p
; *eol
&& *eol
!= '\n'; eol
++)
354 struct commit_list
*commit_list_insert(struct commit
*item
, struct commit_list
**list_p
)
356 struct commit_list
*new_list
= xmalloc(sizeof(struct commit_list
));
357 new_list
->item
= item
;
358 new_list
->next
= *list_p
;
363 unsigned commit_list_count(const struct commit_list
*l
)
366 for (; l
; l
= l
->next
)
371 void free_commit_list(struct commit_list
*list
)
374 struct commit_list
*temp
= list
;
380 struct commit_list
* commit_list_insert_by_date(struct commit
*item
, struct commit_list
**list
)
382 struct commit_list
**pp
= list
;
383 struct commit_list
*p
;
384 while ((p
= *pp
) != NULL
) {
385 if (p
->item
->date
< item
->date
) {
390 return commit_list_insert(item
, pp
);
394 void commit_list_sort_by_date(struct commit_list
**list
)
396 struct commit_list
*ret
= NULL
;
398 commit_list_insert_by_date((*list
)->item
, &ret
);
399 *list
= (*list
)->next
;
404 struct commit
*pop_most_recent_commit(struct commit_list
**list
,
407 struct commit
*ret
= (*list
)->item
;
408 struct commit_list
*parents
= ret
->parents
;
409 struct commit_list
*old
= *list
;
411 *list
= (*list
)->next
;
415 struct commit
*commit
= parents
->item
;
416 if (!parse_commit(commit
) && !(commit
->object
.flags
& mark
)) {
417 commit
->object
.flags
|= mark
;
418 commit_list_insert_by_date(commit
, list
);
420 parents
= parents
->next
;
425 void clear_commit_marks(struct commit
*commit
, unsigned int mark
)
428 struct commit_list
*parents
;
430 if (!(mark
& commit
->object
.flags
))
433 commit
->object
.flags
&= ~mark
;
435 parents
= commit
->parents
;
439 while ((parents
= parents
->next
))
440 clear_commit_marks(parents
->item
, mark
);
442 commit
= commit
->parents
->item
;
446 void clear_commit_marks_for_object_array(struct object_array
*a
, unsigned mark
)
448 struct object
*object
;
449 struct commit
*commit
;
452 for (i
= 0; i
< a
->nr
; i
++) {
453 object
= a
->objects
[i
].item
;
454 commit
= lookup_commit_reference_gently(object
->sha1
, 1);
456 clear_commit_marks(commit
, mark
);
460 struct commit
*pop_commit(struct commit_list
**stack
)
462 struct commit_list
*top
= *stack
;
463 struct commit
*item
= top
? top
->item
: NULL
;
473 * Performs an in-place topological sort on the list supplied.
475 void sort_in_topological_order(struct commit_list
** list
, int lifo
)
477 struct commit_list
*next
, *orig
= *list
;
478 struct commit_list
*work
, **insert
;
479 struct commit_list
**pptr
;
485 /* Mark them and clear the indegree */
486 for (next
= orig
; next
; next
= next
->next
) {
487 struct commit
*commit
= next
->item
;
488 commit
->indegree
= 1;
491 /* update the indegree */
492 for (next
= orig
; next
; next
= next
->next
) {
493 struct commit_list
* parents
= next
->item
->parents
;
495 struct commit
*parent
= parents
->item
;
497 if (parent
->indegree
)
499 parents
= parents
->next
;
506 * tips are nodes not reachable from any other node in the list
508 * the tips serve as a starting set for the work queue.
512 for (next
= orig
; next
; next
= next
->next
) {
513 struct commit
*commit
= next
->item
;
515 if (commit
->indegree
== 1)
516 insert
= &commit_list_insert(commit
, insert
)->next
;
519 /* process the list in topological order */
521 commit_list_sort_by_date(&work
);
526 struct commit
*commit
;
527 struct commit_list
*parents
, *work_item
;
530 work
= work_item
->next
;
531 work_item
->next
= NULL
;
533 commit
= work_item
->item
;
534 for (parents
= commit
->parents
; parents
; parents
= parents
->next
) {
535 struct commit
*parent
= parents
->item
;
537 if (!parent
->indegree
)
541 * parents are only enqueued for emission
542 * when all their children have been emitted thereby
543 * guaranteeing topological order.
545 if (--parent
->indegree
== 1) {
547 commit_list_insert_by_date(parent
, &work
);
549 commit_list_insert(parent
, &work
);
553 * work_item is a commit all of whose children
554 * have already been emitted. we can emit it now.
556 commit
->indegree
= 0;
558 pptr
= &work_item
->next
;
562 /* merge-base stuff */
564 /* bits #0..15 in revision.h */
565 #define PARENT1 (1u<<16)
566 #define PARENT2 (1u<<17)
567 #define STALE (1u<<18)
568 #define RESULT (1u<<19)
570 static const unsigned all_flags
= (PARENT1
| PARENT2
| STALE
| RESULT
);
572 static struct commit
*interesting(struct commit_list
*list
)
575 struct commit
*commit
= list
->item
;
577 if (commit
->object
.flags
& STALE
)
584 static struct commit_list
*merge_bases_many(struct commit
*one
, int n
, struct commit
**twos
)
586 struct commit_list
*list
= NULL
;
587 struct commit_list
*result
= NULL
;
590 for (i
= 0; i
< n
; i
++) {
593 * We do not mark this even with RESULT so we do not
594 * have to clean it up.
596 return commit_list_insert(one
, &result
);
599 if (parse_commit(one
))
601 for (i
= 0; i
< n
; i
++) {
602 if (parse_commit(twos
[i
]))
606 one
->object
.flags
|= PARENT1
;
607 commit_list_insert_by_date(one
, &list
);
608 for (i
= 0; i
< n
; i
++) {
609 twos
[i
]->object
.flags
|= PARENT2
;
610 commit_list_insert_by_date(twos
[i
], &list
);
613 while (interesting(list
)) {
614 struct commit
*commit
;
615 struct commit_list
*parents
;
616 struct commit_list
*next
;
624 flags
= commit
->object
.flags
& (PARENT1
| PARENT2
| STALE
);
625 if (flags
== (PARENT1
| PARENT2
)) {
626 if (!(commit
->object
.flags
& RESULT
)) {
627 commit
->object
.flags
|= RESULT
;
628 commit_list_insert_by_date(commit
, &result
);
630 /* Mark parents of a found merge stale */
633 parents
= commit
->parents
;
635 struct commit
*p
= parents
->item
;
636 parents
= parents
->next
;
637 if ((p
->object
.flags
& flags
) == flags
)
641 p
->object
.flags
|= flags
;
642 commit_list_insert_by_date(p
, &list
);
646 /* Clean up the result to remove stale ones */
647 free_commit_list(list
);
648 list
= result
; result
= NULL
;
650 struct commit_list
*next
= list
->next
;
651 if (!(list
->item
->object
.flags
& STALE
))
652 commit_list_insert_by_date(list
->item
, &result
);
659 struct commit_list
*get_octopus_merge_bases(struct commit_list
*in
)
661 struct commit_list
*i
, *j
, *k
, *ret
= NULL
;
662 struct commit_list
**pptr
= &ret
;
664 for (i
= in
; i
; i
= i
->next
) {
666 pptr
= &commit_list_insert(i
->item
, pptr
)->next
;
668 struct commit_list
*new = NULL
, *end
= NULL
;
670 for (j
= ret
; j
; j
= j
->next
) {
671 struct commit_list
*bases
;
672 bases
= get_merge_bases(i
->item
, j
->item
, 1);
677 for (k
= bases
; k
; k
= k
->next
)
686 struct commit_list
*get_merge_bases_many(struct commit
*one
,
688 struct commit
**twos
,
691 struct commit_list
*list
;
692 struct commit
**rslt
;
693 struct commit_list
*result
;
696 result
= merge_bases_many(one
, n
, twos
);
697 for (i
= 0; i
< n
; i
++) {
701 if (!result
|| !result
->next
) {
703 clear_commit_marks(one
, all_flags
);
704 for (i
= 0; i
< n
; i
++)
705 clear_commit_marks(twos
[i
], all_flags
);
710 /* There are more than one */
717 rslt
= xcalloc(cnt
, sizeof(*rslt
));
718 for (list
= result
, i
= 0; list
; list
= list
->next
)
719 rslt
[i
++] = list
->item
;
720 free_commit_list(result
);
722 clear_commit_marks(one
, all_flags
);
723 for (i
= 0; i
< n
; i
++)
724 clear_commit_marks(twos
[i
], all_flags
);
725 for (i
= 0; i
< cnt
- 1; i
++) {
726 for (j
= i
+1; j
< cnt
; j
++) {
727 if (!rslt
[i
] || !rslt
[j
])
729 result
= merge_bases_many(rslt
[i
], 1, &rslt
[j
]);
730 clear_commit_marks(rslt
[i
], all_flags
);
731 clear_commit_marks(rslt
[j
], all_flags
);
732 for (list
= result
; list
; list
= list
->next
) {
733 if (rslt
[i
] == list
->item
)
735 if (rslt
[j
] == list
->item
)
741 /* Surviving ones in rslt[] are the independent results */
743 for (i
= 0; i
< cnt
; i
++) {
745 commit_list_insert_by_date(rslt
[i
], &result
);
751 struct commit_list
*get_merge_bases(struct commit
*one
, struct commit
*two
,
754 return get_merge_bases_many(one
, 1, &two
, cleanup
);
757 int is_descendant_of(struct commit
*commit
, struct commit_list
*with_commit
)
761 while (with_commit
) {
762 struct commit
*other
;
764 other
= with_commit
->item
;
765 with_commit
= with_commit
->next
;
766 if (in_merge_bases(other
, &commit
, 1))
772 int in_merge_bases(struct commit
*commit
, struct commit
**reference
, int num
)
774 struct commit_list
*bases
, *b
;
778 bases
= get_merge_bases(commit
, *reference
, 1);
781 for (b
= bases
; b
; b
= b
->next
) {
782 if (!hashcmp(commit
->object
.sha1
, b
->item
->object
.sha1
)) {
788 free_commit_list(bases
);
792 struct commit_list
*reduce_heads(struct commit_list
*heads
)
794 struct commit_list
*p
;
795 struct commit_list
*result
= NULL
, **tail
= &result
;
796 struct commit
**other
;
797 size_t num_head
, num_other
;
802 /* Avoid unnecessary reallocations */
803 for (p
= heads
, num_head
= 0; p
; p
= p
->next
)
805 other
= xcalloc(sizeof(*other
), num_head
);
807 /* For each commit, see if it can be reached by others */
808 for (p
= heads
; p
; p
= p
->next
) {
809 struct commit_list
*q
, *base
;
811 /* Do we already have this in the result? */
812 for (q
= result
; q
; q
= q
->next
)
813 if (p
->item
== q
->item
)
819 for (q
= heads
; q
; q
= q
->next
) {
820 if (p
->item
== q
->item
)
822 other
[num_other
++] = q
->item
;
825 base
= get_merge_bases_many(p
->item
, num_other
, other
, 1);
829 * If p->item does not have anything common with other
830 * commits, there won't be any merge base. If it is
831 * reachable from some of the others, p->item will be
832 * the merge base. If its history is connected with
833 * others, but p->item is not reachable by others, we
834 * will get something other than p->item back.
836 if (!base
|| (base
->item
!= p
->item
))
837 tail
= &(commit_list_insert(p
->item
, tail
)->next
);
838 free_commit_list(base
);
844 static const char gpg_sig_header
[] = "gpgsig";
845 static const int gpg_sig_header_len
= sizeof(gpg_sig_header
) - 1;
847 static int do_sign_commit(struct strbuf
*buf
, const char *keyid
)
849 struct strbuf sig
= STRBUF_INIT
;
852 /* find the end of the header */
853 inspos
= strstr(buf
->buf
, "\n\n") - buf
->buf
+ 1;
855 if (!keyid
|| !*keyid
)
856 keyid
= get_signing_key();
857 if (sign_buffer(buf
, &sig
, keyid
)) {
858 strbuf_release(&sig
);
862 for (copypos
= 0; sig
.buf
[copypos
]; ) {
863 const char *bol
= sig
.buf
+ copypos
;
864 const char *eol
= strchrnul(bol
, '\n');
865 int len
= (eol
- bol
) + !!*eol
;
868 strbuf_insert(buf
, inspos
, gpg_sig_header
, gpg_sig_header_len
);
869 inspos
+= gpg_sig_header_len
;
871 strbuf_insert(buf
, inspos
++, " ", 1);
872 strbuf_insert(buf
, inspos
, bol
, len
);
876 strbuf_release(&sig
);
880 int parse_signed_commit(const unsigned char *sha1
,
881 struct strbuf
*payload
, struct strbuf
*signature
)
884 enum object_type type
;
885 char *buffer
= read_sha1_file(sha1
, &type
, &size
);
886 int in_signature
, saw_signature
= -1;
889 if (!buffer
|| type
!= OBJ_COMMIT
)
893 tail
= buffer
+ size
;
896 while (line
< tail
) {
897 const char *sig
= NULL
;
898 char *next
= memchr(line
, '\n', tail
- line
);
900 next
= next
? next
+ 1 : tail
;
901 if (in_signature
&& line
[0] == ' ')
903 else if (!prefixcmp(line
, gpg_sig_header
) &&
904 line
[gpg_sig_header_len
] == ' ')
905 sig
= line
+ gpg_sig_header_len
+ 1;
907 strbuf_add(signature
, sig
, next
- sig
);
912 /* dump the whole remainder of the buffer */
914 strbuf_add(payload
, line
, next
- line
);
921 return saw_signature
;
924 static void handle_signed_tag(struct commit
*parent
, struct commit_extra_header
***tail
)
926 struct merge_remote_desc
*desc
;
927 struct commit_extra_header
*mergetag
;
929 unsigned long size
, len
;
930 enum object_type type
;
932 desc
= merge_remote_util(parent
);
933 if (!desc
|| !desc
->obj
)
935 buf
= read_sha1_file(desc
->obj
->sha1
, &type
, &size
);
936 if (!buf
|| type
!= OBJ_TAG
)
938 len
= parse_signature(buf
, size
);
942 * We could verify this signature and either omit the tag when
943 * it does not validate, but the integrator may not have the
944 * public key of the signer of the tag he is merging, while a
945 * later auditor may have it while auditing, so let's not run
946 * verify-signed-buffer here for now...
948 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
949 * warn("warning: signed tag unverified.");
951 mergetag
= xcalloc(1, sizeof(*mergetag
));
952 mergetag
->key
= xstrdup("mergetag");
953 mergetag
->value
= buf
;
954 mergetag
->len
= size
;
957 *tail
= &mergetag
->next
;
964 void append_merge_tag_headers(struct commit_list
*parents
,
965 struct commit_extra_header
***tail
)
968 struct commit
*parent
= parents
->item
;
969 handle_signed_tag(parent
, tail
);
970 parents
= parents
->next
;
974 static void add_extra_header(struct strbuf
*buffer
,
975 struct commit_extra_header
*extra
)
977 strbuf_addstr(buffer
, extra
->key
);
979 strbuf_add_lines(buffer
, " ", extra
->value
, extra
->len
);
981 strbuf_addch(buffer
, '\n');
984 struct commit_extra_header
*read_commit_extra_headers(struct commit
*commit
,
985 const char **exclude
)
987 struct commit_extra_header
*extra
= NULL
;
989 enum object_type type
;
990 char *buffer
= read_sha1_file(commit
->object
.sha1
, &type
, &size
);
991 if (buffer
&& type
== OBJ_COMMIT
)
992 extra
= read_commit_extra_header_lines(buffer
, size
, exclude
);
997 static inline int standard_header_field(const char *field
, size_t len
)
999 return ((len
== 4 && !memcmp(field
, "tree ", 5)) ||
1000 (len
== 6 && !memcmp(field
, "parent ", 7)) ||
1001 (len
== 6 && !memcmp(field
, "author ", 7)) ||
1002 (len
== 9 && !memcmp(field
, "committer ", 10)) ||
1003 (len
== 8 && !memcmp(field
, "encoding ", 9)));
1006 static int excluded_header_field(const char *field
, size_t len
, const char **exclude
)
1012 size_t xlen
= strlen(*exclude
);
1014 !memcmp(field
, *exclude
, xlen
) && field
[xlen
] == ' ')
1021 struct commit_extra_header
*read_commit_extra_header_lines(const char *buffer
, size_t size
,
1022 const char **exclude
)
1024 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
, *it
= NULL
;
1025 const char *line
, *next
, *eof
, *eob
;
1026 struct strbuf buf
= STRBUF_INIT
;
1028 for (line
= buffer
, eob
= line
+ size
;
1029 line
< eob
&& *line
!= '\n';
1031 next
= memchr(line
, '\n', eob
- line
);
1032 next
= next
? next
+ 1 : eob
;
1036 strbuf_add(&buf
, line
+ 1, next
- (line
+ 1));
1040 it
->value
= strbuf_detach(&buf
, &it
->len
);
1044 eof
= strchr(line
, ' ');
1048 if (standard_header_field(line
, eof
- line
) ||
1049 excluded_header_field(line
, eof
- line
, exclude
))
1052 it
= xcalloc(1, sizeof(*it
));
1053 it
->key
= xmemdupz(line
, eof
-line
);
1057 strbuf_add(&buf
, eof
+ 1, next
- (eof
+ 1));
1060 it
->value
= strbuf_detach(&buf
, &it
->len
);
1064 void free_commit_extra_headers(struct commit_extra_header
*extra
)
1067 struct commit_extra_header
*next
= extra
->next
;
1075 int commit_tree(const struct strbuf
*msg
, unsigned char *tree
,
1076 struct commit_list
*parents
, unsigned char *ret
,
1077 const char *author
, const char *sign_commit
)
1079 struct commit_extra_header
*extra
= NULL
, **tail
= &extra
;
1082 append_merge_tag_headers(parents
, &tail
);
1083 result
= commit_tree_extended(msg
, tree
, parents
, ret
,
1084 author
, sign_commit
, extra
);
1085 free_commit_extra_headers(extra
);
1089 static const char commit_utf8_warn
[] =
1090 "Warning: commit message does not conform to UTF-8.\n"
1091 "You may want to amend it after fixing the message, or set the config\n"
1092 "variable i18n.commitencoding to the encoding your project uses.\n";
1094 int commit_tree_extended(const struct strbuf
*msg
, unsigned char *tree
,
1095 struct commit_list
*parents
, unsigned char *ret
,
1096 const char *author
, const char *sign_commit
,
1097 struct commit_extra_header
*extra
)
1100 int encoding_is_utf8
;
1101 struct strbuf buffer
;
1103 assert_sha1_type(tree
, OBJ_TREE
);
1105 if (memchr(msg
->buf
, '\0', msg
->len
))
1106 return error("a NUL byte in commit log message not allowed.");
1108 /* Not having i18n.commitencoding is the same as having utf-8 */
1109 encoding_is_utf8
= is_encoding_utf8(git_commit_encoding
);
1111 strbuf_init(&buffer
, 8192); /* should avoid reallocs for the headers */
1112 strbuf_addf(&buffer
, "tree %s\n", sha1_to_hex(tree
));
1115 * NOTE! This ordering means that the same exact tree merged with a
1116 * different order of parents will be a _different_ changeset even
1117 * if everything else stays the same.
1120 struct commit_list
*next
= parents
->next
;
1121 struct commit
*parent
= parents
->item
;
1123 strbuf_addf(&buffer
, "parent %s\n",
1124 sha1_to_hex(parent
->object
.sha1
));
1129 /* Person/date information */
1131 author
= git_author_info(IDENT_ERROR_ON_NO_NAME
);
1132 strbuf_addf(&buffer
, "author %s\n", author
);
1133 strbuf_addf(&buffer
, "committer %s\n", git_committer_info(IDENT_ERROR_ON_NO_NAME
));
1134 if (!encoding_is_utf8
)
1135 strbuf_addf(&buffer
, "encoding %s\n", git_commit_encoding
);
1138 add_extra_header(&buffer
, extra
);
1139 extra
= extra
->next
;
1141 strbuf_addch(&buffer
, '\n');
1143 /* And add the comment */
1144 strbuf_addbuf(&buffer
, msg
);
1146 /* And check the encoding */
1147 if (encoding_is_utf8
&& !is_utf8(buffer
.buf
))
1148 fprintf(stderr
, commit_utf8_warn
);
1150 if (sign_commit
&& do_sign_commit(&buffer
, sign_commit
))
1153 result
= write_sha1_file(buffer
.buf
, buffer
.len
, commit_type
, ret
);
1154 strbuf_release(&buffer
);
1158 struct commit
*get_merge_parent(const char *name
)
1161 struct commit
*commit
;
1162 unsigned char sha1
[20];
1163 if (get_sha1(name
, sha1
))
1165 obj
= parse_object(sha1
);
1166 commit
= (struct commit
*)peel_to_type(name
, 0, obj
, OBJ_COMMIT
);
1167 if (commit
&& !commit
->util
) {
1168 struct merge_remote_desc
*desc
;
1169 desc
= xmalloc(sizeof(*desc
));
1171 desc
->name
= strdup(name
);
1172 commit
->util
= desc
;