blob: 1fb1b2ea90c5953eb465d3b108c01f23fb442a32 [file] [log] [blame]
Junio C Hamano8f1d2e62006-01-07 01:33:54 -08001#include "cache.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"
Jonathan Nieder6a1a79f2018-05-15 16:42:16 -07005#include "repository.h"
Stefan Bellercbd53a22018-05-15 16:42:15 -07006#include "object-store.h"
Johannes Schindelined09aef2006-10-30 20:09:06 +01007#include "pkt-line.h"
Junio C Hamano52883fb2006-12-25 11:48:35 -08008#include "utf8.h"
Junio C Hamano199c45b2007-04-09 02:34:05 -07009#include "diff.h"
10#include "revision.h"
Johannes Schindelina97a7462009-10-09 12:21:57 +020011#include "notes.h"
Stefan Beller14ba97f2018-05-15 14:48:42 -070012#include "alloc.h"
Junio C Hamanoba3c69a2011-10-05 17:23:20 -070013#include "gpg-interface.h"
René Scharfe46905892012-04-01 00:10:39 +020014#include "mergesort.h"
Junio C Hamanoa84b7942013-04-13 11:56:41 -070015#include "commit-slab.h"
Junio C Hamanoda24b102013-06-06 21:58:12 -070016#include "prio-queue.h"
Martin Ågrenbc626922020-12-31 12:56:23 +010017#include "hash-lookup.h"
Brian Malehornd76650b2017-05-15 23:06:49 -070018#include "wt-status.h"
Johannes Schindelinf9f99b32018-04-29 00:44:44 +020019#include "advice.h"
Pratik Karki103148a2018-09-04 15:00:08 -070020#include "refs.h"
Junio C Hamano02931212018-11-02 11:04:55 +090021#include "commit-reach.h"
Phillip Wood49697cb2019-10-15 10:25:31 +000022#include "run-command.h"
Taylor Blau120ad2b2020-04-30 13:48:50 -060023#include "shallow.h"
Emily Shafferf4432462021-12-22 04:59:40 +010024#include "hook.h"
Daniel Barkalow175785e2005-04-18 11:39:48 -070025
Junio C Hamano82a75292012-09-15 13:58:15 -070026static struct commit_extra_header *read_commit_extra_header_lines(const char *buf, size_t len, const char **);
27
Linus Torvalds60ab26d2005-09-15 14:43:17 -070028int save_commit_buffer = 1;
Ævar Arnfjörð Bjarmasonab628582021-08-23 12:44:02 +020029int no_graft_file_deprecated_advice;
Linus Torvalds60ab26d2005-09-15 14:43:17 -070030
Daniel Barkalow175785e2005-04-18 11:39:48 -070031const char *commit_type = "commit";
32
Stefan Bellerd9a05e72018-06-28 18:22:21 -070033struct commit *lookup_commit_reference_gently(struct repository *r,
Stefan Beller21e1ee82018-06-28 18:21:57 -070034 const struct object_id *oid, int quiet)
Linus Torvalds961784e2005-05-18 16:14:22 -070035{
Stefan Bellerd9a05e72018-06-28 18:22:21 -070036 struct object *obj = deref_tag(r,
37 parse_object(r, oid),
Stefan Beller109cd762018-06-28 18:21:51 -070038 NULL, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070039
40 if (!obj)
41 return NULL;
Abhishek Kumar6da43d92020-06-17 14:44:08 +053042 return object_as_type(obj, OBJ_COMMIT, quiet);
Junio C Hamanof76412e2005-08-21 02:51:10 -070043}
44
Stefan Beller1f6c72f2018-06-28 18:22:22 -070045struct commit *lookup_commit_reference(struct repository *r, const struct object_id *oid)
Junio C Hamanof76412e2005-08-21 02:51:10 -070046{
Stefan Beller1f6c72f2018-06-28 18:22:22 -070047 return lookup_commit_reference_gently(r, oid, 0);
Linus Torvalds961784e2005-05-18 16:14:22 -070048}
49
brian m. carlsonbc832662017-05-06 22:10:10 +000050struct 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 +100051{
Stefan Beller2122f672018-06-28 18:21:58 -070052 struct commit *c = lookup_commit_reference(the_repository, oid);
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100053 if (!c)
54 die(_("could not parse %s"), ref_name);
Jeff King9001dc22018-08-28 17:22:48 -040055 if (!oideq(oid, &c->object.oid)) {
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100056 warning(_("%s %s is not a commit!"),
brian m. carlsonbc832662017-05-06 22:10:10 +000057 ref_name, oid_to_hex(oid));
Nguyễn Thái Ngọc Duybaf18fc2011-09-17 21:57:45 +100058 }
59 return c;
60}
61
Stefan Bellerbacf1682018-06-28 18:22:10 -070062struct commit *lookup_commit(struct repository *r, const struct object_id *oid)
Daniel Barkalow175785e2005-04-18 11:39:48 -070063{
Jeff Kingd0229ab2019-06-20 03:41:14 -040064 struct object *obj = lookup_object(r, oid);
Jeff Kingd36f51c2014-07-13 02:41:55 -040065 if (!obj)
Jeff Kinga3785092019-06-20 03:41:21 -040066 return create_object(r, oid, alloc_commit_node(r));
Abhishek Kumar6da43d92020-06-17 14:44:08 +053067 return object_as_type(obj, OBJ_COMMIT, 0);
Daniel Barkalow175785e2005-04-18 11:39:48 -070068}
69
Pat Notza6fa5992010-11-02 13:59:07 -060070struct commit *lookup_commit_reference_by_name(const char *name)
71{
brian m. carlson7683e2e2015-03-13 23:39:34 +000072 struct object_id oid;
Pat Notza6fa5992010-11-02 13:59:07 -060073 struct commit *commit;
74
brian m. carlsone82caf32017-07-13 23:49:28 +000075 if (get_oid_committish(name, &oid))
Pat Notza6fa5992010-11-02 13:59:07 -060076 return NULL;
Stefan Beller2122f672018-06-28 18:21:58 -070077 commit = lookup_commit_reference(the_repository, &oid);
Jeff King5e7d4d32013-10-24 04:53:19 -040078 if (parse_commit(commit))
Pat Notza6fa5992010-11-02 13:59:07 -060079 return NULL;
80 return commit;
81}
82
Johannes Schindelindddbad72017-04-26 21:29:31 +020083static timestamp_t parse_commit_date(const char *buf, const char *tail)
Daniel Barkalow175785e2005-04-18 11:39:48 -070084{
Martin Koegler0a617792008-01-19 18:35:23 +010085 const char *dateptr;
Daniel Barkalow175785e2005-04-18 11:39:48 -070086
Martin Koegler0a617792008-01-19 18:35:23 +010087 if (buf + 6 >= tail)
88 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070089 if (memcmp(buf, "author", 6))
90 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010091 while (buf < tail && *buf++ != '\n')
Daniel Barkalow175785e2005-04-18 11:39:48 -070092 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010093 if (buf + 9 >= tail)
94 return 0;
Daniel Barkalow175785e2005-04-18 11:39:48 -070095 if (memcmp(buf, "committer", 9))
96 return 0;
Martin Koegler0a617792008-01-19 18:35:23 +010097 while (buf < tail && *buf++ != '>')
Daniel Barkalow175785e2005-04-18 11:39:48 -070098 /* nada */;
Martin Koegler0a617792008-01-19 18:35:23 +010099 if (buf >= tail)
100 return 0;
101 dateptr = buf;
102 while (buf < tail && *buf++ != '\n')
103 /* nada */;
104 if (buf >= tail)
105 return 0;
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200106 /* dateptr < buf && buf[-1] == '\n', so parsing will stop at buf-1 */
107 return parse_timestamp(dateptr, NULL, 10);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700108}
109
Jeff King8380dcd2021-01-28 01:20:23 -0500110static const struct object_id *commit_graft_oid_access(size_t index, const void *table)
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400111{
Jeff King8380dcd2021-01-28 01:20:23 -0500112 const struct commit_graft * const *commit_graft_table = table;
Jeff King45ee13b2021-01-28 01:19:42 -0500113 return &commit_graft_table[index]->oid;
Dmitry S. Dolzhenko0a9136f2014-02-26 22:49:22 +0400114}
115
Jeff King98c431b2021-01-28 01:12:35 -0500116int commit_graft_pos(struct repository *r, const struct object_id *oid)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700117{
Jeff King45ee13b2021-01-28 01:19:42 -0500118 return oid_pos(oid, r->parsed_objects->grafts,
119 r->parsed_objects->grafts_nr,
120 commit_graft_oid_access);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700121}
122
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700123static void unparse_commit(struct repository *r, const struct object_id *oid)
124{
125 struct commit *c = lookup_commit(r, oid);
126
127 if (!c->object.parsed)
128 return;
129 free_commit_list(c->parents);
130 c->parents = NULL;
131 c->object.parsed = 0;
132}
133
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700134int register_commit_graft(struct repository *r, struct commit_graft *graft,
135 int ignore_dups)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700136{
Jeff King98c431b2021-01-28 01:12:35 -0500137 int pos = commit_graft_pos(r, &graft->oid);
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700138
Junio C Hamano5040f172006-04-06 23:58:51 -0700139 if (0 <= pos) {
140 if (ignore_dups)
141 free(graft);
142 else {
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700143 free(r->parsed_objects->grafts[pos]);
144 r->parsed_objects->grafts[pos] = graft;
Junio C Hamano5040f172006-04-06 23:58:51 -0700145 }
146 return 1;
147 }
148 pos = -pos - 1;
Brandon Williamsa3b78e82018-05-17 15:51:48 -0700149 ALLOC_GROW(r->parsed_objects->grafts,
150 r->parsed_objects->grafts_nr + 1,
151 r->parsed_objects->grafts_alloc);
152 r->parsed_objects->grafts_nr++;
153 if (pos < r->parsed_objects->grafts_nr)
154 memmove(r->parsed_objects->grafts + pos + 1,
155 r->parsed_objects->grafts + pos,
156 (r->parsed_objects->grafts_nr - pos - 1) *
157 sizeof(*r->parsed_objects->grafts));
158 r->parsed_objects->grafts[pos] = graft;
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700159 unparse_commit(r, &graft->oid);
Junio C Hamano5040f172006-04-06 23:58:51 -0700160 return 0;
161}
162
Patryk Obara9a934032017-08-18 20:33:12 +0200163struct commit_graft *read_graft_line(struct strbuf *line)
Junio C Hamano5040f172006-04-06 23:58:51 -0700164{
165 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200166 int i, phase;
167 const char *tail = NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700168 struct commit_graft *graft = NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200169 struct object_id dummy_oid, *oid;
Junio C Hamano5040f172006-04-06 23:58:51 -0700170
Patryk Obara9a934032017-08-18 20:33:12 +0200171 strbuf_rtrim(line);
172 if (!line->len || line->buf[0] == '#')
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700173 return NULL;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200174 /*
175 * phase 0 verifies line, counts hashes in line and allocates graft
176 * phase 1 fills graft
177 */
178 for (phase = 0; phase < 2; phase++) {
179 oid = graft ? &graft->oid : &dummy_oid;
180 if (parse_oid_hex(line->buf, oid, &tail))
Junio C Hamano5040f172006-04-06 23:58:51 -0700181 goto bad_graft_data;
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200182 for (i = 0; *tail != '\0'; i++) {
183 oid = graft ? &graft->parent[i] : &dummy_oid;
184 if (!isspace(*tail++) || parse_oid_hex(tail, oid, &tail))
185 goto bad_graft_data;
186 }
187 if (!graft) {
188 graft = xmalloc(st_add(sizeof(*graft),
189 st_mult(sizeof(struct object_id), i)));
190 graft->nr_parent = i;
191 }
Junio C Hamano5040f172006-04-06 23:58:51 -0700192 }
193 return graft;
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100194
195bad_graft_data:
Patryk Obara9a934032017-08-18 20:33:12 +0200196 error("bad graft data: %s", line->buf);
Patryk Obaracfa5bf12017-08-18 20:33:14 +0200197 assert(!graft);
Ralf Thielowdf5d43b2010-12-01 20:15:59 +0100198 return NULL;
Junio C Hamano5040f172006-04-06 23:58:51 -0700199}
200
Brandon Williamsd0e5dd02018-05-17 15:51:49 -0700201static int read_graft_file(struct repository *r, const char *graft_file)
Junio C Hamano5040f172006-04-06 23:58:51 -0700202{
Nguyễn Thái Ngọc Duye9d983f2017-05-03 17:16:50 +0700203 FILE *fp = fopen_or_warn(graft_file, "r");
Johannes Schindeline228c172013-12-27 21:49:57 +0100204 struct strbuf buf = STRBUF_INIT;
Junio C Hamano5040f172006-04-06 23:58:51 -0700205 if (!fp)
206 return -1;
Ævar Arnfjörð Bjarmasonab628582021-08-23 12:44:02 +0200207 if (!no_graft_file_deprecated_advice &&
208 advice_enabled(ADVICE_GRAFT_FILE_DEPRECATED))
Johannes Schindelinf9f99b32018-04-29 00:44:44 +0200209 advise(_("Support for <GIT_DIR>/info/grafts is deprecated\n"
210 "and will be removed in a future Git version.\n"
211 "\n"
212 "Please use \"git replace --convert-graft-file\"\n"
213 "to convert the grafts into replace refs.\n"
214 "\n"
215 "Turn this message off by running\n"
216 "\"git config advice.graftFileDeprecated false\""));
Johannes Schindeline228c172013-12-27 21:49:57 +0100217 while (!strbuf_getwholeline(&buf, fp, '\n')) {
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700218 /* The format is just "Commit Parent1 Parent2 ...\n" */
Patryk Obara9a934032017-08-18 20:33:12 +0200219 struct commit_graft *graft = read_graft_line(&buf);
Junio C Hamano5bc4ce52006-04-16 14:24:56 -0700220 if (!graft)
221 continue;
Brandon Williamsd0e5dd02018-05-17 15:51:49 -0700222 if (register_commit_graft(r, graft, 1))
Johannes Schindeline228c172013-12-27 21:49:57 +0100223 error("duplicate graft data: %s", buf.buf);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700224 }
225 fclose(fp);
Johannes Schindeline228c172013-12-27 21:49:57 +0100226 strbuf_release(&buf);
Junio C Hamano5040f172006-04-06 23:58:51 -0700227 return 0;
228}
229
Derrick Stolee20fd6d52018-08-20 18:24:30 +0000230void prepare_commit_graft(struct repository *r)
Junio C Hamano5040f172006-04-06 23:58:51 -0700231{
Junio C Hamano5040f172006-04-06 23:58:51 -0700232 char *graft_file;
233
Stefan Beller2f6c7672018-05-17 15:51:53 -0700234 if (r->parsed_objects->commit_graft_prepared)
Junio C Hamano5040f172006-04-06 23:58:51 -0700235 return;
Jeff King14a9bd22018-05-31 18:42:53 -0400236 if (!startup_info->have_repository)
237 return;
238
Stefan Beller2f6c7672018-05-17 15:51:53 -0700239 graft_file = get_graft_file(r);
240 read_graft_file(r, graft_file);
Johannes Schindelined09aef2006-10-30 20:09:06 +0100241 /* make sure shallows are read */
Stefan Beller2f6c7672018-05-17 15:51:53 -0700242 is_repository_shallow(r);
243 r->parsed_objects->commit_graft_prepared = 1;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700244}
245
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700246struct commit_graft *lookup_commit_graft(struct repository *r, const struct object_id *oid)
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700247{
248 int pos;
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700249 prepare_commit_graft(r);
Jeff King98c431b2021-01-28 01:12:35 -0500250 pos = commit_graft_pos(r, oid);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700251 if (pos < 0)
252 return NULL;
Stefan Bellerb9dbddf2018-05-17 15:51:54 -0700253 return r->parsed_objects->grafts[pos];
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700254}
255
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700256int for_each_commit_graft(each_commit_graft_fn fn, void *cb_data)
Johannes Schindelined09aef2006-10-30 20:09:06 +0100257{
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700258 int i, ret;
Jonathan Nieder6a1a79f2018-05-15 16:42:16 -0700259 for (i = ret = 0; i < the_repository->parsed_objects->grafts_nr && !ret; i++)
260 ret = fn(the_repository->parsed_objects->grafts[i], cb_data);
Nguyễn Thái Ngọc Duy09d46642011-08-18 19:29:35 +0700261 return ret;
Johannes Schindelined09aef2006-10-30 20:09:06 +0100262}
263
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700264void reset_commit_grafts(struct repository *r)
265{
266 int i;
267
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700268 for (i = 0; i < r->parsed_objects->grafts_nr; i++) {
269 unparse_commit(r, &r->parsed_objects->grafts[i]->oid);
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700270 free(r->parsed_objects->grafts[i]);
Jonathan Tan4d4e49f2022-06-06 10:54:37 -0700271 }
Jonathan Tan2a69ff02022-03-17 11:24:47 -0700272 r->parsed_objects->grafts_nr = 0;
273 r->parsed_objects->commit_graft_prepared = 0;
274}
275
Jeff King8597ea32014-06-10 17:44:13 -0400276struct commit_buffer {
277 void *buffer;
278 unsigned long size;
279};
280define_commit_slab(buffer_slab, struct commit_buffer);
Jeff Kingc1b3c712014-06-10 17:43:02 -0400281
Stefan Beller65ea9d42018-06-28 18:22:15 -0700282struct buffer_slab *allocate_commit_buffer_slab(void)
Jeff King66c28272014-06-10 17:40:14 -0400283{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700284 struct buffer_slab *bs = xmalloc(sizeof(*bs));
285 init_buffer_slab(bs);
286 return bs;
287}
288
289void free_commit_buffer_slab(struct buffer_slab *bs)
290{
291 clear_buffer_slab(bs);
292 free(bs);
293}
Johannes Schindelinf53514b2006-10-30 20:09:53 +0100294
Stefan Beller1a40fc42018-06-28 18:22:16 -0700295void set_commit_buffer(struct repository *r, struct commit *commit, void *buffer, unsigned long size)
Jeff King66c28272014-06-10 17:40:14 -0400296{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700297 struct commit_buffer *v = buffer_slab_at(
Stefan Beller1a40fc42018-06-28 18:22:16 -0700298 r->parsed_objects->buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400299 v->buffer = buffer;
300 v->size = size;
Jeff King66c28272014-06-10 17:40:14 -0400301}
302
Stefan Beller4ff7e5c2018-06-28 18:22:17 -0700303const void *get_cached_commit_buffer(struct repository *r, const struct commit *commit, unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400304{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700305 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller4ff7e5c2018-06-28 18:22:17 -0700306 r->parsed_objects->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700307 if (!v) {
308 if (sizep)
309 *sizep = 0;
310 return NULL;
311 }
Jeff King8597ea32014-06-10 17:44:13 -0400312 if (sizep)
313 *sizep = v->size;
314 return v->buffer;
Jeff King152ff1c2014-06-10 17:40:39 -0400315}
316
Stefan Beller07de3fd2018-11-13 16:12:57 -0800317const void *repo_get_commit_buffer(struct repository *r,
318 const struct commit *commit,
319 unsigned long *sizep)
Jeff King152ff1c2014-06-10 17:40:39 -0400320{
Stefan Beller07de3fd2018-11-13 16:12:57 -0800321 const void *ret = get_cached_commit_buffer(r, commit, sizep);
Jeff King152ff1c2014-06-10 17:40:39 -0400322 if (!ret) {
323 enum object_type type;
324 unsigned long size;
Stefan Beller07de3fd2018-11-13 16:12:57 -0800325 ret = repo_read_object_file(r, &commit->object.oid, &type, &size);
Jeff King152ff1c2014-06-10 17:40:39 -0400326 if (!ret)
327 die("cannot read commit object %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000328 oid_to_hex(&commit->object.oid));
Jeff King152ff1c2014-06-10 17:40:39 -0400329 if (type != OBJ_COMMIT)
330 die("expected commit for %s, got %s",
Brandon Williamsdebca9d2018-02-14 10:59:24 -0800331 oid_to_hex(&commit->object.oid), type_name(type));
Jeff King8597ea32014-06-10 17:44:13 -0400332 if (sizep)
333 *sizep = size;
Jeff King152ff1c2014-06-10 17:40:39 -0400334 }
335 return ret;
336}
337
Stefan Beller70315372018-11-13 16:12:58 -0800338void repo_unuse_commit_buffer(struct repository *r,
339 const struct commit *commit,
340 const void *buffer)
Jeff King152ff1c2014-06-10 17:40:39 -0400341{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700342 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller70315372018-11-13 16:12:58 -0800343 r->parsed_objects->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700344 if (!(v && v->buffer == buffer))
Jeff King152ff1c2014-06-10 17:40:39 -0400345 free((void *)buffer);
346}
347
Stefan Beller6a7895f2018-12-14 16:09:40 -0800348void free_commit_buffer(struct parsed_object_pool *pool, struct commit *commit)
Jeff King0fb370d2014-06-12 18:05:37 -0400349{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700350 struct commit_buffer *v = buffer_slab_peek(
Stefan Beller6a7895f2018-12-14 16:09:40 -0800351 pool->buffer_slab, commit);
Junio C Hamano862e7302015-05-14 15:25:52 -0700352 if (v) {
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000353 FREE_AND_NULL(v->buffer);
Junio C Hamano862e7302015-05-14 15:25:52 -0700354 v->size = 0;
355 }
Jeff King0fb370d2014-06-12 18:05:37 -0400356}
357
Nguyễn Thái Ngọc Duya133c402019-04-16 16:33:18 +0700358static inline void set_commit_tree(struct commit *c, struct tree *t)
359{
360 c->maybe_tree = t;
361}
362
Nguyễn Thái Ngọc Duy301b8c72019-04-16 16:33:19 +0700363struct tree *repo_get_commit_tree(struct repository *r,
364 const struct commit *commit)
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000365{
Derrick Stolee7b8a21d2018-04-06 19:09:46 +0000366 if (commit->maybe_tree || !commit->object.parsed)
367 return commit->maybe_tree;
368
Abhishek Kumarc49c82a2020-06-17 14:44:10 +0530369 if (commit_graph_position(commit) != COMMIT_NOT_FROM_GRAPH)
Junio C Hamanoea2dab12019-05-09 00:37:25 +0900370 return get_commit_tree_in_graph(r, commit);
Derrick Stolee7b8a21d2018-04-06 19:09:46 +0000371
Jeff King83487662019-04-09 19:13:20 -0700372 return NULL;
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000373}
374
375struct object_id *get_commit_tree_oid(const struct commit *commit)
376{
Taylor Blau806278d2019-09-05 18:04:57 -0400377 struct tree *tree = get_commit_tree(commit);
378 return tree ? &tree->object.oid : NULL;
Derrick Stolee5bb03de2018-04-06 19:09:34 +0000379}
380
Stefan Beller6a7895f2018-12-14 16:09:40 -0800381void release_commit_memory(struct parsed_object_pool *pool, struct commit *c)
Stefan Beller14ba97f2018-05-15 14:48:42 -0700382{
Nguyễn Thái Ngọc Duya133c402019-04-16 16:33:18 +0700383 set_commit_tree(c, NULL);
Stefan Beller6a7895f2018-12-14 16:09:40 -0800384 free_commit_buffer(pool, c);
Mike Hommey9784f972019-08-26 11:01:37 +0900385 c->index = 0;
Stefan Beller14ba97f2018-05-15 14:48:42 -0700386 free_commit_list(c->parents);
Stefan Beller14ba97f2018-05-15 14:48:42 -0700387
388 c->object.parsed = 0;
389}
390
Jeff King8597ea32014-06-10 17:44:13 -0400391const void *detach_commit_buffer(struct commit *commit, unsigned long *sizep)
Jeff King0fb370d2014-06-12 18:05:37 -0400392{
Stefan Beller65ea9d42018-06-28 18:22:15 -0700393 struct commit_buffer *v = buffer_slab_peek(
394 the_repository->parsed_objects->buffer_slab, commit);
Jeff King8597ea32014-06-10 17:44:13 -0400395 void *ret;
396
Junio C Hamano862e7302015-05-14 15:25:52 -0700397 if (!v) {
398 if (sizep)
399 *sizep = 0;
400 return NULL;
401 }
Jeff King8597ea32014-06-10 17:44:13 -0400402 ret = v->buffer;
403 if (sizep)
404 *sizep = v->size;
405
406 v->buffer = NULL;
407 v->size = 0;
Jeff King0fb370d2014-06-12 18:05:37 -0400408 return ret;
409}
410
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700411int 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 -0700412{
Nguyễn Thái Ngọc Duycf7b1ca2011-02-05 17:52:20 +0700413 const char *tail = buffer;
414 const char *bufptr = buffer;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000415 struct object_id parent;
Linus Torvalds6c88be12005-06-20 20:26:03 -0700416 struct commit_list **pptr;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700417 struct commit_graft *graft;
brian m. carlson2770ccb2018-07-16 01:27:56 +0000418 const int tree_entry_len = the_hash_algo->hexsz + 5;
419 const int parent_entry_len = the_hash_algo->hexsz + 7;
Jeff King12736d22019-10-18 00:43:29 -0400420 struct tree *tree;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400421
Daniel Barkalow175785e2005-04-18 11:39:48 -0700422 if (item->object.parsed)
423 return 0;
Ævar Arnfjörð Bjarmasonbf20fe42022-04-13 22:01:34 +0200424 /*
425 * Presumably this is leftover from an earlier failed parse;
426 * clear it out in preparation for us re-parsing (we'll hit the
427 * same error, but that's good, since it lets our caller know
428 * the result cannot be trusted.
429 */
430 free_commit_list(item->parents);
431 item->parents = NULL;
Jeff King228c78f2019-10-25 17:20:20 -0400432
Junio C Hamano3b44f152006-06-28 03:51:00 -0700433 tail += size;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000434 if (tail <= bufptr + tree_entry_len + 1 || memcmp(bufptr, "tree ", 5) ||
435 bufptr[tree_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000436 return error("bogus commit object %s", oid_to_hex(&item->object.oid));
brian m. carlson26ea3e72018-05-02 00:25:47 +0000437 if (get_oid_hex(bufptr + 5, &parent) < 0)
Junio C Hamanobd2afde2006-02-22 17:47:10 -0800438 return error("bad tree pointer in commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000439 oid_to_hex(&item->object.oid));
Jeff King12736d22019-10-18 00:43:29 -0400440 tree = lookup_tree(r, &parent);
441 if (!tree)
442 return error("bad tree pointer %s in commit %s",
443 oid_to_hex(&parent),
444 oid_to_hex(&item->object.oid));
445 set_commit_tree(item, tree);
brian m. carlson7683e2e2015-03-13 23:39:34 +0000446 bufptr += tree_entry_len + 1; /* "tree " + "hex sha1" + "\n" */
Linus Torvalds6c88be12005-06-20 20:26:03 -0700447 pptr = &item->parents;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700448
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700449 graft = lookup_commit_graft(r, &item->object.oid);
Taylor Blauce163642020-07-08 17:10:53 -0400450 if (graft)
451 r->parsed_objects->substituted_parent = 1;
brian m. carlson7683e2e2015-03-13 23:39:34 +0000452 while (bufptr + parent_entry_len < tail && !memcmp(bufptr, "parent ", 7)) {
Linus Torvaldsf7cc77d2005-07-27 15:12:48 -0700453 struct commit *new_parent;
454
brian m. carlson7683e2e2015-03-13 23:39:34 +0000455 if (tail <= bufptr + parent_entry_len + 1 ||
brian m. carlson26ea3e72018-05-02 00:25:47 +0000456 get_oid_hex(bufptr + 7, &parent) ||
brian m. carlson7683e2e2015-03-13 23:39:34 +0000457 bufptr[parent_entry_len] != '\n')
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000458 return error("bad parents in commit %s", oid_to_hex(&item->object.oid));
brian m. carlson7683e2e2015-03-13 23:39:34 +0000459 bufptr += parent_entry_len + 1;
Johannes Schindelin7f3140c2009-07-23 17:33:49 +0200460 /*
461 * The clone is shallow if nr_parent < 0, and we must
462 * not traverse its real parents even when we unhide them.
463 */
464 if (graft && (graft->nr_parent < 0 || grafts_replace_parents))
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700465 continue;
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700466 new_parent = lookup_commit(r, &parent);
Jeff Kingc78fe002019-10-18 00:42:13 -0400467 if (!new_parent)
468 return error("bad parent %s in commit %s",
469 oid_to_hex(&parent),
470 oid_to_hex(&item->object.oid));
471 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700472 }
473 if (graft) {
474 int i;
475 struct commit *new_parent;
476 for (i = 0; i < graft->nr_parent; i++) {
Stefan Bellerfd8030c2018-06-28 18:22:13 -0700477 new_parent = lookup_commit(r,
Stefan Bellerc1f5eb42018-06-28 18:21:59 -0700478 &graft->parent[i]);
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700479 if (!new_parent)
Jeff Kingc78fe002019-10-18 00:42:13 -0400480 return error("bad graft parent %s in commit %s",
481 oid_to_hex(&graft->parent[i]),
482 oid_to_hex(&item->object.oid));
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700483 pptr = &commit_list_insert(new_parent, pptr)->next;
Junio C Hamano5da5c8f2005-07-30 00:58:28 -0700484 }
Daniel Barkalow175785e2005-04-18 11:39:48 -0700485 }
Martin Koegler0a617792008-01-19 18:35:23 +0100486 item->date = parse_commit_date(bufptr, tail);
Junio C Hamano27dedf02005-11-16 21:32:44 -0800487
Derrick Stoleee2838d82018-05-01 12:47:13 +0000488 if (check_graph)
Derrick Stoleec7944052019-05-09 07:22:31 -0700489 load_commit_graph_info(r, item);
Derrick Stoleee2838d82018-05-01 12:47:13 +0000490
Jeff King228c78f2019-10-25 17:20:20 -0400491 item->object.parsed = 1;
Daniel Barkalow175785e2005-04-18 11:39:48 -0700492 return 0;
493}
494
Stefan Beller9e5252a2018-11-13 16:12:50 -0800495int repo_parse_commit_internal(struct repository *r,
496 struct commit *item,
497 int quiet_on_missing,
498 int use_commit_graph)
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400499{
Nicolas Pitre21666f12007-02-26 14:55:59 -0500500 enum object_type type;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400501 void *buffer;
502 unsigned long size;
503 int ret;
504
Martin Koegler9786f682008-02-18 21:48:02 +0100505 if (!item)
506 return -1;
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400507 if (item->object.parsed)
508 return 0;
Stefan Beller9e5252a2018-11-13 16:12:50 -0800509 if (use_commit_graph && parse_commit_in_graph(r, item))
Derrick Stolee177722b2018-04-10 08:56:05 -0400510 return 0;
Stefan Beller9e5252a2018-11-13 16:12:50 -0800511 buffer = repo_read_object_file(r, &item->object.oid, &type, &size);
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400512 if (!buffer)
Jeff King9cc2b072015-06-01 05:56:26 -0400513 return quiet_on_missing ? -1 :
514 error("Could not read %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000515 oid_to_hex(&item->object.oid));
Nicolas Pitre21666f12007-02-26 14:55:59 -0500516 if (type != OBJ_COMMIT) {
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400517 free(buffer);
518 return error("Object %s not a commit",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000519 oid_to_hex(&item->object.oid));
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400520 }
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400521
Stefan Beller9e5252a2018-11-13 16:12:50 -0800522 ret = parse_commit_buffer(r, item, buffer, size, 0);
Linus Torvalds60ab26d2005-09-15 14:43:17 -0700523 if (save_commit_buffer && !ret) {
Stefan Beller9e5252a2018-11-13 16:12:50 -0800524 set_commit_buffer(r, item, buffer, size);
Linus Torvalds3ff1fbb2005-05-25 18:27:14 -0700525 return 0;
526 }
Nicolas Pitrebd2c39f2005-05-06 13:48:34 -0400527 free(buffer);
528 return ret;
529}
530
Stefan Beller9e5252a2018-11-13 16:12:50 -0800531int repo_parse_commit_gently(struct repository *r,
532 struct commit *item, int quiet_on_missing)
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400533{
Stefan Beller9e5252a2018-11-13 16:12:50 -0800534 return repo_parse_commit_internal(r, item, quiet_on_missing, 1);
Derrick Stolee9b19ada2018-06-27 09:24:30 -0400535}
536
Jeff King7059dcc2013-10-24 04:52:36 -0400537void parse_commit_or_die(struct commit *item)
538{
539 if (parse_commit(item))
540 die("unable to parse commit %s",
brian m. carlsonf2fd0762015-11-10 02:22:28 +0000541 item ? oid_to_hex(&item->object.oid) : "(null)");
Jeff King7059dcc2013-10-24 04:52:36 -0400542}
543
Christian Couder11af2aa2010-07-22 15:18:30 +0200544int find_commit_subject(const char *commit_buffer, const char **subject)
545{
546 const char *eol;
547 const char *p = commit_buffer;
548
549 while (*p && (*p != '\n' || p[1] != '\n'))
550 p++;
551 if (*p) {
Johannes Schindelin4e1b06d2016-06-22 22:20:20 +0200552 p = skip_blank_lines(p + 2);
Junio C Hamano9c9b03b2017-01-27 18:01:41 -0800553 eol = strchrnul(p, '\n');
Christian Couder11af2aa2010-07-22 15:18:30 +0200554 } else
555 eol = p;
556
557 *subject = p;
558
559 return eol - p;
560}
561
Charvi Mendiratta6e0e2882021-03-15 13:24:31 +0530562size_t commit_subject_length(const char *body)
563{
564 const char *p = body;
565 while (*p) {
566 const char *next = skip_blank_lines(p);
567 if (next != p)
568 break;
569 p = strchrnul(p, '\n');
570 if (*p)
571 p++;
572 }
573 return p - body;
574}
575
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700576struct commit_list *commit_list_insert(struct commit *item, struct commit_list **list_p)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700577{
Christopher Li812666c2005-04-26 12:00:58 -0700578 struct commit_list *new_list = xmalloc(sizeof(struct commit_list));
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700579 new_list->item = item;
580 new_list->next = *list_p;
581 *list_p = new_list;
Linus Torvaldsac5155e2005-05-30 18:44:02 -0700582 return new_list;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700583}
584
Derrick Stolee597b2c32020-12-08 17:04:13 -0500585int commit_list_contains(struct commit *item, struct commit_list *list)
586{
587 while (list) {
588 if (list->item == item)
589 return 1;
590 list = list->next;
591 }
592
593 return 0;
594}
595
Miklos Vajna65319472008-06-27 18:21:55 +0200596unsigned commit_list_count(const struct commit_list *l)
597{
598 unsigned c = 0;
599 for (; l; l = l->next )
600 c++;
601 return c;
602}
603
Thomas Rast53d00b32013-07-31 22:13:20 +0200604struct commit_list *copy_commit_list(struct commit_list *list)
605{
606 struct commit_list *head = NULL;
607 struct commit_list **pp = &head;
608 while (list) {
René Scharfecb979db2014-07-10 11:47:47 +0200609 pp = commit_list_append(list->item, pp);
Thomas Rast53d00b32013-07-31 22:13:20 +0200610 list = list->next;
611 }
612 return head;
613}
614
Elijah Newrenb0ca1202020-12-16 22:27:59 +0000615struct commit_list *reverse_commit_list(struct commit_list *list)
616{
617 struct commit_list *next = NULL, *current, *backup;
618 for (current = list; current; current = backup) {
619 backup = current->next;
620 current->next = next;
621 next = current;
622 }
623 return next;
624}
625
Daniel Barkalow175785e2005-04-18 11:39:48 -0700626void free_commit_list(struct commit_list *list)
627{
René Scharfee510ab82015-10-24 18:21:31 +0200628 while (list)
629 pop_commit(&list);
Daniel Barkalow175785e2005-04-18 11:39:48 -0700630}
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700631
Thiago Farina47e44ed2010-11-26 23:58:14 -0200632struct commit_list * commit_list_insert_by_date(struct commit *item, struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700633{
634 struct commit_list **pp = list;
635 struct commit_list *p;
636 while ((p = *pp) != NULL) {
637 if (p->item->date < item->date) {
638 break;
639 }
640 pp = &p->next;
641 }
Linus Torvaldsf7554942005-07-06 09:31:17 -0700642 return commit_list_insert(item, pp);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700643}
644
René Scharfe46905892012-04-01 00:10:39 +0200645static int commit_list_compare_by_date(const void *a, const void *b)
646{
Johannes Schindelindddbad72017-04-26 21:29:31 +0200647 timestamp_t a_date = ((const struct commit_list *)a)->item->date;
648 timestamp_t b_date = ((const struct commit_list *)b)->item->date;
René Scharfe46905892012-04-01 00:10:39 +0200649 if (a_date < b_date)
650 return 1;
651 if (a_date > b_date)
652 return -1;
653 return 0;
654}
655
656static void *commit_list_get_next(const void *a)
657{
658 return ((const struct commit_list *)a)->next;
659}
660
661static void commit_list_set_next(void *a, void *next)
662{
663 ((struct commit_list *)a)->next = next;
664}
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700665
Thiago Farina47e44ed2010-11-26 23:58:14 -0200666void commit_list_sort_by_date(struct commit_list **list)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700667{
Junio C Hamano7365c952012-04-17 11:07:01 -0700668 *list = llist_mergesort(*list, commit_list_get_next, commit_list_set_next,
669 commit_list_compare_by_date);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700670}
671
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700672struct commit *pop_most_recent_commit(struct commit_list **list,
673 unsigned int mark)
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700674{
René Scharfee510ab82015-10-24 18:21:31 +0200675 struct commit *ret = pop_commit(list);
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700676 struct commit_list *parents = ret->parents;
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700677
678 while (parents) {
Linus Torvalds4056c092005-04-23 19:21:28 -0700679 struct commit *commit = parents->item;
Martin Koeglerdec38c82008-02-18 21:48:03 +0100680 if (!parse_commit(commit) && !(commit->object.flags & mark)) {
Daniel Barkalow58e28af2005-04-23 20:29:22 -0700681 commit->object.flags |= mark;
Thiago Farina47e44ed2010-11-26 23:58:14 -0200682 commit_list_insert_by_date(commit, list);
Linus Torvalds4056c092005-04-23 19:21:28 -0700683 }
Daniel Barkalowdd97f852005-04-23 18:47:23 -0700684 parents = parents->next;
685 }
686 return ret;
687}
Linus Torvaldse3bc7a32005-06-01 08:34:23 -0700688
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700689static void clear_commit_marks_1(struct commit_list **plist,
690 struct commit *commit, unsigned int mark)
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800691{
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100692 while (commit) {
693 struct commit_list *parents;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800694
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100695 if (!(mark & commit->object.flags))
696 return;
Junio C Hamano58ecf5c2006-07-04 17:45:22 -0700697
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100698 commit->object.flags &= ~mark;
699
700 parents = commit->parents;
701 if (!parents)
702 return;
703
704 while ((parents = parents->next))
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700705 commit_list_insert(parents->item, plist);
Johannes Schindelin60fcc2e2007-10-10 23:14:35 +0100706
707 commit = commit->parents->item;
Junio C Hamanof8f9c732006-01-07 18:52:42 -0800708 }
709}
710
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800711void clear_commit_marks_many(int nr, struct commit **commit, unsigned int mark)
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700712{
713 struct commit_list *list = NULL;
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800714
715 while (nr--) {
René Scharfe07f7d552017-12-25 18:43:37 +0100716 clear_commit_marks_1(&list, *commit, mark);
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800717 commit++;
718 }
Nguyễn Thái Ngọc Duy941ba8d2012-01-14 19:19:53 +0700719 while (list)
720 clear_commit_marks_1(&list, pop_commit(&list), mark);
721}
722
Junio C Hamanoe895cb52013-03-05 11:42:20 -0800723void clear_commit_marks(struct commit *commit, unsigned int mark)
724{
725 clear_commit_marks_many(1, &commit, mark);
726}
727
jon@blackcubes.dyndns.orga3437b82005-06-06 15:39:40 +0000728struct commit *pop_commit(struct commit_list **stack)
729{
730 struct commit_list *top = *stack;
731 struct commit *item = top ? top->item : NULL;
732
733 if (top) {
734 *stack = top->next;
735 free(top);
736 }
737 return item;
738}
739
Jon Seymourab580ac2005-07-07 02:39:34 +1000740/*
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700741 * Topological sort support
742 */
Junio C Hamano66eb3752013-04-12 23:25:49 -0700743
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700744/* count number of children that have not been emitted */
745define_commit_slab(indegree_slab, int);
Jeff King96c4f4a2013-04-09 02:52:56 -0400746
Derrick Stolee18207032018-08-21 20:54:12 +0000747define_commit_slab(author_date_slab, timestamp_t);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700748
Derrick Stolee5284fc52018-11-01 13:46:21 +0000749void record_author_date(struct author_date_slab *author_date,
750 struct commit *commit)
Junio C Hamano81c6b382013-06-07 10:35:54 -0700751{
Jeff King8597ea32014-06-10 17:44:13 -0400752 const char *buffer = get_commit_buffer(commit, NULL);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700753 struct ident_split ident;
Jeff Kingea5517f2014-08-27 03:56:55 -0400754 const char *ident_line;
755 size_t ident_len;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700756 char *date_end;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200757 timestamp_t date;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700758
Jeff Kingea5517f2014-08-27 03:56:55 -0400759 ident_line = find_commit_header(buffer, "author", &ident_len);
760 if (!ident_line)
761 goto fail_exit; /* no author line */
762 if (split_ident_line(&ident, ident_line, ident_len) ||
763 !ident.date_begin || !ident.date_end)
764 goto fail_exit; /* malformed "author" line */
Junio C Hamano81c6b382013-06-07 10:35:54 -0700765
Johannes Schindelin1aeb7e72017-04-21 12:45:44 +0200766 date = parse_timestamp(ident.date_begin, &date_end, 10);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700767 if (date_end != ident.date_end)
768 goto fail_exit; /* malformed date */
769 *(author_date_slab_at(author_date, commit)) = date;
770
771fail_exit:
Jeff Kingba41c1c2014-06-10 17:41:02 -0400772 unuse_commit_buffer(commit, buffer);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700773}
774
Derrick Stolee5284fc52018-11-01 13:46:21 +0000775int compare_commits_by_author_date(const void *a_, const void *b_,
776 void *cb_data)
Junio C Hamano81c6b382013-06-07 10:35:54 -0700777{
778 const struct commit *a = a_, *b = b_;
779 struct author_date_slab *author_date = cb_data;
Johannes Schindelindddbad72017-04-26 21:29:31 +0200780 timestamp_t a_date = *(author_date_slab_at(author_date, a));
781 timestamp_t b_date = *(author_date_slab_at(author_date, b));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700782
783 /* newer commits with larger date first */
784 if (a_date < b_date)
785 return 1;
786 else if (a_date > b_date)
787 return -1;
788 return 0;
789}
790
Derrick Stolee3afc6792018-05-01 12:47:11 +0000791int compare_commits_by_gen_then_commit_date(const void *a_, const void *b_, void *unused)
792{
793 const struct commit *a = a_, *b = b_;
Abhishek Kumard7f92782021-01-16 18:11:13 +0000794 const timestamp_t generation_a = commit_graph_generation(a),
795 generation_b = commit_graph_generation(b);
Derrick Stolee3afc6792018-05-01 12:47:11 +0000796
797 /* newer commits first */
Abhishek Kumarc752ad02020-06-17 14:44:11 +0530798 if (generation_a < generation_b)
Derrick Stolee3afc6792018-05-01 12:47:11 +0000799 return 1;
Abhishek Kumarc752ad02020-06-17 14:44:11 +0530800 else if (generation_a > generation_b)
Derrick Stolee3afc6792018-05-01 12:47:11 +0000801 return -1;
802
803 /* use date as a heuristic when generations are equal */
804 if (a->date < b->date)
805 return 1;
806 else if (a->date > b->date)
807 return -1;
808 return 0;
809}
810
Jeff King727377f2013-07-02 02:21:48 -0400811int compare_commits_by_commit_date(const void *a_, const void *b_, void *unused)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700812{
813 const struct commit *a = a_, *b = b_;
814 /* newer commits with larger date first */
815 if (a->date < b->date)
816 return 1;
817 else if (a->date > b->date)
818 return -1;
819 return 0;
820}
821
Jon Seymourab580ac2005-07-07 02:39:34 +1000822/*
823 * Performs an in-place topological sort on the list supplied.
824 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700825void sort_in_topological_order(struct commit_list **list, enum rev_sort_order sort_order)
Jon Seymourab580ac2005-07-07 02:39:34 +1000826{
Linus Torvalds23c17d42007-11-02 13:32:58 -0700827 struct commit_list *next, *orig = *list;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700828 struct commit_list **pptr;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700829 struct indegree_slab indegree;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700830 struct prio_queue queue;
831 struct commit *commit;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700832 struct author_date_slab author_date;
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100833
Linus Torvalds23c17d42007-11-02 13:32:58 -0700834 if (!orig)
Eric Wong7d6fb372005-12-24 04:12:43 -0800835 return;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700836 *list = NULL;
837
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700838 init_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700839 memset(&queue, '\0', sizeof(queue));
Junio C Hamano81c6b382013-06-07 10:35:54 -0700840
Junio C Hamanoda24b102013-06-06 21:58:12 -0700841 switch (sort_order) {
842 default: /* REV_SORT_IN_GRAPH_ORDER */
843 queue.compare = NULL;
844 break;
845 case REV_SORT_BY_COMMIT_DATE:
846 queue.compare = compare_commits_by_commit_date;
847 break;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700848 case REV_SORT_BY_AUTHOR_DATE:
849 init_author_date_slab(&author_date);
850 queue.compare = compare_commits_by_author_date;
851 queue.cb_data = &author_date;
852 break;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700853 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400854
Linus Torvalds23c17d42007-11-02 13:32:58 -0700855 /* Mark them and clear the indegree */
856 for (next = orig; next; next = next->next) {
857 struct commit *commit = next->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700858 *(indegree_slab_at(&indegree, commit)) = 1;
Junio C Hamano81c6b382013-06-07 10:35:54 -0700859 /* also record the author dates, if needed */
860 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
861 record_author_date(&author_date, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000862 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700863
Jon Seymourab580ac2005-07-07 02:39:34 +1000864 /* update the indegree */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700865 for (next = orig; next; next = next->next) {
Junio C Hamanoda24b102013-06-06 21:58:12 -0700866 struct commit_list *parents = next->item->parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000867 while (parents) {
Linus Torvalds23c17d42007-11-02 13:32:58 -0700868 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700869 int *pi = indegree_slab_at(&indegree, parent);
Fredrik Kuivinen6b6dcfc2006-03-10 10:21:37 +0100870
Jeff King96c4f4a2013-04-09 02:52:56 -0400871 if (*pi)
872 (*pi)++;
Linus Torvalds23c17d42007-11-02 13:32:58 -0700873 parents = parents->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000874 }
Jon Seymourab580ac2005-07-07 02:39:34 +1000875 }
Linus Torvalds23c17d42007-11-02 13:32:58 -0700876
Junio C Hamanoa6080a02007-06-07 00:04:01 -0700877 /*
Pierre Habouzit674d1722007-09-10 12:35:06 +0200878 * find the tips
879 *
880 * tips are nodes not reachable from any other node in the list
881 *
882 * the tips serve as a starting set for the work queue.
883 */
Linus Torvalds23c17d42007-11-02 13:32:58 -0700884 for (next = orig; next; next = next->next) {
885 struct commit *commit = next->item;
Jon Seymourab580ac2005-07-07 02:39:34 +1000886
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700887 if (*(indegree_slab_at(&indegree, commit)) == 1)
Junio C Hamanoda24b102013-06-06 21:58:12 -0700888 prio_queue_put(&queue, commit);
Jon Seymourab580ac2005-07-07 02:39:34 +1000889 }
Junio C Hamano4c8725f2006-02-15 22:05:33 -0800890
Junio C Hamanoda24b102013-06-06 21:58:12 -0700891 /*
892 * This is unfortunate; the initial tips need to be shown
893 * in the order given from the revision traversal machinery.
894 */
895 if (sort_order == REV_SORT_IN_GRAPH_ORDER)
896 prio_queue_reverse(&queue);
897
898 /* We no longer need the commit list */
899 free_commit_list(orig);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700900
901 pptr = list;
902 *list = NULL;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700903 while ((commit = prio_queue_get(&queue)) != NULL) {
904 struct commit_list *parents;
Jon Seymourab580ac2005-07-07 02:39:34 +1000905
Linus Torvalds23c17d42007-11-02 13:32:58 -0700906 for (parents = commit->parents; parents ; parents = parents->next) {
Junio C Hamanocd2b8ae2011-08-25 14:46:52 -0700907 struct commit *parent = parents->item;
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700908 int *pi = indegree_slab_at(&indegree, parent);
Linus Torvalds23c17d42007-11-02 13:32:58 -0700909
Jeff King96c4f4a2013-04-09 02:52:56 -0400910 if (!*pi)
Linus Torvalds23c17d42007-11-02 13:32:58 -0700911 continue;
912
913 /*
914 * parents are only enqueued for emission
915 * when all their children have been emitted thereby
916 * guaranteeing topological order.
917 */
Junio C Hamanoda24b102013-06-06 21:58:12 -0700918 if (--(*pi) == 1)
919 prio_queue_put(&queue, parent);
Jon Seymourab580ac2005-07-07 02:39:34 +1000920 }
921 /*
Junio C Hamanoda24b102013-06-06 21:58:12 -0700922 * all children of commit have already been
923 * emitted. we can emit it now.
Pierre Habouzit674d1722007-09-10 12:35:06 +0200924 */
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700925 *(indegree_slab_at(&indegree, commit)) = 0;
Junio C Hamanoda24b102013-06-06 21:58:12 -0700926
927 pptr = &commit_list_insert(commit, pptr)->next;
Jon Seymourab580ac2005-07-07 02:39:34 +1000928 }
Jeff King96c4f4a2013-04-09 02:52:56 -0400929
Junio C Hamanoa84b7942013-04-13 11:56:41 -0700930 clear_indegree_slab(&indegree);
Junio C Hamanoda24b102013-06-06 21:58:12 -0700931 clear_prio_queue(&queue);
Junio C Hamano81c6b382013-06-07 10:35:54 -0700932 if (sort_order == REV_SORT_BY_AUTHOR_DATE)
933 clear_author_date_slab(&author_date);
Jon Seymourab580ac2005-07-07 02:39:34 +1000934}
Johannes Schindelin7c6f8aa2006-06-29 15:17:32 +0200935
Pratik Karki103148a2018-09-04 15:00:08 -0700936struct rev_collect {
937 struct commit **commit;
938 int nr;
939 int alloc;
940 unsigned int initial : 1;
941};
942
943static void add_one_commit(struct object_id *oid, struct rev_collect *revs)
944{
945 struct commit *commit;
946
947 if (is_null_oid(oid))
948 return;
949
950 commit = lookup_commit(the_repository, oid);
951 if (!commit ||
952 (commit->object.flags & TMP_MARK) ||
953 parse_commit(commit))
954 return;
955
956 ALLOC_GROW(revs->commit, revs->nr + 1, revs->alloc);
957 revs->commit[revs->nr++] = commit;
958 commit->object.flags |= TMP_MARK;
959}
960
961static int collect_one_reflog_ent(struct object_id *ooid, struct object_id *noid,
962 const char *ident, timestamp_t timestamp,
963 int tz, const char *message, void *cbdata)
964{
965 struct rev_collect *revs = cbdata;
966
967 if (revs->initial) {
968 revs->initial = 0;
969 add_one_commit(ooid, revs);
970 }
971 add_one_commit(noid, revs);
972 return 0;
973}
974
975struct commit *get_fork_point(const char *refname, struct commit *commit)
976{
977 struct object_id oid;
978 struct rev_collect revs;
979 struct commit_list *bases;
980 int i;
981 struct commit *ret = NULL;
Junio C Hamanof08132f2019-12-09 10:51:47 -0800982 char *full_refname;
983
Jonathan Tanf24c30e2020-09-01 15:28:09 -0700984 switch (dwim_ref(refname, strlen(refname), &oid, &full_refname, 0)) {
Junio C Hamanof08132f2019-12-09 10:51:47 -0800985 case 0:
986 die("No such ref: '%s'", refname);
987 case 1:
988 break; /* good */
989 default:
990 die("Ambiguous refname: '%s'", refname);
991 }
Pratik Karki103148a2018-09-04 15:00:08 -0700992
993 memset(&revs, 0, sizeof(revs));
994 revs.initial = 1;
Junio C Hamanof08132f2019-12-09 10:51:47 -0800995 for_each_reflog_ent(full_refname, collect_one_reflog_ent, &revs);
Pratik Karki103148a2018-09-04 15:00:08 -0700996
Junio C Hamanof08132f2019-12-09 10:51:47 -0800997 if (!revs.nr)
Pratik Karki103148a2018-09-04 15:00:08 -0700998 add_one_commit(&oid, &revs);
999
1000 for (i = 0; i < revs.nr; i++)
1001 revs.commit[i]->object.flags &= ~TMP_MARK;
1002
1003 bases = get_merge_bases_many(commit, revs.nr, revs.commit);
1004
1005 /*
1006 * There should be one and only one merge base, when we found
1007 * a common ancestor among reflog entries.
1008 */
1009 if (!bases || bases->next)
1010 goto cleanup_return;
1011
1012 /* And the found one must be one of the reflog entries */
1013 for (i = 0; i < revs.nr; i++)
1014 if (&bases->item->object == &revs.commit[i]->object)
1015 break; /* found */
1016 if (revs.nr <= i)
1017 goto cleanup_return;
1018
1019 ret = bases->item;
1020
1021cleanup_return:
1022 free_commit_list(bases);
Junio C Hamanof08132f2019-12-09 10:51:47 -08001023 free(full_refname);
Pratik Karki103148a2018-09-04 15:00:08 -07001024 return ret;
1025}
1026
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001027/*
1028 * Indexed by hash algorithm identifier.
1029 */
1030static const char *gpg_sig_headers[] = {
1031 NULL,
1032 "gpgsig",
1033 "gpgsig-sha256",
1034};
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001035
brian m. carlson937032e2021-02-11 02:08:04 +00001036int sign_with_header(struct strbuf *buf, const char *keyid)
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001037{
1038 struct strbuf sig = STRBUF_INIT;
1039 int inspos, copypos;
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001040 const char *eoh;
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001041 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(the_hash_algo)];
1042 int gpg_sig_header_len = strlen(gpg_sig_header);
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001043
1044 /* find the end of the header */
Johannes Schindelin3324dd82016-06-29 16:14:54 +02001045 eoh = strstr(buf->buf, "\n\n");
1046 if (!eoh)
1047 inspos = buf->len;
1048 else
1049 inspos = eoh - buf->buf + 1;
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001050
1051 if (!keyid || !*keyid)
1052 keyid = get_signing_key();
1053 if (sign_buffer(buf, &sig, keyid)) {
1054 strbuf_release(&sig);
1055 return -1;
1056 }
1057
1058 for (copypos = 0; sig.buf[copypos]; ) {
1059 const char *bol = sig.buf + copypos;
1060 const char *eol = strchrnul(bol, '\n');
1061 int len = (eol - bol) + !!*eol;
1062
1063 if (!copypos) {
1064 strbuf_insert(buf, inspos, gpg_sig_header, gpg_sig_header_len);
1065 inspos += gpg_sig_header_len;
1066 }
René Scharfea91cc7f2020-02-09 14:44:23 +01001067 strbuf_insertstr(buf, inspos++, " ");
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001068 strbuf_insert(buf, inspos, bol, len);
1069 inspos += len;
1070 copypos += len;
1071 }
1072 strbuf_release(&sig);
1073 return 0;
1074}
1075
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001076
brian m. carlson937032e2021-02-11 02:08:04 +00001077
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001078int parse_signed_commit(const struct commit *commit,
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001079 struct strbuf *payload, struct strbuf *signature,
1080 const struct git_hash_algo *algop)
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001081{
Jeff King218aa3a2014-06-13 02:32:11 -04001082 unsigned long size;
1083 const char *buffer = get_commit_buffer(commit, &size);
brian m. carlson937032e2021-02-11 02:08:04 +00001084 int ret = parse_buffer_signed_by_header(buffer, size, payload, signature, algop);
1085
1086 unuse_commit_buffer(commit, buffer);
1087 return ret;
1088}
1089
1090int parse_buffer_signed_by_header(const char *buffer,
1091 unsigned long size,
1092 struct strbuf *payload,
1093 struct strbuf *signature,
1094 const struct git_hash_algo *algop)
1095{
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001096 int in_signature = 0, saw_signature = 0, other_signature = 0;
1097 const char *line, *tail, *p;
1098 const char *gpg_sig_header = gpg_sig_headers[hash_algo_by_ptr(algop)];
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001099
1100 line = buffer;
1101 tail = buffer + size;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001102 while (line < tail) {
1103 const char *sig = NULL;
Jeff King218aa3a2014-06-13 02:32:11 -04001104 const char *next = memchr(line, '\n', tail - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001105
1106 next = next ? next + 1 : tail;
1107 if (in_signature && line[0] == ' ')
1108 sig = line + 1;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001109 else if (skip_prefix(line, gpg_sig_header, &p) &&
1110 *p == ' ') {
1111 sig = line + strlen(gpg_sig_header) + 1;
1112 other_signature = 0;
1113 }
1114 else if (starts_with(line, "gpgsig"))
1115 other_signature = 1;
1116 else if (other_signature && line[0] != ' ')
1117 other_signature = 0;
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001118 if (sig) {
1119 strbuf_add(signature, sig, next - sig);
1120 saw_signature = 1;
1121 in_signature = 1;
1122 } else {
1123 if (*line == '\n')
1124 /* dump the whole remainder of the buffer */
1125 next = tail;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001126 if (!other_signature)
1127 strbuf_add(payload, line, next - line);
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001128 in_signature = 0;
1129 }
1130 line = next;
1131 }
Junio C Hamano0c37f1f2011-10-18 15:53:23 -07001132 return saw_signature;
1133}
1134
Christian Couder0b05ab62014-07-19 17:01:12 +02001135int remove_signature(struct strbuf *buf)
1136{
1137 const char *line = buf->buf;
1138 const char *tail = buf->buf + buf->len;
1139 int in_signature = 0;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001140 struct sigbuf {
1141 const char *start;
1142 const char *end;
1143 } sigs[2], *sigp = &sigs[0];
1144 int i;
1145 const char *orig_buf = buf->buf;
1146
1147 memset(sigs, 0, sizeof(sigs));
Christian Couder0b05ab62014-07-19 17:01:12 +02001148
1149 while (line < tail) {
1150 const char *next = memchr(line, '\n', tail - line);
1151 next = next ? next + 1 : tail;
1152
1153 if (in_signature && line[0] == ' ')
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001154 sigp->end = next;
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001155 else if (starts_with(line, "gpgsig")) {
1156 int i;
1157 for (i = 1; i < GIT_HASH_NALGOS; i++) {
1158 const char *p;
1159 if (skip_prefix(line, gpg_sig_headers[i], &p) &&
1160 *p == ' ') {
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001161 sigp->start = line;
1162 sigp->end = next;
brian m. carlson42d4e1d2020-02-22 20:17:42 +00001163 in_signature = 1;
1164 }
1165 }
Christian Couder0b05ab62014-07-19 17:01:12 +02001166 } else {
1167 if (*line == '\n')
1168 /* dump the whole remainder of the buffer */
1169 next = tail;
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001170 if (in_signature && sigp - sigs != ARRAY_SIZE(sigs))
1171 sigp++;
Christian Couder0b05ab62014-07-19 17:01:12 +02001172 in_signature = 0;
1173 }
1174 line = next;
1175 }
1176
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001177 for (i = ARRAY_SIZE(sigs) - 1; i >= 0; i--)
1178 if (sigs[i].start)
1179 strbuf_remove(buf, sigs[i].start - orig_buf, sigs[i].end - sigs[i].start);
Christian Couder0b05ab62014-07-19 17:01:12 +02001180
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001181 return sigs[0].start != NULL;
Christian Couder0b05ab62014-07-19 17:01:12 +02001182}
1183
Junio C Hamano5231c632011-11-07 16:21:32 -08001184static void handle_signed_tag(struct commit *parent, struct commit_extra_header ***tail)
1185{
1186 struct merge_remote_desc *desc;
1187 struct commit_extra_header *mergetag;
1188 char *buf;
brian m. carlson482c1192021-02-11 02:08:03 +00001189 unsigned long size;
Junio C Hamano5231c632011-11-07 16:21:32 -08001190 enum object_type type;
brian m. carlson482c1192021-02-11 02:08:03 +00001191 struct strbuf payload = STRBUF_INIT;
1192 struct strbuf signature = STRBUF_INIT;
Junio C Hamano5231c632011-11-07 16:21:32 -08001193
1194 desc = merge_remote_util(parent);
1195 if (!desc || !desc->obj)
1196 return;
brian m. carlsonb4f5aca2018-03-12 02:27:53 +00001197 buf = read_object_file(&desc->obj->oid, &type, &size);
Junio C Hamano5231c632011-11-07 16:21:32 -08001198 if (!buf || type != OBJ_TAG)
1199 goto free_return;
brian m. carlson482c1192021-02-11 02:08:03 +00001200 if (!parse_signature(buf, size, &payload, &signature))
Junio C Hamano5231c632011-11-07 16:21:32 -08001201 goto free_return;
1202 /*
1203 * We could verify this signature and either omit the tag when
1204 * it does not validate, but the integrator may not have the
Felipe Contreras0e20b222021-06-15 14:11:10 +00001205 * public key of the signer of the tag being merged, while a
Junio C Hamano5231c632011-11-07 16:21:32 -08001206 * later auditor may have it while auditing, so let's not run
1207 * verify-signed-buffer here for now...
1208 *
1209 * if (verify_signed_buffer(buf, len, buf + len, size - len, ...))
1210 * warn("warning: signed tag unverified.");
1211 */
René Scharfeca56dad2021-03-13 17:17:22 +01001212 CALLOC_ARRAY(mergetag, 1);
Junio C Hamano5231c632011-11-07 16:21:32 -08001213 mergetag->key = xstrdup("mergetag");
1214 mergetag->value = buf;
1215 mergetag->len = size;
1216
1217 **tail = mergetag;
1218 *tail = &mergetag->next;
brian m. carlson482c1192021-02-11 02:08:03 +00001219 strbuf_release(&payload);
1220 strbuf_release(&signature);
Junio C Hamano5231c632011-11-07 16:21:32 -08001221 return;
1222
1223free_return:
1224 free(buf);
1225}
1226
brian m. carlson434060e2015-06-21 23:14:40 +00001227int check_commit_signature(const struct commit *commit, struct signature_check *sigc)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001228{
1229 struct strbuf payload = STRBUF_INIT;
1230 struct strbuf signature = STRBUF_INIT;
brian m. carlson434060e2015-06-21 23:14:40 +00001231 int ret = 1;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001232
1233 sigc->result = 'N';
1234
brian m. carlson1fb5cf02021-01-18 23:49:11 +00001235 if (parse_signed_commit(commit, &payload, &signature, the_hash_algo) <= 0)
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001236 goto out;
Fabian Stelzer02769432021-12-09 09:52:43 +01001237
Fabian Stelzer6393c952021-12-09 09:52:45 +01001238 sigc->payload_type = SIGNATURE_PAYLOAD_COMMIT;
Fabian Stelzer02769432021-12-09 09:52:43 +01001239 sigc->payload = strbuf_detach(&payload, &sigc->payload_len);
1240 ret = check_signature(sigc, signature.buf, signature.len);
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001241
1242 out:
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001243 strbuf_release(&payload);
1244 strbuf_release(&signature);
brian m. carlson434060e2015-06-21 23:14:40 +00001245
1246 return ret;
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001247}
1248
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001249void verify_merge_signature(struct commit *commit, int verbosity,
1250 int check_trust)
Jeff Kingedc4d472018-11-06 02:50:17 -05001251{
1252 char hex[GIT_MAX_HEXSZ + 1];
1253 struct signature_check signature_check;
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001254 int ret;
Jeff Kingedc4d472018-11-06 02:50:17 -05001255 memset(&signature_check, 0, sizeof(signature_check));
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001256
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001257 ret = check_commit_signature(commit, &signature_check);
Jeff Kingedc4d472018-11-06 02:50:17 -05001258
1259 find_unique_abbrev_r(hex, &commit->object.oid, DEFAULT_ABBREV);
1260 switch (signature_check.result) {
1261 case 'G':
Hans Jerry Illikainen54887b42019-12-27 13:55:57 +00001262 if (ret || (check_trust && signature_check.trust_level < TRUST_MARGINAL))
1263 die(_("Commit %s has an untrusted GPG signature, "
1264 "allegedly by %s."), hex, signature_check.signer);
Jeff Kingedc4d472018-11-06 02:50:17 -05001265 break;
Jeff Kingedc4d472018-11-06 02:50:17 -05001266 case 'B':
1267 die(_("Commit %s has a bad GPG signature "
1268 "allegedly by %s."), hex, signature_check.signer);
1269 default: /* 'N' */
1270 die(_("Commit %s does not have a GPG signature."), hex);
1271 }
1272 if (verbosity >= 0 && signature_check.result == 'G')
1273 printf(_("Commit %s has a good GPG signature by %s\n"),
1274 hex, signature_check.signer);
1275
1276 signature_check_clear(&signature_check);
1277}
Sebastian Götteffb6d7d2013-03-31 18:00:14 +02001278
Junio C Hamano5231c632011-11-07 16:21:32 -08001279void append_merge_tag_headers(struct commit_list *parents,
1280 struct commit_extra_header ***tail)
1281{
1282 while (parents) {
1283 struct commit *parent = parents->item;
1284 handle_signed_tag(parent, tail);
1285 parents = parents->next;
1286 }
1287}
1288
1289static void add_extra_header(struct strbuf *buffer,
1290 struct commit_extra_header *extra)
1291{
1292 strbuf_addstr(buffer, extra->key);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001293 if (extra->len)
1294 strbuf_add_lines(buffer, " ", extra->value, extra->len);
1295 else
1296 strbuf_addch(buffer, '\n');
1297}
1298
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001299struct commit_extra_header *read_commit_extra_headers(struct commit *commit,
1300 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001301{
1302 struct commit_extra_header *extra = NULL;
1303 unsigned long size;
Jeff King218aa3a2014-06-13 02:32:11 -04001304 const char *buffer = get_commit_buffer(commit, &size);
1305 extra = read_commit_extra_header_lines(buffer, size, exclude);
1306 unuse_commit_buffer(commit, buffer);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001307 return extra;
1308}
1309
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001310int for_each_mergetag(each_mergetag_fn fn, struct commit *commit, void *data)
Christian Couder063da622014-07-07 08:35:37 +02001311{
1312 struct commit_extra_header *extra, *to_free;
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001313 int res = 0;
Christian Couder063da622014-07-07 08:35:37 +02001314
1315 to_free = read_commit_extra_headers(commit, NULL);
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001316 for (extra = to_free; !res && extra; extra = extra->next) {
Christian Couder063da622014-07-07 08:35:37 +02001317 if (strcmp(extra->key, "mergetag"))
1318 continue; /* not a merge tag */
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001319 res = fn(commit, extra, data);
Christian Couder063da622014-07-07 08:35:37 +02001320 }
1321 free_commit_extra_headers(to_free);
Johannes Schindelinfef461e2018-04-25 11:54:04 +02001322 return res;
Christian Couder063da622014-07-07 08:35:37 +02001323}
1324
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001325static inline int standard_header_field(const char *field, size_t len)
1326{
René Scharfeb0725042017-02-25 20:27:40 +01001327 return ((len == 4 && !memcmp(field, "tree", 4)) ||
1328 (len == 6 && !memcmp(field, "parent", 6)) ||
1329 (len == 6 && !memcmp(field, "author", 6)) ||
1330 (len == 9 && !memcmp(field, "committer", 9)) ||
1331 (len == 8 && !memcmp(field, "encoding", 8)));
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001332}
1333
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001334static int excluded_header_field(const char *field, size_t len, const char **exclude)
1335{
1336 if (!exclude)
1337 return 0;
1338
1339 while (*exclude) {
1340 size_t xlen = strlen(*exclude);
René Scharfeb0725042017-02-25 20:27:40 +01001341 if (len == xlen && !memcmp(field, *exclude, xlen))
Junio C Hamanoc871a1d2012-01-05 10:54:14 -08001342 return 1;
1343 exclude++;
1344 }
1345 return 0;
1346}
1347
Junio C Hamano82a75292012-09-15 13:58:15 -07001348static struct commit_extra_header *read_commit_extra_header_lines(
1349 const char *buffer, size_t size,
1350 const char **exclude)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001351{
1352 struct commit_extra_header *extra = NULL, **tail = &extra, *it = NULL;
1353 const char *line, *next, *eof, *eob;
1354 struct strbuf buf = STRBUF_INIT;
1355
1356 for (line = buffer, eob = line + size;
1357 line < eob && *line != '\n';
1358 line = next) {
1359 next = memchr(line, '\n', eob - line);
1360 next = next ? next + 1 : eob;
1361 if (*line == ' ') {
1362 /* continuation */
1363 if (it)
1364 strbuf_add(&buf, line + 1, next - (line + 1));
1365 continue;
1366 }
1367 if (it)
1368 it->value = strbuf_detach(&buf, &it->len);
1369 strbuf_reset(&buf);
1370 it = NULL;
1371
René Scharfe50a01cc2017-02-25 20:21:52 +01001372 eof = memchr(line, ' ', next - line);
1373 if (!eof)
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001374 eof = next;
René Scharfeb0725042017-02-25 20:27:40 +01001375 else if (standard_header_field(line, eof - line) ||
1376 excluded_header_field(line, eof - line, exclude))
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001377 continue;
1378
René Scharfeca56dad2021-03-13 17:17:22 +01001379 CALLOC_ARRAY(it, 1);
Junio C Hamanoed7a42a2011-11-08 15:38:07 -08001380 it->key = xmemdupz(line, eof-line);
1381 *tail = it;
1382 tail = &it->next;
1383 if (eof + 1 < next)
1384 strbuf_add(&buf, eof + 1, next - (eof + 1));
1385 }
1386 if (it)
1387 it->value = strbuf_detach(&buf, &it->len);
1388 return extra;
Junio C Hamano5231c632011-11-07 16:21:32 -08001389}
1390
1391void free_commit_extra_headers(struct commit_extra_header *extra)
1392{
1393 while (extra) {
1394 struct commit_extra_header *next = extra->next;
1395 free(extra->key);
1396 free(extra->value);
1397 free(extra);
1398 extra = next;
1399 }
1400}
1401
Patryk Obara5078f342018-01-28 01:13:16 +01001402int commit_tree(const char *msg, size_t msg_len, const struct object_id *tree,
1403 struct commit_list *parents, struct object_id *ret,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001404 const char *author, const char *sign_commit)
Junio C Hamano5231c632011-11-07 16:21:32 -08001405{
1406 struct commit_extra_header *extra = NULL, **tail = &extra;
1407 int result;
1408
1409 append_merge_tag_headers(parents, &tail);
Phillip Woode8cbe212020-08-17 18:40:01 +01001410 result = commit_tree_extended(msg, msg_len, tree, parents, ret, author,
1411 NULL, sign_commit, extra);
Junio C Hamano5231c632011-11-07 16:21:32 -08001412 free_commit_extra_headers(extra);
1413 return result;
1414}
1415
Linus Torvalds08a94a12012-06-28 11:24:14 -07001416static int find_invalid_utf8(const char *buf, int len)
1417{
1418 int offset = 0;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001419 static const unsigned int max_codepoint[] = {
1420 0x7f, 0x7ff, 0xffff, 0x10ffff
1421 };
Linus Torvalds08a94a12012-06-28 11:24:14 -07001422
1423 while (len) {
1424 unsigned char c = *buf++;
1425 int bytes, bad_offset;
brian m. carlson28110d42013-07-04 17:19:43 +00001426 unsigned int codepoint;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001427 unsigned int min_val, max_val;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001428
1429 len--;
1430 offset++;
1431
1432 /* Simple US-ASCII? No worries. */
1433 if (c < 0x80)
1434 continue;
1435
1436 bad_offset = offset-1;
1437
1438 /*
1439 * Count how many more high bits set: that's how
1440 * many more bytes this sequence should have.
1441 */
1442 bytes = 0;
1443 while (c & 0x40) {
1444 c <<= 1;
1445 bytes++;
1446 }
1447
brian m. carlson28110d42013-07-04 17:19:43 +00001448 /*
1449 * Must be between 1 and 3 more bytes. Longer sequences result in
1450 * codepoints beyond U+10FFFF, which are guaranteed never to exist.
1451 */
1452 if (bytes < 1 || 3 < bytes)
Linus Torvalds08a94a12012-06-28 11:24:14 -07001453 return bad_offset;
1454
1455 /* Do we *have* that many bytes? */
1456 if (len < bytes)
1457 return bad_offset;
1458
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001459 /*
1460 * Place the encoded bits at the bottom of the value and compute the
1461 * valid range.
1462 */
brian m. carlson28110d42013-07-04 17:19:43 +00001463 codepoint = (c & 0x7f) >> bytes;
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001464 min_val = max_codepoint[bytes-1] + 1;
1465 max_val = max_codepoint[bytes];
brian m. carlson28110d42013-07-04 17:19:43 +00001466
Linus Torvalds08a94a12012-06-28 11:24:14 -07001467 offset += bytes;
1468 len -= bytes;
1469
1470 /* And verify that they are good continuation bytes */
1471 do {
brian m. carlson28110d42013-07-04 17:19:43 +00001472 codepoint <<= 6;
1473 codepoint |= *buf & 0x3f;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001474 if ((*buf++ & 0xc0) != 0x80)
1475 return bad_offset;
1476 } while (--bytes);
1477
brian m. carlsone82bd6c2013-07-04 17:20:34 +00001478 /* Reject codepoints that are out of range for the sequence length. */
1479 if (codepoint < min_val || codepoint > max_val)
brian m. carlson28110d42013-07-04 17:19:43 +00001480 return bad_offset;
1481 /* Surrogates are only for UTF-16 and cannot be encoded in UTF-8. */
1482 if ((codepoint & 0x1ff800) == 0xd800)
1483 return bad_offset;
Peter Krefting81050ac2013-07-09 12:16:33 +01001484 /* U+xxFFFE and U+xxFFFF are guaranteed non-characters. */
Junio C Hamanodc773a62013-08-05 09:52:28 -07001485 if ((codepoint & 0xfffe) == 0xfffe)
Peter Krefting81050ac2013-07-09 12:16:33 +01001486 return bad_offset;
1487 /* So are anything in the range U+FDD0..U+FDEF. */
1488 if (codepoint >= 0xfdd0 && codepoint <= 0xfdef)
brian m. carlson28110d42013-07-04 17:19:43 +00001489 return bad_offset;
Linus Torvalds08a94a12012-06-28 11:24:14 -07001490 }
1491 return -1;
1492}
1493
1494/*
1495 * This verifies that the buffer is in proper utf8 format.
1496 *
1497 * If it isn't, it assumes any non-utf8 characters are Latin1,
1498 * and does the conversion.
Linus Torvalds08a94a12012-06-28 11:24:14 -07001499 */
1500static int verify_utf8(struct strbuf *buf)
1501{
1502 int ok = 1;
1503 long pos = 0;
1504
1505 for (;;) {
1506 int bad;
1507 unsigned char c;
1508 unsigned char replace[2];
1509
1510 bad = find_invalid_utf8(buf->buf + pos, buf->len - pos);
1511 if (bad < 0)
1512 return ok;
1513 pos += bad;
1514 ok = 0;
1515 c = buf->buf[pos];
1516 strbuf_remove(buf, pos, 1);
1517
1518 /* We know 'c' must be in the range 128-255 */
1519 replace[0] = 0xc0 + (c >> 6);
1520 replace[1] = 0x80 + (c & 0x3f);
1521 strbuf_insert(buf, pos, replace, 2);
1522 pos += 2;
1523 }
1524}
1525
Jeff King40d52ff2010-04-01 20:05:23 -04001526static const char commit_utf8_warn[] =
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001527N_("Warning: commit message did not conform to UTF-8.\n"
1528 "You may want to amend it after fixing the message, or set the config\n"
Jiang Xinb4eda052022-06-17 18:03:09 +08001529 "variable i18n.commitEncoding to the encoding your project uses.\n");
Jeff King40d52ff2010-04-01 20:05:23 -04001530
Jeff King3ffefb52014-06-10 17:36:52 -04001531int commit_tree_extended(const char *msg, size_t msg_len,
Patryk Obara5078f342018-01-28 01:13:16 +01001532 const struct object_id *tree,
1533 struct commit_list *parents, struct object_id *ret,
Phillip Woode8cbe212020-08-17 18:40:01 +01001534 const char *author, const char *committer,
1535 const char *sign_commit,
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001536 struct commit_extra_header *extra)
Jeff King40d52ff2010-04-01 20:05:23 -04001537{
1538 int result;
1539 int encoding_is_utf8;
1540 struct strbuf buffer;
1541
brian m. carlsone816caa2018-03-12 02:27:42 +00001542 assert_oid_type(tree, OBJ_TREE);
Jeff King40d52ff2010-04-01 20:05:23 -04001543
Jeff King3ffefb52014-06-10 17:36:52 -04001544 if (memchr(msg, '\0', msg_len))
Nguyễn Thái Ngọc Duy37576c12011-12-15 20:47:23 +07001545 return error("a NUL byte in commit log message not allowed.");
1546
Jeff King40d52ff2010-04-01 20:05:23 -04001547 /* Not having i18n.commitencoding is the same as having utf-8 */
1548 encoding_is_utf8 = is_encoding_utf8(git_commit_encoding);
1549
1550 strbuf_init(&buffer, 8192); /* should avoid reallocs for the headers */
Patryk Obara5078f342018-01-28 01:13:16 +01001551 strbuf_addf(&buffer, "tree %s\n", oid_to_hex(tree));
Jeff King40d52ff2010-04-01 20:05:23 -04001552
1553 /*
1554 * NOTE! This ordering means that the same exact tree merged with a
1555 * different order of parents will be a _different_ changeset even
1556 * if everything else stays the same.
1557 */
1558 while (parents) {
René Scharfee510ab82015-10-24 18:21:31 +02001559 struct commit *parent = pop_commit(&parents);
Jeff King40d52ff2010-04-01 20:05:23 -04001560 strbuf_addf(&buffer, "parent %s\n",
brian m. carlsonf2fd0762015-11-10 02:22:28 +00001561 oid_to_hex(&parent->object.oid));
Jeff King40d52ff2010-04-01 20:05:23 -04001562 }
1563
1564 /* Person/date information */
1565 if (!author)
Jeff Kingf9bc5732012-05-24 19:28:40 -04001566 author = git_author_info(IDENT_STRICT);
Jeff King40d52ff2010-04-01 20:05:23 -04001567 strbuf_addf(&buffer, "author %s\n", author);
Phillip Woode8cbe212020-08-17 18:40:01 +01001568 if (!committer)
1569 committer = git_committer_info(IDENT_STRICT);
1570 strbuf_addf(&buffer, "committer %s\n", committer);
Jeff King40d52ff2010-04-01 20:05:23 -04001571 if (!encoding_is_utf8)
1572 strbuf_addf(&buffer, "encoding %s\n", git_commit_encoding);
Junio C Hamano5231c632011-11-07 16:21:32 -08001573
1574 while (extra) {
1575 add_extra_header(&buffer, extra);
1576 extra = extra->next;
1577 }
Jeff King40d52ff2010-04-01 20:05:23 -04001578 strbuf_addch(&buffer, '\n');
1579
1580 /* And add the comment */
Jeff King3ffefb52014-06-10 17:36:52 -04001581 strbuf_add(&buffer, msg, msg_len);
Jeff King40d52ff2010-04-01 20:05:23 -04001582
1583 /* And check the encoding */
Linus Torvalds08a94a12012-06-28 11:24:14 -07001584 if (encoding_is_utf8 && !verify_utf8(&buffer))
Vasco Almeida4fa4b312016-09-19 13:08:16 +00001585 fprintf(stderr, _(commit_utf8_warn));
Jeff King40d52ff2010-04-01 20:05:23 -04001586
brian m. carlson937032e2021-02-11 02:08:04 +00001587 if (sign_commit && sign_with_header(&buffer, sign_commit)) {
Rene Scharfee5051462017-08-30 19:49:38 +02001588 result = -1;
1589 goto out;
1590 }
Junio C Hamanoba3c69a2011-10-05 17:23:20 -07001591
Ævar Arnfjörð Bjarmasonc80d2262022-02-05 00:48:26 +01001592 result = write_object_file(buffer.buf, buffer.len, OBJ_COMMIT, ret);
Rene Scharfee5051462017-08-30 19:49:38 +02001593out:
Jeff King40d52ff2010-04-01 20:05:23 -04001594 strbuf_release(&buffer);
1595 return result;
1596}
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001597
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001598define_commit_slab(merge_desc_slab, struct merge_remote_desc *);
1599static struct merge_desc_slab merge_desc_slab = COMMIT_SLAB_INIT(1, merge_desc_slab);
1600
1601struct merge_remote_desc *merge_remote_util(struct commit *commit)
1602{
1603 return *merge_desc_slab_at(&merge_desc_slab, commit);
1604}
1605
René Scharfebeb518c2016-08-13 14:11:27 +02001606void set_merge_remote_desc(struct commit *commit,
1607 const char *name, struct object *obj)
1608{
1609 struct merge_remote_desc *desc;
René Scharfe5447a762016-08-13 14:21:27 +02001610 FLEX_ALLOC_STR(desc, name, name);
René Scharfebeb518c2016-08-13 14:11:27 +02001611 desc->obj = obj;
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001612 *merge_desc_slab_at(&merge_desc_slab, commit) = desc;
René Scharfebeb518c2016-08-13 14:11:27 +02001613}
1614
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001615struct commit *get_merge_parent(const char *name)
1616{
1617 struct object *obj;
1618 struct commit *commit;
brian m. carlson7683e2e2015-03-13 23:39:34 +00001619 struct object_id oid;
brian m. carlsone82caf32017-07-13 23:49:28 +00001620 if (get_oid(name, &oid))
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001621 return NULL;
Stefan Beller109cd762018-06-28 18:21:51 -07001622 obj = parse_object(the_repository, &oid);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001623 commit = (struct commit *)peel_to_type(name, 0, obj, OBJ_COMMIT);
Nguyễn Thái Ngọc Duye2e5ac22018-05-19 07:28:30 +02001624 if (commit && !merge_remote_util(commit))
René Scharfebeb518c2016-08-13 14:11:27 +02001625 set_merge_remote_desc(commit, name, obj);
Junio C Hamanoae8e4c92011-11-07 13:26:22 -08001626 return commit;
1627}
René Scharfe89b5f1d2012-04-25 22:35:27 +02001628
1629/*
1630 * Append a commit to the end of the commit_list.
1631 *
1632 * next starts by pointing to the variable that holds the head of an
1633 * empty commit_list, and is updated to point to the "next" field of
1634 * the last item on the list as new commits are appended.
1635 *
1636 * Usage example:
1637 *
1638 * struct commit_list *list;
1639 * struct commit_list **next = &list;
1640 *
1641 * next = commit_list_append(c1, next);
1642 * next = commit_list_append(c2, next);
1643 * assert(commit_list_count(list) == 2);
1644 * return list;
1645 */
1646struct commit_list **commit_list_append(struct commit *commit,
1647 struct commit_list **next)
1648{
Brandon Williams258c03e2018-02-14 10:59:37 -08001649 struct commit_list *new_commit = xmalloc(sizeof(struct commit_list));
1650 new_commit->item = commit;
1651 *next = new_commit;
1652 new_commit->next = NULL;
1653 return &new_commit->next;
René Scharfe89b5f1d2012-04-25 22:35:27 +02001654}
Nguyễn Thái Ngọc Duyefc7df42012-10-26 22:53:51 +07001655
John Caicfc5cf42022-01-06 20:07:35 +00001656const char *find_header_mem(const char *msg, size_t len,
1657 const char *key, size_t *out_len)
Jeff Kingfe6eb7f2014-08-27 03:56:01 -04001658{
1659 int key_len = strlen(key);
1660 const char *line = msg;
1661
John Caicfc5cf42022-01-06 20:07:35 +00001662 /*
1663 * NEEDSWORK: It's possible for strchrnul() to scan beyond the range
1664 * given by len. However, current callers are safe because they compute
1665 * len by scanning a NUL-terminated block of memory starting at msg.
1666 * Nonetheless, it would be better to ensure the function does not look
1667 * at msg beyond the len provided by the caller.
1668 */
1669 while (line && line < msg + len) {
Jeff Kingfe6eb7f2014-08-27 03:56:01 -04001670 const char *eol = strchrnul(line, '\n');
1671
1672 if (line == eol)
1673 return NULL;
1674
1675 if (eol - line > key_len &&
1676 !strncmp(line, key, key_len) &&
1677 line[key_len] == ' ') {
1678 *out_len = eol - line - key_len - 1;
1679 return line + key_len + 1;
1680 }
1681 line = *eol ? eol + 1 : NULL;
1682 }
1683 return NULL;
1684}
Junio C Hamano0ed8a4e2014-12-22 12:26:23 -08001685
John Caicfc5cf42022-01-06 20:07:35 +00001686const char *find_commit_header(const char *msg, const char *key, size_t *out_len)
1687{
1688 return find_header_mem(msg, strlen(msg), key, out_len);
1689}
Christian Couder8c384582014-11-09 10:23:41 +01001690/*
Jonathan Tan710714a2016-11-02 10:29:17 -07001691 * Inspect the given string and determine the true "end" of the log message, in
Bradley M. Kuhn3abd4a62020-10-19 18:03:55 -07001692 * order to find where to put a new Signed-off-by trailer. Ignored are
Brian Malehornd76650b2017-05-15 23:06:49 -07001693 * trailing comment lines and blank lines. To support "git commit -s
1694 * --amend" on an existing commit, we also ignore "Conflicts:". To
1695 * support "git commit -v", we truncate at cut lines.
Christian Couder8c384582014-11-09 10:23:41 +01001696 *
1697 * Returns the number of bytes from the tail to ignore, to be fed as
1698 * the second parameter to append_signoff().
1699 */
Jeff King66e83d92018-08-22 20:50:51 -04001700size_t ignore_non_trailer(const char *buf, size_t len)
Christian Couder8c384582014-11-09 10:23:41 +01001701{
Jeff King66e83d92018-08-22 20:50:51 -04001702 size_t boc = 0;
1703 size_t bol = 0;
Christian Couder8c384582014-11-09 10:23:41 +01001704 int in_old_conflicts_block = 0;
Brian Malehornd76650b2017-05-15 23:06:49 -07001705 size_t cutoff = wt_status_locate_end(buf, len);
Christian Couder8c384582014-11-09 10:23:41 +01001706
Brian Malehornd76650b2017-05-15 23:06:49 -07001707 while (bol < cutoff) {
Jonathan Tan710714a2016-11-02 10:29:17 -07001708 const char *next_line = memchr(buf + bol, '\n', len - bol);
Christian Couder8c384582014-11-09 10:23:41 +01001709
Jonathan Tan710714a2016-11-02 10:29:17 -07001710 if (!next_line)
1711 next_line = buf + len;
Christian Couder8c384582014-11-09 10:23:41 +01001712 else
1713 next_line++;
1714
Jonathan Tan710714a2016-11-02 10:29:17 -07001715 if (buf[bol] == comment_line_char || buf[bol] == '\n') {
Christian Couder8c384582014-11-09 10:23:41 +01001716 /* is this the first of the run of comments? */
1717 if (!boc)
1718 boc = bol;
1719 /* otherwise, it is just continuing */
Jonathan Tan710714a2016-11-02 10:29:17 -07001720 } else if (starts_with(buf + bol, "Conflicts:\n")) {
Christian Couder8c384582014-11-09 10:23:41 +01001721 in_old_conflicts_block = 1;
1722 if (!boc)
1723 boc = bol;
Jonathan Tan710714a2016-11-02 10:29:17 -07001724 } else if (in_old_conflicts_block && buf[bol] == '\t') {
Christian Couder8c384582014-11-09 10:23:41 +01001725 ; /* a pathname in the conflicts block */
1726 } else if (boc) {
1727 /* the previous was not trailing comment */
1728 boc = 0;
1729 in_old_conflicts_block = 0;
1730 }
Jonathan Tan710714a2016-11-02 10:29:17 -07001731 bol = next_line - buf;
Christian Couder8c384582014-11-09 10:23:41 +01001732 }
Brian Malehornd76650b2017-05-15 23:06:49 -07001733 return boc ? len - boc : len - cutoff;
Christian Couder8c384582014-11-09 10:23:41 +01001734}
Phillip Wood49697cb2019-10-15 10:25:31 +00001735
1736int run_commit_hook(int editor_is_used, const char *index_file,
Ævar Arnfjörð Bjarmasona8cc5942022-03-07 13:33:46 +01001737 int *invoked_hook, const char *name, ...)
Phillip Wood49697cb2019-10-15 10:25:31 +00001738{
Emily Shafferf4432462021-12-22 04:59:40 +01001739 struct run_hooks_opt opt = RUN_HOOKS_OPT_INIT;
Phillip Wood49697cb2019-10-15 10:25:31 +00001740 va_list args;
Emily Shafferf4432462021-12-22 04:59:40 +01001741 const char *arg;
Phillip Wood49697cb2019-10-15 10:25:31 +00001742
Emily Shafferf4432462021-12-22 04:59:40 +01001743 strvec_pushf(&opt.env, "GIT_INDEX_FILE=%s", index_file);
Phillip Wood49697cb2019-10-15 10:25:31 +00001744
1745 /*
1746 * Let the hook know that no editor will be launched.
1747 */
1748 if (!editor_is_used)
Emily Shafferf4432462021-12-22 04:59:40 +01001749 strvec_push(&opt.env, "GIT_EDITOR=:");
Phillip Wood49697cb2019-10-15 10:25:31 +00001750
1751 va_start(args, name);
Emily Shafferf4432462021-12-22 04:59:40 +01001752 while ((arg = va_arg(args, const char *)))
1753 strvec_push(&opt.args, arg);
Phillip Wood49697cb2019-10-15 10:25:31 +00001754 va_end(args);
Phillip Wood49697cb2019-10-15 10:25:31 +00001755
Ævar Arnfjörð Bjarmason4369e3a2022-03-22 00:15:13 +01001756 opt.invoked_hook = invoked_hook;
Emily Shafferf4432462021-12-22 04:59:40 +01001757 return run_hooks_opt(name, &opt);
Phillip Wood49697cb2019-10-15 10:25:31 +00001758}