]> git.proxmox.com Git - libgit2.git/blame - src/libgit2/revert.c
Merge https://salsa.debian.org/debian/libgit2 into proxmox/bullseye
[libgit2.git] / src / libgit2 / revert.c
CommitLineData
300d192f
ET
1/*
2* Copyright (C) the libgit2 contributors. All rights reserved.
3*
4* This file is part of libgit2, distributed under the GNU GPL v2 with
5* a Linking Exception. For full terms see the included COPYING file.
6*/
7
8#include "common.h"
eae0bfdc 9
300d192f
ET
10#include "repository.h"
11#include "filebuf.h"
12#include "merge.h"
be8404a7 13#include "index.h"
300d192f
ET
14
15#include "git2/types.h"
16#include "git2/merge.h"
17#include "git2/revert.h"
18#include "git2/commit.h"
19#include "git2/sys/commit.h"
20
21#define GIT_REVERT_FILE_MODE 0666
22
23static int write_revert_head(
24 git_repository *repo,
300d192f
ET
25 const char *commit_oidstr)
26{
27 git_filebuf file = GIT_FILEBUF_INIT;
e579e0f7 28 git_str file_path = GIT_STR_INIT;
300d192f
ET
29 int error = 0;
30
e579e0f7 31 if ((error = git_str_joinpath(&file_path, repo->gitdir, GIT_REVERT_HEAD_FILE)) >= 0 &&
22a2d3d5 32 (error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_REVERT_FILE_MODE)) >= 0 &&
300d192f
ET
33 (error = git_filebuf_printf(&file, "%s\n", commit_oidstr)) >= 0)
34 error = git_filebuf_commit(&file);
35
36 if (error < 0)
37 git_filebuf_cleanup(&file);
38
e579e0f7 39 git_str_dispose(&file_path);
300d192f
ET
40
41 return error;
42}
43
44static int write_merge_msg(
45 git_repository *repo,
300d192f
ET
46 const char *commit_oidstr,
47 const char *commit_msgline)
48{
49 git_filebuf file = GIT_FILEBUF_INIT;
e579e0f7 50 git_str file_path = GIT_STR_INIT;
300d192f
ET
51 int error = 0;
52
e579e0f7 53 if ((error = git_str_joinpath(&file_path, repo->gitdir, GIT_MERGE_MSG_FILE)) < 0 ||
22a2d3d5 54 (error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_REVERT_FILE_MODE)) < 0 ||
300d192f
ET
55 (error = git_filebuf_printf(&file, "Revert \"%s\"\n\nThis reverts commit %s.\n",
56 commit_msgline, commit_oidstr)) < 0)
57 goto cleanup;
58
59 error = git_filebuf_commit(&file);
60
61cleanup:
62 if (error < 0)
63 git_filebuf_cleanup(&file);
64
e579e0f7 65 git_str_dispose(&file_path);
300d192f
ET
66
67 return error;
68}
69
70static int revert_normalize_opts(
71 git_repository *repo,
aa17c3c6
BS
72 git_revert_options *opts,
73 const git_revert_options *given,
300d192f
ET
74 const char *their_label)
75{
76 int error = 0;
094cfc29 77 unsigned int default_checkout_strategy = GIT_CHECKOUT_SAFE |
300d192f
ET
78 GIT_CHECKOUT_ALLOW_CONFLICTS;
79
80 GIT_UNUSED(repo);
81
82 if (given != NULL)
aa17c3c6 83 memcpy(opts, given, sizeof(git_revert_options));
300d192f 84 else {
aa17c3c6
BS
85 git_revert_options default_opts = GIT_REVERT_OPTIONS_INIT;
86 memcpy(opts, &default_opts, sizeof(git_revert_options));
300d192f
ET
87 }
88
89 if (!opts->checkout_opts.checkout_strategy)
90 opts->checkout_opts.checkout_strategy = default_checkout_strategy;
91
92 if (!opts->checkout_opts.our_label)
93 opts->checkout_opts.our_label = "HEAD";
94
95 if (!opts->checkout_opts.their_label)
96 opts->checkout_opts.their_label = their_label;
97
98 return error;
99}
100
bab0b9f2
ET
101static int revert_state_cleanup(git_repository *repo)
102{
103 const char *state_files[] = { GIT_REVERT_HEAD_FILE, GIT_MERGE_MSG_FILE };
104
105 return git_repository__cleanup_files(repo, state_files, ARRAY_SIZE(state_files));
106}
107
eac938d9
ET
108static int revert_seterr(git_commit *commit, const char *fmt)
109{
110 char commit_oidstr[GIT_OID_HEXSZ + 1];
111
112 git_oid_fmt(commit_oidstr, git_commit_id(commit));
113 commit_oidstr[GIT_OID_HEXSZ] = '\0';
114
ac3d33df 115 git_error_set(GIT_ERROR_REVERT, fmt, commit_oidstr);
eac938d9
ET
116
117 return -1;
118}
119
120int git_revert_commit(
121 git_index **out,
122 git_repository *repo,
123 git_commit *revert_commit,
124 git_commit *our_commit,
125 unsigned int mainline,
5aa2ac6d 126 const git_merge_options *merge_opts)
eac938d9
ET
127{
128 git_commit *parent_commit = NULL;
129 git_tree *parent_tree = NULL, *our_tree = NULL, *revert_tree = NULL;
130 int parent = 0, error = 0;
131
c25aa7cd
PP
132 GIT_ASSERT_ARG(out);
133 GIT_ASSERT_ARG(repo);
134 GIT_ASSERT_ARG(revert_commit);
135 GIT_ASSERT_ARG(our_commit);
eac938d9
ET
136
137 if (git_commit_parentcount(revert_commit) > 1) {
138 if (!mainline)
139 return revert_seterr(revert_commit,
909d5494 140 "mainline branch is not specified but %s is a merge commit");
eac938d9
ET
141
142 parent = mainline;
143 } else {
144 if (mainline)
145 return revert_seterr(revert_commit,
909d5494 146 "mainline branch specified but %s is not a merge commit");
eac938d9
ET
147
148 parent = git_commit_parentcount(revert_commit);
149 }
150
151 if (parent &&
152 ((error = git_commit_parent(&parent_commit, revert_commit, (parent - 1))) < 0 ||
153 (error = git_commit_tree(&parent_tree, parent_commit)) < 0))
154 goto done;
155
156 if ((error = git_commit_tree(&revert_tree, revert_commit)) < 0 ||
157 (error = git_commit_tree(&our_tree, our_commit)) < 0)
158 goto done;
159
5aa2ac6d 160 error = git_merge_trees(out, repo, revert_tree, our_tree, parent_tree, merge_opts);
eac938d9
ET
161
162done:
163 git_tree_free(parent_tree);
164 git_tree_free(our_tree);
165 git_tree_free(revert_tree);
166 git_commit_free(parent_commit);
167
168 return error;
169}
170
300d192f
ET
171int git_revert(
172 git_repository *repo,
173 git_commit *commit,
aa17c3c6 174 const git_revert_options *given_opts)
300d192f 175{
aa17c3c6 176 git_revert_options opts;
eac938d9
ET
177 git_reference *our_ref = NULL;
178 git_commit *our_commit = NULL;
300d192f
ET
179 char commit_oidstr[GIT_OID_HEXSZ + 1];
180 const char *commit_msg;
e579e0f7 181 git_str their_label = GIT_STR_INIT;
41fae48d 182 git_index *index = NULL;
be8404a7 183 git_indexwriter indexwriter = GIT_INDEXWRITER_INIT;
eac938d9 184 int error;
300d192f 185
c25aa7cd
PP
186 GIT_ASSERT_ARG(repo);
187 GIT_ASSERT_ARG(commit);
300d192f 188
ac3d33df 189 GIT_ERROR_CHECK_VERSION(given_opts, GIT_REVERT_OPTIONS_VERSION, "git_revert_options");
86a05ef3 190
300d192f
ET
191 if ((error = git_repository__ensure_not_bare(repo, "revert")) < 0)
192 return error;
193
194 git_oid_fmt(commit_oidstr, git_commit_id(commit));
195 commit_oidstr[GIT_OID_HEXSZ] = '\0';
196
197 if ((commit_msg = git_commit_summary(commit)) == NULL) {
198 error = -1;
199 goto on_error;
200 }
201
e579e0f7
MB
202 if ((error = git_str_printf(&their_label, "parent of %.7s... %s", commit_oidstr, commit_msg)) < 0 ||
203 (error = revert_normalize_opts(repo, &opts, given_opts, git_str_cstr(&their_label))) < 0 ||
41fae48d
ET
204 (error = git_indexwriter_init_for_operation(&indexwriter, repo, &opts.checkout_opts.checkout_strategy)) < 0 ||
205 (error = write_revert_head(repo, commit_oidstr)) < 0 ||
5588f073 206 (error = write_merge_msg(repo, commit_oidstr, commit_msg)) < 0 ||
eac938d9 207 (error = git_repository_head(&our_ref, repo)) < 0 ||
ac3d33df 208 (error = git_reference_peel((git_object **)&our_commit, our_ref, GIT_OBJECT_COMMIT)) < 0 ||
41fae48d
ET
209 (error = git_revert_commit(&index, repo, commit, our_commit, opts.mainline, &opts.merge_opts)) < 0 ||
210 (error = git_merge__check_result(repo, index)) < 0 ||
211 (error = git_merge__append_conflicts_to_merge_msg(repo, index)) < 0 ||
212 (error = git_checkout_index(repo, index, &opts.checkout_opts)) < 0 ||
213 (error = git_indexwriter_commit(&indexwriter)) < 0)
300d192f
ET
214 goto on_error;
215
216 goto done;
217
218on_error:
bab0b9f2 219 revert_state_cleanup(repo);
300d192f
ET
220
221done:
be8404a7
ET
222 git_indexwriter_cleanup(&indexwriter);
223 git_index_free(index);
eac938d9
ET
224 git_commit_free(our_commit);
225 git_reference_free(our_ref);
e579e0f7 226 git_str_dispose(&their_label);
300d192f
ET
227
228 return error;
229}
b9f81997 230
22a2d3d5 231int git_revert_options_init(git_revert_options *opts, unsigned int version)
b9f81997 232{
bc91347b
RB
233 GIT_INIT_STRUCTURE_FROM_TEMPLATE(
234 opts, version, git_revert_options, GIT_REVERT_OPTIONS_INIT);
235 return 0;
b9f81997 236}
22a2d3d5
UG
237
238#ifndef GIT_DEPRECATE_HARD
239int git_revert_init_options(git_revert_options *opts, unsigned int version)
240{
241 return git_revert_options_init(opts, version);
242}
243#endif