blob: c2ac9250fe92c21f1678ffd70e7a652c83126007 [file] [log] [blame]
Junio C Hamanobe3cfa82005-04-26 09:25:05 -07001/*
2 * Copyright (C) 2005 Junio C Hamano
3 */
Junio C Hamano86436c22005-04-25 18:22:47 -07004#include "cache.h"
Junio C Hamano6fb737b2005-07-07 23:58:32 -07005#include "quote.h"
Junio C Hamano6973dca2006-04-21 23:57:45 -07006#include "commit.h"
Junio C Hamano86436c22005-04-25 18:22:47 -07007#include "diff.h"
Junio C Hamano427dcb42005-05-21 02:39:09 -07008#include "diffcore.h"
Junio C Hamano6973dca2006-04-21 23:57:45 -07009#include "revision.h"
Junio C Hamano1cfe7732007-01-30 01:11:08 -080010#include "cache-tree.h"
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -080011#include "unpack-trees.h"
Junio C Hamano948dd342008-03-30 17:29:48 -070012#include "refs.h"
Jens Lehmannee6fc512010-01-16 18:42:24 +010013#include "submodule.h"
Nguyễn Thái Ngọc Duy429bb402014-01-24 20:40:28 +070014#include "dir.h"
Ben Peart883e2482017-09-22 12:35:40 -040015#include "fsmonitor.h"
Denton Liu177a8302020-09-20 04:22:23 -070016#include "commit-reach.h"
Junio C Hamano427dcb42005-05-21 02:39:09 -070017
Junio C Hamanob46f0b62005-05-04 01:45:24 -070018/*
Junio C Hamano6973dca2006-04-21 23:57:45 -070019 * diff-files
Junio C Hamanob46f0b62005-05-04 01:45:24 -070020 */
Junio C Hamano6973dca2006-04-21 23:57:45 -070021
Junio C Hamano948dd342008-03-30 17:29:48 -070022/*
Junio C Hamano1392a372008-05-03 17:04:42 -070023 * Has the work tree entity been removed?
24 *
25 * Return 1 if it was removed from the work tree, 0 if an entity to be
26 * compared with the cache entry ce still exists (the latter includes
27 * the case where a directory that is not a submodule repository
28 * exists for ce that is a submodule -- it is a submodule that is not
29 * checked out). Return negative for an error.
Junio C Hamano948dd342008-03-30 17:29:48 -070030 */
Nipunn Koorapati0ec99492021-03-17 21:22:22 +000031static int check_removed(const struct index_state *istate, const struct cache_entry *ce, struct stat *st)
Junio C Hamano948dd342008-03-30 17:29:48 -070032{
Nipunn Koorapati0ec99492021-03-17 21:22:22 +000033 assert(is_fsmonitor_refreshed(istate));
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +000034 if (!(ce->ce_flags & CE_FSMONITOR_VALID) && lstat(ce->name, st) < 0) {
Junio C Hamanoc7054202017-05-30 09:23:33 +090035 if (!is_missing_file_error(errno))
Junio C Hamano948dd342008-03-30 17:29:48 -070036 return -1;
37 return 1;
38 }
Kjetil Barvik57199892009-02-09 21:54:06 +010039 if (has_symlink_leading_path(ce->name, ce_namelen(ce)))
Junio C Hamano948dd342008-03-30 17:29:48 -070040 return 1;
41 if (S_ISDIR(st->st_mode)) {
brian m. carlson1053fe82017-10-15 22:07:06 +000042 struct object_id sub;
Junio C Hamano1392a372008-05-03 17:04:42 -070043
44 /*
45 * If ce is already a gitlink, we can have a plain
46 * directory (i.e. the submodule is not checked out),
47 * or a checked out submodule. Either case this is not
48 * a case where something was removed from the work tree,
49 * so we will return 0.
50 *
51 * Otherwise, if the directory is not a submodule
52 * repository, that means ce which was a blob turned into
53 * a directory --- the blob was removed!
54 */
55 if (!S_ISGITLINK(ce->ce_mode) &&
brian m. carlsona98e6102017-10-15 22:07:07 +000056 resolve_gitlink_ref(ce->name, "HEAD", &sub))
Junio C Hamano948dd342008-03-30 17:29:48 -070057 return 1;
58 }
59 return 0;
60}
Johannes Schindelind516c2d2007-02-22 21:50:10 +010061
Jens Lehmannae6d5c12010-03-11 22:50:25 +010062/*
63 * Has a file changed or has a submodule new commits or a dirty work tree?
64 *
65 * Return 1 when changes are detected, 0 otherwise. If the DIRTY_SUBMODULES
66 * option is set, the caller does not only want to know if a submodule is
67 * modified at all but wants to know all the conditions that are met (new
68 * commits, untracked content and/or modified content).
69 */
70static int match_stat_with_submodule(struct diff_options *diffopt,
René Scharfeeb9ae4b2013-06-02 17:46:55 +020071 const struct cache_entry *ce,
72 struct stat *st, unsigned ce_option,
73 unsigned *dirty_submodule)
Jens Lehmannae6d5c12010-03-11 22:50:25 +010074{
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +020075 int changed = ie_match_stat(diffopt->repo->index, ce, st, ce_option);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020076 if (S_ISGITLINK(ce->ce_mode)) {
Brandon Williams02f2f562017-10-31 11:19:05 -070077 struct diff_flags orig_flags = diffopt->flags;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070078 if (!diffopt->flags.override_submodule_config)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020079 set_diffopt_flags_from_submodule_config(diffopt, ce->name);
Brandon Williams0d1e0e72017-10-31 11:19:11 -070080 if (diffopt->flags.ignore_submodules)
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020081 changed = 0;
Brandon Williams0d1e0e72017-10-31 11:19:11 -070082 else if (!diffopt->flags.ignore_dirty_submodules &&
83 (!changed || diffopt->flags.dirty_submodules))
Brandon Williams3b69dae2017-10-31 11:19:08 -070084 *dirty_submodule = is_submodule_modified(ce->name,
Brandon Williams0d1e0e72017-10-31 11:19:11 -070085 diffopt->flags.ignore_untracked_in_submodules);
Jens Lehmannaee9c7d2010-08-06 00:39:25 +020086 diffopt->flags = orig_flags;
Jens Lehmannae6d5c12010-03-11 22:50:25 +010087 }
88 return changed;
89}
90
Junio C Hamano4bd5b7d2007-11-10 00:15:03 -080091int run_diff_files(struct rev_info *revs, unsigned int option)
Junio C Hamanob46f0b62005-05-04 01:45:24 -070092{
Junio C Hamano6973dca2006-04-21 23:57:45 -070093 int entries, i;
94 int diff_unmerged_stage = revs->max_count;
Junio C Hamanofb63d7f2007-11-09 18:22:52 -080095 unsigned ce_option = ((option & DIFF_RACY_IS_MODIFIED)
96 ? CE_MATCH_RACY_IS_DIRTY : 0);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +070097 uint64_t start = getnanotime();
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +020098 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamano5c975582005-05-19 03:32:35 -070099
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700100 diff_set_mnemonic_prefix(&revs->diffopt, "i/", "w/");
101
Alex Vandiverc9052a82020-10-20 13:40:58 +0000102 refresh_fsmonitor(istate);
103
Junio C Hamano6973dca2006-04-21 23:57:45 -0700104 if (diff_unmerged_stage < 0)
105 diff_unmerged_stage = 2;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200106 entries = istate->cache_nr;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700107 for (i = 0; i < entries; i++) {
Junio C Hamano6973dca2006-04-21 23:57:45 -0700108 unsigned int oldmode, newmode;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200109 struct cache_entry *ce = istate->cache[i];
Junio C Hamano6973dca2006-04-21 23:57:45 -0700110 int changed;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100111 unsigned dirty_submodule = 0;
Brandon Williams55497b82017-05-30 10:30:48 -0700112 const struct object_id *old_oid, *new_oid;
Junio C Hamanof0c6b2a2005-05-27 15:56:38 -0700113
Junio C Hamano28b92642011-05-31 09:14:17 -0700114 if (diff_can_quit_early(&revs->diffopt))
Junio C Hamano822cac02007-03-14 11:12:51 -0700115 break;
116
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200117 if (!ce_path_match(istate, ce, &revs->prune_data, NULL))
Linus Torvalds8676eb42006-02-26 15:51:24 -0800118 continue;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800119
Junio C Hamano6973dca2006-04-21 23:57:45 -0700120 if (ce_stage(ce)) {
Florian Forsterb4b15502006-06-18 17:18:05 +0200121 struct combine_diff_path *dpath;
Junio C Hamano095ce952011-04-22 16:19:27 -0700122 struct diff_filepair *pair;
123 unsigned int wt_mode = 0;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700124 int num_compare_stages = 0;
Florian Forsterb4b15502006-06-18 17:18:05 +0200125 size_t path_len;
Jeff King53048102014-05-14 18:13:06 -0400126 struct stat st;
Linus Torvalds8676eb42006-02-26 15:51:24 -0800127
Florian Forsterb4b15502006-06-18 17:18:05 +0200128 path_len = ce_namelen(ce);
129
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800130 dpath = xmalloc(combine_diff_path_size(5, path_len));
Florian Forsterb4b15502006-06-18 17:18:05 +0200131 dpath->path = (char *) &(dpath->parent[5]);
132
133 dpath->next = NULL;
Florian Forsterb4b15502006-06-18 17:18:05 +0200134 memcpy(dpath->path, ce->name, path_len);
135 dpath->path[path_len] = '\0';
brian m. carlson1ff57c12015-03-13 23:39:33 +0000136 oidclr(&dpath->oid);
Florian Forsterb4b15502006-06-18 17:18:05 +0200137 memset(&(dpath->parent[0]), 0,
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800138 sizeof(struct combine_diff_parent)*5);
139
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000140 changed = check_removed(istate, ce, &st);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700141 if (!changed)
Junio C Hamano095ce952011-04-22 16:19:27 -0700142 wt_mode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700143 else {
144 if (changed < 0) {
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800145 perror(ce->name);
146 continue;
147 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700148 wt_mode = 0;
Junio C Hamano4fc970c2007-02-25 22:24:47 -0800149 }
Junio C Hamano095ce952011-04-22 16:19:27 -0700150 dpath->mode = wt_mode;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700151
Junio C Hamano6973dca2006-04-21 23:57:45 -0700152 while (i < entries) {
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200153 struct cache_entry *nce = istate->cache[i];
Junio C Hamano6973dca2006-04-21 23:57:45 -0700154 int stage;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700155
Junio C Hamano6973dca2006-04-21 23:57:45 -0700156 if (strcmp(ce->name, nce->name))
157 break;
Junio C Hamanobe3cfa82005-04-26 09:25:05 -0700158
Junio C Hamano6973dca2006-04-21 23:57:45 -0700159 /* Stage #2 (ours) is the first parent,
160 * stage #3 (theirs) is the second.
161 */
162 stage = ce_stage(nce);
163 if (2 <= stage) {
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800164 int mode = nce->ce_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700165 num_compare_stages++;
brian m. carlson99d1a982016-09-05 20:07:52 +0000166 oidcpy(&dpath->parent[stage - 2].oid,
167 &nce->oid);
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800168 dpath->parent[stage-2].mode = ce_mode_from_stat(nce, mode);
Florian Forsterb4b15502006-06-18 17:18:05 +0200169 dpath->parent[stage-2].status =
Junio C Hamano6973dca2006-04-21 23:57:45 -0700170 DIFF_STATUS_MODIFIED;
171 }
Junio C Hamanocebff982006-03-25 23:12:17 -0800172
Junio C Hamano6973dca2006-04-21 23:57:45 -0700173 /* diff against the proper unmerged stage */
174 if (stage == diff_unmerged_stage)
175 ce = nce;
176 i++;
H. Peter Anvin1b1480f2005-11-21 14:17:12 -0800177 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700178 /*
179 * Compensate for loop update
180 */
181 i--;
Junio C Hamano0e3994f2005-06-03 01:37:54 -0700182
Junio C Hamano6973dca2006-04-21 23:57:45 -0700183 if (revs->combine_merges && num_compare_stages == 2) {
Sergey Organovd01141d2020-09-29 14:31:22 +0300184 show_combined_diff(dpath, 2, revs);
Florian Forsterb4b15502006-06-18 17:18:05 +0200185 free(dpath);
Junio C Hamano15d061b2005-05-27 15:55:55 -0700186 continue;
187 }
Ævar Arnfjörð Bjarmason6a83d902017-06-15 23:15:46 +0000188 FREE_AND_NULL(dpath);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700189
190 /*
191 * Show the diff for the 'ce' if we found the one
192 * from the desired stage.
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700193 */
Junio C Hamano095ce952011-04-22 16:19:27 -0700194 pair = diff_unmerge(&revs->diffopt, ce->name);
195 if (wt_mode)
196 pair->two->mode = wt_mode;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700197 if (ce_stage(ce) != diff_unmerged_stage)
198 continue;
199 }
200
Junio C Hamano125fd982010-01-24 00:10:20 -0800201 if (ce_uptodate(ce) || ce_skip_worktree(ce))
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800202 continue;
Junio C Hamanof58dbf22008-03-30 17:30:08 -0700203
Alex Vandiverc9052a82020-10-20 13:40:58 +0000204 /*
205 * When CE_VALID is set (via "update-index --assume-unchanged"
206 * or via adding paths while core.ignorestat is set to true),
207 * the user has promised that the working tree file for that
208 * path will not be modified. When CE_FSMONITOR_VALID is true,
209 * the fsmonitor knows that the path hasn't been modified since
210 * we refreshed the cached stat information. In either case,
211 * we do not have to stat to see if the path has been removed
212 * or modified.
213 */
214 if (ce->ce_flags & (CE_VALID | CE_FSMONITOR_VALID)) {
Jeff King53048102014-05-14 18:13:06 -0400215 changed = 0;
216 newmode = ce->ce_mode;
217 } else {
218 struct stat st;
219
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000220 changed = check_removed(istate, ce, &st);
Jeff King53048102014-05-14 18:13:06 -0400221 if (changed) {
222 if (changed < 0) {
223 perror(ce->name);
224 continue;
225 }
226 diff_addremove(&revs->diffopt, '-', ce->ce_mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700227 &ce->oid,
brian m. carlson99d1a982016-09-05 20:07:52 +0000228 !is_null_oid(&ce->oid),
Jeff King53048102014-05-14 18:13:06 -0400229 ce->name, 0);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700230 continue;
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700231 } else if (revs->diffopt.ita_invisible_in_index &&
232 ce_intent_to_add(ce)) {
Raymond E. Pascocb0dd222020-08-08 03:53:23 -0400233 newmode = ce_mode_from_stat(ce, st.st_mode);
234 diff_addremove(&revs->diffopt, '+', newmode,
brian m. carlson14228442021-04-26 01:02:56 +0000235 null_oid(), 0, ce->name, 0);
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700236 continue;
Junio C Hamano25d5ea42005-05-24 01:10:48 -0700237 }
Jeff King53048102014-05-14 18:13:06 -0400238
239 changed = match_stat_with_submodule(&revs->diffopt, ce, &st,
240 ce_option, &dirty_submodule);
241 newmode = ce_mode_from_stat(ce, st.st_mode);
Junio C Hamanobceafe72005-05-23 18:14:03 -0700242 }
Jeff King53048102014-05-14 18:13:06 -0400243
Jens Lehmann85adbf22010-03-12 22:23:52 +0100244 if (!changed && !dirty_submodule) {
Junio C Hamano8fa29602008-03-30 12:39:25 -0700245 ce_mark_uptodate(ce);
Johannes Schindelinb5a81692019-05-24 05:23:48 -0700246 mark_fsmonitor_valid(istate, ce);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700247 if (!revs->diffopt.flags.find_copies_harder)
Junio C Hamano8fa29602008-03-30 12:39:25 -0700248 continue;
249 }
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800250 oldmode = ce->ce_mode;
Brandon Williams55497b82017-05-30 10:30:48 -0700251 old_oid = &ce->oid;
brian m. carlson14228442021-04-26 01:02:56 +0000252 new_oid = changed ? null_oid() : &ce->oid;
Junio C Hamano6973dca2006-04-21 23:57:45 -0700253 diff_change(&revs->diffopt, oldmode, newmode,
Brandon Williams94a00972017-05-30 10:30:49 -0700254 old_oid, new_oid,
Brandon Williams55497b82017-05-30 10:30:48 -0700255 !is_null_oid(old_oid),
256 !is_null_oid(new_oid),
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100257 ce->name, 0, dirty_submodule);
Junio C Hamano6973dca2006-04-21 23:57:45 -0700258
Junio C Hamanobceafe72005-05-23 18:14:03 -0700259 }
Junio C Hamano6973dca2006-04-21 23:57:45 -0700260 diffcore_std(&revs->diffopt);
261 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyca54d9b2018-01-27 19:27:56 +0700262 trace_performance_since(start, "diff-files");
Junio C Hamano6973dca2006-04-21 23:57:45 -0700263 return 0;
Junio C Hamanobceafe72005-05-23 18:14:03 -0700264}
265
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700266/*
267 * diff-index
268 */
269
270/* A file entry went away or appeared */
271static void diff_index_show_file(struct rev_info *revs,
272 const char *prefix,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200273 const struct cache_entry *ce,
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700274 const struct object_id *oid, int oid_valid,
Jeff Kinge5450102012-07-28 11:03:01 -0400275 unsigned int mode,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100276 unsigned dirty_submodule)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700277{
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800278 diff_addremove(&revs->diffopt, prefix[0], mode,
Brandon Williamsc26022e2017-05-30 10:30:47 -0700279 oid, oid_valid, ce->name, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700280}
281
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000282static int get_stat_data(const struct index_state *istate,
283 const struct cache_entry *ce,
Brandon Williams362d7652017-05-30 10:30:45 -0700284 const struct object_id **oidp,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700285 unsigned int *modep,
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100286 int cached, int match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100287 unsigned *dirty_submodule, struct diff_options *diffopt)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700288{
Brandon Williams362d7652017-05-30 10:30:45 -0700289 const struct object_id *oid = &ce->oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700290 unsigned int mode = ce->ce_mode;
291
Linus Torvalds658dd482009-05-09 14:57:30 -0700292 if (!cached && !ce_uptodate(ce)) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700293 int changed;
294 struct stat st;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000295 changed = check_removed(istate, ce, &st);
Junio C Hamano948dd342008-03-30 17:29:48 -0700296 if (changed < 0)
297 return -1;
298 else if (changed) {
299 if (match_missing) {
Brandon Williams362d7652017-05-30 10:30:45 -0700300 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700301 *modep = mode;
302 return 0;
303 }
304 return -1;
305 }
Jens Lehmannae6d5c12010-03-11 22:50:25 +0100306 changed = match_stat_with_submodule(diffopt, ce, &st,
307 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700308 if (changed) {
Junio C Hamano185c9752007-02-16 22:43:48 -0800309 mode = ce_mode_from_stat(ce, st.st_mode);
brian m. carlson14228442021-04-26 01:02:56 +0000310 oid = null_oid();
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700311 }
312 }
313
Brandon Williams362d7652017-05-30 10:30:45 -0700314 *oidp = oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700315 *modep = mode;
316 return 0;
317}
318
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100319static void show_new_file(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800320 const struct cache_entry *new_file,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700321 int cached, int match_missing)
322{
Brandon Williams362d7652017-05-30 10:30:45 -0700323 const struct object_id *oid;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700324 unsigned int mode;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100325 unsigned dirty_submodule = 0;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000326 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700327
Junio C Hamano948dd342008-03-30 17:29:48 -0700328 /*
329 * New file in the index: it might actually be different in
Carlos Martín Nietof7d650c2011-09-20 22:25:57 +0200330 * the working tree.
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700331 */
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000332 if (get_stat_data(istate, new_file, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100333 &dirty_submodule, &revs->diffopt) < 0)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700334 return;
335
Brandon Williamse36ede22018-02-14 10:59:38 -0800336 diff_index_show_file(revs, "+", new_file, oid, !is_null_oid(oid), mode, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700337}
338
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100339static int show_modified(struct rev_info *revs,
Brandon Williamse36ede22018-02-14 10:59:38 -0800340 const struct cache_entry *old_entry,
341 const struct cache_entry *new_entry,
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700342 int report_missing,
343 int cached, int match_missing)
344{
345 unsigned int mode, oldmode;
Brandon Williams362d7652017-05-30 10:30:45 -0700346 const struct object_id *oid;
Jens Lehmanne3d42c42010-01-18 21:26:18 +0100347 unsigned dirty_submodule = 0;
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000348 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700349
Nipunn Koorapati0ec99492021-03-17 21:22:22 +0000350 if (get_stat_data(istate, new_entry, &oid, &mode, cached, match_missing,
Jens Lehmann4d344772010-01-23 17:37:26 +0100351 &dirty_submodule, &revs->diffopt) < 0) {
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700352 if (report_missing)
Brandon Williamse36ede22018-02-14 10:59:38 -0800353 diff_index_show_file(revs, "-", old_entry,
354 &old_entry->oid, 1, old_entry->ce_mode,
brian m. carlson99d1a982016-09-05 20:07:52 +0000355 0);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700356 return -1;
357 }
358
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000359 if (revs->combine_merges && !cached &&
Jeff King9001dc22018-08-28 17:22:48 -0400360 (!oideq(oid, &old_entry->oid) || !oideq(&old_entry->oid, &new_entry->oid))) {
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000361 struct combine_diff_path *p;
Brandon Williamse36ede22018-02-14 10:59:38 -0800362 int pathlen = ce_namelen(new_entry);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000363
364 p = xmalloc(combine_diff_path_size(2, pathlen));
365 p->path = (char *) &p->parent[2];
366 p->next = NULL;
Brandon Williamse36ede22018-02-14 10:59:38 -0800367 memcpy(p->path, new_entry->name, pathlen);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000368 p->path[pathlen] = 0;
Linus Torvalds7a51ed62008-01-14 16:03:17 -0800369 p->mode = mode;
brian m. carlson1ff57c12015-03-13 23:39:33 +0000370 oidclr(&p->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000371 memset(p->parent, 0, 2 * sizeof(struct combine_diff_parent));
372 p->parent[0].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800373 p->parent[0].mode = new_entry->ce_mode;
374 oidcpy(&p->parent[0].oid, &new_entry->oid);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000375 p->parent[1].status = DIFF_STATUS_MODIFIED;
Brandon Williamse36ede22018-02-14 10:59:38 -0800376 p->parent[1].mode = old_entry->ce_mode;
377 oidcpy(&p->parent[1].oid, &old_entry->oid);
Sergey Organovd01141d2020-09-29 14:31:22 +0300378 show_combined_diff(p, 2, revs);
Paul Mackerrascb2b9f52006-09-04 21:38:40 +1000379 free(p);
380 return 0;
381 }
382
Brandon Williamse36ede22018-02-14 10:59:38 -0800383 oldmode = old_entry->ce_mode;
Jeff King4a7e27e2018-08-28 17:22:40 -0400384 if (mode == oldmode && oideq(oid, &old_entry->oid) && !dirty_submodule &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700385 !revs->diffopt.flags.find_copies_harder)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700386 return 0;
387
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700388 diff_change(&revs->diffopt, oldmode, mode,
Brandon Williamse36ede22018-02-14 10:59:38 -0800389 &old_entry->oid, oid, 1, !is_null_oid(oid),
390 old_entry->name, 0, dirty_submodule);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700391 return 0;
392}
393
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700394/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800395 * This gets a mix of an existing index and a tree, one pathname entry
396 * at a time. The index entry may be a single stage-0 one, but it could
397 * also be multiple unmerged entries (in which case idx_pos/idx_nr will
398 * give you the position and number of entries in the index).
399 */
400static void do_oneway_diff(struct unpack_trees_options *o,
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200401 const struct cache_entry *idx,
402 const struct cache_entry *tree)
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700403{
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100404 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800405 int match_missing, cached;
Junio C Hamano5c21ac02006-04-22 03:58:04 -0700406
Nguyễn Thái Ngọc Duyba4e3562018-05-26 14:08:43 +0200407 /*
408 * i-t-a entries do not actually exist in the index (if we're
409 * looking at its content)
410 */
411 if (o->index_only &&
412 revs->diffopt.ita_invisible_in_index &&
Nguyễn Thái Ngọc Duy425a28e2016-10-24 17:42:19 +0700413 idx && ce_intent_to_add(idx)) {
414 idx = NULL;
415 if (!tree)
416 return; /* nothing to diff.. */
417 }
418
Nguyễn Thái Ngọc Duy540e6942009-08-11 22:43:59 +0700419 /* if the entry is not checked out, don't examine work tree */
Nguyễn Thái Ngọc Duyb4d16902009-08-20 20:46:58 +0700420 cached = o->index_only ||
421 (idx && ((idx->ce_flags & CE_VALID) || ce_skip_worktree(idx)));
Sergey Organov572fc9a2020-08-31 23:14:22 +0300422
423 match_missing = revs->match_missing;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800424
425 if (cached && idx && ce_stage(idx)) {
Junio C Hamanofa7b2902011-04-22 16:05:58 -0700426 struct diff_filepair *pair;
427 pair = diff_unmerge(&revs->diffopt, idx->name);
Junio C Hamanoff00b682011-07-13 21:36:29 -0700428 if (tree)
Brandon Williamsf9704c22017-05-30 10:30:50 -0700429 fill_filespec(pair->one, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000430 tree->ce_mode);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800431 return;
432 }
433
434 /*
435 * Something added to the tree?
436 */
437 if (!tree) {
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100438 show_new_file(revs, idx, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800439 return;
440 }
441
442 /*
443 * Something removed from the tree?
444 */
445 if (!idx) {
Brandon Williamsfcf2cfb2017-05-30 10:30:46 -0700446 diff_index_show_file(revs, "-", tree, &tree->oid, 1,
brian m. carlson99d1a982016-09-05 20:07:52 +0000447 tree->ce_mode, 0);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800448 return;
449 }
450
451 /* Show difference between old and new */
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100452 show_modified(revs, tree, idx, 1, cached, match_missing);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800453}
454
455/*
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800456 * The unpack_trees() interface is designed for merging, so
457 * the different source entries are designed primarily for
458 * the source trees, with the old index being really mainly
459 * used for being replaced by the result.
460 *
461 * For diffing, the index is more important, and we only have a
462 * single tree.
463 *
Junio C Hamanoda8ba5e2009-09-17 22:12:17 -0700464 * We're supposed to advance o->pos to skip what we have already processed.
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800465 *
466 * This wrapper makes it all more readable, and takes care of all
467 * the fairly complex unpack_trees() semantic requirements, including
468 * the skipping, the path matching, the type conflict cases etc.
469 */
René Scharfe5828e832013-06-02 17:46:56 +0200470static int oneway_diff(const struct cache_entry * const *src,
471 struct unpack_trees_options *o)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800472{
René Scharfeeb9ae4b2013-06-02 17:46:55 +0200473 const struct cache_entry *idx = src[0];
474 const struct cache_entry *tree = src[1];
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100475 struct rev_info *revs = o->unpack_data;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800476
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800477 /*
478 * Unpack-trees generates a DF/conflict entry if
479 * there was a directory in the index and a tree
480 * in the tree. From a diff standpoint, that's a
481 * delete of the tree and a create of the file.
482 */
483 if (tree == o->df_conflict_entry)
484 tree = NULL;
485
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200486 if (ce_path_match(revs->diffopt.repo->index,
487 idx ? idx : tree,
488 &revs->prune_data, NULL)) {
Linus Torvalds34110cd2008-03-06 18:12:28 -0800489 do_oneway_diff(o, idx, tree);
Junio C Hamanob4194822011-05-31 10:06:44 -0700490 if (diff_can_quit_early(&revs->diffopt)) {
491 o->exiting_early = 1;
492 return -1;
493 }
494 }
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800495
Linus Torvalds34110cd2008-03-06 18:12:28 -0800496 return 0;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800497}
498
Junio C Hamanobf979c02011-07-13 18:57:42 -0700499static int diff_cache(struct rev_info *revs,
brian m. carlson944cffb2017-05-06 22:10:35 +0000500 const struct object_id *tree_oid,
Junio C Hamanobf979c02011-07-13 18:57:42 -0700501 const char *tree_name,
502 int cached)
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800503{
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800504 struct tree *tree;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800505 struct tree_desc t;
Junio C Hamanobf979c02011-07-13 18:57:42 -0700506 struct unpack_trees_options opts;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700507
brian m. carlsona9dbc172017-05-06 22:10:37 +0000508 tree = parse_tree_indirect(tree_oid);
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700509 if (!tree)
Junio C Hamanobf979c02011-07-13 18:57:42 -0700510 return error("bad tree object %s",
brian m. carlson944cffb2017-05-06 22:10:35 +0000511 tree_name ? tree_name : oid_to_hex(tree_oid));
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800512 memset(&opts, 0, sizeof(opts));
513 opts.head_idx = 1;
514 opts.index_only = cached;
Junio C Hamanoa0919ce2009-05-22 23:14:25 -0700515 opts.diff_index_cached = (cached &&
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700516 !revs->diffopt.flags.find_copies_harder);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800517 opts.merge = 1;
518 opts.fn = oneway_diff;
Kjetil Barvikff7e6aa2009-01-11 19:36:42 +0100519 opts.unpack_data = revs;
Nguyễn Thái Ngọc Duy5adbb402018-09-21 17:57:26 +0200520 opts.src_index = revs->diffopt.repo->index;
Linus Torvalds34110cd2008-03-06 18:12:28 -0800521 opts.dst_index = NULL;
Junio C Hamano2f88c192011-08-29 13:34:08 -0700522 opts.pathspec = &revs->diffopt.pathspec;
Nguyen Thai Ngoc Duy48382372012-01-15 17:03:27 +0700523 opts.pathspec->recursive = 1;
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800524
525 init_tree_desc(&t, tree->buffer, tree->size);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700526 return unpack_trees(1, &t, &opts);
527}
528
Denton Liu177a8302020-09-20 04:22:23 -0700529void diff_get_merge_base(const struct rev_info *revs, struct object_id *mb)
530{
531 int i;
532 struct commit *mb_child[2] = {0};
533 struct commit_list *merge_bases;
534
535 for (i = 0; i < revs->pending.nr; i++) {
536 struct object *obj = revs->pending.objects[i].item;
537 if (obj->flags)
538 die(_("--merge-base does not work with ranges"));
539 if (obj->type != OBJ_COMMIT)
540 die(_("--merge-base only works with commits"));
541 }
542
543 /*
544 * This check must go after the for loop above because A...B
545 * ranges produce three pending commits, resulting in a
546 * misleading error message.
547 */
548 if (revs->pending.nr < 1 || revs->pending.nr > 2)
549 BUG("unexpected revs->pending.nr: %d", revs->pending.nr);
550
551 for (i = 0; i < revs->pending.nr; i++)
552 mb_child[i] = lookup_commit_reference(the_repository, &revs->pending.objects[i].item->oid);
553 if (revs->pending.nr == 1) {
554 struct object_id oid;
555
556 if (get_oid("HEAD", &oid))
557 die(_("unable to get HEAD"));
558
559 mb_child[1] = lookup_commit_reference(the_repository, &oid);
560 }
561
562 merge_bases = repo_get_merge_bases(the_repository, mb_child[0], mb_child[1]);
563 if (!merge_bases)
564 die(_("no merge base found"));
565 if (merge_bases->next)
566 die(_("multiple merge bases found"));
567
568 oidcpy(mb, &merge_bases->item->object.oid);
569
570 free_commit_list(merge_bases);
571}
572
Denton Liu4c3fe822020-09-20 04:22:22 -0700573int run_diff_index(struct rev_info *revs, unsigned int option)
Junio C Hamanobf979c02011-07-13 18:57:42 -0700574{
575 struct object_array_entry *ent;
Denton Liu4c3fe822020-09-20 04:22:22 -0700576 int cached = !!(option & DIFF_INDEX_CACHED);
Denton Liu0f5a1d42020-09-20 04:22:25 -0700577 int merge_base = !!(option & DIFF_INDEX_MERGE_BASE);
578 struct object_id oid;
579 const char *name;
580 char merge_base_hex[GIT_MAX_HEXSZ + 1];
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +0000581 struct index_state *istate = revs->diffopt.repo->index;
Junio C Hamanobf979c02011-07-13 18:57:42 -0700582
Jeff King3506dc92018-07-11 10:14:06 -0400583 if (revs->pending.nr != 1)
584 BUG("run_diff_index must be passed exactly one tree");
585
Nguyễn Thái Ngọc Duyc46c4062018-08-18 16:41:22 +0200586 trace_performance_enter();
Junio C Hamanobf979c02011-07-13 18:57:42 -0700587 ent = revs->pending.objects;
Denton Liu0f5a1d42020-09-20 04:22:25 -0700588
Nipunn Koorapati4f3d6d02021-03-17 21:22:21 +0000589 refresh_fsmonitor(istate);
590
Denton Liu0f5a1d42020-09-20 04:22:25 -0700591 if (merge_base) {
592 diff_get_merge_base(revs, &oid);
593 name = oid_to_hex_r(merge_base_hex, &oid);
594 } else {
595 oidcpy(&oid, &ent->item->oid);
596 name = ent->name;
597 }
598
599 if (diff_cache(revs, &oid, name, cached))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500600 exit(128);
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800601
Junio C Hamanoa5a818e2008-08-18 20:08:09 -0700602 diff_set_mnemonic_prefix(&revs->diffopt, "c/", cached ? "i/" : "w/");
Jeff King784c0da2019-02-14 00:48:03 -0500603 diffcore_fix_diff_index();
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700604 diffcore_std(&revs->diffopt);
605 diff_flush(&revs->diffopt);
Nguyễn Thái Ngọc Duyc46c4062018-08-18 16:41:22 +0200606 trace_performance_leave("diff-index");
Linus Torvaldsd1f2d7e2008-01-19 17:27:12 -0800607 return 0;
Junio C Hamanoe09ad6e2006-04-22 02:43:00 -0700608}
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800609
brian m. carlson944cffb2017-05-06 22:10:35 +0000610int do_diff_cache(const struct object_id *tree_oid, struct diff_options *opt)
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800611{
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800612 struct rev_info revs;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800613
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100614 repo_init_revisions(opt->repo, &revs, NULL);
Nguyễn Thái Ngọc Duy9a087272013-07-14 15:35:59 +0700615 copy_pathspec(&revs.prune_data, &opt->pathspec);
René Scharfed44e5262020-11-14 19:37:03 +0100616 diff_setup_done(&revs.diffopt);
Junio C Hamanobf979c02011-07-13 18:57:42 -0700617 revs.diffopt = *opt;
Johannes Schindelin204ce972008-01-20 15:19:56 +0000618
brian m. carlson944cffb2017-05-06 22:10:35 +0000619 if (diff_cache(&revs, tree_oid, NULL, 1))
Daniel Barkalow203a2fe2008-02-07 11:39:48 -0500620 exit(128);
René Scharfed44e5262020-11-14 19:37:03 +0100621 clear_pathspec(&revs.prune_data);
Johannes Schindelin204ce972008-01-20 15:19:56 +0000622 return 0;
Junio C Hamano1cfe7732007-01-30 01:11:08 -0800623}
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100624
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100625int index_differs_from(struct repository *r,
626 const char *def, const struct diff_flags *flags,
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700627 int ita_invisible_in_index)
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100628{
629 struct rev_info rev;
Junio C Hamano32962c92010-03-08 22:58:09 -0800630 struct setup_revision_opt opt;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100631
Nguyễn Thái Ngọc Duyffc00a42018-11-10 06:49:04 +0100632 repo_init_revisions(r, &rev, NULL);
Junio C Hamano32962c92010-03-08 22:58:09 -0800633 memset(&opt, 0, sizeof(opt));
634 opt.def = def;
635 setup_revisions(0, NULL, &rev, &opt);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700636 rev.diffopt.flags.quick = 1;
637 rev.diffopt.flags.exit_with_status = 1;
Brandon Williams02f2f562017-10-31 11:19:05 -0700638 if (flags)
639 diff_flags_or(&rev.diffopt.flags, flags);
Nguyễn Thái Ngọc Duy018ec3c2016-10-24 17:42:21 +0700640 rev.diffopt.ita_invisible_in_index = ita_invisible_in_index;
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100641 run_diff_index(&rev, 1);
Martin Ågrendcb572a2017-09-23 01:34:52 +0200642 object_array_clear(&rev.pending);
Brandon Williams0d1e0e72017-10-31 11:19:11 -0700643 return (rev.diffopt.flags.has_changes != 0);
Stephan Beyer75f3ff22009-02-10 15:30:35 +0100644}
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400645
646static struct strbuf *idiff_prefix_cb(struct diff_options *opt, void *data)
647{
648 return data;
649}
650
Eric Sunshine72a72392020-09-08 03:16:09 -0400651void show_interdiff(const struct object_id *oid1, const struct object_id *oid2,
652 int indent, struct diff_options *diffopt)
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400653{
654 struct diff_options opts;
655 struct strbuf prefix = STRBUF_INIT;
656
Eric Sunshine72a72392020-09-08 03:16:09 -0400657 memcpy(&opts, diffopt, sizeof(opts));
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400658 opts.output_format = DIFF_FORMAT_PATCH;
659 opts.output_prefix = idiff_prefix_cb;
660 strbuf_addchars(&prefix, ' ', indent);
661 opts.output_prefix_data = &prefix;
662 diff_setup_done(&opts);
663
Eric Sunshine72a72392020-09-08 03:16:09 -0400664 diff_tree_oid(oid1, oid2, "", &opts);
Eric Sunshinecdffbdc2020-09-08 03:16:08 -0400665 diffcore_std(&opts);
666 diff_flush(&opts);
667
668 strbuf_release(&prefix);
669}