]> git.ipfire.org Git - thirdparty/git.git/blame - builtin/replace.c
cache.h: add repository argument to oid_object_info_extended
[thirdparty/git.git] / builtin / replace.c
CommitLineData
54b0c1e0
CC
1/*
2 * Builtin "git replace"
3 *
4 * Copyright (c) 2008 Christian Couder <chriscool@tuxfamily.org>
5 *
09b7e220 6 * Based on builtin/tag.c by Kristian Høgsberg <krh@redhat.com>
54b0c1e0
CC
7 * and Carlos Rica <jasampler@gmail.com> that was itself based on
8 * git-tag.sh and mktag.c by Linus Torvalds.
9 */
10
11#include "cache.h"
b2141fc1 12#include "config.h"
54b0c1e0
CC
13#include "builtin.h"
14#include "refs.h"
15#include "parse-options.h"
b892bb45 16#include "run-command.h"
60ce76d3
SB
17#include "object-store.h"
18#include "repository.h"
25a05a8c 19#include "tag.h"
54b0c1e0
CC
20
21static const char * const git_replace_usage[] = {
2477bebb 22 N_("git replace [-f] <object> <replacement>"),
ab77c309 23 N_("git replace [-f] --edit <object>"),
4228e8bc 24 N_("git replace [-f] --graft <commit> [<parent>...]"),
2477bebb 25 N_("git replace -d <object>..."),
44f9f850 26 N_("git replace [--format=<format>] [-l [<pattern>]]"),
54b0c1e0
CC
27 NULL
28};
29
663a8566 30enum replace_format {
3cc9d877
JK
31 REPLACE_FORMAT_SHORT,
32 REPLACE_FORMAT_MEDIUM,
33 REPLACE_FORMAT_LONG
663a8566 34};
44f9f850
CC
35
36struct show_data {
37 const char *pattern;
663a8566 38 enum replace_format format;
44f9f850
CC
39};
40
d70d7a8a 41static int show_reference(const char *refname, const struct object_id *oid,
54b0c1e0
CC
42 int flag, void *cb_data)
43{
44f9f850
CC
44 struct show_data *data = cb_data;
45
55d34269 46 if (!wildmatch(data->pattern, refname, 0)) {
663a8566 47 if (data->format == REPLACE_FORMAT_SHORT)
44f9f850 48 printf("%s\n", refname);
663a8566 49 else if (data->format == REPLACE_FORMAT_MEDIUM)
d70d7a8a 50 printf("%s -> %s\n", refname, oid_to_hex(oid));
663a8566 51 else { /* data->format == REPLACE_FORMAT_LONG */
d70d7a8a 52 struct object_id object;
44f9f850 53 enum object_type obj_type, repl_type;
54b0c1e0 54
e82caf38 55 if (get_oid(refname, &object))
44f9f850
CC
56 return error("Failed to resolve '%s' as a valid ref.", refname);
57
abef9020 58 obj_type = oid_object_info(&object, NULL);
59 repl_type = oid_object_info(oid, NULL);
44f9f850 60
debca9d2
BW
61 printf("%s (%s) -> %s (%s)\n", refname, type_name(obj_type),
62 oid_to_hex(oid), type_name(repl_type));
44f9f850
CC
63 }
64 }
54b0c1e0
CC
65
66 return 0;
67}
68
44f9f850 69static int list_replace_refs(const char *pattern, const char *format)
54b0c1e0 70{
44f9f850
CC
71 struct show_data data;
72
54b0c1e0
CC
73 if (pattern == NULL)
74 pattern = "*";
44f9f850
CC
75 data.pattern = pattern;
76
77 if (format == NULL || *format == '\0' || !strcmp(format, "short"))
663a8566 78 data.format = REPLACE_FORMAT_SHORT;
44f9f850 79 else if (!strcmp(format, "medium"))
663a8566
CC
80 data.format = REPLACE_FORMAT_MEDIUM;
81 else if (!strcmp(format, "long"))
82 data.format = REPLACE_FORMAT_LONG;
44f9f850
CC
83 else
84 die("invalid replace format '%s'\n"
663a8566 85 "valid formats are 'short', 'medium' and 'long'\n",
44f9f850 86 format);
54b0c1e0 87
60ce76d3 88 for_each_replace_ref(the_repository, show_reference, (void *)&data);
54b0c1e0
CC
89
90 return 0;
91}
92
93typedef int (*each_replace_name_fn)(const char *name, const char *ref,
cea4332e 94 const struct object_id *oid);
54b0c1e0
CC
95
96static int for_each_replace_name(const char **argv, each_replace_name_fn fn)
97{
9dfc3684 98 const char **p, *full_hex;
7f897b6f
JK
99 struct strbuf ref = STRBUF_INIT;
100 size_t base_len;
54b0c1e0 101 int had_error = 0;
cea4332e 102 struct object_id oid;
54b0c1e0 103
7f897b6f
JK
104 strbuf_addstr(&ref, git_replace_ref_base);
105 base_len = ref.len;
106
54b0c1e0 107 for (p = argv; *p; p++) {
cea4332e 108 if (get_oid(*p, &oid)) {
9dfc3684 109 error("Failed to resolve '%s' as a valid ref.", *p);
54b0c1e0
CC
110 had_error = 1;
111 continue;
112 }
7f897b6f
JK
113
114 strbuf_setlen(&ref, base_len);
115 strbuf_addstr(&ref, oid_to_hex(&oid));
116 full_hex = ref.buf + base_len;
117
34c290a6 118 if (read_ref(ref.buf, &oid)) {
9dfc3684 119 error("replace ref '%s' not found.", full_hex);
54b0c1e0
CC
120 had_error = 1;
121 continue;
122 }
7f897b6f 123 if (fn(full_hex, ref.buf, &oid))
54b0c1e0
CC
124 had_error = 1;
125 }
372b050b 126 strbuf_release(&ref);
54b0c1e0
CC
127 return had_error;
128}
129
130static int delete_replace_ref(const char *name, const char *ref,
cea4332e 131 const struct object_id *oid)
54b0c1e0 132{
2616a5e5 133 if (delete_ref(NULL, ref, oid, 0))
54b0c1e0
CC
134 return 1;
135 printf("Deleted replace ref '%s'\n", name);
136 return 0;
137}
138
cea4332e 139static void check_ref_valid(struct object_id *object,
140 struct object_id *prev,
7f897b6f 141 struct strbuf *ref,
b6e38840
CC
142 int force)
143{
7f897b6f
JK
144 strbuf_reset(ref);
145 strbuf_addf(ref, "%s%s", git_replace_ref_base, oid_to_hex(object));
146 if (check_refname_format(ref->buf, 0))
147 die("'%s' is not a valid ref name.", ref->buf);
148
34c290a6 149 if (read_ref(ref->buf, prev))
cea4332e 150 oidclr(prev);
b6e38840 151 else if (!force)
7f897b6f 152 die("replace ref '%s' already exists", ref->buf);
b6e38840
CC
153}
154
cea4332e 155static int replace_object_oid(const char *object_ref,
156 struct object_id *object,
479bd757 157 const char *replace_ref,
cea4332e 158 struct object_id *repl,
479bd757 159 int force)
bebdd271 160{
cea4332e 161 struct object_id prev;
277336a5 162 enum object_type obj_type, repl_type;
7f897b6f 163 struct strbuf ref = STRBUF_INIT;
867c2fac
RS
164 struct ref_transaction *transaction;
165 struct strbuf err = STRBUF_INIT;
bebdd271 166
abef9020 167 obj_type = oid_object_info(object, NULL);
168 repl_type = oid_object_info(repl, NULL);
277336a5
CC
169 if (!force && obj_type != repl_type)
170 die("Objects must be of the same type.\n"
171 "'%s' points to a replaced object of type '%s'\n"
172 "while '%s' points to a replacement object of type '%s'.",
debca9d2
BW
173 object_ref, type_name(obj_type),
174 replace_ref, type_name(repl_type));
277336a5 175
7f897b6f 176 check_ref_valid(object, &prev, &ref, force);
bebdd271 177
867c2fac
RS
178 transaction = ref_transaction_begin(&err);
179 if (!transaction ||
89f3bbdd 180 ref_transaction_update(transaction, ref.buf, repl, &prev,
1d147bdf 181 0, NULL, &err) ||
db7516ab 182 ref_transaction_commit(transaction, &err))
867c2fac 183 die("%s", err.buf);
bebdd271 184
867c2fac 185 ref_transaction_free(transaction);
7f897b6f 186 strbuf_release(&ref);
bebdd271
CC
187 return 0;
188}
189
479bd757
JK
190static int replace_object(const char *object_ref, const char *replace_ref, int force)
191{
cea4332e 192 struct object_id object, repl;
479bd757 193
cea4332e 194 if (get_oid(object_ref, &object))
479bd757 195 die("Failed to resolve '%s' as a valid ref.", object_ref);
cea4332e 196 if (get_oid(replace_ref, &repl))
479bd757
JK
197 die("Failed to resolve '%s' as a valid ref.", replace_ref);
198
cea4332e 199 return replace_object_oid(object_ref, &object, replace_ref, &repl, force);
479bd757
JK
200}
201
b892bb45 202/*
2deda629
JK
203 * Write the contents of the object named by "sha1" to the file "filename".
204 * If "raw" is true, then the object's raw contents are printed according to
205 * "type". Otherwise, we pretty-print the contents for human editing.
b892bb45 206 */
cea4332e 207static void export_object(const struct object_id *oid, enum object_type type,
2deda629 208 int raw, const char *filename)
b892bb45 209{
d3180279 210 struct child_process cmd = CHILD_PROCESS_INIT;
b892bb45
JK
211 int fd;
212
213 fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
214 if (fd < 0)
215 die_errno("unable to open %s for writing", filename);
216
36857e00
JK
217 argv_array_push(&cmd.args, "--no-replace-objects");
218 argv_array_push(&cmd.args, "cat-file");
2deda629 219 if (raw)
debca9d2 220 argv_array_push(&cmd.args, type_name(type));
2deda629
JK
221 else
222 argv_array_push(&cmd.args, "-p");
cea4332e 223 argv_array_push(&cmd.args, oid_to_hex(oid));
b892bb45
JK
224 cmd.git_cmd = 1;
225 cmd.out = fd;
226
227 if (run_command(&cmd))
228 die("cat-file reported failure");
b892bb45
JK
229}
230
231/*
232 * Read a previously-exported (and possibly edited) object back from "filename",
233 * interpreting it as "type", and writing the result to the object database.
234 * The sha1 of the written object is returned via sha1.
235 */
cea4332e 236static void import_object(struct object_id *oid, enum object_type type,
2deda629 237 int raw, const char *filename)
b892bb45
JK
238{
239 int fd;
240
241 fd = open(filename, O_RDONLY);
242 if (fd < 0)
243 die_errno("unable to open %s for reading", filename);
244
2deda629 245 if (!raw && type == OBJ_TREE) {
b892bb45 246 const char *argv[] = { "mktree", NULL };
d3180279 247 struct child_process cmd = CHILD_PROCESS_INIT;
b892bb45
JK
248 struct strbuf result = STRBUF_INIT;
249
250 cmd.argv = argv;
251 cmd.git_cmd = 1;
252 cmd.in = fd;
253 cmd.out = -1;
254
255 if (start_command(&cmd))
256 die("unable to spawn mktree");
257
258 if (strbuf_read(&result, cmd.out, 41) < 0)
259 die_errno("unable to read from mktree");
260 close(cmd.out);
261
262 if (finish_command(&cmd))
263 die("mktree reported failure");
cea4332e 264 if (get_oid_hex(result.buf, oid) < 0)
b892bb45
JK
265 die("mktree did not return an object name");
266
267 strbuf_release(&result);
268 } else {
269 struct stat st;
270 int flags = HASH_FORMAT_CHECK | HASH_WRITE_OBJECT;
271
272 if (fstat(fd, &st) < 0)
273 die_errno("unable to fstat %s", filename);
e3506559 274 if (index_fd(oid, fd, &st, type, NULL, flags) < 0)
b892bb45
JK
275 die("unable to write object to database");
276 /* index_fd close()s fd for us */
277 }
278
279 /*
280 * No need to close(fd) here; both run-command and index-fd
281 * will have done it for us.
282 */
283}
284
2deda629 285static int edit_and_replace(const char *object_ref, int force, int raw)
b892bb45
JK
286{
287 char *tmpfile = git_pathdup("REPLACE_EDITOBJ");
288 enum object_type type;
efdfe11f 289 struct object_id old_oid, new_oid, prev;
7f897b6f 290 struct strbuf ref = STRBUF_INIT;
b892bb45 291
efdfe11f 292 if (get_oid(object_ref, &old_oid) < 0)
b892bb45
JK
293 die("Not a valid object name: '%s'", object_ref);
294
abef9020 295 type = oid_object_info(&old_oid, NULL);
b892bb45 296 if (type < 0)
efdfe11f 297 die("unable to get object type for %s", oid_to_hex(&old_oid));
b892bb45 298
efdfe11f 299 check_ref_valid(&old_oid, &prev, &ref, force);
7f897b6f 300 strbuf_release(&ref);
24790835 301
efdfe11f 302 export_object(&old_oid, type, raw, tmpfile);
b892bb45
JK
303 if (launch_editor(tmpfile, NULL, NULL) < 0)
304 die("editing object file failed");
efdfe11f 305 import_object(&new_oid, type, raw, tmpfile);
b892bb45
JK
306
307 free(tmpfile);
308
efdfe11f
BW
309 if (!oidcmp(&old_oid, &new_oid))
310 return error("new object is the same as the old one: '%s'", oid_to_hex(&old_oid));
f22166b5 311
efdfe11f 312 return replace_object_oid(object_ref, &old_oid, "replacement", &new_oid, force);
b892bb45
JK
313}
314
4228e8bc
CC
315static void replace_parents(struct strbuf *buf, int argc, const char **argv)
316{
317 struct strbuf new_parents = STRBUF_INIT;
318 const char *parent_start, *parent_end;
319 int i;
320
321 /* find existing parents */
322 parent_start = buf->buf;
cea4332e 323 parent_start += GIT_SHA1_HEXSZ + 6; /* "tree " + "hex sha1" + "\n" */
4228e8bc
CC
324 parent_end = parent_start;
325
326 while (starts_with(parent_end, "parent "))
327 parent_end += 48; /* "parent " + "hex sha1" + "\n" */
328
329 /* prepare new parents */
330 for (i = 0; i < argc; i++) {
cea4332e 331 struct object_id oid;
332 if (get_oid(argv[i], &oid) < 0)
4228e8bc 333 die(_("Not a valid object name: '%s'"), argv[i]);
bc83266a 334 lookup_commit_or_die(&oid, argv[i]);
cea4332e 335 strbuf_addf(&new_parents, "parent %s\n", oid_to_hex(&oid));
4228e8bc
CC
336 }
337
338 /* replace existing parents with new ones */
339 strbuf_splice(buf, parent_start - buf->buf, parent_end - parent_start,
340 new_parents.buf, new_parents.len);
341
342 strbuf_release(&new_parents);
343}
344
25a05a8c
CC
345struct check_mergetag_data {
346 int argc;
347 const char **argv;
348};
349
350static void check_one_mergetag(struct commit *commit,
351 struct commit_extra_header *extra,
352 void *data)
353{
354 struct check_mergetag_data *mergetag_data = (struct check_mergetag_data *)data;
355 const char *ref = mergetag_data->argv[0];
cea4332e 356 struct object_id tag_oid;
25a05a8c
CC
357 struct tag *tag;
358 int i;
359
169c9c01 360 hash_object_file(extra->value, extra->len, type_name(OBJ_TAG), &tag_oid);
d3101b53 361 tag = lookup_tag(&tag_oid);
25a05a8c
CC
362 if (!tag)
363 die(_("bad mergetag in commit '%s'"), ref);
364 if (parse_tag_buffer(tag, extra->value, extra->len))
365 die(_("malformed mergetag in commit '%s'"), ref);
366
367 /* iterate over new parents */
368 for (i = 1; i < mergetag_data->argc; i++) {
f2fd0760 369 struct object_id oid;
e82caf38 370 if (get_oid(mergetag_data->argv[i], &oid) < 0)
25a05a8c 371 die(_("Not a valid object name: '%s'"), mergetag_data->argv[i]);
f2fd0760 372 if (!oidcmp(&tag->tagged->oid, &oid))
25a05a8c
CC
373 return; /* found */
374 }
375
376 die(_("original commit '%s' contains mergetag '%s' that is discarded; "
cea4332e 377 "use --edit instead of --graft"), ref, oid_to_hex(&tag_oid));
25a05a8c
CC
378}
379
380static void check_mergetags(struct commit *commit, int argc, const char **argv)
381{
382 struct check_mergetag_data mergetag_data;
383
384 mergetag_data.argc = argc;
385 mergetag_data.argv = argv;
386 for_each_mergetag(check_one_mergetag, commit, &mergetag_data);
387}
388
4228e8bc
CC
389static int create_graft(int argc, const char **argv, int force)
390{
efdfe11f 391 struct object_id old_oid, new_oid;
4228e8bc
CC
392 const char *old_ref = argv[0];
393 struct commit *commit;
394 struct strbuf buf = STRBUF_INIT;
395 const char *buffer;
396 unsigned long size;
397
efdfe11f 398 if (get_oid(old_ref, &old_oid) < 0)
4228e8bc 399 die(_("Not a valid object name: '%s'"), old_ref);
efdfe11f 400 commit = lookup_commit_or_die(&old_oid, old_ref);
4228e8bc
CC
401
402 buffer = get_commit_buffer(commit, &size);
403 strbuf_add(&buf, buffer, size);
404 unuse_commit_buffer(commit, buffer);
405
406 replace_parents(&buf, argc - 1, &argv[1]);
407
0b05ab6f
CC
408 if (remove_signature(&buf)) {
409 warning(_("the original commit '%s' has a gpg signature."), old_ref);
410 warning(_("the signature will be removed in the replacement commit!"));
411 }
412
25a05a8c
CC
413 check_mergetags(commit, argc, argv);
414
169c9c01 415 if (write_object_file(buf.buf, buf.len, commit_type, &new_oid))
4228e8bc
CC
416 die(_("could not write replacement commit for: '%s'"), old_ref);
417
418 strbuf_release(&buf);
419
efdfe11f
BW
420 if (!oidcmp(&old_oid, &new_oid))
421 return error("new commit is the same as the old one: '%s'", oid_to_hex(&old_oid));
4228e8bc 422
efdfe11f 423 return replace_object_oid(old_ref, &old_oid, "replacement", &new_oid, force);
4228e8bc
CC
424}
425
54b0c1e0
CC
426int cmd_replace(int argc, const char **argv, const char *prefix)
427{
70c7bd6d 428 int force = 0;
2deda629 429 int raw = 0;
44f9f850 430 const char *format = NULL;
70c7bd6d
JK
431 enum {
432 MODE_UNSPECIFIED = 0,
433 MODE_LIST,
434 MODE_DELETE,
b892bb45 435 MODE_EDIT,
4228e8bc 436 MODE_GRAFT,
70c7bd6d
JK
437 MODE_REPLACE
438 } cmdmode = MODE_UNSPECIFIED;
54b0c1e0 439 struct option options[] = {
70c7bd6d
JK
440 OPT_CMDMODE('l', "list", &cmdmode, N_("list replace refs"), MODE_LIST),
441 OPT_CMDMODE('d', "delete", &cmdmode, N_("delete replace refs"), MODE_DELETE),
b892bb45 442 OPT_CMDMODE('e', "edit", &cmdmode, N_("edit existing object"), MODE_EDIT),
4228e8bc 443 OPT_CMDMODE('g', "graft", &cmdmode, N_("change a commit's parents"), MODE_GRAFT),
1b354755
NTND
444 OPT_BOOL_F('f', "force", &force, N_("replace the ref if it exists"),
445 PARSE_OPT_NOCOMPLETE),
2deda629 446 OPT_BOOL(0, "raw", &raw, N_("do not pretty-print contents for --edit")),
44f9f850 447 OPT_STRING(0, "format", &format, N_("format"), N_("use this format")),
54b0c1e0
CC
448 OPT_END()
449 };
450
afc711b8 451 check_replace_refs = 0;
36b14370 452 git_config(git_default_config, NULL);
769a4fa4 453
451bb210 454 argc = parse_options(argc, argv, prefix, options, git_replace_usage, 0);
54b0c1e0 455
70c7bd6d
JK
456 if (!cmdmode)
457 cmdmode = argc ? MODE_REPLACE : MODE_LIST;
3f495f67 458
70c7bd6d 459 if (format && cmdmode != MODE_LIST)
3f495f67 460 usage_msg_opt("--format cannot be used when not listing",
44f9f850
CC
461 git_replace_usage, options);
462
4228e8bc
CC
463 if (force &&
464 cmdmode != MODE_REPLACE &&
465 cmdmode != MODE_EDIT &&
466 cmdmode != MODE_GRAFT)
70c7bd6d 467 usage_msg_opt("-f only makes sense when writing a replacement",
86af2caa 468 git_replace_usage, options);
bebdd271 469
2deda629
JK
470 if (raw && cmdmode != MODE_EDIT)
471 usage_msg_opt("--raw only makes sense with --edit",
472 git_replace_usage, options);
473
70c7bd6d
JK
474 switch (cmdmode) {
475 case MODE_DELETE:
54b0c1e0 476 if (argc < 1)
86af2caa
CC
477 usage_msg_opt("-d needs at least one argument",
478 git_replace_usage, options);
54b0c1e0 479 return for_each_replace_name(argv, delete_replace_ref);
54b0c1e0 480
70c7bd6d 481 case MODE_REPLACE:
bebdd271 482 if (argc != 2)
86af2caa
CC
483 usage_msg_opt("bad number of arguments",
484 git_replace_usage, options);
bebdd271 485 return replace_object(argv[0], argv[1], force);
bebdd271 486
b892bb45
JK
487 case MODE_EDIT:
488 if (argc != 1)
489 usage_msg_opt("-e needs exactly one argument",
490 git_replace_usage, options);
2deda629 491 return edit_and_replace(argv[0], force, raw);
b892bb45 492
4228e8bc
CC
493 case MODE_GRAFT:
494 if (argc < 1)
495 usage_msg_opt("-g needs at least one argument",
496 git_replace_usage, options);
497 return create_graft(argc, argv, force);
498
70c7bd6d
JK
499 case MODE_LIST:
500 if (argc > 1)
501 usage_msg_opt("only one pattern can be given with -l",
502 git_replace_usage, options);
503 return list_replace_refs(argv[0], format);
54b0c1e0 504
70c7bd6d
JK
505 default:
506 die("BUG: invalid cmdmode %d", (int)cmdmode);
507 }
54b0c1e0 508}