blob: 1d08951007bcd9c3722737ef7b4b6ba3ada2f5f5 [file] [log] [blame]
Elijah Newrend812c3b2023-04-11 00:41:56 -07001#include "git-compat-util.h"
Linus Torvalds961784e2005-05-18 16:14:22 -07002#include "tag.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -07003#include "commit.h"
Derrick Stolee177722b2018-04-10 08:56:05 -04004#include "commit-graph.h"
Elijah Newren7ee24e12023-03-21 06:25:57 +00005#include "environment.h"
Elijah Newrenf394e092023-03-21 06:25:54 +00006#include "gettext.h"
Elijah Newren41771fa2023-02-24 00:09:27 +00007#include "hex.h"
Jonathan Nieder6a1a79f2018-05-15 16:42:16 -07008#include "repository.h"
Elijah Newrendabab1d2023-04-11 00:41:49 -07009#include "object-name.h"
Elijah Newrena034e912023-05-16 06:34:06 +000010#include "object-store-ll.h"
Junio C Hamano52883fb2006-12-25 11:48:35 -080011#include "utf8.h"
Junio C Hamano199c45b2007-04-09 02:34:05 -070012#include "diff.h"
13#include "revision.h"
Johannes Schindelina97a7462009-10-09 12:21:57 +020014#include "notes.h"
Stefan Beller14ba97f2018-05-15 14:48:42 -070015#include "alloc.h"
Junio C Hamanoba3c69a2011-10-05 17:23:20 -070016#include "gpg-interface.h"
René Scharfe46905892012-04-01 00:10:39 +020017#include "mergesort.h"
Junio C Hamanoa84b7942013-04-13 11:56:41 -070018#include "commit-slab.h"
Junio C Hamanoda24b102013-06-06 21:58:12 -070019#include "prio-queue.h"
Martin Ågrenbc626922020-12-31 12:56:23 +010020#include "hash-lookup.h"
Brian Malehornd76650b2017-05-15 23:06:49 -070021#include "wt-status.h"
Johannes Schindelinf9f99b32018-04-29 00:44:44 +020022#include "advice.h"
Pratik Karki103148a2018-09-04 15:00:08 -070023#include "refs.h"
Junio C Hamano02931212018-11-02 11:04:55 +090024#include "commit-reach.h"
Elijah Newrene38da482023-03-21 06:26:05 +000025#include "setup.h"
Taylor Blau120ad2b2020-04-30 13:48:50 -060026#include "shallow.h"
Elijah Newrend4a4f922023-04-22 20:17:26 +000027#include "tree.h"
Emily Shafferf4432462021-12-22 04:59:40 +010028#include "hook.h"
Patrick Steinhardt7a5d6042023-10-31 08:16:18 +010029#include "parse.h"
brian m. carlson62060892023-10-01 21:40:13 -050030#include "object-file-convert.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -070031
Junio C Hamano82a75292012-09-15 13:58:15 -070032static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
33
Linus Torvalds60ab26d2005-09-15 14:43:17 -070034int save_commit_buffer = 1;
Ævar Arnfjörð Bjarmasonab628582021-08-23 12:44:02 +020035int no_graft_file_deprecated_advice;
Linus Torvalds60ab26d2005-09-15 14:43:17 -070036
Daniel Barkalow175785e2005-04-18 11:39:48 -070037const char *commit_type = "commit";
38
Stefan Bellerd9a05e72018-06-28 18:22:21 -070039struct commit *lookup_commit_reference_gently(struct repository *r,
Stefan Beller21e1ee82018-06-28 18:21:57 -070040 const struct object_id *oid, int quiet)
Linus Torvalds961784e2005-05-18 16:14:22 -070041{
Stefan Bellerd9a05e72018-06-28 18:22:21 -070042 struct object *obj = deref_tag(r,
43 parse_object(r, oid),
Stefan Beller109cd762018-06-28 18:21:51 -070044 NULL, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070045
46 if (!obj)
47 return NULL;
Abhishek Kumar6da43d92020-06-17 14:44:08 +053048 return object_as_type(obj, OBJ_COMMIT, quiet);
Junio C Hamanof76412e2005-08-21 02:51:10 -070049}
50
Stefan Beller1f6c72f2018-06-28 18:22:22 -070051struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
Junio C Hamanof76412e2005-08-21 02:51:10 -070052{
Stefan Beller1f6c72f2018-06-28 18:22:22 -070053 return lookup_commit_reference_gently(r, oid, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070054}
55
brian m. carlsonbc832662017-05-06 22:10:10 +000056struct commit *lookup_commit_or_die(const struct object_id *oid, const char *ref_name)
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100057{
Stefan Beller2122f672018-06-28 18:21:58 -070058 struct commit *c = lookup_commit_reference(the_repository, oid);
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100059 if (!c)
60 die(_("could not parse %s"), ref_name);
Jeff King9001dc22018-08-28 17:22:48 -040061 if (!oideq(oid, &c->object.oid)) {
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100062 warning(_("%s %s is not a commit!"),
brian m. carlsonbc832662017-05-06 22:10:10 +000063 ref_name, oid_to_hex(oid));
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100064 }
65 return c;
66}
67
Phillip Woodb8dbfd02022-10-17 13:17:40 +000068struct commit *lookup_commit_object(struct repository *r,
69 const struct object_id *oid)
70{
71 struct object *obj = parse_object(r, oid);
72 return obj ? object_as_type(obj, OBJ_COMMIT, 0) : NULL;
73
74}
75
Stefan Bellerbacf1682018-06-28 18:22:10 -070076struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
Daniel Barkalow175785e2005-04-18 11:39:48 -070077{
Jeff Kingd0229ab2019-06-20 03:41:14 -040078 struct object *obj = lookup_object(r, oid);
Jeff Kingd36f51c2014-07-13 02:41:55 -040079 if (!obj)
Jeff Kinga3785092019-06-20 03:41:21 -040080 return create_object(r, oid, alloc_commit_node(r));
Abhishek Kumar6da43d92020-06-17 14:44:08 +053081 return object_as_type(obj, OBJ_COMMIT, 0);
Daniel Barkalow175785e2005-04-18 11:39:48 -070082}
83
Pat Notza6fa5992010-11-02 13:59:07 -060084struct commit *lookup_commit_reference_by_name(const char *name)
85{
brian m. carlson7683e2e2015-03-13 23:39:34 +000086 struct object_id oid;
Pat Notza6fa5992010-11-02 13:59:07 -060087 struct commit *commit;
88
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +020089 if (repo_get_oid_committish(the_repository, name, &oid))
Pat Notza6fa5992010-11-02 13:59:07 -060090 return NULL;
Stefan Beller2122f672018-06-28 18:21:58 -070091 commit = lookup_commit_reference(the_repository, &oid);
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +020092 if (repo_parse_commit(the_repository, commit))
Pat Notza6fa5992010-11-02 13:59:07 -060093 return NULL;
94 return commit;
95}
96
Johannes Schindelindddbad72017-04-26 21:29:31 +020097static timestamp_t parse_commit_date(const char *buf, const char *tail)
Daniel Barkalow175785e2005-04-18 11:39:48 -070098{
Martin Koegler0a617792008-01-19 18:35:23 +010099 const char *dateptr;
Jeff Kingea1615d2023-04-27 04:14:09 -0400100 const char *eol;
Daniel Barkalow175785e2005-04-18 11:39:48 -0700101
Martin Koegler0a617792008-01-19 18:35:23 +0100102 if (buf + 6 >= tail)
103 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -0700104 if (memcmp(buf, "author", 6))
105 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +0100106 while (buf < tail && *buf++ != '\n')
Daniel Barkalow175785e2005-04-18 11:39:48 -0700107 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +0100108 if (buf + 9 >= tail)
109 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -0700110 if (memcmp(buf, "committer", 9))
111 return 0;
Jeff Kingea1615d2023-04-27 04:14:09 -0400112
113 /*
114 * Jump to end-of-line so that we can walk backwards to find the
115 * end-of-email ">". This is more forgiving of malformed cases
116 * because unexpected characters tend to be in the name and email
117 * fields.
118 */
119 eol = memchr(buf, '\n', tail - buf);
120 if (!eol)
Martin Koegler0a617792008-01-19 18:35:23 +0100121 return 0;
Jeff Kingea1615d2023-04-27 04:14:09 -0400122 dateptr = eol;
123 while (dateptr > buf && dateptr[-1] != '>')
124 dateptr--;
Jeff King089d9ad2023-04-27 04:17:15 -0400125 if (dateptr == buf)
Martin Koegler0a617792008-01-19 18:35:23 +0100126 return 0;
Jeff Kingea1615d2023-04-27 04:14:09 -0400127
Jeff King089d9ad2023-04-27 04:17:15 -0400128 /*
129 * Trim leading whitespace, but make sure we have at least one
130 * non-whitespace character, as parse_timestamp() will otherwise walk
131 * right past the newline we found in "eol" when skipping whitespace
132 * itself.
133 *
134 * In theory it would be sufficient to allow any character not matched
135 * by isspace(), but there's a catch: our isspace() does not
136 * necessarily match the behavior of parse_timestamp(), as the latter
137 * is implemented by system routines which match more exotic control
138 * codes, or even locale-dependent sequences.
139 *
140 * Since we expect the timestamp to be a number, we can check for that.
141 * Anything else (e.g., a non-numeric token like "foo") would just
142 * cause parse_timestamp() to return 0 anyway.
143 */
144 while (dateptr < eol && isspace(*dateptr))
145 dateptr++;
146 if (!isdigit(*dateptr) && *dateptr != '-')
147 return 0;
148
149 /*
150 * We know there is at least one digit (or dash), so we'll begin
151 * parsing there and stop at worst case at eol.
Jeff King90ef0f12023-04-27 04:17:24 -0400152 *
153 * Note that we may feed parse_timestamp() extra characters here if the
154 * commit is malformed, and it will parse as far as it can. For
155 * example, "123foo456" would return "123". That might be questionable
156 * (versus returning "0"), but it would help in a hypothetical case
157 * like "123456+0100", where the whitespace from the timezone is
158 * missing. Since such syntactic errors may be baked into history and
159 * hard to correct now, let's err on trying to make our best guess
160 * here, rather than insist on perfect syntax.
Jeff King089d9ad2023-04-27 04:17:15 -0400161 */
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200162 return parse_timestamp(dateptr, NULL, 10);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700163}
164
Jeff King8380dcd2021-01-28 01:20:23 -0500165static const struct object_id *commit_graft_oid_access(size_t index, const void *table)
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400166{
Jeff King8380dcd2021-01-28 01:20:23 -0500167 const struct commit_graft * const *commit_graft_table = table;
Jeff King45ee13b2021-01-28 01:19:42 -0500168 return &commit_graft_table[index]->oid;
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400169}
170
Jeff King98c431b2021-01-28 01:12:35 -0500171int commit_graft_pos(struct repository *r, const struct object_id *oid)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700172{
Jeff King45ee13b2021-01-28 01:19:42 -0500173 return oid_pos(oid, r->parsed_objects->grafts,
174 r->parsed_objects->grafts_nr,
175 commit_graft_oid_access);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700176}
177
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700178static void unparse_commit(struct repository *r, const struct object_id *oid)
179{
180 struct commit *c = lookup_commit(r, oid);
181
182 if (!c->object.parsed)
183 return;
184 free_commit_list(c->parents);
185 c->parents = NULL;
186 c->object.parsed = 0;
187}
188
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700189int register_commit_graft(struct repository *r, struct commit_graft *graft,
190 int ignore_dups)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700191{
Jeff King98c431b2021-01-28 01:12:35 -0500192 int pos = commit_graft_pos(r, &graft->oid);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700193
Junio C Hamano5040f172006-04-06 23:58:51 -0700194 if (0 <= pos) {
195 if (ignore_dups)
196 free(graft);
197 else {
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700198 free(r->parsed_objects->grafts[pos]);
199 r->parsed_objects->grafts[pos] = graft;
Junio C Hamano5040f172006-04-06 23:58:51 -0700200 }
201 return 1;
202 }
203 pos = -pos - 1;
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700204 ALLOC_GROW(r->parsed_objects->grafts,
205 r->parsed_objects->grafts_nr + 1,
206 r->parsed_objects->grafts_alloc);
207 r->parsed_objects->grafts_nr++;
208 if (pos < r->parsed_objects->grafts_nr)
209 memmove(r->parsed_objects->grafts + pos + 1,
210 r->parsed_objects->grafts + pos,
211 (r->parsed_objects->grafts_nr - pos - 1) *
212 sizeof(*r->parsed_objects->grafts));
213 r->parsed_objects->grafts[pos] = graft;
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700214 unparse_commit(r, &graft->oid);
Junio C Hamano5040f172006-04-06 23:58:51 -0700215 return 0;
216}
217
Patryk Obara9a934032017-08-18 20:33:12 +0200218struct commit_graft *read_graft_line(struct strbuf *line)
Junio C Hamano5040f172006-04-06 23:58:51 -0700219{
220 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200221 int i, phase;
222 const char *tail = NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700223 struct commit_graft *graft = NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200224 struct object_id dummy_oid, *oid;
Junio C Hamano5040f172006-04-06 23:58:51 -0700225
Patryk Obara9a934032017-08-18 20:33:12 +0200226 strbuf_rtrim(line);
227 if (!line->len || line->buf[0] == '#')
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700228 return NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200229 /*
230 * phase 0 verifies line, counts hashes in line and allocates graft
231 * phase 1 fills graft
232 */
233 for (phase = 0; phase < 2; phase++) {
234 oid = graft ? &graft->oid : &dummy_oid;
235 if (parse_oid_hex(line->buf, oid, &tail))
Junio C Hamano5040f172006-04-06 23:58:51 -0700236 goto bad_graft_data;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200237 for (i = 0; *tail != '\0'; i++) {
238 oid = graft ? &graft->parent[i] : &dummy_oid;
239 if (!isspace(*tail++) || parse_oid_hex(tail, oid, &tail))
240 goto bad_graft_data;
241 }
242 if (!graft) {
243 graft = xmalloc(st_add(sizeof(*graft),
244 st_mult(sizeof(struct object_id), i)));
245 graft->nr_parent = i;
246 }
Junio C Hamano5040f172006-04-06 23:58:51 -0700247 }
248 return graft;
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100249
250bad_graft_data:
Patryk Obara9a934032017-08-18 20:33:12 +0200251 error("bad graft data: %s", line->buf);
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200252 assert(!graft);
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100253 return NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700254}
255
Brandon Williamsd0e5dd02018-05-17 15:51:49 -0700256static int read_graft_file(struct repository *r, const char *graft_file)
Junio C Hamano5040f172006-04-06 23:58:51 -0700257{
Nguyễn Thái Ngọc Duye9d983f2017-05-03 17:16:50 +0700258 FILE *fp = fopen_or_warn(graft_file, "r");
Johannes Schindeline228c172013-12-27 21:49:57 +0100259 struct strbuf buf = STRBUF_INIT;
Junio C Hamano5040f172006-04-06 23:58:51 -0700260 if (!fp)
261 return -1;
Ævar Arnfjörð Bjarmasonab628582021-08-23 12:44:02 +0200262 if (!no_graft_file_deprecated_advice &&
263 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED))
Johannes Schindelinf9f99b32018-04-29 00:44:44 +0200264 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
265 "and will be removed in a future Git version.\n"
266 "\n"
267 "Please use \"git replace --convert-graft-file\"\n"
268 "to convert the grafts into replace refs.\n"
269 "\n"
270 "Turn this message off by running\n"
271 "\"git config advice.graftFileDeprecated false\""));
Johannes Schindeline228c172013-12-27 21:49:57 +0100272 while (!strbuf_getwholeline(&buf, fp, '\n')) {
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700273 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obara9a934032017-08-18 20:33:12 +0200274 struct commit_graft *graft = read_graft_line(&buf);
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700275 if (!graft)
276 continue;
Brandon Williamsd0e5dd02018-05-17 15:51:49 -0700277 if (register_commit_graft(r, graft, 1))
Johannes Schindeline228c172013-12-27 21:49:57 +0100278 error("duplicate graft data: %s", buf.buf);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700279 }
280 fclose(fp);
Johannes Schindeline228c172013-12-27 21:49:57 +0100281 strbuf_release(&buf);
Junio C Hamano5040f172006-04-06 23:58:51 -0700282 return 0;
283}
284
Derrick Stolee20fd6d52018-08-20 18:24:30 +0000285void prepare_commit_graft(struct repository *r)
Junio C Hamano5040f172006-04-06 23:58:51 -0700286{
Junio C Hamano5040f172006-04-06 23:58:51 -0700287 char *graft_file;
288
Stefan Beller2f6c7672018-05-17 15:51:53 -0700289 if (r->parsed_objects->commit_graft_prepared)
Junio C Hamano5040f172006-04-06 23:58:51 -0700290 return;
Jeff King14a9bd22018-05-31 18:42:53 -0400291 if (!startup_info->have_repository)
292 return;
293
Stefan Beller2f6c7672018-05-17 15:51:53 -0700294 graft_file = get_graft_file(r);
295 read_graft_file(r, graft_file);
Johannes Schindelined09aef2006-10-30 20:09:06 +0100296 /* make sure shallows are read */
Stefan Beller2f6c7672018-05-17 15:51:53 -0700297 is_repository_shallow(r);
298 r->parsed_objects->commit_graft_prepared = 1;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700299}
300
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700301struct commit_graft *lookup_commit_graft(struct repository *r, const struct object_id *oid)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700302{
303 int pos;
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700304 prepare_commit_graft(r);
Jeff King98c431b2021-01-28 01:12:35 -0500305 pos = commit_graft_pos(r, oid);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700306 if (pos < 0)
307 return NULL;
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700308 return r->parsed_objects->grafts[pos];
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700309}
310
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700311int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
Johannes Schindelined09aef2006-10-30 20:09:06 +0100312{
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700313 int i, ret;
Jonathan Nieder6a1a79f2018-05-15 16:42:16 -0700314 for (i = ret = 0; i < the_repository->parsed_objects->grafts_nr && !ret; i++)
315 ret = fn(the_repository->parsed_objects->grafts[i], cb_data);
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700316 return ret;
Johannes Schindelined09aef2006-10-30 20:09:06 +0100317}
318
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700319void reset_commit_grafts(struct repository *r)
320{
321 int i;
322
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700323 for (i = 0; i < r->parsed_objects->grafts_nr; i++) {
324 unparse_commit(r, &r->parsed_objects->grafts[i]->oid);
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700325 free(r->parsed_objects->grafts[i]);
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700326 }
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700327 r->parsed_objects->grafts_nr = 0;
328 r->parsed_objects->commit_graft_prepared = 0;
329}
330
Jeff King8597ea32014-06-10 17:44:13 -0400331struct commit_buffer {
332 void *buffer;
333 unsigned long size;
334};
335define_commit_slab(buffer_slab, struct commit_buffer);
Jeff Kingc1b3c712014-06-10 17:43:02 -0400336
Stefan Beller65ea9d42018-06-28 18:22:15 -0700337struct buffer_slab *allocate_commit_buffer_slab(void)
Jeff King66c28272014-06-10 17:40:14 -0400338{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700339 struct buffer_slab *bs = xmalloc(sizeof(*bs));
340 init_buffer_slab(bs);
341 return bs;
342}
343
344void free_commit_buffer_slab(struct buffer_slab *bs)
345{
346 clear_buffer_slab(bs);
347 free(bs);
348}
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100349
Stefan Beller1a40fc42018-06-28 18:22:16 -0700350void set_commit_buffer(struct repository *r, struct commit *commit, void *buffer, unsigned long size)
Jeff King66c28272014-06-10 17:40:14 -0400351{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700352 struct commit_buffer *v = buffer_slab_at(
Stefan Beller1a40fc42018-06-28 18:22:16 -0700353 r->parsed_objects->buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400354 v->buffer = buffer;
355 v->size = size;
Jeff King66c28272014-06-10 17:40:14 -0400356}
357
Stefan Beller4ff7e5c2018-06-28 18:22:17 -0700358const void *get_cached_commit_buffer(struct repository *r, const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400359{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700360 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller4ff7e5c2018-06-28 18:22:17 -0700361 r->parsed_objects->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700362 if (!v) {
363 if (sizep)
364 *sizep = 0;
365 return NULL;
366 }
Jeff King8597ea32014-06-10 17:44:13 -0400367 if (sizep)
368 *sizep = v->size;
369 return v->buffer;
Jeff King152ff1c2014-06-10 17:40:39 -0400370}
371
Stefan Beller07de3fd2018-11-13 16:12:57 -0800372const void *repo_get_commit_buffer(struct repository *r,
373 const struct commit *commit,
374 unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400375{
Stefan Beller07de3fd2018-11-13 16:12:57 -0800376 const void *ret = get_cached_commit_buffer(r, commit, sizep);
Jeff King152ff1c2014-06-10 17:40:39 -0400377 if (!ret) {
378 enum object_type type;
379 unsigned long size;
Stefan Beller07de3fd2018-11-13 16:12:57 -0800380 ret = repo_read_object_file(r, &commit->object.oid, &type, &size);
Jeff King152ff1c2014-06-10 17:40:39 -0400381 if (!ret)
382 die("cannot read commit object %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000383 oid_to_hex(&commit->object.oid));
Jeff King152ff1c2014-06-10 17:40:39 -0400384 if (type != OBJ_COMMIT)
385 die("expected commit for %s, got %s",
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800386 oid_to_hex(&commit->object.oid), type_name(type));
Jeff King8597ea32014-06-10 17:44:13 -0400387 if (sizep)
388 *sizep = size;
Jeff King152ff1c2014-06-10 17:40:39 -0400389 }
390 return ret;
391}
392
Stefan Beller70315372018-11-13 16:12:58 -0800393void repo_unuse_commit_buffer(struct repository *r,
394 const struct commit *commit,
395 const void *buffer)
Jeff King152ff1c2014-06-10 17:40:39 -0400396{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700397 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller70315372018-11-13 16:12:58 -0800398 r->parsed_objects->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700399 if (!(v && v->buffer == buffer))
Jeff King152ff1c2014-06-10 17:40:39 -0400400 free((void *)buffer);
401}
402
Stefan Beller6a7895f2018-12-14 16:09:40 -0800403void free_commit_buffer(struct parsed_object_pool *pool, struct commit *commit)
Jeff King0fb370d2014-06-12 18:05:37 -0400404{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700405 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller6a7895f2018-12-14 16:09:40 -0800406 pool->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700407 if (v) {
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000408 FREE_AND_NULL(v->buffer);
Junio C Hamano862e7302015-05-14 15:25:52 -0700409 v->size = 0;
410 }
Jeff King0fb370d2014-06-12 18:05:37 -0400411}
412
Nguyễn Thái Ngọc Duya133c402019-04-16 16:33:18 +0700413static inline void set_commit_tree(struct commit *c, struct tree *t)
414{
415 c->maybe_tree = t;
416}
417
Nguyễn Thái Ngọc Duy301b8c72019-04-16 16:33:19 +0700418struct tree *repo_get_commit_tree(struct repository *r,
419 const struct commit *commit)
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000420{
Derrick Stolee7b8a21d2018-04-06 19:09:46 +0000421 if (commit->maybe_tree || !commit->object.parsed)
422 return commit->maybe_tree;
423
Abhishek Kumarc49c82a2020-06-17 14:44:10 +0530424 if (commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
Junio C Hamanoea2dab12019-05-09 00:37:25 +0900425 return get_commit_tree_in_graph(r, commit);
Derrick Stolee7b8a21d2018-04-06 19:09:46 +0000426
Jeff King83487662019-04-09 19:13:20 -0700427 return NULL;
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000428}
429
430struct object_id *get_commit_tree_oid(const struct commit *commit)
431{
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200432 struct tree *tree = repo_get_commit_tree(the_repository, commit);
Taylor Blau806278d2019-09-05 18:04:57 -0400433 return tree ? &tree->object.oid : NULL;
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000434}
435
Stefan Beller6a7895f2018-12-14 16:09:40 -0800436void release_commit_memory(struct parsed_object_pool *pool, struct commit *c)
Stefan Beller14ba97f2018-05-15 14:48:42 -0700437{
Nguyễn Thái Ngọc Duya133c402019-04-16 16:33:18 +0700438 set_commit_tree(c, NULL);
Stefan Beller6a7895f2018-12-14 16:09:40 -0800439 free_commit_buffer(pool, c);
Mike Hommey9784f972019-08-26 11:01:37 +0900440 c->index = 0;
Stefan Beller14ba97f2018-05-15 14:48:42 -0700441 free_commit_list(c->parents);
Stefan Beller14ba97f2018-05-15 14:48:42 -0700442
443 c->object.parsed = 0;
444}
445
Jeff King8597ea32014-06-10 17:44:13 -0400446const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
Jeff King0fb370d2014-06-12 18:05:37 -0400447{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700448 struct commit_buffer *v = buffer_slab_peek(
449 the_repository->parsed_objects->buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400450 void *ret;
451
Junio C Hamano862e7302015-05-14 15:25:52 -0700452 if (!v) {
453 if (sizep)
454 *sizep = 0;
455 return NULL;
456 }
Jeff King8597ea32014-06-10 17:44:13 -0400457 ret = v->buffer;
458 if (sizep)
459 *sizep = v->size;
460
461 v->buffer = NULL;
462 v->size = 0;
Jeff King0fb370d2014-06-12 18:05:37 -0400463 return ret;
464}
465
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700466int parse_commit_buffer(struct repository *r, struct commit *item, const void *buffer, unsigned long size, int check_graph)
Daniel Barkalow175785e2005-04-18 11:39:48 -0700467{
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700468 const char *tail = buffer;
469 const char *bufptr = buffer;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000470 struct object_id parent;
Linus Torvalds6c88be12005-06-20 20:26:03 -0700471 struct commit_list **pptr;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700472 struct commit_graft *graft;
brian m. carlson2770ccb2018-07-16 01:27:56 +0000473 const int tree_entry_len = the_hash_algo->hexsz + 5;
474 const int parent_entry_len = the_hash_algo->hexsz + 7;
Jeff King12736d22019-10-18 00:43:29 -0400475 struct tree *tree;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400476
Daniel Barkalow175785e2005-04-18 11:39:48 -0700477 if (item->object.parsed)
478 return 0;
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200479 /*
480 * Presumably this is leftover from an earlier failed parse;
481 * clear it out in preparation for us re-parsing (we'll hit the
482 * same error, but that's good, since it lets our caller know
483 * the result cannot be trusted.
484 */
485 free_commit_list(item->parents);
486 item->parents = NULL;
Jeff King228c78f2019-10-25 17:20:20 -0400487
Junio C Hamano3b44f152006-06-28 03:51:00 -0700488 tail += size;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000489 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
490 bufptr[tree_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000491 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
brian m. carlson26ea3e72018-05-02 00:25:47 +0000492 if (get_oid_hex(bufptr + 5, &parent) < 0)
Junio C Hamanobd2afde2006-02-22 17:47:10 -0800493 return error("bad tree pointer in commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000494 oid_to_hex(&item->object.oid));
Jeff King12736d22019-10-18 00:43:29 -0400495 tree = lookup_tree(r, &parent);
496 if (!tree)
497 return error("bad tree pointer %s in commit %s",
498 oid_to_hex(&parent),
499 oid_to_hex(&item->object.oid));
500 set_commit_tree(item, tree);
brian m. carlson7683e2e2015-03-13 23:39:34 +0000501 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
Linus Torvalds6c88be12005-06-20 20:26:03 -0700502 pptr = &item->parents;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700503
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700504 graft = lookup_commit_graft(r, &item->object.oid);
Taylor Blauce163642020-07-08 17:10:53 -0400505 if (graft)
506 r->parsed_objects->substituted_parent = 1;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000507 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
Linus Torvaldsf7cc77d2005-07-27 15:12:48 -0700508 struct commit *new_parent;
509
brian m. carlson7683e2e2015-03-13 23:39:34 +0000510 if (tail <= bufptr + parent_entry_len + 1 ||
brian m. carlson26ea3e72018-05-02 00:25:47 +0000511 get_oid_hex(bufptr + 7, &parent) ||
brian m. carlson7683e2e2015-03-13 23:39:34 +0000512 bufptr[parent_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000513 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000514 bufptr += parent_entry_len + 1;
Johannes Schindelin7f3140c2009-07-23 17:33:49 +0200515 /*
516 * The clone is shallow if nr_parent < 0, and we must
517 * not traverse its real parents even when we unhide them.
518 */
René Scharfe3a5f3082023-07-21 14:41:56 +0200519 if (graft && (graft->nr_parent < 0 || !grafts_keep_true_parents))
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700520 continue;
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700521 new_parent = lookup_commit(r, &parent);
Jeff Kingc78fe002019-10-18 00:42:13 -0400522 if (!new_parent)
523 return error("bad parent %s in commit %s",
524 oid_to_hex(&parent),
525 oid_to_hex(&item->object.oid));
526 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700527 }
528 if (graft) {
529 int i;
530 struct commit *new_parent;
531 for (i = 0; i < graft->nr_parent; i++) {
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700532 new_parent = lookup_commit(r,
Stefan Bellerc1f5eb42018-06-28 18:21:59 -0700533 &graft->parent[i]);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700534 if (!new_parent)
Jeff Kingc78fe002019-10-18 00:42:13 -0400535 return error("bad graft parent %s in commit %s",
536 oid_to_hex(&graft->parent[i]),
537 oid_to_hex(&item->object.oid));
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700538 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700539 }
Daniel Barkalow175785e2005-04-18 11:39:48 -0700540 }
Martin Koegler0a617792008-01-19 18:35:23 +0100541 item->date = parse_commit_date(bufptr, tail);
Junio C Hamano27dedf02005-11-16 21:32:44 -0800542
Derrick Stoleee2838d82018-05-01 12:47:13 +0000543 if (check_graph)
Derrick Stoleec7944052019-05-09 07:22:31 -0700544 load_commit_graph_info(r, item);
Derrick Stoleee2838d82018-05-01 12:47:13 +0000545
Jeff King228c78f2019-10-25 17:20:20 -0400546 item->object.parsed = 1;
Daniel Barkalow175785e2005-04-18 11:39:48 -0700547 return 0;
548}
549
Stefan Beller9e5252a2018-11-13 16:12:50 -0800550int repo_parse_commit_internal(struct repository *r,
551 struct commit *item,
552 int quiet_on_missing,
553 int use_commit_graph)
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400554{
Nicolas Pitre21666f12007-02-26 14:55:59 -0500555 enum object_type type;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400556 void *buffer;
557 unsigned long size;
Jonathan Tan7e2ad1c2022-12-14 11:17:43 -0800558 struct object_info oi = {
559 .typep = &type,
560 .sizep = &size,
561 .contentp = &buffer,
562 };
563 /*
564 * Git does not support partial clones that exclude commits, so set
565 * OBJECT_INFO_SKIP_FETCH_OBJECT to fail fast when an object is missing.
566 */
567 int flags = OBJECT_INFO_LOOKUP_REPLACE | OBJECT_INFO_SKIP_FETCH_OBJECT |
568 OBJECT_INFO_DIE_IF_CORRUPT;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400569 int ret;
570
Martin Koegler9786f682008-02-18 21:48:02 +0100571 if (!item)
572 return -1;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400573 if (item->object.parsed)
574 return 0;
Patrick Steinhardt7a5d6042023-10-31 08:16:18 +0100575 if (use_commit_graph && parse_commit_in_graph(r, item)) {
576 static int commit_graph_paranoia = -1;
577
578 if (commit_graph_paranoia == -1)
Patrick Steinhardtb1df3b32023-11-24 12:08:21 +0100579 commit_graph_paranoia = git_env_bool(GIT_COMMIT_GRAPH_PARANOIA, 0);
Patrick Steinhardt7a5d6042023-10-31 08:16:18 +0100580
581 if (commit_graph_paranoia && !has_object(r, &item->object.oid, 0)) {
582 unparse_commit(r, &item->object.oid);
583 return quiet_on_missing ? -1 :
584 error(_("commit %s exists in commit-graph but not in the object database"),
585 oid_to_hex(&item->object.oid));
586 }
587
Derrick Stolee177722b2018-04-10 08:56:05 -0400588 return 0;
Patrick Steinhardt7a5d6042023-10-31 08:16:18 +0100589 }
Jonathan Tan7e2ad1c2022-12-14 11:17:43 -0800590
591 if (oid_object_info_extended(r, &item->object.oid, &oi, flags) < 0)
Jeff King9cc2b072015-06-01 05:56:26 -0400592 return quiet_on_missing ? -1 :
593 error("Could not read %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000594 oid_to_hex(&item->object.oid));
Nicolas Pitre21666f12007-02-26 14:55:59 -0500595 if (type != OBJ_COMMIT) {
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400596 free(buffer);
597 return error("Object %s not a commit",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000598 oid_to_hex(&item->object.oid));
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400599 }
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400600
Stefan Beller9e5252a2018-11-13 16:12:50 -0800601 ret = parse_commit_buffer(r, item, buffer, size, 0);
Linus Torvalds60ab26d2005-09-15 14:43:17 -0700602 if (save_commit_buffer && !ret) {
Stefan Beller9e5252a2018-11-13 16:12:50 -0800603 set_commit_buffer(r, item, buffer, size);
Linus Torvalds3ff1fbb2005-05-25 18:27:14 -0700604 return 0;
605 }
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400606 free(buffer);
607 return ret;
608}
609
Stefan Beller9e5252a2018-11-13 16:12:50 -0800610int repo_parse_commit_gently(struct repository *r,
611 struct commit *item, int quiet_on_missing)
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400612{
Stefan Beller9e5252a2018-11-13 16:12:50 -0800613 return repo_parse_commit_internal(r, item, quiet_on_missing, 1);
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400614}
615
Jeff King7059dcc2013-10-24 04:52:36 -0400616void parse_commit_or_die(struct commit *item)
617{
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200618 if (repo_parse_commit(the_repository, item))
Jeff King7059dcc2013-10-24 04:52:36 -0400619 die("unable to parse commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000620 item ? oid_to_hex(&item->object.oid) : "(null)");
Jeff King7059dcc2013-10-24 04:52:36 -0400621}
622
Christian Couder11af2aa2010-07-22 15:18:30 +0200623int find_commit_subject(const char *commit_buffer, const char **subject)
624{
625 const char *eol;
626 const char *p = commit_buffer;
627
628 while (*p && (*p != '\n' || p[1] != '\n'))
629 p++;
630 if (*p) {
Johannes Schindelin4e1b06d2016-06-22 22:20:20 +0200631 p = skip_blank_lines(p + 2);
Junio C Hamano9c9b03b2017-01-27 18:01:41 -0800632 eol = strchrnul(p, '\n');
Christian Couder11af2aa2010-07-22 15:18:30 +0200633 } else
634 eol = p;
635
636 *subject = p;
637
638 return eol - p;
639}
640
Charvi Mendiratta6e0e2882021-03-15 13:24:31 +0530641size_t commit_subject_length(const char *body)
642{
643 const char *p = body;
644 while (*p) {
645 const char *next = skip_blank_lines(p);
646 if (next != p)
647 break;
648 p = strchrnul(p, '\n');
649 if (*p)
650 p++;
651 }
652 return p - body;
653}
654
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700655struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700656{
Christopher Li812666c2005-04-26 12:00:58 -0700657 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700658 new_list->item = item;
659 new_list->next = *list_p;
660 *list_p = new_list;
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700661 return new_list;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700662}
663
Derrick Stolee597b2c32020-12-08 17:04:13 -0500664int commit_list_contains(struct commit *item, struct commit_list *list)
665{
666 while (list) {
667 if (list->item == item)
668 return 1;
669 list = list->next;
670 }
671
672 return 0;
673}
674
Miklos Vajna65319472008-06-27 18:21:55 +0200675unsigned commit_list_count(const struct commit_list *l)
676{
677 unsigned c = 0;
678 for (; l; l = l->next )
679 c++;
680 return c;
681}
682
Thomas Rast53d00b32013-07-31 22:13:20 +0200683struct commit_list *copy_commit_list(struct commit_list *list)
684{
685 struct commit_list *head = NULL;
686 struct commit_list **pp = &head;
687 while (list) {
René Scharfecb979db2014-07-10 11:47:47 +0200688 pp = commit_list_append(list->item, pp);
Thomas Rast53d00b32013-07-31 22:13:20 +0200689 list = list->next;
690 }
691 return head;
692}
693
Elijah Newrenb0ca1202020-12-16 22:27:59 +0000694struct commit_list *reverse_commit_list(struct commit_list *list)
695{
696 struct commit_list *next = NULL, *current, *backup;
697 for (current = list; current; current = backup) {
698 backup = current->next;
699 current->next = next;
700 next = current;
701 }
702 return next;
703}
704
Daniel Barkalow175785e2005-04-18 11:39:48 -0700705void free_commit_list(struct commit_list *list)
706{
René Scharfee510ab82015-10-24 18:21:31 +0200707 while (list)
708 pop_commit(&list);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700709}
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700710
Thiago Farina47e44ed2010-11-26 23:58:14 -0200711struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700712{
713 struct commit_list **pp = list;
714 struct commit_list *p;
715 while ((p = *pp) != NULL) {
716 if (p->item->date < item->date) {
717 break;
718 }
719 pp = &p->next;
720 }
Linus Torvaldsf7554942005-07-06 09:31:17 -0700721 return commit_list_insert(item, pp);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700722}
723
René Scharfec0fb5772022-07-16 18:59:05 +0200724static int commit_list_compare_by_date(const struct commit_list *a,
725 const struct commit_list *b)
René Scharfe46905892012-04-01 00:10:39 +0200726{
René Scharfec0fb5772022-07-16 18:59:05 +0200727 timestamp_t a_date = a->item->date;
728 timestamp_t b_date = b->item->date;
René Scharfe46905892012-04-01 00:10:39 +0200729 if (a_date < b_date)
730 return 1;
731 if (a_date > b_date)
732 return -1;
733 return 0;
734}
735
René Scharfec0fb5772022-07-16 18:59:05 +0200736DEFINE_LIST_SORT(static, commit_list_sort, struct commit_list, next);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700737
Thiago Farina47e44ed2010-11-26 23:58:14 -0200738void commit_list_sort_by_date(struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700739{
René Scharfec0fb5772022-07-16 18:59:05 +0200740 commit_list_sort(list, commit_list_compare_by_date);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700741}
742
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700743struct commit *pop_most_recent_commit(struct commit_list **list,
744 unsigned int mark)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700745{
René Scharfee510ab82015-10-24 18:21:31 +0200746 struct commit *ret = pop_commit(list);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700747 struct commit_list *parents = ret->parents;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700748
749 while (parents) {
Linus Torvalds4056c092005-04-23 19:21:28 -0700750 struct commit *commit = parents->item;
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200751 if (!repo_parse_commit(the_repository, commit) && !(commit->object.flags & mark)) {
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700752 commit->object.flags |= mark;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200753 commit_list_insert_by_date(commit, list);
Linus Torvalds4056c092005-04-23 19:21:28 -0700754 }
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700755 parents = parents->next;
756 }
757 return ret;
758}
Linus Torvaldse3bc7a32005-06-01 08:34:23 -0700759
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700760static void clear_commit_marks_1(struct commit_list **plist,
761 struct commit *commit, unsigned int mark)
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800762{
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100763 while (commit) {
764 struct commit_list *parents;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800765
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100766 if (!(mark & commit->object.flags))
767 return;
Junio C Hamano58ecf5c2006-07-04 17:45:22 -0700768
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100769 commit->object.flags &= ~mark;
770
771 parents = commit->parents;
772 if (!parents)
773 return;
774
René Scharfe4cb39fc2022-12-13 07:27:10 +0100775 while ((parents = parents->next)) {
776 if (parents->item->object.flags & mark)
777 commit_list_insert(parents->item, plist);
778 }
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100779
780 commit = commit->parents->item;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800781 }
782}
783
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800784void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700785{
786 struct commit_list *list = NULL;
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800787
788 while (nr--) {
René Scharfe07f7d552017-12-25 18:43:37 +0100789 clear_commit_marks_1(&list, *commit, mark);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800790 commit++;
791 }
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700792 while (list)
793 clear_commit_marks_1(&list, pop_commit(&list), mark);
794}
795
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800796void clear_commit_marks(struct commit *commit, unsigned int mark)
797{
798 clear_commit_marks_many(1, &commit, mark);
799}
800
jon@blackcubes.dyndns.orga3437b82005-06-06 15:39:40 +0000801struct commit *pop_commit(struct commit_list **stack)
802{
803 struct commit_list *top = *stack;
804 struct commit *item = top ? top->item : NULL;
805
806 if (top) {
807 *stack = top->next;
808 free(top);
809 }
810 return item;
811}
812
Jon Seymourab580ac2005-07-07 02:39:34 +1000813/*
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700814 * Topological sort support
815 */
Junio C Hamano66eb3752013-04-12 23:25:49 -0700816
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700817/* count number of children that have not been emitted */
818define_commit_slab(indegree_slab, int);
Jeff King96c4f4a2013-04-09 02:52:56 -0400819
Derrick Stolee18207032018-08-21 20:54:12 +0000820define_commit_slab(author_date_slab, timestamp_t);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700821
Derrick Stolee5284fc52018-11-01 13:46:21 +0000822void record_author_date(struct author_date_slab *author_date,
823 struct commit *commit)
Junio C Hamano81c6b382013-06-07 10:35:54 -0700824{
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200825 const char *buffer = repo_get_commit_buffer(the_repository, commit,
826 NULL);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700827 struct ident_split ident;
Jeff Kingea5517f2014-08-27 03:56:55 -0400828 const char *ident_line;
829 size_t ident_len;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700830 char *date_end;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200831 timestamp_t date;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700832
Jeff Kingea5517f2014-08-27 03:56:55 -0400833 ident_line = find_commit_header(buffer, "author", &ident_len);
834 if (!ident_line)
835 goto fail_exit; /* no author line */
836 if (split_ident_line(&ident, ident_line, ident_len) ||
837 !ident.date_begin || !ident.date_end)
838 goto fail_exit; /* malformed "author" line */
Junio C Hamano81c6b382013-06-07 10:35:54 -0700839
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200840 date = parse_timestamp(ident.date_begin, &date_end, 10);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700841 if (date_end != ident.date_end)
842 goto fail_exit; /* malformed date */
843 *(author_date_slab_at(author_date, commit)) = date;
844
845fail_exit:
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +0200846 repo_unuse_commit_buffer(the_repository, commit, buffer);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700847}
848
Derrick Stolee5284fc52018-11-01 13:46:21 +0000849int compare_commits_by_author_date(const void *a_, const void *b_,
850 void *cb_data)
Junio C Hamano81c6b382013-06-07 10:35:54 -0700851{
852 const struct commit *a = a_, *b = b_;
853 struct author_date_slab *author_date = cb_data;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200854 timestamp_t a_date = *(author_date_slab_at(author_date, a));
855 timestamp_t b_date = *(author_date_slab_at(author_date, b));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700856
857 /* newer commits with larger date first */
858 if (a_date < b_date)
859 return 1;
860 else if (a_date > b_date)
861 return -1;
862 return 0;
863}
864
Jeff King17587122023-02-24 01:39:27 -0500865int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_,
866 void *unused UNUSED)
Derrick Stolee3afc6792018-05-01 12:47:11 +0000867{
868 const struct commit *a = a_, *b = b_;
Abhishek Kumard7f92782021-01-16 18:11:13 +0000869 const timestamp_t generation_a = commit_graph_generation(a),
870 generation_b = commit_graph_generation(b);
Derrick Stolee3afc6792018-05-01 12:47:11 +0000871
872 /* newer commits first */
Abhishek Kumarc752ad02020-06-17 14:44:11 +0530873 if (generation_a < generation_b)
Derrick Stolee3afc6792018-05-01 12:47:11 +0000874 return 1;
Abhishek Kumarc752ad02020-06-17 14:44:11 +0530875 else if (generation_a > generation_b)
Derrick Stolee3afc6792018-05-01 12:47:11 +0000876 return -1;
877
878 /* use date as a heuristic when generations are equal */
879 if (a->date < b->date)
880 return 1;
881 else if (a->date > b->date)
882 return -1;
883 return 0;
884}
885
Jeff King17587122023-02-24 01:39:27 -0500886int compare_commits_by_commit_date(const void *a_, const void *b_,
887 void *unused UNUSED)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700888{
889 const struct commit *a = a_, *b = b_;
890 /* newer commits with larger date first */
891 if (a->date < b->date)
892 return 1;
893 else if (a->date > b->date)
894 return -1;
895 return 0;
896}
897
Jon Seymourab580ac2005-07-07 02:39:34 +1000898/*
899 * Performs an in-place topological sort on the list supplied.
900 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700901void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
Jon Seymourab580ac2005-07-07 02:39:34 +1000902{
Linus Torvalds23c17d42007-11-02 13:32:58 -0700903 struct commit_list *next, *orig = *list;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700904 struct commit_list **pptr;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700905 struct indegree_slab indegree;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700906 struct prio_queue queue;
907 struct commit *commit;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700908 struct author_date_slab author_date;
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100909
Linus Torvalds23c17d42007-11-02 13:32:58 -0700910 if (!orig)
Eric Wong7d6fb372005-12-24 04:12:43 -0800911 return;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700912 *list = NULL;
913
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700914 init_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700915 memset(&queue, '\0', sizeof(queue));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700916
Junio C Hamanoda24b102013-06-06 21:58:12 -0700917 switch (sort_order) {
918 default: /* REV_SORT_IN_GRAPH_ORDER */
919 queue.compare = NULL;
920 break;
921 case REV_SORT_BY_COMMIT_DATE:
922 queue.compare = compare_commits_by_commit_date;
923 break;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700924 case REV_SORT_BY_AUTHOR_DATE:
925 init_author_date_slab(&author_date);
926 queue.compare = compare_commits_by_author_date;
927 queue.cb_data = &author_date;
928 break;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700929 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400930
Linus Torvalds23c17d42007-11-02 13:32:58 -0700931 /* Mark them and clear the indegree */
932 for (next = orig; next; next = next->next) {
933 struct commit *commit = next->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700934 *(indegree_slab_at(&indegree, commit)) = 1;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700935 /* also record the author dates, if needed */
936 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
937 record_author_date(&author_date, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000938 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700939
Jon Seymourab580ac2005-07-07 02:39:34 +1000940 /* update the indegree */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700941 for (next = orig; next; next = next->next) {
Junio C Hamanoda24b102013-06-06 21:58:12 -0700942 struct commit_list *parents = next->item->parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000943 while (parents) {
Linus Torvalds23c17d42007-11-02 13:32:58 -0700944 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700945 int *pi = indegree_slab_at(&indegree, parent);
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100946
Jeff King96c4f4a2013-04-09 02:52:56 -0400947 if (*pi)
948 (*pi)++;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700949 parents = parents->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000950 }
Jon Seymourab580ac2005-07-07 02:39:34 +1000951 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700952
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700953 /*
Pierre Habouzit674d1722007-09-10 12:35:06 +0200954 * find the tips
955 *
956 * tips are nodes not reachable from any other node in the list
957 *
958 * the tips serve as a starting set for the work queue.
959 */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700960 for (next = orig; next; next = next->next) {
961 struct commit *commit = next->item;
Jon Seymourab580ac2005-07-07 02:39:34 +1000962
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700963 if (*(indegree_slab_at(&indegree, commit)) == 1)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700964 prio_queue_put(&queue, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000965 }
Junio C Hamano4c8725f2006-02-15 22:05:33 -0800966
Junio C Hamanoda24b102013-06-06 21:58:12 -0700967 /*
968 * This is unfortunate; the initial tips need to be shown
969 * in the order given from the revision traversal machinery.
970 */
971 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
972 prio_queue_reverse(&queue);
973
974 /* We no longer need the commit list */
975 free_commit_list(orig);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700976
977 pptr = list;
978 *list = NULL;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700979 while ((commit = prio_queue_get(&queue)) != NULL) {
980 struct commit_list *parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000981
Linus Torvalds23c17d42007-11-02 13:32:58 -0700982 for (parents = commit->parents; parents ; parents = parents->next) {
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -0700983 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700984 int *pi = indegree_slab_at(&indegree, parent);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700985
Jeff King96c4f4a2013-04-09 02:52:56 -0400986 if (!*pi)
Linus Torvalds23c17d42007-11-02 13:32:58 -0700987 continue;
988
989 /*
990 * parents are only enqueued for emission
991 * when all their children have been emitted thereby
992 * guaranteeing topological order.
993 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700994 if (--(*pi) == 1)
995 prio_queue_put(&queue, parent);
Jon Seymourab580ac2005-07-07 02:39:34 +1000996 }
997 /*
Junio C Hamanoda24b102013-06-06 21:58:12 -0700998 * all children of commit have already been
999 * emitted. we can emit it now.
Pierre Habouzit674d1722007-09-10 12:35:06 +02001000 */
Junio C Hamanoa84b7942013-04-13 11:56:41 -07001001 *(indegree_slab_at(&indegree, commit)) = 0;
Junio C Hamanoda24b102013-06-06 21:58:12 -07001002
1003 pptr = &commit_list_insert(commit, pptr)->next;
Jon Seymourab580ac2005-07-07 02:39:34 +10001004 }
Jeff King96c4f4a2013-04-09 02:52:56 -04001005
Junio C Hamanoa84b7942013-04-13 11:56:41 -07001006 clear_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -07001007 clear_prio_queue(&queue);
Junio C Hamano81c6b382013-06-07 10:35:54 -07001008 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
1009 clear_author_date_slab(&author_date);
Jon Seymourab580ac2005-07-07 02:39:34 +10001010}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +02001011
Pratik Karki103148a2018-09-04 15:00:08 -07001012struct rev_collect {
1013 struct commit **commit;
1014 int nr;
1015 int alloc;
1016 unsigned int initial : 1;
1017};
1018
1019static void add_one_commit(struct object_id *oid, struct rev_collect *revs)
1020{
1021 struct commit *commit;
1022
1023 if (is_null_oid(oid))
1024 return;
1025
1026 commit = lookup_commit(the_repository, oid);
1027 if (!commit ||
1028 (commit->object.flags & TMP_MARK) ||
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +02001029 repo_parse_commit(the_repository, commit))
Pratik Karki103148a2018-09-04 15:00:08 -07001030 return;
1031
1032 ALLOC_GROW(revs->commit, revs->nr + 1, revs->alloc);
1033 revs->commit[revs->nr++] = commit;
1034 commit->object.flags |= TMP_MARK;
1035}
1036
1037static int collect_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
Ævar Arnfjörð Bjarmason5cf88fd2022-08-25 19:09:48 +02001038 const char *ident UNUSED,
1039 timestamp_t timestamp UNUSED, int tz UNUSED,
1040 const char *message UNUSED, void *cbdata)
Pratik Karki103148a2018-09-04 15:00:08 -07001041{
1042 struct rev_collect *revs = cbdata;
1043
1044 if (revs->initial) {
1045 revs->initial = 0;
1046 add_one_commit(ooid, revs);
1047 }
1048 add_one_commit(noid, revs);
1049 return 0;
1050}
1051
1052struct commit *get_fork_point(const char *refname, struct commit *commit)
1053{
1054 struct object_id oid;
1055 struct rev_collect revs;
Johannes Schindelin53173802024-02-28 09:44:16 +00001056 struct commit_list *bases = NULL;
Pratik Karki103148a2018-09-04 15:00:08 -07001057 int i;
1058 struct commit *ret = NULL;
Junio C Hamanof08132f2019-12-09 10:51:47 -08001059 char *full_refname;
1060
Ævar Arnfjörð Bjarmason12cb1c12023-03-28 15:58:54 +02001061 switch (repo_dwim_ref(the_repository, refname, strlen(refname), &oid,
1062 &full_refname, 0)) {
Junio C Hamanof08132f2019-12-09 10:51:47 -08001063 case 0:
1064 die("No such ref: '%s'", refname);
1065 case 1:
1066 break; /* good */
1067 default:
1068 die("Ambiguous refname: '%s'", refname);
1069 }
Pratik Karki103148a2018-09-04 15:00:08 -07001070
1071 memset(&revs, 0, sizeof(revs));
1072 revs.initial = 1;
Patrick Steinhardt2e5c4752024-05-07 09:11:53 +02001073 refs_for_each_reflog_ent(get_main_ref_store(the_repository),
1074 full_refname, collect_one_reflog_ent, &revs);
Pratik Karki103148a2018-09-04 15:00:08 -07001075
Junio C Hamanof08132f2019-12-09 10:51:47 -08001076 if (!revs.nr)
Pratik Karki103148a2018-09-04 15:00:08 -07001077 add_one_commit(&oid, &revs);
1078
1079 for (i = 0; i < revs.nr; i++)
1080 revs.commit[i]->object.flags &= ~TMP_MARK;
1081
Johannes Schindelin53173802024-02-28 09:44:16 +00001082 if (repo_get_merge_bases_many(the_repository, commit, revs.nr,
1083 revs.commit, &bases) < 0)
1084 exit(128);
Pratik Karki103148a2018-09-04 15:00:08 -07001085
1086 /*
1087 * There should be one and only one merge base, when we found
1088 * a common ancestor among reflog entries.
1089 */
1090 if (!bases || bases->next)
1091 goto cleanup_return;
1092
1093 /* And the found one must be one of the reflog entries */
1094 for (i = 0; i < revs.nr; i++)
1095 if (&bases->item->object == &revs.commit[i]->object)
1096 break; /* found */
1097 if (revs.nr <= i)
1098 goto cleanup_return;
1099
1100 ret = bases->item;
1101
1102cleanup_return:
Ævar Arnfjörð Bjarmason0c10ed12023-02-06 20:08:13 +01001103 free(revs.commit);
Pratik Karki103148a2018-09-04 15:00:08 -07001104 free_commit_list(bases);
Junio C Hamanof08132f2019-12-09 10:51:47 -08001105 free(full_refname);
Pratik Karki103148a2018-09-04 15:00:08 -07001106 return ret;
1107}
1108
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001109/*
1110 * Indexed by hash algorithm identifier.
1111 */
1112static const char *gpg_sig_headers[] = {
1113 NULL,
1114 "gpgsig",
1115 "gpgsig-sha256",
1116};
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001117
Eric W. Biederman6bcc5fa2023-10-01 21:40:15 -05001118int add_header_signature(struct strbuf *buf, struct strbuf *sig, const struct git_hash_algo *algo)
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001119{
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001120 int inspos, copypos;
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001121 const char *eoh;
brian m. carlson62060892023-10-01 21:40:13 -05001122 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algo)];
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001123 int gpg_sig_header_len = strlen(gpg_sig_header);
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001124
1125 /* find the end of the header */
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001126 eoh = strstr(buf->buf, "\n\n");
1127 if (!eoh)
1128 inspos = buf->len;
1129 else
1130 inspos = eoh - buf->buf + 1;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001131
brian m. carlson62060892023-10-01 21:40:13 -05001132 for (copypos = 0; sig->buf[copypos]; ) {
1133 const char *bol = sig->buf + copypos;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001134 const char *eol = strchrnul(bol, '\n');
1135 int len = (eol - bol) + !!*eol;
1136
1137 if (!copypos) {
1138 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1139 inspos += gpg_sig_header_len;
1140 }
René Scharfea91cc7f2020-02-09 14:44:23 +01001141 strbuf_insertstr(buf, inspos++, " ");
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001142 strbuf_insert(buf, inspos, bol, len);
1143 inspos += len;
1144 copypos += len;
1145 }
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001146 return 0;
1147}
1148
brian m. carlson62060892023-10-01 21:40:13 -05001149static int sign_commit_to_strbuf(struct strbuf *sig, struct strbuf *buf, const char *keyid)
1150{
1151 if (!keyid || !*keyid)
1152 keyid = get_signing_key();
1153 if (sign_buffer(buf, sig, keyid))
1154 return -1;
1155 return 0;
1156}
brian m. carlson937032e2021-02-11 02:08:04 +00001157
Jeff King218aa3a2014-06-13 02:32:11 -04001158int parse_signed_commit(const struct commit *commit,
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001159 struct strbuf *payload, struct strbuf *signature,
1160 const struct git_hash_algo *algop)
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001161{
Jeff King218aa3a2014-06-13 02:32:11 -04001162 unsigned long size;
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +02001163 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1164 &size);
brian m. carlson937032e2021-02-11 02:08:04 +00001165 int ret = parse_buffer_signed_by_header(buffer, size, payload, signature, algop);
1166
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +02001167 repo_unuse_commit_buffer(the_repository, commit, buffer);
brian m. carlson937032e2021-02-11 02:08:04 +00001168 return ret;
1169}
1170
1171int 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)
1176{
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001177 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)];
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001180
1181 line = buffer;
1182 tail = buffer + size;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001183 while (line < tail) {
1184 const char *sig = NULL;
Jeff King218aa3a2014-06-13 02:32:11 -04001185 const char *next = memchr(line, '\n', tail - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001186
1187 next = next ? next + 1 : tail;
1188 if (in_signature && line[0] == ' ')
1189 sig = line + 1;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001190 else if (skip_prefix(line, gpg_sig_header, &p) &&
1191 *p == ' ') {
1192 sig = line + strlen(gpg_sig_header) + 1;
1193 other_signature = 0;
1194 }
1195 else if (starts_with(line, "gpgsig"))
1196 other_signature = 1;
1197 else if (other_signature && line[0] != ' ')
1198 other_signature = 0;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001199 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;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001207 if (!other_signature)
1208 strbuf_add(payload, line, next - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001209 in_signature = 0;
1210 }
1211 line = next;
1212 }
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001213 return saw_signature;
1214}
1215
Christian Couder0b05ab62014-07-19 17:01:12 +02001216int remove_signature(struct strbuf *buf)
1217{
1218 const char *line = buf->buf;
1219 const char *tail = buf->buf + buf->len;
1220 int in_signature = 0;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001221 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;
1227
1228 memset(sigs, 0, sizeof(sigs));
Christian Couder0b05ab62014-07-19 17:01:12 +02001229
1230 while (line < tail) {
1231 const char *next = memchr(line, '\n', tail - line);
1232 next = next ? next + 1 : tail;
1233
1234 if (in_signature && line[0] == ' ')
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001235 sigp->end = next;
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001236 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 == ' ') {
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001242 sigp->start = line;
1243 sigp->end = next;
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001244 in_signature = 1;
1245 }
1246 }
Christian Couder0b05ab62014-07-19 17:01:12 +02001247 } else {
1248 if (*line == '\n')
1249 /* dump the whole remainder of the buffer */
1250 next = tail;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001251 if (in_signature && sigp - sigs != ARRAY_SIZE(sigs))
1252 sigp++;
Christian Couder0b05ab62014-07-19 17:01:12 +02001253 in_signature = 0;
1254 }
1255 line = next;
1256 }
1257
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001258 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);
Christian Couder0b05ab62014-07-19 17:01:12 +02001261
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001262 return sigs[0].start != NULL;
Christian Couder0b05ab62014-07-19 17:01:12 +02001263}
1264
Junio C Hamano5231c632011-11-07 16:21:32 -08001265static void handle_signed_tag(struct commit *parent, struct commit_extra_header ***tail)
1266{
1267 struct merge_remote_desc *desc;
1268 struct commit_extra_header *mergetag;
1269 char *buf;
brian m. carlson482c1192021-02-11 02:08:03 +00001270 unsigned long size;
Junio C Hamano5231c632011-11-07 16:21:32 -08001271 enum object_type type;
brian m. carlson482c1192021-02-11 02:08:03 +00001272 struct strbuf payload = STRBUF_INIT;
1273 struct strbuf signature = STRBUF_INIT;
Junio C Hamano5231c632011-11-07 16:21:32 -08001274
1275 desc = merge_remote_util(parent);
1276 if (!desc || !desc->obj)
1277 return;
Ævar Arnfjörð Bjarmasonbc726bd2023-03-28 15:58:50 +02001278 buf = repo_read_object_file(the_repository, &desc->obj->oid, &type,
1279 &size);
Junio C Hamano5231c632011-11-07 16:21:32 -08001280 if (!buf || type != OBJ_TAG)
1281 goto free_return;
brian m. carlson482c1192021-02-11 02:08:03 +00001282 if (!parse_signature(buf, size, &payload, &signature))
Junio C Hamano5231c632011-11-07 16:21:32 -08001283 goto free_return;
1284 /*
1285 * We could verify this signature and either omit the tag when
1286 * it does not validate, but the integrator may not have the
Felipe Contreras0e20b222021-06-15 14:11:10 +00001287 * public key of the signer of the tag being merged, while a
Junio C Hamano5231c632011-11-07 16:21:32 -08001288 * later auditor may have it while auditing, so let's not run
1289 * verify-signed-buffer here for now...
1290 *
1291 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1292 * warn("warning: signed tag unverified.");
1293 */
René Scharfeca56dad2021-03-13 17:17:22 +01001294 CALLOC_ARRAY(mergetag, 1);
Junio C Hamano5231c632011-11-07 16:21:32 -08001295 mergetag->key = xstrdup("mergetag");
1296 mergetag->value = buf;
1297 mergetag->len = size;
1298
1299 **tail = mergetag;
1300 *tail = &mergetag->next;
brian m. carlson482c1192021-02-11 02:08:03 +00001301 strbuf_release(&payload);
1302 strbuf_release(&signature);
Junio C Hamano5231c632011-11-07 16:21:32 -08001303 return;
1304
1305free_return:
1306 free(buf);
1307}
1308
brian m. carlson434060e2015-06-21 23:14:40 +00001309int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001310{
1311 struct strbuf payload = STRBUF_INIT;
1312 struct strbuf signature = STRBUF_INIT;
brian m. carlson434060e2015-06-21 23:14:40 +00001313 int ret = 1;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001314
1315 sigc->result = 'N';
1316
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001317 if (parse_signed_commit(commit, &payload, &signature, the_hash_algo) <= 0)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001318 goto out;
Fabian Stelzer02769432021-12-09 09:52:43 +01001319
Fabian Stelzer6393c952021-12-09 09:52:45 +01001320 sigc->payload_type = SIGNATURE_PAYLOAD_COMMIT;
Fabian Stelzer02769432021-12-09 09:52:43 +01001321 sigc->payload = strbuf_detach(&payload, &sigc->payload_len);
1322 ret = check_signature(sigc, signature.buf, signature.len);
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001323
1324 out:
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001325 strbuf_release(&payload);
1326 strbuf_release(&signature);
brian m. carlson434060e2015-06-21 23:14:40 +00001327
1328 return ret;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001329}
1330
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001331void verify_merge_signature(struct commit *commit, int verbosity,
1332 int check_trust)
Jeff Kingedc4d472018-11-06 02:50:17 -05001333{
1334 char hex[GIT_MAX_HEXSZ + 1];
1335 struct signature_check signature_check;
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001336 int ret;
Jeff Kingedc4d472018-11-06 02:50:17 -05001337 memset(&signature_check, 0, sizeof(signature_check));
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001338
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001339 ret = check_commit_signature(commit, &signature_check);
Jeff Kingedc4d472018-11-06 02:50:17 -05001340
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +02001341 repo_find_unique_abbrev_r(the_repository, hex, &commit->object.oid,
1342 DEFAULT_ABBREV);
Jeff Kingedc4d472018-11-06 02:50:17 -05001343 switch (signature_check.result) {
1344 case 'G':
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001345 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);
Jeff Kingedc4d472018-11-06 02:50:17 -05001348 break;
Jeff Kingedc4d472018-11-06 02:50:17 -05001349 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);
1354 }
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);
1358
1359 signature_check_clear(&signature_check);
1360}
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001361
Junio C Hamano5231c632011-11-07 16:21:32 -08001362void append_merge_tag_headers(struct commit_list *parents,
1363 struct commit_extra_header ***tail)
1364{
1365 while (parents) {
1366 struct commit *parent = parents->item;
1367 handle_signed_tag(parent, tail);
1368 parents = parents->next;
1369 }
1370}
1371
Eric W. Biedermana3e8ae52023-10-01 21:40:14 -05001372static int convert_commit_extra_headers(struct commit_extra_header *orig,
1373 struct commit_extra_header **result)
1374{
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;
1389 }
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);
1396 }
1397 *tail = new;
1398 tail = &new->next;
1399 orig = orig->next;
1400 }
1401 *result = extra;
1402 return 0;
1403}
1404
Junio C Hamano5231c632011-11-07 16:21:32 -08001405static void add_extra_header(struct strbuf *buffer,
1406 struct commit_extra_header *extra)
1407{
1408 strbuf_addstr(buffer, extra->key);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001409 if (extra->len)
1410 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1411 else
1412 strbuf_addch(buffer, '\n');
1413}
1414
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001415struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1416 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001417{
1418 struct commit_extra_header *extra = NULL;
1419 unsigned long size;
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +02001420 const char *buffer = repo_get_commit_buffer(the_repository, commit,
1421 &size);
Jeff King218aa3a2014-06-13 02:32:11 -04001422 extra = read_commit_extra_header_lines(buffer, size, exclude);
Ævar Arnfjörð Bjarmasonecb50912023-03-28 15:58:48 +02001423 repo_unuse_commit_buffer(the_repository, commit, buffer);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001424 return extra;
1425}
1426
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001427int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
Christian Couder063da622014-07-07 08:35:37 +02001428{
1429 struct commit_extra_header *extra, *to_free;
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001430 int res = 0;
Christian Couder063da622014-07-07 08:35:37 +02001431
1432 to_free = read_commit_extra_headers(commit, NULL);
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001433 for (extra = to_free; !res && extra; extra = extra->next) {
Christian Couder063da622014-07-07 08:35:37 +02001434 if (strcmp(extra->key, "mergetag"))
1435 continue; /* not a merge tag */
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001436 res = fn(commit, extra, data);
Christian Couder063da622014-07-07 08:35:37 +02001437 }
1438 free_commit_extra_headers(to_free);
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001439 return res;
Christian Couder063da622014-07-07 08:35:37 +02001440}
1441
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001442static inline int standard_header_field(const char *field, size_t len)
1443{
René Scharfeb0725042017-02-25 20:27:40 +01001444 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)));
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001449}
1450
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001451static int excluded_header_field(const char *field, size_t len, const char **exclude)
1452{
1453 if (!exclude)
1454 return 0;
1455
1456 while (*exclude) {
1457 size_t xlen = strlen(*exclude);
René Scharfeb0725042017-02-25 20:27:40 +01001458 if (len == xlen && !memcmp(field, *exclude, xlen))
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001459 return 1;
1460 exclude++;
1461 }
1462 return 0;
1463}
1464
Junio C Hamano82a75292012-09-15 13:58:15 -07001465static struct commit_extra_header *read_commit_extra_header_lines(
1466 const char *buffer, size_t size,
1467 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001468{
1469 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1470 const char *line, *next, *eof, *eob;
1471 struct strbuf buf = STRBUF_INIT;
1472
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;
1483 }
1484 if (it)
1485 it->value = strbuf_detach(&buf, &it->len);
1486 strbuf_reset(&buf);
1487 it = NULL;
1488
René Scharfe50a01cc2017-02-25 20:21:52 +01001489 eof = memchr(line, ' ', next - line);
1490 if (!eof)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001491 eof = next;
René Scharfeb0725042017-02-25 20:27:40 +01001492 else if (standard_header_field(line, eof - line) ||
1493 excluded_header_field(line, eof - line, exclude))
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001494 continue;
1495
René Scharfeca56dad2021-03-13 17:17:22 +01001496 CALLOC_ARRAY(it, 1);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001497 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));
1502 }
1503 if (it)
1504 it->value = strbuf_detach(&buf, &it->len);
1505 return extra;
Junio C Hamano5231c632011-11-07 16:21:32 -08001506}
1507
1508void free_commit_extra_headers(struct commit_extra_header *extra)
1509{
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;
1516 }
1517}
1518
Patryk Obara5078f342018-01-28 01:13:16 +01001519int commit_tree(const char *msg, size_t msg_len, const struct object_id *tree,
1520 struct commit_list *parents, struct object_id *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001521 const char *author, const char *sign_commit)
Junio C Hamano5231c632011-11-07 16:21:32 -08001522{
1523 struct commit_extra_header *extra = NULL, **tail = &extra;
1524 int result;
1525
1526 append_merge_tag_headers(parents, &tail);
Phillip Woode8cbe212020-08-17 18:40:01 +01001527 result = commit_tree_extended(msg, msg_len, tree, parents, ret, author,
1528 NULL, sign_commit, extra);
Junio C Hamano5231c632011-11-07 16:21:32 -08001529 free_commit_extra_headers(extra);
1530 return result;
1531}
1532
Linus Torvalds08a94a12012-06-28 11:24:14 -07001533static int find_invalid_utf8(const char *buf, int len)
1534{
1535 int offset = 0;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001536 static const unsigned int max_codepoint[] = {
1537 0x7f, 0x7ff, 0xffff, 0x10ffff
1538 };
Linus Torvalds08a94a12012-06-28 11:24:14 -07001539
1540 while (len) {
1541 unsigned char c = *buf++;
1542 int bytes, bad_offset;
brian m. carlson28110d42013-07-04 17:19:43 +00001543 unsigned int codepoint;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001544 unsigned int min_val, max_val;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001545
1546 len--;
1547 offset++;
1548
1549 /* Simple US-ASCII? No worries. */
1550 if (c < 0x80)
1551 continue;
1552
1553 bad_offset = offset-1;
1554
1555 /*
1556 * Count how many more high bits set: that's how
1557 * many more bytes this sequence should have.
1558 */
1559 bytes = 0;
1560 while (c & 0x40) {
1561 c <<= 1;
1562 bytes++;
1563 }
1564
brian m. carlson28110d42013-07-04 17:19:43 +00001565 /*
1566 * Must be between 1 and 3 more bytes. Longer sequences result in
1567 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1568 */
1569 if (bytes < 1 || 3 < bytes)
Linus Torvalds08a94a12012-06-28 11:24:14 -07001570 return bad_offset;
1571
1572 /* Do we *have* that many bytes? */
1573 if (len < bytes)
1574 return bad_offset;
1575
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001576 /*
1577 * Place the encoded bits at the bottom of the value and compute the
1578 * valid range.
1579 */
brian m. carlson28110d42013-07-04 17:19:43 +00001580 codepoint = (c & 0x7f) >> bytes;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001581 min_val = max_codepoint[bytes-1] + 1;
1582 max_val = max_codepoint[bytes];
brian m. carlson28110d42013-07-04 17:19:43 +00001583
Linus Torvalds08a94a12012-06-28 11:24:14 -07001584 offset += bytes;
1585 len -= bytes;
1586
1587 /* And verify that they are good continuation bytes */
1588 do {
brian m. carlson28110d42013-07-04 17:19:43 +00001589 codepoint <<= 6;
1590 codepoint |= *buf & 0x3f;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001591 if ((*buf++ & 0xc0) != 0x80)
1592 return bad_offset;
1593 } while (--bytes);
1594
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001595 /* Reject codepoints that are out of range for the sequence length. */
1596 if (codepoint < min_val || codepoint > max_val)
brian m. carlson28110d42013-07-04 17:19:43 +00001597 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;
Peter Krefting81050ac2013-07-09 12:16:33 +01001601 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
Junio C Hamanodc773a62013-08-05 09:52:28 -07001602 if ((codepoint & 0xfffe) == 0xfffe)
Peter Krefting81050ac2013-07-09 12:16:33 +01001603 return bad_offset;
1604 /* So are anything in the range U+FDD0..U+FDEF. */
1605 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
brian m. carlson28110d42013-07-04 17:19:43 +00001606 return bad_offset;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001607 }
1608 return -1;
1609}
1610
1611/*
1612 * This verifies that the buffer is in proper utf8 format.
1613 *
1614 * If it isn't, it assumes any non-utf8 characters are Latin1,
1615 * and does the conversion.
Linus Torvalds08a94a12012-06-28 11:24:14 -07001616 */
1617static int verify_utf8(struct strbuf *buf)
1618{
1619 int ok = 1;
1620 long pos = 0;
1621
1622 for (;;) {
1623 int bad;
1624 unsigned char c;
1625 unsigned char replace[2];
1626
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);
1634
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;
1640 }
1641}
1642
Jeff King40d52ff2010-04-01 20:05:23 -04001643static const char commit_utf8_warn[] =
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001644N_("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"
Jiang Xinb4eda052022-06-17 18:03:09 +08001646 "variable i18n.commitEncoding to the encoding your project uses.\n");
Jeff King40d52ff2010-04-01 20:05:23 -04001647
brian m. carlson62060892023-10-01 21:40:13 -05001648static 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 struct commit_extra_header *extra)
1653{
1654 int encoding_is_utf8;
1655 size_t i;
1656
1657 /* Not having i18n.commitencoding is the same as having utf-8 */
1658 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1659
1660 strbuf_grow(buffer, 8192); /* should avoid reallocs for the headers */
1661 strbuf_addf(buffer, "tree %s\n", oid_to_hex(tree));
1662
1663 /*
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.
1667 */
1668 for (i = 0; i < parents_len; i++)
1669 strbuf_addf(buffer, "parent %s\n", oid_to_hex(&parents[i]));
1670
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);
1680
1681 while (extra) {
1682 add_extra_header(buffer, extra);
1683 extra = extra->next;
1684 }
1685 strbuf_addch(buffer, '\n');
1686
1687 /* And add the comment */
1688 strbuf_add(buffer, msg, msg_len);
1689}
1690
Jeff King3ffefb52014-06-10 17:36:52 -04001691int commit_tree_extended(const char *msg, size_t msg_len,
Patryk Obara5078f342018-01-28 01:13:16 +01001692 const struct object_id *tree,
1693 struct commit_list *parents, struct object_id *ret,
Phillip Woode8cbe212020-08-17 18:40:01 +01001694 const char *author, const char *committer,
1695 const char *sign_commit,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001696 struct commit_extra_header *extra)
Jeff King40d52ff2010-04-01 20:05:23 -04001697{
brian m. carlson62060892023-10-01 21:40:13 -05001698 struct repository *r = the_repository;
1699 int result = 0;
Jeff King40d52ff2010-04-01 20:05:23 -04001700 int encoding_is_utf8;
brian m. carlson62060892023-10-01 21:40:13 -05001701 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;
1706
1707 /* Not having i18n.commitencoding is the same as having utf-8 */
1708 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
Jeff King40d52ff2010-04-01 20:05:23 -04001709
brian m. carlsone816caa2018-03-12 02:27:42 +00001710 assert_oid_type(tree, OBJ_TREE);
Jeff King40d52ff2010-04-01 20:05:23 -04001711
Jeff King3ffefb52014-06-10 17:36:52 -04001712 if (memchr(msg, '\0', msg_len))
Nguyễn Thái Ngọc Duy37576c12011-12-15 20:47:23 +07001713 return error("a NUL byte in commit log message not allowed.");
1714
brian m. carlson62060892023-10-01 21:40:13 -05001715 nparents = commit_list_count(parents);
1716 CALLOC_ARRAY(parent_buf, nparents);
1717 i = 0;
Jeff King40d52ff2010-04-01 20:05:23 -04001718 while (parents) {
René Scharfee510ab82015-10-24 18:21:31 +02001719 struct commit *parent = pop_commit(&parents);
brian m. carlson62060892023-10-01 21:40:13 -05001720 oidcpy(&parent_buf[i++], &parent->object.oid);
Jeff King40d52ff2010-04-01 20:05:23 -04001721 }
1722
brian m. carlson62060892023-10-01 21:40:13 -05001723 write_commit_tree(&buffer, msg, msg_len, tree, parent_buf, nparents, author, committer, extra);
1724 if (sign_commit && sign_commit_to_strbuf(&sig, &buffer, sign_commit)) {
Rene Scharfee5051462017-08-30 19:49:38 +02001725 result = -1;
1726 goto out;
1727 }
brian m. carlson62060892023-10-01 21:40:13 -05001728 if (r->compat_hash_algo) {
Eric W. Biedermana3e8ae52023-10-01 21:40:14 -05001729 struct commit_extra_header *compat_extra = NULL;
brian m. carlson62060892023-10-01 21:40:13 -05001730 struct object_id mapped_tree;
1731 struct object_id *mapped_parents;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001732
brian m. carlson62060892023-10-01 21:40:13 -05001733 CALLOC_ARRAY(mapped_parents, nparents);
1734
1735 if (repo_oid_to_algop(r, tree, r->compat_hash_algo, &mapped_tree)) {
1736 result = -1;
1737 free(mapped_parents);
1738 goto out;
1739 }
1740 for (i = 0; i < nparents; i++)
1741 if (repo_oid_to_algop(r, &parent_buf[i], r->compat_hash_algo, &mapped_parents[i])) {
1742 result = -1;
1743 free(mapped_parents);
1744 goto out;
1745 }
Eric W. Biedermana3e8ae52023-10-01 21:40:14 -05001746 if (convert_commit_extra_headers(extra, &compat_extra)) {
1747 result = -1;
1748 free(mapped_parents);
1749 goto out;
1750 }
brian m. carlson62060892023-10-01 21:40:13 -05001751 write_commit_tree(&compat_buffer, msg, msg_len, &mapped_tree,
Eric W. Biedermana3e8ae52023-10-01 21:40:14 -05001752 mapped_parents, nparents, author, committer, compat_extra);
1753 free_commit_extra_headers(compat_extra);
brian m. carlson62060892023-10-01 21:40:13 -05001754 free(mapped_parents);
1755
1756 if (sign_commit && sign_commit_to_strbuf(&compat_sig, &compat_buffer, sign_commit)) {
1757 result = -1;
1758 goto out;
1759 }
1760 }
1761
1762 if (sign_commit) {
1763 struct sig_pairs {
1764 struct strbuf *sig;
1765 const struct git_hash_algo *algo;
1766 } bufs [2] = {
1767 { &compat_sig, r->compat_hash_algo },
1768 { &sig, r->hash_algo },
1769 };
1770 int i;
1771
1772 /*
1773 * We write algorithms in the order they were implemented in
1774 * Git to produce a stable hash when multiple algorithms are
1775 * used.
1776 */
1777 if (r->compat_hash_algo && hash_algo_by_ptr(bufs[0].algo) > hash_algo_by_ptr(bufs[1].algo))
1778 SWAP(bufs[0], bufs[1]);
1779
1780 /*
1781 * We traverse each algorithm in order, and apply the signature
1782 * to each buffer.
1783 */
1784 for (i = 0; i < ARRAY_SIZE(bufs); i++) {
1785 if (!bufs[i].algo)
1786 continue;
Eric W. Biederman6bcc5fa2023-10-01 21:40:15 -05001787 add_header_signature(&buffer, bufs[i].sig, bufs[i].algo);
brian m. carlson62060892023-10-01 21:40:13 -05001788 if (r->compat_hash_algo)
Eric W. Biederman6bcc5fa2023-10-01 21:40:15 -05001789 add_header_signature(&compat_buffer, bufs[i].sig, bufs[i].algo);
brian m. carlson62060892023-10-01 21:40:13 -05001790 }
1791 }
1792
1793 /* And check the encoding. */
1794 if (encoding_is_utf8 && (!verify_utf8(&buffer) || !verify_utf8(&compat_buffer)))
1795 fprintf(stderr, _(commit_utf8_warn));
1796
1797 if (r->compat_hash_algo) {
1798 hash_object_file(r->compat_hash_algo, compat_buffer.buf, compat_buffer.len,
1799 OBJ_COMMIT, &compat_oid_buf);
1800 compat_oid = &compat_oid_buf;
1801 }
1802
1803 result = write_object_file_flags(buffer.buf, buffer.len, OBJ_COMMIT,
1804 ret, compat_oid, 0);
Rene Scharfee5051462017-08-30 19:49:38 +02001805out:
brian m. carlson62060892023-10-01 21:40:13 -05001806 free(parent_buf);
Jeff King40d52ff2010-04-01 20:05:23 -04001807 strbuf_release(&buffer);
brian m. carlson62060892023-10-01 21:40:13 -05001808 strbuf_release(&compat_buffer);
1809 strbuf_release(&sig);
1810 strbuf_release(&compat_sig);
Jeff King40d52ff2010-04-01 20:05:23 -04001811 return result;
1812}
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001813
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001814define_commit_slab(merge_desc_slab, struct merge_remote_desc *);
1815static struct merge_desc_slab merge_desc_slab = COMMIT_SLAB_INIT(1, merge_desc_slab);
1816
1817struct merge_remote_desc *merge_remote_util(struct commit *commit)
1818{
1819 return *merge_desc_slab_at(&merge_desc_slab, commit);
1820}
1821
René Scharfebeb518c2016-08-13 14:11:27 +02001822void set_merge_remote_desc(struct commit *commit,
1823 const char *name, struct object *obj)
1824{
1825 struct merge_remote_desc *desc;
René Scharfe5447a762016-08-13 14:21:27 +02001826 FLEX_ALLOC_STR(desc, name, name);
René Scharfebeb518c2016-08-13 14:11:27 +02001827 desc->obj = obj;
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001828 *merge_desc_slab_at(&merge_desc_slab, commit) = desc;
René Scharfebeb518c2016-08-13 14:11:27 +02001829}
1830
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001831struct commit *get_merge_parent(const char *name)
1832{
1833 struct object *obj;
1834 struct commit *commit;
brian m. carlson7683e2e2015-03-13 23:39:34 +00001835 struct object_id oid;
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +02001836 if (repo_get_oid(the_repository, name, &oid))
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001837 return NULL;
Stefan Beller109cd762018-06-28 18:21:51 -07001838 obj = parse_object(the_repository, &oid);
Ævar Arnfjörð Bjarmasond850b7a2023-03-28 15:58:46 +02001839 commit = (struct commit *)repo_peel_to_type(the_repository, name, 0,
1840 obj, OBJ_COMMIT);
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001841 if (commit && !merge_remote_util(commit))
René Scharfebeb518c2016-08-13 14:11:27 +02001842 set_merge_remote_desc(commit, name, obj);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001843 return commit;
1844}
René Scharfe89b5f1d2012-04-25 22:35:27 +02001845
1846/*
1847 * Append a commit to the end of the commit_list.
1848 *
1849 * next starts by pointing to the variable that holds the head of an
1850 * empty commit_list, and is updated to point to the "next" field of
1851 * the last item on the list as new commits are appended.
1852 *
1853 * Usage example:
1854 *
1855 * struct commit_list *list;
1856 * struct commit_list **next = &list;
1857 *
1858 * next = commit_list_append(c1, next);
1859 * next = commit_list_append(c2, next);
1860 * assert(commit_list_count(list) == 2);
1861 * return list;
1862 */
1863struct commit_list **commit_list_append(struct commit *commit,
1864 struct commit_list **next)
1865{
Brandon Williams258c03e2018-02-14 10:59:37 -08001866 struct commit_list *new_commit = xmalloc(sizeof(struct commit_list));
1867 new_commit->item = commit;
1868 *next = new_commit;
1869 new_commit->next = NULL;
1870 return &new_commit->next;
René Scharfe89b5f1d2012-04-25 22:35:27 +02001871}
Nguyễn Thái Ngọc Duyefc7df42012-10-26 22:53:51 +07001872
John Caicfc5cf42022-01-06 20:07:35 +00001873const char *find_header_mem(const char *msg, size_t len,
1874 const char *key, size_t *out_len)
Jeff Kingfe6eb7f2014-08-27 03:56:01 -04001875{
1876 int key_len = strlen(key);
1877 const char *line = msg;
1878
John Caicfc5cf42022-01-06 20:07:35 +00001879 /*
1880 * NEEDSWORK: It's possible for strchrnul() to scan beyond the range
1881 * given by len. However, current callers are safe because they compute
1882 * len by scanning a NUL-terminated block of memory starting at msg.
1883 * Nonetheless, it would be better to ensure the function does not look
1884 * at msg beyond the len provided by the caller.
1885 */
1886 while (line && line < msg + len) {
Jeff Kingfe6eb7f2014-08-27 03:56:01 -04001887 const char *eol = strchrnul(line, '\n');
1888
1889 if (line == eol)
1890 return NULL;
1891
1892 if (eol - line > key_len &&
1893 !strncmp(line, key, key_len) &&
1894 line[key_len] == ' ') {
1895 *out_len = eol - line - key_len - 1;
1896 return line + key_len + 1;
1897 }
1898 line = *eol ? eol + 1 : NULL;
1899 }
1900 return NULL;
1901}
Junio C Hamano0ed8a4e2014-12-22 12:26:23 -08001902
John Caicfc5cf42022-01-06 20:07:35 +00001903const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
1904{
1905 return find_header_mem(msg, strlen(msg), key, out_len);
1906}
Christian Couder8c384582014-11-09 10:23:41 +01001907/*
Jonathan Tan710714a2016-11-02 10:29:17 -07001908 * Inspect the given string and determine the true "end" of the log message, in
Bradley M. Kuhn3abd4a62020-10-19 18:03:55 -07001909 * order to find where to put a new Signed-off-by trailer. Ignored are
Brian Malehornd76650b2017-05-15 23:06:49 -07001910 * trailing comment lines and blank lines. To support "git commit -s
1911 * --amend" on an existing commit, we also ignore "Conflicts:". To
1912 * support "git commit -v", we truncate at cut lines.
Christian Couder8c384582014-11-09 10:23:41 +01001913 *
1914 * Returns the number of bytes from the tail to ignore, to be fed as
1915 * the second parameter to append_signoff().
1916 */
Linus Arver7cb26a12023-10-20 19:01:33 +00001917size_t ignored_log_message_bytes(const char *buf, size_t len)
Christian Couder8c384582014-11-09 10:23:41 +01001918{
Jeff King66e83d92018-08-22 20:50:51 -04001919 size_t boc = 0;
1920 size_t bol = 0;
Christian Couder8c384582014-11-09 10:23:41 +01001921 int in_old_conflicts_block = 0;
Brian Malehornd76650b2017-05-15 23:06:49 -07001922 size_t cutoff = wt_status_locate_end(buf, len);
Christian Couder8c384582014-11-09 10:23:41 +01001923
Brian Malehornd76650b2017-05-15 23:06:49 -07001924 while (bol < cutoff) {
Jonathan Tan710714a2016-11-02 10:29:17 -07001925 const char *next_line = memchr(buf + bol, '\n', len - bol);
Christian Couder8c384582014-11-09 10:23:41 +01001926
Jonathan Tan710714a2016-11-02 10:29:17 -07001927 if (!next_line)
1928 next_line = buf + len;
Christian Couder8c384582014-11-09 10:23:41 +01001929 else
1930 next_line++;
1931
Jeff King2ec225d2024-03-12 05:17:39 -04001932 if (starts_with_mem(buf + bol, cutoff - bol, comment_line_str) ||
1933 buf[bol] == '\n') {
Christian Couder8c384582014-11-09 10:23:41 +01001934 /* is this the first of the run of comments? */
1935 if (!boc)
1936 boc = bol;
1937 /* otherwise, it is just continuing */
Jonathan Tan710714a2016-11-02 10:29:17 -07001938 } else if (starts_with(buf + bol, "Conflicts:\n")) {
Christian Couder8c384582014-11-09 10:23:41 +01001939 in_old_conflicts_block = 1;
1940 if (!boc)
1941 boc = bol;
Jonathan Tan710714a2016-11-02 10:29:17 -07001942 } else if (in_old_conflicts_block && buf[bol] == '\t') {
Christian Couder8c384582014-11-09 10:23:41 +01001943 ; /* a pathname in the conflicts block */
1944 } else if (boc) {
1945 /* the previous was not trailing comment */
1946 boc = 0;
1947 in_old_conflicts_block = 0;
1948 }
Jonathan Tan710714a2016-11-02 10:29:17 -07001949 bol = next_line - buf;
Christian Couder8c384582014-11-09 10:23:41 +01001950 }
Brian Malehornd76650b2017-05-15 23:06:49 -07001951 return boc ? len - boc : len - cutoff;
Christian Couder8c384582014-11-09 10:23:41 +01001952}
Phillip Wood49697cb2019-10-15 10:25:31 +00001953
1954int run_commit_hook(int editor_is_used, const char *index_file,
Ævar Arnfjörð Bjarmasona8cc5942022-03-07 13:33:46 +01001955 int *invoked_hook, const char *name, ...)
Phillip Wood49697cb2019-10-15 10:25:31 +00001956{
Emily Shafferf4432462021-12-22 04:59:40 +01001957 struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT;
Phillip Wood49697cb2019-10-15 10:25:31 +00001958 va_list args;
Emily Shafferf4432462021-12-22 04:59:40 +01001959 const char *arg;
Phillip Wood49697cb2019-10-15 10:25:31 +00001960
Emily Shafferf4432462021-12-22 04:59:40 +01001961 strvec_pushf(&opt.env, "GIT_INDEX_FILE=%s", index_file);
Phillip Wood49697cb2019-10-15 10:25:31 +00001962
1963 /*
1964 * Let the hook know that no editor will be launched.
1965 */
1966 if (!editor_is_used)
Emily Shafferf4432462021-12-22 04:59:40 +01001967 strvec_push(&opt.env, "GIT_EDITOR=:");
Phillip Wood49697cb2019-10-15 10:25:31 +00001968
1969 va_start(args, name);
Emily Shafferf4432462021-12-22 04:59:40 +01001970 while ((arg = va_arg(args, const char *)))
1971 strvec_push(&opt.args, arg);
Phillip Wood49697cb2019-10-15 10:25:31 +00001972 va_end(args);
Phillip Wood49697cb2019-10-15 10:25:31 +00001973
Ævar Arnfjörð Bjarmason4369e3a2022-03-22 00:15:13 +01001974 opt.invoked_hook = invoked_hook;
Emily Shafferf4432462021-12-22 04:59:40 +01001975 return run_hooks_opt(name, &opt);
Phillip Wood49697cb2019-10-15 10:25:31 +00001976}