Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
4 93658fb9 2020-03-18 stsp * Copyright (c) 2020 Ori Bernstein <ori@openbsd.org>
5 5c860e29 2018-03-12 stsp *
6 5c860e29 2018-03-12 stsp * Permission to use, copy, modify, and distribute this software for any
7 5c860e29 2018-03-12 stsp * purpose with or without fee is hereby granted, provided that the above
8 5c860e29 2018-03-12 stsp * copyright notice and this permission notice appear in all copies.
9 5c860e29 2018-03-12 stsp *
10 5c860e29 2018-03-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11 5c860e29 2018-03-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12 5c860e29 2018-03-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13 5c860e29 2018-03-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14 5c860e29 2018-03-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 5c860e29 2018-03-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 5c860e29 2018-03-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17 5c860e29 2018-03-12 stsp */
18 5c860e29 2018-03-12 stsp
19 f42b1b34 2018-03-12 stsp #include <sys/queue.h>
20 c0768b0f 2018-06-10 stsp #include <sys/types.h>
21 5de5890b 2018-10-18 stsp #include <sys/stat.h>
22 3c45a30a 2019-05-12 jcs #include <sys/param.h>
23 33ad4cbe 2019-05-12 jcs #include <sys/wait.h>
24 f42b1b34 2018-03-12 stsp
25 5c860e29 2018-03-12 stsp #include <err.h>
26 5c860e29 2018-03-12 stsp #include <errno.h>
27 12463d8b 2019-12-13 stsp #include <fcntl.h>
28 12ce7a6c 2019-08-12 stsp #include <limits.h>
29 5c860e29 2018-03-12 stsp #include <locale.h>
30 818c7501 2019-07-11 stsp #include <ctype.h>
31 99437157 2018-11-11 stsp #include <signal.h>
32 5c860e29 2018-03-12 stsp #include <stdio.h>
33 5c860e29 2018-03-12 stsp #include <stdlib.h>
34 5c860e29 2018-03-12 stsp #include <string.h>
35 5c860e29 2018-03-12 stsp #include <unistd.h>
36 c09a553d 2018-03-12 stsp #include <libgen.h>
37 c0768b0f 2018-06-10 stsp #include <time.h>
38 33ad4cbe 2019-05-12 jcs #include <paths.h>
39 6841bf13 2019-11-29 kn #include <regex.h>
40 83cd27f8 2020-01-13 stsp #include <getopt.h>
41 d2cdc636 2020-03-18 stsp #include <util.h>
42 5c860e29 2018-03-12 stsp
43 53ccebc2 2019-07-30 stsp #include "got_version.h"
44 f42b1b34 2018-03-12 stsp #include "got_error.h"
45 f42b1b34 2018-03-12 stsp #include "got_object.h"
46 5261c201 2018-04-01 stsp #include "got_reference.h"
47 f42b1b34 2018-03-12 stsp #include "got_repository.h"
48 1dd54920 2019-05-11 stsp #include "got_path.h"
49 e6209546 2019-08-22 stsp #include "got_cancel.h"
50 c09a553d 2018-03-12 stsp #include "got_worktree.h"
51 79109fed 2018-03-27 stsp #include "got_diff.h"
52 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
53 6f23baec 2020-03-18 stsp #include "got_fetch.h"
54 404c43c4 2018-06-21 stsp #include "got_blame.h"
55 63219cd2 2019-01-04 stsp #include "got_privsep.h"
56 793c30b5 2019-05-13 stsp #include "got_opentemp.h"
57 5c860e29 2018-03-12 stsp
58 5c860e29 2018-03-12 stsp #ifndef nitems
59 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
60 5c860e29 2018-03-12 stsp #endif
61 99437157 2018-11-11 stsp
62 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
63 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
64 99437157 2018-11-11 stsp
65 99437157 2018-11-11 stsp static void
66 99437157 2018-11-11 stsp catch_sigint(int signo)
67 99437157 2018-11-11 stsp {
68 99437157 2018-11-11 stsp sigint_received = 1;
69 99437157 2018-11-11 stsp }
70 99437157 2018-11-11 stsp
71 99437157 2018-11-11 stsp static void
72 99437157 2018-11-11 stsp catch_sigpipe(int signo)
73 99437157 2018-11-11 stsp {
74 99437157 2018-11-11 stsp sigpipe_received = 1;
75 99437157 2018-11-11 stsp }
76 5c860e29 2018-03-12 stsp
77 99437157 2018-11-11 stsp
78 8cfb4057 2019-07-09 stsp struct got_cmd {
79 5c860e29 2018-03-12 stsp const char *cmd_name;
80 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
81 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
82 97b3a7be 2019-07-09 stsp const char *cmd_alias;
83 5c860e29 2018-03-12 stsp };
84 5c860e29 2018-03-12 stsp
85 ce5b7c56 2019-07-09 stsp __dead static void usage(int);
86 2c7829a4 2019-06-17 stsp __dead static void usage_init(void);
87 3ce1b845 2019-07-15 stsp __dead static void usage_import(void);
88 93658fb9 2020-03-18 stsp __dead static void usage_clone(void);
89 7848a0e1 2020-03-19 stsp __dead static void usage_fetch(void);
90 2ab43947 2020-03-18 stsp __dead static void usage_checkout(void);
91 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
92 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
93 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
94 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
95 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
96 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
97 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
98 4e759de4 2019-06-26 stsp __dead static void usage_branch(void);
99 8e7bd50a 2019-08-22 stsp __dead static void usage_tag(void);
100 d00136be 2019-03-26 stsp __dead static void usage_add(void);
101 648e4ef7 2019-07-09 stsp __dead static void usage_remove(void);
102 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
103 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
104 234035bc 2019-06-01 stsp __dead static void usage_cherrypick(void);
105 5ef14e63 2019-06-02 stsp __dead static void usage_backout(void);
106 818c7501 2019-07-11 stsp __dead static void usage_rebase(void);
107 0ebf8283 2019-07-24 stsp __dead static void usage_histedit(void);
108 2822a352 2019-10-15 stsp __dead static void usage_integrate(void);
109 715dc77e 2019-08-03 stsp __dead static void usage_stage(void);
110 ad493afc 2019-08-03 stsp __dead static void usage_unstage(void);
111 01073a5d 2019-08-22 stsp __dead static void usage_cat(void);
112 5c860e29 2018-03-12 stsp
113 2c7829a4 2019-06-17 stsp static const struct got_error* cmd_init(int, char *[]);
114 3ce1b845 2019-07-15 stsp static const struct got_error* cmd_import(int, char *[]);
115 93658fb9 2020-03-18 stsp static const struct got_error* cmd_clone(int, char *[]);
116 7848a0e1 2020-03-19 stsp static const struct got_error* cmd_fetch(int, char *[]);
117 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
118 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
119 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
120 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
121 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
122 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
123 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
124 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
125 4e759de4 2019-06-26 stsp static const struct got_error* cmd_branch(int, char *[]);
126 8e7bd50a 2019-08-22 stsp static const struct got_error* cmd_tag(int, char *[]);
127 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
128 648e4ef7 2019-07-09 stsp static const struct got_error* cmd_remove(int, char *[]);
129 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
130 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
131 234035bc 2019-06-01 stsp static const struct got_error* cmd_cherrypick(int, char *[]);
132 5ef14e63 2019-06-02 stsp static const struct got_error* cmd_backout(int, char *[]);
133 818c7501 2019-07-11 stsp static const struct got_error* cmd_rebase(int, char *[]);
134 0ebf8283 2019-07-24 stsp static const struct got_error* cmd_histedit(int, char *[]);
135 2822a352 2019-10-15 stsp static const struct got_error* cmd_integrate(int, char *[]);
136 715dc77e 2019-08-03 stsp static const struct got_error* cmd_stage(int, char *[]);
137 ad493afc 2019-08-03 stsp static const struct got_error* cmd_unstage(int, char *[]);
138 01073a5d 2019-08-22 stsp static const struct got_error* cmd_cat(int, char *[]);
139 5c860e29 2018-03-12 stsp
140 8cfb4057 2019-07-09 stsp static struct got_cmd got_commands[] = {
141 bc26cce8 2019-08-04 stsp { "init", cmd_init, usage_init, "in" },
142 bc26cce8 2019-08-04 stsp { "import", cmd_import, usage_import, "im" },
143 93658fb9 2020-03-18 stsp { "clone", cmd_clone, usage_clone, "cl" },
144 7848a0e1 2020-03-19 stsp { "fetch", cmd_fetch, usage_fetch, "fe" },
145 2ab43947 2020-03-18 stsp { "checkout", cmd_checkout, usage_checkout, "co" },
146 97b3a7be 2019-07-09 stsp { "update", cmd_update, usage_update, "up" },
147 97b3a7be 2019-07-09 stsp { "log", cmd_log, usage_log, "" },
148 bc26cce8 2019-08-04 stsp { "diff", cmd_diff, usage_diff, "di" },
149 bc26cce8 2019-08-04 stsp { "blame", cmd_blame, usage_blame, "bl" },
150 bc26cce8 2019-08-04 stsp { "tree", cmd_tree, usage_tree, "tr" },
151 97b3a7be 2019-07-09 stsp { "status", cmd_status, usage_status, "st" },
152 97b3a7be 2019-07-09 stsp { "ref", cmd_ref, usage_ref, "" },
153 97b3a7be 2019-07-09 stsp { "branch", cmd_branch, usage_branch, "br" },
154 8e7bd50a 2019-08-22 stsp { "tag", cmd_tag, usage_tag, "" },
155 97b3a7be 2019-07-09 stsp { "add", cmd_add, usage_add, "" },
156 648e4ef7 2019-07-09 stsp { "remove", cmd_remove, usage_remove, "rm" },
157 97b3a7be 2019-07-09 stsp { "revert", cmd_revert, usage_revert, "rv" },
158 97b3a7be 2019-07-09 stsp { "commit", cmd_commit, usage_commit, "ci" },
159 016477fd 2019-07-09 stsp { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
160 97b3a7be 2019-07-09 stsp { "backout", cmd_backout, usage_backout, "bo" },
161 818c7501 2019-07-11 stsp { "rebase", cmd_rebase, usage_rebase, "rb" },
162 0ebf8283 2019-07-24 stsp { "histedit", cmd_histedit, usage_histedit, "he" },
163 2822a352 2019-10-15 stsp { "integrate", cmd_integrate, usage_integrate,"ig" },
164 715dc77e 2019-08-03 stsp { "stage", cmd_stage, usage_stage, "sg" },
165 ad493afc 2019-08-03 stsp { "unstage", cmd_unstage, usage_unstage, "ug" },
166 01073a5d 2019-08-22 stsp { "cat", cmd_cat, usage_cat, "" },
167 5c860e29 2018-03-12 stsp };
168 ce5b7c56 2019-07-09 stsp
169 ce5b7c56 2019-07-09 stsp static void
170 ce5b7c56 2019-07-09 stsp list_commands(void)
171 ce5b7c56 2019-07-09 stsp {
172 ce5b7c56 2019-07-09 stsp int i;
173 ce5b7c56 2019-07-09 stsp
174 ce5b7c56 2019-07-09 stsp fprintf(stderr, "commands:");
175 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(got_commands); i++) {
176 ce5b7c56 2019-07-09 stsp struct got_cmd *cmd = &got_commands[i];
177 ce5b7c56 2019-07-09 stsp fprintf(stderr, " %s", cmd->cmd_name);
178 ce5b7c56 2019-07-09 stsp }
179 ce5b7c56 2019-07-09 stsp fputc('\n', stderr);
180 ce5b7c56 2019-07-09 stsp }
181 5c860e29 2018-03-12 stsp
182 5c860e29 2018-03-12 stsp int
183 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
184 5c860e29 2018-03-12 stsp {
185 8cfb4057 2019-07-09 stsp struct got_cmd *cmd;
186 5c860e29 2018-03-12 stsp unsigned int i;
187 5c860e29 2018-03-12 stsp int ch;
188 53ccebc2 2019-07-30 stsp int hflag = 0, Vflag = 0;
189 83cd27f8 2020-01-13 stsp static struct option longopts[] = {
190 83cd27f8 2020-01-13 stsp { "version", no_argument, NULL, 'V' },
191 83cd27f8 2020-01-13 stsp { NULL, 0, NULL, 0}
192 83cd27f8 2020-01-13 stsp };
193 5c860e29 2018-03-12 stsp
194 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
195 5c860e29 2018-03-12 stsp
196 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
197 5c860e29 2018-03-12 stsp switch (ch) {
198 1b6b95a8 2018-03-12 stsp case 'h':
199 1b6b95a8 2018-03-12 stsp hflag = 1;
200 53ccebc2 2019-07-30 stsp break;
201 53ccebc2 2019-07-30 stsp case 'V':
202 53ccebc2 2019-07-30 stsp Vflag = 1;
203 1b6b95a8 2018-03-12 stsp break;
204 5c860e29 2018-03-12 stsp default:
205 ce5b7c56 2019-07-09 stsp usage(hflag);
206 5c860e29 2018-03-12 stsp /* NOTREACHED */
207 5c860e29 2018-03-12 stsp }
208 5c860e29 2018-03-12 stsp }
209 5c860e29 2018-03-12 stsp
210 5c860e29 2018-03-12 stsp argc -= optind;
211 5c860e29 2018-03-12 stsp argv += optind;
212 1e70621d 2018-03-27 stsp optind = 0;
213 53ccebc2 2019-07-30 stsp
214 53ccebc2 2019-07-30 stsp if (Vflag) {
215 53ccebc2 2019-07-30 stsp got_version_print_str();
216 53ccebc2 2019-07-30 stsp return 1;
217 53ccebc2 2019-07-30 stsp }
218 5c860e29 2018-03-12 stsp
219 5c860e29 2018-03-12 stsp if (argc <= 0)
220 ce5b7c56 2019-07-09 stsp usage(hflag);
221 5c860e29 2018-03-12 stsp
222 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
223 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
224 99437157 2018-11-11 stsp
225 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
226 d7d4f210 2018-03-12 stsp const struct got_error *error;
227 d7d4f210 2018-03-12 stsp
228 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
229 5c860e29 2018-03-12 stsp
230 97b3a7be 2019-07-09 stsp if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
231 97b3a7be 2019-07-09 stsp strcmp(cmd->cmd_alias, argv[0]) != 0)
232 5c860e29 2018-03-12 stsp continue;
233 5c860e29 2018-03-12 stsp
234 1b6b95a8 2018-03-12 stsp if (hflag)
235 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
236 1b6b95a8 2018-03-12 stsp
237 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
238 f8afbdc8 2019-11-08 stsp if (error && error->code != GOT_ERR_CANCELLED &&
239 f8afbdc8 2019-11-08 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
240 f8afbdc8 2019-11-08 stsp !(sigpipe_received &&
241 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
242 70015d7a 2019-11-08 stsp !(sigint_received &&
243 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EINTR)) {
244 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
245 d7d4f210 2018-03-12 stsp return 1;
246 d7d4f210 2018-03-12 stsp }
247 d7d4f210 2018-03-12 stsp
248 d7d4f210 2018-03-12 stsp return 0;
249 5c860e29 2018-03-12 stsp }
250 5c860e29 2018-03-12 stsp
251 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
252 ce5b7c56 2019-07-09 stsp list_commands();
253 5c860e29 2018-03-12 stsp return 1;
254 5c860e29 2018-03-12 stsp }
255 5c860e29 2018-03-12 stsp
256 4ed7e80c 2018-05-20 stsp __dead static void
257 ce5b7c56 2019-07-09 stsp usage(int hflag)
258 5c860e29 2018-03-12 stsp {
259 e801a566 2020-01-13 stsp fprintf(stderr, "usage: %s [-h] [-V | --version] command [arg ...]\n",
260 53ccebc2 2019-07-30 stsp getprogname());
261 ce5b7c56 2019-07-09 stsp if (hflag)
262 ce5b7c56 2019-07-09 stsp list_commands();
263 5c860e29 2018-03-12 stsp exit(1);
264 5c860e29 2018-03-12 stsp }
265 5c860e29 2018-03-12 stsp
266 0266afb7 2019-01-04 stsp static const struct got_error *
267 0ee7065d 2019-05-13 stsp get_editor(char **abspath)
268 e2ba3d07 2019-05-13 stsp {
269 0ee7065d 2019-05-13 stsp const struct got_error *err = NULL;
270 e2ba3d07 2019-05-13 stsp const char *editor;
271 8920fa04 2019-08-18 stsp
272 8920fa04 2019-08-18 stsp *abspath = NULL;
273 e2ba3d07 2019-05-13 stsp
274 e2ba3d07 2019-05-13 stsp editor = getenv("VISUAL");
275 e2ba3d07 2019-05-13 stsp if (editor == NULL)
276 e2ba3d07 2019-05-13 stsp editor = getenv("EDITOR");
277 e2ba3d07 2019-05-13 stsp
278 0ee7065d 2019-05-13 stsp if (editor) {
279 0ee7065d 2019-05-13 stsp err = got_path_find_prog(abspath, editor);
280 0ee7065d 2019-05-13 stsp if (err)
281 0ee7065d 2019-05-13 stsp return err;
282 0ee7065d 2019-05-13 stsp }
283 e2ba3d07 2019-05-13 stsp
284 0ee7065d 2019-05-13 stsp if (*abspath == NULL) {
285 0ee7065d 2019-05-13 stsp *abspath = strdup("/bin/ed");
286 0ee7065d 2019-05-13 stsp if (*abspath == NULL)
287 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
288 0ee7065d 2019-05-13 stsp }
289 0ee7065d 2019-05-13 stsp
290 e2ba3d07 2019-05-13 stsp return NULL;
291 e2ba3d07 2019-05-13 stsp }
292 e2ba3d07 2019-05-13 stsp
293 e2ba3d07 2019-05-13 stsp static const struct got_error *
294 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
295 c530dc23 2019-07-23 stsp const char *worktree_path)
296 0266afb7 2019-01-04 stsp {
297 163ce85a 2019-05-13 stsp const struct got_error *err;
298 0266afb7 2019-01-04 stsp
299 37c06ea4 2019-07-15 stsp #ifdef PROFILE
300 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
301 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
302 37c06ea4 2019-07-15 stsp #endif
303 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
304 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
305 0266afb7 2019-01-04 stsp
306 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
307 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
308 0266afb7 2019-01-04 stsp
309 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
310 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
311 0266afb7 2019-01-04 stsp
312 163ce85a 2019-05-13 stsp err = got_privsep_unveil_exec_helpers();
313 163ce85a 2019-05-13 stsp if (err != NULL)
314 163ce85a 2019-05-13 stsp return err;
315 0266afb7 2019-01-04 stsp
316 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
317 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
318 0266afb7 2019-01-04 stsp
319 0266afb7 2019-01-04 stsp return NULL;
320 2c7829a4 2019-06-17 stsp }
321 2c7829a4 2019-06-17 stsp
322 2c7829a4 2019-06-17 stsp __dead static void
323 2c7829a4 2019-06-17 stsp usage_init(void)
324 2c7829a4 2019-06-17 stsp {
325 09ea71ba 2019-07-27 stsp fprintf(stderr, "usage: %s init repository-path\n", getprogname());
326 2c7829a4 2019-06-17 stsp exit(1);
327 2c7829a4 2019-06-17 stsp }
328 2c7829a4 2019-06-17 stsp
329 2c7829a4 2019-06-17 stsp static const struct got_error *
330 2c7829a4 2019-06-17 stsp cmd_init(int argc, char *argv[])
331 2c7829a4 2019-06-17 stsp {
332 2c7829a4 2019-06-17 stsp const struct got_error *error = NULL;
333 2c7829a4 2019-06-17 stsp char *repo_path = NULL;
334 2c7829a4 2019-06-17 stsp int ch;
335 2c7829a4 2019-06-17 stsp
336 2c7829a4 2019-06-17 stsp while ((ch = getopt(argc, argv, "")) != -1) {
337 2c7829a4 2019-06-17 stsp switch (ch) {
338 2c7829a4 2019-06-17 stsp default:
339 2c7829a4 2019-06-17 stsp usage_init();
340 2c7829a4 2019-06-17 stsp /* NOTREACHED */
341 2c7829a4 2019-06-17 stsp }
342 2c7829a4 2019-06-17 stsp }
343 2c7829a4 2019-06-17 stsp
344 2c7829a4 2019-06-17 stsp argc -= optind;
345 2c7829a4 2019-06-17 stsp argv += optind;
346 2c7829a4 2019-06-17 stsp
347 2c7829a4 2019-06-17 stsp #ifndef PROFILE
348 2c7829a4 2019-06-17 stsp if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
349 2c7829a4 2019-06-17 stsp err(1, "pledge");
350 2c7829a4 2019-06-17 stsp #endif
351 2c7829a4 2019-06-17 stsp if (argc != 1)
352 bc20e173 2019-06-17 stsp usage_init();
353 2c7829a4 2019-06-17 stsp
354 2c7829a4 2019-06-17 stsp repo_path = strdup(argv[0]);
355 2c7829a4 2019-06-17 stsp if (repo_path == NULL)
356 2c7829a4 2019-06-17 stsp return got_error_from_errno("strdup");
357 2c7829a4 2019-06-17 stsp
358 2c7829a4 2019-06-17 stsp got_path_strip_trailing_slashes(repo_path);
359 2c7829a4 2019-06-17 stsp
360 2c7829a4 2019-06-17 stsp error = got_path_mkdir(repo_path);
361 2c7829a4 2019-06-17 stsp if (error &&
362 2c7829a4 2019-06-17 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
363 2c7829a4 2019-06-17 stsp goto done;
364 2c7829a4 2019-06-17 stsp
365 c530dc23 2019-07-23 stsp error = apply_unveil(repo_path, 0, NULL);
366 2c7829a4 2019-06-17 stsp if (error)
367 2c7829a4 2019-06-17 stsp goto done;
368 2c7829a4 2019-06-17 stsp
369 2c7829a4 2019-06-17 stsp error = got_repo_init(repo_path);
370 3ce1b845 2019-07-15 stsp done:
371 3ce1b845 2019-07-15 stsp free(repo_path);
372 3ce1b845 2019-07-15 stsp return error;
373 3ce1b845 2019-07-15 stsp }
374 3ce1b845 2019-07-15 stsp
375 3ce1b845 2019-07-15 stsp __dead static void
376 3ce1b845 2019-07-15 stsp usage_import(void)
377 3ce1b845 2019-07-15 stsp {
378 3ce1b845 2019-07-15 stsp fprintf(stderr, "usage: %s import [-b branch] [-m message] "
379 3ce1b845 2019-07-15 stsp "[-r repository-path] [-I pattern] path\n", getprogname());
380 3ce1b845 2019-07-15 stsp exit(1);
381 3ce1b845 2019-07-15 stsp }
382 3ce1b845 2019-07-15 stsp
383 3ce1b845 2019-07-15 stsp int
384 3ce1b845 2019-07-15 stsp spawn_editor(const char *editor, const char *file)
385 3ce1b845 2019-07-15 stsp {
386 3ce1b845 2019-07-15 stsp pid_t pid;
387 3ce1b845 2019-07-15 stsp sig_t sighup, sigint, sigquit;
388 3ce1b845 2019-07-15 stsp int st = -1;
389 3ce1b845 2019-07-15 stsp
390 3ce1b845 2019-07-15 stsp sighup = signal(SIGHUP, SIG_IGN);
391 3ce1b845 2019-07-15 stsp sigint = signal(SIGINT, SIG_IGN);
392 3ce1b845 2019-07-15 stsp sigquit = signal(SIGQUIT, SIG_IGN);
393 3ce1b845 2019-07-15 stsp
394 3ce1b845 2019-07-15 stsp switch (pid = fork()) {
395 3ce1b845 2019-07-15 stsp case -1:
396 3ce1b845 2019-07-15 stsp goto doneediting;
397 3ce1b845 2019-07-15 stsp case 0:
398 3ce1b845 2019-07-15 stsp execl(editor, editor, file, (char *)NULL);
399 3ce1b845 2019-07-15 stsp _exit(127);
400 3ce1b845 2019-07-15 stsp }
401 3ce1b845 2019-07-15 stsp
402 3ce1b845 2019-07-15 stsp while (waitpid(pid, &st, 0) == -1)
403 3ce1b845 2019-07-15 stsp if (errno != EINTR)
404 3ce1b845 2019-07-15 stsp break;
405 3ce1b845 2019-07-15 stsp
406 3ce1b845 2019-07-15 stsp doneediting:
407 3ce1b845 2019-07-15 stsp (void)signal(SIGHUP, sighup);
408 3ce1b845 2019-07-15 stsp (void)signal(SIGINT, sigint);
409 3ce1b845 2019-07-15 stsp (void)signal(SIGQUIT, sigquit);
410 3ce1b845 2019-07-15 stsp
411 3ce1b845 2019-07-15 stsp if (!WIFEXITED(st)) {
412 3ce1b845 2019-07-15 stsp errno = EINTR;
413 3ce1b845 2019-07-15 stsp return -1;
414 3ce1b845 2019-07-15 stsp }
415 3ce1b845 2019-07-15 stsp
416 3ce1b845 2019-07-15 stsp return WEXITSTATUS(st);
417 3ce1b845 2019-07-15 stsp }
418 3ce1b845 2019-07-15 stsp
419 3ce1b845 2019-07-15 stsp static const struct got_error *
420 3ce1b845 2019-07-15 stsp edit_logmsg(char **logmsg, const char *editor, const char *logmsg_path,
421 3ce1b845 2019-07-15 stsp const char *initial_content)
422 3ce1b845 2019-07-15 stsp {
423 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
424 3ce1b845 2019-07-15 stsp char buf[1024];
425 3ce1b845 2019-07-15 stsp struct stat st, st2;
426 3ce1b845 2019-07-15 stsp FILE *fp;
427 3ce1b845 2019-07-15 stsp int content_changed = 0;
428 3ce1b845 2019-07-15 stsp size_t len;
429 3ce1b845 2019-07-15 stsp
430 3ce1b845 2019-07-15 stsp *logmsg = NULL;
431 3ce1b845 2019-07-15 stsp
432 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st) == -1)
433 3ce1b845 2019-07-15 stsp return got_error_from_errno2("stat", logmsg_path);
434 3ce1b845 2019-07-15 stsp
435 3ce1b845 2019-07-15 stsp if (spawn_editor(editor, logmsg_path) == -1)
436 3ce1b845 2019-07-15 stsp return got_error_from_errno("failed spawning editor");
437 3ce1b845 2019-07-15 stsp
438 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st2) == -1)
439 3ce1b845 2019-07-15 stsp return got_error_from_errno("stat");
440 3ce1b845 2019-07-15 stsp
441 3ce1b845 2019-07-15 stsp if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size)
442 3ce1b845 2019-07-15 stsp return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
443 3ce1b845 2019-07-15 stsp "no changes made to commit message, aborting");
444 3ce1b845 2019-07-15 stsp
445 3ce1b845 2019-07-15 stsp *logmsg = malloc(st2.st_size + 1);
446 3ce1b845 2019-07-15 stsp if (*logmsg == NULL)
447 3ce1b845 2019-07-15 stsp return got_error_from_errno("malloc");
448 3ce1b845 2019-07-15 stsp (*logmsg)[0] = '\0';
449 3ce1b845 2019-07-15 stsp len = 0;
450 3ce1b845 2019-07-15 stsp
451 3ce1b845 2019-07-15 stsp fp = fopen(logmsg_path, "r");
452 3ce1b845 2019-07-15 stsp if (fp == NULL) {
453 3ce1b845 2019-07-15 stsp err = got_error_from_errno("fopen");
454 3ce1b845 2019-07-15 stsp goto done;
455 3ce1b845 2019-07-15 stsp }
456 3ce1b845 2019-07-15 stsp while (fgets(buf, sizeof(buf), fp) != NULL) {
457 3ce1b845 2019-07-15 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
458 3ce1b845 2019-07-15 stsp content_changed = 1;
459 3ce1b845 2019-07-15 stsp if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
460 3ce1b845 2019-07-15 stsp continue; /* remove comments and leading empty lines */
461 3ce1b845 2019-07-15 stsp len = strlcat(*logmsg, buf, st2.st_size);
462 3ce1b845 2019-07-15 stsp }
463 3ce1b845 2019-07-15 stsp fclose(fp);
464 3ce1b845 2019-07-15 stsp
465 3ce1b845 2019-07-15 stsp while (len > 0 && (*logmsg)[len - 1] == '\n') {
466 3ce1b845 2019-07-15 stsp (*logmsg)[len - 1] = '\0';
467 3ce1b845 2019-07-15 stsp len--;
468 3ce1b845 2019-07-15 stsp }
469 3ce1b845 2019-07-15 stsp
470 3ce1b845 2019-07-15 stsp if (len == 0 || !content_changed)
471 3ce1b845 2019-07-15 stsp err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
472 3ce1b845 2019-07-15 stsp "commit message cannot be empty, aborting");
473 3ce1b845 2019-07-15 stsp done:
474 3ce1b845 2019-07-15 stsp if (err) {
475 3ce1b845 2019-07-15 stsp free(*logmsg);
476 3ce1b845 2019-07-15 stsp *logmsg = NULL;
477 3ce1b845 2019-07-15 stsp }
478 3ce1b845 2019-07-15 stsp return err;
479 3ce1b845 2019-07-15 stsp }
480 3ce1b845 2019-07-15 stsp
481 3ce1b845 2019-07-15 stsp static const struct got_error *
482 ef293bdd 2019-10-21 stsp collect_import_msg(char **logmsg, char **logmsg_path, const char *editor,
483 ef293bdd 2019-10-21 stsp const char *path_dir, const char *branch_name)
484 3ce1b845 2019-07-15 stsp {
485 ef293bdd 2019-10-21 stsp char *initial_content = NULL;
486 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
487 3ce1b845 2019-07-15 stsp int fd;
488 3ce1b845 2019-07-15 stsp
489 3ce1b845 2019-07-15 stsp if (asprintf(&initial_content,
490 3ce1b845 2019-07-15 stsp "\n# %s to be imported to branch %s\n", path_dir,
491 3ce1b845 2019-07-15 stsp branch_name) == -1)
492 3ce1b845 2019-07-15 stsp return got_error_from_errno("asprintf");
493 3ce1b845 2019-07-15 stsp
494 bb63914a 2020-02-17 stsp err = got_opentemp_named_fd(logmsg_path, &fd,
495 bb63914a 2020-02-17 stsp GOT_TMPDIR_STR "/got-importmsg");
496 3ce1b845 2019-07-15 stsp if (err)
497 3ce1b845 2019-07-15 stsp goto done;
498 3ce1b845 2019-07-15 stsp
499 3ce1b845 2019-07-15 stsp dprintf(fd, initial_content);
500 3ce1b845 2019-07-15 stsp close(fd);
501 3ce1b845 2019-07-15 stsp
502 ef293bdd 2019-10-21 stsp err = edit_logmsg(logmsg, editor, *logmsg_path, initial_content);
503 3ce1b845 2019-07-15 stsp done:
504 3ce1b845 2019-07-15 stsp free(initial_content);
505 3ce1b845 2019-07-15 stsp return err;
506 3ce1b845 2019-07-15 stsp }
507 3ce1b845 2019-07-15 stsp
508 3ce1b845 2019-07-15 stsp static const struct got_error *
509 3ce1b845 2019-07-15 stsp import_progress(void *arg, const char *path)
510 3ce1b845 2019-07-15 stsp {
511 3ce1b845 2019-07-15 stsp printf("A %s\n", path);
512 3ce1b845 2019-07-15 stsp return NULL;
513 3ce1b845 2019-07-15 stsp }
514 3ce1b845 2019-07-15 stsp
515 3ce1b845 2019-07-15 stsp static const struct got_error *
516 aba9c984 2019-09-08 stsp get_author(char **author, struct got_repository *repo)
517 84792843 2019-08-09 stsp {
518 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
519 c9956ddf 2019-09-08 stsp const char *got_author, *name, *email;
520 84792843 2019-08-09 stsp
521 84792843 2019-08-09 stsp *author = NULL;
522 aba9c984 2019-09-08 stsp
523 c9956ddf 2019-09-08 stsp name = got_repo_get_gitconfig_author_name(repo);
524 c9956ddf 2019-09-08 stsp email = got_repo_get_gitconfig_author_email(repo);
525 c9956ddf 2019-09-08 stsp if (name && email) {
526 c9956ddf 2019-09-08 stsp if (asprintf(author, "%s <%s>", name, email) == -1)
527 aba9c984 2019-09-08 stsp return got_error_from_errno("asprintf");
528 aba9c984 2019-09-08 stsp return NULL;
529 aba9c984 2019-09-08 stsp }
530 84792843 2019-08-09 stsp
531 84792843 2019-08-09 stsp got_author = getenv("GOT_AUTHOR");
532 84792843 2019-08-09 stsp if (got_author == NULL) {
533 c9956ddf 2019-09-08 stsp name = got_repo_get_global_gitconfig_author_name(repo);
534 c9956ddf 2019-09-08 stsp email = got_repo_get_global_gitconfig_author_email(repo);
535 c9956ddf 2019-09-08 stsp if (name && email) {
536 c9956ddf 2019-09-08 stsp if (asprintf(author, "%s <%s>", name, email) == -1)
537 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
538 c9956ddf 2019-09-08 stsp return NULL;
539 c9956ddf 2019-09-08 stsp }
540 84792843 2019-08-09 stsp /* TODO: Look up user in password database? */
541 84792843 2019-08-09 stsp return got_error(GOT_ERR_COMMIT_NO_AUTHOR);
542 84792843 2019-08-09 stsp }
543 84792843 2019-08-09 stsp
544 aba9c984 2019-09-08 stsp *author = strdup(got_author);
545 aba9c984 2019-09-08 stsp if (*author == NULL)
546 aba9c984 2019-09-08 stsp return got_error_from_errno("strdup");
547 84792843 2019-08-09 stsp
548 84792843 2019-08-09 stsp /*
549 84792843 2019-08-09 stsp * Really dumb email address check; we're only doing this to
550 84792843 2019-08-09 stsp * avoid git's object parser breaking on commits we create.
551 84792843 2019-08-09 stsp */
552 84792843 2019-08-09 stsp while (*got_author && *got_author != '<')
553 84792843 2019-08-09 stsp got_author++;
554 aba9c984 2019-09-08 stsp if (*got_author != '<') {
555 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
556 aba9c984 2019-09-08 stsp goto done;
557 aba9c984 2019-09-08 stsp }
558 84792843 2019-08-09 stsp while (*got_author && *got_author != '@')
559 84792843 2019-08-09 stsp got_author++;
560 aba9c984 2019-09-08 stsp if (*got_author != '@') {
561 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
562 aba9c984 2019-09-08 stsp goto done;
563 aba9c984 2019-09-08 stsp }
564 84792843 2019-08-09 stsp while (*got_author && *got_author != '>')
565 84792843 2019-08-09 stsp got_author++;
566 84792843 2019-08-09 stsp if (*got_author != '>')
567 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
568 aba9c984 2019-09-08 stsp done:
569 aba9c984 2019-09-08 stsp if (err) {
570 aba9c984 2019-09-08 stsp free(*author);
571 aba9c984 2019-09-08 stsp *author = NULL;
572 aba9c984 2019-09-08 stsp }
573 aba9c984 2019-09-08 stsp return err;
574 c9956ddf 2019-09-08 stsp }
575 c9956ddf 2019-09-08 stsp
576 c9956ddf 2019-09-08 stsp static const struct got_error *
577 c9956ddf 2019-09-08 stsp get_gitconfig_path(char **gitconfig_path)
578 c9956ddf 2019-09-08 stsp {
579 c9956ddf 2019-09-08 stsp const char *homedir = getenv("HOME");
580 c9956ddf 2019-09-08 stsp
581 c9956ddf 2019-09-08 stsp *gitconfig_path = NULL;
582 c9956ddf 2019-09-08 stsp if (homedir) {
583 c9956ddf 2019-09-08 stsp if (asprintf(gitconfig_path, "%s/.gitconfig", homedir) == -1)
584 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
585 c9956ddf 2019-09-08 stsp
586 c9956ddf 2019-09-08 stsp }
587 c9956ddf 2019-09-08 stsp return NULL;
588 84792843 2019-08-09 stsp }
589 84792843 2019-08-09 stsp
590 84792843 2019-08-09 stsp static const struct got_error *
591 3ce1b845 2019-07-15 stsp cmd_import(int argc, char *argv[])
592 3ce1b845 2019-07-15 stsp {
593 3ce1b845 2019-07-15 stsp const struct got_error *error = NULL;
594 3ce1b845 2019-07-15 stsp char *path_dir = NULL, *repo_path = NULL, *logmsg = NULL;
595 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
596 5d67f40d 2019-11-08 stsp const char *branch_name = "main";
597 ef293bdd 2019-10-21 stsp char *refname = NULL, *id_str = NULL, *logmsg_path = NULL;
598 3ce1b845 2019-07-15 stsp struct got_repository *repo = NULL;
599 3ce1b845 2019-07-15 stsp struct got_reference *branch_ref = NULL, *head_ref = NULL;
600 3ce1b845 2019-07-15 stsp struct got_object_id *new_commit_id = NULL;
601 3ce1b845 2019-07-15 stsp int ch;
602 3ce1b845 2019-07-15 stsp struct got_pathlist_head ignores;
603 3ce1b845 2019-07-15 stsp struct got_pathlist_entry *pe;
604 ef293bdd 2019-10-21 stsp int preserve_logmsg = 0;
605 3ce1b845 2019-07-15 stsp
606 3ce1b845 2019-07-15 stsp TAILQ_INIT(&ignores);
607 3ce1b845 2019-07-15 stsp
608 3ce1b845 2019-07-15 stsp while ((ch = getopt(argc, argv, "b:m:r:I:")) != -1) {
609 3ce1b845 2019-07-15 stsp switch (ch) {
610 3ce1b845 2019-07-15 stsp case 'b':
611 3ce1b845 2019-07-15 stsp branch_name = optarg;
612 3ce1b845 2019-07-15 stsp break;
613 3ce1b845 2019-07-15 stsp case 'm':
614 3ce1b845 2019-07-15 stsp logmsg = strdup(optarg);
615 3ce1b845 2019-07-15 stsp if (logmsg == NULL) {
616 3ce1b845 2019-07-15 stsp error = got_error_from_errno("strdup");
617 3ce1b845 2019-07-15 stsp goto done;
618 3ce1b845 2019-07-15 stsp }
619 3ce1b845 2019-07-15 stsp break;
620 3ce1b845 2019-07-15 stsp case 'r':
621 3ce1b845 2019-07-15 stsp repo_path = realpath(optarg, NULL);
622 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
623 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath",
624 9ba1d308 2019-10-21 stsp optarg);
625 3ce1b845 2019-07-15 stsp goto done;
626 3ce1b845 2019-07-15 stsp }
627 3ce1b845 2019-07-15 stsp break;
628 3ce1b845 2019-07-15 stsp case 'I':
629 3ce1b845 2019-07-15 stsp if (optarg[0] == '\0')
630 3ce1b845 2019-07-15 stsp break;
631 3ce1b845 2019-07-15 stsp error = got_pathlist_insert(&pe, &ignores, optarg,
632 3ce1b845 2019-07-15 stsp NULL);
633 3ce1b845 2019-07-15 stsp if (error)
634 3ce1b845 2019-07-15 stsp goto done;
635 3ce1b845 2019-07-15 stsp break;
636 3ce1b845 2019-07-15 stsp default:
637 b2b65d18 2019-08-22 stsp usage_import();
638 3ce1b845 2019-07-15 stsp /* NOTREACHED */
639 3ce1b845 2019-07-15 stsp }
640 3ce1b845 2019-07-15 stsp }
641 3ce1b845 2019-07-15 stsp
642 3ce1b845 2019-07-15 stsp argc -= optind;
643 3ce1b845 2019-07-15 stsp argv += optind;
644 3ce1b845 2019-07-15 stsp
645 3ce1b845 2019-07-15 stsp #ifndef PROFILE
646 aba9c984 2019-09-08 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
647 aba9c984 2019-09-08 stsp "unveil",
648 3ce1b845 2019-07-15 stsp NULL) == -1)
649 3ce1b845 2019-07-15 stsp err(1, "pledge");
650 3ce1b845 2019-07-15 stsp #endif
651 3ce1b845 2019-07-15 stsp if (argc != 1)
652 3ce1b845 2019-07-15 stsp usage_import();
653 2c7829a4 2019-06-17 stsp
654 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
655 3ce1b845 2019-07-15 stsp repo_path = getcwd(NULL, 0);
656 3ce1b845 2019-07-15 stsp if (repo_path == NULL)
657 3ce1b845 2019-07-15 stsp return got_error_from_errno("getcwd");
658 3ce1b845 2019-07-15 stsp }
659 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(repo_path);
660 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
661 c9956ddf 2019-09-08 stsp if (error)
662 c9956ddf 2019-09-08 stsp goto done;
663 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
664 3ce1b845 2019-07-15 stsp if (error)
665 3ce1b845 2019-07-15 stsp goto done;
666 aba9c984 2019-09-08 stsp
667 aba9c984 2019-09-08 stsp error = get_author(&author, repo);
668 aba9c984 2019-09-08 stsp if (error)
669 aba9c984 2019-09-08 stsp return error;
670 e560b7e0 2019-11-28 stsp
671 e560b7e0 2019-11-28 stsp /*
672 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
673 e560b7e0 2019-11-28 stsp * While technically a valid reference name, this case is usually
674 e560b7e0 2019-11-28 stsp * an unintended typo.
675 e560b7e0 2019-11-28 stsp */
676 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
677 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
678 3ce1b845 2019-07-15 stsp
679 3ce1b845 2019-07-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
680 3ce1b845 2019-07-15 stsp error = got_error_from_errno("asprintf");
681 3ce1b845 2019-07-15 stsp goto done;
682 3ce1b845 2019-07-15 stsp }
683 3ce1b845 2019-07-15 stsp
684 3ce1b845 2019-07-15 stsp error = got_ref_open(&branch_ref, repo, refname, 0);
685 3ce1b845 2019-07-15 stsp if (error) {
686 3ce1b845 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
687 3ce1b845 2019-07-15 stsp goto done;
688 3ce1b845 2019-07-15 stsp } else {
689 3ce1b845 2019-07-15 stsp error = got_error_msg(GOT_ERR_BRANCH_EXISTS,
690 3ce1b845 2019-07-15 stsp "import target branch already exists");
691 3ce1b845 2019-07-15 stsp goto done;
692 3ce1b845 2019-07-15 stsp }
693 3ce1b845 2019-07-15 stsp
694 3ce1b845 2019-07-15 stsp path_dir = realpath(argv[0], NULL);
695 3ce1b845 2019-07-15 stsp if (path_dir == NULL) {
696 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath", argv[0]);
697 3ce1b845 2019-07-15 stsp goto done;
698 3ce1b845 2019-07-15 stsp }
699 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(path_dir);
700 3ce1b845 2019-07-15 stsp
701 3ce1b845 2019-07-15 stsp /*
702 3ce1b845 2019-07-15 stsp * unveil(2) traverses exec(2); if an editor is used we have
703 3ce1b845 2019-07-15 stsp * to apply unveil after the log message has been written.
704 3ce1b845 2019-07-15 stsp */
705 3ce1b845 2019-07-15 stsp if (logmsg == NULL || strlen(logmsg) == 0) {
706 3ce1b845 2019-07-15 stsp error = get_editor(&editor);
707 3ce1b845 2019-07-15 stsp if (error)
708 3ce1b845 2019-07-15 stsp goto done;
709 8e158b01 2019-09-22 stsp free(logmsg);
710 ef293bdd 2019-10-21 stsp error = collect_import_msg(&logmsg, &logmsg_path, editor,
711 ef293bdd 2019-10-21 stsp path_dir, refname);
712 ef293bdd 2019-10-21 stsp if (error) {
713 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
714 ef293bdd 2019-10-21 stsp logmsg_path != NULL)
715 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
716 3ce1b845 2019-07-15 stsp goto done;
717 ef293bdd 2019-10-21 stsp }
718 3ce1b845 2019-07-15 stsp }
719 3ce1b845 2019-07-15 stsp
720 ef293bdd 2019-10-21 stsp if (unveil(path_dir, "r") != 0) {
721 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unveil", path_dir);
722 ef293bdd 2019-10-21 stsp if (logmsg_path)
723 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
724 3ce1b845 2019-07-15 stsp goto done;
725 ef293bdd 2019-10-21 stsp }
726 3ce1b845 2019-07-15 stsp
727 ef293bdd 2019-10-21 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
728 ef293bdd 2019-10-21 stsp if (error) {
729 ef293bdd 2019-10-21 stsp if (logmsg_path)
730 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
731 ef293bdd 2019-10-21 stsp goto done;
732 ef293bdd 2019-10-21 stsp }
733 ef293bdd 2019-10-21 stsp
734 3ce1b845 2019-07-15 stsp error = got_repo_import(&new_commit_id, path_dir, logmsg,
735 84792843 2019-08-09 stsp author, &ignores, repo, import_progress, NULL);
736 ef293bdd 2019-10-21 stsp if (error) {
737 ef293bdd 2019-10-21 stsp if (logmsg_path)
738 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
739 3ce1b845 2019-07-15 stsp goto done;
740 ef293bdd 2019-10-21 stsp }
741 3ce1b845 2019-07-15 stsp
742 3ce1b845 2019-07-15 stsp error = got_ref_alloc(&branch_ref, refname, new_commit_id);
743 ef293bdd 2019-10-21 stsp if (error) {
744 ef293bdd 2019-10-21 stsp if (logmsg_path)
745 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
746 3ce1b845 2019-07-15 stsp goto done;
747 ef293bdd 2019-10-21 stsp }
748 3ce1b845 2019-07-15 stsp
749 3ce1b845 2019-07-15 stsp error = got_ref_write(branch_ref, repo);
750 ef293bdd 2019-10-21 stsp if (error) {
751 ef293bdd 2019-10-21 stsp if (logmsg_path)
752 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
753 3ce1b845 2019-07-15 stsp goto done;
754 ef293bdd 2019-10-21 stsp }
755 3ce1b845 2019-07-15 stsp
756 3ce1b845 2019-07-15 stsp error = got_object_id_str(&id_str, new_commit_id);
757 ef293bdd 2019-10-21 stsp if (error) {
758 ef293bdd 2019-10-21 stsp if (logmsg_path)
759 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
760 3ce1b845 2019-07-15 stsp goto done;
761 ef293bdd 2019-10-21 stsp }
762 3ce1b845 2019-07-15 stsp
763 3ce1b845 2019-07-15 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
764 3ce1b845 2019-07-15 stsp if (error) {
765 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_NOT_REF) {
766 ef293bdd 2019-10-21 stsp if (logmsg_path)
767 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
768 3ce1b845 2019-07-15 stsp goto done;
769 ef293bdd 2019-10-21 stsp }
770 3ce1b845 2019-07-15 stsp
771 3ce1b845 2019-07-15 stsp error = got_ref_alloc_symref(&head_ref, GOT_REF_HEAD,
772 3ce1b845 2019-07-15 stsp branch_ref);
773 ef293bdd 2019-10-21 stsp if (error) {
774 ef293bdd 2019-10-21 stsp if (logmsg_path)
775 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
776 3ce1b845 2019-07-15 stsp goto done;
777 ef293bdd 2019-10-21 stsp }
778 3ce1b845 2019-07-15 stsp
779 3ce1b845 2019-07-15 stsp error = got_ref_write(head_ref, repo);
780 ef293bdd 2019-10-21 stsp if (error) {
781 ef293bdd 2019-10-21 stsp if (logmsg_path)
782 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
783 3ce1b845 2019-07-15 stsp goto done;
784 ef293bdd 2019-10-21 stsp }
785 3ce1b845 2019-07-15 stsp }
786 3ce1b845 2019-07-15 stsp
787 3ce1b845 2019-07-15 stsp printf("Created branch %s with commit %s\n",
788 3ce1b845 2019-07-15 stsp got_ref_get_name(branch_ref), id_str);
789 2c7829a4 2019-06-17 stsp done:
790 ef293bdd 2019-10-21 stsp if (preserve_logmsg) {
791 ef293bdd 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
792 ef293bdd 2019-10-21 stsp getprogname(), logmsg_path);
793 ef293bdd 2019-10-21 stsp } else if (logmsg_path && unlink(logmsg_path) == -1 && error == NULL)
794 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unlink", logmsg_path);
795 8e158b01 2019-09-22 stsp free(logmsg);
796 ef293bdd 2019-10-21 stsp free(logmsg_path);
797 2c7829a4 2019-06-17 stsp free(repo_path);
798 3ce1b845 2019-07-15 stsp free(editor);
799 3ce1b845 2019-07-15 stsp free(refname);
800 3ce1b845 2019-07-15 stsp free(new_commit_id);
801 3ce1b845 2019-07-15 stsp free(id_str);
802 aba9c984 2019-09-08 stsp free(author);
803 c9956ddf 2019-09-08 stsp free(gitconfig_path);
804 3ce1b845 2019-07-15 stsp if (branch_ref)
805 3ce1b845 2019-07-15 stsp got_ref_close(branch_ref);
806 3ce1b845 2019-07-15 stsp if (head_ref)
807 3ce1b845 2019-07-15 stsp got_ref_close(head_ref);
808 2c7829a4 2019-06-17 stsp return error;
809 93658fb9 2020-03-18 stsp }
810 93658fb9 2020-03-18 stsp
811 93658fb9 2020-03-18 stsp __dead static void
812 93658fb9 2020-03-18 stsp usage_clone(void)
813 93658fb9 2020-03-18 stsp {
814 13f12b09 2020-03-21 stsp fprintf(stderr, "usage: %s clone [-a] [-b branch] [-l] [-m] [-q] [-v] "
815 0e4002ca 2020-03-21 stsp "[-R reference] repository-url [directory]\n", getprogname());
816 93658fb9 2020-03-18 stsp exit(1);
817 93658fb9 2020-03-18 stsp }
818 892ac3b6 2020-03-18 stsp
819 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg {
820 892ac3b6 2020-03-18 stsp char last_scaled_size[FMT_SCALED_STRSIZE];
821 892ac3b6 2020-03-18 stsp int last_p_indexed;
822 892ac3b6 2020-03-18 stsp int last_p_resolved;
823 68999b92 2020-03-18 stsp int verbosity;
824 892ac3b6 2020-03-18 stsp };
825 93658fb9 2020-03-18 stsp
826 93658fb9 2020-03-18 stsp static const struct got_error *
827 baa9fea0 2020-03-18 stsp fetch_progress(void *arg, const char *message, off_t packfile_size,
828 668a20f6 2020-03-18 stsp int nobj_total, int nobj_indexed, int nobj_loose, int nobj_resolved)
829 531c3985 2020-03-18 stsp {
830 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg *a = arg;
831 892ac3b6 2020-03-18 stsp char scaled_size[FMT_SCALED_STRSIZE];
832 892ac3b6 2020-03-18 stsp int p_indexed, p_resolved;
833 892ac3b6 2020-03-18 stsp int print_size = 0, print_indexed = 0, print_resolved = 0;
834 b2409d58 2020-03-18 stsp
835 68999b92 2020-03-18 stsp if (a->verbosity < 0)
836 68999b92 2020-03-18 stsp return NULL;
837 68999b92 2020-03-18 stsp
838 fd843b58 2020-03-18 stsp if (message && message[0] != '\0') {
839 d2cdc636 2020-03-18 stsp printf("\rserver: %s", message);
840 892ac3b6 2020-03-18 stsp fflush(stdout);
841 12d1281e 2020-03-19 stsp return NULL;
842 b2409d58 2020-03-18 stsp }
843 b2409d58 2020-03-18 stsp
844 b2409d58 2020-03-18 stsp if (packfile_size > 0 || nobj_indexed > 0) {
845 892ac3b6 2020-03-18 stsp if (fmt_scaled(packfile_size, scaled_size) == 0 &&
846 892ac3b6 2020-03-18 stsp (a->last_scaled_size[0] == '\0' ||
847 892ac3b6 2020-03-18 stsp strcmp(scaled_size, a->last_scaled_size)) != 0) {
848 892ac3b6 2020-03-18 stsp print_size = 1;
849 892ac3b6 2020-03-18 stsp if (strlcpy(a->last_scaled_size, scaled_size,
850 892ac3b6 2020-03-18 stsp FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
851 892ac3b6 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
852 892ac3b6 2020-03-18 stsp }
853 61cc1a7a 2020-03-18 stsp if (nobj_indexed > 0) {
854 892ac3b6 2020-03-18 stsp p_indexed = (nobj_indexed * 100) / nobj_total;
855 892ac3b6 2020-03-18 stsp if (p_indexed != a->last_p_indexed) {
856 892ac3b6 2020-03-18 stsp a->last_p_indexed = p_indexed;
857 892ac3b6 2020-03-18 stsp print_indexed = 1;
858 892ac3b6 2020-03-18 stsp print_size = 1;
859 892ac3b6 2020-03-18 stsp }
860 61cc1a7a 2020-03-18 stsp }
861 61cc1a7a 2020-03-18 stsp if (nobj_resolved > 0) {
862 892ac3b6 2020-03-18 stsp p_resolved = (nobj_resolved * 100) /
863 892ac3b6 2020-03-18 stsp (nobj_total - nobj_loose);
864 892ac3b6 2020-03-18 stsp if (p_resolved != a->last_p_resolved) {
865 892ac3b6 2020-03-18 stsp a->last_p_resolved = p_resolved;
866 892ac3b6 2020-03-18 stsp print_resolved = 1;
867 892ac3b6 2020-03-18 stsp print_indexed = 1;
868 892ac3b6 2020-03-18 stsp print_size = 1;
869 892ac3b6 2020-03-18 stsp }
870 61cc1a7a 2020-03-18 stsp }
871 b2409d58 2020-03-18 stsp
872 d2cdc636 2020-03-18 stsp }
873 892ac3b6 2020-03-18 stsp if (print_size || print_indexed || print_resolved)
874 892ac3b6 2020-03-18 stsp printf("\r");
875 892ac3b6 2020-03-18 stsp if (print_size)
876 892ac3b6 2020-03-18 stsp printf("%*s fetched", FMT_SCALED_STRSIZE, scaled_size);
877 d715f13e 2020-03-19 stsp if (print_indexed)
878 892ac3b6 2020-03-18 stsp printf("; indexing %d%%", p_indexed);
879 d715f13e 2020-03-19 stsp if (print_resolved)
880 892ac3b6 2020-03-18 stsp printf("; resolving deltas %d%%", p_resolved);
881 892ac3b6 2020-03-18 stsp if (print_size || print_indexed || print_resolved)
882 892ac3b6 2020-03-18 stsp fflush(stdout);
883 892ac3b6 2020-03-18 stsp
884 531c3985 2020-03-18 stsp return NULL;
885 531c3985 2020-03-18 stsp }
886 531c3985 2020-03-18 stsp
887 531c3985 2020-03-18 stsp static const struct got_error *
888 30718c93 2020-03-21 stsp create_head_ref(struct got_reference *target_ref, int verbosity,
889 30718c93 2020-03-21 stsp struct got_repository *repo)
890 4ba14133 2020-03-20 stsp {
891 4ba14133 2020-03-20 stsp const struct got_error *err;
892 4ba14133 2020-03-20 stsp struct got_reference *head_symref;
893 4ba14133 2020-03-20 stsp
894 4ba14133 2020-03-20 stsp err = got_ref_alloc_symref(&head_symref, GOT_REF_HEAD, target_ref);
895 4ba14133 2020-03-20 stsp if (err)
896 4ba14133 2020-03-20 stsp return err;
897 4ba14133 2020-03-20 stsp
898 4ba14133 2020-03-20 stsp err = got_ref_write(head_symref, repo);
899 4ba14133 2020-03-20 stsp got_ref_close(head_symref);
900 6338a6a1 2020-03-21 stsp if (err == NULL && verbosity > 0) {
901 6338a6a1 2020-03-21 stsp printf("Created reference %s: %s\n", GOT_REF_HEAD,
902 6338a6a1 2020-03-21 stsp got_ref_get_name(target_ref));
903 6338a6a1 2020-03-21 stsp }
904 4ba14133 2020-03-20 stsp return err;
905 4ba14133 2020-03-20 stsp }
906 4ba14133 2020-03-20 stsp
907 4ba14133 2020-03-20 stsp static const struct got_error *
908 41b0de12 2020-03-21 stsp list_remote_refs(struct got_pathlist_head *symrefs,
909 41b0de12 2020-03-21 stsp struct got_pathlist_head *refs)
910 41b0de12 2020-03-21 stsp {
911 41b0de12 2020-03-21 stsp const struct got_error *err;
912 41b0de12 2020-03-21 stsp struct got_pathlist_entry *pe;
913 41b0de12 2020-03-21 stsp
914 41b0de12 2020-03-21 stsp TAILQ_FOREACH(pe, symrefs, entry) {
915 41b0de12 2020-03-21 stsp const char *refname = pe->path;
916 41b0de12 2020-03-21 stsp const char *targetref = pe->data;
917 41b0de12 2020-03-21 stsp
918 41b0de12 2020-03-21 stsp printf("%s: %s\n", refname, targetref);
919 41b0de12 2020-03-21 stsp }
920 41b0de12 2020-03-21 stsp
921 41b0de12 2020-03-21 stsp TAILQ_FOREACH(pe, refs, entry) {
922 41b0de12 2020-03-21 stsp const char *refname = pe->path;
923 41b0de12 2020-03-21 stsp struct got_object_id *id = pe->data;
924 41b0de12 2020-03-21 stsp char *id_str;
925 41b0de12 2020-03-21 stsp
926 41b0de12 2020-03-21 stsp err = got_object_id_str(&id_str, id);
927 41b0de12 2020-03-21 stsp if (err)
928 41b0de12 2020-03-21 stsp return err;
929 41b0de12 2020-03-21 stsp printf("%s: %s\n", refname, id_str);
930 41b0de12 2020-03-21 stsp free(id_str);
931 41b0de12 2020-03-21 stsp }
932 41b0de12 2020-03-21 stsp
933 41b0de12 2020-03-21 stsp return NULL;
934 6338a6a1 2020-03-21 stsp }
935 6338a6a1 2020-03-21 stsp
936 6338a6a1 2020-03-21 stsp static const struct got_error *
937 6338a6a1 2020-03-21 stsp create_ref(const char *refname, struct got_object_id *id,
938 6338a6a1 2020-03-21 stsp int verbosity, struct got_repository *repo)
939 6338a6a1 2020-03-21 stsp {
940 6338a6a1 2020-03-21 stsp const struct got_error *err = NULL;
941 6338a6a1 2020-03-21 stsp struct got_reference *ref;
942 6338a6a1 2020-03-21 stsp char *id_str;
943 6338a6a1 2020-03-21 stsp
944 6338a6a1 2020-03-21 stsp err = got_object_id_str(&id_str, id);
945 6338a6a1 2020-03-21 stsp if (err)
946 6338a6a1 2020-03-21 stsp return err;
947 6338a6a1 2020-03-21 stsp
948 6338a6a1 2020-03-21 stsp err = got_ref_alloc(&ref, refname, id);
949 6338a6a1 2020-03-21 stsp if (err)
950 6338a6a1 2020-03-21 stsp goto done;
951 6338a6a1 2020-03-21 stsp
952 6338a6a1 2020-03-21 stsp err = got_ref_write(ref, repo);
953 6338a6a1 2020-03-21 stsp got_ref_close(ref);
954 6338a6a1 2020-03-21 stsp
955 6338a6a1 2020-03-21 stsp if (err == NULL && verbosity >= 0)
956 6338a6a1 2020-03-21 stsp printf("Created reference %s: %s\n", refname, id_str);
957 6338a6a1 2020-03-21 stsp done:
958 6338a6a1 2020-03-21 stsp free(id_str);
959 6338a6a1 2020-03-21 stsp return err;
960 0e4002ca 2020-03-21 stsp }
961 0e4002ca 2020-03-21 stsp
962 0e4002ca 2020-03-21 stsp static int
963 0e4002ca 2020-03-21 stsp match_wanted_ref(const char *refname, const char *wanted_ref)
964 0e4002ca 2020-03-21 stsp {
965 0e4002ca 2020-03-21 stsp if (strncmp(refname, "refs/", 5) != 0)
966 0e4002ca 2020-03-21 stsp return 0;
967 0e4002ca 2020-03-21 stsp refname += 5;
968 0e4002ca 2020-03-21 stsp
969 0e4002ca 2020-03-21 stsp /*
970 0e4002ca 2020-03-21 stsp * Prevent fetching of references that won't make any
971 0e4002ca 2020-03-21 stsp * sense outside of the remote repository's context.
972 0e4002ca 2020-03-21 stsp */
973 0e4002ca 2020-03-21 stsp if (strncmp(refname, "got/", 4) == 0)
974 0e4002ca 2020-03-21 stsp return 0;
975 0e4002ca 2020-03-21 stsp if (strncmp(refname, "remotes/", 8) == 0)
976 0e4002ca 2020-03-21 stsp return 0;
977 0e4002ca 2020-03-21 stsp
978 0e4002ca 2020-03-21 stsp if (strncmp(wanted_ref, "refs/", 5) == 0)
979 0e4002ca 2020-03-21 stsp wanted_ref += 5;
980 0e4002ca 2020-03-21 stsp
981 0e4002ca 2020-03-21 stsp /* Allow prefix match. */
982 0e4002ca 2020-03-21 stsp if (got_path_is_child(refname, wanted_ref, strlen(wanted_ref)))
983 0e4002ca 2020-03-21 stsp return 1;
984 0e4002ca 2020-03-21 stsp
985 0e4002ca 2020-03-21 stsp /* Allow exact match. */
986 0e4002ca 2020-03-21 stsp return (strcmp(refname, wanted_ref) == 0);
987 41b0de12 2020-03-21 stsp }
988 41b0de12 2020-03-21 stsp
989 0e4002ca 2020-03-21 stsp static int
990 0e4002ca 2020-03-21 stsp is_wanted_ref(struct got_pathlist_head *wanted_refs, const char *refname)
991 0e4002ca 2020-03-21 stsp {
992 0e4002ca 2020-03-21 stsp struct got_pathlist_entry *pe;
993 0e4002ca 2020-03-21 stsp
994 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
995 0e4002ca 2020-03-21 stsp if (match_wanted_ref(refname, pe->path))
996 0e4002ca 2020-03-21 stsp return 1;
997 0e4002ca 2020-03-21 stsp }
998 0e4002ca 2020-03-21 stsp
999 0e4002ca 2020-03-21 stsp return 0;
1000 0e4002ca 2020-03-21 stsp }
1001 0e4002ca 2020-03-21 stsp
1002 41b0de12 2020-03-21 stsp static const struct got_error *
1003 0e4002ca 2020-03-21 stsp create_wanted_ref(const char *refname, struct got_object_id *id,
1004 0e4002ca 2020-03-21 stsp const char *remote_repo_name, int verbosity, struct got_repository *repo)
1005 0e4002ca 2020-03-21 stsp {
1006 0e4002ca 2020-03-21 stsp const struct got_error *err;
1007 0e4002ca 2020-03-21 stsp char *remote_refname;
1008 0e4002ca 2020-03-21 stsp
1009 0e4002ca 2020-03-21 stsp if (strncmp("refs/", refname, 5) == 0)
1010 0e4002ca 2020-03-21 stsp refname += 5;
1011 0e4002ca 2020-03-21 stsp
1012 0e4002ca 2020-03-21 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1013 0e4002ca 2020-03-21 stsp remote_repo_name, refname) == -1)
1014 0e4002ca 2020-03-21 stsp return got_error_from_errno("asprintf");
1015 0e4002ca 2020-03-21 stsp
1016 0e4002ca 2020-03-21 stsp err = create_ref(remote_refname, id, verbosity, repo);
1017 0e4002ca 2020-03-21 stsp free(remote_refname);
1018 0e4002ca 2020-03-21 stsp return err;
1019 0e4002ca 2020-03-21 stsp }
1020 0e4002ca 2020-03-21 stsp
1021 0e4002ca 2020-03-21 stsp static const struct got_error *
1022 93658fb9 2020-03-18 stsp cmd_clone(int argc, char *argv[])
1023 93658fb9 2020-03-18 stsp {
1024 39c64a6a 2020-03-18 stsp const struct got_error *error = NULL;
1025 9df6f38b 2020-03-18 stsp const char *uri, *dirname;
1026 09838ffc 2020-03-18 stsp char *proto, *host, *port, *repo_name, *server_path;
1027 d9b4d0c0 2020-03-18 stsp char *default_destdir = NULL, *id_str = NULL;
1028 bb64b798 2020-03-18 stsp const char *repo_path;
1029 bb64b798 2020-03-18 stsp struct got_repository *repo = NULL;
1030 0e4002ca 2020-03-21 stsp struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
1031 d9b4d0c0 2020-03-18 stsp struct got_pathlist_entry *pe;
1032 d9b4d0c0 2020-03-18 stsp struct got_object_id *pack_hash = NULL;
1033 9c52365f 2020-03-21 stsp int ch, fetchfd = -1, fetchstatus;
1034 9c52365f 2020-03-21 stsp pid_t fetchpid = -1;
1035 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg fpa;
1036 b46f3e71 2020-03-18 stsp char *git_url = NULL;
1037 b46f3e71 2020-03-18 stsp char *gitconfig_path = NULL;
1038 b46f3e71 2020-03-18 stsp char *gitconfig = NULL;
1039 b46f3e71 2020-03-18 stsp FILE *gitconfig_file = NULL;
1040 b46f3e71 2020-03-18 stsp ssize_t n;
1041 659e7fbd 2020-03-20 stsp int verbosity = 0, fetch_all_branches = 0, mirror_references = 0;
1042 41b0de12 2020-03-21 stsp int list_refs_only = 0;
1043 659e7fbd 2020-03-20 stsp struct got_reference *head_symref = NULL;
1044 93658fb9 2020-03-18 stsp
1045 d9b4d0c0 2020-03-18 stsp TAILQ_INIT(&refs);
1046 d9b4d0c0 2020-03-18 stsp TAILQ_INIT(&symrefs);
1047 4ba14133 2020-03-20 stsp TAILQ_INIT(&wanted_branches);
1048 0e4002ca 2020-03-21 stsp TAILQ_INIT(&wanted_refs);
1049 d9b4d0c0 2020-03-18 stsp
1050 0e4002ca 2020-03-21 stsp while ((ch = getopt(argc, argv, "ab:lmvqR:")) != -1) {
1051 93658fb9 2020-03-18 stsp switch (ch) {
1052 659e7fbd 2020-03-20 stsp case 'a':
1053 659e7fbd 2020-03-20 stsp fetch_all_branches = 1;
1054 4ba14133 2020-03-20 stsp break;
1055 4ba14133 2020-03-20 stsp case 'b':
1056 4ba14133 2020-03-20 stsp error = got_pathlist_append(&wanted_branches,
1057 4ba14133 2020-03-20 stsp optarg, NULL);
1058 4ba14133 2020-03-20 stsp if (error)
1059 4ba14133 2020-03-20 stsp return error;
1060 659e7fbd 2020-03-20 stsp break;
1061 41b0de12 2020-03-21 stsp case 'l':
1062 41b0de12 2020-03-21 stsp list_refs_only = 1;
1063 41b0de12 2020-03-21 stsp break;
1064 469dd726 2020-03-20 stsp case 'm':
1065 469dd726 2020-03-20 stsp mirror_references = 1;
1066 469dd726 2020-03-20 stsp break;
1067 68999b92 2020-03-18 stsp case 'v':
1068 68999b92 2020-03-18 stsp if (verbosity < 0)
1069 68999b92 2020-03-18 stsp verbosity = 0;
1070 68999b92 2020-03-18 stsp else if (verbosity < 3)
1071 68999b92 2020-03-18 stsp verbosity++;
1072 68999b92 2020-03-18 stsp break;
1073 68999b92 2020-03-18 stsp case 'q':
1074 68999b92 2020-03-18 stsp verbosity = -1;
1075 68999b92 2020-03-18 stsp break;
1076 0e4002ca 2020-03-21 stsp case 'R':
1077 0e4002ca 2020-03-21 stsp error = got_pathlist_append(&wanted_refs,
1078 0e4002ca 2020-03-21 stsp optarg, NULL);
1079 0e4002ca 2020-03-21 stsp if (error)
1080 0e4002ca 2020-03-21 stsp return error;
1081 0e4002ca 2020-03-21 stsp break;
1082 93658fb9 2020-03-18 stsp default:
1083 93658fb9 2020-03-18 stsp usage_clone();
1084 93658fb9 2020-03-18 stsp break;
1085 93658fb9 2020-03-18 stsp }
1086 93658fb9 2020-03-18 stsp }
1087 93658fb9 2020-03-18 stsp argc -= optind;
1088 93658fb9 2020-03-18 stsp argv += optind;
1089 39c64a6a 2020-03-18 stsp
1090 4ba14133 2020-03-20 stsp if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
1091 41b0de12 2020-03-21 stsp errx(1, "-a and -b options are mutually exclusive");
1092 41b0de12 2020-03-21 stsp if (list_refs_only) {
1093 41b0de12 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_branches))
1094 41b0de12 2020-03-21 stsp errx(1, "-l and -b options are mutually exclusive");
1095 41b0de12 2020-03-21 stsp if (fetch_all_branches)
1096 41b0de12 2020-03-21 stsp errx(1, "-l and -a options are mutually exclusive");
1097 41b0de12 2020-03-21 stsp if (mirror_references)
1098 41b0de12 2020-03-21 stsp errx(1, "-l and -m options are mutually exclusive");
1099 41b0de12 2020-03-21 stsp if (verbosity == -1)
1100 41b0de12 2020-03-21 stsp errx(1, "-l and -q options are mutually exclusive");
1101 0e4002ca 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_refs))
1102 0e4002ca 2020-03-21 stsp errx(1, "-l and -R options are mutually exclusive");
1103 41b0de12 2020-03-21 stsp }
1104 4ba14133 2020-03-20 stsp
1105 93658fb9 2020-03-18 stsp uri = argv[0];
1106 9df6f38b 2020-03-18 stsp
1107 9df6f38b 2020-03-18 stsp if (argc == 1)
1108 93658fb9 2020-03-18 stsp dirname = NULL;
1109 9df6f38b 2020-03-18 stsp else if (argc == 2)
1110 93658fb9 2020-03-18 stsp dirname = argv[1];
1111 93658fb9 2020-03-18 stsp else
1112 93658fb9 2020-03-18 stsp usage_clone();
1113 09838ffc 2020-03-18 stsp
1114 39c64a6a 2020-03-18 stsp error = got_fetch_parse_uri(&proto, &host, &port, &server_path,
1115 09838ffc 2020-03-18 stsp &repo_name, argv[0]);
1116 39c64a6a 2020-03-18 stsp if (error)
1117 09f63084 2020-03-20 stsp goto done;
1118 09f63084 2020-03-20 stsp
1119 09f63084 2020-03-20 stsp if (asprintf(&git_url, "%s://%s%s%s%s%s", proto,
1120 09f63084 2020-03-20 stsp host, port ? ":" : "", port ? port : "",
1121 09f63084 2020-03-20 stsp server_path[0] != '/' ? "/" : "", server_path) == -1) {
1122 09f63084 2020-03-20 stsp error = got_error_from_errno("asprintf");
1123 09838ffc 2020-03-18 stsp goto done;
1124 09f63084 2020-03-20 stsp }
1125 09838ffc 2020-03-18 stsp
1126 39c64a6a 2020-03-18 stsp if (strcmp(proto, "git") == 0) {
1127 b46f3e71 2020-03-18 stsp #ifndef PROFILE
1128 39c64a6a 2020-03-18 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1129 39c64a6a 2020-03-18 stsp "sendfd dns inet unveil", NULL) == -1)
1130 39c64a6a 2020-03-18 stsp err(1, "pledge");
1131 b46f3e71 2020-03-18 stsp #endif
1132 39c64a6a 2020-03-18 stsp } else if (strcmp(proto, "git+ssh") == 0 ||
1133 39c64a6a 2020-03-18 stsp strcmp(proto, "ssh") == 0) {
1134 b46f3e71 2020-03-18 stsp #ifndef PROFILE
1135 39c64a6a 2020-03-18 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1136 39c64a6a 2020-03-18 stsp "sendfd unveil", NULL) == -1)
1137 39c64a6a 2020-03-18 stsp err(1, "pledge");
1138 b46f3e71 2020-03-18 stsp #endif
1139 39c64a6a 2020-03-18 stsp } else if (strcmp(proto, "http") == 0 ||
1140 39c64a6a 2020-03-18 stsp strcmp(proto, "git+http") == 0) {
1141 39c64a6a 2020-03-18 stsp error = got_error_path(proto, GOT_ERR_NOT_IMPL);
1142 39c64a6a 2020-03-18 stsp goto done;
1143 39c64a6a 2020-03-18 stsp } else {
1144 39c64a6a 2020-03-18 stsp error = got_error_path(proto, GOT_ERR_BAD_PROTO);
1145 39c64a6a 2020-03-18 stsp goto done;
1146 39c64a6a 2020-03-18 stsp }
1147 bb64b798 2020-03-18 stsp if (dirname == NULL) {
1148 bb64b798 2020-03-18 stsp if (asprintf(&default_destdir, "%s.git", repo_name) == -1) {
1149 39c64a6a 2020-03-18 stsp error = got_error_from_errno("asprintf");
1150 bb64b798 2020-03-18 stsp goto done;
1151 bb64b798 2020-03-18 stsp }
1152 bb64b798 2020-03-18 stsp repo_path = default_destdir;
1153 bb64b798 2020-03-18 stsp } else
1154 bb64b798 2020-03-18 stsp repo_path = dirname;
1155 bb64b798 2020-03-18 stsp
1156 41b0de12 2020-03-21 stsp if (!list_refs_only) {
1157 41b0de12 2020-03-21 stsp error = got_path_mkdir(repo_path);
1158 41b0de12 2020-03-21 stsp if (error)
1159 41b0de12 2020-03-21 stsp goto done;
1160 bb64b798 2020-03-18 stsp
1161 41b0de12 2020-03-21 stsp error = got_repo_init(repo_path);
1162 41b0de12 2020-03-21 stsp if (error)
1163 41b0de12 2020-03-21 stsp goto done;
1164 41b0de12 2020-03-21 stsp error = got_repo_open(&repo, repo_path, NULL);
1165 41b0de12 2020-03-21 stsp if (error)
1166 41b0de12 2020-03-21 stsp goto done;
1167 41b0de12 2020-03-21 stsp }
1168 bb64b798 2020-03-18 stsp
1169 ee448f5f 2020-03-18 stsp if (strcmp(proto, "git+ssh") == 0 || strcmp(proto, "ssh") == 0) {
1170 ee448f5f 2020-03-18 stsp if (unveil(GOT_FETCH_PATH_SSH, "x") != 0) {
1171 ee448f5f 2020-03-18 stsp error = got_error_from_errno2("unveil",
1172 ee448f5f 2020-03-18 stsp GOT_FETCH_PATH_SSH);
1173 ee448f5f 2020-03-18 stsp goto done;
1174 ee448f5f 2020-03-18 stsp }
1175 ee448f5f 2020-03-18 stsp }
1176 41b0de12 2020-03-21 stsp error = apply_unveil(repo ? got_repo_get_path(repo) : NULL, 0, NULL);
1177 ee448f5f 2020-03-18 stsp if (error)
1178 ee448f5f 2020-03-18 stsp goto done;
1179 ee448f5f 2020-03-18 stsp
1180 9c52365f 2020-03-21 stsp error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
1181 9c52365f 2020-03-21 stsp server_path, verbosity);
1182 39c64a6a 2020-03-18 stsp if (error)
1183 bb64b798 2020-03-18 stsp goto done;
1184 294dfefd 2020-03-18 stsp
1185 68999b92 2020-03-18 stsp if (verbosity >= 0)
1186 62a4c94c 2020-03-20 stsp printf("Connected to %s%s%s\n", host,
1187 62a4c94c 2020-03-20 stsp port ? ":" : "", port ? port : "");
1188 bb64b798 2020-03-18 stsp
1189 892ac3b6 2020-03-18 stsp fpa.last_scaled_size[0] = '\0';
1190 892ac3b6 2020-03-18 stsp fpa.last_p_indexed = -1;
1191 892ac3b6 2020-03-18 stsp fpa.last_p_resolved = -1;
1192 68999b92 2020-03-18 stsp fpa.verbosity = verbosity;
1193 7848a0e1 2020-03-19 stsp error = got_fetch_pack(&pack_hash, &refs, &symrefs,
1194 469dd726 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, mirror_references,
1195 0e4002ca 2020-03-21 stsp fetch_all_branches, &wanted_branches, &wanted_refs,
1196 0e4002ca 2020-03-21 stsp list_refs_only, verbosity, fetchfd, repo,
1197 0e4002ca 2020-03-21 stsp fetch_progress, &fpa);
1198 39c64a6a 2020-03-18 stsp if (error)
1199 d9b4d0c0 2020-03-18 stsp goto done;
1200 d9b4d0c0 2020-03-18 stsp
1201 41b0de12 2020-03-21 stsp if (list_refs_only) {
1202 41b0de12 2020-03-21 stsp error = list_remote_refs(&symrefs, &refs);
1203 41b0de12 2020-03-21 stsp goto done;
1204 41b0de12 2020-03-21 stsp }
1205 41b0de12 2020-03-21 stsp
1206 39c64a6a 2020-03-18 stsp error = got_object_id_str(&id_str, pack_hash);
1207 39c64a6a 2020-03-18 stsp if (error)
1208 d9b4d0c0 2020-03-18 stsp goto done;
1209 68999b92 2020-03-18 stsp if (verbosity >= 0)
1210 e69674d8 2020-03-19 stsp printf("\nFetched %s.pack\n", id_str);
1211 d9b4d0c0 2020-03-18 stsp free(id_str);
1212 d9b4d0c0 2020-03-18 stsp
1213 d9b4d0c0 2020-03-18 stsp /* Set up references provided with the pack file. */
1214 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &refs, entry) {
1215 d9b4d0c0 2020-03-18 stsp const char *refname = pe->path;
1216 d9b4d0c0 2020-03-18 stsp struct got_object_id *id = pe->data;
1217 7ebc0570 2020-03-18 stsp char *remote_refname;
1218 0e4002ca 2020-03-21 stsp
1219 0e4002ca 2020-03-21 stsp if (is_wanted_ref(&wanted_refs, refname) &&
1220 0e4002ca 2020-03-21 stsp !mirror_references) {
1221 0e4002ca 2020-03-21 stsp error = create_wanted_ref(refname, id,
1222 0e4002ca 2020-03-21 stsp GOT_FETCH_DEFAULT_REMOTE_NAME,
1223 0e4002ca 2020-03-21 stsp verbosity - 1, repo);
1224 0e4002ca 2020-03-21 stsp if (error)
1225 0e4002ca 2020-03-21 stsp goto done;
1226 0e4002ca 2020-03-21 stsp continue;
1227 0e4002ca 2020-03-21 stsp }
1228 668a20f6 2020-03-18 stsp
1229 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity - 1, repo);
1230 39c64a6a 2020-03-18 stsp if (error)
1231 d9b4d0c0 2020-03-18 stsp goto done;
1232 d9b4d0c0 2020-03-18 stsp
1233 469dd726 2020-03-20 stsp if (mirror_references)
1234 469dd726 2020-03-20 stsp continue;
1235 469dd726 2020-03-20 stsp
1236 7ebc0570 2020-03-18 stsp if (strncmp("refs/heads/", refname, 11) != 0)
1237 7ebc0570 2020-03-18 stsp continue;
1238 7ebc0570 2020-03-18 stsp
1239 7ebc0570 2020-03-18 stsp if (asprintf(&remote_refname,
1240 7ebc0570 2020-03-18 stsp "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1241 7ebc0570 2020-03-18 stsp refname + 11) == -1) {
1242 7ebc0570 2020-03-18 stsp error = got_error_from_errno("asprintf");
1243 7ebc0570 2020-03-18 stsp goto done;
1244 7ebc0570 2020-03-18 stsp }
1245 6338a6a1 2020-03-21 stsp error = create_ref(remote_refname, id, verbosity - 1, repo);
1246 39c64a6a 2020-03-18 stsp if (error)
1247 d9b4d0c0 2020-03-18 stsp goto done;
1248 d9b4d0c0 2020-03-18 stsp }
1249 d9b4d0c0 2020-03-18 stsp
1250 d9b4d0c0 2020-03-18 stsp /* Set the HEAD reference if the server provided one. */
1251 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
1252 659e7fbd 2020-03-20 stsp struct got_reference *target_ref;
1253 d9b4d0c0 2020-03-18 stsp const char *refname = pe->path;
1254 d9b4d0c0 2020-03-18 stsp const char *target = pe->data;
1255 d9b4d0c0 2020-03-18 stsp
1256 d9b4d0c0 2020-03-18 stsp if (strcmp(refname, GOT_REF_HEAD) != 0)
1257 d9b4d0c0 2020-03-18 stsp continue;
1258 d9b4d0c0 2020-03-18 stsp
1259 39c64a6a 2020-03-18 stsp error = got_ref_open(&target_ref, repo, target, 0);
1260 39c64a6a 2020-03-18 stsp if (error) {
1261 55330abe 2020-03-20 stsp if (error->code == GOT_ERR_NOT_REF) {
1262 55330abe 2020-03-20 stsp error = NULL;
1263 d9b4d0c0 2020-03-18 stsp continue;
1264 55330abe 2020-03-20 stsp }
1265 d9b4d0c0 2020-03-18 stsp goto done;
1266 d9b4d0c0 2020-03-18 stsp }
1267 d9b4d0c0 2020-03-18 stsp
1268 30718c93 2020-03-21 stsp error = create_head_ref(target_ref, verbosity, repo);
1269 d9b4d0c0 2020-03-18 stsp got_ref_close(target_ref);
1270 39c64a6a 2020-03-18 stsp if (error)
1271 d9b4d0c0 2020-03-18 stsp goto done;
1272 4ba14133 2020-03-20 stsp }
1273 4ba14133 2020-03-20 stsp if (pe == NULL) {
1274 4ba14133 2020-03-20 stsp /*
1275 4ba14133 2020-03-20 stsp * We failed to set the HEAD reference. If we asked for
1276 4ba14133 2020-03-20 stsp * a set of wanted branches use the first of one of those
1277 4ba14133 2020-03-20 stsp * which could be fetched instead.
1278 4ba14133 2020-03-20 stsp */
1279 4ba14133 2020-03-20 stsp TAILQ_FOREACH(pe, &wanted_branches, entry) {
1280 4ba14133 2020-03-20 stsp const char *target = pe->path;
1281 4ba14133 2020-03-20 stsp struct got_reference *target_ref;
1282 d9b4d0c0 2020-03-18 stsp
1283 4ba14133 2020-03-20 stsp error = got_ref_open(&target_ref, repo, target, 0);
1284 4ba14133 2020-03-20 stsp if (error) {
1285 4ba14133 2020-03-20 stsp if (error->code == GOT_ERR_NOT_REF) {
1286 4ba14133 2020-03-20 stsp error = NULL;
1287 4ba14133 2020-03-20 stsp continue;
1288 4ba14133 2020-03-20 stsp }
1289 4ba14133 2020-03-20 stsp goto done;
1290 4ba14133 2020-03-20 stsp }
1291 4ba14133 2020-03-20 stsp
1292 30718c93 2020-03-21 stsp error = create_head_ref(target_ref, verbosity, repo);
1293 4ba14133 2020-03-20 stsp got_ref_close(target_ref);
1294 4ba14133 2020-03-20 stsp if (error)
1295 4ba14133 2020-03-20 stsp goto done;
1296 4ba14133 2020-03-20 stsp break;
1297 4ba14133 2020-03-20 stsp }
1298 659e7fbd 2020-03-20 stsp }
1299 659e7fbd 2020-03-20 stsp
1300 659e7fbd 2020-03-20 stsp /* Create a config file git-fetch(1) can understand. */
1301 659e7fbd 2020-03-20 stsp gitconfig_path = got_repo_get_path_gitconfig(repo);
1302 659e7fbd 2020-03-20 stsp if (gitconfig_path == NULL) {
1303 659e7fbd 2020-03-20 stsp error = got_error_from_errno("got_repo_get_path_gitconfig");
1304 659e7fbd 2020-03-20 stsp goto done;
1305 659e7fbd 2020-03-20 stsp }
1306 659e7fbd 2020-03-20 stsp gitconfig_file = fopen(gitconfig_path, "a");
1307 659e7fbd 2020-03-20 stsp if (gitconfig_file == NULL) {
1308 659e7fbd 2020-03-20 stsp error = got_error_from_errno2("fopen", gitconfig_path);
1309 659e7fbd 2020-03-20 stsp goto done;
1310 b46f3e71 2020-03-18 stsp }
1311 659e7fbd 2020-03-20 stsp if (mirror_references) {
1312 659e7fbd 2020-03-20 stsp if (asprintf(&gitconfig,
1313 659e7fbd 2020-03-20 stsp "[remote \"%s\"]\n"
1314 659e7fbd 2020-03-20 stsp "\turl = %s\n"
1315 8ceee112 2020-03-20 stsp "\tfetch = +refs/*:refs/*\n"
1316 659e7fbd 2020-03-20 stsp "\tmirror = true\n",
1317 659e7fbd 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, git_url) == -1) {
1318 659e7fbd 2020-03-20 stsp error = got_error_from_errno("asprintf");
1319 659e7fbd 2020-03-20 stsp goto done;
1320 659e7fbd 2020-03-20 stsp }
1321 659e7fbd 2020-03-20 stsp } else if (fetch_all_branches) {
1322 659e7fbd 2020-03-20 stsp if (asprintf(&gitconfig,
1323 659e7fbd 2020-03-20 stsp "[remote \"%s\"]\n"
1324 659e7fbd 2020-03-20 stsp "\turl = %s\n"
1325 659e7fbd 2020-03-20 stsp "\tfetch = +refs/heads/*:refs/remotes/%s/*\n",
1326 659e7fbd 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, git_url,
1327 659e7fbd 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME) == -1) {
1328 659e7fbd 2020-03-20 stsp error = got_error_from_errno("asprintf");
1329 659e7fbd 2020-03-20 stsp goto done;
1330 659e7fbd 2020-03-20 stsp }
1331 659e7fbd 2020-03-20 stsp } else {
1332 659e7fbd 2020-03-20 stsp const char *branchname;
1333 d715f13e 2020-03-19 stsp
1334 659e7fbd 2020-03-20 stsp /*
1335 659e7fbd 2020-03-20 stsp * If the server specified a default branch, use just that one.
1336 659e7fbd 2020-03-20 stsp * Otherwise fall back to fetching all branches on next fetch.
1337 659e7fbd 2020-03-20 stsp */
1338 659e7fbd 2020-03-20 stsp if (head_symref) {
1339 659e7fbd 2020-03-20 stsp branchname = got_ref_get_symref_target(head_symref);
1340 659e7fbd 2020-03-20 stsp if (strncmp(branchname, "refs/heads/", 11) == 0)
1341 659e7fbd 2020-03-20 stsp branchname += 11;
1342 659e7fbd 2020-03-20 stsp } else
1343 659e7fbd 2020-03-20 stsp branchname = "*"; /* fall back to all branches */
1344 659e7fbd 2020-03-20 stsp if (asprintf(&gitconfig,
1345 659e7fbd 2020-03-20 stsp "[remote \"%s\"]\n"
1346 659e7fbd 2020-03-20 stsp "\turl = %s\n"
1347 659e7fbd 2020-03-20 stsp "\tfetch = +refs/heads/%s:refs/remotes/%s/%s\n",
1348 659e7fbd 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, git_url,
1349 659e7fbd 2020-03-20 stsp branchname, GOT_FETCH_DEFAULT_REMOTE_NAME,
1350 659e7fbd 2020-03-20 stsp branchname) == -1) {
1351 659e7fbd 2020-03-20 stsp error = got_error_from_errno("asprintf");
1352 659e7fbd 2020-03-20 stsp goto done;
1353 659e7fbd 2020-03-20 stsp }
1354 659e7fbd 2020-03-20 stsp }
1355 659e7fbd 2020-03-20 stsp n = fwrite(gitconfig, 1, strlen(gitconfig), gitconfig_file);
1356 659e7fbd 2020-03-20 stsp if (n != strlen(gitconfig)) {
1357 659e7fbd 2020-03-20 stsp error = got_ferror(gitconfig_file, GOT_ERR_IO);
1358 659e7fbd 2020-03-20 stsp goto done;
1359 659e7fbd 2020-03-20 stsp }
1360 659e7fbd 2020-03-20 stsp
1361 d715f13e 2020-03-19 stsp if (verbosity >= 0)
1362 469dd726 2020-03-20 stsp printf("Created %s repository '%s'\n",
1363 469dd726 2020-03-20 stsp mirror_references ? "mirrored" : "cloned", repo_path);
1364 09838ffc 2020-03-18 stsp done:
1365 9c52365f 2020-03-21 stsp if (fetchpid > 0) {
1366 9c52365f 2020-03-21 stsp if (kill(fetchpid, SIGTERM) == -1)
1367 9c52365f 2020-03-21 stsp error = got_error_from_errno("kill");
1368 9c52365f 2020-03-21 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
1369 9c52365f 2020-03-21 stsp error = got_error_from_errno("waitpid");
1370 9c52365f 2020-03-21 stsp }
1371 39c64a6a 2020-03-18 stsp if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
1372 39c64a6a 2020-03-18 stsp error = got_error_from_errno("close");
1373 b46f3e71 2020-03-18 stsp if (gitconfig_file && fclose(gitconfig_file) == EOF && error == NULL)
1374 b46f3e71 2020-03-18 stsp error = got_error_from_errno("fclose");
1375 bb64b798 2020-03-18 stsp if (repo)
1376 bb64b798 2020-03-18 stsp got_repo_close(repo);
1377 659e7fbd 2020-03-20 stsp if (head_symref)
1378 659e7fbd 2020-03-20 stsp got_ref_close(head_symref);
1379 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &refs, entry) {
1380 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
1381 d9b4d0c0 2020-03-18 stsp free(pe->data);
1382 d9b4d0c0 2020-03-18 stsp }
1383 d9b4d0c0 2020-03-18 stsp got_pathlist_free(&refs);
1384 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
1385 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
1386 d9b4d0c0 2020-03-18 stsp free(pe->data);
1387 d9b4d0c0 2020-03-18 stsp }
1388 d9b4d0c0 2020-03-18 stsp got_pathlist_free(&symrefs);
1389 4ba14133 2020-03-20 stsp got_pathlist_free(&wanted_branches);
1390 0e4002ca 2020-03-21 stsp got_pathlist_free(&wanted_refs);
1391 d9b4d0c0 2020-03-18 stsp free(pack_hash);
1392 09838ffc 2020-03-18 stsp free(proto);
1393 09838ffc 2020-03-18 stsp free(host);
1394 09838ffc 2020-03-18 stsp free(port);
1395 09838ffc 2020-03-18 stsp free(server_path);
1396 09838ffc 2020-03-18 stsp free(repo_name);
1397 bb64b798 2020-03-18 stsp free(default_destdir);
1398 b46f3e71 2020-03-18 stsp free(gitconfig_path);
1399 b46f3e71 2020-03-18 stsp free(git_url);
1400 39c64a6a 2020-03-18 stsp return error;
1401 7848a0e1 2020-03-19 stsp }
1402 7848a0e1 2020-03-19 stsp
1403 7848a0e1 2020-03-19 stsp static const struct got_error *
1404 7848a0e1 2020-03-19 stsp update_ref(struct got_reference *ref, struct got_object_id *new_id,
1405 db6d8ad8 2020-03-21 stsp int replace_tags, int verbosity, struct got_repository *repo)
1406 7848a0e1 2020-03-19 stsp {
1407 7848a0e1 2020-03-19 stsp const struct got_error *err = NULL;
1408 7848a0e1 2020-03-19 stsp char *new_id_str = NULL;
1409 7848a0e1 2020-03-19 stsp struct got_object_id *old_id = NULL;
1410 7848a0e1 2020-03-19 stsp
1411 7848a0e1 2020-03-19 stsp err = got_object_id_str(&new_id_str, new_id);
1412 7848a0e1 2020-03-19 stsp if (err)
1413 7848a0e1 2020-03-19 stsp goto done;
1414 7848a0e1 2020-03-19 stsp
1415 db6d8ad8 2020-03-21 stsp if (!replace_tags &&
1416 db6d8ad8 2020-03-21 stsp strncmp(got_ref_get_name(ref), "refs/tags/", 10) == 0) {
1417 88609724 2020-03-21 stsp err = got_ref_resolve(&old_id, repo, ref);
1418 88609724 2020-03-21 stsp if (err)
1419 88609724 2020-03-21 stsp goto done;
1420 88609724 2020-03-21 stsp if (got_object_id_cmp(old_id, new_id) == 0)
1421 88609724 2020-03-21 stsp goto done;
1422 db6d8ad8 2020-03-21 stsp if (verbosity >= 0) {
1423 db6d8ad8 2020-03-21 stsp printf("Rejecting update of existing tag %s: %s\n",
1424 db6d8ad8 2020-03-21 stsp got_ref_get_name(ref), new_id_str);
1425 db6d8ad8 2020-03-21 stsp }
1426 db6d8ad8 2020-03-21 stsp goto done;
1427 db6d8ad8 2020-03-21 stsp }
1428 db6d8ad8 2020-03-21 stsp
1429 7848a0e1 2020-03-19 stsp if (got_ref_is_symbolic(ref)) {
1430 688f11b3 2020-03-21 stsp if (verbosity >= 0) {
1431 e8a967e0 2020-03-21 stsp printf("Replacing reference %s: %s\n",
1432 6338a6a1 2020-03-21 stsp got_ref_get_name(ref),
1433 6338a6a1 2020-03-21 stsp got_ref_get_symref_target(ref));
1434 688f11b3 2020-03-21 stsp }
1435 e8a967e0 2020-03-21 stsp err = got_ref_change_symref_to_ref(ref, new_id);
1436 7848a0e1 2020-03-19 stsp if (err)
1437 7848a0e1 2020-03-19 stsp goto done;
1438 e8a967e0 2020-03-21 stsp err = got_ref_write(ref, repo);
1439 e8a967e0 2020-03-21 stsp if (err)
1440 e8a967e0 2020-03-21 stsp goto done;
1441 7848a0e1 2020-03-19 stsp } else {
1442 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&old_id, repo, ref);
1443 7848a0e1 2020-03-19 stsp if (err)
1444 7848a0e1 2020-03-19 stsp goto done;
1445 6338a6a1 2020-03-21 stsp if (got_object_id_cmp(old_id, new_id) == 0)
1446 6338a6a1 2020-03-21 stsp goto done;
1447 6338a6a1 2020-03-21 stsp
1448 6338a6a1 2020-03-21 stsp err = got_ref_change_ref(ref, new_id);
1449 6338a6a1 2020-03-21 stsp if (err)
1450 6338a6a1 2020-03-21 stsp goto done;
1451 6338a6a1 2020-03-21 stsp err = got_ref_write(ref, repo);
1452 6338a6a1 2020-03-21 stsp if (err)
1453 6338a6a1 2020-03-21 stsp goto done;
1454 7848a0e1 2020-03-19 stsp }
1455 6338a6a1 2020-03-21 stsp
1456 6338a6a1 2020-03-21 stsp if (verbosity >= 0)
1457 6338a6a1 2020-03-21 stsp printf("Updated reference %s: %s\n", got_ref_get_name(ref),
1458 6338a6a1 2020-03-21 stsp new_id_str);
1459 7848a0e1 2020-03-19 stsp done:
1460 7848a0e1 2020-03-19 stsp free(old_id);
1461 7848a0e1 2020-03-19 stsp free(new_id_str);
1462 7848a0e1 2020-03-19 stsp return err;
1463 2ab43947 2020-03-18 stsp }
1464 2ab43947 2020-03-18 stsp
1465 2ab43947 2020-03-18 stsp __dead static void
1466 7848a0e1 2020-03-19 stsp usage_fetch(void)
1467 7848a0e1 2020-03-19 stsp {
1468 f21ec2f0 2020-03-21 stsp fprintf(stderr, "usage: %s fetch [-a] [-b branch] [-d] [-l] "
1469 0e4002ca 2020-03-21 stsp "[-r repository-path] [-t] [-q] [-v] [-R reference] "
1470 0e4002ca 2020-03-21 stsp "[remote-repository-name]\n",
1471 13f12b09 2020-03-21 stsp getprogname());
1472 7848a0e1 2020-03-19 stsp exit(1);
1473 7848a0e1 2020-03-19 stsp }
1474 7848a0e1 2020-03-19 stsp
1475 7848a0e1 2020-03-19 stsp static const struct got_error *
1476 f21ec2f0 2020-03-21 stsp delete_missing_refs(struct got_pathlist_head *their_refs,
1477 688f11b3 2020-03-21 stsp int verbosity, struct got_repository *repo)
1478 f21ec2f0 2020-03-21 stsp {
1479 f21ec2f0 2020-03-21 stsp const struct got_error *err = NULL;
1480 f21ec2f0 2020-03-21 stsp struct got_reflist_head my_refs;
1481 f21ec2f0 2020-03-21 stsp struct got_reflist_entry *re;
1482 f21ec2f0 2020-03-21 stsp struct got_pathlist_entry *pe;
1483 f21ec2f0 2020-03-21 stsp struct got_object_id *id;
1484 f21ec2f0 2020-03-21 stsp char *id_str;
1485 f21ec2f0 2020-03-21 stsp
1486 f21ec2f0 2020-03-21 stsp SIMPLEQ_INIT(&my_refs);
1487 f21ec2f0 2020-03-21 stsp
1488 f21ec2f0 2020-03-21 stsp err = got_ref_list(&my_refs, repo, NULL, got_ref_cmp_by_name, NULL);
1489 f21ec2f0 2020-03-21 stsp if (err)
1490 f21ec2f0 2020-03-21 stsp return err;
1491 f21ec2f0 2020-03-21 stsp
1492 f21ec2f0 2020-03-21 stsp SIMPLEQ_FOREACH(re, &my_refs, entry) {
1493 f21ec2f0 2020-03-21 stsp const char *refname = got_ref_get_name(re->ref);
1494 f21ec2f0 2020-03-21 stsp
1495 f21ec2f0 2020-03-21 stsp if (strncmp(refname, "refs/heads/", 11) != 0 &&
1496 f21ec2f0 2020-03-21 stsp strncmp(refname, "refs/tags/", 10) != 0)
1497 f21ec2f0 2020-03-21 stsp continue;
1498 f21ec2f0 2020-03-21 stsp
1499 f21ec2f0 2020-03-21 stsp TAILQ_FOREACH(pe, their_refs, entry) {
1500 f21ec2f0 2020-03-21 stsp if (strcmp(refname, pe->path) == 0)
1501 f21ec2f0 2020-03-21 stsp break;
1502 f21ec2f0 2020-03-21 stsp }
1503 f21ec2f0 2020-03-21 stsp if (pe != NULL)
1504 f21ec2f0 2020-03-21 stsp continue;
1505 f21ec2f0 2020-03-21 stsp
1506 f21ec2f0 2020-03-21 stsp err = got_ref_resolve(&id, repo, re->ref);
1507 f21ec2f0 2020-03-21 stsp if (err)
1508 f21ec2f0 2020-03-21 stsp break;
1509 f21ec2f0 2020-03-21 stsp err = got_object_id_str(&id_str, id);
1510 f21ec2f0 2020-03-21 stsp free(id);
1511 f21ec2f0 2020-03-21 stsp if (err)
1512 f21ec2f0 2020-03-21 stsp break;
1513 f21ec2f0 2020-03-21 stsp
1514 f21ec2f0 2020-03-21 stsp free(id_str);
1515 f21ec2f0 2020-03-21 stsp err = got_ref_delete(re->ref, repo);
1516 f21ec2f0 2020-03-21 stsp if (err)
1517 f21ec2f0 2020-03-21 stsp break;
1518 6338a6a1 2020-03-21 stsp if (verbosity >= 0) {
1519 6338a6a1 2020-03-21 stsp printf("Deleted reference %s: %s\n",
1520 6338a6a1 2020-03-21 stsp got_ref_get_name(re->ref), id_str);
1521 6338a6a1 2020-03-21 stsp }
1522 f21ec2f0 2020-03-21 stsp }
1523 0e4002ca 2020-03-21 stsp
1524 0e4002ca 2020-03-21 stsp return err;
1525 0e4002ca 2020-03-21 stsp }
1526 0e4002ca 2020-03-21 stsp
1527 0e4002ca 2020-03-21 stsp static const struct got_error *
1528 0e4002ca 2020-03-21 stsp update_wanted_ref(const char *refname, struct got_object_id *id,
1529 0e4002ca 2020-03-21 stsp const char *remote_repo_name, int verbosity, struct got_repository *repo)
1530 0e4002ca 2020-03-21 stsp {
1531 9f142382 2020-03-21 stsp const struct got_error *err, *unlock_err;
1532 0e4002ca 2020-03-21 stsp char *remote_refname;
1533 0e4002ca 2020-03-21 stsp struct got_reference *ref;
1534 0e4002ca 2020-03-21 stsp
1535 0e4002ca 2020-03-21 stsp if (strncmp("refs/", refname, 5) == 0)
1536 0e4002ca 2020-03-21 stsp refname += 5;
1537 0e4002ca 2020-03-21 stsp
1538 0e4002ca 2020-03-21 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1539 0e4002ca 2020-03-21 stsp remote_repo_name, refname) == -1)
1540 0e4002ca 2020-03-21 stsp return got_error_from_errno("asprintf");
1541 f21ec2f0 2020-03-21 stsp
1542 9f142382 2020-03-21 stsp err = got_ref_open(&ref, repo, remote_refname, 1);
1543 0e4002ca 2020-03-21 stsp if (err) {
1544 0e4002ca 2020-03-21 stsp if (err->code != GOT_ERR_NOT_REF)
1545 0e4002ca 2020-03-21 stsp goto done;
1546 0e4002ca 2020-03-21 stsp err = create_ref(remote_refname, id, verbosity, repo);
1547 0e4002ca 2020-03-21 stsp } else {
1548 0e4002ca 2020-03-21 stsp err = update_ref(ref, id, 0, verbosity, repo);
1549 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
1550 9f142382 2020-03-21 stsp if (unlock_err && err == NULL)
1551 9f142382 2020-03-21 stsp err = unlock_err;
1552 0e4002ca 2020-03-21 stsp got_ref_close(ref);
1553 0e4002ca 2020-03-21 stsp }
1554 0e4002ca 2020-03-21 stsp done:
1555 0e4002ca 2020-03-21 stsp free(remote_refname);
1556 f21ec2f0 2020-03-21 stsp return err;
1557 f21ec2f0 2020-03-21 stsp }
1558 f21ec2f0 2020-03-21 stsp
1559 f21ec2f0 2020-03-21 stsp static const struct got_error *
1560 7848a0e1 2020-03-19 stsp cmd_fetch(int argc, char *argv[])
1561 7848a0e1 2020-03-19 stsp {
1562 9f142382 2020-03-21 stsp const struct got_error *error = NULL, *unlock_err;
1563 7848a0e1 2020-03-19 stsp char *cwd = NULL, *repo_path = NULL;
1564 7848a0e1 2020-03-19 stsp const char *remote_name;
1565 7848a0e1 2020-03-19 stsp char *proto = NULL, *host = NULL, *port = NULL;
1566 7848a0e1 2020-03-19 stsp char *repo_name = NULL, *server_path = NULL;
1567 7848a0e1 2020-03-19 stsp struct got_remote_repo *remotes, *remote = NULL;
1568 7848a0e1 2020-03-19 stsp int nremotes;
1569 7848a0e1 2020-03-19 stsp char *id_str = NULL;
1570 7848a0e1 2020-03-19 stsp struct got_repository *repo = NULL;
1571 7848a0e1 2020-03-19 stsp struct got_worktree *worktree = NULL;
1572 0e4002ca 2020-03-21 stsp struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
1573 7848a0e1 2020-03-19 stsp struct got_pathlist_entry *pe;
1574 7848a0e1 2020-03-19 stsp struct got_object_id *pack_hash = NULL;
1575 9c52365f 2020-03-21 stsp int i, ch, fetchfd = -1, fetchstatus;
1576 9c52365f 2020-03-21 stsp pid_t fetchpid = -1;
1577 7848a0e1 2020-03-19 stsp struct got_fetch_progress_arg fpa;
1578 41b0de12 2020-03-21 stsp int verbosity = 0, fetch_all_branches = 0, list_refs_only = 0;
1579 db6d8ad8 2020-03-21 stsp int delete_refs = 0, replace_tags = 0;
1580 7848a0e1 2020-03-19 stsp
1581 7848a0e1 2020-03-19 stsp TAILQ_INIT(&refs);
1582 7848a0e1 2020-03-19 stsp TAILQ_INIT(&symrefs);
1583 4ba14133 2020-03-20 stsp TAILQ_INIT(&wanted_branches);
1584 0e4002ca 2020-03-21 stsp TAILQ_INIT(&wanted_refs);
1585 7848a0e1 2020-03-19 stsp
1586 0e4002ca 2020-03-21 stsp while ((ch = getopt(argc, argv, "ab:dlr:tvqR:")) != -1) {
1587 7848a0e1 2020-03-19 stsp switch (ch) {
1588 659e7fbd 2020-03-20 stsp case 'a':
1589 659e7fbd 2020-03-20 stsp fetch_all_branches = 1;
1590 4ba14133 2020-03-20 stsp break;
1591 4ba14133 2020-03-20 stsp case 'b':
1592 4ba14133 2020-03-20 stsp error = got_pathlist_append(&wanted_branches,
1593 4ba14133 2020-03-20 stsp optarg, NULL);
1594 4ba14133 2020-03-20 stsp if (error)
1595 4ba14133 2020-03-20 stsp return error;
1596 41b0de12 2020-03-21 stsp break;
1597 f21ec2f0 2020-03-21 stsp case 'd':
1598 f21ec2f0 2020-03-21 stsp delete_refs = 1;
1599 f21ec2f0 2020-03-21 stsp break;
1600 41b0de12 2020-03-21 stsp case 'l':
1601 41b0de12 2020-03-21 stsp list_refs_only = 1;
1602 659e7fbd 2020-03-20 stsp break;
1603 7848a0e1 2020-03-19 stsp case 'r':
1604 7848a0e1 2020-03-19 stsp repo_path = realpath(optarg, NULL);
1605 7848a0e1 2020-03-19 stsp if (repo_path == NULL)
1606 7848a0e1 2020-03-19 stsp return got_error_from_errno2("realpath",
1607 7848a0e1 2020-03-19 stsp optarg);
1608 7848a0e1 2020-03-19 stsp got_path_strip_trailing_slashes(repo_path);
1609 7848a0e1 2020-03-19 stsp break;
1610 db6d8ad8 2020-03-21 stsp case 't':
1611 db6d8ad8 2020-03-21 stsp replace_tags = 1;
1612 db6d8ad8 2020-03-21 stsp break;
1613 7848a0e1 2020-03-19 stsp case 'v':
1614 7848a0e1 2020-03-19 stsp if (verbosity < 0)
1615 7848a0e1 2020-03-19 stsp verbosity = 0;
1616 7848a0e1 2020-03-19 stsp else if (verbosity < 3)
1617 7848a0e1 2020-03-19 stsp verbosity++;
1618 7848a0e1 2020-03-19 stsp break;
1619 7848a0e1 2020-03-19 stsp case 'q':
1620 7848a0e1 2020-03-19 stsp verbosity = -1;
1621 7848a0e1 2020-03-19 stsp break;
1622 0e4002ca 2020-03-21 stsp case 'R':
1623 0e4002ca 2020-03-21 stsp error = got_pathlist_append(&wanted_refs,
1624 0e4002ca 2020-03-21 stsp optarg, NULL);
1625 0e4002ca 2020-03-21 stsp if (error)
1626 0e4002ca 2020-03-21 stsp return error;
1627 0e4002ca 2020-03-21 stsp break;
1628 7848a0e1 2020-03-19 stsp default:
1629 7848a0e1 2020-03-19 stsp usage_fetch();
1630 7848a0e1 2020-03-19 stsp break;
1631 7848a0e1 2020-03-19 stsp }
1632 7848a0e1 2020-03-19 stsp }
1633 7848a0e1 2020-03-19 stsp argc -= optind;
1634 7848a0e1 2020-03-19 stsp argv += optind;
1635 7848a0e1 2020-03-19 stsp
1636 4ba14133 2020-03-20 stsp if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
1637 41b0de12 2020-03-21 stsp errx(1, "-a and -b options are mutually exclusive");
1638 41b0de12 2020-03-21 stsp if (list_refs_only) {
1639 41b0de12 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_branches))
1640 41b0de12 2020-03-21 stsp errx(1, "-l and -b options are mutually exclusive");
1641 41b0de12 2020-03-21 stsp if (fetch_all_branches)
1642 41b0de12 2020-03-21 stsp errx(1, "-l and -a options are mutually exclusive");
1643 f21ec2f0 2020-03-21 stsp if (delete_refs)
1644 f21ec2f0 2020-03-21 stsp errx(1, "-l and -d options are mutually exclusive");
1645 41b0de12 2020-03-21 stsp if (verbosity == -1)
1646 41b0de12 2020-03-21 stsp errx(1, "-l and -q options are mutually exclusive");
1647 41b0de12 2020-03-21 stsp }
1648 4ba14133 2020-03-20 stsp
1649 7848a0e1 2020-03-19 stsp if (argc == 0)
1650 7848a0e1 2020-03-19 stsp remote_name = GOT_FETCH_DEFAULT_REMOTE_NAME;
1651 7848a0e1 2020-03-19 stsp else if (argc == 1)
1652 7848a0e1 2020-03-19 stsp remote_name = argv[0];
1653 7848a0e1 2020-03-19 stsp else
1654 7848a0e1 2020-03-19 stsp usage_fetch();
1655 7848a0e1 2020-03-19 stsp
1656 7848a0e1 2020-03-19 stsp cwd = getcwd(NULL, 0);
1657 7848a0e1 2020-03-19 stsp if (cwd == NULL) {
1658 7848a0e1 2020-03-19 stsp error = got_error_from_errno("getcwd");
1659 7848a0e1 2020-03-19 stsp goto done;
1660 7848a0e1 2020-03-19 stsp }
1661 7848a0e1 2020-03-19 stsp
1662 7848a0e1 2020-03-19 stsp if (repo_path == NULL) {
1663 7848a0e1 2020-03-19 stsp error = got_worktree_open(&worktree, cwd);
1664 7848a0e1 2020-03-19 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1665 7848a0e1 2020-03-19 stsp goto done;
1666 7848a0e1 2020-03-19 stsp else
1667 7848a0e1 2020-03-19 stsp error = NULL;
1668 7848a0e1 2020-03-19 stsp if (worktree) {
1669 7848a0e1 2020-03-19 stsp repo_path =
1670 7848a0e1 2020-03-19 stsp strdup(got_worktree_get_repo_path(worktree));
1671 7848a0e1 2020-03-19 stsp if (repo_path == NULL)
1672 7848a0e1 2020-03-19 stsp error = got_error_from_errno("strdup");
1673 7848a0e1 2020-03-19 stsp if (error)
1674 7848a0e1 2020-03-19 stsp goto done;
1675 7848a0e1 2020-03-19 stsp } else {
1676 7848a0e1 2020-03-19 stsp repo_path = strdup(cwd);
1677 7848a0e1 2020-03-19 stsp if (repo_path == NULL) {
1678 7848a0e1 2020-03-19 stsp error = got_error_from_errno("strdup");
1679 7848a0e1 2020-03-19 stsp goto done;
1680 7848a0e1 2020-03-19 stsp }
1681 7848a0e1 2020-03-19 stsp }
1682 7848a0e1 2020-03-19 stsp }
1683 7848a0e1 2020-03-19 stsp
1684 7848a0e1 2020-03-19 stsp error = got_repo_open(&repo, repo_path, NULL);
1685 7848a0e1 2020-03-19 stsp if (error)
1686 7848a0e1 2020-03-19 stsp goto done;
1687 7848a0e1 2020-03-19 stsp
1688 7848a0e1 2020-03-19 stsp got_repo_get_gitconfig_remotes(&nremotes, &remotes, repo);
1689 7848a0e1 2020-03-19 stsp for (i = 0; i < nremotes; i++) {
1690 7848a0e1 2020-03-19 stsp remote = &remotes[i];
1691 7848a0e1 2020-03-19 stsp if (strcmp(remote->name, remote_name) == 0)
1692 7848a0e1 2020-03-19 stsp break;
1693 7848a0e1 2020-03-19 stsp }
1694 7848a0e1 2020-03-19 stsp if (i == nremotes) {
1695 7848a0e1 2020-03-19 stsp error = got_error_path(remote_name, GOT_ERR_NO_REMOTE);
1696 7848a0e1 2020-03-19 stsp goto done;
1697 7848a0e1 2020-03-19 stsp }
1698 7848a0e1 2020-03-19 stsp
1699 7848a0e1 2020-03-19 stsp error = got_fetch_parse_uri(&proto, &host, &port, &server_path,
1700 7848a0e1 2020-03-19 stsp &repo_name, remote->url);
1701 7848a0e1 2020-03-19 stsp if (error)
1702 7848a0e1 2020-03-19 stsp goto done;
1703 7848a0e1 2020-03-19 stsp
1704 7848a0e1 2020-03-19 stsp if (strcmp(proto, "git") == 0) {
1705 7848a0e1 2020-03-19 stsp #ifndef PROFILE
1706 7848a0e1 2020-03-19 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1707 7848a0e1 2020-03-19 stsp "sendfd dns inet unveil", NULL) == -1)
1708 7848a0e1 2020-03-19 stsp err(1, "pledge");
1709 7848a0e1 2020-03-19 stsp #endif
1710 7848a0e1 2020-03-19 stsp } else if (strcmp(proto, "git+ssh") == 0 ||
1711 7848a0e1 2020-03-19 stsp strcmp(proto, "ssh") == 0) {
1712 7848a0e1 2020-03-19 stsp #ifndef PROFILE
1713 7848a0e1 2020-03-19 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1714 7848a0e1 2020-03-19 stsp "sendfd unveil", NULL) == -1)
1715 7848a0e1 2020-03-19 stsp err(1, "pledge");
1716 7848a0e1 2020-03-19 stsp #endif
1717 7848a0e1 2020-03-19 stsp } else if (strcmp(proto, "http") == 0 ||
1718 7848a0e1 2020-03-19 stsp strcmp(proto, "git+http") == 0) {
1719 7848a0e1 2020-03-19 stsp error = got_error_path(proto, GOT_ERR_NOT_IMPL);
1720 7848a0e1 2020-03-19 stsp goto done;
1721 7848a0e1 2020-03-19 stsp } else {
1722 7848a0e1 2020-03-19 stsp error = got_error_path(proto, GOT_ERR_BAD_PROTO);
1723 7848a0e1 2020-03-19 stsp goto done;
1724 7848a0e1 2020-03-19 stsp }
1725 7848a0e1 2020-03-19 stsp
1726 7848a0e1 2020-03-19 stsp if (strcmp(proto, "git+ssh") == 0 || strcmp(proto, "ssh") == 0) {
1727 7848a0e1 2020-03-19 stsp if (unveil(GOT_FETCH_PATH_SSH, "x") != 0) {
1728 7848a0e1 2020-03-19 stsp error = got_error_from_errno2("unveil",
1729 7848a0e1 2020-03-19 stsp GOT_FETCH_PATH_SSH);
1730 7848a0e1 2020-03-19 stsp goto done;
1731 7848a0e1 2020-03-19 stsp }
1732 7848a0e1 2020-03-19 stsp }
1733 7848a0e1 2020-03-19 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
1734 7848a0e1 2020-03-19 stsp if (error)
1735 7848a0e1 2020-03-19 stsp goto done;
1736 7848a0e1 2020-03-19 stsp
1737 9c52365f 2020-03-21 stsp error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
1738 9c52365f 2020-03-21 stsp server_path, verbosity);
1739 7848a0e1 2020-03-19 stsp if (error)
1740 7848a0e1 2020-03-19 stsp goto done;
1741 7848a0e1 2020-03-19 stsp
1742 7848a0e1 2020-03-19 stsp if (verbosity >= 0)
1743 62a4c94c 2020-03-20 stsp printf("Connected to \"%s\" %s%s%s\n", remote->name, host,
1744 62a4c94c 2020-03-20 stsp port ? ":" : "", port ? port : "");
1745 7848a0e1 2020-03-19 stsp
1746 7848a0e1 2020-03-19 stsp fpa.last_scaled_size[0] = '\0';
1747 7848a0e1 2020-03-19 stsp fpa.last_p_indexed = -1;
1748 7848a0e1 2020-03-19 stsp fpa.last_p_resolved = -1;
1749 7848a0e1 2020-03-19 stsp fpa.verbosity = verbosity;
1750 7848a0e1 2020-03-19 stsp error = got_fetch_pack(&pack_hash, &refs, &symrefs, remote->name,
1751 4ba14133 2020-03-20 stsp remote->mirror_references, fetch_all_branches, &wanted_branches,
1752 0e4002ca 2020-03-21 stsp &wanted_refs, list_refs_only, verbosity, fetchfd, repo,
1753 0e4002ca 2020-03-21 stsp fetch_progress, &fpa);
1754 7848a0e1 2020-03-19 stsp if (error)
1755 7848a0e1 2020-03-19 stsp goto done;
1756 7848a0e1 2020-03-19 stsp
1757 41b0de12 2020-03-21 stsp if (list_refs_only) {
1758 41b0de12 2020-03-21 stsp error = list_remote_refs(&symrefs, &refs);
1759 41b0de12 2020-03-21 stsp goto done;
1760 41b0de12 2020-03-21 stsp }
1761 41b0de12 2020-03-21 stsp
1762 7848a0e1 2020-03-19 stsp if (pack_hash == NULL) {
1763 7848a0e1 2020-03-19 stsp if (verbosity >= 0)
1764 7848a0e1 2020-03-19 stsp printf("Already up-to-date\n");
1765 f21ec2f0 2020-03-21 stsp if (delete_refs)
1766 688f11b3 2020-03-21 stsp error = delete_missing_refs(&refs, verbosity, repo);
1767 7848a0e1 2020-03-19 stsp goto done;
1768 7848a0e1 2020-03-19 stsp }
1769 7848a0e1 2020-03-19 stsp
1770 984065c8 2020-03-19 stsp if (verbosity >= 0) {
1771 984065c8 2020-03-19 stsp error = got_object_id_str(&id_str, pack_hash);
1772 984065c8 2020-03-19 stsp if (error)
1773 984065c8 2020-03-19 stsp goto done;
1774 e69674d8 2020-03-19 stsp printf("\nFetched %s.pack\n", id_str);
1775 984065c8 2020-03-19 stsp free(id_str);
1776 984065c8 2020-03-19 stsp id_str = NULL;
1777 984065c8 2020-03-19 stsp }
1778 7848a0e1 2020-03-19 stsp
1779 7848a0e1 2020-03-19 stsp /* Update references provided with the pack file. */
1780 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &refs, entry) {
1781 7848a0e1 2020-03-19 stsp const char *refname = pe->path;
1782 7848a0e1 2020-03-19 stsp struct got_object_id *id = pe->data;
1783 7848a0e1 2020-03-19 stsp struct got_reference *ref;
1784 7848a0e1 2020-03-19 stsp char *remote_refname;
1785 7848a0e1 2020-03-19 stsp
1786 0e4002ca 2020-03-21 stsp if (is_wanted_ref(&wanted_refs, refname) &&
1787 0e4002ca 2020-03-21 stsp !remote->mirror_references) {
1788 0e4002ca 2020-03-21 stsp error = update_wanted_ref(refname, id,
1789 0e4002ca 2020-03-21 stsp remote->name, verbosity, repo);
1790 0e4002ca 2020-03-21 stsp if (error)
1791 0e4002ca 2020-03-21 stsp goto done;
1792 0e4002ca 2020-03-21 stsp continue;
1793 0e4002ca 2020-03-21 stsp }
1794 0e4002ca 2020-03-21 stsp
1795 1510c839 2020-03-20 stsp if (remote->mirror_references ||
1796 1510c839 2020-03-20 stsp strncmp("refs/tags/", refname, 10) == 0) {
1797 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, refname, 1);
1798 7848a0e1 2020-03-19 stsp if (error) {
1799 7848a0e1 2020-03-19 stsp if (error->code != GOT_ERR_NOT_REF)
1800 7848a0e1 2020-03-19 stsp goto done;
1801 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity,
1802 6338a6a1 2020-03-21 stsp repo);
1803 7848a0e1 2020-03-19 stsp if (error)
1804 7848a0e1 2020-03-19 stsp goto done;
1805 7848a0e1 2020-03-19 stsp } else {
1806 db6d8ad8 2020-03-21 stsp error = update_ref(ref, id, replace_tags,
1807 db6d8ad8 2020-03-21 stsp verbosity, repo);
1808 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
1809 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
1810 9f142382 2020-03-21 stsp error = unlock_err;
1811 7848a0e1 2020-03-19 stsp got_ref_close(ref);
1812 7848a0e1 2020-03-19 stsp if (error)
1813 7848a0e1 2020-03-19 stsp goto done;
1814 7848a0e1 2020-03-19 stsp }
1815 7848a0e1 2020-03-19 stsp } else if (strncmp("refs/heads/", refname, 11) == 0) {
1816 7848a0e1 2020-03-19 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1817 7848a0e1 2020-03-19 stsp remote_name, refname + 11) == -1) {
1818 7848a0e1 2020-03-19 stsp error = got_error_from_errno("asprintf");
1819 7848a0e1 2020-03-19 stsp goto done;
1820 7848a0e1 2020-03-19 stsp }
1821 7848a0e1 2020-03-19 stsp
1822 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, remote_refname, 1);
1823 7848a0e1 2020-03-19 stsp if (error) {
1824 7848a0e1 2020-03-19 stsp if (error->code != GOT_ERR_NOT_REF)
1825 7848a0e1 2020-03-19 stsp goto done;
1826 6338a6a1 2020-03-21 stsp error = create_ref(remote_refname, id,
1827 688f11b3 2020-03-21 stsp verbosity, repo);
1828 7848a0e1 2020-03-19 stsp if (error)
1829 7848a0e1 2020-03-19 stsp goto done;
1830 7848a0e1 2020-03-19 stsp } else {
1831 db6d8ad8 2020-03-21 stsp error = update_ref(ref, id, replace_tags,
1832 db6d8ad8 2020-03-21 stsp verbosity, repo);
1833 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
1834 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
1835 9f142382 2020-03-21 stsp error = unlock_err;
1836 7848a0e1 2020-03-19 stsp got_ref_close(ref);
1837 7848a0e1 2020-03-19 stsp if (error)
1838 7848a0e1 2020-03-19 stsp goto done;
1839 7848a0e1 2020-03-19 stsp }
1840 2ec30c80 2020-03-20 stsp
1841 2ec30c80 2020-03-20 stsp /* Also create a local branch if none exists yet. */
1842 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, refname, 1);
1843 2ec30c80 2020-03-20 stsp if (error) {
1844 2ec30c80 2020-03-20 stsp if (error->code != GOT_ERR_NOT_REF)
1845 2ec30c80 2020-03-20 stsp goto done;
1846 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity,
1847 6338a6a1 2020-03-21 stsp repo);
1848 2ec30c80 2020-03-20 stsp if (error)
1849 2ec30c80 2020-03-20 stsp goto done;
1850 9f142382 2020-03-21 stsp } else {
1851 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
1852 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
1853 9f142382 2020-03-21 stsp error = unlock_err;
1854 2ec30c80 2020-03-20 stsp got_ref_close(ref);
1855 9f142382 2020-03-21 stsp }
1856 7848a0e1 2020-03-19 stsp }
1857 7848a0e1 2020-03-19 stsp }
1858 f21ec2f0 2020-03-21 stsp if (delete_refs)
1859 688f11b3 2020-03-21 stsp error = delete_missing_refs(&refs, verbosity, repo);
1860 7848a0e1 2020-03-19 stsp done:
1861 9c52365f 2020-03-21 stsp if (fetchpid > 0) {
1862 9c52365f 2020-03-21 stsp if (kill(fetchpid, SIGTERM) == -1)
1863 9c52365f 2020-03-21 stsp error = got_error_from_errno("kill");
1864 9c52365f 2020-03-21 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
1865 9c52365f 2020-03-21 stsp error = got_error_from_errno("waitpid");
1866 9c52365f 2020-03-21 stsp }
1867 7848a0e1 2020-03-19 stsp if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
1868 7848a0e1 2020-03-19 stsp error = got_error_from_errno("close");
1869 7848a0e1 2020-03-19 stsp if (repo)
1870 7848a0e1 2020-03-19 stsp got_repo_close(repo);
1871 7848a0e1 2020-03-19 stsp if (worktree)
1872 7848a0e1 2020-03-19 stsp got_worktree_close(worktree);
1873 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &refs, entry) {
1874 7848a0e1 2020-03-19 stsp free((void *)pe->path);
1875 7848a0e1 2020-03-19 stsp free(pe->data);
1876 7848a0e1 2020-03-19 stsp }
1877 7848a0e1 2020-03-19 stsp got_pathlist_free(&refs);
1878 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
1879 7848a0e1 2020-03-19 stsp free((void *)pe->path);
1880 7848a0e1 2020-03-19 stsp free(pe->data);
1881 7848a0e1 2020-03-19 stsp }
1882 7848a0e1 2020-03-19 stsp got_pathlist_free(&symrefs);
1883 4ba14133 2020-03-20 stsp got_pathlist_free(&wanted_branches);
1884 0e4002ca 2020-03-21 stsp got_pathlist_free(&wanted_refs);
1885 7848a0e1 2020-03-19 stsp free(id_str);
1886 7848a0e1 2020-03-19 stsp free(cwd);
1887 7848a0e1 2020-03-19 stsp free(repo_path);
1888 7848a0e1 2020-03-19 stsp free(pack_hash);
1889 7848a0e1 2020-03-19 stsp free(proto);
1890 7848a0e1 2020-03-19 stsp free(host);
1891 7848a0e1 2020-03-19 stsp free(port);
1892 7848a0e1 2020-03-19 stsp free(server_path);
1893 7848a0e1 2020-03-19 stsp free(repo_name);
1894 7848a0e1 2020-03-19 stsp return error;
1895 7848a0e1 2020-03-19 stsp }
1896 7848a0e1 2020-03-19 stsp
1897 7848a0e1 2020-03-19 stsp
1898 7848a0e1 2020-03-19 stsp __dead static void
1899 2ab43947 2020-03-18 stsp usage_checkout(void)
1900 2ab43947 2020-03-18 stsp {
1901 2ab43947 2020-03-18 stsp fprintf(stderr, "usage: %s checkout [-E] [-b branch] [-c commit] "
1902 2ab43947 2020-03-18 stsp "[-p prefix] repository-path [worktree-path]\n", getprogname());
1903 2ab43947 2020-03-18 stsp exit(1);
1904 2ab43947 2020-03-18 stsp }
1905 2ab43947 2020-03-18 stsp
1906 2ab43947 2020-03-18 stsp static void
1907 2ab43947 2020-03-18 stsp show_worktree_base_ref_warning(void)
1908 2ab43947 2020-03-18 stsp {
1909 2ab43947 2020-03-18 stsp fprintf(stderr, "%s: warning: could not create a reference "
1910 2ab43947 2020-03-18 stsp "to the work tree's base commit; the commit could be "
1911 2ab43947 2020-03-18 stsp "garbage-collected by Git; making the repository "
1912 2ab43947 2020-03-18 stsp "writable and running 'got update' will prevent this\n",
1913 2ab43947 2020-03-18 stsp getprogname());
1914 2ab43947 2020-03-18 stsp }
1915 2ab43947 2020-03-18 stsp
1916 2ab43947 2020-03-18 stsp struct got_checkout_progress_arg {
1917 2ab43947 2020-03-18 stsp const char *worktree_path;
1918 2ab43947 2020-03-18 stsp int had_base_commit_ref_error;
1919 2ab43947 2020-03-18 stsp };
1920 2ab43947 2020-03-18 stsp
1921 2ab43947 2020-03-18 stsp static const struct got_error *
1922 2ab43947 2020-03-18 stsp checkout_progress(void *arg, unsigned char status, const char *path)
1923 2ab43947 2020-03-18 stsp {
1924 2ab43947 2020-03-18 stsp struct got_checkout_progress_arg *a = arg;
1925 2ab43947 2020-03-18 stsp
1926 2ab43947 2020-03-18 stsp /* Base commit bump happens silently. */
1927 2ab43947 2020-03-18 stsp if (status == GOT_STATUS_BUMP_BASE)
1928 2ab43947 2020-03-18 stsp return NULL;
1929 2ab43947 2020-03-18 stsp
1930 2ab43947 2020-03-18 stsp if (status == GOT_STATUS_BASE_REF_ERR) {
1931 2ab43947 2020-03-18 stsp a->had_base_commit_ref_error = 1;
1932 2ab43947 2020-03-18 stsp return NULL;
1933 2ab43947 2020-03-18 stsp }
1934 2ab43947 2020-03-18 stsp
1935 2ab43947 2020-03-18 stsp while (path[0] == '/')
1936 2ab43947 2020-03-18 stsp path++;
1937 2ab43947 2020-03-18 stsp
1938 2ab43947 2020-03-18 stsp printf("%c %s/%s\n", status, a->worktree_path, path);
1939 2ab43947 2020-03-18 stsp return NULL;
1940 2ab43947 2020-03-18 stsp }
1941 2ab43947 2020-03-18 stsp
1942 2ab43947 2020-03-18 stsp static const struct got_error *
1943 2ab43947 2020-03-18 stsp check_cancelled(void *arg)
1944 2ab43947 2020-03-18 stsp {
1945 2ab43947 2020-03-18 stsp if (sigint_received || sigpipe_received)
1946 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_CANCELLED);
1947 2ab43947 2020-03-18 stsp return NULL;
1948 2ab43947 2020-03-18 stsp }
1949 2ab43947 2020-03-18 stsp
1950 2ab43947 2020-03-18 stsp static const struct got_error *
1951 2ab43947 2020-03-18 stsp check_linear_ancestry(struct got_object_id *commit_id,
1952 2ab43947 2020-03-18 stsp struct got_object_id *base_commit_id, int allow_forwards_in_time_only,
1953 2ab43947 2020-03-18 stsp struct got_repository *repo)
1954 2ab43947 2020-03-18 stsp {
1955 2ab43947 2020-03-18 stsp const struct got_error *err = NULL;
1956 2ab43947 2020-03-18 stsp struct got_object_id *yca_id;
1957 2ab43947 2020-03-18 stsp
1958 2ab43947 2020-03-18 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
1959 2ab43947 2020-03-18 stsp commit_id, base_commit_id, repo, check_cancelled, NULL);
1960 2ab43947 2020-03-18 stsp if (err)
1961 2ab43947 2020-03-18 stsp return err;
1962 2ab43947 2020-03-18 stsp
1963 2ab43947 2020-03-18 stsp if (yca_id == NULL)
1964 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
1965 2ab43947 2020-03-18 stsp
1966 2ab43947 2020-03-18 stsp /*
1967 2ab43947 2020-03-18 stsp * Require a straight line of history between the target commit
1968 2ab43947 2020-03-18 stsp * and the work tree's base commit.
1969 2ab43947 2020-03-18 stsp *
1970 2ab43947 2020-03-18 stsp * Non-linear situations such as this require a rebase:
1971 2ab43947 2020-03-18 stsp *
1972 2ab43947 2020-03-18 stsp * (commit) D F (base_commit)
1973 2ab43947 2020-03-18 stsp * \ /
1974 2ab43947 2020-03-18 stsp * C E
1975 2ab43947 2020-03-18 stsp * \ /
1976 2ab43947 2020-03-18 stsp * B (yca)
1977 2ab43947 2020-03-18 stsp * |
1978 2ab43947 2020-03-18 stsp * A
1979 2ab43947 2020-03-18 stsp *
1980 2ab43947 2020-03-18 stsp * 'got update' only handles linear cases:
1981 2ab43947 2020-03-18 stsp * Update forwards in time: A (base/yca) - B - C - D (commit)
1982 2ab43947 2020-03-18 stsp * Update backwards in time: D (base) - C - B - A (commit/yca)
1983 2ab43947 2020-03-18 stsp */
1984 2ab43947 2020-03-18 stsp if (allow_forwards_in_time_only) {
1985 2ab43947 2020-03-18 stsp if (got_object_id_cmp(base_commit_id, yca_id) != 0)
1986 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
1987 2ab43947 2020-03-18 stsp } else if (got_object_id_cmp(commit_id, yca_id) != 0 &&
1988 2ab43947 2020-03-18 stsp got_object_id_cmp(base_commit_id, yca_id) != 0)
1989 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
1990 2ab43947 2020-03-18 stsp
1991 2ab43947 2020-03-18 stsp free(yca_id);
1992 2ab43947 2020-03-18 stsp return NULL;
1993 2ab43947 2020-03-18 stsp }
1994 2ab43947 2020-03-18 stsp
1995 2ab43947 2020-03-18 stsp static const struct got_error *
1996 2ab43947 2020-03-18 stsp check_same_branch(struct got_object_id *commit_id,
1997 2ab43947 2020-03-18 stsp struct got_reference *head_ref, struct got_object_id *yca_id,
1998 2ab43947 2020-03-18 stsp struct got_repository *repo)
1999 2ab43947 2020-03-18 stsp {
2000 2ab43947 2020-03-18 stsp const struct got_error *err = NULL;
2001 2ab43947 2020-03-18 stsp struct got_commit_graph *graph = NULL;
2002 2ab43947 2020-03-18 stsp struct got_object_id *head_commit_id = NULL;
2003 2ab43947 2020-03-18 stsp int is_same_branch = 0;
2004 2ab43947 2020-03-18 stsp
2005 2ab43947 2020-03-18 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
2006 2ab43947 2020-03-18 stsp if (err)
2007 2ab43947 2020-03-18 stsp goto done;
2008 2ab43947 2020-03-18 stsp
2009 2ab43947 2020-03-18 stsp if (got_object_id_cmp(head_commit_id, commit_id) == 0) {
2010 2ab43947 2020-03-18 stsp is_same_branch = 1;
2011 2ab43947 2020-03-18 stsp goto done;
2012 2ab43947 2020-03-18 stsp }
2013 2ab43947 2020-03-18 stsp if (yca_id && got_object_id_cmp(commit_id, yca_id) == 0) {
2014 2ab43947 2020-03-18 stsp is_same_branch = 1;
2015 2ab43947 2020-03-18 stsp goto done;
2016 2ab43947 2020-03-18 stsp }
2017 2ab43947 2020-03-18 stsp
2018 2ab43947 2020-03-18 stsp err = got_commit_graph_open(&graph, "/", 1);
2019 2ab43947 2020-03-18 stsp if (err)
2020 2ab43947 2020-03-18 stsp goto done;
2021 2ab43947 2020-03-18 stsp
2022 2ab43947 2020-03-18 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo,
2023 2ab43947 2020-03-18 stsp check_cancelled, NULL);
2024 2ab43947 2020-03-18 stsp if (err)
2025 2ab43947 2020-03-18 stsp goto done;
2026 2ab43947 2020-03-18 stsp
2027 2ab43947 2020-03-18 stsp for (;;) {
2028 2ab43947 2020-03-18 stsp struct got_object_id *id;
2029 2ab43947 2020-03-18 stsp err = got_commit_graph_iter_next(&id, graph, repo,
2030 2ab43947 2020-03-18 stsp check_cancelled, NULL);
2031 2ab43947 2020-03-18 stsp if (err) {
2032 2ab43947 2020-03-18 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
2033 2ab43947 2020-03-18 stsp err = NULL;
2034 2ab43947 2020-03-18 stsp break;
2035 2ab43947 2020-03-18 stsp }
2036 2ab43947 2020-03-18 stsp
2037 2ab43947 2020-03-18 stsp if (id) {
2038 2ab43947 2020-03-18 stsp if (yca_id && got_object_id_cmp(id, yca_id) == 0)
2039 2ab43947 2020-03-18 stsp break;
2040 2ab43947 2020-03-18 stsp if (got_object_id_cmp(id, commit_id) == 0) {
2041 2ab43947 2020-03-18 stsp is_same_branch = 1;
2042 2ab43947 2020-03-18 stsp break;
2043 2ab43947 2020-03-18 stsp }
2044 2ab43947 2020-03-18 stsp }
2045 2ab43947 2020-03-18 stsp }
2046 2ab43947 2020-03-18 stsp done:
2047 2ab43947 2020-03-18 stsp if (graph)
2048 2ab43947 2020-03-18 stsp got_commit_graph_close(graph);
2049 2ab43947 2020-03-18 stsp free(head_commit_id);
2050 2ab43947 2020-03-18 stsp if (!err && !is_same_branch)
2051 2ab43947 2020-03-18 stsp err = got_error(GOT_ERR_ANCESTRY);
2052 2ab43947 2020-03-18 stsp return err;
2053 a367ff0f 2019-05-14 stsp }
2054 8069f636 2019-01-12 stsp
2055 4ed7e80c 2018-05-20 stsp static const struct got_error *
2056 4b6c9460 2020-03-05 stsp checkout_ancestry_error(struct got_reference *ref, const char *commit_id_str)
2057 4b6c9460 2020-03-05 stsp {
2058 4b6c9460 2020-03-05 stsp static char msg[512];
2059 4b6c9460 2020-03-05 stsp const char *branch_name;
2060 4b6c9460 2020-03-05 stsp
2061 4b6c9460 2020-03-05 stsp if (got_ref_is_symbolic(ref))
2062 4b6c9460 2020-03-05 stsp branch_name = got_ref_get_symref_target(ref);
2063 4b6c9460 2020-03-05 stsp else
2064 4b6c9460 2020-03-05 stsp branch_name = got_ref_get_name(ref);
2065 4b6c9460 2020-03-05 stsp
2066 4b6c9460 2020-03-05 stsp if (strncmp("refs/heads/", branch_name, 11) == 0)
2067 4b6c9460 2020-03-05 stsp branch_name += 11;
2068 4b6c9460 2020-03-05 stsp
2069 4b6c9460 2020-03-05 stsp snprintf(msg, sizeof(msg),
2070 4b6c9460 2020-03-05 stsp "target commit is not contained in branch '%s'; "
2071 4b6c9460 2020-03-05 stsp "the branch to use must be specified with -b; "
2072 4b6c9460 2020-03-05 stsp "if necessary a new branch can be created for "
2073 4b6c9460 2020-03-05 stsp "this commit with 'got branch -c %s BRANCH_NAME'",
2074 4b6c9460 2020-03-05 stsp branch_name, commit_id_str);
2075 4b6c9460 2020-03-05 stsp
2076 4b6c9460 2020-03-05 stsp return got_error_msg(GOT_ERR_ANCESTRY, msg);
2077 4b6c9460 2020-03-05 stsp }
2078 4b6c9460 2020-03-05 stsp
2079 4b6c9460 2020-03-05 stsp static const struct got_error *
2080 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
2081 c09a553d 2018-03-12 stsp {
2082 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
2083 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
2084 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
2085 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
2086 c09a553d 2018-03-12 stsp char *repo_path = NULL;
2087 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
2088 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
2089 08573d5b 2019-05-14 stsp const char *branch_name = GOT_REF_HEAD;
2090 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
2091 bb51a5b4 2020-01-13 stsp int ch, same_path_prefix, allow_nonempty = 0;
2092 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
2093 7f47418f 2019-12-20 stsp struct got_checkout_progress_arg cpa;
2094 f2ea84fa 2019-07-27 stsp
2095 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
2096 c09a553d 2018-03-12 stsp
2097 bb51a5b4 2020-01-13 stsp while ((ch = getopt(argc, argv, "b:c:Ep:")) != -1) {
2098 0bb8a95e 2018-03-12 stsp switch (ch) {
2099 08573d5b 2019-05-14 stsp case 'b':
2100 08573d5b 2019-05-14 stsp branch_name = optarg;
2101 08573d5b 2019-05-14 stsp break;
2102 8069f636 2019-01-12 stsp case 'c':
2103 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
2104 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
2105 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2106 bb51a5b4 2020-01-13 stsp break;
2107 bb51a5b4 2020-01-13 stsp case 'E':
2108 bb51a5b4 2020-01-13 stsp allow_nonempty = 1;
2109 8069f636 2019-01-12 stsp break;
2110 0bb8a95e 2018-03-12 stsp case 'p':
2111 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
2112 0bb8a95e 2018-03-12 stsp break;
2113 0bb8a95e 2018-03-12 stsp default:
2114 2deda0b9 2019-03-07 stsp usage_checkout();
2115 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
2116 0bb8a95e 2018-03-12 stsp }
2117 0bb8a95e 2018-03-12 stsp }
2118 0bb8a95e 2018-03-12 stsp
2119 0bb8a95e 2018-03-12 stsp argc -= optind;
2120 0bb8a95e 2018-03-12 stsp argv += optind;
2121 0bb8a95e 2018-03-12 stsp
2122 6715a751 2018-03-16 stsp #ifndef PROFILE
2123 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2124 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
2125 c09a553d 2018-03-12 stsp err(1, "pledge");
2126 6715a751 2018-03-16 stsp #endif
2127 0bb8a95e 2018-03-12 stsp if (argc == 1) {
2128 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
2129 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
2130 76089277 2018-04-01 stsp if (repo_path == NULL)
2131 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
2132 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
2133 76089277 2018-04-01 stsp if (cwd == NULL) {
2134 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2135 76089277 2018-04-01 stsp goto done;
2136 76089277 2018-04-01 stsp }
2137 230a42bd 2019-05-11 jcs if (path_prefix[0]) {
2138 230a42bd 2019-05-11 jcs base = basename(path_prefix);
2139 230a42bd 2019-05-11 jcs if (base == NULL) {
2140 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
2141 230a42bd 2019-05-11 jcs path_prefix);
2142 230a42bd 2019-05-11 jcs goto done;
2143 230a42bd 2019-05-11 jcs }
2144 230a42bd 2019-05-11 jcs } else {
2145 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
2146 230a42bd 2019-05-11 jcs if (base == NULL) {
2147 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
2148 230a42bd 2019-05-11 jcs repo_path);
2149 230a42bd 2019-05-11 jcs goto done;
2150 230a42bd 2019-05-11 jcs }
2151 76089277 2018-04-01 stsp }
2152 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
2153 c09a553d 2018-03-12 stsp if (dotgit)
2154 c09a553d 2018-03-12 stsp *dotgit = '\0';
2155 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
2156 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
2157 c09a553d 2018-03-12 stsp free(cwd);
2158 76089277 2018-04-01 stsp goto done;
2159 c09a553d 2018-03-12 stsp }
2160 c09a553d 2018-03-12 stsp free(cwd);
2161 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
2162 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
2163 76089277 2018-04-01 stsp if (repo_path == NULL) {
2164 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2165 76089277 2018-04-01 stsp goto done;
2166 76089277 2018-04-01 stsp }
2167 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
2168 76089277 2018-04-01 stsp if (worktree_path == NULL) {
2169 b4b3a7dd 2019-07-22 stsp if (errno != ENOENT) {
2170 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno2("realpath",
2171 b4b3a7dd 2019-07-22 stsp argv[1]);
2172 b4b3a7dd 2019-07-22 stsp goto done;
2173 b4b3a7dd 2019-07-22 stsp }
2174 b4b3a7dd 2019-07-22 stsp worktree_path = strdup(argv[1]);
2175 b4b3a7dd 2019-07-22 stsp if (worktree_path == NULL) {
2176 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno("strdup");
2177 b4b3a7dd 2019-07-22 stsp goto done;
2178 b4b3a7dd 2019-07-22 stsp }
2179 76089277 2018-04-01 stsp }
2180 c09a553d 2018-03-12 stsp } else
2181 c09a553d 2018-03-12 stsp usage_checkout();
2182 c09a553d 2018-03-12 stsp
2183 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2184 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(worktree_path);
2185 13bfb272 2019-05-10 jcs
2186 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2187 c09a553d 2018-03-12 stsp if (error != NULL)
2188 c02c541e 2019-03-29 stsp goto done;
2189 c02c541e 2019-03-29 stsp
2190 c530dc23 2019-07-23 stsp /* Pre-create work tree path for unveil(2) */
2191 c530dc23 2019-07-23 stsp error = got_path_mkdir(worktree_path);
2192 c530dc23 2019-07-23 stsp if (error) {
2193 80c1b583 2019-08-07 stsp if (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
2194 80c1b583 2019-08-07 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2195 c530dc23 2019-07-23 stsp goto done;
2196 bb51a5b4 2020-01-13 stsp if (!allow_nonempty &&
2197 bb51a5b4 2020-01-13 stsp !got_path_dir_is_empty(worktree_path)) {
2198 c530dc23 2019-07-23 stsp error = got_error_path(worktree_path,
2199 c530dc23 2019-07-23 stsp GOT_ERR_DIR_NOT_EMPTY);
2200 c530dc23 2019-07-23 stsp goto done;
2201 c530dc23 2019-07-23 stsp }
2202 c530dc23 2019-07-23 stsp }
2203 c530dc23 2019-07-23 stsp
2204 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
2205 c02c541e 2019-03-29 stsp if (error)
2206 c09a553d 2018-03-12 stsp goto done;
2207 8069f636 2019-01-12 stsp
2208 08573d5b 2019-05-14 stsp error = got_ref_open(&head_ref, repo, branch_name, 0);
2209 c09a553d 2018-03-12 stsp if (error != NULL)
2210 c09a553d 2018-03-12 stsp goto done;
2211 c09a553d 2018-03-12 stsp
2212 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
2213 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2214 c09a553d 2018-03-12 stsp goto done;
2215 c09a553d 2018-03-12 stsp
2216 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
2217 c09a553d 2018-03-12 stsp if (error != NULL)
2218 c09a553d 2018-03-12 stsp goto done;
2219 c09a553d 2018-03-12 stsp
2220 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
2221 e5dc7198 2018-12-29 stsp path_prefix);
2222 e5dc7198 2018-12-29 stsp if (error != NULL)
2223 e5dc7198 2018-12-29 stsp goto done;
2224 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
2225 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
2226 49520a32 2018-12-29 stsp goto done;
2227 49520a32 2018-12-29 stsp }
2228 49520a32 2018-12-29 stsp
2229 8069f636 2019-01-12 stsp if (commit_id_str) {
2230 04f57cb3 2019-07-25 stsp struct got_object_id *commit_id;
2231 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
2232 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2233 30837e32 2019-07-25 stsp if (error)
2234 8069f636 2019-01-12 stsp goto done;
2235 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
2236 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
2237 8069f636 2019-01-12 stsp if (error != NULL) {
2238 8069f636 2019-01-12 stsp free(commit_id);
2239 4b6c9460 2020-03-05 stsp if (error->code == GOT_ERR_ANCESTRY) {
2240 4b6c9460 2020-03-05 stsp error = checkout_ancestry_error(
2241 4b6c9460 2020-03-05 stsp head_ref, commit_id_str);
2242 4b6c9460 2020-03-05 stsp }
2243 8069f636 2019-01-12 stsp goto done;
2244 8069f636 2019-01-12 stsp }
2245 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
2246 4b6c9460 2020-03-05 stsp if (error) {
2247 4b6c9460 2020-03-05 stsp if (error->code == GOT_ERR_ANCESTRY) {
2248 4b6c9460 2020-03-05 stsp error = checkout_ancestry_error(
2249 4b6c9460 2020-03-05 stsp head_ref, commit_id_str);
2250 4b6c9460 2020-03-05 stsp }
2251 45d344f6 2019-05-14 stsp goto done;
2252 4b6c9460 2020-03-05 stsp }
2253 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
2254 8069f636 2019-01-12 stsp commit_id);
2255 8069f636 2019-01-12 stsp free(commit_id);
2256 8069f636 2019-01-12 stsp if (error)
2257 8069f636 2019-01-12 stsp goto done;
2258 8069f636 2019-01-12 stsp }
2259 8069f636 2019-01-12 stsp
2260 adc19d55 2019-07-28 stsp error = got_pathlist_append(&paths, "", NULL);
2261 f2ea84fa 2019-07-27 stsp if (error)
2262 f2ea84fa 2019-07-27 stsp goto done;
2263 7f47418f 2019-12-20 stsp cpa.worktree_path = worktree_path;
2264 7f47418f 2019-12-20 stsp cpa.had_base_commit_ref_error = 0;
2265 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
2266 7f47418f 2019-12-20 stsp checkout_progress, &cpa, check_cancelled, NULL);
2267 c09a553d 2018-03-12 stsp if (error != NULL)
2268 c09a553d 2018-03-12 stsp goto done;
2269 c09a553d 2018-03-12 stsp
2270 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
2271 7f47418f 2019-12-20 stsp if (cpa.had_base_commit_ref_error)
2272 7f47418f 2019-12-20 stsp show_worktree_base_ref_warning();
2273 c09a553d 2018-03-12 stsp done:
2274 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
2275 8069f636 2019-01-12 stsp free(commit_id_str);
2276 76089277 2018-04-01 stsp free(repo_path);
2277 507dc3bb 2018-12-29 stsp free(worktree_path);
2278 507dc3bb 2018-12-29 stsp return error;
2279 507dc3bb 2018-12-29 stsp }
2280 507dc3bb 2018-12-29 stsp
2281 507dc3bb 2018-12-29 stsp __dead static void
2282 507dc3bb 2018-12-29 stsp usage_update(void)
2283 507dc3bb 2018-12-29 stsp {
2284 f2ea84fa 2019-07-27 stsp fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path ...]\n",
2285 507dc3bb 2018-12-29 stsp getprogname());
2286 507dc3bb 2018-12-29 stsp exit(1);
2287 507dc3bb 2018-12-29 stsp }
2288 507dc3bb 2018-12-29 stsp
2289 1ee397ad 2019-07-12 stsp static const struct got_error *
2290 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
2291 507dc3bb 2018-12-29 stsp {
2292 784955db 2019-01-12 stsp int *did_something = arg;
2293 784955db 2019-01-12 stsp
2294 7f47418f 2019-12-20 stsp if (status == GOT_STATUS_EXISTS ||
2295 7f47418f 2019-12-20 stsp status == GOT_STATUS_BASE_REF_ERR)
2296 1ee397ad 2019-07-12 stsp return NULL;
2297 507dc3bb 2018-12-29 stsp
2298 1545c615 2019-02-10 stsp *did_something = 1;
2299 a484d721 2019-06-10 stsp
2300 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
2301 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
2302 1ee397ad 2019-07-12 stsp return NULL;
2303 a484d721 2019-06-10 stsp
2304 507dc3bb 2018-12-29 stsp while (path[0] == '/')
2305 507dc3bb 2018-12-29 stsp path++;
2306 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
2307 1ee397ad 2019-07-12 stsp return NULL;
2308 be7061eb 2018-12-30 stsp }
2309 be7061eb 2018-12-30 stsp
2310 be7061eb 2018-12-30 stsp static const struct got_error *
2311 a1fb16d8 2019-05-24 stsp switch_head_ref(struct got_reference *head_ref,
2312 a1fb16d8 2019-05-24 stsp struct got_object_id *commit_id, struct got_worktree *worktree,
2313 a1fb16d8 2019-05-24 stsp struct got_repository *repo)
2314 a1fb16d8 2019-05-24 stsp {
2315 a1fb16d8 2019-05-24 stsp const struct got_error *err = NULL;
2316 a1fb16d8 2019-05-24 stsp char *base_id_str;
2317 a1fb16d8 2019-05-24 stsp int ref_has_moved = 0;
2318 a1fb16d8 2019-05-24 stsp
2319 a1fb16d8 2019-05-24 stsp /* Trivial case: switching between two different references. */
2320 a1fb16d8 2019-05-24 stsp if (strcmp(got_ref_get_name(head_ref),
2321 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree)) != 0) {
2322 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n",
2323 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree),
2324 a1fb16d8 2019-05-24 stsp got_ref_get_name(head_ref));
2325 a1fb16d8 2019-05-24 stsp return got_worktree_set_head_ref(worktree, head_ref);
2326 a1fb16d8 2019-05-24 stsp }
2327 a1fb16d8 2019-05-24 stsp
2328 a1fb16d8 2019-05-24 stsp err = check_linear_ancestry(commit_id,
2329 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
2330 a1fb16d8 2019-05-24 stsp if (err) {
2331 a1fb16d8 2019-05-24 stsp if (err->code != GOT_ERR_ANCESTRY)
2332 a1fb16d8 2019-05-24 stsp return err;
2333 a1fb16d8 2019-05-24 stsp ref_has_moved = 1;
2334 a1fb16d8 2019-05-24 stsp }
2335 a1fb16d8 2019-05-24 stsp if (!ref_has_moved)
2336 a1fb16d8 2019-05-24 stsp return NULL;
2337 a1fb16d8 2019-05-24 stsp
2338 a1fb16d8 2019-05-24 stsp /* Switching to a rebased branch with the same reference name. */
2339 a1fb16d8 2019-05-24 stsp err = got_object_id_str(&base_id_str,
2340 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree));
2341 a1fb16d8 2019-05-24 stsp if (err)
2342 a1fb16d8 2019-05-24 stsp return err;
2343 a1fb16d8 2019-05-24 stsp printf("Reference %s now points at a different branch\n",
2344 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
2345 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n", base_id_str,
2346 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
2347 0ebf8283 2019-07-24 stsp return NULL;
2348 0ebf8283 2019-07-24 stsp }
2349 0ebf8283 2019-07-24 stsp
2350 0ebf8283 2019-07-24 stsp static const struct got_error *
2351 0ebf8283 2019-07-24 stsp check_rebase_or_histedit_in_progress(struct got_worktree *worktree)
2352 0ebf8283 2019-07-24 stsp {
2353 0ebf8283 2019-07-24 stsp const struct got_error *err;
2354 0ebf8283 2019-07-24 stsp int in_progress;
2355 0ebf8283 2019-07-24 stsp
2356 0ebf8283 2019-07-24 stsp err = got_worktree_rebase_in_progress(&in_progress, worktree);
2357 0ebf8283 2019-07-24 stsp if (err)
2358 0ebf8283 2019-07-24 stsp return err;
2359 0ebf8283 2019-07-24 stsp if (in_progress)
2360 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_REBASING);
2361 0ebf8283 2019-07-24 stsp
2362 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_in_progress(&in_progress, worktree);
2363 0ebf8283 2019-07-24 stsp if (err)
2364 0ebf8283 2019-07-24 stsp return err;
2365 0ebf8283 2019-07-24 stsp if (in_progress)
2366 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_BUSY);
2367 0ebf8283 2019-07-24 stsp
2368 a1fb16d8 2019-05-24 stsp return NULL;
2369 a5edda0a 2019-07-27 stsp }
2370 a5edda0a 2019-07-27 stsp
2371 a5edda0a 2019-07-27 stsp static const struct got_error *
2372 a5edda0a 2019-07-27 stsp get_worktree_paths_from_argv(struct got_pathlist_head *paths, int argc,
2373 a5edda0a 2019-07-27 stsp char *argv[], struct got_worktree *worktree)
2374 a5edda0a 2019-07-27 stsp {
2375 a0de39f3 2019-08-09 stsp const struct got_error *err = NULL;
2376 a5edda0a 2019-07-27 stsp char *path;
2377 a5edda0a 2019-07-27 stsp int i;
2378 a5edda0a 2019-07-27 stsp
2379 a5edda0a 2019-07-27 stsp if (argc == 0) {
2380 a5edda0a 2019-07-27 stsp path = strdup("");
2381 a5edda0a 2019-07-27 stsp if (path == NULL)
2382 a5edda0a 2019-07-27 stsp return got_error_from_errno("strdup");
2383 adc19d55 2019-07-28 stsp return got_pathlist_append(paths, path, NULL);
2384 a5edda0a 2019-07-27 stsp }
2385 a5edda0a 2019-07-27 stsp
2386 a5edda0a 2019-07-27 stsp for (i = 0; i < argc; i++) {
2387 a5edda0a 2019-07-27 stsp err = got_worktree_resolve_path(&path, worktree, argv[i]);
2388 a5edda0a 2019-07-27 stsp if (err)
2389 a5edda0a 2019-07-27 stsp break;
2390 adc19d55 2019-07-28 stsp err = got_pathlist_append(paths, path, NULL);
2391 a5edda0a 2019-07-27 stsp if (err) {
2392 a5edda0a 2019-07-27 stsp free(path);
2393 a5edda0a 2019-07-27 stsp break;
2394 a5edda0a 2019-07-27 stsp }
2395 a5edda0a 2019-07-27 stsp }
2396 a5edda0a 2019-07-27 stsp
2397 a5edda0a 2019-07-27 stsp return err;
2398 a1fb16d8 2019-05-24 stsp }
2399 a1fb16d8 2019-05-24 stsp
2400 a1fb16d8 2019-05-24 stsp static const struct got_error *
2401 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
2402 507dc3bb 2018-12-29 stsp {
2403 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
2404 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
2405 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
2406 f2ea84fa 2019-07-27 stsp char *worktree_path = NULL;
2407 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
2408 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
2409 024e9686 2019-05-14 stsp const char *branch_name = NULL;
2410 024e9686 2019-05-14 stsp struct got_reference *head_ref = NULL;
2411 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
2412 f2ea84fa 2019-07-27 stsp struct got_pathlist_entry *pe;
2413 0ebf8283 2019-07-24 stsp int ch, did_something = 0;
2414 507dc3bb 2018-12-29 stsp
2415 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
2416 f2ea84fa 2019-07-27 stsp
2417 024e9686 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:")) != -1) {
2418 507dc3bb 2018-12-29 stsp switch (ch) {
2419 024e9686 2019-05-14 stsp case 'b':
2420 024e9686 2019-05-14 stsp branch_name = optarg;
2421 024e9686 2019-05-14 stsp break;
2422 507dc3bb 2018-12-29 stsp case 'c':
2423 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
2424 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
2425 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2426 507dc3bb 2018-12-29 stsp break;
2427 507dc3bb 2018-12-29 stsp default:
2428 2deda0b9 2019-03-07 stsp usage_update();
2429 507dc3bb 2018-12-29 stsp /* NOTREACHED */
2430 507dc3bb 2018-12-29 stsp }
2431 507dc3bb 2018-12-29 stsp }
2432 507dc3bb 2018-12-29 stsp
2433 507dc3bb 2018-12-29 stsp argc -= optind;
2434 507dc3bb 2018-12-29 stsp argv += optind;
2435 507dc3bb 2018-12-29 stsp
2436 507dc3bb 2018-12-29 stsp #ifndef PROFILE
2437 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2438 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
2439 507dc3bb 2018-12-29 stsp err(1, "pledge");
2440 507dc3bb 2018-12-29 stsp #endif
2441 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
2442 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
2443 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2444 c4cdcb68 2019-04-03 stsp goto done;
2445 c4cdcb68 2019-04-03 stsp }
2446 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
2447 7d5807f4 2019-07-11 stsp if (error)
2448 7d5807f4 2019-07-11 stsp goto done;
2449 7d5807f4 2019-07-11 stsp
2450 0ebf8283 2019-07-24 stsp error = check_rebase_or_histedit_in_progress(worktree);
2451 f2ea84fa 2019-07-27 stsp if (error)
2452 f2ea84fa 2019-07-27 stsp goto done;
2453 507dc3bb 2018-12-29 stsp
2454 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
2455 c9956ddf 2019-09-08 stsp NULL);
2456 507dc3bb 2018-12-29 stsp if (error != NULL)
2457 507dc3bb 2018-12-29 stsp goto done;
2458 507dc3bb 2018-12-29 stsp
2459 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2460 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
2461 087fb88c 2019-08-04 stsp if (error)
2462 087fb88c 2019-08-04 stsp goto done;
2463 087fb88c 2019-08-04 stsp
2464 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
2465 0266afb7 2019-01-04 stsp if (error)
2466 0266afb7 2019-01-04 stsp goto done;
2467 0266afb7 2019-01-04 stsp
2468 a1fb16d8 2019-05-24 stsp error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
2469 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree), 0);
2470 024e9686 2019-05-14 stsp if (error != NULL)
2471 024e9686 2019-05-14 stsp goto done;
2472 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
2473 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
2474 9c4b8182 2019-01-02 stsp if (error != NULL)
2475 9c4b8182 2019-01-02 stsp goto done;
2476 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
2477 507dc3bb 2018-12-29 stsp if (error != NULL)
2478 507dc3bb 2018-12-29 stsp goto done;
2479 507dc3bb 2018-12-29 stsp } else {
2480 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
2481 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
2482 04f57cb3 2019-07-25 stsp free(commit_id_str);
2483 bb787f09 2019-07-25 stsp commit_id_str = NULL;
2484 30837e32 2019-07-25 stsp if (error)
2485 a297e751 2019-07-11 stsp goto done;
2486 a297e751 2019-07-11 stsp error = got_object_id_str(&commit_id_str, commit_id);
2487 a297e751 2019-07-11 stsp if (error)
2488 507dc3bb 2018-12-29 stsp goto done;
2489 507dc3bb 2018-12-29 stsp }
2490 35c965b2 2018-12-29 stsp
2491 a1fb16d8 2019-05-24 stsp if (branch_name) {
2492 024e9686 2019-05-14 stsp struct got_object_id *head_commit_id;
2493 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry) {
2494 f2b16ada 2019-08-02 stsp if (pe->path_len == 0)
2495 f2ea84fa 2019-07-27 stsp continue;
2496 f2ea84fa 2019-07-27 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
2497 f2ea84fa 2019-07-27 stsp "switching between branches requires that "
2498 f2ea84fa 2019-07-27 stsp "the entire work tree gets updated");
2499 024e9686 2019-05-14 stsp goto done;
2500 024e9686 2019-05-14 stsp }
2501 024e9686 2019-05-14 stsp error = got_ref_resolve(&head_commit_id, repo, head_ref);
2502 024e9686 2019-05-14 stsp if (error)
2503 024e9686 2019-05-14 stsp goto done;
2504 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, head_commit_id, 0,
2505 3aef623b 2019-10-15 stsp repo);
2506 a367ff0f 2019-05-14 stsp free(head_commit_id);
2507 024e9686 2019-05-14 stsp if (error != NULL)
2508 024e9686 2019-05-14 stsp goto done;
2509 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
2510 a367ff0f 2019-05-14 stsp if (error)
2511 a367ff0f 2019-05-14 stsp goto done;
2512 a1fb16d8 2019-05-24 stsp error = switch_head_ref(head_ref, commit_id, worktree, repo);
2513 024e9686 2019-05-14 stsp if (error)
2514 024e9686 2019-05-14 stsp goto done;
2515 024e9686 2019-05-14 stsp } else {
2516 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
2517 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
2518 a367ff0f 2019-05-14 stsp if (error != NULL) {
2519 a367ff0f 2019-05-14 stsp if (error->code == GOT_ERR_ANCESTRY)
2520 a367ff0f 2019-05-14 stsp error = got_error(GOT_ERR_BRANCH_MOVED);
2521 024e9686 2019-05-14 stsp goto done;
2522 a367ff0f 2019-05-14 stsp }
2523 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
2524 a367ff0f 2019-05-14 stsp if (error)
2525 a367ff0f 2019-05-14 stsp goto done;
2526 024e9686 2019-05-14 stsp }
2527 507dc3bb 2018-12-29 stsp
2528 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
2529 507dc3bb 2018-12-29 stsp commit_id) != 0) {
2530 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
2531 507dc3bb 2018-12-29 stsp commit_id);
2532 507dc3bb 2018-12-29 stsp if (error)
2533 507dc3bb 2018-12-29 stsp goto done;
2534 507dc3bb 2018-12-29 stsp }
2535 507dc3bb 2018-12-29 stsp
2536 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
2537 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
2538 507dc3bb 2018-12-29 stsp if (error != NULL)
2539 507dc3bb 2018-12-29 stsp goto done;
2540 9c4b8182 2019-01-02 stsp
2541 784955db 2019-01-12 stsp if (did_something)
2542 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
2543 784955db 2019-01-12 stsp else
2544 784955db 2019-01-12 stsp printf("Already up-to-date\n");
2545 507dc3bb 2018-12-29 stsp done:
2546 c09a553d 2018-03-12 stsp free(worktree_path);
2547 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
2548 f2ea84fa 2019-07-27 stsp free((char *)pe->path);
2549 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
2550 507dc3bb 2018-12-29 stsp free(commit_id);
2551 9c4b8182 2019-01-02 stsp free(commit_id_str);
2552 c09a553d 2018-03-12 stsp return error;
2553 c09a553d 2018-03-12 stsp }
2554 c09a553d 2018-03-12 stsp
2555 f42b1b34 2018-03-12 stsp static const struct got_error *
2556 44392932 2019-08-25 stsp diff_blobs(struct got_object_id *blob_id1, struct got_object_id *blob_id2,
2557 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
2558 63035f9f 2019-10-06 stsp struct got_repository *repo)
2559 5c860e29 2018-03-12 stsp {
2560 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
2561 44392932 2019-08-25 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
2562 79109fed 2018-03-27 stsp
2563 44392932 2019-08-25 stsp if (blob_id1) {
2564 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob1, repo, blob_id1, 8192);
2565 44392932 2019-08-25 stsp if (err)
2566 44392932 2019-08-25 stsp goto done;
2567 44392932 2019-08-25 stsp }
2568 79109fed 2018-03-27 stsp
2569 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob2, repo, blob_id2, 8192);
2570 44392932 2019-08-25 stsp if (err)
2571 44392932 2019-08-25 stsp goto done;
2572 79109fed 2018-03-27 stsp
2573 44392932 2019-08-25 stsp while (path[0] == '/')
2574 44392932 2019-08-25 stsp path++;
2575 44392932 2019-08-25 stsp err = got_diff_blob(blob1, blob2, path, path, diff_context,
2576 63035f9f 2019-10-06 stsp ignore_whitespace, stdout);
2577 44392932 2019-08-25 stsp done:
2578 44392932 2019-08-25 stsp if (blob1)
2579 44392932 2019-08-25 stsp got_object_blob_close(blob1);
2580 44392932 2019-08-25 stsp got_object_blob_close(blob2);
2581 44392932 2019-08-25 stsp return err;
2582 44392932 2019-08-25 stsp }
2583 44392932 2019-08-25 stsp
2584 44392932 2019-08-25 stsp static const struct got_error *
2585 44392932 2019-08-25 stsp diff_trees(struct got_object_id *tree_id1, struct got_object_id *tree_id2,
2586 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
2587 63035f9f 2019-10-06 stsp struct got_repository *repo)
2588 44392932 2019-08-25 stsp {
2589 44392932 2019-08-25 stsp const struct got_error *err = NULL;
2590 44392932 2019-08-25 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
2591 44392932 2019-08-25 stsp struct got_diff_blob_output_unidiff_arg arg;
2592 44392932 2019-08-25 stsp
2593 44392932 2019-08-25 stsp if (tree_id1) {
2594 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
2595 79109fed 2018-03-27 stsp if (err)
2596 44392932 2019-08-25 stsp goto done;
2597 79109fed 2018-03-27 stsp }
2598 79109fed 2018-03-27 stsp
2599 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
2600 0f2b3dca 2018-12-22 stsp if (err)
2601 0f2b3dca 2018-12-22 stsp goto done;
2602 0f2b3dca 2018-12-22 stsp
2603 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
2604 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
2605 aaa13589 2019-06-01 stsp arg.outfile = stdout;
2606 44392932 2019-08-25 stsp while (path[0] == '/')
2607 44392932 2019-08-25 stsp path++;
2608 44392932 2019-08-25 stsp err = got_diff_tree(tree1, tree2, path, path, repo,
2609 31b4484f 2019-07-27 stsp got_diff_blob_output_unidiff, &arg, 1);
2610 0f2b3dca 2018-12-22 stsp done:
2611 79109fed 2018-03-27 stsp if (tree1)
2612 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
2613 366e0a5f 2019-10-10 stsp if (tree2)
2614 366e0a5f 2019-10-10 stsp got_object_tree_close(tree2);
2615 44392932 2019-08-25 stsp return err;
2616 44392932 2019-08-25 stsp }
2617 44392932 2019-08-25 stsp
2618 44392932 2019-08-25 stsp static const struct got_error *
2619 44392932 2019-08-25 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
2620 44392932 2019-08-25 stsp const char *path, int diff_context, struct got_repository *repo)
2621 44392932 2019-08-25 stsp {
2622 44392932 2019-08-25 stsp const struct got_error *err = NULL;
2623 44392932 2019-08-25 stsp struct got_commit_object *pcommit = NULL;
2624 44392932 2019-08-25 stsp char *id_str1 = NULL, *id_str2 = NULL;
2625 44392932 2019-08-25 stsp struct got_object_id *obj_id1 = NULL, *obj_id2 = NULL;
2626 44392932 2019-08-25 stsp struct got_object_qid *qid;
2627 44392932 2019-08-25 stsp
2628 44392932 2019-08-25 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
2629 44392932 2019-08-25 stsp if (qid != NULL) {
2630 44392932 2019-08-25 stsp err = got_object_open_as_commit(&pcommit, repo,
2631 44392932 2019-08-25 stsp qid->id);
2632 44392932 2019-08-25 stsp if (err)
2633 44392932 2019-08-25 stsp return err;
2634 44392932 2019-08-25 stsp }
2635 44392932 2019-08-25 stsp
2636 44392932 2019-08-25 stsp if (path && path[0] != '\0') {
2637 44392932 2019-08-25 stsp int obj_type;
2638 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id2, repo, id, path);
2639 44392932 2019-08-25 stsp if (err)
2640 44392932 2019-08-25 stsp goto done;
2641 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
2642 44392932 2019-08-25 stsp if (err) {
2643 44392932 2019-08-25 stsp free(obj_id2);
2644 44392932 2019-08-25 stsp goto done;
2645 44392932 2019-08-25 stsp }
2646 44392932 2019-08-25 stsp if (pcommit) {
2647 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id1, repo,
2648 44392932 2019-08-25 stsp qid->id, path);
2649 44392932 2019-08-25 stsp if (err) {
2650 44392932 2019-08-25 stsp free(obj_id2);
2651 44392932 2019-08-25 stsp goto done;
2652 44392932 2019-08-25 stsp }
2653 44392932 2019-08-25 stsp err = got_object_id_str(&id_str1, obj_id1);
2654 44392932 2019-08-25 stsp if (err) {
2655 44392932 2019-08-25 stsp free(obj_id2);
2656 44392932 2019-08-25 stsp goto done;
2657 44392932 2019-08-25 stsp }
2658 44392932 2019-08-25 stsp }
2659 44392932 2019-08-25 stsp err = got_object_get_type(&obj_type, repo, obj_id2);
2660 44392932 2019-08-25 stsp if (err) {
2661 44392932 2019-08-25 stsp free(obj_id2);
2662 44392932 2019-08-25 stsp goto done;
2663 44392932 2019-08-25 stsp }
2664 44392932 2019-08-25 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
2665 44392932 2019-08-25 stsp switch (obj_type) {
2666 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_BLOB:
2667 44392932 2019-08-25 stsp err = diff_blobs(obj_id1, obj_id2, path, diff_context,
2668 63035f9f 2019-10-06 stsp 0, repo);
2669 44392932 2019-08-25 stsp break;
2670 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_TREE:
2671 44392932 2019-08-25 stsp err = diff_trees(obj_id1, obj_id2, path, diff_context,
2672 63035f9f 2019-10-06 stsp 0, repo);
2673 44392932 2019-08-25 stsp break;
2674 44392932 2019-08-25 stsp default:
2675 44392932 2019-08-25 stsp err = got_error(GOT_ERR_OBJ_TYPE);
2676 44392932 2019-08-25 stsp break;
2677 44392932 2019-08-25 stsp }
2678 44392932 2019-08-25 stsp free(obj_id1);
2679 44392932 2019-08-25 stsp free(obj_id2);
2680 44392932 2019-08-25 stsp } else {
2681 44392932 2019-08-25 stsp obj_id2 = got_object_commit_get_tree_id(commit);
2682 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
2683 44392932 2019-08-25 stsp if (err)
2684 44392932 2019-08-25 stsp goto done;
2685 44392932 2019-08-25 stsp obj_id1 = got_object_commit_get_tree_id(pcommit);
2686 44392932 2019-08-25 stsp err = got_object_id_str(&id_str1, obj_id1);
2687 44392932 2019-08-25 stsp if (err)
2688 44392932 2019-08-25 stsp goto done;
2689 44392932 2019-08-25 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
2690 63035f9f 2019-10-06 stsp err = diff_trees(obj_id1, obj_id2, "", diff_context, 0, repo);
2691 44392932 2019-08-25 stsp }
2692 44392932 2019-08-25 stsp done:
2693 0f2b3dca 2018-12-22 stsp free(id_str1);
2694 0f2b3dca 2018-12-22 stsp free(id_str2);
2695 44392932 2019-08-25 stsp if (pcommit)
2696 44392932 2019-08-25 stsp got_object_commit_close(pcommit);
2697 79109fed 2018-03-27 stsp return err;
2698 79109fed 2018-03-27 stsp }
2699 79109fed 2018-03-27 stsp
2700 4bb494d5 2018-06-16 stsp static char *
2701 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
2702 6c281f94 2018-06-11 stsp {
2703 09867e48 2019-08-13 stsp struct tm mytm, *tm;
2704 09867e48 2019-08-13 stsp char *p, *s;
2705 09867e48 2019-08-13 stsp
2706 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
2707 09867e48 2019-08-13 stsp if (tm == NULL)
2708 09867e48 2019-08-13 stsp return NULL;
2709 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
2710 09867e48 2019-08-13 stsp if (s == NULL)
2711 09867e48 2019-08-13 stsp return NULL;
2712 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
2713 6c281f94 2018-06-11 stsp if (p)
2714 6c281f94 2018-06-11 stsp *p = '\0';
2715 6c281f94 2018-06-11 stsp return s;
2716 6c281f94 2018-06-11 stsp }
2717 dc424a06 2019-08-07 stsp
2718 6841bf13 2019-11-29 kn static const struct got_error *
2719 6841bf13 2019-11-29 kn match_logmsg(int *have_match, struct got_object_id *id,
2720 6841bf13 2019-11-29 kn struct got_commit_object *commit, regex_t *regex)
2721 6841bf13 2019-11-29 kn {
2722 6841bf13 2019-11-29 kn const struct got_error *err = NULL;
2723 6841bf13 2019-11-29 kn regmatch_t regmatch;
2724 6841bf13 2019-11-29 kn char *id_str = NULL, *logmsg = NULL;
2725 6841bf13 2019-11-29 kn
2726 6841bf13 2019-11-29 kn *have_match = 0;
2727 6841bf13 2019-11-29 kn
2728 6841bf13 2019-11-29 kn err = got_object_id_str(&id_str, id);
2729 6841bf13 2019-11-29 kn if (err)
2730 6841bf13 2019-11-29 kn return err;
2731 6841bf13 2019-11-29 kn
2732 6841bf13 2019-11-29 kn err = got_object_commit_get_logmsg(&logmsg, commit);
2733 6841bf13 2019-11-29 kn if (err)
2734 6841bf13 2019-11-29 kn goto done;
2735 6841bf13 2019-11-29 kn
2736 6841bf13 2019-11-29 kn if (regexec(regex, logmsg, 1, &regmatch, 0) == 0)
2737 6841bf13 2019-11-29 kn *have_match = 1;
2738 6841bf13 2019-11-29 kn done:
2739 6841bf13 2019-11-29 kn free(id_str);
2740 6841bf13 2019-11-29 kn free(logmsg);
2741 6841bf13 2019-11-29 kn return err;
2742 6841bf13 2019-11-29 kn }
2743 6841bf13 2019-11-29 kn
2744 dc424a06 2019-08-07 stsp #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
2745 6c281f94 2018-06-11 stsp
2746 79109fed 2018-03-27 stsp static const struct got_error *
2747 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
2748 44392932 2019-08-25 stsp struct got_repository *repo, const char *path, int show_patch,
2749 44392932 2019-08-25 stsp int diff_context, struct got_reflist_head *refs)
2750 79109fed 2018-03-27 stsp {
2751 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
2752 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
2753 6c281f94 2018-06-11 stsp char datebuf[26];
2754 45d799e2 2018-12-23 stsp time_t committer_time;
2755 45d799e2 2018-12-23 stsp const char *author, *committer;
2756 199a4027 2019-02-02 stsp char *refs_str = NULL;
2757 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
2758 5c860e29 2018-03-12 stsp
2759 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
2760 199a4027 2019-02-02 stsp char *s;
2761 199a4027 2019-02-02 stsp const char *name;
2762 a436ad14 2019-08-13 stsp struct got_tag_object *tag = NULL;
2763 a436ad14 2019-08-13 stsp int cmp;
2764 a436ad14 2019-08-13 stsp
2765 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
2766 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
2767 d9498b20 2019-02-05 stsp continue;
2768 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
2769 199a4027 2019-02-02 stsp name += 5;
2770 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
2771 7143d404 2019-03-12 stsp continue;
2772 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
2773 e34f9ed6 2019-02-02 stsp name += 6;
2774 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
2775 141c2bff 2019-02-04 stsp name += 8;
2776 a436ad14 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
2777 a436ad14 2019-08-13 stsp err = got_object_open_as_tag(&tag, repo, re->id);
2778 5d844a1e 2019-08-13 stsp if (err) {
2779 5d844a1e 2019-08-13 stsp if (err->code != GOT_ERR_OBJ_TYPE)
2780 5d844a1e 2019-08-13 stsp return err;
2781 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
2782 5d844a1e 2019-08-13 stsp err = NULL;
2783 5d844a1e 2019-08-13 stsp tag = NULL;
2784 5d844a1e 2019-08-13 stsp }
2785 a436ad14 2019-08-13 stsp }
2786 a436ad14 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
2787 a436ad14 2019-08-13 stsp got_object_tag_get_object_id(tag) : re->id, id);
2788 a436ad14 2019-08-13 stsp if (tag)
2789 a436ad14 2019-08-13 stsp got_object_tag_close(tag);
2790 a436ad14 2019-08-13 stsp if (cmp != 0)
2791 a436ad14 2019-08-13 stsp continue;
2792 199a4027 2019-02-02 stsp s = refs_str;
2793 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
2794 199a4027 2019-02-02 stsp name) == -1) {
2795 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2796 199a4027 2019-02-02 stsp free(s);
2797 34ca4898 2019-08-13 stsp return err;
2798 199a4027 2019-02-02 stsp }
2799 199a4027 2019-02-02 stsp free(s);
2800 199a4027 2019-02-02 stsp }
2801 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
2802 8bf5b3c9 2018-03-17 stsp if (err)
2803 8bf5b3c9 2018-03-17 stsp return err;
2804 788c352e 2018-06-16 stsp
2805 dc424a06 2019-08-07 stsp printf(GOT_COMMIT_SEP_STR);
2806 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
2807 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
2808 832c249c 2018-06-10 stsp free(id_str);
2809 d3d493d7 2019-02-21 stsp id_str = NULL;
2810 d3d493d7 2019-02-21 stsp free(refs_str);
2811 d3d493d7 2019-02-21 stsp refs_str = NULL;
2812 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
2813 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
2814 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
2815 09867e48 2019-08-13 stsp if (datestr)
2816 09867e48 2019-08-13 stsp printf("date: %s UTC\n", datestr);
2817 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
2818 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
2819 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
2820 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
2821 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
2822 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
2823 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
2824 3fe1abad 2018-06-10 stsp int n = 1;
2825 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
2826 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
2827 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
2828 a0603db2 2018-06-10 stsp if (err)
2829 a0603db2 2018-06-10 stsp return err;
2830 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
2831 a0603db2 2018-06-10 stsp free(id_str);
2832 a0603db2 2018-06-10 stsp }
2833 a0603db2 2018-06-10 stsp }
2834 832c249c 2018-06-10 stsp
2835 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
2836 5943eee2 2019-08-13 stsp if (err)
2837 5943eee2 2019-08-13 stsp return err;
2838 8bf5b3c9 2018-03-17 stsp
2839 621015ac 2018-07-23 stsp logmsg = logmsg0;
2840 832c249c 2018-06-10 stsp do {
2841 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
2842 832c249c 2018-06-10 stsp if (line)
2843 832c249c 2018-06-10 stsp printf(" %s\n", line);
2844 832c249c 2018-06-10 stsp } while (line);
2845 621015ac 2018-07-23 stsp free(logmsg0);
2846 832c249c 2018-06-10 stsp
2847 971751ac 2018-03-27 stsp if (show_patch) {
2848 44392932 2019-08-25 stsp err = print_patch(commit, id, path, diff_context, repo);
2849 971751ac 2018-03-27 stsp if (err == 0)
2850 971751ac 2018-03-27 stsp printf("\n");
2851 971751ac 2018-03-27 stsp }
2852 07862c20 2018-09-15 stsp
2853 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
2854 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
2855 07862c20 2018-09-15 stsp return err;
2856 f42b1b34 2018-03-12 stsp }
2857 5c860e29 2018-03-12 stsp
2858 f42b1b34 2018-03-12 stsp static const struct got_error *
2859 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
2860 463a997a 2019-12-08 kn const char *path, int show_patch, const char *search_pattern,
2861 48c8c60d 2020-01-27 stsp int diff_context, int limit, int log_branches,
2862 463a997a 2019-12-08 kn struct got_reflist_head *refs)
2863 f42b1b34 2018-03-12 stsp {
2864 f42b1b34 2018-03-12 stsp const struct got_error *err;
2865 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
2866 6841bf13 2019-11-29 kn regex_t regex;
2867 6841bf13 2019-11-29 kn int have_match;
2868 372ccdbb 2018-06-10 stsp
2869 6841bf13 2019-11-29 kn if (search_pattern &&
2870 6841bf13 2019-11-29 kn regcomp(&regex, search_pattern, REG_EXTENDED | REG_NOSUB | REG_NEWLINE))
2871 6841bf13 2019-11-29 kn return got_error_msg(GOT_ERR_REGEX, search_pattern);
2872 6841bf13 2019-11-29 kn
2873 48c8c60d 2020-01-27 stsp err = got_commit_graph_open(&graph, path, !log_branches);
2874 f42b1b34 2018-03-12 stsp if (err)
2875 f42b1b34 2018-03-12 stsp return err;
2876 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, root_id, repo,
2877 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
2878 372ccdbb 2018-06-10 stsp if (err)
2879 fcc85cad 2018-07-22 stsp goto done;
2880 656b1f76 2019-05-11 jcs for (;;) {
2881 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
2882 372ccdbb 2018-06-10 stsp struct got_object_id *id;
2883 8bf5b3c9 2018-03-17 stsp
2884 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
2885 84453469 2018-11-11 stsp break;
2886 84453469 2018-11-11 stsp
2887 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&id, graph, repo,
2888 ee780d5c 2020-01-04 stsp check_cancelled, NULL);
2889 372ccdbb 2018-06-10 stsp if (err) {
2890 ee780d5c 2020-01-04 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
2891 9ba79e04 2018-06-11 stsp err = NULL;
2892 ee780d5c 2020-01-04 stsp break;
2893 7e665116 2018-04-02 stsp }
2894 b43fbaa0 2018-06-11 stsp if (id == NULL)
2895 7e665116 2018-04-02 stsp break;
2896 b43fbaa0 2018-06-11 stsp
2897 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
2898 b43fbaa0 2018-06-11 stsp if (err)
2899 fcc85cad 2018-07-22 stsp break;
2900 6841bf13 2019-11-29 kn
2901 6841bf13 2019-11-29 kn if (search_pattern) {
2902 6841bf13 2019-11-29 kn err = match_logmsg(&have_match, id, commit, &regex);
2903 6841bf13 2019-11-29 kn if (err) {
2904 6841bf13 2019-11-29 kn got_object_commit_close(commit);
2905 6841bf13 2019-11-29 kn break;
2906 6841bf13 2019-11-29 kn }
2907 6841bf13 2019-11-29 kn if (have_match == 0) {
2908 6841bf13 2019-11-29 kn got_object_commit_close(commit);
2909 6841bf13 2019-11-29 kn continue;
2910 6841bf13 2019-11-29 kn }
2911 6841bf13 2019-11-29 kn }
2912 6841bf13 2019-11-29 kn
2913 44392932 2019-08-25 stsp err = print_commit(commit, id, repo, path, show_patch,
2914 44392932 2019-08-25 stsp diff_context, refs);
2915 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
2916 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
2917 7e665116 2018-04-02 stsp break;
2918 31cedeaf 2018-09-15 stsp }
2919 fcc85cad 2018-07-22 stsp done:
2920 6841bf13 2019-11-29 kn if (search_pattern)
2921 6841bf13 2019-11-29 kn regfree(&regex);
2922 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
2923 f42b1b34 2018-03-12 stsp return err;
2924 f42b1b34 2018-03-12 stsp }
2925 5c860e29 2018-03-12 stsp
2926 4ed7e80c 2018-05-20 stsp __dead static void
2927 6f3d1eb0 2018-03-12 stsp usage_log(void)
2928 6f3d1eb0 2018-03-12 stsp {
2929 48c8c60d 2020-01-27 stsp fprintf(stderr, "usage: %s log [-b] [-c commit] [-C number] [ -l N ] [-p] "
2930 6841bf13 2019-11-29 kn "[-s search-pattern] [-r repository-path] [path]\n", getprogname());
2931 6f3d1eb0 2018-03-12 stsp exit(1);
2932 b1ebc001 2019-08-13 stsp }
2933 b1ebc001 2019-08-13 stsp
2934 b1ebc001 2019-08-13 stsp static int
2935 b1ebc001 2019-08-13 stsp get_default_log_limit(void)
2936 b1ebc001 2019-08-13 stsp {
2937 b1ebc001 2019-08-13 stsp const char *got_default_log_limit;
2938 b1ebc001 2019-08-13 stsp long long n;
2939 b1ebc001 2019-08-13 stsp const char *errstr;
2940 b1ebc001 2019-08-13 stsp
2941 b1ebc001 2019-08-13 stsp got_default_log_limit = getenv("GOT_LOG_DEFAULT_LIMIT");
2942 b1ebc001 2019-08-13 stsp if (got_default_log_limit == NULL)
2943 b1ebc001 2019-08-13 stsp return 0;
2944 b1ebc001 2019-08-13 stsp n = strtonum(got_default_log_limit, 0, INT_MAX, &errstr);
2945 b1ebc001 2019-08-13 stsp if (errstr != NULL)
2946 b1ebc001 2019-08-13 stsp return 0;
2947 b1ebc001 2019-08-13 stsp return n;
2948 6f3d1eb0 2018-03-12 stsp }
2949 6f3d1eb0 2018-03-12 stsp
2950 4ed7e80c 2018-05-20 stsp static const struct got_error *
2951 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
2952 f42b1b34 2018-03-12 stsp {
2953 f42b1b34 2018-03-12 stsp const struct got_error *error;
2954 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
2955 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
2956 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
2957 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
2958 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
2959 463a997a 2019-12-08 kn const char *start_commit = NULL, *search_pattern = NULL;
2960 dc1edbfa 2019-11-29 kn int diff_context = -1, ch;
2961 48c8c60d 2020-01-27 stsp int show_patch = 0, limit = 0, log_branches = 0;
2962 64a96a6d 2018-04-01 stsp const char *errstr;
2963 199a4027 2019-02-02 stsp struct got_reflist_head refs;
2964 1b3893a2 2019-03-18 stsp
2965 1b3893a2 2019-03-18 stsp SIMPLEQ_INIT(&refs);
2966 5c860e29 2018-03-12 stsp
2967 6715a751 2018-03-16 stsp #ifndef PROFILE
2968 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2969 6098196c 2019-01-04 stsp NULL)
2970 ad242220 2018-09-08 stsp == -1)
2971 f42b1b34 2018-03-12 stsp err(1, "pledge");
2972 6715a751 2018-03-16 stsp #endif
2973 79109fed 2018-03-27 stsp
2974 b1ebc001 2019-08-13 stsp limit = get_default_log_limit();
2975 b1ebc001 2019-08-13 stsp
2976 48c8c60d 2020-01-27 stsp while ((ch = getopt(argc, argv, "bpc:C:l:r:s:")) != -1) {
2977 79109fed 2018-03-27 stsp switch (ch) {
2978 79109fed 2018-03-27 stsp case 'p':
2979 79109fed 2018-03-27 stsp show_patch = 1;
2980 d142fc45 2018-04-01 stsp break;
2981 d142fc45 2018-04-01 stsp case 'c':
2982 d142fc45 2018-04-01 stsp start_commit = optarg;
2983 64a96a6d 2018-04-01 stsp break;
2984 c0cc5c62 2018-10-18 stsp case 'C':
2985 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
2986 4a8520aa 2018-10-18 stsp &errstr);
2987 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
2988 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
2989 c0cc5c62 2018-10-18 stsp break;
2990 64a96a6d 2018-04-01 stsp case 'l':
2991 b1ebc001 2019-08-13 stsp limit = strtonum(optarg, 0, INT_MAX, &errstr);
2992 64a96a6d 2018-04-01 stsp if (errstr != NULL)
2993 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
2994 cc54c501 2019-07-15 stsp break;
2995 48c8c60d 2020-01-27 stsp case 'b':
2996 48c8c60d 2020-01-27 stsp log_branches = 1;
2997 a0603db2 2018-06-10 stsp break;
2998 04ca23f4 2018-07-16 stsp case 'r':
2999 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
3000 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
3001 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3002 9ba1d308 2019-10-21 stsp optarg);
3003 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
3004 04ca23f4 2018-07-16 stsp break;
3005 6841bf13 2019-11-29 kn case 's':
3006 6841bf13 2019-11-29 kn search_pattern = optarg;
3007 6841bf13 2019-11-29 kn break;
3008 79109fed 2018-03-27 stsp default:
3009 2deda0b9 2019-03-07 stsp usage_log();
3010 79109fed 2018-03-27 stsp /* NOTREACHED */
3011 79109fed 2018-03-27 stsp }
3012 79109fed 2018-03-27 stsp }
3013 79109fed 2018-03-27 stsp
3014 79109fed 2018-03-27 stsp argc -= optind;
3015 79109fed 2018-03-27 stsp argv += optind;
3016 f42b1b34 2018-03-12 stsp
3017 dc1edbfa 2019-11-29 kn if (diff_context == -1)
3018 dc1edbfa 2019-11-29 kn diff_context = 3;
3019 dc1edbfa 2019-11-29 kn else if (!show_patch)
3020 dc1edbfa 2019-11-29 kn errx(1, "-C reguires -p");
3021 dc1edbfa 2019-11-29 kn
3022 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
3023 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
3024 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3025 04ca23f4 2018-07-16 stsp goto done;
3026 04ca23f4 2018-07-16 stsp }
3027 cffc0aa4 2019-02-05 stsp
3028 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
3029 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3030 cffc0aa4 2019-02-05 stsp goto done;
3031 cffc0aa4 2019-02-05 stsp error = NULL;
3032 cffc0aa4 2019-02-05 stsp
3033 e7301579 2019-03-18 stsp if (argc == 0) {
3034 cbd1af7a 2019-03-18 stsp path = strdup("");
3035 e7301579 2019-03-18 stsp if (path == NULL) {
3036 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3037 cbd1af7a 2019-03-18 stsp goto done;
3038 e7301579 2019-03-18 stsp }
3039 e7301579 2019-03-18 stsp } else if (argc == 1) {
3040 e7301579 2019-03-18 stsp if (worktree) {
3041 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
3042 e7301579 2019-03-18 stsp argv[0]);
3043 e7301579 2019-03-18 stsp if (error)
3044 e7301579 2019-03-18 stsp goto done;
3045 e7301579 2019-03-18 stsp } else {
3046 e7301579 2019-03-18 stsp path = strdup(argv[0]);
3047 e7301579 2019-03-18 stsp if (path == NULL) {
3048 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3049 e7301579 2019-03-18 stsp goto done;
3050 e7301579 2019-03-18 stsp }
3051 e7301579 2019-03-18 stsp }
3052 cbd1af7a 2019-03-18 stsp } else
3053 cbd1af7a 2019-03-18 stsp usage_log();
3054 cbd1af7a 2019-03-18 stsp
3055 5486daa2 2019-05-11 stsp if (repo_path == NULL) {
3056 5486daa2 2019-05-11 stsp repo_path = worktree ?
3057 5486daa2 2019-05-11 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
3058 5486daa2 2019-05-11 stsp }
3059 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
3060 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3061 cffc0aa4 2019-02-05 stsp goto done;
3062 04ca23f4 2018-07-16 stsp }
3063 6098196c 2019-01-04 stsp
3064 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3065 d7d4f210 2018-03-12 stsp if (error != NULL)
3066 04ca23f4 2018-07-16 stsp goto done;
3067 f42b1b34 2018-03-12 stsp
3068 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
3069 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3070 c02c541e 2019-03-29 stsp if (error)
3071 c02c541e 2019-03-29 stsp goto done;
3072 c02c541e 2019-03-29 stsp
3073 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
3074 3235492e 2018-04-01 stsp struct got_reference *head_ref;
3075 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
3076 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
3077 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
3078 3235492e 2018-04-01 stsp if (error != NULL)
3079 3235492e 2018-04-01 stsp return error;
3080 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
3081 3235492e 2018-04-01 stsp got_ref_close(head_ref);
3082 3235492e 2018-04-01 stsp if (error != NULL)
3083 3235492e 2018-04-01 stsp return error;
3084 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
3085 3235492e 2018-04-01 stsp } else {
3086 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
3087 2f17228e 2019-05-12 stsp error = got_ref_open(&ref, repo, start_commit, 0);
3088 3235492e 2018-04-01 stsp if (error == NULL) {
3089 1caad61b 2019-02-01 stsp int obj_type;
3090 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
3091 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
3092 d1f2edc9 2018-06-13 stsp if (error != NULL)
3093 1caad61b 2019-02-01 stsp goto done;
3094 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
3095 1caad61b 2019-02-01 stsp if (error != NULL)
3096 1caad61b 2019-02-01 stsp goto done;
3097 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
3098 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
3099 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
3100 1caad61b 2019-02-01 stsp if (error != NULL)
3101 1caad61b 2019-02-01 stsp goto done;
3102 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
3103 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
3104 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
3105 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
3106 1caad61b 2019-02-01 stsp goto done;
3107 1caad61b 2019-02-01 stsp }
3108 1caad61b 2019-02-01 stsp free(id);
3109 1caad61b 2019-02-01 stsp id = got_object_id_dup(
3110 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
3111 1caad61b 2019-02-01 stsp if (id == NULL)
3112 638f9024 2019-05-13 stsp error = got_error_from_errno(
3113 230a42bd 2019-05-11 jcs "got_object_id_dup");
3114 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
3115 1caad61b 2019-02-01 stsp if (error)
3116 1caad61b 2019-02-01 stsp goto done;
3117 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
3118 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
3119 1caad61b 2019-02-01 stsp goto done;
3120 1caad61b 2019-02-01 stsp }
3121 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
3122 d1f2edc9 2018-06-13 stsp if (error != NULL)
3123 1caad61b 2019-02-01 stsp goto done;
3124 d1f2edc9 2018-06-13 stsp }
3125 15a94983 2018-12-23 stsp if (commit == NULL) {
3126 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&id,
3127 dd88155e 2019-06-29 stsp start_commit, GOT_OBJ_TYPE_COMMIT, repo);
3128 d1f2edc9 2018-06-13 stsp if (error != NULL)
3129 d1f2edc9 2018-06-13 stsp return error;
3130 3235492e 2018-04-01 stsp }
3131 3235492e 2018-04-01 stsp }
3132 d7d4f210 2018-03-12 stsp if (error != NULL)
3133 04ca23f4 2018-07-16 stsp goto done;
3134 04ca23f4 2018-07-16 stsp
3135 deeabeae 2019-08-27 stsp if (worktree) {
3136 deeabeae 2019-08-27 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3137 deeabeae 2019-08-27 stsp char *p;
3138 deeabeae 2019-08-27 stsp if (asprintf(&p, "%s%s%s", prefix,
3139 deeabeae 2019-08-27 stsp (strcmp(prefix, "/") != 0) ? "/" : "", path) == -1) {
3140 deeabeae 2019-08-27 stsp error = got_error_from_errno("asprintf");
3141 deeabeae 2019-08-27 stsp goto done;
3142 deeabeae 2019-08-27 stsp }
3143 f43793a4 2020-01-27 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
3144 deeabeae 2019-08-27 stsp free(p);
3145 deeabeae 2019-08-27 stsp } else
3146 deeabeae 2019-08-27 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
3147 04ca23f4 2018-07-16 stsp if (error != NULL)
3148 04ca23f4 2018-07-16 stsp goto done;
3149 04ca23f4 2018-07-16 stsp if (in_repo_path) {
3150 04ca23f4 2018-07-16 stsp free(path);
3151 04ca23f4 2018-07-16 stsp path = in_repo_path;
3152 04ca23f4 2018-07-16 stsp }
3153 199a4027 2019-02-02 stsp
3154 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3155 199a4027 2019-02-02 stsp if (error)
3156 199a4027 2019-02-02 stsp goto done;
3157 04ca23f4 2018-07-16 stsp
3158 6841bf13 2019-11-29 kn error = print_commits(id, repo, path, show_patch, search_pattern,
3159 48c8c60d 2020-01-27 stsp diff_context, limit, log_branches, &refs);
3160 04ca23f4 2018-07-16 stsp done:
3161 04ca23f4 2018-07-16 stsp free(path);
3162 04ca23f4 2018-07-16 stsp free(repo_path);
3163 04ca23f4 2018-07-16 stsp free(cwd);
3164 f42b1b34 2018-03-12 stsp free(id);
3165 cffc0aa4 2019-02-05 stsp if (worktree)
3166 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
3167 ad242220 2018-09-08 stsp if (repo) {
3168 ad242220 2018-09-08 stsp const struct got_error *repo_error;
3169 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
3170 ad242220 2018-09-08 stsp if (error == NULL)
3171 ad242220 2018-09-08 stsp error = repo_error;
3172 ad242220 2018-09-08 stsp }
3173 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
3174 8bf5b3c9 2018-03-17 stsp return error;
3175 5c860e29 2018-03-12 stsp }
3176 5c860e29 2018-03-12 stsp
3177 4ed7e80c 2018-05-20 stsp __dead static void
3178 3f8b7d6a 2018-04-01 stsp usage_diff(void)
3179 3f8b7d6a 2018-04-01 stsp {
3180 98eaaa12 2019-08-03 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] [-s] "
3181 63035f9f 2019-10-06 stsp "[-w] [object1 object2 | path]\n", getprogname());
3182 3f8b7d6a 2018-04-01 stsp exit(1);
3183 b00d56cd 2018-04-01 stsp }
3184 b00d56cd 2018-04-01 stsp
3185 b72f483a 2019-02-05 stsp struct print_diff_arg {
3186 b72f483a 2019-02-05 stsp struct got_repository *repo;
3187 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
3188 b72f483a 2019-02-05 stsp int diff_context;
3189 3fc0c068 2019-02-10 stsp const char *id_str;
3190 3fc0c068 2019-02-10 stsp int header_shown;
3191 98eaaa12 2019-08-03 stsp int diff_staged;
3192 63035f9f 2019-10-06 stsp int ignore_whitespace;
3193 b72f483a 2019-02-05 stsp };
3194 b72f483a 2019-02-05 stsp
3195 4ed7e80c 2018-05-20 stsp static const struct got_error *
3196 88d0e355 2019-08-03 stsp print_diff(void *arg, unsigned char status, unsigned char staged_status,
3197 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
3198 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
3199 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
3200 b72f483a 2019-02-05 stsp {
3201 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
3202 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
3203 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
3204 12463d8b 2019-12-13 stsp int fd = -1;
3205 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
3206 4ce46740 2019-08-08 stsp char *abspath = NULL, *label1 = NULL;
3207 b72f483a 2019-02-05 stsp struct stat sb;
3208 b72f483a 2019-02-05 stsp
3209 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
3210 98eaaa12 2019-08-03 stsp if (staged_status != GOT_STATUS_MODIFY &&
3211 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_ADD &&
3212 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
3213 98eaaa12 2019-08-03 stsp return NULL;
3214 98eaaa12 2019-08-03 stsp } else {
3215 98eaaa12 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
3216 98eaaa12 2019-08-03 stsp return NULL;
3217 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
3218 2a06fe5f 2019-08-24 stsp return got_error_set_errno(ENOENT, path);
3219 98eaaa12 2019-08-03 stsp if (status != GOT_STATUS_MODIFY &&
3220 98eaaa12 2019-08-03 stsp status != GOT_STATUS_ADD &&
3221 98eaaa12 2019-08-03 stsp status != GOT_STATUS_DELETE &&
3222 98eaaa12 2019-08-03 stsp status != GOT_STATUS_CONFLICT)
3223 98eaaa12 2019-08-03 stsp return NULL;
3224 98eaaa12 2019-08-03 stsp }
3225 3fc0c068 2019-02-10 stsp
3226 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
3227 98eaaa12 2019-08-03 stsp printf("diff %s %s%s\n", a->id_str,
3228 98eaaa12 2019-08-03 stsp got_worktree_get_root_path(a->worktree),
3229 98eaaa12 2019-08-03 stsp a->diff_staged ? " (staged changes)" : "");
3230 3fc0c068 2019-02-10 stsp a->header_shown = 1;
3231 3fc0c068 2019-02-10 stsp }
3232 b72f483a 2019-02-05 stsp
3233 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
3234 98eaaa12 2019-08-03 stsp const char *label1 = NULL, *label2 = NULL;
3235 98eaaa12 2019-08-03 stsp switch (staged_status) {
3236 98eaaa12 2019-08-03 stsp case GOT_STATUS_MODIFY:
3237 98eaaa12 2019-08-03 stsp label1 = path;
3238 98eaaa12 2019-08-03 stsp label2 = path;
3239 98eaaa12 2019-08-03 stsp break;
3240 98eaaa12 2019-08-03 stsp case GOT_STATUS_ADD:
3241 98eaaa12 2019-08-03 stsp label2 = path;
3242 98eaaa12 2019-08-03 stsp break;
3243 98eaaa12 2019-08-03 stsp case GOT_STATUS_DELETE:
3244 98eaaa12 2019-08-03 stsp label1 = path;
3245 98eaaa12 2019-08-03 stsp break;
3246 98eaaa12 2019-08-03 stsp default:
3247 98eaaa12 2019-08-03 stsp return got_error(GOT_ERR_FILE_STATUS);
3248 98eaaa12 2019-08-03 stsp }
3249 98eaaa12 2019-08-03 stsp return got_diff_objects_as_blobs(blob_id, staged_blob_id,
3250 63035f9f 2019-10-06 stsp label1, label2, a->diff_context, a->ignore_whitespace,
3251 63035f9f 2019-10-06 stsp a->repo, stdout);
3252 98eaaa12 2019-08-03 stsp }
3253 98eaaa12 2019-08-03 stsp
3254 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
3255 4ce46740 2019-08-08 stsp staged_status == GOT_STATUS_MODIFY) {
3256 4ce46740 2019-08-08 stsp char *id_str;
3257 408b4ebc 2019-08-03 stsp err = got_object_open_as_blob(&blob1, a->repo, staged_blob_id,
3258 408b4ebc 2019-08-03 stsp 8192);
3259 4ce46740 2019-08-08 stsp if (err)
3260 4ce46740 2019-08-08 stsp goto done;
3261 4ce46740 2019-08-08 stsp err = got_object_id_str(&id_str, staged_blob_id);
3262 4ce46740 2019-08-08 stsp if (err)
3263 4ce46740 2019-08-08 stsp goto done;
3264 4ce46740 2019-08-08 stsp if (asprintf(&label1, "%s (staged)", id_str) == -1) {
3265 4ce46740 2019-08-08 stsp err = got_error_from_errno("asprintf");
3266 4ce46740 2019-08-08 stsp free(id_str);
3267 4ce46740 2019-08-08 stsp goto done;
3268 4ce46740 2019-08-08 stsp }
3269 4ce46740 2019-08-08 stsp free(id_str);
3270 4ce46740 2019-08-08 stsp } else if (status != GOT_STATUS_ADD) {
3271 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
3272 4ce46740 2019-08-08 stsp if (err)
3273 4ce46740 2019-08-08 stsp goto done;
3274 4ce46740 2019-08-08 stsp }
3275 d00136be 2019-03-26 stsp
3276 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
3277 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
3278 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
3279 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3280 2ec1f75b 2019-03-26 stsp goto done;
3281 2ec1f75b 2019-03-26 stsp }
3282 b72f483a 2019-02-05 stsp
3283 12463d8b 2019-12-13 stsp if (dirfd != -1) {
3284 12463d8b 2019-12-13 stsp fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
3285 12463d8b 2019-12-13 stsp if (fd == -1) {
3286 12463d8b 2019-12-13 stsp err = got_error_from_errno2("openat", abspath);
3287 12463d8b 2019-12-13 stsp goto done;
3288 12463d8b 2019-12-13 stsp }
3289 12463d8b 2019-12-13 stsp } else {
3290 12463d8b 2019-12-13 stsp fd = open(abspath, O_RDONLY | O_NOFOLLOW);
3291 12463d8b 2019-12-13 stsp if (fd == -1) {
3292 12463d8b 2019-12-13 stsp err = got_error_from_errno2("open", abspath);
3293 12463d8b 2019-12-13 stsp goto done;
3294 12463d8b 2019-12-13 stsp }
3295 12463d8b 2019-12-13 stsp }
3296 12463d8b 2019-12-13 stsp if (fstat(fd, &sb) == -1) {
3297 12463d8b 2019-12-13 stsp err = got_error_from_errno2("fstat", abspath);
3298 2ec1f75b 2019-03-26 stsp goto done;
3299 2ec1f75b 2019-03-26 stsp }
3300 12463d8b 2019-12-13 stsp f2 = fdopen(fd, "r");
3301 12463d8b 2019-12-13 stsp if (f2 == NULL) {
3302 12463d8b 2019-12-13 stsp err = got_error_from_errno2("fdopen", abspath);
3303 2ec1f75b 2019-03-26 stsp goto done;
3304 2ec1f75b 2019-03-26 stsp }
3305 12463d8b 2019-12-13 stsp fd = -1;
3306 2ec1f75b 2019-03-26 stsp } else
3307 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
3308 b72f483a 2019-02-05 stsp
3309 4ce46740 2019-08-08 stsp err = got_diff_blob_file(blob1, label1, f2, sb.st_size, path,
3310 63035f9f 2019-10-06 stsp a->diff_context, a->ignore_whitespace, stdout);
3311 b72f483a 2019-02-05 stsp done:
3312 b72f483a 2019-02-05 stsp if (blob1)
3313 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
3314 12463d8b 2019-12-13 stsp if (f2 && fclose(f2) == EOF && err == NULL)
3315 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
3316 12463d8b 2019-12-13 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
3317 12463d8b 2019-12-13 stsp err = got_error_from_errno("close");
3318 b72f483a 2019-02-05 stsp free(abspath);
3319 927df6b7 2019-02-10 stsp return err;
3320 927df6b7 2019-02-10 stsp }
3321 927df6b7 2019-02-10 stsp
3322 927df6b7 2019-02-10 stsp static const struct got_error *
3323 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
3324 b00d56cd 2018-04-01 stsp {
3325 b00d56cd 2018-04-01 stsp const struct got_error *error;
3326 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
3327 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
3328 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
3329 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
3330 cd628e99 2019-05-28 stsp const char *id_str1 = NULL, *id_str2 = NULL;
3331 5e70831e 2019-05-28 stsp char *label1 = NULL, *label2 = NULL;
3332 15a94983 2018-12-23 stsp int type1, type2;
3333 63035f9f 2019-10-06 stsp int diff_context = 3, diff_staged = 0, ignore_whitespace = 0, ch;
3334 c0cc5c62 2018-10-18 stsp const char *errstr;
3335 927df6b7 2019-02-10 stsp char *path = NULL;
3336 b00d56cd 2018-04-01 stsp
3337 b00d56cd 2018-04-01 stsp #ifndef PROFILE
3338 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3339 25eccc22 2019-01-04 stsp NULL) == -1)
3340 b00d56cd 2018-04-01 stsp err(1, "pledge");
3341 b00d56cd 2018-04-01 stsp #endif
3342 b00d56cd 2018-04-01 stsp
3343 63035f9f 2019-10-06 stsp while ((ch = getopt(argc, argv, "C:r:sw")) != -1) {
3344 b00d56cd 2018-04-01 stsp switch (ch) {
3345 c0cc5c62 2018-10-18 stsp case 'C':
3346 dfcab68b 2019-11-29 kn diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
3347 dfcab68b 2019-11-29 kn &errstr);
3348 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
3349 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
3350 c0cc5c62 2018-10-18 stsp break;
3351 b72f483a 2019-02-05 stsp case 'r':
3352 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
3353 b72f483a 2019-02-05 stsp if (repo_path == NULL)
3354 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3355 9ba1d308 2019-10-21 stsp optarg);
3356 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
3357 b72f483a 2019-02-05 stsp break;
3358 98eaaa12 2019-08-03 stsp case 's':
3359 98eaaa12 2019-08-03 stsp diff_staged = 1;
3360 63035f9f 2019-10-06 stsp break;
3361 63035f9f 2019-10-06 stsp case 'w':
3362 63035f9f 2019-10-06 stsp ignore_whitespace = 1;
3363 98eaaa12 2019-08-03 stsp break;
3364 b00d56cd 2018-04-01 stsp default:
3365 2deda0b9 2019-03-07 stsp usage_diff();
3366 b00d56cd 2018-04-01 stsp /* NOTREACHED */
3367 b00d56cd 2018-04-01 stsp }
3368 b00d56cd 2018-04-01 stsp }
3369 b00d56cd 2018-04-01 stsp
3370 b00d56cd 2018-04-01 stsp argc -= optind;
3371 b00d56cd 2018-04-01 stsp argv += optind;
3372 b00d56cd 2018-04-01 stsp
3373 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
3374 b72f483a 2019-02-05 stsp if (cwd == NULL) {
3375 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3376 b72f483a 2019-02-05 stsp goto done;
3377 b72f483a 2019-02-05 stsp }
3378 927df6b7 2019-02-10 stsp if (argc <= 1) {
3379 b72f483a 2019-02-05 stsp if (repo_path)
3380 b72f483a 2019-02-05 stsp errx(1,
3381 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
3382 1f03b8da 2020-03-20 stsp error = got_worktree_open(&worktree, cwd);
3383 1f03b8da 2020-03-20 stsp if (error)
3384 1f03b8da 2020-03-20 stsp goto done;
3385 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
3386 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
3387 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3388 927df6b7 2019-02-10 stsp goto done;
3389 927df6b7 2019-02-10 stsp }
3390 927df6b7 2019-02-10 stsp if (argc == 1) {
3391 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
3392 cbd1af7a 2019-03-18 stsp argv[0]);
3393 927df6b7 2019-02-10 stsp if (error)
3394 927df6b7 2019-02-10 stsp goto done;
3395 927df6b7 2019-02-10 stsp } else {
3396 927df6b7 2019-02-10 stsp path = strdup("");
3397 927df6b7 2019-02-10 stsp if (path == NULL) {
3398 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3399 927df6b7 2019-02-10 stsp goto done;
3400 927df6b7 2019-02-10 stsp }
3401 927df6b7 2019-02-10 stsp }
3402 b72f483a 2019-02-05 stsp } else if (argc == 2) {
3403 98eaaa12 2019-08-03 stsp if (diff_staged)
3404 98eaaa12 2019-08-03 stsp errx(1, "-s option can't be used when diffing "
3405 98eaaa12 2019-08-03 stsp "objects in repository");
3406 15a94983 2018-12-23 stsp id_str1 = argv[0];
3407 15a94983 2018-12-23 stsp id_str2 = argv[1];
3408 1f03b8da 2020-03-20 stsp if (repo_path == NULL) {
3409 1f03b8da 2020-03-20 stsp error = got_worktree_open(&worktree, cwd);
3410 1f03b8da 2020-03-20 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3411 30db809c 2019-06-05 stsp goto done;
3412 1f03b8da 2020-03-20 stsp if (worktree) {
3413 1f03b8da 2020-03-20 stsp repo_path = strdup(
3414 1f03b8da 2020-03-20 stsp got_worktree_get_repo_path(worktree));
3415 1f03b8da 2020-03-20 stsp if (repo_path == NULL) {
3416 1f03b8da 2020-03-20 stsp error = got_error_from_errno("strdup");
3417 1f03b8da 2020-03-20 stsp goto done;
3418 1f03b8da 2020-03-20 stsp }
3419 1f03b8da 2020-03-20 stsp } else {
3420 1f03b8da 2020-03-20 stsp repo_path = strdup(cwd);
3421 1f03b8da 2020-03-20 stsp if (repo_path == NULL) {
3422 1f03b8da 2020-03-20 stsp error = got_error_from_errno("strdup");
3423 1f03b8da 2020-03-20 stsp goto done;
3424 1f03b8da 2020-03-20 stsp }
3425 30db809c 2019-06-05 stsp }
3426 30db809c 2019-06-05 stsp }
3427 b00d56cd 2018-04-01 stsp } else
3428 b00d56cd 2018-04-01 stsp usage_diff();
3429 b00d56cd 2018-04-01 stsp
3430 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3431 76089277 2018-04-01 stsp free(repo_path);
3432 b00d56cd 2018-04-01 stsp if (error != NULL)
3433 b00d56cd 2018-04-01 stsp goto done;
3434 b00d56cd 2018-04-01 stsp
3435 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
3436 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3437 c02c541e 2019-03-29 stsp if (error)
3438 c02c541e 2019-03-29 stsp goto done;
3439 c02c541e 2019-03-29 stsp
3440 30db809c 2019-06-05 stsp if (argc <= 1) {
3441 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
3442 72ea6654 2019-07-27 stsp struct got_pathlist_head paths;
3443 b72f483a 2019-02-05 stsp char *id_str;
3444 72ea6654 2019-07-27 stsp
3445 72ea6654 2019-07-27 stsp TAILQ_INIT(&paths);
3446 72ea6654 2019-07-27 stsp
3447 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
3448 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
3449 b72f483a 2019-02-05 stsp if (error)
3450 b72f483a 2019-02-05 stsp goto done;
3451 b72f483a 2019-02-05 stsp arg.repo = repo;
3452 b72f483a 2019-02-05 stsp arg.worktree = worktree;
3453 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
3454 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
3455 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
3456 98eaaa12 2019-08-03 stsp arg.diff_staged = diff_staged;
3457 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
3458 b72f483a 2019-02-05 stsp
3459 adc19d55 2019-07-28 stsp error = got_pathlist_append(&paths, path, NULL);
3460 72ea6654 2019-07-27 stsp if (error)
3461 72ea6654 2019-07-27 stsp goto done;
3462 72ea6654 2019-07-27 stsp
3463 72ea6654 2019-07-27 stsp error = got_worktree_status(worktree, &paths, repo, print_diff,
3464 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
3465 b72f483a 2019-02-05 stsp free(id_str);
3466 72ea6654 2019-07-27 stsp got_pathlist_free(&paths);
3467 b72f483a 2019-02-05 stsp goto done;
3468 b72f483a 2019-02-05 stsp }
3469 b72f483a 2019-02-05 stsp
3470 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&id1, &label1, id_str1,
3471 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_ANY, 1, repo);
3472 0adb7196 2019-08-11 stsp if (error)
3473 0adb7196 2019-08-11 stsp goto done;
3474 b00d56cd 2018-04-01 stsp
3475 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&id2, &label2, id_str2,
3476 71a27632 2020-01-15 stsp GOT_OBJ_TYPE_ANY, 1, repo);
3477 0adb7196 2019-08-11 stsp if (error)
3478 0adb7196 2019-08-11 stsp goto done;
3479 b00d56cd 2018-04-01 stsp
3480 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
3481 15a94983 2018-12-23 stsp if (error)
3482 15a94983 2018-12-23 stsp goto done;
3483 15a94983 2018-12-23 stsp
3484 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
3485 15a94983 2018-12-23 stsp if (error)
3486 15a94983 2018-12-23 stsp goto done;
3487 15a94983 2018-12-23 stsp
3488 15a94983 2018-12-23 stsp if (type1 != type2) {
3489 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
3490 b00d56cd 2018-04-01 stsp goto done;
3491 b00d56cd 2018-04-01 stsp }
3492 b00d56cd 2018-04-01 stsp
3493 15a94983 2018-12-23 stsp switch (type1) {
3494 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
3495 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
3496 63035f9f 2019-10-06 stsp diff_context, ignore_whitespace, repo, stdout);
3497 b00d56cd 2018-04-01 stsp break;
3498 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
3499 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
3500 63035f9f 2019-10-06 stsp diff_context, ignore_whitespace, repo, stdout);
3501 b00d56cd 2018-04-01 stsp break;
3502 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
3503 5e70831e 2019-05-28 stsp printf("diff %s %s\n", label1, label2);
3504 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
3505 63035f9f 2019-10-06 stsp ignore_whitespace, repo, stdout);
3506 b00d56cd 2018-04-01 stsp break;
3507 b00d56cd 2018-04-01 stsp default:
3508 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
3509 b00d56cd 2018-04-01 stsp }
3510 b00d56cd 2018-04-01 stsp done:
3511 5e70831e 2019-05-28 stsp free(label1);
3512 5e70831e 2019-05-28 stsp free(label2);
3513 15a94983 2018-12-23 stsp free(id1);
3514 15a94983 2018-12-23 stsp free(id2);
3515 927df6b7 2019-02-10 stsp free(path);
3516 b72f483a 2019-02-05 stsp if (worktree)
3517 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
3518 ad242220 2018-09-08 stsp if (repo) {
3519 ad242220 2018-09-08 stsp const struct got_error *repo_error;
3520 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
3521 ad242220 2018-09-08 stsp if (error == NULL)
3522 ad242220 2018-09-08 stsp error = repo_error;
3523 ad242220 2018-09-08 stsp }
3524 b00d56cd 2018-04-01 stsp return error;
3525 404c43c4 2018-06-21 stsp }
3526 404c43c4 2018-06-21 stsp
3527 404c43c4 2018-06-21 stsp __dead static void
3528 404c43c4 2018-06-21 stsp usage_blame(void)
3529 404c43c4 2018-06-21 stsp {
3530 9270e621 2019-02-05 stsp fprintf(stderr,
3531 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
3532 404c43c4 2018-06-21 stsp getprogname());
3533 404c43c4 2018-06-21 stsp exit(1);
3534 b00d56cd 2018-04-01 stsp }
3535 b00d56cd 2018-04-01 stsp
3536 28315671 2019-08-14 stsp struct blame_line {
3537 28315671 2019-08-14 stsp int annotated;
3538 28315671 2019-08-14 stsp char *id_str;
3539 82f6abb8 2019-08-14 stsp char *committer;
3540 11db6024 2019-10-21 stsp char datebuf[11]; /* YYYY-MM-DD + NUL */
3541 28315671 2019-08-14 stsp };
3542 28315671 2019-08-14 stsp
3543 28315671 2019-08-14 stsp struct blame_cb_args {
3544 28315671 2019-08-14 stsp struct blame_line *lines;
3545 28315671 2019-08-14 stsp int nlines;
3546 7ef28ff8 2019-08-14 stsp int nlines_prec;
3547 28315671 2019-08-14 stsp int lineno_cur;
3548 28315671 2019-08-14 stsp off_t *line_offsets;
3549 28315671 2019-08-14 stsp FILE *f;
3550 82f6abb8 2019-08-14 stsp struct got_repository *repo;
3551 28315671 2019-08-14 stsp };
3552 28315671 2019-08-14 stsp
3553 404c43c4 2018-06-21 stsp static const struct got_error *
3554 28315671 2019-08-14 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
3555 28315671 2019-08-14 stsp {
3556 28315671 2019-08-14 stsp const struct got_error *err = NULL;
3557 28315671 2019-08-14 stsp struct blame_cb_args *a = arg;
3558 28315671 2019-08-14 stsp struct blame_line *bline;
3559 82f6abb8 2019-08-14 stsp char *line = NULL;
3560 28315671 2019-08-14 stsp size_t linesize = 0;
3561 82f6abb8 2019-08-14 stsp struct got_commit_object *commit = NULL;
3562 28315671 2019-08-14 stsp off_t offset;
3563 bcb49d15 2019-08-14 stsp struct tm tm;
3564 bcb49d15 2019-08-14 stsp time_t committer_time;
3565 28315671 2019-08-14 stsp
3566 28315671 2019-08-14 stsp if (nlines != a->nlines ||
3567 28315671 2019-08-14 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
3568 28315671 2019-08-14 stsp return got_error(GOT_ERR_RANGE);
3569 28315671 2019-08-14 stsp
3570 28315671 2019-08-14 stsp if (sigint_received)
3571 28315671 2019-08-14 stsp return got_error(GOT_ERR_ITER_COMPLETED);
3572 28315671 2019-08-14 stsp
3573 2839f8b9 2019-08-18 stsp if (lineno == -1)
3574 2839f8b9 2019-08-18 stsp return NULL; /* no change in this commit */
3575 2839f8b9 2019-08-18 stsp
3576 28315671 2019-08-14 stsp /* Annotate this line. */
3577 28315671 2019-08-14 stsp bline = &a->lines[lineno - 1];
3578 28315671 2019-08-14 stsp if (bline->annotated)
3579 28315671 2019-08-14 stsp return NULL;
3580 28315671 2019-08-14 stsp err = got_object_id_str(&bline->id_str, id);
3581 28315671 2019-08-14 stsp if (err)
3582 28315671 2019-08-14 stsp return err;
3583 82f6abb8 2019-08-14 stsp
3584 82f6abb8 2019-08-14 stsp err = got_object_open_as_commit(&commit, a->repo, id);
3585 82f6abb8 2019-08-14 stsp if (err)
3586 82f6abb8 2019-08-14 stsp goto done;
3587 82f6abb8 2019-08-14 stsp
3588 82f6abb8 2019-08-14 stsp bline->committer = strdup(got_object_commit_get_committer(commit));
3589 82f6abb8 2019-08-14 stsp if (bline->committer == NULL) {
3590 82f6abb8 2019-08-14 stsp err = got_error_from_errno("strdup");
3591 bcb49d15 2019-08-14 stsp goto done;
3592 bcb49d15 2019-08-14 stsp }
3593 bcb49d15 2019-08-14 stsp
3594 bcb49d15 2019-08-14 stsp committer_time = got_object_commit_get_committer_time(commit);
3595 bcb49d15 2019-08-14 stsp if (localtime_r(&committer_time, &tm) == NULL)
3596 bcb49d15 2019-08-14 stsp return got_error_from_errno("localtime_r");
3597 6db9f7f6 2019-12-10 stsp if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
3598 bcb49d15 2019-08-14 stsp &tm) >= sizeof(bline->datebuf)) {
3599 bcb49d15 2019-08-14 stsp err = got_error(GOT_ERR_NO_SPACE);
3600 82f6abb8 2019-08-14 stsp goto done;
3601 82f6abb8 2019-08-14 stsp }
3602 28315671 2019-08-14 stsp bline->annotated = 1;
3603 28315671 2019-08-14 stsp
3604 28315671 2019-08-14 stsp /* Print lines annotated so far. */
3605 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
3606 28315671 2019-08-14 stsp if (!bline->annotated)
3607 82f6abb8 2019-08-14 stsp goto done;
3608 28315671 2019-08-14 stsp
3609 28315671 2019-08-14 stsp offset = a->line_offsets[a->lineno_cur - 1];
3610 82f6abb8 2019-08-14 stsp if (fseeko(a->f, offset, SEEK_SET) == -1) {
3611 82f6abb8 2019-08-14 stsp err = got_error_from_errno("fseeko");
3612 82f6abb8 2019-08-14 stsp goto done;
3613 82f6abb8 2019-08-14 stsp }
3614 28315671 2019-08-14 stsp
3615 28315671 2019-08-14 stsp while (bline->annotated) {
3616 82f6abb8 2019-08-14 stsp char *smallerthan, *at, *nl, *committer;
3617 82f6abb8 2019-08-14 stsp size_t len;
3618 82f6abb8 2019-08-14 stsp
3619 500467ff 2019-09-25 hiltjo if (getline(&line, &linesize, a->f) == -1) {
3620 28315671 2019-08-14 stsp if (ferror(a->f))
3621 28315671 2019-08-14 stsp err = got_error_from_errno("getline");
3622 28315671 2019-08-14 stsp break;
3623 28315671 2019-08-14 stsp }
3624 82f6abb8 2019-08-14 stsp
3625 82f6abb8 2019-08-14 stsp committer = bline->committer;
3626 82f6abb8 2019-08-14 stsp smallerthan = strchr(committer, '<');
3627 82f6abb8 2019-08-14 stsp if (smallerthan && smallerthan[1] != '\0')
3628 82f6abb8 2019-08-14 stsp committer = smallerthan + 1;
3629 82f6abb8 2019-08-14 stsp at = strchr(committer, '@');
3630 82f6abb8 2019-08-14 stsp if (at)
3631 82f6abb8 2019-08-14 stsp *at = '\0';
3632 82f6abb8 2019-08-14 stsp len = strlen(committer);
3633 82f6abb8 2019-08-14 stsp if (len >= 9)
3634 82f6abb8 2019-08-14 stsp committer[8] = '\0';
3635 28315671 2019-08-14 stsp
3636 28315671 2019-08-14 stsp nl = strchr(line, '\n');
3637 28315671 2019-08-14 stsp if (nl)
3638 28315671 2019-08-14 stsp *nl = '\0';
3639 bcb49d15 2019-08-14 stsp printf("%.*d) %.8s %s %-8s %s\n", a->nlines_prec, a->lineno_cur,
3640 bcb49d15 2019-08-14 stsp bline->id_str, bline->datebuf, committer, line);
3641 28315671 2019-08-14 stsp
3642 28315671 2019-08-14 stsp a->lineno_cur++;
3643 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
3644 28315671 2019-08-14 stsp }
3645 82f6abb8 2019-08-14 stsp done:
3646 82f6abb8 2019-08-14 stsp if (commit)
3647 82f6abb8 2019-08-14 stsp got_object_commit_close(commit);
3648 28315671 2019-08-14 stsp free(line);
3649 28315671 2019-08-14 stsp return err;
3650 28315671 2019-08-14 stsp }
3651 28315671 2019-08-14 stsp
3652 28315671 2019-08-14 stsp static const struct got_error *
3653 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
3654 404c43c4 2018-06-21 stsp {
3655 404c43c4 2018-06-21 stsp const struct got_error *error;
3656 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
3657 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
3658 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
3659 28315671 2019-08-14 stsp struct got_object_id *obj_id = NULL;
3660 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
3661 28315671 2019-08-14 stsp struct got_blob_object *blob = NULL;
3662 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
3663 28315671 2019-08-14 stsp struct blame_cb_args bca;
3664 28315671 2019-08-14 stsp int ch, obj_type, i;
3665 b02560ec 2019-08-19 stsp size_t filesize;
3666 90f3c347 2019-08-19 stsp
3667 90f3c347 2019-08-19 stsp memset(&bca, 0, sizeof(bca));
3668 404c43c4 2018-06-21 stsp
3669 404c43c4 2018-06-21 stsp #ifndef PROFILE
3670 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3671 36e2fb66 2019-01-04 stsp NULL) == -1)
3672 404c43c4 2018-06-21 stsp err(1, "pledge");
3673 404c43c4 2018-06-21 stsp #endif
3674 404c43c4 2018-06-21 stsp
3675 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
3676 404c43c4 2018-06-21 stsp switch (ch) {
3677 404c43c4 2018-06-21 stsp case 'c':
3678 404c43c4 2018-06-21 stsp commit_id_str = optarg;
3679 404c43c4 2018-06-21 stsp break;
3680 66bea077 2018-08-02 stsp case 'r':
3681 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
3682 66bea077 2018-08-02 stsp if (repo_path == NULL)
3683 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3684 9ba1d308 2019-10-21 stsp optarg);
3685 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
3686 66bea077 2018-08-02 stsp break;
3687 404c43c4 2018-06-21 stsp default:
3688 2deda0b9 2019-03-07 stsp usage_blame();
3689 404c43c4 2018-06-21 stsp /* NOTREACHED */
3690 404c43c4 2018-06-21 stsp }
3691 404c43c4 2018-06-21 stsp }
3692 404c43c4 2018-06-21 stsp
3693 404c43c4 2018-06-21 stsp argc -= optind;
3694 404c43c4 2018-06-21 stsp argv += optind;
3695 404c43c4 2018-06-21 stsp
3696 a39318fd 2018-08-02 stsp if (argc == 1)
3697 404c43c4 2018-06-21 stsp path = argv[0];
3698 a39318fd 2018-08-02 stsp else
3699 404c43c4 2018-06-21 stsp usage_blame();
3700 404c43c4 2018-06-21 stsp
3701 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
3702 66bea077 2018-08-02 stsp if (cwd == NULL) {
3703 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3704 66bea077 2018-08-02 stsp goto done;
3705 66bea077 2018-08-02 stsp }
3706 66bea077 2018-08-02 stsp if (repo_path == NULL) {
3707 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
3708 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3709 66bea077 2018-08-02 stsp goto done;
3710 0c06baac 2019-02-05 stsp else
3711 0c06baac 2019-02-05 stsp error = NULL;
3712 0c06baac 2019-02-05 stsp if (worktree) {
3713 0c06baac 2019-02-05 stsp repo_path =
3714 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
3715 1f03b8da 2020-03-20 stsp if (repo_path == NULL) {
3716 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3717 1f03b8da 2020-03-20 stsp if (error)
3718 1f03b8da 2020-03-20 stsp goto done;
3719 1f03b8da 2020-03-20 stsp }
3720 0c06baac 2019-02-05 stsp } else {
3721 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
3722 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
3723 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3724 0c06baac 2019-02-05 stsp goto done;
3725 0c06baac 2019-02-05 stsp }
3726 66bea077 2018-08-02 stsp }
3727 66bea077 2018-08-02 stsp }
3728 36e2fb66 2019-01-04 stsp
3729 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3730 c02c541e 2019-03-29 stsp if (error != NULL)
3731 36e2fb66 2019-01-04 stsp goto done;
3732 66bea077 2018-08-02 stsp
3733 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
3734 c02c541e 2019-03-29 stsp if (error)
3735 404c43c4 2018-06-21 stsp goto done;
3736 404c43c4 2018-06-21 stsp
3737 0c06baac 2019-02-05 stsp if (worktree) {
3738 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
3739 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
3740 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
3741 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
3742 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
3743 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
3744 6efaaa2d 2019-02-05 stsp path) == -1) {
3745 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
3746 0c06baac 2019-02-05 stsp goto done;
3747 0c06baac 2019-02-05 stsp }
3748 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
3749 0c06baac 2019-02-05 stsp free(p);
3750 0c06baac 2019-02-05 stsp } else {
3751 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
3752 0c06baac 2019-02-05 stsp }
3753 0c06baac 2019-02-05 stsp if (error)
3754 66bea077 2018-08-02 stsp goto done;
3755 66bea077 2018-08-02 stsp
3756 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
3757 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
3758 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
3759 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
3760 404c43c4 2018-06-21 stsp if (error != NULL)
3761 66bea077 2018-08-02 stsp goto done;
3762 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
3763 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
3764 404c43c4 2018-06-21 stsp if (error != NULL)
3765 66bea077 2018-08-02 stsp goto done;
3766 404c43c4 2018-06-21 stsp } else {
3767 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
3768 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
3769 30837e32 2019-07-25 stsp if (error)
3770 66bea077 2018-08-02 stsp goto done;
3771 404c43c4 2018-06-21 stsp }
3772 404c43c4 2018-06-21 stsp
3773 28315671 2019-08-14 stsp error = got_object_id_by_path(&obj_id, repo, commit_id, in_repo_path);
3774 28315671 2019-08-14 stsp if (error)
3775 28315671 2019-08-14 stsp goto done;
3776 28315671 2019-08-14 stsp
3777 28315671 2019-08-14 stsp error = got_object_get_type(&obj_type, repo, obj_id);
3778 28315671 2019-08-14 stsp if (error)
3779 28315671 2019-08-14 stsp goto done;
3780 28315671 2019-08-14 stsp
3781 28315671 2019-08-14 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
3782 28315671 2019-08-14 stsp error = got_error(GOT_ERR_OBJ_TYPE);
3783 28315671 2019-08-14 stsp goto done;
3784 28315671 2019-08-14 stsp }
3785 28315671 2019-08-14 stsp
3786 28315671 2019-08-14 stsp error = got_object_open_as_blob(&blob, repo, obj_id, 8192);
3787 28315671 2019-08-14 stsp if (error)
3788 28315671 2019-08-14 stsp goto done;
3789 28315671 2019-08-14 stsp bca.f = got_opentemp();
3790 28315671 2019-08-14 stsp if (bca.f == NULL) {
3791 28315671 2019-08-14 stsp error = got_error_from_errno("got_opentemp");
3792 28315671 2019-08-14 stsp goto done;
3793 28315671 2019-08-14 stsp }
3794 b02560ec 2019-08-19 stsp error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
3795 28315671 2019-08-14 stsp &bca.line_offsets, bca.f, blob);
3796 7ef28ff8 2019-08-14 stsp if (error || bca.nlines == 0)
3797 28315671 2019-08-14 stsp goto done;
3798 28315671 2019-08-14 stsp
3799 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
3800 b02560ec 2019-08-19 stsp if (bca.line_offsets[bca.nlines - 1] == filesize)
3801 b02560ec 2019-08-19 stsp bca.nlines--;
3802 b02560ec 2019-08-19 stsp
3803 28315671 2019-08-14 stsp bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
3804 28315671 2019-08-14 stsp if (bca.lines == NULL) {
3805 28315671 2019-08-14 stsp error = got_error_from_errno("calloc");
3806 28315671 2019-08-14 stsp goto done;
3807 28315671 2019-08-14 stsp }
3808 28315671 2019-08-14 stsp bca.lineno_cur = 1;
3809 7ef28ff8 2019-08-14 stsp bca.nlines_prec = 0;
3810 7ef28ff8 2019-08-14 stsp i = bca.nlines;
3811 7ef28ff8 2019-08-14 stsp while (i > 0) {
3812 7ef28ff8 2019-08-14 stsp i /= 10;
3813 7ef28ff8 2019-08-14 stsp bca.nlines_prec++;
3814 7ef28ff8 2019-08-14 stsp }
3815 82f6abb8 2019-08-14 stsp bca.repo = repo;
3816 7ef28ff8 2019-08-14 stsp
3817 6fb7cd11 2019-08-22 stsp error = got_blame(in_repo_path, commit_id, repo, blame_cb, &bca,
3818 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
3819 404c43c4 2018-06-21 stsp done:
3820 66bea077 2018-08-02 stsp free(in_repo_path);
3821 66bea077 2018-08-02 stsp free(repo_path);
3822 66bea077 2018-08-02 stsp free(cwd);
3823 404c43c4 2018-06-21 stsp free(commit_id);
3824 28315671 2019-08-14 stsp free(obj_id);
3825 28315671 2019-08-14 stsp if (blob)
3826 28315671 2019-08-14 stsp got_object_blob_close(blob);
3827 0c06baac 2019-02-05 stsp if (worktree)
3828 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
3829 ad242220 2018-09-08 stsp if (repo) {
3830 ad242220 2018-09-08 stsp const struct got_error *repo_error;
3831 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
3832 ad242220 2018-09-08 stsp if (error == NULL)
3833 ad242220 2018-09-08 stsp error = repo_error;
3834 ad242220 2018-09-08 stsp }
3835 3affba96 2019-09-22 stsp if (bca.lines) {
3836 3affba96 2019-09-22 stsp for (i = 0; i < bca.nlines; i++) {
3837 3affba96 2019-09-22 stsp struct blame_line *bline = &bca.lines[i];
3838 3affba96 2019-09-22 stsp free(bline->id_str);
3839 3affba96 2019-09-22 stsp free(bline->committer);
3840 3affba96 2019-09-22 stsp }
3841 3affba96 2019-09-22 stsp free(bca.lines);
3842 28315671 2019-08-14 stsp }
3843 28315671 2019-08-14 stsp free(bca.line_offsets);
3844 28315671 2019-08-14 stsp if (bca.f && fclose(bca.f) == EOF && error == NULL)
3845 28315671 2019-08-14 stsp error = got_error_from_errno("fclose");
3846 404c43c4 2018-06-21 stsp return error;
3847 5de5890b 2018-10-18 stsp }
3848 5de5890b 2018-10-18 stsp
3849 5de5890b 2018-10-18 stsp __dead static void
3850 5de5890b 2018-10-18 stsp usage_tree(void)
3851 5de5890b 2018-10-18 stsp {
3852 c1669e2e 2019-01-09 stsp fprintf(stderr,
3853 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
3854 5de5890b 2018-10-18 stsp getprogname());
3855 5de5890b 2018-10-18 stsp exit(1);
3856 5de5890b 2018-10-18 stsp }
3857 5de5890b 2018-10-18 stsp
3858 c1669e2e 2019-01-09 stsp static void
3859 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
3860 c1669e2e 2019-01-09 stsp const char *root_path)
3861 c1669e2e 2019-01-09 stsp {
3862 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
3863 848d6979 2019-08-12 stsp const char *modestr = "";
3864 56e0773d 2019-11-28 stsp mode_t mode = got_tree_entry_get_mode(te);
3865 5de5890b 2018-10-18 stsp
3866 c1669e2e 2019-01-09 stsp path += strlen(root_path);
3867 c1669e2e 2019-01-09 stsp while (path[0] == '/')
3868 c1669e2e 2019-01-09 stsp path++;
3869 c1669e2e 2019-01-09 stsp
3870 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
3871 63c5ca5d 2019-08-24 stsp modestr = "$";
3872 56e0773d 2019-11-28 stsp else if (S_ISLNK(mode))
3873 848d6979 2019-08-12 stsp modestr = "@";
3874 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
3875 848d6979 2019-08-12 stsp modestr = "/";
3876 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
3877 848d6979 2019-08-12 stsp modestr = "*";
3878 848d6979 2019-08-12 stsp
3879 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
3880 56e0773d 2019-11-28 stsp is_root_path ? "" : "/", got_tree_entry_get_name(te), modestr);
3881 c1669e2e 2019-01-09 stsp }
3882 c1669e2e 2019-01-09 stsp
3883 5de5890b 2018-10-18 stsp static const struct got_error *
3884 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
3885 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
3886 c1669e2e 2019-01-09 stsp struct got_repository *repo)
3887 5de5890b 2018-10-18 stsp {
3888 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
3889 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
3890 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
3891 56e0773d 2019-11-28 stsp int nentries, i;
3892 5de5890b 2018-10-18 stsp
3893 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
3894 5de5890b 2018-10-18 stsp if (err)
3895 5de5890b 2018-10-18 stsp goto done;
3896 5de5890b 2018-10-18 stsp
3897 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
3898 5de5890b 2018-10-18 stsp if (err)
3899 5de5890b 2018-10-18 stsp goto done;
3900 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
3901 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
3902 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
3903 5de5890b 2018-10-18 stsp char *id = NULL;
3904 84453469 2018-11-11 stsp
3905 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
3906 84453469 2018-11-11 stsp break;
3907 84453469 2018-11-11 stsp
3908 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
3909 5de5890b 2018-10-18 stsp if (show_ids) {
3910 5de5890b 2018-10-18 stsp char *id_str;
3911 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
3912 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
3913 5de5890b 2018-10-18 stsp if (err)
3914 5de5890b 2018-10-18 stsp goto done;
3915 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
3916 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3917 5de5890b 2018-10-18 stsp free(id_str);
3918 5de5890b 2018-10-18 stsp goto done;
3919 5de5890b 2018-10-18 stsp }
3920 5de5890b 2018-10-18 stsp free(id_str);
3921 5de5890b 2018-10-18 stsp }
3922 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
3923 5de5890b 2018-10-18 stsp free(id);
3924 c1669e2e 2019-01-09 stsp
3925 56e0773d 2019-11-28 stsp if (recurse && S_ISDIR(got_tree_entry_get_mode(te))) {
3926 c1669e2e 2019-01-09 stsp char *child_path;
3927 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
3928 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
3929 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te)) == -1) {
3930 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3931 c1669e2e 2019-01-09 stsp goto done;
3932 c1669e2e 2019-01-09 stsp }
3933 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
3934 c1669e2e 2019-01-09 stsp root_path, repo);
3935 c1669e2e 2019-01-09 stsp free(child_path);
3936 c1669e2e 2019-01-09 stsp if (err)
3937 c1669e2e 2019-01-09 stsp goto done;
3938 c1669e2e 2019-01-09 stsp }
3939 5de5890b 2018-10-18 stsp }
3940 5de5890b 2018-10-18 stsp done:
3941 5de5890b 2018-10-18 stsp if (tree)
3942 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
3943 5de5890b 2018-10-18 stsp free(tree_id);
3944 5de5890b 2018-10-18 stsp return err;
3945 404c43c4 2018-06-21 stsp }
3946 404c43c4 2018-06-21 stsp
3947 5de5890b 2018-10-18 stsp static const struct got_error *
3948 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
3949 5de5890b 2018-10-18 stsp {
3950 5de5890b 2018-10-18 stsp const struct got_error *error;
3951 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
3952 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
3953 7a2c19d6 2019-02-05 stsp const char *path;
3954 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
3955 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
3956 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
3957 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
3958 5de5890b 2018-10-18 stsp int ch;
3959 5de5890b 2018-10-18 stsp
3960 5de5890b 2018-10-18 stsp #ifndef PROFILE
3961 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3962 0f8d269b 2019-01-04 stsp NULL) == -1)
3963 5de5890b 2018-10-18 stsp err(1, "pledge");
3964 5de5890b 2018-10-18 stsp #endif
3965 5de5890b 2018-10-18 stsp
3966 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
3967 5de5890b 2018-10-18 stsp switch (ch) {
3968 5de5890b 2018-10-18 stsp case 'c':
3969 5de5890b 2018-10-18 stsp commit_id_str = optarg;
3970 5de5890b 2018-10-18 stsp break;
3971 5de5890b 2018-10-18 stsp case 'r':
3972 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
3973 5de5890b 2018-10-18 stsp if (repo_path == NULL)
3974 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3975 9ba1d308 2019-10-21 stsp optarg);
3976 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
3977 5de5890b 2018-10-18 stsp break;
3978 5de5890b 2018-10-18 stsp case 'i':
3979 5de5890b 2018-10-18 stsp show_ids = 1;
3980 5de5890b 2018-10-18 stsp break;
3981 c1669e2e 2019-01-09 stsp case 'R':
3982 c1669e2e 2019-01-09 stsp recurse = 1;
3983 c1669e2e 2019-01-09 stsp break;
3984 5de5890b 2018-10-18 stsp default:
3985 2deda0b9 2019-03-07 stsp usage_tree();
3986 5de5890b 2018-10-18 stsp /* NOTREACHED */
3987 5de5890b 2018-10-18 stsp }
3988 5de5890b 2018-10-18 stsp }
3989 5de5890b 2018-10-18 stsp
3990 5de5890b 2018-10-18 stsp argc -= optind;
3991 5de5890b 2018-10-18 stsp argv += optind;
3992 5de5890b 2018-10-18 stsp
3993 5de5890b 2018-10-18 stsp if (argc == 1)
3994 5de5890b 2018-10-18 stsp path = argv[0];
3995 5de5890b 2018-10-18 stsp else if (argc > 1)
3996 5de5890b 2018-10-18 stsp usage_tree();
3997 5de5890b 2018-10-18 stsp else
3998 7a2c19d6 2019-02-05 stsp path = NULL;
3999 7a2c19d6 2019-02-05 stsp
4000 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
4001 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
4002 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4003 9bf7a39b 2019-02-05 stsp goto done;
4004 9bf7a39b 2019-02-05 stsp }
4005 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
4006 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
4007 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4008 7a2c19d6 2019-02-05 stsp goto done;
4009 7a2c19d6 2019-02-05 stsp else
4010 7a2c19d6 2019-02-05 stsp error = NULL;
4011 7a2c19d6 2019-02-05 stsp if (worktree) {
4012 7a2c19d6 2019-02-05 stsp repo_path =
4013 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
4014 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
4015 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4016 7a2c19d6 2019-02-05 stsp if (error)
4017 7a2c19d6 2019-02-05 stsp goto done;
4018 7a2c19d6 2019-02-05 stsp } else {
4019 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
4020 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
4021 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4022 7a2c19d6 2019-02-05 stsp goto done;
4023 7a2c19d6 2019-02-05 stsp }
4024 5de5890b 2018-10-18 stsp }
4025 5de5890b 2018-10-18 stsp }
4026 5de5890b 2018-10-18 stsp
4027 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4028 5de5890b 2018-10-18 stsp if (error != NULL)
4029 c02c541e 2019-03-29 stsp goto done;
4030 c02c541e 2019-03-29 stsp
4031 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4032 c02c541e 2019-03-29 stsp if (error)
4033 5de5890b 2018-10-18 stsp goto done;
4034 5de5890b 2018-10-18 stsp
4035 9bf7a39b 2019-02-05 stsp if (path == NULL) {
4036 9bf7a39b 2019-02-05 stsp if (worktree) {
4037 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
4038 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
4039 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
4040 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
4041 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
4042 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
4043 9bf7a39b 2019-02-05 stsp goto done;
4044 9bf7a39b 2019-02-05 stsp }
4045 f43793a4 2020-01-27 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
4046 9bf7a39b 2019-02-05 stsp free(p);
4047 9bf7a39b 2019-02-05 stsp if (error)
4048 9bf7a39b 2019-02-05 stsp goto done;
4049 9bf7a39b 2019-02-05 stsp } else
4050 9bf7a39b 2019-02-05 stsp path = "/";
4051 9bf7a39b 2019-02-05 stsp }
4052 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
4053 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
4054 9bf7a39b 2019-02-05 stsp if (error != NULL)
4055 9bf7a39b 2019-02-05 stsp goto done;
4056 9bf7a39b 2019-02-05 stsp }
4057 5de5890b 2018-10-18 stsp
4058 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
4059 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
4060 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
4061 5de5890b 2018-10-18 stsp if (error != NULL)
4062 5de5890b 2018-10-18 stsp goto done;
4063 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
4064 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
4065 5de5890b 2018-10-18 stsp if (error != NULL)
4066 5de5890b 2018-10-18 stsp goto done;
4067 5de5890b 2018-10-18 stsp } else {
4068 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
4069 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
4070 30837e32 2019-07-25 stsp if (error)
4071 5de5890b 2018-10-18 stsp goto done;
4072 5de5890b 2018-10-18 stsp }
4073 5de5890b 2018-10-18 stsp
4074 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
4075 c1669e2e 2019-01-09 stsp in_repo_path, repo);
4076 5de5890b 2018-10-18 stsp done:
4077 5de5890b 2018-10-18 stsp free(in_repo_path);
4078 5de5890b 2018-10-18 stsp free(repo_path);
4079 5de5890b 2018-10-18 stsp free(cwd);
4080 5de5890b 2018-10-18 stsp free(commit_id);
4081 7a2c19d6 2019-02-05 stsp if (worktree)
4082 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
4083 5de5890b 2018-10-18 stsp if (repo) {
4084 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
4085 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
4086 5de5890b 2018-10-18 stsp if (error == NULL)
4087 5de5890b 2018-10-18 stsp error = repo_error;
4088 5de5890b 2018-10-18 stsp }
4089 5de5890b 2018-10-18 stsp return error;
4090 5de5890b 2018-10-18 stsp }
4091 5de5890b 2018-10-18 stsp
4092 6bad629b 2019-02-04 stsp __dead static void
4093 6bad629b 2019-02-04 stsp usage_status(void)
4094 6bad629b 2019-02-04 stsp {
4095 72ea6654 2019-07-27 stsp fprintf(stderr, "usage: %s status [path ...]\n", getprogname());
4096 6bad629b 2019-02-04 stsp exit(1);
4097 6bad629b 2019-02-04 stsp }
4098 5c860e29 2018-03-12 stsp
4099 b72f483a 2019-02-05 stsp static const struct got_error *
4100 88d0e355 2019-08-03 stsp print_status(void *arg, unsigned char status, unsigned char staged_status,
4101 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
4102 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4103 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
4104 6bad629b 2019-02-04 stsp {
4105 244725f2 2019-08-03 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
4106 c363b2c1 2019-08-03 stsp status = GOT_STATUS_NO_CHANGE;
4107 88d0e355 2019-08-03 stsp printf("%c%c %s\n", status, staged_status, path);
4108 b72f483a 2019-02-05 stsp return NULL;
4109 6bad629b 2019-02-04 stsp }
4110 5c860e29 2018-03-12 stsp
4111 6bad629b 2019-02-04 stsp static const struct got_error *
4112 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
4113 6bad629b 2019-02-04 stsp {
4114 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
4115 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
4116 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
4117 f86a1bf5 2019-07-27 stsp char *cwd = NULL;
4118 72ea6654 2019-07-27 stsp struct got_pathlist_head paths;
4119 a5edda0a 2019-07-27 stsp struct got_pathlist_entry *pe;
4120 a5edda0a 2019-07-27 stsp int ch;
4121 5c860e29 2018-03-12 stsp
4122 72ea6654 2019-07-27 stsp TAILQ_INIT(&paths);
4123 72ea6654 2019-07-27 stsp
4124 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
4125 6bad629b 2019-02-04 stsp switch (ch) {
4126 5c860e29 2018-03-12 stsp default:
4127 2deda0b9 2019-03-07 stsp usage_status();
4128 6bad629b 2019-02-04 stsp /* NOTREACHED */
4129 5c860e29 2018-03-12 stsp }
4130 5c860e29 2018-03-12 stsp }
4131 5c860e29 2018-03-12 stsp
4132 6bad629b 2019-02-04 stsp argc -= optind;
4133 6bad629b 2019-02-04 stsp argv += optind;
4134 5c860e29 2018-03-12 stsp
4135 6bad629b 2019-02-04 stsp #ifndef PROFILE
4136 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4137 6bad629b 2019-02-04 stsp NULL) == -1)
4138 6bad629b 2019-02-04 stsp err(1, "pledge");
4139 f42b1b34 2018-03-12 stsp #endif
4140 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
4141 927df6b7 2019-02-10 stsp if (cwd == NULL) {
4142 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4143 927df6b7 2019-02-10 stsp goto done;
4144 927df6b7 2019-02-10 stsp }
4145 927df6b7 2019-02-10 stsp
4146 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
4147 927df6b7 2019-02-10 stsp if (error != NULL)
4148 a5edda0a 2019-07-27 stsp goto done;
4149 6bad629b 2019-02-04 stsp
4150 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4151 c9956ddf 2019-09-08 stsp NULL);
4152 6bad629b 2019-02-04 stsp if (error != NULL)
4153 6bad629b 2019-02-04 stsp goto done;
4154 6bad629b 2019-02-04 stsp
4155 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4156 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4157 087fb88c 2019-08-04 stsp if (error)
4158 087fb88c 2019-08-04 stsp goto done;
4159 087fb88c 2019-08-04 stsp
4160 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4161 6bad629b 2019-02-04 stsp if (error)
4162 6bad629b 2019-02-04 stsp goto done;
4163 6bad629b 2019-02-04 stsp
4164 72ea6654 2019-07-27 stsp error = got_worktree_status(worktree, &paths, repo, print_status, NULL,
4165 6bad629b 2019-02-04 stsp check_cancelled, NULL);
4166 6bad629b 2019-02-04 stsp done:
4167 a5edda0a 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
4168 a5edda0a 2019-07-27 stsp free((char *)pe->path);
4169 72ea6654 2019-07-27 stsp got_pathlist_free(&paths);
4170 927df6b7 2019-02-10 stsp free(cwd);
4171 d0eebce4 2019-03-11 stsp return error;
4172 d0eebce4 2019-03-11 stsp }
4173 d0eebce4 2019-03-11 stsp
4174 d0eebce4 2019-03-11 stsp __dead static void
4175 d0eebce4 2019-03-11 stsp usage_ref(void)
4176 d0eebce4 2019-03-11 stsp {
4177 d0eebce4 2019-03-11 stsp fprintf(stderr,
4178 d1c1ae5f 2019-08-12 stsp "usage: %s ref [-r repository] -l | -d name | [-s] name target\n",
4179 d0eebce4 2019-03-11 stsp getprogname());
4180 d0eebce4 2019-03-11 stsp exit(1);
4181 d0eebce4 2019-03-11 stsp }
4182 d0eebce4 2019-03-11 stsp
4183 d0eebce4 2019-03-11 stsp static const struct got_error *
4184 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
4185 d0eebce4 2019-03-11 stsp {
4186 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
4187 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
4188 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
4189 d0eebce4 2019-03-11 stsp
4190 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
4191 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
4192 d0eebce4 2019-03-11 stsp if (err)
4193 d0eebce4 2019-03-11 stsp return err;
4194 d0eebce4 2019-03-11 stsp
4195 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
4196 d0eebce4 2019-03-11 stsp char *refstr;
4197 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
4198 d0eebce4 2019-03-11 stsp if (refstr == NULL)
4199 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
4200 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
4201 d0eebce4 2019-03-11 stsp free(refstr);
4202 d0eebce4 2019-03-11 stsp }
4203 d0eebce4 2019-03-11 stsp
4204 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
4205 d0eebce4 2019-03-11 stsp return NULL;
4206 d0eebce4 2019-03-11 stsp }
4207 d0eebce4 2019-03-11 stsp
4208 d0eebce4 2019-03-11 stsp static const struct got_error *
4209 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
4210 d0eebce4 2019-03-11 stsp {
4211 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
4212 d0eebce4 2019-03-11 stsp struct got_reference *ref;
4213 d0eebce4 2019-03-11 stsp
4214 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
4215 d0eebce4 2019-03-11 stsp if (err)
4216 d0eebce4 2019-03-11 stsp return err;
4217 d0eebce4 2019-03-11 stsp
4218 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
4219 d0eebce4 2019-03-11 stsp got_ref_close(ref);
4220 d0eebce4 2019-03-11 stsp return err;
4221 d0eebce4 2019-03-11 stsp }
4222 d0eebce4 2019-03-11 stsp
4223 d0eebce4 2019-03-11 stsp static const struct got_error *
4224 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
4225 d0eebce4 2019-03-11 stsp {
4226 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
4227 d0eebce4 2019-03-11 stsp struct got_object_id *id;
4228 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
4229 d1644381 2019-07-14 stsp
4230 d1644381 2019-07-14 stsp /*
4231 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
4232 d1644381 2019-07-14 stsp * While technically a valid reference name, this case is usually
4233 d1644381 2019-07-14 stsp * an unintended typo.
4234 d1644381 2019-07-14 stsp */
4235 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
4236 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
4237 d0eebce4 2019-03-11 stsp
4238 dd88155e 2019-06-29 stsp err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
4239 dd88155e 2019-06-29 stsp repo);
4240 d83d9d5c 2019-05-13 stsp if (err) {
4241 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
4242 d0eebce4 2019-03-11 stsp
4243 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
4244 d83d9d5c 2019-05-13 stsp return err;
4245 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
4246 d83d9d5c 2019-05-13 stsp if (err)
4247 d83d9d5c 2019-05-13 stsp return err;
4248 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
4249 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
4250 d83d9d5c 2019-05-13 stsp if (err)
4251 d83d9d5c 2019-05-13 stsp return err;
4252 d83d9d5c 2019-05-13 stsp }
4253 d83d9d5c 2019-05-13 stsp
4254 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
4255 d0eebce4 2019-03-11 stsp if (err)
4256 d0eebce4 2019-03-11 stsp goto done;
4257 d0eebce4 2019-03-11 stsp
4258 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
4259 d0eebce4 2019-03-11 stsp done:
4260 d0eebce4 2019-03-11 stsp if (ref)
4261 d0eebce4 2019-03-11 stsp got_ref_close(ref);
4262 d0eebce4 2019-03-11 stsp free(id);
4263 d1c1ae5f 2019-08-12 stsp return err;
4264 d1c1ae5f 2019-08-12 stsp }
4265 d1c1ae5f 2019-08-12 stsp
4266 d1c1ae5f 2019-08-12 stsp static const struct got_error *
4267 d1c1ae5f 2019-08-12 stsp add_symref(struct got_repository *repo, const char *refname, const char *target)
4268 d1c1ae5f 2019-08-12 stsp {
4269 d1c1ae5f 2019-08-12 stsp const struct got_error *err = NULL;
4270 d1c1ae5f 2019-08-12 stsp struct got_reference *ref = NULL;
4271 d1c1ae5f 2019-08-12 stsp struct got_reference *target_ref = NULL;
4272 d1c1ae5f 2019-08-12 stsp
4273 d1c1ae5f 2019-08-12 stsp /*
4274 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
4275 d1c1ae5f 2019-08-12 stsp * While technically a valid reference name, this case is usually
4276 d1c1ae5f 2019-08-12 stsp * an unintended typo.
4277 d1c1ae5f 2019-08-12 stsp */
4278 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
4279 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
4280 d1c1ae5f 2019-08-12 stsp
4281 d1c1ae5f 2019-08-12 stsp err = got_ref_open(&target_ref, repo, target, 0);
4282 d1c1ae5f 2019-08-12 stsp if (err)
4283 d1c1ae5f 2019-08-12 stsp return err;
4284 d1c1ae5f 2019-08-12 stsp
4285 d1c1ae5f 2019-08-12 stsp err = got_ref_alloc_symref(&ref, refname, target_ref);
4286 d1c1ae5f 2019-08-12 stsp if (err)
4287 d1c1ae5f 2019-08-12 stsp goto done;
4288 d1c1ae5f 2019-08-12 stsp
4289 d1c1ae5f 2019-08-12 stsp err = got_ref_write(ref, repo);
4290 d1c1ae5f 2019-08-12 stsp done:
4291 d1c1ae5f 2019-08-12 stsp if (target_ref)
4292 d1c1ae5f 2019-08-12 stsp got_ref_close(target_ref);
4293 d1c1ae5f 2019-08-12 stsp if (ref)
4294 d1c1ae5f 2019-08-12 stsp got_ref_close(ref);
4295 d0eebce4 2019-03-11 stsp return err;
4296 d0eebce4 2019-03-11 stsp }
4297 d0eebce4 2019-03-11 stsp
4298 d0eebce4 2019-03-11 stsp static const struct got_error *
4299 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
4300 d0eebce4 2019-03-11 stsp {
4301 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
4302 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
4303 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
4304 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
4305 d1c1ae5f 2019-08-12 stsp int ch, do_list = 0, create_symref = 0;
4306 d0eebce4 2019-03-11 stsp const char *delref = NULL;
4307 d0eebce4 2019-03-11 stsp
4308 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
4309 d1c1ae5f 2019-08-12 stsp while ((ch = getopt(argc, argv, "d:r:ls")) != -1) {
4310 d0eebce4 2019-03-11 stsp switch (ch) {
4311 d0eebce4 2019-03-11 stsp case 'd':
4312 d0eebce4 2019-03-11 stsp delref = optarg;
4313 d0eebce4 2019-03-11 stsp break;
4314 d0eebce4 2019-03-11 stsp case 'r':
4315 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
4316 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
4317 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4318 9ba1d308 2019-10-21 stsp optarg);
4319 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
4320 d0eebce4 2019-03-11 stsp break;
4321 d0eebce4 2019-03-11 stsp case 'l':
4322 d0eebce4 2019-03-11 stsp do_list = 1;
4323 d1c1ae5f 2019-08-12 stsp break;
4324 d1c1ae5f 2019-08-12 stsp case 's':
4325 d1c1ae5f 2019-08-12 stsp create_symref = 1;
4326 d0eebce4 2019-03-11 stsp break;
4327 d0eebce4 2019-03-11 stsp default:
4328 d0eebce4 2019-03-11 stsp usage_ref();
4329 d0eebce4 2019-03-11 stsp /* NOTREACHED */
4330 d0eebce4 2019-03-11 stsp }
4331 d0eebce4 2019-03-11 stsp }
4332 d0eebce4 2019-03-11 stsp
4333 d0eebce4 2019-03-11 stsp if (do_list && delref)
4334 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
4335 d0eebce4 2019-03-11 stsp
4336 d0eebce4 2019-03-11 stsp argc -= optind;
4337 d0eebce4 2019-03-11 stsp argv += optind;
4338 d0eebce4 2019-03-11 stsp
4339 d0eebce4 2019-03-11 stsp if (do_list || delref) {
4340 d1c1ae5f 2019-08-12 stsp if (create_symref)
4341 d1c1ae5f 2019-08-12 stsp errx(1, "-s option cannot be used together with the "
4342 d1c1ae5f 2019-08-12 stsp "-l or -d options");
4343 d0eebce4 2019-03-11 stsp if (argc > 0)
4344 d0eebce4 2019-03-11 stsp usage_ref();
4345 d0eebce4 2019-03-11 stsp } else if (argc != 2)
4346 d0eebce4 2019-03-11 stsp usage_ref();
4347 d0eebce4 2019-03-11 stsp
4348 d0eebce4 2019-03-11 stsp #ifndef PROFILE
4349 e0b57350 2019-03-12 stsp if (do_list) {
4350 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
4351 e0b57350 2019-03-12 stsp NULL) == -1)
4352 e0b57350 2019-03-12 stsp err(1, "pledge");
4353 e0b57350 2019-03-12 stsp } else {
4354 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
4355 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
4356 e0b57350 2019-03-12 stsp err(1, "pledge");
4357 e0b57350 2019-03-12 stsp }
4358 d0eebce4 2019-03-11 stsp #endif
4359 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
4360 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
4361 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4362 d0eebce4 2019-03-11 stsp goto done;
4363 d0eebce4 2019-03-11 stsp }
4364 d0eebce4 2019-03-11 stsp
4365 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
4366 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
4367 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4368 d0eebce4 2019-03-11 stsp goto done;
4369 d0eebce4 2019-03-11 stsp else
4370 d0eebce4 2019-03-11 stsp error = NULL;
4371 d0eebce4 2019-03-11 stsp if (worktree) {
4372 d0eebce4 2019-03-11 stsp repo_path =
4373 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
4374 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
4375 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4376 d0eebce4 2019-03-11 stsp if (error)
4377 d0eebce4 2019-03-11 stsp goto done;
4378 d0eebce4 2019-03-11 stsp } else {
4379 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
4380 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
4381 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4382 d0eebce4 2019-03-11 stsp goto done;
4383 d0eebce4 2019-03-11 stsp }
4384 d0eebce4 2019-03-11 stsp }
4385 d0eebce4 2019-03-11 stsp }
4386 d0eebce4 2019-03-11 stsp
4387 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4388 d0eebce4 2019-03-11 stsp if (error != NULL)
4389 d0eebce4 2019-03-11 stsp goto done;
4390 d0eebce4 2019-03-11 stsp
4391 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
4392 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4393 c02c541e 2019-03-29 stsp if (error)
4394 c02c541e 2019-03-29 stsp goto done;
4395 c02c541e 2019-03-29 stsp
4396 d0eebce4 2019-03-11 stsp if (do_list)
4397 d0eebce4 2019-03-11 stsp error = list_refs(repo);
4398 d0eebce4 2019-03-11 stsp else if (delref)
4399 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
4400 d1c1ae5f 2019-08-12 stsp else if (create_symref)
4401 d1c1ae5f 2019-08-12 stsp error = add_symref(repo, argv[0], argv[1]);
4402 d0eebce4 2019-03-11 stsp else
4403 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
4404 4e759de4 2019-06-26 stsp done:
4405 4e759de4 2019-06-26 stsp if (repo)
4406 4e759de4 2019-06-26 stsp got_repo_close(repo);
4407 4e759de4 2019-06-26 stsp if (worktree)
4408 4e759de4 2019-06-26 stsp got_worktree_close(worktree);
4409 4e759de4 2019-06-26 stsp free(cwd);
4410 4e759de4 2019-06-26 stsp free(repo_path);
4411 4e759de4 2019-06-26 stsp return error;
4412 4e759de4 2019-06-26 stsp }
4413 4e759de4 2019-06-26 stsp
4414 4e759de4 2019-06-26 stsp __dead static void
4415 4e759de4 2019-06-26 stsp usage_branch(void)
4416 4e759de4 2019-06-26 stsp {
4417 4e759de4 2019-06-26 stsp fprintf(stderr,
4418 da76fce2 2020-02-24 stsp "usage: %s branch [-c commit] [-d] [-r repository] [-l] [-n] "
4419 da76fce2 2020-02-24 stsp "[name]\n", getprogname());
4420 4e759de4 2019-06-26 stsp exit(1);
4421 4e759de4 2019-06-26 stsp }
4422 4e759de4 2019-06-26 stsp
4423 4e759de4 2019-06-26 stsp static const struct got_error *
4424 4e99b47e 2019-10-04 stsp list_branch(struct got_repository *repo, struct got_worktree *worktree,
4425 4e99b47e 2019-10-04 stsp struct got_reference *ref)
4426 4e99b47e 2019-10-04 stsp {
4427 4e99b47e 2019-10-04 stsp const struct got_error *err = NULL;
4428 4e99b47e 2019-10-04 stsp const char *refname, *marker = " ";
4429 4e99b47e 2019-10-04 stsp char *refstr;
4430 4e99b47e 2019-10-04 stsp
4431 4e99b47e 2019-10-04 stsp refname = got_ref_get_name(ref);
4432 4e99b47e 2019-10-04 stsp if (worktree && strcmp(refname,
4433 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree)) == 0) {
4434 4e99b47e 2019-10-04 stsp struct got_object_id *id = NULL;
4435 4e99b47e 2019-10-04 stsp
4436 4e99b47e 2019-10-04 stsp err = got_ref_resolve(&id, repo, ref);
4437 4e99b47e 2019-10-04 stsp if (err)
4438 4e99b47e 2019-10-04 stsp return err;
4439 4e99b47e 2019-10-04 stsp if (got_object_id_cmp(id,
4440 4e99b47e 2019-10-04 stsp got_worktree_get_base_commit_id(worktree)) == 0)
4441 4e99b47e 2019-10-04 stsp marker = "* ";
4442 4e99b47e 2019-10-04 stsp else
4443 4e99b47e 2019-10-04 stsp marker = "~ ";
4444 4e99b47e 2019-10-04 stsp free(id);
4445 4e99b47e 2019-10-04 stsp }
4446 4e99b47e 2019-10-04 stsp
4447 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
4448 4e99b47e 2019-10-04 stsp refname += 11;
4449 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
4450 4e99b47e 2019-10-04 stsp refname += 18;
4451 4e99b47e 2019-10-04 stsp
4452 4e99b47e 2019-10-04 stsp refstr = got_ref_to_str(ref);
4453 4e99b47e 2019-10-04 stsp if (refstr == NULL)
4454 4e99b47e 2019-10-04 stsp return got_error_from_errno("got_ref_to_str");
4455 4e99b47e 2019-10-04 stsp
4456 4e99b47e 2019-10-04 stsp printf("%s%s: %s\n", marker, refname, refstr);
4457 4e99b47e 2019-10-04 stsp free(refstr);
4458 4e99b47e 2019-10-04 stsp return NULL;
4459 4e99b47e 2019-10-04 stsp }
4460 4e99b47e 2019-10-04 stsp
4461 4e99b47e 2019-10-04 stsp static const struct got_error *
4462 ad89fa31 2019-10-04 stsp show_current_branch(struct got_repository *repo, struct got_worktree *worktree)
4463 ad89fa31 2019-10-04 stsp {
4464 ad89fa31 2019-10-04 stsp const char *refname;
4465 ad89fa31 2019-10-04 stsp
4466 ad89fa31 2019-10-04 stsp if (worktree == NULL)
4467 ad89fa31 2019-10-04 stsp return got_error(GOT_ERR_NOT_WORKTREE);
4468 ad89fa31 2019-10-04 stsp
4469 ad89fa31 2019-10-04 stsp refname = got_worktree_get_head_ref_name(worktree);
4470 ad89fa31 2019-10-04 stsp
4471 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
4472 ad89fa31 2019-10-04 stsp refname += 11;
4473 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
4474 ad89fa31 2019-10-04 stsp refname += 18;
4475 ad89fa31 2019-10-04 stsp
4476 ad89fa31 2019-10-04 stsp printf("%s\n", refname);
4477 ad89fa31 2019-10-04 stsp
4478 ad89fa31 2019-10-04 stsp return NULL;
4479 ad89fa31 2019-10-04 stsp }
4480 ad89fa31 2019-10-04 stsp
4481 ad89fa31 2019-10-04 stsp static const struct got_error *
4482 ba882ee3 2019-07-11 stsp list_branches(struct got_repository *repo, struct got_worktree *worktree)
4483 4e759de4 2019-06-26 stsp {
4484 4e759de4 2019-06-26 stsp static const struct got_error *err = NULL;
4485 4e759de4 2019-06-26 stsp struct got_reflist_head refs;
4486 4e759de4 2019-06-26 stsp struct got_reflist_entry *re;
4487 4e99b47e 2019-10-04 stsp struct got_reference *temp_ref = NULL;
4488 4e99b47e 2019-10-04 stsp int rebase_in_progress, histedit_in_progress;
4489 4e759de4 2019-06-26 stsp
4490 4e759de4 2019-06-26 stsp SIMPLEQ_INIT(&refs);
4491 ba882ee3 2019-07-11 stsp
4492 4e99b47e 2019-10-04 stsp if (worktree) {
4493 4e99b47e 2019-10-04 stsp err = got_worktree_rebase_in_progress(&rebase_in_progress,
4494 4e99b47e 2019-10-04 stsp worktree);
4495 4e99b47e 2019-10-04 stsp if (err)
4496 4e99b47e 2019-10-04 stsp return err;
4497 4e99b47e 2019-10-04 stsp
4498 4e99b47e 2019-10-04 stsp err = got_worktree_histedit_in_progress(&histedit_in_progress,
4499 4e99b47e 2019-10-04 stsp worktree);
4500 4e99b47e 2019-10-04 stsp if (err)
4501 4e99b47e 2019-10-04 stsp return err;
4502 4e99b47e 2019-10-04 stsp
4503 4e99b47e 2019-10-04 stsp if (rebase_in_progress || histedit_in_progress) {
4504 4e99b47e 2019-10-04 stsp err = got_ref_open(&temp_ref, repo,
4505 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree), 0);
4506 4e99b47e 2019-10-04 stsp if (err)
4507 4e99b47e 2019-10-04 stsp return err;
4508 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, temp_ref);
4509 4e99b47e 2019-10-04 stsp got_ref_close(temp_ref);
4510 4e99b47e 2019-10-04 stsp }
4511 4e99b47e 2019-10-04 stsp }
4512 4e99b47e 2019-10-04 stsp
4513 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, "refs/heads",
4514 b8bad2ba 2019-08-23 stsp got_ref_cmp_by_name, NULL);
4515 4e759de4 2019-06-26 stsp if (err)
4516 4e759de4 2019-06-26 stsp return err;
4517 4e759de4 2019-06-26 stsp
4518 4e99b47e 2019-10-04 stsp SIMPLEQ_FOREACH(re, &refs, entry)
4519 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, re->ref);
4520 4e759de4 2019-06-26 stsp
4521 4e759de4 2019-06-26 stsp got_ref_list_free(&refs);
4522 4e759de4 2019-06-26 stsp return NULL;
4523 4e759de4 2019-06-26 stsp }
4524 4e759de4 2019-06-26 stsp
4525 4e759de4 2019-06-26 stsp static const struct got_error *
4526 45cd4e47 2019-08-25 stsp delete_branch(struct got_repository *repo, struct got_worktree *worktree,
4527 45cd4e47 2019-08-25 stsp const char *branch_name)
4528 4e759de4 2019-06-26 stsp {
4529 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
4530 45cd4e47 2019-08-25 stsp struct got_reference *ref = NULL;
4531 4e759de4 2019-06-26 stsp char *refname;
4532 4e759de4 2019-06-26 stsp
4533 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
4534 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
4535 4e759de4 2019-06-26 stsp
4536 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
4537 4e759de4 2019-06-26 stsp if (err)
4538 4e759de4 2019-06-26 stsp goto done;
4539 4e759de4 2019-06-26 stsp
4540 45cd4e47 2019-08-25 stsp if (worktree &&
4541 45cd4e47 2019-08-25 stsp strcmp(got_worktree_get_head_ref_name(worktree),
4542 45cd4e47 2019-08-25 stsp got_ref_get_name(ref)) == 0) {
4543 45cd4e47 2019-08-25 stsp err = got_error_msg(GOT_ERR_SAME_BRANCH,
4544 45cd4e47 2019-08-25 stsp "will not delete this work tree's current branch");
4545 45cd4e47 2019-08-25 stsp goto done;
4546 45cd4e47 2019-08-25 stsp }
4547 45cd4e47 2019-08-25 stsp
4548 45cd4e47 2019-08-25 stsp err = got_ref_delete(ref, repo);
4549 4e759de4 2019-06-26 stsp done:
4550 45cd4e47 2019-08-25 stsp if (ref)
4551 45cd4e47 2019-08-25 stsp got_ref_close(ref);
4552 4e759de4 2019-06-26 stsp free(refname);
4553 4e759de4 2019-06-26 stsp return err;
4554 4e759de4 2019-06-26 stsp }
4555 4e759de4 2019-06-26 stsp
4556 4e759de4 2019-06-26 stsp static const struct got_error *
4557 4e759de4 2019-06-26 stsp add_branch(struct got_repository *repo, const char *branch_name,
4558 a74f7e83 2019-11-10 stsp struct got_object_id *base_commit_id)
4559 4e759de4 2019-06-26 stsp {
4560 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
4561 4e759de4 2019-06-26 stsp struct got_reference *ref = NULL;
4562 4e759de4 2019-06-26 stsp char *base_refname = NULL, *refname = NULL;
4563 d3f84d51 2019-07-11 stsp
4564 d3f84d51 2019-07-11 stsp /*
4565 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
4566 d3f84d51 2019-07-11 stsp * While technically a valid reference name, this case is usually
4567 d3f84d51 2019-07-11 stsp * an unintended typo.
4568 d3f84d51 2019-07-11 stsp */
4569 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
4570 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
4571 4e759de4 2019-06-26 stsp
4572 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
4573 4e759de4 2019-06-26 stsp err = got_error_from_errno("asprintf");
4574 4e759de4 2019-06-26 stsp goto done;
4575 4e759de4 2019-06-26 stsp }
4576 4e759de4 2019-06-26 stsp
4577 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
4578 4e759de4 2019-06-26 stsp if (err == NULL) {
4579 4e759de4 2019-06-26 stsp err = got_error(GOT_ERR_BRANCH_EXISTS);
4580 4e759de4 2019-06-26 stsp goto done;
4581 4e759de4 2019-06-26 stsp } else if (err->code != GOT_ERR_NOT_REF)
4582 4e759de4 2019-06-26 stsp goto done;
4583 4e759de4 2019-06-26 stsp
4584 a74f7e83 2019-11-10 stsp err = got_ref_alloc(&ref, refname, base_commit_id);
4585 4e759de4 2019-06-26 stsp if (err)
4586 4e759de4 2019-06-26 stsp goto done;
4587 4e759de4 2019-06-26 stsp
4588 4e759de4 2019-06-26 stsp err = got_ref_write(ref, repo);
4589 d0eebce4 2019-03-11 stsp done:
4590 4e759de4 2019-06-26 stsp if (ref)
4591 4e759de4 2019-06-26 stsp got_ref_close(ref);
4592 4e759de4 2019-06-26 stsp free(base_refname);
4593 4e759de4 2019-06-26 stsp free(refname);
4594 4e759de4 2019-06-26 stsp return err;
4595 4e759de4 2019-06-26 stsp }
4596 4e759de4 2019-06-26 stsp
4597 4e759de4 2019-06-26 stsp static const struct got_error *
4598 4e759de4 2019-06-26 stsp cmd_branch(int argc, char *argv[])
4599 4e759de4 2019-06-26 stsp {
4600 4e759de4 2019-06-26 stsp const struct got_error *error = NULL;
4601 4e759de4 2019-06-26 stsp struct got_repository *repo = NULL;
4602 4e759de4 2019-06-26 stsp struct got_worktree *worktree = NULL;
4603 4e759de4 2019-06-26 stsp char *cwd = NULL, *repo_path = NULL;
4604 da76fce2 2020-02-24 stsp int ch, do_list = 0, do_show = 0, do_update = 1;
4605 a74f7e83 2019-11-10 stsp const char *delref = NULL, *commit_id_arg = NULL;
4606 da76fce2 2020-02-24 stsp struct got_reference *ref = NULL;
4607 da76fce2 2020-02-24 stsp struct got_pathlist_head paths;
4608 da76fce2 2020-02-24 stsp struct got_pathlist_entry *pe;
4609 da76fce2 2020-02-24 stsp struct got_object_id *commit_id = NULL;
4610 da76fce2 2020-02-24 stsp char *commit_id_str = NULL;
4611 4e759de4 2019-06-26 stsp
4612 da76fce2 2020-02-24 stsp TAILQ_INIT(&paths);
4613 da76fce2 2020-02-24 stsp
4614 da76fce2 2020-02-24 stsp while ((ch = getopt(argc, argv, "c:d:r:ln")) != -1) {
4615 4e759de4 2019-06-26 stsp switch (ch) {
4616 a74f7e83 2019-11-10 stsp case 'c':
4617 a74f7e83 2019-11-10 stsp commit_id_arg = optarg;
4618 a74f7e83 2019-11-10 stsp break;
4619 4e759de4 2019-06-26 stsp case 'd':
4620 4e759de4 2019-06-26 stsp delref = optarg;
4621 4e759de4 2019-06-26 stsp break;
4622 4e759de4 2019-06-26 stsp case 'r':
4623 4e759de4 2019-06-26 stsp repo_path = realpath(optarg, NULL);
4624 4e759de4 2019-06-26 stsp if (repo_path == NULL)
4625 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4626 9ba1d308 2019-10-21 stsp optarg);
4627 4e759de4 2019-06-26 stsp got_path_strip_trailing_slashes(repo_path);
4628 4e759de4 2019-06-26 stsp break;
4629 4e759de4 2019-06-26 stsp case 'l':
4630 4e759de4 2019-06-26 stsp do_list = 1;
4631 da76fce2 2020-02-24 stsp break;
4632 da76fce2 2020-02-24 stsp case 'n':
4633 da76fce2 2020-02-24 stsp do_update = 0;
4634 4e759de4 2019-06-26 stsp break;
4635 4e759de4 2019-06-26 stsp default:
4636 4e759de4 2019-06-26 stsp usage_branch();
4637 4e759de4 2019-06-26 stsp /* NOTREACHED */
4638 4e759de4 2019-06-26 stsp }
4639 4e759de4 2019-06-26 stsp }
4640 4e759de4 2019-06-26 stsp
4641 4e759de4 2019-06-26 stsp if (do_list && delref)
4642 4e759de4 2019-06-26 stsp errx(1, "-l and -d options are mutually exclusive\n");
4643 4e759de4 2019-06-26 stsp
4644 4e759de4 2019-06-26 stsp argc -= optind;
4645 4e759de4 2019-06-26 stsp argv += optind;
4646 ad89fa31 2019-10-04 stsp
4647 ad89fa31 2019-10-04 stsp if (!do_list && !delref && argc == 0)
4648 ad89fa31 2019-10-04 stsp do_show = 1;
4649 4e759de4 2019-06-26 stsp
4650 a74f7e83 2019-11-10 stsp if ((do_list || delref || do_show) && commit_id_arg != NULL)
4651 a74f7e83 2019-11-10 stsp errx(1, "-c option can only be used when creating a branch");
4652 a74f7e83 2019-11-10 stsp
4653 4e759de4 2019-06-26 stsp if (do_list || delref) {
4654 4e759de4 2019-06-26 stsp if (argc > 0)
4655 4e759de4 2019-06-26 stsp usage_branch();
4656 a74f7e83 2019-11-10 stsp } else if (!do_show && argc != 1)
4657 4e759de4 2019-06-26 stsp usage_branch();
4658 4e759de4 2019-06-26 stsp
4659 4e759de4 2019-06-26 stsp #ifndef PROFILE
4660 ad89fa31 2019-10-04 stsp if (do_list || do_show) {
4661 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
4662 4e759de4 2019-06-26 stsp NULL) == -1)
4663 4e759de4 2019-06-26 stsp err(1, "pledge");
4664 4e759de4 2019-06-26 stsp } else {
4665 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
4666 4e759de4 2019-06-26 stsp "sendfd unveil", NULL) == -1)
4667 4e759de4 2019-06-26 stsp err(1, "pledge");
4668 4e759de4 2019-06-26 stsp }
4669 4e759de4 2019-06-26 stsp #endif
4670 4e759de4 2019-06-26 stsp cwd = getcwd(NULL, 0);
4671 4e759de4 2019-06-26 stsp if (cwd == NULL) {
4672 4e759de4 2019-06-26 stsp error = got_error_from_errno("getcwd");
4673 4e759de4 2019-06-26 stsp goto done;
4674 4e759de4 2019-06-26 stsp }
4675 4e759de4 2019-06-26 stsp
4676 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
4677 4e759de4 2019-06-26 stsp error = got_worktree_open(&worktree, cwd);
4678 4e759de4 2019-06-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4679 4e759de4 2019-06-26 stsp goto done;
4680 4e759de4 2019-06-26 stsp else
4681 4e759de4 2019-06-26 stsp error = NULL;
4682 4e759de4 2019-06-26 stsp if (worktree) {
4683 4e759de4 2019-06-26 stsp repo_path =
4684 4e759de4 2019-06-26 stsp strdup(got_worktree_get_repo_path(worktree));
4685 4e759de4 2019-06-26 stsp if (repo_path == NULL)
4686 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
4687 4e759de4 2019-06-26 stsp if (error)
4688 4e759de4 2019-06-26 stsp goto done;
4689 4e759de4 2019-06-26 stsp } else {
4690 4e759de4 2019-06-26 stsp repo_path = strdup(cwd);
4691 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
4692 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
4693 4e759de4 2019-06-26 stsp goto done;
4694 4e759de4 2019-06-26 stsp }
4695 4e759de4 2019-06-26 stsp }
4696 4e759de4 2019-06-26 stsp }
4697 4e759de4 2019-06-26 stsp
4698 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4699 4e759de4 2019-06-26 stsp if (error != NULL)
4700 4e759de4 2019-06-26 stsp goto done;
4701 4e759de4 2019-06-26 stsp
4702 4e759de4 2019-06-26 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
4703 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4704 4e759de4 2019-06-26 stsp if (error)
4705 4e759de4 2019-06-26 stsp goto done;
4706 4e759de4 2019-06-26 stsp
4707 ad89fa31 2019-10-04 stsp if (do_show)
4708 ad89fa31 2019-10-04 stsp error = show_current_branch(repo, worktree);
4709 ad89fa31 2019-10-04 stsp else if (do_list)
4710 ba882ee3 2019-07-11 stsp error = list_branches(repo, worktree);
4711 4e759de4 2019-06-26 stsp else if (delref)
4712 45cd4e47 2019-08-25 stsp error = delete_branch(repo, worktree, delref);
4713 4e759de4 2019-06-26 stsp else {
4714 a74f7e83 2019-11-10 stsp if (commit_id_arg == NULL)
4715 a74f7e83 2019-11-10 stsp commit_id_arg = worktree ?
4716 4e759de4 2019-06-26 stsp got_worktree_get_head_ref_name(worktree) :
4717 4e759de4 2019-06-26 stsp GOT_REF_HEAD;
4718 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
4719 71a27632 2020-01-15 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, 1, repo);
4720 a74f7e83 2019-11-10 stsp if (error)
4721 a74f7e83 2019-11-10 stsp goto done;
4722 a74f7e83 2019-11-10 stsp error = add_branch(repo, argv[0], commit_id);
4723 da76fce2 2020-02-24 stsp if (error)
4724 da76fce2 2020-02-24 stsp goto done;
4725 da76fce2 2020-02-24 stsp if (worktree && do_update) {
4726 da76fce2 2020-02-24 stsp int did_something = 0;
4727 da76fce2 2020-02-24 stsp char *branch_refname = NULL;
4728 da76fce2 2020-02-24 stsp
4729 da76fce2 2020-02-24 stsp error = got_object_id_str(&commit_id_str, commit_id);
4730 da76fce2 2020-02-24 stsp if (error)
4731 da76fce2 2020-02-24 stsp goto done;
4732 da76fce2 2020-02-24 stsp error = get_worktree_paths_from_argv(&paths, 0, NULL,
4733 da76fce2 2020-02-24 stsp worktree);
4734 da76fce2 2020-02-24 stsp if (error)
4735 da76fce2 2020-02-24 stsp goto done;
4736 da76fce2 2020-02-24 stsp if (asprintf(&branch_refname, "refs/heads/%s", argv[0])
4737 da76fce2 2020-02-24 stsp == -1) {
4738 da76fce2 2020-02-24 stsp error = got_error_from_errno("asprintf");
4739 da76fce2 2020-02-24 stsp goto done;
4740 da76fce2 2020-02-24 stsp }
4741 da76fce2 2020-02-24 stsp error = got_ref_open(&ref, repo, branch_refname, 0);
4742 da76fce2 2020-02-24 stsp free(branch_refname);
4743 da76fce2 2020-02-24 stsp if (error)
4744 da76fce2 2020-02-24 stsp goto done;
4745 da76fce2 2020-02-24 stsp error = switch_head_ref(ref, commit_id, worktree,
4746 da76fce2 2020-02-24 stsp repo);
4747 da76fce2 2020-02-24 stsp if (error)
4748 da76fce2 2020-02-24 stsp goto done;
4749 da76fce2 2020-02-24 stsp error = got_worktree_set_base_commit_id(worktree, repo,
4750 da76fce2 2020-02-24 stsp commit_id);
4751 da76fce2 2020-02-24 stsp if (error)
4752 da76fce2 2020-02-24 stsp goto done;
4753 da76fce2 2020-02-24 stsp error = got_worktree_checkout_files(worktree, &paths,
4754 da76fce2 2020-02-24 stsp repo, update_progress, &did_something,
4755 da76fce2 2020-02-24 stsp check_cancelled, NULL);
4756 da76fce2 2020-02-24 stsp if (error)
4757 da76fce2 2020-02-24 stsp goto done;
4758 da76fce2 2020-02-24 stsp if (did_something)
4759 da76fce2 2020-02-24 stsp printf("Updated to commit %s\n", commit_id_str);
4760 da76fce2 2020-02-24 stsp }
4761 4e759de4 2019-06-26 stsp }
4762 4e759de4 2019-06-26 stsp done:
4763 da76fce2 2020-02-24 stsp if (ref)
4764 da76fce2 2020-02-24 stsp got_ref_close(ref);
4765 d0eebce4 2019-03-11 stsp if (repo)
4766 d0eebce4 2019-03-11 stsp got_repo_close(repo);
4767 d0eebce4 2019-03-11 stsp if (worktree)
4768 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
4769 d0eebce4 2019-03-11 stsp free(cwd);
4770 d0eebce4 2019-03-11 stsp free(repo_path);
4771 da76fce2 2020-02-24 stsp free(commit_id);
4772 da76fce2 2020-02-24 stsp free(commit_id_str);
4773 da76fce2 2020-02-24 stsp TAILQ_FOREACH(pe, &paths, entry)
4774 da76fce2 2020-02-24 stsp free((char *)pe->path);
4775 da76fce2 2020-02-24 stsp got_pathlist_free(&paths);
4776 d00136be 2019-03-26 stsp return error;
4777 d00136be 2019-03-26 stsp }
4778 d00136be 2019-03-26 stsp
4779 8e7bd50a 2019-08-22 stsp
4780 d00136be 2019-03-26 stsp __dead static void
4781 8e7bd50a 2019-08-22 stsp usage_tag(void)
4782 8e7bd50a 2019-08-22 stsp {
4783 8e7bd50a 2019-08-22 stsp fprintf(stderr,
4784 80106605 2020-02-24 stsp "usage: %s tag [-c commit] [-r repository] [-l] "
4785 80106605 2020-02-24 stsp "[-m message] name\n", getprogname());
4786 8e7bd50a 2019-08-22 stsp exit(1);
4787 b8bad2ba 2019-08-23 stsp }
4788 b8bad2ba 2019-08-23 stsp
4789 b8bad2ba 2019-08-23 stsp #if 0
4790 b8bad2ba 2019-08-23 stsp static const struct got_error *
4791 b8bad2ba 2019-08-23 stsp sort_tags(struct got_reflist_head *sorted, struct got_reflist_head *tags)
4792 b8bad2ba 2019-08-23 stsp {
4793 b8bad2ba 2019-08-23 stsp const struct got_error *err = NULL;
4794 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *re, *se, *new;
4795 b8bad2ba 2019-08-23 stsp struct got_object_id *re_id, *se_id;
4796 b8bad2ba 2019-08-23 stsp struct got_tag_object *re_tag, *se_tag;
4797 b8bad2ba 2019-08-23 stsp time_t re_time, se_time;
4798 b8bad2ba 2019-08-23 stsp
4799 b8bad2ba 2019-08-23 stsp SIMPLEQ_FOREACH(re, tags, entry) {
4800 b8bad2ba 2019-08-23 stsp se = SIMPLEQ_FIRST(sorted);
4801 b8bad2ba 2019-08-23 stsp if (se == NULL) {
4802 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
4803 b8bad2ba 2019-08-23 stsp if (err)
4804 b8bad2ba 2019-08-23 stsp return err;
4805 b8bad2ba 2019-08-23 stsp SIMPLEQ_INSERT_HEAD(sorted, new, entry);
4806 b8bad2ba 2019-08-23 stsp continue;
4807 b8bad2ba 2019-08-23 stsp } else {
4808 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&re_id, repo, re->ref);
4809 b8bad2ba 2019-08-23 stsp if (err)
4810 b8bad2ba 2019-08-23 stsp break;
4811 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&re_tag, repo, re_id);
4812 b8bad2ba 2019-08-23 stsp free(re_id);
4813 b8bad2ba 2019-08-23 stsp if (err)
4814 b8bad2ba 2019-08-23 stsp break;
4815 b8bad2ba 2019-08-23 stsp re_time = got_object_tag_get_tagger_time(re_tag);
4816 b8bad2ba 2019-08-23 stsp got_object_tag_close(re_tag);
4817 b8bad2ba 2019-08-23 stsp }
4818 b8bad2ba 2019-08-23 stsp
4819 b8bad2ba 2019-08-23 stsp while (se) {
4820 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&se_id, repo, re->ref);
4821 b8bad2ba 2019-08-23 stsp if (err)
4822 b8bad2ba 2019-08-23 stsp break;
4823 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&se_tag, repo, se_id);
4824 b8bad2ba 2019-08-23 stsp free(se_id);
4825 b8bad2ba 2019-08-23 stsp if (err)
4826 b8bad2ba 2019-08-23 stsp break;
4827 b8bad2ba 2019-08-23 stsp se_time = got_object_tag_get_tagger_time(se_tag);
4828 b8bad2ba 2019-08-23 stsp got_object_tag_close(se_tag);
4829 b8bad2ba 2019-08-23 stsp
4830 b8bad2ba 2019-08-23 stsp if (se_time > re_time) {
4831 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
4832 b8bad2ba 2019-08-23 stsp if (err)
4833 b8bad2ba 2019-08-23 stsp return err;
4834 b8bad2ba 2019-08-23 stsp SIMPLEQ_INSERT_AFTER(sorted, se, new, entry);
4835 b8bad2ba 2019-08-23 stsp break;
4836 b8bad2ba 2019-08-23 stsp }
4837 b8bad2ba 2019-08-23 stsp se = SIMPLEQ_NEXT(se, entry);
4838 b8bad2ba 2019-08-23 stsp continue;
4839 b8bad2ba 2019-08-23 stsp }
4840 b8bad2ba 2019-08-23 stsp }
4841 b8bad2ba 2019-08-23 stsp done:
4842 b8bad2ba 2019-08-23 stsp return err;
4843 8e7bd50a 2019-08-22 stsp }
4844 b8bad2ba 2019-08-23 stsp #endif
4845 b8bad2ba 2019-08-23 stsp
4846 b8bad2ba 2019-08-23 stsp static const struct got_error *
4847 8e7bd50a 2019-08-22 stsp list_tags(struct got_repository *repo, struct got_worktree *worktree)
4848 8e7bd50a 2019-08-22 stsp {
4849 8e7bd50a 2019-08-22 stsp static const struct got_error *err = NULL;
4850 8e7bd50a 2019-08-22 stsp struct got_reflist_head refs;
4851 8e7bd50a 2019-08-22 stsp struct got_reflist_entry *re;
4852 8e7bd50a 2019-08-22 stsp
4853 8e7bd50a 2019-08-22 stsp SIMPLEQ_INIT(&refs);
4854 8e7bd50a 2019-08-22 stsp
4855 d1f16636 2020-01-15 stsp err = got_ref_list(&refs, repo, "refs/tags", got_ref_cmp_tags, repo);
4856 8e7bd50a 2019-08-22 stsp if (err)
4857 8e7bd50a 2019-08-22 stsp return err;
4858 8e7bd50a 2019-08-22 stsp
4859 8e7bd50a 2019-08-22 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
4860 8e7bd50a 2019-08-22 stsp const char *refname;
4861 8e7bd50a 2019-08-22 stsp char *refstr, *tagmsg0, *tagmsg, *line, *id_str, *datestr;
4862 8e7bd50a 2019-08-22 stsp char datebuf[26];
4863 d4efa91b 2020-01-14 stsp const char *tagger;
4864 8e7bd50a 2019-08-22 stsp time_t tagger_time;
4865 8e7bd50a 2019-08-22 stsp struct got_object_id *id;
4866 8e7bd50a 2019-08-22 stsp struct got_tag_object *tag;
4867 d4efa91b 2020-01-14 stsp struct got_commit_object *commit = NULL;
4868 8e7bd50a 2019-08-22 stsp
4869 8e7bd50a 2019-08-22 stsp refname = got_ref_get_name(re->ref);
4870 8e7bd50a 2019-08-22 stsp if (strncmp(refname, "refs/tags/", 10) != 0)
4871 8e7bd50a 2019-08-22 stsp continue;
4872 8e7bd50a 2019-08-22 stsp refname += 10;
4873 8e7bd50a 2019-08-22 stsp refstr = got_ref_to_str(re->ref);
4874 8e7bd50a 2019-08-22 stsp if (refstr == NULL) {
4875 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("got_ref_to_str");
4876 8e7bd50a 2019-08-22 stsp break;
4877 8e7bd50a 2019-08-22 stsp }
4878 8e7bd50a 2019-08-22 stsp printf("%stag %s %s\n", GOT_COMMIT_SEP_STR, refname, refstr);
4879 8e7bd50a 2019-08-22 stsp free(refstr);
4880 8e7bd50a 2019-08-22 stsp
4881 8e7bd50a 2019-08-22 stsp err = got_ref_resolve(&id, repo, re->ref);
4882 8e7bd50a 2019-08-22 stsp if (err)
4883 8e7bd50a 2019-08-22 stsp break;
4884 8e7bd50a 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
4885 d4efa91b 2020-01-14 stsp if (err) {
4886 d4efa91b 2020-01-14 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
4887 d4efa91b 2020-01-14 stsp free(id);
4888 d4efa91b 2020-01-14 stsp break;
4889 d4efa91b 2020-01-14 stsp }
4890 d4efa91b 2020-01-14 stsp /* "lightweight" tag */
4891 d4efa91b 2020-01-14 stsp err = got_object_open_as_commit(&commit, repo, id);
4892 d4efa91b 2020-01-14 stsp if (err) {
4893 d4efa91b 2020-01-14 stsp free(id);
4894 d4efa91b 2020-01-14 stsp break;
4895 d4efa91b 2020-01-14 stsp }
4896 d4efa91b 2020-01-14 stsp tagger = got_object_commit_get_committer(commit);
4897 d4efa91b 2020-01-14 stsp tagger_time =
4898 d4efa91b 2020-01-14 stsp got_object_commit_get_committer_time(commit);
4899 d4efa91b 2020-01-14 stsp err = got_object_id_str(&id_str, id);
4900 d4efa91b 2020-01-14 stsp free(id);
4901 d4efa91b 2020-01-14 stsp if (err)
4902 d4efa91b 2020-01-14 stsp break;
4903 d4efa91b 2020-01-14 stsp } else {
4904 d4efa91b 2020-01-14 stsp free(id);
4905 d4efa91b 2020-01-14 stsp tagger = got_object_tag_get_tagger(tag);
4906 d4efa91b 2020-01-14 stsp tagger_time = got_object_tag_get_tagger_time(tag);
4907 d4efa91b 2020-01-14 stsp err = got_object_id_str(&id_str,
4908 d4efa91b 2020-01-14 stsp got_object_tag_get_object_id(tag));
4909 d4efa91b 2020-01-14 stsp if (err)
4910 d4efa91b 2020-01-14 stsp break;
4911 d4efa91b 2020-01-14 stsp }
4912 d4efa91b 2020-01-14 stsp printf("from: %s\n", tagger);
4913 2417344c 2019-08-23 stsp datestr = get_datestr(&tagger_time, datebuf);
4914 2417344c 2019-08-23 stsp if (datestr)
4915 2417344c 2019-08-23 stsp printf("date: %s UTC\n", datestr);
4916 d4efa91b 2020-01-14 stsp if (commit)
4917 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
4918 d4efa91b 2020-01-14 stsp else {
4919 d4efa91b 2020-01-14 stsp switch (got_object_tag_get_object_type(tag)) {
4920 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_BLOB:
4921 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB,
4922 d4efa91b 2020-01-14 stsp id_str);
4923 d4efa91b 2020-01-14 stsp break;
4924 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_TREE:
4925 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TREE,
4926 d4efa91b 2020-01-14 stsp id_str);
4927 d4efa91b 2020-01-14 stsp break;
4928 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_COMMIT:
4929 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT,
4930 d4efa91b 2020-01-14 stsp id_str);
4931 d4efa91b 2020-01-14 stsp break;
4932 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_TAG:
4933 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TAG,
4934 d4efa91b 2020-01-14 stsp id_str);
4935 d4efa91b 2020-01-14 stsp break;
4936 d4efa91b 2020-01-14 stsp default:
4937 d4efa91b 2020-01-14 stsp break;
4938 d4efa91b 2020-01-14 stsp }
4939 8e7bd50a 2019-08-22 stsp }
4940 8e7bd50a 2019-08-22 stsp free(id_str);
4941 d4efa91b 2020-01-14 stsp if (commit) {
4942 d4efa91b 2020-01-14 stsp err = got_object_commit_get_logmsg(&tagmsg0, commit);
4943 d4efa91b 2020-01-14 stsp if (err)
4944 d4efa91b 2020-01-14 stsp break;
4945 d4efa91b 2020-01-14 stsp got_object_commit_close(commit);
4946 d4efa91b 2020-01-14 stsp } else {
4947 d4efa91b 2020-01-14 stsp tagmsg0 = strdup(got_object_tag_get_message(tag));
4948 d4efa91b 2020-01-14 stsp got_object_tag_close(tag);
4949 d4efa91b 2020-01-14 stsp if (tagmsg0 == NULL) {
4950 d4efa91b 2020-01-14 stsp err = got_error_from_errno("strdup");
4951 d4efa91b 2020-01-14 stsp break;
4952 d4efa91b 2020-01-14 stsp }
4953 8e7bd50a 2019-08-22 stsp }
4954 8e7bd50a 2019-08-22 stsp
4955 8e7bd50a 2019-08-22 stsp tagmsg = tagmsg0;
4956 8e7bd50a 2019-08-22 stsp do {
4957 8e7bd50a 2019-08-22 stsp line = strsep(&tagmsg, "\n");
4958 8e7bd50a 2019-08-22 stsp if (line)
4959 8e7bd50a 2019-08-22 stsp printf(" %s\n", line);
4960 8e7bd50a 2019-08-22 stsp } while (line);
4961 8e7bd50a 2019-08-22 stsp free(tagmsg0);
4962 8e7bd50a 2019-08-22 stsp }
4963 8e7bd50a 2019-08-22 stsp
4964 8e7bd50a 2019-08-22 stsp got_ref_list_free(&refs);
4965 8e7bd50a 2019-08-22 stsp return NULL;
4966 8e7bd50a 2019-08-22 stsp }
4967 8e7bd50a 2019-08-22 stsp
4968 8e7bd50a 2019-08-22 stsp static const struct got_error *
4969 f372d5cd 2019-10-21 stsp get_tag_message(char **tagmsg, char **tagmsg_path, const char *commit_id_str,
4970 62870f63 2019-08-22 stsp const char *tag_name, const char *repo_path)
4971 8e7bd50a 2019-08-22 stsp {
4972 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
4973 8e7bd50a 2019-08-22 stsp char *template = NULL, *initial_content = NULL;
4974 f372d5cd 2019-10-21 stsp char *editor = NULL;
4975 8e7bd50a 2019-08-22 stsp int fd = -1;
4976 8e7bd50a 2019-08-22 stsp
4977 bb63914a 2020-02-17 stsp if (asprintf(&template, GOT_TMPDIR_STR "/got-tagmsg") == -1) {
4978 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
4979 8e7bd50a 2019-08-22 stsp goto done;
4980 8e7bd50a 2019-08-22 stsp }
4981 8e7bd50a 2019-08-22 stsp
4982 62870f63 2019-08-22 stsp if (asprintf(&initial_content, "\n# tagging commit %s as %s\n",
4983 62870f63 2019-08-22 stsp commit_id_str, tag_name) == -1) {
4984 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
4985 8e7bd50a 2019-08-22 stsp goto done;
4986 8e7bd50a 2019-08-22 stsp }
4987 8e7bd50a 2019-08-22 stsp
4988 f372d5cd 2019-10-21 stsp err = got_opentemp_named_fd(tagmsg_path, &fd, template);
4989 8e7bd50a 2019-08-22 stsp if (err)
4990 8e7bd50a 2019-08-22 stsp goto done;
4991 8e7bd50a 2019-08-22 stsp
4992 8e7bd50a 2019-08-22 stsp dprintf(fd, initial_content);
4993 8e7bd50a 2019-08-22 stsp close(fd);
4994 8e7bd50a 2019-08-22 stsp
4995 8e7bd50a 2019-08-22 stsp err = get_editor(&editor);
4996 8e7bd50a 2019-08-22 stsp if (err)
4997 8e7bd50a 2019-08-22 stsp goto done;
4998 f372d5cd 2019-10-21 stsp err = edit_logmsg(tagmsg, editor, *tagmsg_path, initial_content);
4999 8e7bd50a 2019-08-22 stsp done:
5000 8e7bd50a 2019-08-22 stsp free(initial_content);
5001 8e7bd50a 2019-08-22 stsp free(template);
5002 8e7bd50a 2019-08-22 stsp free(editor);
5003 8e7bd50a 2019-08-22 stsp
5004 8e7bd50a 2019-08-22 stsp /* Editor is done; we can now apply unveil(2) */
5005 8e7bd50a 2019-08-22 stsp if (err == NULL) {
5006 8e7bd50a 2019-08-22 stsp err = apply_unveil(repo_path, 0, NULL);
5007 8e7bd50a 2019-08-22 stsp if (err) {
5008 8e7bd50a 2019-08-22 stsp free(*tagmsg);
5009 8e7bd50a 2019-08-22 stsp *tagmsg = NULL;
5010 8e7bd50a 2019-08-22 stsp }
5011 8e7bd50a 2019-08-22 stsp }
5012 8e7bd50a 2019-08-22 stsp return err;
5013 8e7bd50a 2019-08-22 stsp }
5014 8e7bd50a 2019-08-22 stsp
5015 8e7bd50a 2019-08-22 stsp static const struct got_error *
5016 8e7bd50a 2019-08-22 stsp add_tag(struct got_repository *repo, const char *tag_name,
5017 8e7bd50a 2019-08-22 stsp const char *commit_arg, const char *tagmsg_arg)
5018 8e7bd50a 2019-08-22 stsp {
5019 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
5020 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id = NULL, *tag_id = NULL;
5021 8e7bd50a 2019-08-22 stsp char *label = NULL, *commit_id_str = NULL;
5022 8e7bd50a 2019-08-22 stsp struct got_reference *ref = NULL;
5023 aba9c984 2019-09-08 stsp char *refname = NULL, *tagmsg = NULL, *tagger = NULL;
5024 f372d5cd 2019-10-21 stsp char *tagmsg_path = NULL, *tag_id_str = NULL;
5025 f372d5cd 2019-10-21 stsp int preserve_tagmsg = 0;
5026 8e7bd50a 2019-08-22 stsp
5027 8e7bd50a 2019-08-22 stsp /*
5028 bd5895f3 2019-11-28 stsp * Don't let the user create a tag name with a leading '-'.
5029 8e7bd50a 2019-08-22 stsp * While technically a valid reference name, this case is usually
5030 8e7bd50a 2019-08-22 stsp * an unintended typo.
5031 8e7bd50a 2019-08-22 stsp */
5032 bd5895f3 2019-11-28 stsp if (tag_name[0] == '-')
5033 bd5895f3 2019-11-28 stsp return got_error_path(tag_name, GOT_ERR_REF_NAME_MINUS);
5034 8e7bd50a 2019-08-22 stsp
5035 aba9c984 2019-09-08 stsp err = get_author(&tagger, repo);
5036 8e7bd50a 2019-08-22 stsp if (err)
5037 8e7bd50a 2019-08-22 stsp return err;
5038 8e7bd50a 2019-08-22 stsp
5039 71a27632 2020-01-15 stsp err = got_repo_match_object_id(&commit_id, &label, commit_arg,
5040 8e7bd50a 2019-08-22 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
5041 8e7bd50a 2019-08-22 stsp if (err)
5042 8e7bd50a 2019-08-22 stsp goto done;
5043 8e7bd50a 2019-08-22 stsp
5044 8e7bd50a 2019-08-22 stsp err = got_object_id_str(&commit_id_str, commit_id);
5045 8e7bd50a 2019-08-22 stsp if (err)
5046 8e7bd50a 2019-08-22 stsp goto done;
5047 8e7bd50a 2019-08-22 stsp
5048 8e7bd50a 2019-08-22 stsp if (strncmp("refs/tags/", tag_name, 10) == 0) {
5049 8e7bd50a 2019-08-22 stsp refname = strdup(tag_name);
5050 8e7bd50a 2019-08-22 stsp if (refname == NULL) {
5051 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("strdup");
5052 8e7bd50a 2019-08-22 stsp goto done;
5053 8e7bd50a 2019-08-22 stsp }
5054 8e7bd50a 2019-08-22 stsp tag_name += 10;
5055 8e7bd50a 2019-08-22 stsp } else if (asprintf(&refname, "refs/tags/%s", tag_name) == -1) {
5056 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
5057 8e7bd50a 2019-08-22 stsp goto done;
5058 8e7bd50a 2019-08-22 stsp }
5059 8e7bd50a 2019-08-22 stsp
5060 8e7bd50a 2019-08-22 stsp err = got_ref_open(&ref, repo, refname, 0);
5061 8e7bd50a 2019-08-22 stsp if (err == NULL) {
5062 8e7bd50a 2019-08-22 stsp err = got_error(GOT_ERR_TAG_EXISTS);
5063 8e7bd50a 2019-08-22 stsp goto done;
5064 8e7bd50a 2019-08-22 stsp } else if (err->code != GOT_ERR_NOT_REF)
5065 8e7bd50a 2019-08-22 stsp goto done;
5066 8e7bd50a 2019-08-22 stsp
5067 8e7bd50a 2019-08-22 stsp if (tagmsg_arg == NULL) {
5068 f372d5cd 2019-10-21 stsp err = get_tag_message(&tagmsg, &tagmsg_path, commit_id_str,
5069 62870f63 2019-08-22 stsp tag_name, got_repo_get_path(repo));
5070 f372d5cd 2019-10-21 stsp if (err) {
5071 f372d5cd 2019-10-21 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY &&
5072 f372d5cd 2019-10-21 stsp tagmsg_path != NULL)
5073 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
5074 8e7bd50a 2019-08-22 stsp goto done;
5075 f372d5cd 2019-10-21 stsp }
5076 8e7bd50a 2019-08-22 stsp }
5077 8e7bd50a 2019-08-22 stsp
5078 8e7bd50a 2019-08-22 stsp err = got_object_tag_create(&tag_id, tag_name, commit_id,
5079 8e7bd50a 2019-08-22 stsp tagger, time(NULL), tagmsg ? tagmsg : tagmsg_arg, repo);
5080 f372d5cd 2019-10-21 stsp if (err) {
5081 f372d5cd 2019-10-21 stsp if (tagmsg_path)
5082 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
5083 8e7bd50a 2019-08-22 stsp goto done;
5084 f372d5cd 2019-10-21 stsp }
5085 8e7bd50a 2019-08-22 stsp
5086 8e7bd50a 2019-08-22 stsp err = got_ref_alloc(&ref, refname, tag_id);
5087 f372d5cd 2019-10-21 stsp if (err) {
5088 f372d5cd 2019-10-21 stsp if (tagmsg_path)
5089 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
5090 8e7bd50a 2019-08-22 stsp goto done;
5091 f372d5cd 2019-10-21 stsp }
5092 8e7bd50a 2019-08-22 stsp
5093 8e7bd50a 2019-08-22 stsp err = got_ref_write(ref, repo);
5094 f372d5cd 2019-10-21 stsp if (err) {
5095 f372d5cd 2019-10-21 stsp if (tagmsg_path)
5096 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
5097 f372d5cd 2019-10-21 stsp goto done;
5098 f372d5cd 2019-10-21 stsp }
5099 8e7bd50a 2019-08-22 stsp
5100 f372d5cd 2019-10-21 stsp err = got_object_id_str(&tag_id_str, tag_id);
5101 f372d5cd 2019-10-21 stsp if (err) {
5102 f372d5cd 2019-10-21 stsp if (tagmsg_path)
5103 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
5104 f372d5cd 2019-10-21 stsp goto done;
5105 8e7bd50a 2019-08-22 stsp }
5106 f372d5cd 2019-10-21 stsp printf("Created tag %s\n", tag_id_str);
5107 8e7bd50a 2019-08-22 stsp done:
5108 f372d5cd 2019-10-21 stsp if (preserve_tagmsg) {
5109 f372d5cd 2019-10-21 stsp fprintf(stderr, "%s: tag message preserved in %s\n",
5110 f372d5cd 2019-10-21 stsp getprogname(), tagmsg_path);
5111 f372d5cd 2019-10-21 stsp } else if (tagmsg_path && unlink(tagmsg_path) == -1 && err == NULL)
5112 f372d5cd 2019-10-21 stsp err = got_error_from_errno2("unlink", tagmsg_path);
5113 f372d5cd 2019-10-21 stsp free(tag_id_str);
5114 8e7bd50a 2019-08-22 stsp if (ref)
5115 8e7bd50a 2019-08-22 stsp got_ref_close(ref);
5116 8e7bd50a 2019-08-22 stsp free(commit_id);
5117 8e7bd50a 2019-08-22 stsp free(commit_id_str);
5118 8e7bd50a 2019-08-22 stsp free(refname);
5119 8e7bd50a 2019-08-22 stsp free(tagmsg);
5120 f372d5cd 2019-10-21 stsp free(tagmsg_path);
5121 aba9c984 2019-09-08 stsp free(tagger);
5122 8e7bd50a 2019-08-22 stsp return err;
5123 8e7bd50a 2019-08-22 stsp }
5124 8e7bd50a 2019-08-22 stsp
5125 8e7bd50a 2019-08-22 stsp static const struct got_error *
5126 8e7bd50a 2019-08-22 stsp cmd_tag(int argc, char *argv[])
5127 8e7bd50a 2019-08-22 stsp {
5128 8e7bd50a 2019-08-22 stsp const struct got_error *error = NULL;
5129 8e7bd50a 2019-08-22 stsp struct got_repository *repo = NULL;
5130 8e7bd50a 2019-08-22 stsp struct got_worktree *worktree = NULL;
5131 8e7bd50a 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *commit_id_str = NULL;
5132 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL;
5133 8e7bd50a 2019-08-22 stsp const char *tag_name, *commit_id_arg = NULL, *tagmsg = NULL;
5134 8e7bd50a 2019-08-22 stsp int ch, do_list = 0;
5135 8e7bd50a 2019-08-22 stsp
5136 80106605 2020-02-24 stsp while ((ch = getopt(argc, argv, "c:m:r:l")) != -1) {
5137 8e7bd50a 2019-08-22 stsp switch (ch) {
5138 80106605 2020-02-24 stsp case 'c':
5139 80106605 2020-02-24 stsp commit_id_arg = optarg;
5140 80106605 2020-02-24 stsp break;
5141 8e7bd50a 2019-08-22 stsp case 'm':
5142 8e7bd50a 2019-08-22 stsp tagmsg = optarg;
5143 8e7bd50a 2019-08-22 stsp break;
5144 8e7bd50a 2019-08-22 stsp case 'r':
5145 8e7bd50a 2019-08-22 stsp repo_path = realpath(optarg, NULL);
5146 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
5147 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
5148 9ba1d308 2019-10-21 stsp optarg);
5149 8e7bd50a 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
5150 8e7bd50a 2019-08-22 stsp break;
5151 8e7bd50a 2019-08-22 stsp case 'l':
5152 8e7bd50a 2019-08-22 stsp do_list = 1;
5153 8e7bd50a 2019-08-22 stsp break;
5154 8e7bd50a 2019-08-22 stsp default:
5155 8e7bd50a 2019-08-22 stsp usage_tag();
5156 8e7bd50a 2019-08-22 stsp /* NOTREACHED */
5157 8e7bd50a 2019-08-22 stsp }
5158 8e7bd50a 2019-08-22 stsp }
5159 8e7bd50a 2019-08-22 stsp
5160 8e7bd50a 2019-08-22 stsp argc -= optind;
5161 8e7bd50a 2019-08-22 stsp argv += optind;
5162 8e7bd50a 2019-08-22 stsp
5163 8e7bd50a 2019-08-22 stsp if (do_list) {
5164 80106605 2020-02-24 stsp if (commit_id_arg != NULL)
5165 80106605 2020-02-24 stsp errx(1, "-c option can only be used when creating a tag");
5166 8e7bd50a 2019-08-22 stsp if (tagmsg)
5167 80106605 2020-02-24 stsp errx(1, "-l and -m options are mutually exclusive");
5168 8e7bd50a 2019-08-22 stsp if (argc > 0)
5169 8e7bd50a 2019-08-22 stsp usage_tag();
5170 80106605 2020-02-24 stsp } else if (argc != 1)
5171 8e7bd50a 2019-08-22 stsp usage_tag();
5172 80106605 2020-02-24 stsp
5173 a2887370 2019-08-23 stsp tag_name = argv[0];
5174 8e7bd50a 2019-08-22 stsp
5175 8e7bd50a 2019-08-22 stsp #ifndef PROFILE
5176 8e7bd50a 2019-08-22 stsp if (do_list) {
5177 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
5178 8e7bd50a 2019-08-22 stsp NULL) == -1)
5179 8e7bd50a 2019-08-22 stsp err(1, "pledge");
5180 8e7bd50a 2019-08-22 stsp } else {
5181 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
5182 8e7bd50a 2019-08-22 stsp "sendfd unveil", NULL) == -1)
5183 8e7bd50a 2019-08-22 stsp err(1, "pledge");
5184 8e7bd50a 2019-08-22 stsp }
5185 8e7bd50a 2019-08-22 stsp #endif
5186 8e7bd50a 2019-08-22 stsp cwd = getcwd(NULL, 0);
5187 8e7bd50a 2019-08-22 stsp if (cwd == NULL) {
5188 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("getcwd");
5189 8e7bd50a 2019-08-22 stsp goto done;
5190 8e7bd50a 2019-08-22 stsp }
5191 8e7bd50a 2019-08-22 stsp
5192 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
5193 8e7bd50a 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
5194 8e7bd50a 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5195 8e7bd50a 2019-08-22 stsp goto done;
5196 8e7bd50a 2019-08-22 stsp else
5197 8e7bd50a 2019-08-22 stsp error = NULL;
5198 8e7bd50a 2019-08-22 stsp if (worktree) {
5199 8e7bd50a 2019-08-22 stsp repo_path =
5200 8e7bd50a 2019-08-22 stsp strdup(got_worktree_get_repo_path(worktree));
5201 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
5202 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
5203 8e7bd50a 2019-08-22 stsp if (error)
5204 8e7bd50a 2019-08-22 stsp goto done;
5205 8e7bd50a 2019-08-22 stsp } else {
5206 8e7bd50a 2019-08-22 stsp repo_path = strdup(cwd);
5207 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
5208 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
5209 8e7bd50a 2019-08-22 stsp goto done;
5210 8e7bd50a 2019-08-22 stsp }
5211 8e7bd50a 2019-08-22 stsp }
5212 8e7bd50a 2019-08-22 stsp }
5213 8e7bd50a 2019-08-22 stsp
5214 8e7bd50a 2019-08-22 stsp if (do_list) {
5215 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5216 c9956ddf 2019-09-08 stsp if (error != NULL)
5217 c9956ddf 2019-09-08 stsp goto done;
5218 8e7bd50a 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5219 8e7bd50a 2019-08-22 stsp if (error)
5220 8e7bd50a 2019-08-22 stsp goto done;
5221 8e7bd50a 2019-08-22 stsp error = list_tags(repo, worktree);
5222 8e7bd50a 2019-08-22 stsp } else {
5223 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
5224 c9956ddf 2019-09-08 stsp if (error)
5225 c9956ddf 2019-09-08 stsp goto done;
5226 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
5227 c9956ddf 2019-09-08 stsp if (error != NULL)
5228 c9956ddf 2019-09-08 stsp goto done;
5229 c9956ddf 2019-09-08 stsp
5230 8e7bd50a 2019-08-22 stsp if (tagmsg) {
5231 8e7bd50a 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5232 8e7bd50a 2019-08-22 stsp if (error)
5233 8e7bd50a 2019-08-22 stsp goto done;
5234 8e7bd50a 2019-08-22 stsp }
5235 8e7bd50a 2019-08-22 stsp
5236 8e7bd50a 2019-08-22 stsp if (commit_id_arg == NULL) {
5237 8e7bd50a 2019-08-22 stsp struct got_reference *head_ref;
5238 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id;
5239 8e7bd50a 2019-08-22 stsp error = got_ref_open(&head_ref, repo,
5240 8e7bd50a 2019-08-22 stsp worktree ? got_worktree_get_head_ref_name(worktree)
5241 8e7bd50a 2019-08-22 stsp : GOT_REF_HEAD, 0);
5242 8e7bd50a 2019-08-22 stsp if (error)
5243 8e7bd50a 2019-08-22 stsp goto done;
5244 8e7bd50a 2019-08-22 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
5245 8e7bd50a 2019-08-22 stsp got_ref_close(head_ref);
5246 8e7bd50a 2019-08-22 stsp if (error)
5247 8e7bd50a 2019-08-22 stsp goto done;
5248 8e7bd50a 2019-08-22 stsp error = got_object_id_str(&commit_id_str, commit_id);
5249 8e7bd50a 2019-08-22 stsp free(commit_id);
5250 8e7bd50a 2019-08-22 stsp if (error)
5251 8e7bd50a 2019-08-22 stsp goto done;
5252 8e7bd50a 2019-08-22 stsp }
5253 8e7bd50a 2019-08-22 stsp
5254 8e7bd50a 2019-08-22 stsp error = add_tag(repo, tag_name,
5255 8e7bd50a 2019-08-22 stsp commit_id_str ? commit_id_str : commit_id_arg, tagmsg);
5256 8e7bd50a 2019-08-22 stsp }
5257 8e7bd50a 2019-08-22 stsp done:
5258 8e7bd50a 2019-08-22 stsp if (repo)
5259 8e7bd50a 2019-08-22 stsp got_repo_close(repo);
5260 8e7bd50a 2019-08-22 stsp if (worktree)
5261 8e7bd50a 2019-08-22 stsp got_worktree_close(worktree);
5262 8e7bd50a 2019-08-22 stsp free(cwd);
5263 8e7bd50a 2019-08-22 stsp free(repo_path);
5264 c9956ddf 2019-09-08 stsp free(gitconfig_path);
5265 8e7bd50a 2019-08-22 stsp free(commit_id_str);
5266 8e7bd50a 2019-08-22 stsp return error;
5267 8e7bd50a 2019-08-22 stsp }
5268 8e7bd50a 2019-08-22 stsp
5269 8e7bd50a 2019-08-22 stsp __dead static void
5270 d00136be 2019-03-26 stsp usage_add(void)
5271 d00136be 2019-03-26 stsp {
5272 c29c428a 2019-12-16 stsp fprintf(stderr, "usage: %s add [-R] [-I] path ...\n",
5273 022fae89 2019-12-06 tracey getprogname());
5274 d00136be 2019-03-26 stsp exit(1);
5275 d00136be 2019-03-26 stsp }
5276 d00136be 2019-03-26 stsp
5277 d00136be 2019-03-26 stsp static const struct got_error *
5278 4e68cba3 2019-11-23 stsp add_progress(void *arg, unsigned char status, const char *path)
5279 4e68cba3 2019-11-23 stsp {
5280 4e68cba3 2019-11-23 stsp while (path[0] == '/')
5281 4e68cba3 2019-11-23 stsp path++;
5282 4e68cba3 2019-11-23 stsp printf("%c %s\n", status, path);
5283 4e68cba3 2019-11-23 stsp return NULL;
5284 4e68cba3 2019-11-23 stsp }
5285 4e68cba3 2019-11-23 stsp
5286 4e68cba3 2019-11-23 stsp static const struct got_error *
5287 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
5288 d00136be 2019-03-26 stsp {
5289 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
5290 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
5291 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
5292 1dd54920 2019-05-11 stsp char *cwd = NULL;
5293 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
5294 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
5295 022fae89 2019-12-06 tracey int ch, can_recurse = 0, no_ignores = 0;
5296 1dd54920 2019-05-11 stsp
5297 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
5298 d00136be 2019-03-26 stsp
5299 022fae89 2019-12-06 tracey while ((ch = getopt(argc, argv, "IR")) != -1) {
5300 d00136be 2019-03-26 stsp switch (ch) {
5301 022fae89 2019-12-06 tracey case 'I':
5302 022fae89 2019-12-06 tracey no_ignores = 1;
5303 022fae89 2019-12-06 tracey break;
5304 4e68cba3 2019-11-23 stsp case 'R':
5305 4e68cba3 2019-11-23 stsp can_recurse = 1;
5306 4e68cba3 2019-11-23 stsp break;
5307 d00136be 2019-03-26 stsp default:
5308 d00136be 2019-03-26 stsp usage_add();
5309 d00136be 2019-03-26 stsp /* NOTREACHED */
5310 d00136be 2019-03-26 stsp }
5311 d00136be 2019-03-26 stsp }
5312 d00136be 2019-03-26 stsp
5313 d00136be 2019-03-26 stsp argc -= optind;
5314 d00136be 2019-03-26 stsp argv += optind;
5315 d00136be 2019-03-26 stsp
5316 43012d58 2019-07-14 stsp #ifndef PROFILE
5317 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5318 43012d58 2019-07-14 stsp NULL) == -1)
5319 43012d58 2019-07-14 stsp err(1, "pledge");
5320 43012d58 2019-07-14 stsp #endif
5321 723c305c 2019-05-11 jcs if (argc < 1)
5322 d00136be 2019-03-26 stsp usage_add();
5323 d00136be 2019-03-26 stsp
5324 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
5325 d00136be 2019-03-26 stsp if (cwd == NULL) {
5326 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5327 d00136be 2019-03-26 stsp goto done;
5328 d00136be 2019-03-26 stsp }
5329 723c305c 2019-05-11 jcs
5330 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
5331 d00136be 2019-03-26 stsp if (error)
5332 d00136be 2019-03-26 stsp goto done;
5333 d00136be 2019-03-26 stsp
5334 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5335 c9956ddf 2019-09-08 stsp NULL);
5336 031a5338 2019-03-26 stsp if (error != NULL)
5337 031a5338 2019-03-26 stsp goto done;
5338 031a5338 2019-03-26 stsp
5339 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
5340 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5341 d00136be 2019-03-26 stsp if (error)
5342 d00136be 2019-03-26 stsp goto done;
5343 d00136be 2019-03-26 stsp
5344 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5345 6d022e97 2019-08-04 stsp if (error)
5346 022fae89 2019-12-06 tracey goto done;
5347 022fae89 2019-12-06 tracey
5348 022fae89 2019-12-06 tracey if (!can_recurse && no_ignores) {
5349 022fae89 2019-12-06 tracey error = got_error_msg(GOT_ERR_BAD_PATH,
5350 022fae89 2019-12-06 tracey "disregarding ignores requires -R option");
5351 6d022e97 2019-08-04 stsp goto done;
5352 723c305c 2019-05-11 jcs
5353 022fae89 2019-12-06 tracey }
5354 022fae89 2019-12-06 tracey
5355 4e68cba3 2019-11-23 stsp if (!can_recurse) {
5356 4e68cba3 2019-11-23 stsp char *ondisk_path;
5357 4e68cba3 2019-11-23 stsp struct stat sb;
5358 4e68cba3 2019-11-23 stsp TAILQ_FOREACH(pe, &paths, entry) {
5359 4e68cba3 2019-11-23 stsp if (asprintf(&ondisk_path, "%s/%s",
5360 4e68cba3 2019-11-23 stsp got_worktree_get_root_path(worktree),
5361 4e68cba3 2019-11-23 stsp pe->path) == -1) {
5362 4e68cba3 2019-11-23 stsp error = got_error_from_errno("asprintf");
5363 4e68cba3 2019-11-23 stsp goto done;
5364 4e68cba3 2019-11-23 stsp }
5365 4e68cba3 2019-11-23 stsp if (lstat(ondisk_path, &sb) == -1) {
5366 4e68cba3 2019-11-23 stsp if (errno == ENOENT) {
5367 4e68cba3 2019-11-23 stsp free(ondisk_path);
5368 4e68cba3 2019-11-23 stsp continue;
5369 4e68cba3 2019-11-23 stsp }
5370 4e68cba3 2019-11-23 stsp error = got_error_from_errno2("lstat",
5371 4e68cba3 2019-11-23 stsp ondisk_path);
5372 4e68cba3 2019-11-23 stsp free(ondisk_path);
5373 4e68cba3 2019-11-23 stsp goto done;
5374 4e68cba3 2019-11-23 stsp }
5375 4e68cba3 2019-11-23 stsp free(ondisk_path);
5376 4e68cba3 2019-11-23 stsp if (S_ISDIR(sb.st_mode)) {
5377 4e68cba3 2019-11-23 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
5378 4e68cba3 2019-11-23 stsp "adding directories requires -R option");
5379 4e68cba3 2019-11-23 stsp goto done;
5380 4e68cba3 2019-11-23 stsp }
5381 4e68cba3 2019-11-23 stsp }
5382 4e68cba3 2019-11-23 stsp }
5383 022fae89 2019-12-06 tracey
5384 4e68cba3 2019-11-23 stsp error = got_worktree_schedule_add(worktree, &paths, add_progress,
5385 022fae89 2019-12-06 tracey NULL, repo, no_ignores);
5386 d00136be 2019-03-26 stsp done:
5387 031a5338 2019-03-26 stsp if (repo)
5388 031a5338 2019-03-26 stsp got_repo_close(repo);
5389 d00136be 2019-03-26 stsp if (worktree)
5390 d00136be 2019-03-26 stsp got_worktree_close(worktree);
5391 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
5392 1dd54920 2019-05-11 stsp free((char *)pe->path);
5393 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
5394 2ec1f75b 2019-03-26 stsp free(cwd);
5395 2ec1f75b 2019-03-26 stsp return error;
5396 2ec1f75b 2019-03-26 stsp }
5397 2ec1f75b 2019-03-26 stsp
5398 2ec1f75b 2019-03-26 stsp __dead static void
5399 648e4ef7 2019-07-09 stsp usage_remove(void)
5400 2ec1f75b 2019-03-26 stsp {
5401 c29c428a 2019-12-16 stsp fprintf(stderr, "usage: %s remove [-f] [-k] [-R] path ...\n",
5402 f2a9dc41 2019-12-13 tracey getprogname());
5403 2ec1f75b 2019-03-26 stsp exit(1);
5404 2a06fe5f 2019-08-24 stsp }
5405 2a06fe5f 2019-08-24 stsp
5406 2a06fe5f 2019-08-24 stsp static const struct got_error *
5407 2a06fe5f 2019-08-24 stsp print_remove_status(void *arg, unsigned char status,
5408 f2a9dc41 2019-12-13 tracey unsigned char staged_status, const char *path)
5409 2a06fe5f 2019-08-24 stsp {
5410 f2a9dc41 2019-12-13 tracey while (path[0] == '/')
5411 f2a9dc41 2019-12-13 tracey path++;
5412 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
5413 2a06fe5f 2019-08-24 stsp return NULL;
5414 2a06fe5f 2019-08-24 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
5415 2a06fe5f 2019-08-24 stsp status = GOT_STATUS_NO_CHANGE;
5416 2a06fe5f 2019-08-24 stsp printf("%c%c %s\n", status, staged_status, path);
5417 2a06fe5f 2019-08-24 stsp return NULL;
5418 2ec1f75b 2019-03-26 stsp }
5419 2ec1f75b 2019-03-26 stsp
5420 2ec1f75b 2019-03-26 stsp static const struct got_error *
5421 648e4ef7 2019-07-09 stsp cmd_remove(int argc, char *argv[])
5422 2ec1f75b 2019-03-26 stsp {
5423 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
5424 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
5425 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
5426 17ed4618 2019-06-02 stsp char *cwd = NULL;
5427 17ed4618 2019-06-02 stsp struct got_pathlist_head paths;
5428 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
5429 70e3e7f5 2019-12-13 tracey int ch, delete_local_mods = 0, can_recurse = 0, keep_on_disk = 0;
5430 2ec1f75b 2019-03-26 stsp
5431 17ed4618 2019-06-02 stsp TAILQ_INIT(&paths);
5432 17ed4618 2019-06-02 stsp
5433 70e3e7f5 2019-12-13 tracey while ((ch = getopt(argc, argv, "fkR")) != -1) {
5434 2ec1f75b 2019-03-26 stsp switch (ch) {
5435 2ec1f75b 2019-03-26 stsp case 'f':
5436 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
5437 2ec1f75b 2019-03-26 stsp break;
5438 70e3e7f5 2019-12-13 tracey case 'k':
5439 70e3e7f5 2019-12-13 tracey keep_on_disk = 1;
5440 70e3e7f5 2019-12-13 tracey break;
5441 f2a9dc41 2019-12-13 tracey case 'R':
5442 f2a9dc41 2019-12-13 tracey can_recurse = 1;
5443 f2a9dc41 2019-12-13 tracey break;
5444 2ec1f75b 2019-03-26 stsp default:
5445 f2a9dc41 2019-12-13 tracey usage_remove();
5446 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
5447 2ec1f75b 2019-03-26 stsp }
5448 2ec1f75b 2019-03-26 stsp }
5449 2ec1f75b 2019-03-26 stsp
5450 2ec1f75b 2019-03-26 stsp argc -= optind;
5451 2ec1f75b 2019-03-26 stsp argv += optind;
5452 2ec1f75b 2019-03-26 stsp
5453 43012d58 2019-07-14 stsp #ifndef PROFILE
5454 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5455 43012d58 2019-07-14 stsp NULL) == -1)
5456 43012d58 2019-07-14 stsp err(1, "pledge");
5457 43012d58 2019-07-14 stsp #endif
5458 17ed4618 2019-06-02 stsp if (argc < 1)
5459 648e4ef7 2019-07-09 stsp usage_remove();
5460 2ec1f75b 2019-03-26 stsp
5461 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
5462 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
5463 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5464 2ec1f75b 2019-03-26 stsp goto done;
5465 2ec1f75b 2019-03-26 stsp }
5466 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
5467 2ec1f75b 2019-03-26 stsp if (error)
5468 2ec1f75b 2019-03-26 stsp goto done;
5469 2ec1f75b 2019-03-26 stsp
5470 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5471 c9956ddf 2019-09-08 stsp NULL);
5472 2af4a041 2019-05-11 jcs if (error)
5473 2ec1f75b 2019-03-26 stsp goto done;
5474 2ec1f75b 2019-03-26 stsp
5475 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
5476 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5477 2ec1f75b 2019-03-26 stsp if (error)
5478 2ec1f75b 2019-03-26 stsp goto done;
5479 2ec1f75b 2019-03-26 stsp
5480 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5481 6d022e97 2019-08-04 stsp if (error)
5482 6d022e97 2019-08-04 stsp goto done;
5483 17ed4618 2019-06-02 stsp
5484 f2a9dc41 2019-12-13 tracey if (!can_recurse) {
5485 f2a9dc41 2019-12-13 tracey char *ondisk_path;
5486 f2a9dc41 2019-12-13 tracey struct stat sb;
5487 f2a9dc41 2019-12-13 tracey TAILQ_FOREACH(pe, &paths, entry) {
5488 f2a9dc41 2019-12-13 tracey if (asprintf(&ondisk_path, "%s/%s",
5489 f2a9dc41 2019-12-13 tracey got_worktree_get_root_path(worktree),
5490 f2a9dc41 2019-12-13 tracey pe->path) == -1) {
5491 f2a9dc41 2019-12-13 tracey error = got_error_from_errno("asprintf");
5492 f2a9dc41 2019-12-13 tracey goto done;
5493 f2a9dc41 2019-12-13 tracey }
5494 f2a9dc41 2019-12-13 tracey if (lstat(ondisk_path, &sb) == -1) {
5495 f2a9dc41 2019-12-13 tracey if (errno == ENOENT) {
5496 f2a9dc41 2019-12-13 tracey free(ondisk_path);
5497 f2a9dc41 2019-12-13 tracey continue;
5498 f2a9dc41 2019-12-13 tracey }
5499 f2a9dc41 2019-12-13 tracey error = got_error_from_errno2("lstat",
5500 f2a9dc41 2019-12-13 tracey ondisk_path);
5501 f2a9dc41 2019-12-13 tracey free(ondisk_path);
5502 f2a9dc41 2019-12-13 tracey goto done;
5503 f2a9dc41 2019-12-13 tracey }
5504 f2a9dc41 2019-12-13 tracey free(ondisk_path);
5505 f2a9dc41 2019-12-13 tracey if (S_ISDIR(sb.st_mode)) {
5506 f2a9dc41 2019-12-13 tracey error = got_error_msg(GOT_ERR_BAD_PATH,
5507 f2a9dc41 2019-12-13 tracey "removing directories requires -R option");
5508 f2a9dc41 2019-12-13 tracey goto done;
5509 f2a9dc41 2019-12-13 tracey }
5510 f2a9dc41 2019-12-13 tracey }
5511 f2a9dc41 2019-12-13 tracey }
5512 f2a9dc41 2019-12-13 tracey
5513 17ed4618 2019-06-02 stsp error = got_worktree_schedule_delete(worktree, &paths,
5514 70e3e7f5 2019-12-13 tracey delete_local_mods, print_remove_status, NULL, repo, keep_on_disk);
5515 a129376b 2019-03-28 stsp done:
5516 a129376b 2019-03-28 stsp if (repo)
5517 a129376b 2019-03-28 stsp got_repo_close(repo);
5518 a129376b 2019-03-28 stsp if (worktree)
5519 a129376b 2019-03-28 stsp got_worktree_close(worktree);
5520 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, &paths, entry)
5521 17ed4618 2019-06-02 stsp free((char *)pe->path);
5522 17ed4618 2019-06-02 stsp got_pathlist_free(&paths);
5523 a129376b 2019-03-28 stsp free(cwd);
5524 a129376b 2019-03-28 stsp return error;
5525 a129376b 2019-03-28 stsp }
5526 a129376b 2019-03-28 stsp
5527 a129376b 2019-03-28 stsp __dead static void
5528 a129376b 2019-03-28 stsp usage_revert(void)
5529 a129376b 2019-03-28 stsp {
5530 33aa809d 2019-08-08 stsp fprintf(stderr, "usage: %s revert [-p] [-F response-script] [-R] "
5531 33aa809d 2019-08-08 stsp "path ...\n", getprogname());
5532 a129376b 2019-03-28 stsp exit(1);
5533 a129376b 2019-03-28 stsp }
5534 a129376b 2019-03-28 stsp
5535 1ee397ad 2019-07-12 stsp static const struct got_error *
5536 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
5537 a129376b 2019-03-28 stsp {
5538 fb9704af 2020-01-27 stsp if (status == GOT_STATUS_UNVERSIONED)
5539 fb9704af 2020-01-27 stsp return NULL;
5540 fb9704af 2020-01-27 stsp
5541 a129376b 2019-03-28 stsp while (path[0] == '/')
5542 a129376b 2019-03-28 stsp path++;
5543 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
5544 33aa809d 2019-08-08 stsp return NULL;
5545 33aa809d 2019-08-08 stsp }
5546 33aa809d 2019-08-08 stsp
5547 33aa809d 2019-08-08 stsp struct choose_patch_arg {
5548 33aa809d 2019-08-08 stsp FILE *patch_script_file;
5549 33aa809d 2019-08-08 stsp const char *action;
5550 33aa809d 2019-08-08 stsp };
5551 33aa809d 2019-08-08 stsp
5552 33aa809d 2019-08-08 stsp static const struct got_error *
5553 33aa809d 2019-08-08 stsp show_change(unsigned char status, const char *path, FILE *patch_file, int n,
5554 33aa809d 2019-08-08 stsp int nchanges, const char *action)
5555 33aa809d 2019-08-08 stsp {
5556 33aa809d 2019-08-08 stsp char *line = NULL;
5557 33aa809d 2019-08-08 stsp size_t linesize = 0;
5558 33aa809d 2019-08-08 stsp ssize_t linelen;
5559 33aa809d 2019-08-08 stsp
5560 33aa809d 2019-08-08 stsp switch (status) {
5561 33aa809d 2019-08-08 stsp case GOT_STATUS_ADD:
5562 33aa809d 2019-08-08 stsp printf("A %s\n%s this addition? [y/n] ", path, action);
5563 33aa809d 2019-08-08 stsp break;
5564 33aa809d 2019-08-08 stsp case GOT_STATUS_DELETE:
5565 33aa809d 2019-08-08 stsp printf("D %s\n%s this deletion? [y/n] ", path, action);
5566 33aa809d 2019-08-08 stsp break;
5567 33aa809d 2019-08-08 stsp case GOT_STATUS_MODIFY:
5568 33aa809d 2019-08-08 stsp if (fseek(patch_file, 0L, SEEK_SET) == -1)
5569 33aa809d 2019-08-08 stsp return got_error_from_errno("fseek");
5570 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
5571 9516e7cb 2019-08-11 stsp while ((linelen = getline(&line, &linesize, patch_file)) != -1)
5572 33aa809d 2019-08-08 stsp printf("%s", line);
5573 33aa809d 2019-08-08 stsp if (ferror(patch_file))
5574 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
5575 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
5576 33aa809d 2019-08-08 stsp printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
5577 33aa809d 2019-08-08 stsp path, n, nchanges, action);
5578 33aa809d 2019-08-08 stsp break;
5579 33aa809d 2019-08-08 stsp default:
5580 33aa809d 2019-08-08 stsp return got_error_path(path, GOT_ERR_FILE_STATUS);
5581 33aa809d 2019-08-08 stsp }
5582 33aa809d 2019-08-08 stsp
5583 33aa809d 2019-08-08 stsp return NULL;
5584 33aa809d 2019-08-08 stsp }
5585 33aa809d 2019-08-08 stsp
5586 33aa809d 2019-08-08 stsp static const struct got_error *
5587 33aa809d 2019-08-08 stsp choose_patch(int *choice, void *arg, unsigned char status, const char *path,
5588 33aa809d 2019-08-08 stsp FILE *patch_file, int n, int nchanges)
5589 33aa809d 2019-08-08 stsp {
5590 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
5591 33aa809d 2019-08-08 stsp char *line = NULL;
5592 33aa809d 2019-08-08 stsp size_t linesize = 0;
5593 33aa809d 2019-08-08 stsp ssize_t linelen;
5594 33aa809d 2019-08-08 stsp int resp = ' ';
5595 33aa809d 2019-08-08 stsp struct choose_patch_arg *a = arg;
5596 33aa809d 2019-08-08 stsp
5597 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NONE;
5598 33aa809d 2019-08-08 stsp
5599 33aa809d 2019-08-08 stsp if (a->patch_script_file) {
5600 33aa809d 2019-08-08 stsp char *nl;
5601 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
5602 33aa809d 2019-08-08 stsp a->action);
5603 33aa809d 2019-08-08 stsp if (err)
5604 33aa809d 2019-08-08 stsp return err;
5605 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, a->patch_script_file);
5606 33aa809d 2019-08-08 stsp if (linelen == -1) {
5607 33aa809d 2019-08-08 stsp if (ferror(a->patch_script_file))
5608 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
5609 33aa809d 2019-08-08 stsp return NULL;
5610 33aa809d 2019-08-08 stsp }
5611 33aa809d 2019-08-08 stsp nl = strchr(line, '\n');
5612 33aa809d 2019-08-08 stsp if (nl)
5613 33aa809d 2019-08-08 stsp *nl = '\0';
5614 33aa809d 2019-08-08 stsp if (strcmp(line, "y") == 0) {
5615 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
5616 33aa809d 2019-08-08 stsp printf("y\n");
5617 33aa809d 2019-08-08 stsp } else if (strcmp(line, "n") == 0) {
5618 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
5619 33aa809d 2019-08-08 stsp printf("n\n");
5620 33aa809d 2019-08-08 stsp } else if (strcmp(line, "q") == 0 &&
5621 33aa809d 2019-08-08 stsp status == GOT_STATUS_MODIFY) {
5622 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
5623 33aa809d 2019-08-08 stsp printf("q\n");
5624 33aa809d 2019-08-08 stsp } else
5625 33aa809d 2019-08-08 stsp printf("invalid response '%s'\n", line);
5626 33aa809d 2019-08-08 stsp free(line);
5627 33aa809d 2019-08-08 stsp return NULL;
5628 33aa809d 2019-08-08 stsp }
5629 33aa809d 2019-08-08 stsp
5630 33aa809d 2019-08-08 stsp while (resp != 'y' && resp != 'n' && resp != 'q') {
5631 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
5632 33aa809d 2019-08-08 stsp a->action);
5633 33aa809d 2019-08-08 stsp if (err)
5634 33aa809d 2019-08-08 stsp return err;
5635 33aa809d 2019-08-08 stsp resp = getchar();
5636 33aa809d 2019-08-08 stsp if (resp == '\n')
5637 33aa809d 2019-08-08 stsp resp = getchar();
5638 33aa809d 2019-08-08 stsp if (status == GOT_STATUS_MODIFY) {
5639 33aa809d 2019-08-08 stsp if (resp != 'y' && resp != 'n' && resp != 'q') {
5640 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
5641 33aa809d 2019-08-08 stsp resp = ' ';
5642 33aa809d 2019-08-08 stsp }
5643 33aa809d 2019-08-08 stsp } else if (resp != 'y' && resp != 'n') {
5644 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
5645 33aa809d 2019-08-08 stsp resp = ' ';
5646 33aa809d 2019-08-08 stsp }
5647 33aa809d 2019-08-08 stsp }
5648 33aa809d 2019-08-08 stsp
5649 33aa809d 2019-08-08 stsp if (resp == 'y')
5650 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
5651 33aa809d 2019-08-08 stsp else if (resp == 'n')
5652 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
5653 33aa809d 2019-08-08 stsp else if (resp == 'q' && status == GOT_STATUS_MODIFY)
5654 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
5655 33aa809d 2019-08-08 stsp
5656 1ee397ad 2019-07-12 stsp return NULL;
5657 a129376b 2019-03-28 stsp }
5658 a129376b 2019-03-28 stsp
5659 33aa809d 2019-08-08 stsp
5660 a129376b 2019-03-28 stsp static const struct got_error *
5661 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
5662 a129376b 2019-03-28 stsp {
5663 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
5664 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
5665 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
5666 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
5667 e20a8b6f 2019-06-04 stsp struct got_pathlist_head paths;
5668 0f6d7415 2019-08-08 stsp struct got_pathlist_entry *pe;
5669 33aa809d 2019-08-08 stsp int ch, can_recurse = 0, pflag = 0;
5670 33aa809d 2019-08-08 stsp FILE *patch_script_file = NULL;
5671 33aa809d 2019-08-08 stsp const char *patch_script_path = NULL;
5672 33aa809d 2019-08-08 stsp struct choose_patch_arg cpa;
5673 a129376b 2019-03-28 stsp
5674 e20a8b6f 2019-06-04 stsp TAILQ_INIT(&paths);
5675 e20a8b6f 2019-06-04 stsp
5676 33aa809d 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:R")) != -1) {
5677 a129376b 2019-03-28 stsp switch (ch) {
5678 33aa809d 2019-08-08 stsp case 'p':
5679 33aa809d 2019-08-08 stsp pflag = 1;
5680 33aa809d 2019-08-08 stsp break;
5681 33aa809d 2019-08-08 stsp case 'F':
5682 33aa809d 2019-08-08 stsp patch_script_path = optarg;
5683 33aa809d 2019-08-08 stsp break;
5684 0f6d7415 2019-08-08 stsp case 'R':
5685 0f6d7415 2019-08-08 stsp can_recurse = 1;
5686 0f6d7415 2019-08-08 stsp break;
5687 a129376b 2019-03-28 stsp default:
5688 a129376b 2019-03-28 stsp usage_revert();
5689 a129376b 2019-03-28 stsp /* NOTREACHED */
5690 a129376b 2019-03-28 stsp }
5691 a129376b 2019-03-28 stsp }
5692 a129376b 2019-03-28 stsp
5693 a129376b 2019-03-28 stsp argc -= optind;
5694 a129376b 2019-03-28 stsp argv += optind;
5695 a129376b 2019-03-28 stsp
5696 43012d58 2019-07-14 stsp #ifndef PROFILE
5697 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
5698 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
5699 43012d58 2019-07-14 stsp err(1, "pledge");
5700 43012d58 2019-07-14 stsp #endif
5701 e20a8b6f 2019-06-04 stsp if (argc < 1)
5702 a129376b 2019-03-28 stsp usage_revert();
5703 33aa809d 2019-08-08 stsp if (patch_script_path && !pflag)
5704 33aa809d 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
5705 a129376b 2019-03-28 stsp
5706 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
5707 a129376b 2019-03-28 stsp if (cwd == NULL) {
5708 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5709 a129376b 2019-03-28 stsp goto done;
5710 a129376b 2019-03-28 stsp }
5711 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
5712 2ec1f75b 2019-03-26 stsp if (error)
5713 2ec1f75b 2019-03-26 stsp goto done;
5714 a129376b 2019-03-28 stsp
5715 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5716 c9956ddf 2019-09-08 stsp NULL);
5717 a129376b 2019-03-28 stsp if (error != NULL)
5718 a129376b 2019-03-28 stsp goto done;
5719 a129376b 2019-03-28 stsp
5720 33aa809d 2019-08-08 stsp if (patch_script_path) {
5721 33aa809d 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
5722 33aa809d 2019-08-08 stsp if (patch_script_file == NULL) {
5723 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fopen",
5724 33aa809d 2019-08-08 stsp patch_script_path);
5725 33aa809d 2019-08-08 stsp goto done;
5726 33aa809d 2019-08-08 stsp }
5727 33aa809d 2019-08-08 stsp }
5728 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
5729 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5730 a129376b 2019-03-28 stsp if (error)
5731 a129376b 2019-03-28 stsp goto done;
5732 a129376b 2019-03-28 stsp
5733 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5734 6d022e97 2019-08-04 stsp if (error)
5735 6d022e97 2019-08-04 stsp goto done;
5736 00db391e 2019-08-03 stsp
5737 0f6d7415 2019-08-08 stsp if (!can_recurse) {
5738 0f6d7415 2019-08-08 stsp char *ondisk_path;
5739 0f6d7415 2019-08-08 stsp struct stat sb;
5740 0f6d7415 2019-08-08 stsp TAILQ_FOREACH(pe, &paths, entry) {
5741 0f6d7415 2019-08-08 stsp if (asprintf(&ondisk_path, "%s/%s",
5742 0f6d7415 2019-08-08 stsp got_worktree_get_root_path(worktree),
5743 0f6d7415 2019-08-08 stsp pe->path) == -1) {
5744 0f6d7415 2019-08-08 stsp error = got_error_from_errno("asprintf");
5745 0f6d7415 2019-08-08 stsp goto done;
5746 0f6d7415 2019-08-08 stsp }
5747 0f6d7415 2019-08-08 stsp if (lstat(ondisk_path, &sb) == -1) {
5748 0f6d7415 2019-08-08 stsp if (errno == ENOENT) {
5749 0f6d7415 2019-08-08 stsp free(ondisk_path);
5750 0f6d7415 2019-08-08 stsp continue;
5751 0f6d7415 2019-08-08 stsp }
5752 0f6d7415 2019-08-08 stsp error = got_error_from_errno2("lstat",
5753 0f6d7415 2019-08-08 stsp ondisk_path);
5754 0f6d7415 2019-08-08 stsp free(ondisk_path);
5755 0f6d7415 2019-08-08 stsp goto done;
5756 0f6d7415 2019-08-08 stsp }
5757 0f6d7415 2019-08-08 stsp free(ondisk_path);
5758 0f6d7415 2019-08-08 stsp if (S_ISDIR(sb.st_mode)) {
5759 0f6d7415 2019-08-08 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
5760 0f6d7415 2019-08-08 stsp "reverting directories requires -R option");
5761 0f6d7415 2019-08-08 stsp goto done;
5762 0f6d7415 2019-08-08 stsp }
5763 0f6d7415 2019-08-08 stsp }
5764 0f6d7415 2019-08-08 stsp }
5765 0f6d7415 2019-08-08 stsp
5766 33aa809d 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
5767 33aa809d 2019-08-08 stsp cpa.action = "revert";
5768 33aa809d 2019-08-08 stsp error = got_worktree_revert(worktree, &paths, revert_progress, NULL,
5769 33aa809d 2019-08-08 stsp pflag ? choose_patch : NULL, &cpa, repo);
5770 2ec1f75b 2019-03-26 stsp done:
5771 33aa809d 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
5772 33aa809d 2019-08-08 stsp error == NULL)
5773 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
5774 2ec1f75b 2019-03-26 stsp if (repo)
5775 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
5776 2ec1f75b 2019-03-26 stsp if (worktree)
5777 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
5778 2ec1f75b 2019-03-26 stsp free(path);
5779 d00136be 2019-03-26 stsp free(cwd);
5780 6bad629b 2019-02-04 stsp return error;
5781 c4296144 2019-05-09 stsp }
5782 c4296144 2019-05-09 stsp
5783 c4296144 2019-05-09 stsp __dead static void
5784 c4296144 2019-05-09 stsp usage_commit(void)
5785 c4296144 2019-05-09 stsp {
5786 5c1e53bc 2019-07-28 stsp fprintf(stderr, "usage: %s commit [-m msg] [path ...]\n",
5787 5c1e53bc 2019-07-28 stsp getprogname());
5788 c4296144 2019-05-09 stsp exit(1);
5789 33ad4cbe 2019-05-12 jcs }
5790 33ad4cbe 2019-05-12 jcs
5791 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
5792 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
5793 e2ba3d07 2019-05-13 stsp const char *editor;
5794 e0870e44 2019-05-13 stsp const char *worktree_path;
5795 76d98825 2019-06-03 stsp const char *branch_name;
5796 314a6357 2019-05-13 stsp const char *repo_path;
5797 e0870e44 2019-05-13 stsp char *logmsg_path;
5798 e2ba3d07 2019-05-13 stsp
5799 e2ba3d07 2019-05-13 stsp };
5800 e0870e44 2019-05-13 stsp
5801 33ad4cbe 2019-05-12 jcs static const struct got_error *
5802 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
5803 33ad4cbe 2019-05-12 jcs void *arg)
5804 33ad4cbe 2019-05-12 jcs {
5805 76d98825 2019-06-03 stsp char *initial_content = NULL;
5806 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
5807 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
5808 e0870e44 2019-05-13 stsp char *template = NULL;
5809 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
5810 3ce1b845 2019-07-15 stsp int fd;
5811 33ad4cbe 2019-05-12 jcs size_t len;
5812 33ad4cbe 2019-05-12 jcs
5813 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
5814 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
5815 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
5816 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
5817 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
5818 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
5819 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
5820 33ad4cbe 2019-05-12 jcs return NULL;
5821 33ad4cbe 2019-05-12 jcs }
5822 33ad4cbe 2019-05-12 jcs
5823 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
5824 76d98825 2019-06-03 stsp return got_error_from_errno("asprintf");
5825 76d98825 2019-06-03 stsp
5826 76d98825 2019-06-03 stsp if (asprintf(&initial_content,
5827 76d98825 2019-06-03 stsp "\n# changes to be committed on branch %s:\n",
5828 76d98825 2019-06-03 stsp a->branch_name) == -1)
5829 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
5830 e0870e44 2019-05-13 stsp
5831 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
5832 793c30b5 2019-05-13 stsp if (err)
5833 e0870e44 2019-05-13 stsp goto done;
5834 33ad4cbe 2019-05-12 jcs
5835 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
5836 33ad4cbe 2019-05-12 jcs
5837 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
5838 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
5839 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
5840 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
5841 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
5842 33ad4cbe 2019-05-12 jcs }
5843 33ad4cbe 2019-05-12 jcs close(fd);
5844 33ad4cbe 2019-05-12 jcs
5845 3ce1b845 2019-07-15 stsp err = edit_logmsg(logmsg, a->editor, a->logmsg_path, initial_content);
5846 33ad4cbe 2019-05-12 jcs done:
5847 76d98825 2019-06-03 stsp free(initial_content);
5848 e0870e44 2019-05-13 stsp free(template);
5849 314a6357 2019-05-13 stsp
5850 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
5851 3ce1b845 2019-07-15 stsp if (err == NULL) {
5852 c530dc23 2019-07-23 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path);
5853 3ce1b845 2019-07-15 stsp if (err) {
5854 3ce1b845 2019-07-15 stsp free(*logmsg);
5855 3ce1b845 2019-07-15 stsp *logmsg = NULL;
5856 3ce1b845 2019-07-15 stsp }
5857 3ce1b845 2019-07-15 stsp }
5858 33ad4cbe 2019-05-12 jcs return err;
5859 6bad629b 2019-02-04 stsp }
5860 c4296144 2019-05-09 stsp
5861 c4296144 2019-05-09 stsp static const struct got_error *
5862 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
5863 c4296144 2019-05-09 stsp {
5864 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
5865 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
5866 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
5867 5c1e53bc 2019-07-28 stsp char *cwd = NULL, *id_str = NULL;
5868 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
5869 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
5870 aba9c984 2019-09-08 stsp struct collect_commit_logmsg_arg cl_arg;
5871 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
5872 7266f21f 2019-10-21 stsp int ch, rebase_in_progress, histedit_in_progress, preserve_logmsg = 0;
5873 5c1e53bc 2019-07-28 stsp struct got_pathlist_head paths;
5874 5c1e53bc 2019-07-28 stsp
5875 5c1e53bc 2019-07-28 stsp TAILQ_INIT(&paths);
5876 6ac5a73c 2019-08-08 stsp cl_arg.logmsg_path = NULL;
5877 c4296144 2019-05-09 stsp
5878 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
5879 c4296144 2019-05-09 stsp switch (ch) {
5880 c4296144 2019-05-09 stsp case 'm':
5881 c4296144 2019-05-09 stsp logmsg = optarg;
5882 c4296144 2019-05-09 stsp break;
5883 c4296144 2019-05-09 stsp default:
5884 c4296144 2019-05-09 stsp usage_commit();
5885 c4296144 2019-05-09 stsp /* NOTREACHED */
5886 c4296144 2019-05-09 stsp }
5887 c4296144 2019-05-09 stsp }
5888 c4296144 2019-05-09 stsp
5889 c4296144 2019-05-09 stsp argc -= optind;
5890 c4296144 2019-05-09 stsp argv += optind;
5891 c4296144 2019-05-09 stsp
5892 43012d58 2019-07-14 stsp #ifndef PROFILE
5893 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
5894 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
5895 43012d58 2019-07-14 stsp err(1, "pledge");
5896 43012d58 2019-07-14 stsp #endif
5897 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
5898 c4296144 2019-05-09 stsp if (cwd == NULL) {
5899 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5900 c4296144 2019-05-09 stsp goto done;
5901 c4296144 2019-05-09 stsp }
5902 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
5903 7d5807f4 2019-07-11 stsp if (error)
5904 7d5807f4 2019-07-11 stsp goto done;
5905 7d5807f4 2019-07-11 stsp
5906 a698f62e 2019-07-25 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
5907 c4296144 2019-05-09 stsp if (error)
5908 a698f62e 2019-07-25 stsp goto done;
5909 a698f62e 2019-07-25 stsp if (rebase_in_progress) {
5910 a698f62e 2019-07-25 stsp error = got_error(GOT_ERR_REBASING);
5911 c4296144 2019-05-09 stsp goto done;
5912 a698f62e 2019-07-25 stsp }
5913 5c1e53bc 2019-07-28 stsp
5914 916f288c 2019-07-30 stsp error = got_worktree_histedit_in_progress(&histedit_in_progress,
5915 916f288c 2019-07-30 stsp worktree);
5916 5c1e53bc 2019-07-28 stsp if (error)
5917 5c1e53bc 2019-07-28 stsp goto done;
5918 c4296144 2019-05-09 stsp
5919 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
5920 c9956ddf 2019-09-08 stsp if (error)
5921 c9956ddf 2019-09-08 stsp goto done;
5922 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5923 c9956ddf 2019-09-08 stsp gitconfig_path);
5924 c4296144 2019-05-09 stsp if (error != NULL)
5925 c4296144 2019-05-09 stsp goto done;
5926 c4296144 2019-05-09 stsp
5927 aba9c984 2019-09-08 stsp error = get_author(&author, repo);
5928 aba9c984 2019-09-08 stsp if (error)
5929 aba9c984 2019-09-08 stsp return error;
5930 aba9c984 2019-09-08 stsp
5931 314a6357 2019-05-13 stsp /*
5932 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
5933 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
5934 314a6357 2019-05-13 stsp */
5935 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
5936 314a6357 2019-05-13 stsp error = get_editor(&editor);
5937 314a6357 2019-05-13 stsp else
5938 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
5939 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5940 c4296144 2019-05-09 stsp if (error)
5941 c4296144 2019-05-09 stsp goto done;
5942 c4296144 2019-05-09 stsp
5943 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5944 087fb88c 2019-08-04 stsp if (error)
5945 087fb88c 2019-08-04 stsp goto done;
5946 087fb88c 2019-08-04 stsp
5947 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
5948 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
5949 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
5950 76d98825 2019-06-03 stsp cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
5951 916f288c 2019-07-30 stsp if (!histedit_in_progress) {
5952 916f288c 2019-07-30 stsp if (strncmp(cl_arg.branch_name, "refs/heads/", 11) != 0) {
5953 916f288c 2019-07-30 stsp error = got_error(GOT_ERR_COMMIT_BRANCH);
5954 916f288c 2019-07-30 stsp goto done;
5955 916f288c 2019-07-30 stsp }
5956 916f288c 2019-07-30 stsp cl_arg.branch_name += 11;
5957 916f288c 2019-07-30 stsp }
5958 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
5959 84792843 2019-08-09 stsp error = got_worktree_commit(&id, worktree, &paths, author, NULL,
5960 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
5961 e0870e44 2019-05-13 stsp if (error) {
5962 7266f21f 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
5963 7266f21f 2019-10-21 stsp cl_arg.logmsg_path != NULL)
5964 7266f21f 2019-10-21 stsp preserve_logmsg = 1;
5965 c4296144 2019-05-09 stsp goto done;
5966 e0870e44 2019-05-13 stsp }
5967 c4296144 2019-05-09 stsp
5968 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
5969 c4296144 2019-05-09 stsp if (error)
5970 c4296144 2019-05-09 stsp goto done;
5971 a7648d7a 2019-06-02 stsp printf("Created commit %s\n", id_str);
5972 c4296144 2019-05-09 stsp done:
5973 7266f21f 2019-10-21 stsp if (preserve_logmsg) {
5974 7266f21f 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
5975 7266f21f 2019-10-21 stsp getprogname(), cl_arg.logmsg_path);
5976 7266f21f 2019-10-21 stsp } else if (cl_arg.logmsg_path && unlink(cl_arg.logmsg_path) == -1 &&
5977 7266f21f 2019-10-21 stsp error == NULL)
5978 7266f21f 2019-10-21 stsp error = got_error_from_errno2("unlink", cl_arg.logmsg_path);
5979 6ac5a73c 2019-08-08 stsp free(cl_arg.logmsg_path);
5980 c4296144 2019-05-09 stsp if (repo)
5981 c4296144 2019-05-09 stsp got_repo_close(repo);
5982 c4296144 2019-05-09 stsp if (worktree)
5983 c4296144 2019-05-09 stsp got_worktree_close(worktree);
5984 c4296144 2019-05-09 stsp free(cwd);
5985 c4296144 2019-05-09 stsp free(id_str);
5986 c9956ddf 2019-09-08 stsp free(gitconfig_path);
5987 e2ba3d07 2019-05-13 stsp free(editor);
5988 aba9c984 2019-09-08 stsp free(author);
5989 234035bc 2019-06-01 stsp return error;
5990 234035bc 2019-06-01 stsp }
5991 234035bc 2019-06-01 stsp
5992 234035bc 2019-06-01 stsp __dead static void
5993 234035bc 2019-06-01 stsp usage_cherrypick(void)
5994 234035bc 2019-06-01 stsp {
5995 234035bc 2019-06-01 stsp fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
5996 234035bc 2019-06-01 stsp exit(1);
5997 234035bc 2019-06-01 stsp }
5998 234035bc 2019-06-01 stsp
5999 234035bc 2019-06-01 stsp static const struct got_error *
6000 234035bc 2019-06-01 stsp cmd_cherrypick(int argc, char *argv[])
6001 234035bc 2019-06-01 stsp {
6002 234035bc 2019-06-01 stsp const struct got_error *error = NULL;
6003 234035bc 2019-06-01 stsp struct got_worktree *worktree = NULL;
6004 234035bc 2019-06-01 stsp struct got_repository *repo = NULL;
6005 234035bc 2019-06-01 stsp char *cwd = NULL, *commit_id_str = NULL;
6006 234035bc 2019-06-01 stsp struct got_object_id *commit_id = NULL;
6007 234035bc 2019-06-01 stsp struct got_commit_object *commit = NULL;
6008 234035bc 2019-06-01 stsp struct got_object_qid *pid;
6009 234035bc 2019-06-01 stsp struct got_reference *head_ref = NULL;
6010 234035bc 2019-06-01 stsp int ch, did_something = 0;
6011 234035bc 2019-06-01 stsp
6012 234035bc 2019-06-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
6013 234035bc 2019-06-01 stsp switch (ch) {
6014 234035bc 2019-06-01 stsp default:
6015 234035bc 2019-06-01 stsp usage_cherrypick();
6016 234035bc 2019-06-01 stsp /* NOTREACHED */
6017 234035bc 2019-06-01 stsp }
6018 234035bc 2019-06-01 stsp }
6019 234035bc 2019-06-01 stsp
6020 234035bc 2019-06-01 stsp argc -= optind;
6021 234035bc 2019-06-01 stsp argv += optind;
6022 234035bc 2019-06-01 stsp
6023 43012d58 2019-07-14 stsp #ifndef PROFILE
6024 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6025 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
6026 43012d58 2019-07-14 stsp err(1, "pledge");
6027 43012d58 2019-07-14 stsp #endif
6028 234035bc 2019-06-01 stsp if (argc != 1)
6029 234035bc 2019-06-01 stsp usage_cherrypick();
6030 234035bc 2019-06-01 stsp
6031 234035bc 2019-06-01 stsp cwd = getcwd(NULL, 0);
6032 234035bc 2019-06-01 stsp if (cwd == NULL) {
6033 234035bc 2019-06-01 stsp error = got_error_from_errno("getcwd");
6034 234035bc 2019-06-01 stsp goto done;
6035 234035bc 2019-06-01 stsp }
6036 234035bc 2019-06-01 stsp error = got_worktree_open(&worktree, cwd);
6037 234035bc 2019-06-01 stsp if (error)
6038 234035bc 2019-06-01 stsp goto done;
6039 234035bc 2019-06-01 stsp
6040 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6041 c9956ddf 2019-09-08 stsp NULL);
6042 234035bc 2019-06-01 stsp if (error != NULL)
6043 234035bc 2019-06-01 stsp goto done;
6044 234035bc 2019-06-01 stsp
6045 234035bc 2019-06-01 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6046 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
6047 234035bc 2019-06-01 stsp if (error)
6048 234035bc 2019-06-01 stsp goto done;
6049 234035bc 2019-06-01 stsp
6050 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
6051 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
6052 234035bc 2019-06-01 stsp if (error != NULL) {
6053 234035bc 2019-06-01 stsp struct got_reference *ref;
6054 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
6055 234035bc 2019-06-01 stsp goto done;
6056 234035bc 2019-06-01 stsp error = got_ref_open(&ref, repo, argv[0], 0);
6057 234035bc 2019-06-01 stsp if (error != NULL)
6058 234035bc 2019-06-01 stsp goto done;
6059 234035bc 2019-06-01 stsp error = got_ref_resolve(&commit_id, repo, ref);
6060 234035bc 2019-06-01 stsp got_ref_close(ref);
6061 234035bc 2019-06-01 stsp if (error != NULL)
6062 234035bc 2019-06-01 stsp goto done;
6063 234035bc 2019-06-01 stsp }
6064 234035bc 2019-06-01 stsp error = got_object_id_str(&commit_id_str, commit_id);
6065 234035bc 2019-06-01 stsp if (error)
6066 234035bc 2019-06-01 stsp goto done;
6067 234035bc 2019-06-01 stsp
6068 234035bc 2019-06-01 stsp error = got_ref_open(&head_ref, repo,
6069 234035bc 2019-06-01 stsp got_worktree_get_head_ref_name(worktree), 0);
6070 234035bc 2019-06-01 stsp if (error != NULL)
6071 234035bc 2019-06-01 stsp goto done;
6072 234035bc 2019-06-01 stsp
6073 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
6074 234035bc 2019-06-01 stsp if (error) {
6075 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_ANCESTRY)
6076 234035bc 2019-06-01 stsp goto done;
6077 234035bc 2019-06-01 stsp error = NULL;
6078 234035bc 2019-06-01 stsp } else {
6079 234035bc 2019-06-01 stsp error = got_error(GOT_ERR_SAME_BRANCH);
6080 234035bc 2019-06-01 stsp goto done;
6081 234035bc 2019-06-01 stsp }
6082 234035bc 2019-06-01 stsp
6083 234035bc 2019-06-01 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6084 234035bc 2019-06-01 stsp if (error)
6085 234035bc 2019-06-01 stsp goto done;
6086 234035bc 2019-06-01 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
6087 03415a1a 2019-06-02 stsp error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
6088 03415a1a 2019-06-02 stsp commit_id, repo, update_progress, &did_something, check_cancelled,
6089 03415a1a 2019-06-02 stsp NULL);
6090 234035bc 2019-06-01 stsp if (error != NULL)
6091 234035bc 2019-06-01 stsp goto done;
6092 234035bc 2019-06-01 stsp
6093 234035bc 2019-06-01 stsp if (did_something)
6094 a7648d7a 2019-06-02 stsp printf("Merged commit %s\n", commit_id_str);
6095 234035bc 2019-06-01 stsp done:
6096 234035bc 2019-06-01 stsp if (commit)
6097 234035bc 2019-06-01 stsp got_object_commit_close(commit);
6098 234035bc 2019-06-01 stsp free(commit_id_str);
6099 234035bc 2019-06-01 stsp if (head_ref)
6100 234035bc 2019-06-01 stsp got_ref_close(head_ref);
6101 234035bc 2019-06-01 stsp if (worktree)
6102 234035bc 2019-06-01 stsp got_worktree_close(worktree);
6103 234035bc 2019-06-01 stsp if (repo)
6104 234035bc 2019-06-01 stsp got_repo_close(repo);
6105 c4296144 2019-05-09 stsp return error;
6106 c4296144 2019-05-09 stsp }
6107 5ef14e63 2019-06-02 stsp
6108 5ef14e63 2019-06-02 stsp __dead static void
6109 5ef14e63 2019-06-02 stsp usage_backout(void)
6110 5ef14e63 2019-06-02 stsp {
6111 5ef14e63 2019-06-02 stsp fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
6112 5ef14e63 2019-06-02 stsp exit(1);
6113 5ef14e63 2019-06-02 stsp }
6114 5ef14e63 2019-06-02 stsp
6115 5ef14e63 2019-06-02 stsp static const struct got_error *
6116 5ef14e63 2019-06-02 stsp cmd_backout(int argc, char *argv[])
6117 5ef14e63 2019-06-02 stsp {
6118 5ef14e63 2019-06-02 stsp const struct got_error *error = NULL;
6119 5ef14e63 2019-06-02 stsp struct got_worktree *worktree = NULL;
6120 5ef14e63 2019-06-02 stsp struct got_repository *repo = NULL;
6121 5ef14e63 2019-06-02 stsp char *cwd = NULL, *commit_id_str = NULL;
6122 5ef14e63 2019-06-02 stsp struct got_object_id *commit_id = NULL;
6123 5ef14e63 2019-06-02 stsp struct got_commit_object *commit = NULL;
6124 5ef14e63 2019-06-02 stsp struct got_object_qid *pid;
6125 5ef14e63 2019-06-02 stsp struct got_reference *head_ref = NULL;
6126 5ef14e63 2019-06-02 stsp int ch, did_something = 0;
6127 5ef14e63 2019-06-02 stsp
6128 5ef14e63 2019-06-02 stsp while ((ch = getopt(argc, argv, "")) != -1) {
6129 5ef14e63 2019-06-02 stsp switch (ch) {
6130 5ef14e63 2019-06-02 stsp default:
6131 5ef14e63 2019-06-02 stsp usage_backout();
6132 5ef14e63 2019-06-02 stsp /* NOTREACHED */
6133 5ef14e63 2019-06-02 stsp }
6134 5ef14e63 2019-06-02 stsp }
6135 5ef14e63 2019-06-02 stsp
6136 5ef14e63 2019-06-02 stsp argc -= optind;
6137 5ef14e63 2019-06-02 stsp argv += optind;
6138 5ef14e63 2019-06-02 stsp
6139 43012d58 2019-07-14 stsp #ifndef PROFILE
6140 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6141 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
6142 43012d58 2019-07-14 stsp err(1, "pledge");
6143 43012d58 2019-07-14 stsp #endif
6144 5ef14e63 2019-06-02 stsp if (argc != 1)
6145 5ef14e63 2019-06-02 stsp usage_backout();
6146 5ef14e63 2019-06-02 stsp
6147 5ef14e63 2019-06-02 stsp cwd = getcwd(NULL, 0);
6148 5ef14e63 2019-06-02 stsp if (cwd == NULL) {
6149 5ef14e63 2019-06-02 stsp error = got_error_from_errno("getcwd");
6150 5ef14e63 2019-06-02 stsp goto done;
6151 5ef14e63 2019-06-02 stsp }
6152 5ef14e63 2019-06-02 stsp error = got_worktree_open(&worktree, cwd);
6153 5ef14e63 2019-06-02 stsp if (error)
6154 5ef14e63 2019-06-02 stsp goto done;
6155 5ef14e63 2019-06-02 stsp
6156 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6157 c9956ddf 2019-09-08 stsp NULL);
6158 5ef14e63 2019-06-02 stsp if (error != NULL)
6159 5ef14e63 2019-06-02 stsp goto done;
6160 5ef14e63 2019-06-02 stsp
6161 5ef14e63 2019-06-02 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6162 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
6163 5ef14e63 2019-06-02 stsp if (error)
6164 5ef14e63 2019-06-02 stsp goto done;
6165 5ef14e63 2019-06-02 stsp
6166 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
6167 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
6168 5ef14e63 2019-06-02 stsp if (error != NULL) {
6169 5ef14e63 2019-06-02 stsp struct got_reference *ref;
6170 5ef14e63 2019-06-02 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
6171 5ef14e63 2019-06-02 stsp goto done;
6172 5ef14e63 2019-06-02 stsp error = got_ref_open(&ref, repo, argv[0], 0);
6173 5ef14e63 2019-06-02 stsp if (error != NULL)
6174 5ef14e63 2019-06-02 stsp goto done;
6175 5ef14e63 2019-06-02 stsp error = got_ref_resolve(&commit_id, repo, ref);
6176 5ef14e63 2019-06-02 stsp got_ref_close(ref);
6177 5ef14e63 2019-06-02 stsp if (error != NULL)
6178 5ef14e63 2019-06-02 stsp goto done;
6179 5ef14e63 2019-06-02 stsp }
6180 5ef14e63 2019-06-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
6181 5ef14e63 2019-06-02 stsp if (error)
6182 5ef14e63 2019-06-02 stsp goto done;
6183 5ef14e63 2019-06-02 stsp
6184 5ef14e63 2019-06-02 stsp error = got_ref_open(&head_ref, repo,
6185 5ef14e63 2019-06-02 stsp got_worktree_get_head_ref_name(worktree), 0);
6186 5ef14e63 2019-06-02 stsp if (error != NULL)
6187 5ef14e63 2019-06-02 stsp goto done;
6188 5ef14e63 2019-06-02 stsp
6189 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
6190 5ef14e63 2019-06-02 stsp if (error)
6191 5ef14e63 2019-06-02 stsp goto done;
6192 5ef14e63 2019-06-02 stsp
6193 5ef14e63 2019-06-02 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6194 5ef14e63 2019-06-02 stsp if (error)
6195 5ef14e63 2019-06-02 stsp goto done;
6196 5ef14e63 2019-06-02 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
6197 5ef14e63 2019-06-02 stsp if (pid == NULL) {
6198 5ef14e63 2019-06-02 stsp error = got_error(GOT_ERR_ROOT_COMMIT);
6199 5ef14e63 2019-06-02 stsp goto done;
6200 5ef14e63 2019-06-02 stsp }
6201 5ef14e63 2019-06-02 stsp
6202 5ef14e63 2019-06-02 stsp error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
6203 5ef14e63 2019-06-02 stsp update_progress, &did_something, check_cancelled, NULL);
6204 5ef14e63 2019-06-02 stsp if (error != NULL)
6205 5ef14e63 2019-06-02 stsp goto done;
6206 5ef14e63 2019-06-02 stsp
6207 5ef14e63 2019-06-02 stsp if (did_something)
6208 a7648d7a 2019-06-02 stsp printf("Backed out commit %s\n", commit_id_str);
6209 5ef14e63 2019-06-02 stsp done:
6210 5ef14e63 2019-06-02 stsp if (commit)
6211 5ef14e63 2019-06-02 stsp got_object_commit_close(commit);
6212 5ef14e63 2019-06-02 stsp free(commit_id_str);
6213 5ef14e63 2019-06-02 stsp if (head_ref)
6214 5ef14e63 2019-06-02 stsp got_ref_close(head_ref);
6215 818c7501 2019-07-11 stsp if (worktree)
6216 818c7501 2019-07-11 stsp got_worktree_close(worktree);
6217 818c7501 2019-07-11 stsp if (repo)
6218 818c7501 2019-07-11 stsp got_repo_close(repo);
6219 818c7501 2019-07-11 stsp return error;
6220 818c7501 2019-07-11 stsp }
6221 818c7501 2019-07-11 stsp
6222 818c7501 2019-07-11 stsp __dead static void
6223 818c7501 2019-07-11 stsp usage_rebase(void)
6224 818c7501 2019-07-11 stsp {
6225 af54c8f8 2019-07-11 stsp fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
6226 af54c8f8 2019-07-11 stsp getprogname());
6227 818c7501 2019-07-11 stsp exit(1);
6228 0ebf8283 2019-07-24 stsp }
6229 0ebf8283 2019-07-24 stsp
6230 0ebf8283 2019-07-24 stsp void
6231 0ebf8283 2019-07-24 stsp trim_logmsg(char *logmsg, int limit)
6232 0ebf8283 2019-07-24 stsp {
6233 0ebf8283 2019-07-24 stsp char *nl;
6234 0ebf8283 2019-07-24 stsp size_t len;
6235 0ebf8283 2019-07-24 stsp
6236 0ebf8283 2019-07-24 stsp len = strlen(logmsg);
6237 0ebf8283 2019-07-24 stsp if (len > limit)
6238 0ebf8283 2019-07-24 stsp len = limit;
6239 0ebf8283 2019-07-24 stsp logmsg[len] = '\0';
6240 0ebf8283 2019-07-24 stsp nl = strchr(logmsg, '\n');
6241 0ebf8283 2019-07-24 stsp if (nl)
6242 0ebf8283 2019-07-24 stsp *nl = '\0';
6243 0ebf8283 2019-07-24 stsp }
6244 0ebf8283 2019-07-24 stsp
6245 0ebf8283 2019-07-24 stsp static const struct got_error *
6246 0ebf8283 2019-07-24 stsp get_short_logmsg(char **logmsg, int limit, struct got_commit_object *commit)
6247 0ebf8283 2019-07-24 stsp {
6248 5943eee2 2019-08-13 stsp const struct got_error *err;
6249 5943eee2 2019-08-13 stsp char *logmsg0 = NULL;
6250 5943eee2 2019-08-13 stsp const char *s;
6251 0ebf8283 2019-07-24 stsp
6252 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
6253 5943eee2 2019-08-13 stsp if (err)
6254 5943eee2 2019-08-13 stsp return err;
6255 0ebf8283 2019-07-24 stsp
6256 5943eee2 2019-08-13 stsp s = logmsg0;
6257 5943eee2 2019-08-13 stsp while (isspace((unsigned char)s[0]))
6258 5943eee2 2019-08-13 stsp s++;
6259 5943eee2 2019-08-13 stsp
6260 5943eee2 2019-08-13 stsp *logmsg = strdup(s);
6261 5943eee2 2019-08-13 stsp if (*logmsg == NULL) {
6262 5943eee2 2019-08-13 stsp err = got_error_from_errno("strdup");
6263 5943eee2 2019-08-13 stsp goto done;
6264 5943eee2 2019-08-13 stsp }
6265 0ebf8283 2019-07-24 stsp
6266 0ebf8283 2019-07-24 stsp trim_logmsg(*logmsg, limit);
6267 5943eee2 2019-08-13 stsp done:
6268 5943eee2 2019-08-13 stsp free(logmsg0);
6269 a0ea4fc0 2020-02-28 stsp return err;
6270 a0ea4fc0 2020-02-28 stsp }
6271 a0ea4fc0 2020-02-28 stsp
6272 a0ea4fc0 2020-02-28 stsp static const struct got_error *
6273 a0ea4fc0 2020-02-28 stsp show_rebase_merge_conflict(struct got_object_id *id, struct got_repository *repo)
6274 a0ea4fc0 2020-02-28 stsp {
6275 a0ea4fc0 2020-02-28 stsp const struct got_error *err;
6276 a0ea4fc0 2020-02-28 stsp struct got_commit_object *commit = NULL;
6277 a0ea4fc0 2020-02-28 stsp char *id_str = NULL, *logmsg = NULL;
6278 a0ea4fc0 2020-02-28 stsp
6279 a0ea4fc0 2020-02-28 stsp err = got_object_open_as_commit(&commit, repo, id);
6280 a0ea4fc0 2020-02-28 stsp if (err)
6281 a0ea4fc0 2020-02-28 stsp return err;
6282 a0ea4fc0 2020-02-28 stsp
6283 a0ea4fc0 2020-02-28 stsp err = got_object_id_str(&id_str, id);
6284 a0ea4fc0 2020-02-28 stsp if (err)
6285 a0ea4fc0 2020-02-28 stsp goto done;
6286 a0ea4fc0 2020-02-28 stsp
6287 a0ea4fc0 2020-02-28 stsp id_str[12] = '\0';
6288 a0ea4fc0 2020-02-28 stsp
6289 a0ea4fc0 2020-02-28 stsp err = get_short_logmsg(&logmsg, 42, commit);
6290 a0ea4fc0 2020-02-28 stsp if (err)
6291 a0ea4fc0 2020-02-28 stsp goto done;
6292 a0ea4fc0 2020-02-28 stsp
6293 a0ea4fc0 2020-02-28 stsp printf("%s -> merge conflict: %s\n", id_str, logmsg);
6294 a0ea4fc0 2020-02-28 stsp done:
6295 a0ea4fc0 2020-02-28 stsp free(id_str);
6296 a0ea4fc0 2020-02-28 stsp got_object_commit_close(commit);
6297 a0ea4fc0 2020-02-28 stsp free(logmsg);
6298 5943eee2 2019-08-13 stsp return err;
6299 818c7501 2019-07-11 stsp }
6300 818c7501 2019-07-11 stsp
6301 818c7501 2019-07-11 stsp static const struct got_error *
6302 818c7501 2019-07-11 stsp show_rebase_progress(struct got_commit_object *commit,
6303 818c7501 2019-07-11 stsp struct got_object_id *old_id, struct got_object_id *new_id)
6304 818c7501 2019-07-11 stsp {
6305 818c7501 2019-07-11 stsp const struct got_error *err;
6306 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
6307 818c7501 2019-07-11 stsp
6308 818c7501 2019-07-11 stsp err = got_object_id_str(&old_id_str, old_id);
6309 818c7501 2019-07-11 stsp if (err)
6310 818c7501 2019-07-11 stsp goto done;
6311 818c7501 2019-07-11 stsp
6312 ff0d2220 2019-07-11 stsp if (new_id) {
6313 ff0d2220 2019-07-11 stsp err = got_object_id_str(&new_id_str, new_id);
6314 ff0d2220 2019-07-11 stsp if (err)
6315 ff0d2220 2019-07-11 stsp goto done;
6316 ff0d2220 2019-07-11 stsp }
6317 818c7501 2019-07-11 stsp
6318 818c7501 2019-07-11 stsp old_id_str[12] = '\0';
6319 ff0d2220 2019-07-11 stsp if (new_id_str)
6320 ff0d2220 2019-07-11 stsp new_id_str[12] = '\0';
6321 0ebf8283 2019-07-24 stsp
6322 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
6323 0ebf8283 2019-07-24 stsp if (err)
6324 0ebf8283 2019-07-24 stsp goto done;
6325 0ebf8283 2019-07-24 stsp
6326 ff0d2220 2019-07-11 stsp printf("%s -> %s: %s\n", old_id_str,
6327 ff0d2220 2019-07-11 stsp new_id_str ? new_id_str : "no-op change", logmsg);
6328 818c7501 2019-07-11 stsp done:
6329 818c7501 2019-07-11 stsp free(old_id_str);
6330 818c7501 2019-07-11 stsp free(new_id_str);
6331 272a1371 2020-02-28 stsp free(logmsg);
6332 818c7501 2019-07-11 stsp return err;
6333 818c7501 2019-07-11 stsp }
6334 818c7501 2019-07-11 stsp
6335 1ee397ad 2019-07-12 stsp static const struct got_error *
6336 818c7501 2019-07-11 stsp rebase_progress(void *arg, unsigned char status, const char *path)
6337 818c7501 2019-07-11 stsp {
6338 818c7501 2019-07-11 stsp unsigned char *rebase_status = arg;
6339 818c7501 2019-07-11 stsp
6340 818c7501 2019-07-11 stsp while (path[0] == '/')
6341 818c7501 2019-07-11 stsp path++;
6342 818c7501 2019-07-11 stsp printf("%c %s\n", status, path);
6343 818c7501 2019-07-11 stsp
6344 818c7501 2019-07-11 stsp if (*rebase_status == GOT_STATUS_CONFLICT)
6345 1ee397ad 2019-07-12 stsp return NULL;
6346 818c7501 2019-07-11 stsp if (status == GOT_STATUS_CONFLICT || status == GOT_STATUS_MERGE)
6347 818c7501 2019-07-11 stsp *rebase_status = status;
6348 1ee397ad 2019-07-12 stsp return NULL;
6349 818c7501 2019-07-11 stsp }
6350 818c7501 2019-07-11 stsp
6351 818c7501 2019-07-11 stsp static const struct got_error *
6352 3e3a69f1 2019-07-25 stsp rebase_complete(struct got_worktree *worktree, struct got_fileindex *fileindex,
6353 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_reference *new_base_branch,
6354 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_repository *repo)
6355 818c7501 2019-07-11 stsp {
6356 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n", got_ref_get_name(branch));
6357 3e3a69f1 2019-07-25 stsp return got_worktree_rebase_complete(worktree, fileindex,
6358 818c7501 2019-07-11 stsp new_base_branch, tmp_branch, branch, repo);
6359 818c7501 2019-07-11 stsp }
6360 818c7501 2019-07-11 stsp
6361 818c7501 2019-07-11 stsp static const struct got_error *
6362 01757395 2019-07-12 stsp rebase_commit(struct got_pathlist_head *merged_paths,
6363 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6364 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch,
6365 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
6366 ff0d2220 2019-07-11 stsp {
6367 ff0d2220 2019-07-11 stsp const struct got_error *error;
6368 ff0d2220 2019-07-11 stsp struct got_commit_object *commit;
6369 ff0d2220 2019-07-11 stsp struct got_object_id *new_commit_id;
6370 ff0d2220 2019-07-11 stsp
6371 ff0d2220 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6372 ff0d2220 2019-07-11 stsp if (error)
6373 ff0d2220 2019-07-11 stsp return error;
6374 ff0d2220 2019-07-11 stsp
6375 01757395 2019-07-12 stsp error = got_worktree_rebase_commit(&new_commit_id, merged_paths,
6376 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, commit_id, repo);
6377 ff0d2220 2019-07-11 stsp if (error) {
6378 ff0d2220 2019-07-11 stsp if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
6379 ff0d2220 2019-07-11 stsp goto done;
6380 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, NULL);
6381 ff0d2220 2019-07-11 stsp } else {
6382 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, new_commit_id);
6383 ff0d2220 2019-07-11 stsp free(new_commit_id);
6384 ff0d2220 2019-07-11 stsp }
6385 ff0d2220 2019-07-11 stsp done:
6386 ff0d2220 2019-07-11 stsp got_object_commit_close(commit);
6387 ff0d2220 2019-07-11 stsp return error;
6388 64c6d990 2019-07-11 stsp }
6389 64c6d990 2019-07-11 stsp
6390 64c6d990 2019-07-11 stsp struct check_path_prefix_arg {
6391 64c6d990 2019-07-11 stsp const char *path_prefix;
6392 64c6d990 2019-07-11 stsp size_t len;
6393 8ca9bd68 2019-07-25 stsp int errcode;
6394 64c6d990 2019-07-11 stsp };
6395 64c6d990 2019-07-11 stsp
6396 64c6d990 2019-07-11 stsp static const struct got_error *
6397 8ca9bd68 2019-07-25 stsp check_path_prefix_in_diff(void *arg, struct got_blob_object *blob1,
6398 64c6d990 2019-07-11 stsp struct got_blob_object *blob2, struct got_object_id *id1,
6399 64c6d990 2019-07-11 stsp struct got_object_id *id2, const char *path1, const char *path2,
6400 46f68b20 2019-10-19 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
6401 64c6d990 2019-07-11 stsp {
6402 64c6d990 2019-07-11 stsp struct check_path_prefix_arg *a = arg;
6403 64c6d990 2019-07-11 stsp
6404 64c6d990 2019-07-11 stsp if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
6405 64c6d990 2019-07-11 stsp (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
6406 8ca9bd68 2019-07-25 stsp return got_error(a->errcode);
6407 64c6d990 2019-07-11 stsp
6408 64c6d990 2019-07-11 stsp return NULL;
6409 64c6d990 2019-07-11 stsp }
6410 64c6d990 2019-07-11 stsp
6411 64c6d990 2019-07-11 stsp static const struct got_error *
6412 8ca9bd68 2019-07-25 stsp check_path_prefix(struct got_object_id *parent_id,
6413 64c6d990 2019-07-11 stsp struct got_object_id *commit_id, const char *path_prefix,
6414 8ca9bd68 2019-07-25 stsp int errcode, struct got_repository *repo)
6415 64c6d990 2019-07-11 stsp {
6416 64c6d990 2019-07-11 stsp const struct got_error *err;
6417 64c6d990 2019-07-11 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
6418 64c6d990 2019-07-11 stsp struct got_commit_object *commit = NULL, *parent_commit = NULL;
6419 64c6d990 2019-07-11 stsp struct check_path_prefix_arg cpp_arg;
6420 64c6d990 2019-07-11 stsp
6421 64c6d990 2019-07-11 stsp if (got_path_is_root_dir(path_prefix))
6422 64c6d990 2019-07-11 stsp return NULL;
6423 64c6d990 2019-07-11 stsp
6424 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6425 64c6d990 2019-07-11 stsp if (err)
6426 64c6d990 2019-07-11 stsp goto done;
6427 64c6d990 2019-07-11 stsp
6428 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&parent_commit, repo, parent_id);
6429 64c6d990 2019-07-11 stsp if (err)
6430 64c6d990 2019-07-11 stsp goto done;
6431 64c6d990 2019-07-11 stsp
6432 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree1, repo,
6433 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(parent_commit));
6434 64c6d990 2019-07-11 stsp if (err)
6435 64c6d990 2019-07-11 stsp goto done;
6436 64c6d990 2019-07-11 stsp
6437 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree2, repo,
6438 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(commit));
6439 64c6d990 2019-07-11 stsp if (err)
6440 64c6d990 2019-07-11 stsp goto done;
6441 64c6d990 2019-07-11 stsp
6442 64c6d990 2019-07-11 stsp cpp_arg.path_prefix = path_prefix;
6443 d23ace97 2019-07-25 stsp while (cpp_arg.path_prefix[0] == '/')
6444 d23ace97 2019-07-25 stsp cpp_arg.path_prefix++;
6445 d23ace97 2019-07-25 stsp cpp_arg.len = strlen(cpp_arg.path_prefix);
6446 8ca9bd68 2019-07-25 stsp cpp_arg.errcode = errcode;
6447 8ca9bd68 2019-07-25 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
6448 31b4484f 2019-07-27 stsp check_path_prefix_in_diff, &cpp_arg, 0);
6449 64c6d990 2019-07-11 stsp done:
6450 64c6d990 2019-07-11 stsp if (tree1)
6451 64c6d990 2019-07-11 stsp got_object_tree_close(tree1);
6452 64c6d990 2019-07-11 stsp if (tree2)
6453 64c6d990 2019-07-11 stsp got_object_tree_close(tree2);
6454 64c6d990 2019-07-11 stsp if (commit)
6455 64c6d990 2019-07-11 stsp got_object_commit_close(commit);
6456 64c6d990 2019-07-11 stsp if (parent_commit)
6457 64c6d990 2019-07-11 stsp got_object_commit_close(parent_commit);
6458 64c6d990 2019-07-11 stsp return err;
6459 ff0d2220 2019-07-11 stsp }
6460 ff0d2220 2019-07-11 stsp
6461 ff0d2220 2019-07-11 stsp static const struct got_error *
6462 8ca9bd68 2019-07-25 stsp collect_commits(struct got_object_id_queue *commits,
6463 af61c510 2019-07-19 stsp struct got_object_id *initial_commit_id,
6464 af61c510 2019-07-19 stsp struct got_object_id *iter_start_id, struct got_object_id *iter_stop_id,
6465 8ca9bd68 2019-07-25 stsp const char *path_prefix, int path_prefix_errcode,
6466 8ca9bd68 2019-07-25 stsp struct got_repository *repo)
6467 af61c510 2019-07-19 stsp {
6468 af61c510 2019-07-19 stsp const struct got_error *err = NULL;
6469 af61c510 2019-07-19 stsp struct got_commit_graph *graph = NULL;
6470 af61c510 2019-07-19 stsp struct got_object_id *parent_id = NULL;
6471 af61c510 2019-07-19 stsp struct got_object_qid *qid;
6472 af61c510 2019-07-19 stsp struct got_object_id *commit_id = initial_commit_id;
6473 af61c510 2019-07-19 stsp
6474 3d509237 2020-01-04 stsp err = got_commit_graph_open(&graph, "/", 1);
6475 af61c510 2019-07-19 stsp if (err)
6476 af61c510 2019-07-19 stsp return err;
6477 af61c510 2019-07-19 stsp
6478 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, iter_start_id, repo,
6479 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
6480 af61c510 2019-07-19 stsp if (err)
6481 af61c510 2019-07-19 stsp goto done;
6482 af61c510 2019-07-19 stsp while (got_object_id_cmp(commit_id, iter_stop_id) != 0) {
6483 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&parent_id, graph, repo,
6484 ee780d5c 2020-01-04 stsp check_cancelled, NULL);
6485 af61c510 2019-07-19 stsp if (err) {
6486 af61c510 2019-07-19 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
6487 af61c510 2019-07-19 stsp err = got_error_msg(GOT_ERR_ANCESTRY,
6488 af61c510 2019-07-19 stsp "ran out of commits to rebase before "
6489 af61c510 2019-07-19 stsp "youngest common ancestor commit has "
6490 af61c510 2019-07-19 stsp "been reached?!?");
6491 ee780d5c 2020-01-04 stsp }
6492 ee780d5c 2020-01-04 stsp goto done;
6493 af61c510 2019-07-19 stsp } else {
6494 8ca9bd68 2019-07-25 stsp err = check_path_prefix(parent_id, commit_id,
6495 8ca9bd68 2019-07-25 stsp path_prefix, path_prefix_errcode, repo);
6496 af61c510 2019-07-19 stsp if (err)
6497 af61c510 2019-07-19 stsp goto done;
6498 af61c510 2019-07-19 stsp
6499 af61c510 2019-07-19 stsp err = got_object_qid_alloc(&qid, commit_id);
6500 af61c510 2019-07-19 stsp if (err)
6501 af61c510 2019-07-19 stsp goto done;
6502 af61c510 2019-07-19 stsp SIMPLEQ_INSERT_HEAD(commits, qid, entry);
6503 af61c510 2019-07-19 stsp commit_id = parent_id;
6504 af61c510 2019-07-19 stsp }
6505 af61c510 2019-07-19 stsp }
6506 af61c510 2019-07-19 stsp done:
6507 af61c510 2019-07-19 stsp got_commit_graph_close(graph);
6508 af61c510 2019-07-19 stsp return err;
6509 af61c510 2019-07-19 stsp }
6510 af61c510 2019-07-19 stsp
6511 af61c510 2019-07-19 stsp static const struct got_error *
6512 818c7501 2019-07-11 stsp cmd_rebase(int argc, char *argv[])
6513 818c7501 2019-07-11 stsp {
6514 818c7501 2019-07-11 stsp const struct got_error *error = NULL;
6515 818c7501 2019-07-11 stsp struct got_worktree *worktree = NULL;
6516 818c7501 2019-07-11 stsp struct got_repository *repo = NULL;
6517 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
6518 818c7501 2019-07-11 stsp char *cwd = NULL;
6519 818c7501 2019-07-11 stsp struct got_reference *branch = NULL;
6520 818c7501 2019-07-11 stsp struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
6521 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL, *parent_id = NULL;
6522 818c7501 2019-07-11 stsp struct got_object_id *resume_commit_id = NULL;
6523 818c7501 2019-07-11 stsp struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
6524 818c7501 2019-07-11 stsp struct got_commit_object *commit = NULL;
6525 818c7501 2019-07-11 stsp int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
6526 7ef62c4e 2020-02-24 stsp int histedit_in_progress = 0;
6527 818c7501 2019-07-11 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
6528 818c7501 2019-07-11 stsp struct got_object_id_queue commits;
6529 01757395 2019-07-12 stsp struct got_pathlist_head merged_paths;
6530 818c7501 2019-07-11 stsp const struct got_object_id_queue *parent_ids;
6531 818c7501 2019-07-11 stsp struct got_object_qid *qid, *pid;
6532 818c7501 2019-07-11 stsp
6533 818c7501 2019-07-11 stsp SIMPLEQ_INIT(&commits);
6534 01757395 2019-07-12 stsp TAILQ_INIT(&merged_paths);
6535 818c7501 2019-07-11 stsp
6536 818c7501 2019-07-11 stsp while ((ch = getopt(argc, argv, "ac")) != -1) {
6537 818c7501 2019-07-11 stsp switch (ch) {
6538 818c7501 2019-07-11 stsp case 'a':
6539 818c7501 2019-07-11 stsp abort_rebase = 1;
6540 818c7501 2019-07-11 stsp break;
6541 818c7501 2019-07-11 stsp case 'c':
6542 818c7501 2019-07-11 stsp continue_rebase = 1;
6543 818c7501 2019-07-11 stsp break;
6544 818c7501 2019-07-11 stsp default:
6545 818c7501 2019-07-11 stsp usage_rebase();
6546 818c7501 2019-07-11 stsp /* NOTREACHED */
6547 818c7501 2019-07-11 stsp }
6548 818c7501 2019-07-11 stsp }
6549 818c7501 2019-07-11 stsp
6550 818c7501 2019-07-11 stsp argc -= optind;
6551 818c7501 2019-07-11 stsp argv += optind;
6552 818c7501 2019-07-11 stsp
6553 43012d58 2019-07-14 stsp #ifndef PROFILE
6554 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6555 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
6556 43012d58 2019-07-14 stsp err(1, "pledge");
6557 43012d58 2019-07-14 stsp #endif
6558 818c7501 2019-07-11 stsp if (abort_rebase && continue_rebase)
6559 818c7501 2019-07-11 stsp usage_rebase();
6560 818c7501 2019-07-11 stsp else if (abort_rebase || continue_rebase) {
6561 818c7501 2019-07-11 stsp if (argc != 0)
6562 818c7501 2019-07-11 stsp usage_rebase();
6563 818c7501 2019-07-11 stsp } else if (argc != 1)
6564 818c7501 2019-07-11 stsp usage_rebase();
6565 818c7501 2019-07-11 stsp
6566 818c7501 2019-07-11 stsp cwd = getcwd(NULL, 0);
6567 818c7501 2019-07-11 stsp if (cwd == NULL) {
6568 818c7501 2019-07-11 stsp error = got_error_from_errno("getcwd");
6569 818c7501 2019-07-11 stsp goto done;
6570 818c7501 2019-07-11 stsp }
6571 818c7501 2019-07-11 stsp error = got_worktree_open(&worktree, cwd);
6572 818c7501 2019-07-11 stsp if (error)
6573 818c7501 2019-07-11 stsp goto done;
6574 818c7501 2019-07-11 stsp
6575 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6576 c9956ddf 2019-09-08 stsp NULL);
6577 818c7501 2019-07-11 stsp if (error != NULL)
6578 818c7501 2019-07-11 stsp goto done;
6579 818c7501 2019-07-11 stsp
6580 818c7501 2019-07-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6581 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
6582 7ef62c4e 2020-02-24 stsp if (error)
6583 7ef62c4e 2020-02-24 stsp goto done;
6584 7ef62c4e 2020-02-24 stsp
6585 7ef62c4e 2020-02-24 stsp error = got_worktree_histedit_in_progress(&histedit_in_progress,
6586 7ef62c4e 2020-02-24 stsp worktree);
6587 818c7501 2019-07-11 stsp if (error)
6588 7ef62c4e 2020-02-24 stsp goto done;
6589 7ef62c4e 2020-02-24 stsp if (histedit_in_progress) {
6590 7ef62c4e 2020-02-24 stsp error = got_error(GOT_ERR_HISTEDIT_BUSY);
6591 818c7501 2019-07-11 stsp goto done;
6592 7ef62c4e 2020-02-24 stsp }
6593 818c7501 2019-07-11 stsp
6594 818c7501 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
6595 818c7501 2019-07-11 stsp if (error)
6596 818c7501 2019-07-11 stsp goto done;
6597 818c7501 2019-07-11 stsp
6598 f6794adc 2019-07-23 stsp if (abort_rebase) {
6599 818c7501 2019-07-11 stsp int did_something;
6600 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
6601 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
6602 f6794adc 2019-07-23 stsp goto done;
6603 f6794adc 2019-07-23 stsp }
6604 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
6605 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
6606 3e3a69f1 2019-07-25 stsp worktree, repo);
6607 818c7501 2019-07-11 stsp if (error)
6608 818c7501 2019-07-11 stsp goto done;
6609 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n",
6610 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch));
6611 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_abort(worktree, fileindex, repo,
6612 818c7501 2019-07-11 stsp new_base_branch, update_progress, &did_something);
6613 818c7501 2019-07-11 stsp if (error)
6614 818c7501 2019-07-11 stsp goto done;
6615 818c7501 2019-07-11 stsp printf("Rebase of %s aborted\n", got_ref_get_name(branch));
6616 818c7501 2019-07-11 stsp goto done; /* nothing else to do */
6617 818c7501 2019-07-11 stsp }
6618 818c7501 2019-07-11 stsp
6619 818c7501 2019-07-11 stsp if (continue_rebase) {
6620 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
6621 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
6622 f6794adc 2019-07-23 stsp goto done;
6623 f6794adc 2019-07-23 stsp }
6624 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
6625 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
6626 3e3a69f1 2019-07-25 stsp worktree, repo);
6627 818c7501 2019-07-11 stsp if (error)
6628 818c7501 2019-07-11 stsp goto done;
6629 818c7501 2019-07-11 stsp
6630 3e3a69f1 2019-07-25 stsp error = rebase_commit(NULL, worktree, fileindex, tmp_branch,
6631 01757395 2019-07-12 stsp resume_commit_id, repo);
6632 818c7501 2019-07-11 stsp if (error)
6633 818c7501 2019-07-11 stsp goto done;
6634 818c7501 2019-07-11 stsp
6635 ff0d2220 2019-07-11 stsp yca_id = got_object_id_dup(resume_commit_id);
6636 ff0d2220 2019-07-11 stsp if (yca_id == NULL) {
6637 818c7501 2019-07-11 stsp error = got_error_from_errno("got_object_id_dup");
6638 818c7501 2019-07-11 stsp goto done;
6639 818c7501 2019-07-11 stsp }
6640 818c7501 2019-07-11 stsp } else {
6641 818c7501 2019-07-11 stsp error = got_ref_open(&branch, repo, argv[0], 0);
6642 818c7501 2019-07-11 stsp if (error != NULL)
6643 818c7501 2019-07-11 stsp goto done;
6644 ff0d2220 2019-07-11 stsp }
6645 818c7501 2019-07-11 stsp
6646 ff0d2220 2019-07-11 stsp error = got_ref_resolve(&branch_head_commit_id, repo, branch);
6647 ff0d2220 2019-07-11 stsp if (error)
6648 ff0d2220 2019-07-11 stsp goto done;
6649 ff0d2220 2019-07-11 stsp
6650 ff0d2220 2019-07-11 stsp if (!continue_rebase) {
6651 a51a74b3 2019-07-27 stsp struct got_object_id *base_commit_id;
6652 a51a74b3 2019-07-27 stsp
6653 a51a74b3 2019-07-27 stsp base_commit_id = got_worktree_get_base_commit_id(worktree);
6654 818c7501 2019-07-11 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
6655 6fb7cd11 2019-08-22 stsp base_commit_id, branch_head_commit_id, repo,
6656 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
6657 818c7501 2019-07-11 stsp if (error)
6658 818c7501 2019-07-11 stsp goto done;
6659 818c7501 2019-07-11 stsp if (yca_id == NULL) {
6660 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
6661 818c7501 2019-07-11 stsp "specified branch shares no common ancestry "
6662 818c7501 2019-07-11 stsp "with work tree's branch");
6663 818c7501 2019-07-11 stsp goto done;
6664 818c7501 2019-07-11 stsp }
6665 818c7501 2019-07-11 stsp
6666 a51a74b3 2019-07-27 stsp error = check_same_branch(base_commit_id, branch, yca_id, repo);
6667 a51a74b3 2019-07-27 stsp if (error) {
6668 a51a74b3 2019-07-27 stsp if (error->code != GOT_ERR_ANCESTRY)
6669 a51a74b3 2019-07-27 stsp goto done;
6670 a51a74b3 2019-07-27 stsp error = NULL;
6671 a51a74b3 2019-07-27 stsp } else {
6672 a51a74b3 2019-07-27 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
6673 a51a74b3 2019-07-27 stsp "specified branch resolves to a commit which "
6674 a51a74b3 2019-07-27 stsp "is already contained in work tree's branch");
6675 a51a74b3 2019-07-27 stsp goto done;
6676 a51a74b3 2019-07-27 stsp }
6677 818c7501 2019-07-11 stsp error = got_worktree_rebase_prepare(&new_base_branch,
6678 3e3a69f1 2019-07-25 stsp &tmp_branch, &fileindex, worktree, branch, repo);
6679 818c7501 2019-07-11 stsp if (error)
6680 818c7501 2019-07-11 stsp goto done;
6681 818c7501 2019-07-11 stsp }
6682 818c7501 2019-07-11 stsp
6683 ff0d2220 2019-07-11 stsp commit_id = branch_head_commit_id;
6684 818c7501 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
6685 818c7501 2019-07-11 stsp if (error)
6686 818c7501 2019-07-11 stsp goto done;
6687 818c7501 2019-07-11 stsp
6688 818c7501 2019-07-11 stsp parent_ids = got_object_commit_get_parent_ids(commit);
6689 818c7501 2019-07-11 stsp pid = SIMPLEQ_FIRST(parent_ids);
6690 fc66b545 2019-08-12 stsp if (pid == NULL) {
6691 fc66b545 2019-08-12 stsp if (!continue_rebase) {
6692 fc66b545 2019-08-12 stsp int did_something;
6693 fc66b545 2019-08-12 stsp error = got_worktree_rebase_abort(worktree, fileindex,
6694 fc66b545 2019-08-12 stsp repo, new_base_branch, update_progress,
6695 fc66b545 2019-08-12 stsp &did_something);
6696 fc66b545 2019-08-12 stsp if (error)
6697 fc66b545 2019-08-12 stsp goto done;
6698 fc66b545 2019-08-12 stsp printf("Rebase of %s aborted\n",
6699 fc66b545 2019-08-12 stsp got_ref_get_name(branch));
6700 fc66b545 2019-08-12 stsp }
6701 fc66b545 2019-08-12 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
6702 fc66b545 2019-08-12 stsp goto done;
6703 fc66b545 2019-08-12 stsp }
6704 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, commit_id, pid->id,
6705 8ca9bd68 2019-07-25 stsp yca_id, got_worktree_get_path_prefix(worktree),
6706 8ca9bd68 2019-07-25 stsp GOT_ERR_REBASE_PATH, repo);
6707 818c7501 2019-07-11 stsp got_object_commit_close(commit);
6708 818c7501 2019-07-11 stsp commit = NULL;
6709 818c7501 2019-07-11 stsp if (error)
6710 818c7501 2019-07-11 stsp goto done;
6711 64c6d990 2019-07-11 stsp
6712 818c7501 2019-07-11 stsp if (SIMPLEQ_EMPTY(&commits)) {
6713 38b0338b 2019-11-29 stsp if (continue_rebase) {
6714 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex,
6715 3e3a69f1 2019-07-25 stsp branch, new_base_branch, tmp_branch, repo);
6716 38b0338b 2019-11-29 stsp goto done;
6717 38b0338b 2019-11-29 stsp } else {
6718 38b0338b 2019-11-29 stsp /* Fast-forward the reference of the branch. */
6719 38b0338b 2019-11-29 stsp struct got_object_id *new_head_commit_id;
6720 38b0338b 2019-11-29 stsp char *id_str;
6721 38b0338b 2019-11-29 stsp error = got_ref_resolve(&new_head_commit_id, repo,
6722 38b0338b 2019-11-29 stsp new_base_branch);
6723 38b0338b 2019-11-29 stsp if (error)
6724 38b0338b 2019-11-29 stsp goto done;
6725 38b0338b 2019-11-29 stsp error = got_object_id_str(&id_str, new_head_commit_id);
6726 38b0338b 2019-11-29 stsp printf("Forwarding %s to commit %s\n",
6727 38b0338b 2019-11-29 stsp got_ref_get_name(branch), id_str);
6728 38b0338b 2019-11-29 stsp free(id_str);
6729 38b0338b 2019-11-29 stsp error = got_ref_change_ref(branch,
6730 38b0338b 2019-11-29 stsp new_head_commit_id);
6731 38b0338b 2019-11-29 stsp if (error)
6732 38b0338b 2019-11-29 stsp goto done;
6733 38b0338b 2019-11-29 stsp }
6734 818c7501 2019-07-11 stsp }
6735 818c7501 2019-07-11 stsp
6736 818c7501 2019-07-11 stsp pid = NULL;
6737 818c7501 2019-07-11 stsp SIMPLEQ_FOREACH(qid, &commits, entry) {
6738 818c7501 2019-07-11 stsp commit_id = qid->id;
6739 818c7501 2019-07-11 stsp parent_id = pid ? pid->id : yca_id;
6740 818c7501 2019-07-11 stsp pid = qid;
6741 818c7501 2019-07-11 stsp
6742 01757395 2019-07-12 stsp error = got_worktree_rebase_merge_files(&merged_paths,
6743 3e3a69f1 2019-07-25 stsp worktree, fileindex, parent_id, commit_id, repo,
6744 3e3a69f1 2019-07-25 stsp rebase_progress, &rebase_status, check_cancelled, NULL);
6745 818c7501 2019-07-11 stsp if (error)
6746 818c7501 2019-07-11 stsp goto done;
6747 818c7501 2019-07-11 stsp
6748 01757395 2019-07-12 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
6749 a0ea4fc0 2020-02-28 stsp error = show_rebase_merge_conflict(qid->id, repo);
6750 a0ea4fc0 2020-02-28 stsp if (error)
6751 a0ea4fc0 2020-02-28 stsp goto done;
6752 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
6753 818c7501 2019-07-11 stsp break;
6754 01757395 2019-07-12 stsp }
6755 818c7501 2019-07-11 stsp
6756 3e3a69f1 2019-07-25 stsp error = rebase_commit(&merged_paths, worktree, fileindex,
6757 3e3a69f1 2019-07-25 stsp tmp_branch, commit_id, repo);
6758 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
6759 818c7501 2019-07-11 stsp if (error)
6760 818c7501 2019-07-11 stsp goto done;
6761 818c7501 2019-07-11 stsp }
6762 818c7501 2019-07-11 stsp
6763 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
6764 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_postpone(worktree, fileindex);
6765 818c7501 2019-07-11 stsp if (error)
6766 818c7501 2019-07-11 stsp goto done;
6767 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
6768 11495e04 2019-07-12 stsp "conflicts must be resolved before rebasing can continue");
6769 818c7501 2019-07-11 stsp } else
6770 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex, branch,
6771 3e3a69f1 2019-07-25 stsp new_base_branch, tmp_branch, repo);
6772 818c7501 2019-07-11 stsp done:
6773 818c7501 2019-07-11 stsp got_object_id_queue_free(&commits);
6774 818c7501 2019-07-11 stsp free(branch_head_commit_id);
6775 818c7501 2019-07-11 stsp free(resume_commit_id);
6776 818c7501 2019-07-11 stsp free(yca_id);
6777 818c7501 2019-07-11 stsp if (commit)
6778 818c7501 2019-07-11 stsp got_object_commit_close(commit);
6779 818c7501 2019-07-11 stsp if (branch)
6780 818c7501 2019-07-11 stsp got_ref_close(branch);
6781 818c7501 2019-07-11 stsp if (new_base_branch)
6782 818c7501 2019-07-11 stsp got_ref_close(new_base_branch);
6783 818c7501 2019-07-11 stsp if (tmp_branch)
6784 818c7501 2019-07-11 stsp got_ref_close(tmp_branch);
6785 5ef14e63 2019-06-02 stsp if (worktree)
6786 5ef14e63 2019-06-02 stsp got_worktree_close(worktree);
6787 5ef14e63 2019-06-02 stsp if (repo)
6788 5ef14e63 2019-06-02 stsp got_repo_close(repo);
6789 5ef14e63 2019-06-02 stsp return error;
6790 0ebf8283 2019-07-24 stsp }
6791 0ebf8283 2019-07-24 stsp
6792 0ebf8283 2019-07-24 stsp __dead static void
6793 0ebf8283 2019-07-24 stsp usage_histedit(void)
6794 0ebf8283 2019-07-24 stsp {
6795 083957f4 2020-02-24 stsp fprintf(stderr, "usage: %s histedit [-a] [-c] [-F histedit-script] [-m]\n",
6796 0ebf8283 2019-07-24 stsp getprogname());
6797 0ebf8283 2019-07-24 stsp exit(1);
6798 0ebf8283 2019-07-24 stsp }
6799 0ebf8283 2019-07-24 stsp
6800 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_PICK 'p'
6801 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_EDIT 'e'
6802 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_FOLD 'f'
6803 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_DROP 'd'
6804 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_MESG 'm'
6805 0ebf8283 2019-07-24 stsp
6806 0ebf8283 2019-07-24 stsp static struct got_histedit_cmd {
6807 0ebf8283 2019-07-24 stsp unsigned char code;
6808 0ebf8283 2019-07-24 stsp const char *name;
6809 0ebf8283 2019-07-24 stsp const char *desc;
6810 0ebf8283 2019-07-24 stsp } got_histedit_cmds[] = {
6811 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_PICK, "pick", "use commit" },
6812 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
6813 82997472 2020-01-29 stsp { GOT_HISTEDIT_FOLD, "fold", "combine with next commit that will "
6814 82997472 2020-01-29 stsp "be used" },
6815 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
6816 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_MESG, "mesg",
6817 0ebf8283 2019-07-24 stsp "single-line log message for commit above (open editor if empty)" },
6818 0ebf8283 2019-07-24 stsp };
6819 0ebf8283 2019-07-24 stsp
6820 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry {
6821 0ebf8283 2019-07-24 stsp TAILQ_ENTRY(got_histedit_list_entry) entry;
6822 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id;
6823 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
6824 0ebf8283 2019-07-24 stsp char *logmsg;
6825 0ebf8283 2019-07-24 stsp };
6826 0ebf8283 2019-07-24 stsp TAILQ_HEAD(got_histedit_list, got_histedit_list_entry);
6827 0ebf8283 2019-07-24 stsp
6828 0ebf8283 2019-07-24 stsp static const struct got_error *
6829 0ebf8283 2019-07-24 stsp histedit_write_commit(struct got_object_id *commit_id, const char *cmdname,
6830 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
6831 0ebf8283 2019-07-24 stsp {
6832 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6833 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *id_str = NULL;
6834 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
6835 8138f3e1 2019-08-11 stsp int n;
6836 0ebf8283 2019-07-24 stsp
6837 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
6838 0ebf8283 2019-07-24 stsp if (err)
6839 0ebf8283 2019-07-24 stsp goto done;
6840 0ebf8283 2019-07-24 stsp
6841 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 34, commit);
6842 0ebf8283 2019-07-24 stsp if (err)
6843 0ebf8283 2019-07-24 stsp goto done;
6844 0ebf8283 2019-07-24 stsp
6845 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, commit_id);
6846 0ebf8283 2019-07-24 stsp if (err)
6847 0ebf8283 2019-07-24 stsp goto done;
6848 0ebf8283 2019-07-24 stsp
6849 0ebf8283 2019-07-24 stsp n = fprintf(f, "%s %s %s\n", cmdname, id_str, logmsg);
6850 0ebf8283 2019-07-24 stsp if (n < 0)
6851 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
6852 0ebf8283 2019-07-24 stsp done:
6853 0ebf8283 2019-07-24 stsp if (commit)
6854 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6855 0ebf8283 2019-07-24 stsp free(id_str);
6856 0ebf8283 2019-07-24 stsp free(logmsg);
6857 0ebf8283 2019-07-24 stsp return err;
6858 0ebf8283 2019-07-24 stsp }
6859 0ebf8283 2019-07-24 stsp
6860 0ebf8283 2019-07-24 stsp static const struct got_error *
6861 083957f4 2020-02-24 stsp histedit_write_commit_list(struct got_object_id_queue *commits,
6862 083957f4 2020-02-24 stsp FILE *f, int edit_logmsg_only, struct got_repository *repo)
6863 0ebf8283 2019-07-24 stsp {
6864 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6865 0ebf8283 2019-07-24 stsp struct got_object_qid *qid;
6866 0ebf8283 2019-07-24 stsp
6867 0ebf8283 2019-07-24 stsp if (SIMPLEQ_EMPTY(commits))
6868 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
6869 0ebf8283 2019-07-24 stsp
6870 0ebf8283 2019-07-24 stsp SIMPLEQ_FOREACH(qid, commits, entry) {
6871 0ebf8283 2019-07-24 stsp err = histedit_write_commit(qid->id, got_histedit_cmds[0].name,
6872 0ebf8283 2019-07-24 stsp f, repo);
6873 0ebf8283 2019-07-24 stsp if (err)
6874 0ebf8283 2019-07-24 stsp break;
6875 083957f4 2020-02-24 stsp if (edit_logmsg_only) {
6876 083957f4 2020-02-24 stsp int n = fprintf(f, "%c\n", GOT_HISTEDIT_MESG);
6877 083957f4 2020-02-24 stsp if (n < 0) {
6878 083957f4 2020-02-24 stsp err = got_ferror(f, GOT_ERR_IO);
6879 083957f4 2020-02-24 stsp break;
6880 083957f4 2020-02-24 stsp }
6881 083957f4 2020-02-24 stsp }
6882 0ebf8283 2019-07-24 stsp }
6883 0ebf8283 2019-07-24 stsp
6884 0ebf8283 2019-07-24 stsp return err;
6885 0ebf8283 2019-07-24 stsp }
6886 0ebf8283 2019-07-24 stsp
6887 0ebf8283 2019-07-24 stsp static const struct got_error *
6888 514f2ffe 2020-01-29 stsp write_cmd_list(FILE *f, const char *branch_name,
6889 514f2ffe 2020-01-29 stsp struct got_object_id_queue *commits)
6890 0ebf8283 2019-07-24 stsp {
6891 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6892 0ebf8283 2019-07-24 stsp int n, i;
6893 514f2ffe 2020-01-29 stsp char *id_str;
6894 514f2ffe 2020-01-29 stsp struct got_object_qid *qid;
6895 514f2ffe 2020-01-29 stsp
6896 514f2ffe 2020-01-29 stsp qid = SIMPLEQ_FIRST(commits);
6897 514f2ffe 2020-01-29 stsp err = got_object_id_str(&id_str, qid->id);
6898 514f2ffe 2020-01-29 stsp if (err)
6899 514f2ffe 2020-01-29 stsp return err;
6900 514f2ffe 2020-01-29 stsp
6901 514f2ffe 2020-01-29 stsp n = fprintf(f,
6902 514f2ffe 2020-01-29 stsp "# Editing the history of branch '%s' starting at\n"
6903 514f2ffe 2020-01-29 stsp "# commit %s\n"
6904 514f2ffe 2020-01-29 stsp "# Commits will be processed in order from top to "
6905 514f2ffe 2020-01-29 stsp "bottom of this file.\n", branch_name, id_str);
6906 514f2ffe 2020-01-29 stsp if (n < 0) {
6907 514f2ffe 2020-01-29 stsp err = got_ferror(f, GOT_ERR_IO);
6908 514f2ffe 2020-01-29 stsp goto done;
6909 514f2ffe 2020-01-29 stsp }
6910 0ebf8283 2019-07-24 stsp
6911 0ebf8283 2019-07-24 stsp n = fprintf(f, "# Available histedit commands:\n");
6912 514f2ffe 2020-01-29 stsp if (n < 0) {
6913 514f2ffe 2020-01-29 stsp err = got_ferror(f, GOT_ERR_IO);
6914 514f2ffe 2020-01-29 stsp goto done;
6915 514f2ffe 2020-01-29 stsp }
6916 0ebf8283 2019-07-24 stsp
6917 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
6918 0ebf8283 2019-07-24 stsp struct got_histedit_cmd *cmd = &got_histedit_cmds[i];
6919 0ebf8283 2019-07-24 stsp n = fprintf(f, "# %s (%c): %s\n", cmd->name, cmd->code,
6920 0ebf8283 2019-07-24 stsp cmd->desc);
6921 0ebf8283 2019-07-24 stsp if (n < 0) {
6922 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
6923 0ebf8283 2019-07-24 stsp break;
6924 0ebf8283 2019-07-24 stsp }
6925 0ebf8283 2019-07-24 stsp }
6926 514f2ffe 2020-01-29 stsp done:
6927 514f2ffe 2020-01-29 stsp free(id_str);
6928 0ebf8283 2019-07-24 stsp return err;
6929 0ebf8283 2019-07-24 stsp }
6930 0ebf8283 2019-07-24 stsp
6931 0ebf8283 2019-07-24 stsp static const struct got_error *
6932 0ebf8283 2019-07-24 stsp histedit_syntax_error(int lineno)
6933 0ebf8283 2019-07-24 stsp {
6934 0ebf8283 2019-07-24 stsp static char msg[42];
6935 0ebf8283 2019-07-24 stsp int ret;
6936 0ebf8283 2019-07-24 stsp
6937 0ebf8283 2019-07-24 stsp ret = snprintf(msg, sizeof(msg), "histedit syntax error on line %d",
6938 0ebf8283 2019-07-24 stsp lineno);
6939 0ebf8283 2019-07-24 stsp if (ret == -1 || ret >= sizeof(msg))
6940 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_SYNTAX);
6941 0ebf8283 2019-07-24 stsp
6942 0ebf8283 2019-07-24 stsp return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX, msg);
6943 0ebf8283 2019-07-24 stsp }
6944 0ebf8283 2019-07-24 stsp
6945 0ebf8283 2019-07-24 stsp static const struct got_error *
6946 0ebf8283 2019-07-24 stsp append_folded_commit_msg(char **new_msg, struct got_histedit_list_entry *hle,
6947 0ebf8283 2019-07-24 stsp char *logmsg, struct got_repository *repo)
6948 0ebf8283 2019-07-24 stsp {
6949 0ebf8283 2019-07-24 stsp const struct got_error *err;
6950 0ebf8283 2019-07-24 stsp struct got_commit_object *folded_commit = NULL;
6951 5943eee2 2019-08-13 stsp char *id_str, *folded_logmsg = NULL;
6952 0ebf8283 2019-07-24 stsp
6953 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
6954 0ebf8283 2019-07-24 stsp if (err)
6955 0ebf8283 2019-07-24 stsp return err;
6956 0ebf8283 2019-07-24 stsp
6957 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&folded_commit, repo, hle->commit_id);
6958 0ebf8283 2019-07-24 stsp if (err)
6959 0ebf8283 2019-07-24 stsp goto done;
6960 0ebf8283 2019-07-24 stsp
6961 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&folded_logmsg, folded_commit);
6962 5943eee2 2019-08-13 stsp if (err)
6963 5943eee2 2019-08-13 stsp goto done;
6964 0ebf8283 2019-07-24 stsp if (asprintf(new_msg, "%s%s# log message of folded commit %s: %s",
6965 0ebf8283 2019-07-24 stsp logmsg ? logmsg : "", logmsg ? "\n" : "", id_str,
6966 5943eee2 2019-08-13 stsp folded_logmsg) == -1) {
6967 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
6968 0ebf8283 2019-07-24 stsp }
6969 0ebf8283 2019-07-24 stsp done:
6970 0ebf8283 2019-07-24 stsp if (folded_commit)
6971 0ebf8283 2019-07-24 stsp got_object_commit_close(folded_commit);
6972 0ebf8283 2019-07-24 stsp free(id_str);
6973 5943eee2 2019-08-13 stsp free(folded_logmsg);
6974 0ebf8283 2019-07-24 stsp return err;
6975 0ebf8283 2019-07-24 stsp }
6976 0ebf8283 2019-07-24 stsp
6977 0ebf8283 2019-07-24 stsp static struct got_histedit_list_entry *
6978 0ebf8283 2019-07-24 stsp get_folded_commits(struct got_histedit_list_entry *hle)
6979 0ebf8283 2019-07-24 stsp {
6980 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *prev, *folded = NULL;
6981 0ebf8283 2019-07-24 stsp
6982 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(hle, got_histedit_list, entry);
6983 3f9de99f 2019-07-24 stsp while (prev && (prev->cmd->code == GOT_HISTEDIT_FOLD ||
6984 3f9de99f 2019-07-24 stsp prev->cmd->code == GOT_HISTEDIT_DROP)) {
6985 3f9de99f 2019-07-24 stsp if (prev->cmd->code == GOT_HISTEDIT_FOLD)
6986 3f9de99f 2019-07-24 stsp folded = prev;
6987 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(prev, got_histedit_list, entry);
6988 0ebf8283 2019-07-24 stsp }
6989 0ebf8283 2019-07-24 stsp
6990 0ebf8283 2019-07-24 stsp return folded;
6991 0ebf8283 2019-07-24 stsp }
6992 0ebf8283 2019-07-24 stsp
6993 0ebf8283 2019-07-24 stsp static const struct got_error *
6994 0ebf8283 2019-07-24 stsp histedit_edit_logmsg(struct got_histedit_list_entry *hle,
6995 0ebf8283 2019-07-24 stsp struct got_repository *repo)
6996 0ebf8283 2019-07-24 stsp {
6997 5943eee2 2019-08-13 stsp char *logmsg_path = NULL, *id_str = NULL, *orig_logmsg = NULL;
6998 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *new_msg = NULL, *editor = NULL;
6999 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
7000 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
7001 0ebf8283 2019-07-24 stsp int fd;
7002 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *folded = NULL;
7003 0ebf8283 2019-07-24 stsp
7004 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
7005 0ebf8283 2019-07-24 stsp if (err)
7006 0ebf8283 2019-07-24 stsp return err;
7007 0ebf8283 2019-07-24 stsp
7008 0ebf8283 2019-07-24 stsp folded = get_folded_commits(hle);
7009 0ebf8283 2019-07-24 stsp if (folded) {
7010 0ebf8283 2019-07-24 stsp while (folded != hle) {
7011 3f9de99f 2019-07-24 stsp if (folded->cmd->code == GOT_HISTEDIT_DROP) {
7012 3f9de99f 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
7013 3f9de99f 2019-07-24 stsp continue;
7014 3f9de99f 2019-07-24 stsp }
7015 0ebf8283 2019-07-24 stsp err = append_folded_commit_msg(&new_msg, folded,
7016 0ebf8283 2019-07-24 stsp logmsg, repo);
7017 0ebf8283 2019-07-24 stsp if (err)
7018 0ebf8283 2019-07-24 stsp goto done;
7019 0ebf8283 2019-07-24 stsp free(logmsg);
7020 0ebf8283 2019-07-24 stsp logmsg = new_msg;
7021 0ebf8283 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
7022 0ebf8283 2019-07-24 stsp }
7023 0ebf8283 2019-07-24 stsp }
7024 0ebf8283 2019-07-24 stsp
7025 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
7026 0ebf8283 2019-07-24 stsp if (err)
7027 0ebf8283 2019-07-24 stsp goto done;
7028 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&orig_logmsg, commit);
7029 5943eee2 2019-08-13 stsp if (err)
7030 5943eee2 2019-08-13 stsp goto done;
7031 0ebf8283 2019-07-24 stsp if (asprintf(&new_msg,
7032 0ebf8283 2019-07-24 stsp "%s\n# original log message of commit %s: %s",
7033 5943eee2 2019-08-13 stsp logmsg ? logmsg : "", id_str, orig_logmsg) == -1) {
7034 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
7035 0ebf8283 2019-07-24 stsp goto done;
7036 0ebf8283 2019-07-24 stsp }
7037 0ebf8283 2019-07-24 stsp free(logmsg);
7038 0ebf8283 2019-07-24 stsp logmsg = new_msg;
7039 0ebf8283 2019-07-24 stsp
7040 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
7041 0ebf8283 2019-07-24 stsp if (err)
7042 0ebf8283 2019-07-24 stsp goto done;
7043 0ebf8283 2019-07-24 stsp
7044 bb63914a 2020-02-17 stsp err = got_opentemp_named_fd(&logmsg_path, &fd,
7045 bb63914a 2020-02-17 stsp GOT_TMPDIR_STR "/got-logmsg");
7046 0ebf8283 2019-07-24 stsp if (err)
7047 0ebf8283 2019-07-24 stsp goto done;
7048 0ebf8283 2019-07-24 stsp
7049 0ebf8283 2019-07-24 stsp dprintf(fd, logmsg);
7050 0ebf8283 2019-07-24 stsp close(fd);
7051 0ebf8283 2019-07-24 stsp
7052 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
7053 0ebf8283 2019-07-24 stsp if (err)
7054 0ebf8283 2019-07-24 stsp goto done;
7055 0ebf8283 2019-07-24 stsp
7056 0ebf8283 2019-07-24 stsp err = edit_logmsg(&hle->logmsg, editor, logmsg_path, logmsg);
7057 0ebf8283 2019-07-24 stsp if (err) {
7058 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY)
7059 0ebf8283 2019-07-24 stsp goto done;
7060 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&hle->logmsg, commit);
7061 0ebf8283 2019-07-24 stsp }
7062 0ebf8283 2019-07-24 stsp done:
7063 0ebf8283 2019-07-24 stsp if (logmsg_path && unlink(logmsg_path) != 0 && err == NULL)
7064 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", logmsg_path);
7065 0ebf8283 2019-07-24 stsp free(logmsg_path);
7066 0ebf8283 2019-07-24 stsp free(logmsg);
7067 5943eee2 2019-08-13 stsp free(orig_logmsg);
7068 0ebf8283 2019-07-24 stsp free(editor);
7069 0ebf8283 2019-07-24 stsp if (commit)
7070 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7071 0ebf8283 2019-07-24 stsp return err;
7072 5ef14e63 2019-06-02 stsp }
7073 0ebf8283 2019-07-24 stsp
7074 0ebf8283 2019-07-24 stsp static const struct got_error *
7075 0ebf8283 2019-07-24 stsp histedit_parse_list(struct got_histedit_list *histedit_cmds,
7076 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
7077 0ebf8283 2019-07-24 stsp {
7078 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
7079 0ebf8283 2019-07-24 stsp char *line = NULL, *p, *end;
7080 0ebf8283 2019-07-24 stsp size_t size;
7081 0ebf8283 2019-07-24 stsp ssize_t len;
7082 0ebf8283 2019-07-24 stsp int lineno = 0, i;
7083 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
7084 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
7085 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle = NULL;
7086 0ebf8283 2019-07-24 stsp
7087 0ebf8283 2019-07-24 stsp for (;;) {
7088 0ebf8283 2019-07-24 stsp len = getline(&line, &size, f);
7089 0ebf8283 2019-07-24 stsp if (len == -1) {
7090 0ebf8283 2019-07-24 stsp const struct got_error *getline_err;
7091 0ebf8283 2019-07-24 stsp if (feof(f))
7092 0ebf8283 2019-07-24 stsp break;
7093 0ebf8283 2019-07-24 stsp getline_err = got_error_from_errno("getline");
7094 0ebf8283 2019-07-24 stsp err = got_ferror(f, getline_err->code);
7095 0ebf8283 2019-07-24 stsp break;
7096 0ebf8283 2019-07-24 stsp }
7097 0ebf8283 2019-07-24 stsp lineno++;
7098 0ebf8283 2019-07-24 stsp p = line;
7099 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
7100 0ebf8283 2019-07-24 stsp p++;
7101 0ebf8283 2019-07-24 stsp if (p[0] == '#' || p[0] == '\0') {
7102 0ebf8283 2019-07-24 stsp free(line);
7103 0ebf8283 2019-07-24 stsp line = NULL;
7104 0ebf8283 2019-07-24 stsp continue;
7105 0ebf8283 2019-07-24 stsp }
7106 0ebf8283 2019-07-24 stsp cmd = NULL;
7107 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
7108 0ebf8283 2019-07-24 stsp cmd = &got_histedit_cmds[i];
7109 0ebf8283 2019-07-24 stsp if (strncmp(cmd->name, p, strlen(cmd->name)) == 0 &&
7110 0ebf8283 2019-07-24 stsp isspace((unsigned char)p[strlen(cmd->name)])) {
7111 0ebf8283 2019-07-24 stsp p += strlen(cmd->name);
7112 0ebf8283 2019-07-24 stsp break;
7113 0ebf8283 2019-07-24 stsp }
7114 0ebf8283 2019-07-24 stsp if (p[0] == cmd->code && isspace((unsigned char)p[1])) {
7115 0ebf8283 2019-07-24 stsp p++;
7116 0ebf8283 2019-07-24 stsp break;
7117 0ebf8283 2019-07-24 stsp }
7118 0ebf8283 2019-07-24 stsp }
7119 6c1844f6 2019-07-25 stsp if (i == nitems(got_histedit_cmds)) {
7120 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
7121 0ebf8283 2019-07-24 stsp break;
7122 0ebf8283 2019-07-24 stsp }
7123 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
7124 0ebf8283 2019-07-24 stsp p++;
7125 0ebf8283 2019-07-24 stsp if (cmd->code == GOT_HISTEDIT_MESG) {
7126 0ebf8283 2019-07-24 stsp if (hle == NULL || hle->logmsg != NULL) {
7127 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CMD);
7128 0ebf8283 2019-07-24 stsp break;
7129 0ebf8283 2019-07-24 stsp }
7130 0ebf8283 2019-07-24 stsp if (p[0] == '\0') {
7131 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
7132 0ebf8283 2019-07-24 stsp if (err)
7133 0ebf8283 2019-07-24 stsp break;
7134 0ebf8283 2019-07-24 stsp } else {
7135 0ebf8283 2019-07-24 stsp hle->logmsg = strdup(p);
7136 0ebf8283 2019-07-24 stsp if (hle->logmsg == NULL) {
7137 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
7138 0ebf8283 2019-07-24 stsp break;
7139 0ebf8283 2019-07-24 stsp }
7140 0ebf8283 2019-07-24 stsp }
7141 0ebf8283 2019-07-24 stsp free(line);
7142 0ebf8283 2019-07-24 stsp line = NULL;
7143 0ebf8283 2019-07-24 stsp continue;
7144 0ebf8283 2019-07-24 stsp } else {
7145 0ebf8283 2019-07-24 stsp end = p;
7146 0ebf8283 2019-07-24 stsp while (end[0] && !isspace((unsigned char)end[0]))
7147 0ebf8283 2019-07-24 stsp end++;
7148 0ebf8283 2019-07-24 stsp *end = '\0';
7149 0ebf8283 2019-07-24 stsp
7150 0ebf8283 2019-07-24 stsp err = got_object_resolve_id_str(&commit_id, repo, p);
7151 0ebf8283 2019-07-24 stsp if (err) {
7152 0ebf8283 2019-07-24 stsp /* override error code */
7153 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
7154 0ebf8283 2019-07-24 stsp break;
7155 0ebf8283 2019-07-24 stsp }
7156 0ebf8283 2019-07-24 stsp }
7157 0ebf8283 2019-07-24 stsp hle = malloc(sizeof(*hle));
7158 0ebf8283 2019-07-24 stsp if (hle == NULL) {
7159 0ebf8283 2019-07-24 stsp err = got_error_from_errno("malloc");
7160 0ebf8283 2019-07-24 stsp break;
7161 0ebf8283 2019-07-24 stsp }
7162 0ebf8283 2019-07-24 stsp hle->cmd = cmd;
7163 0ebf8283 2019-07-24 stsp hle->commit_id = commit_id;
7164 0ebf8283 2019-07-24 stsp hle->logmsg = NULL;
7165 0ebf8283 2019-07-24 stsp commit_id = NULL;
7166 0ebf8283 2019-07-24 stsp free(line);
7167 0ebf8283 2019-07-24 stsp line = NULL;
7168 0ebf8283 2019-07-24 stsp TAILQ_INSERT_TAIL(histedit_cmds, hle, entry);
7169 0ebf8283 2019-07-24 stsp }
7170 0ebf8283 2019-07-24 stsp
7171 0ebf8283 2019-07-24 stsp free(line);
7172 0ebf8283 2019-07-24 stsp free(commit_id);
7173 0ebf8283 2019-07-24 stsp return err;
7174 0ebf8283 2019-07-24 stsp }
7175 0ebf8283 2019-07-24 stsp
7176 0ebf8283 2019-07-24 stsp static const struct got_error *
7177 bfce7f83 2019-07-27 stsp histedit_check_script(struct got_histedit_list *histedit_cmds,
7178 bfce7f83 2019-07-27 stsp struct got_object_id_queue *commits, struct got_repository *repo)
7179 bfce7f83 2019-07-27 stsp {
7180 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL;
7181 bfce7f83 2019-07-27 stsp struct got_object_qid *qid;
7182 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
7183 5b87815e 2020-03-05 stsp static char msg[92];
7184 bfce7f83 2019-07-27 stsp char *id_str;
7185 bfce7f83 2019-07-27 stsp
7186 bfce7f83 2019-07-27 stsp if (TAILQ_EMPTY(histedit_cmds))
7187 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_EMPTY_HISTEDIT,
7188 bfce7f83 2019-07-27 stsp "histedit script contains no commands");
7189 a0de39f3 2019-08-09 stsp if (SIMPLEQ_EMPTY(commits))
7190 a0de39f3 2019-08-09 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
7191 5b87815e 2020-03-05 stsp
7192 5b87815e 2020-03-05 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
7193 5b87815e 2020-03-05 stsp struct got_histedit_list_entry *hle2;
7194 5b87815e 2020-03-05 stsp TAILQ_FOREACH(hle2, histedit_cmds, entry) {
7195 5b87815e 2020-03-05 stsp if (hle == hle2)
7196 5b87815e 2020-03-05 stsp continue;
7197 5b87815e 2020-03-05 stsp if (got_object_id_cmp(hle->commit_id,
7198 5b87815e 2020-03-05 stsp hle2->commit_id) != 0)
7199 5b87815e 2020-03-05 stsp continue;
7200 5b87815e 2020-03-05 stsp err = got_object_id_str(&id_str, hle->commit_id);
7201 5b87815e 2020-03-05 stsp if (err)
7202 5b87815e 2020-03-05 stsp return err;
7203 5b87815e 2020-03-05 stsp snprintf(msg, sizeof(msg), "commit %s is listed "
7204 5b87815e 2020-03-05 stsp "more than once in histedit script", id_str);
7205 5b87815e 2020-03-05 stsp free(id_str);
7206 5b87815e 2020-03-05 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
7207 5b87815e 2020-03-05 stsp }
7208 5b87815e 2020-03-05 stsp }
7209 bfce7f83 2019-07-27 stsp
7210 bfce7f83 2019-07-27 stsp SIMPLEQ_FOREACH(qid, commits, entry) {
7211 bfce7f83 2019-07-27 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
7212 bfce7f83 2019-07-27 stsp if (got_object_id_cmp(qid->id, hle->commit_id) == 0)
7213 bfce7f83 2019-07-27 stsp break;
7214 bfce7f83 2019-07-27 stsp }
7215 bfce7f83 2019-07-27 stsp if (hle == NULL) {
7216 bfce7f83 2019-07-27 stsp err = got_object_id_str(&id_str, qid->id);
7217 bfce7f83 2019-07-27 stsp if (err)
7218 bfce7f83 2019-07-27 stsp return err;
7219 bfce7f83 2019-07-27 stsp snprintf(msg, sizeof(msg),
7220 bfce7f83 2019-07-27 stsp "commit %s missing from histedit script", id_str);
7221 bfce7f83 2019-07-27 stsp free(id_str);
7222 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
7223 bfce7f83 2019-07-27 stsp }
7224 bfce7f83 2019-07-27 stsp }
7225 bfce7f83 2019-07-27 stsp
7226 0def28b1 2019-08-17 stsp hle = TAILQ_LAST(histedit_cmds, got_histedit_list);
7227 0def28b1 2019-08-17 stsp if (hle && hle->cmd->code == GOT_HISTEDIT_FOLD)
7228 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD,
7229 bfce7f83 2019-07-27 stsp "last commit in histedit script cannot be folded");
7230 bfce7f83 2019-07-27 stsp
7231 bfce7f83 2019-07-27 stsp return NULL;
7232 bfce7f83 2019-07-27 stsp }
7233 bfce7f83 2019-07-27 stsp
7234 bfce7f83 2019-07-27 stsp static const struct got_error *
7235 0ebf8283 2019-07-24 stsp histedit_run_editor(struct got_histedit_list *histedit_cmds,
7236 bfce7f83 2019-07-27 stsp const char *path, struct got_object_id_queue *commits,
7237 bfce7f83 2019-07-27 stsp struct got_repository *repo)
7238 0ebf8283 2019-07-24 stsp {
7239 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
7240 0ebf8283 2019-07-24 stsp char *editor;
7241 0ebf8283 2019-07-24 stsp FILE *f = NULL;
7242 0ebf8283 2019-07-24 stsp
7243 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
7244 0ebf8283 2019-07-24 stsp if (err)
7245 0ebf8283 2019-07-24 stsp return err;
7246 0ebf8283 2019-07-24 stsp
7247 0ebf8283 2019-07-24 stsp if (spawn_editor(editor, path) == -1) {
7248 0ebf8283 2019-07-24 stsp err = got_error_from_errno("failed spawning editor");
7249 0ebf8283 2019-07-24 stsp goto done;
7250 0ebf8283 2019-07-24 stsp }
7251 0ebf8283 2019-07-24 stsp
7252 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
7253 0ebf8283 2019-07-24 stsp if (f == NULL) {
7254 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fopen");
7255 0ebf8283 2019-07-24 stsp goto done;
7256 0ebf8283 2019-07-24 stsp }
7257 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
7258 bfce7f83 2019-07-27 stsp if (err)
7259 bfce7f83 2019-07-27 stsp goto done;
7260 bfce7f83 2019-07-27 stsp
7261 bfce7f83 2019-07-27 stsp err = histedit_check_script(histedit_cmds, commits, repo);
7262 0ebf8283 2019-07-24 stsp done:
7263 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
7264 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
7265 0ebf8283 2019-07-24 stsp free(editor);
7266 0ebf8283 2019-07-24 stsp return err;
7267 0ebf8283 2019-07-24 stsp }
7268 0ebf8283 2019-07-24 stsp
7269 0ebf8283 2019-07-24 stsp static const struct got_error *
7270 bfce7f83 2019-07-27 stsp histedit_edit_list_retry(struct got_histedit_list *, const struct got_error *,
7271 514f2ffe 2020-01-29 stsp struct got_object_id_queue *, const char *, const char *,
7272 514f2ffe 2020-01-29 stsp struct got_repository *);
7273 0ebf8283 2019-07-24 stsp
7274 0ebf8283 2019-07-24 stsp static const struct got_error *
7275 0ebf8283 2019-07-24 stsp histedit_edit_script(struct got_histedit_list *histedit_cmds,
7276 514f2ffe 2020-01-29 stsp struct got_object_id_queue *commits, const char *branch_name,
7277 083957f4 2020-02-24 stsp int edit_logmsg_only, struct got_repository *repo)
7278 0ebf8283 2019-07-24 stsp {
7279 0ebf8283 2019-07-24 stsp const struct got_error *err;
7280 0ebf8283 2019-07-24 stsp FILE *f = NULL;
7281 0ebf8283 2019-07-24 stsp char *path = NULL;
7282 0ebf8283 2019-07-24 stsp
7283 0ebf8283 2019-07-24 stsp err = got_opentemp_named(&path, &f, "got-histedit");
7284 0ebf8283 2019-07-24 stsp if (err)
7285 0ebf8283 2019-07-24 stsp return err;
7286 0ebf8283 2019-07-24 stsp
7287 514f2ffe 2020-01-29 stsp err = write_cmd_list(f, branch_name, commits);
7288 0ebf8283 2019-07-24 stsp if (err)
7289 0ebf8283 2019-07-24 stsp goto done;
7290 0ebf8283 2019-07-24 stsp
7291 083957f4 2020-02-24 stsp err = histedit_write_commit_list(commits, f, edit_logmsg_only, repo);
7292 0ebf8283 2019-07-24 stsp if (err)
7293 0ebf8283 2019-07-24 stsp goto done;
7294 0ebf8283 2019-07-24 stsp
7295 083957f4 2020-02-24 stsp if (edit_logmsg_only) {
7296 083957f4 2020-02-24 stsp rewind(f);
7297 083957f4 2020-02-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
7298 083957f4 2020-02-24 stsp } else {
7299 083957f4 2020-02-24 stsp if (fclose(f) != 0) {
7300 083957f4 2020-02-24 stsp err = got_error_from_errno("fclose");
7301 0ebf8283 2019-07-24 stsp goto done;
7302 083957f4 2020-02-24 stsp }
7303 083957f4 2020-02-24 stsp f = NULL;
7304 083957f4 2020-02-24 stsp err = histedit_run_editor(histedit_cmds, path, commits, repo);
7305 083957f4 2020-02-24 stsp if (err) {
7306 083957f4 2020-02-24 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
7307 083957f4 2020-02-24 stsp err->code != GOT_ERR_HISTEDIT_CMD)
7308 083957f4 2020-02-24 stsp goto done;
7309 083957f4 2020-02-24 stsp err = histedit_edit_list_retry(histedit_cmds, err,
7310 083957f4 2020-02-24 stsp commits, path, branch_name, repo);
7311 083957f4 2020-02-24 stsp }
7312 0ebf8283 2019-07-24 stsp }
7313 0ebf8283 2019-07-24 stsp done:
7314 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
7315 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
7316 0ebf8283 2019-07-24 stsp if (path && unlink(path) != 0 && err == NULL)
7317 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", path);
7318 0ebf8283 2019-07-24 stsp free(path);
7319 0ebf8283 2019-07-24 stsp return err;
7320 0ebf8283 2019-07-24 stsp }
7321 0ebf8283 2019-07-24 stsp
7322 0ebf8283 2019-07-24 stsp static const struct got_error *
7323 0ebf8283 2019-07-24 stsp histedit_save_list(struct got_histedit_list *histedit_cmds,
7324 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
7325 0ebf8283 2019-07-24 stsp {
7326 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
7327 0ebf8283 2019-07-24 stsp char *path = NULL;
7328 0ebf8283 2019-07-24 stsp FILE *f = NULL;
7329 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
7330 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
7331 0ebf8283 2019-07-24 stsp
7332 c3022ba5 2019-07-27 stsp err = got_worktree_get_histedit_script_path(&path, worktree);
7333 0ebf8283 2019-07-24 stsp if (err)
7334 0ebf8283 2019-07-24 stsp return err;
7335 0ebf8283 2019-07-24 stsp
7336 0ebf8283 2019-07-24 stsp f = fopen(path, "w");
7337 0ebf8283 2019-07-24 stsp if (f == NULL) {
7338 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
7339 0ebf8283 2019-07-24 stsp goto done;
7340 0ebf8283 2019-07-24 stsp }
7341 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
7342 0ebf8283 2019-07-24 stsp err = histedit_write_commit(hle->commit_id, hle->cmd->name, f,
7343 0ebf8283 2019-07-24 stsp repo);
7344 0ebf8283 2019-07-24 stsp if (err)
7345 0ebf8283 2019-07-24 stsp break;
7346 0ebf8283 2019-07-24 stsp
7347 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
7348 0ebf8283 2019-07-24 stsp int n = fprintf(f, "%c %s\n",
7349 0ebf8283 2019-07-24 stsp GOT_HISTEDIT_MESG, hle->logmsg);
7350 0ebf8283 2019-07-24 stsp if (n < 0) {
7351 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
7352 0ebf8283 2019-07-24 stsp break;
7353 0ebf8283 2019-07-24 stsp }
7354 0ebf8283 2019-07-24 stsp }
7355 0ebf8283 2019-07-24 stsp }
7356 0ebf8283 2019-07-24 stsp done:
7357 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
7358 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
7359 0ebf8283 2019-07-24 stsp free(path);
7360 0ebf8283 2019-07-24 stsp if (commit)
7361 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7362 0ebf8283 2019-07-24 stsp return err;
7363 0ebf8283 2019-07-24 stsp }
7364 0ebf8283 2019-07-24 stsp
7365 bfce7f83 2019-07-27 stsp void
7366 bfce7f83 2019-07-27 stsp histedit_free_list(struct got_histedit_list *histedit_cmds)
7367 bfce7f83 2019-07-27 stsp {
7368 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
7369 bfce7f83 2019-07-27 stsp
7370 bfce7f83 2019-07-27 stsp while ((hle = TAILQ_FIRST(histedit_cmds))) {
7371 bfce7f83 2019-07-27 stsp TAILQ_REMOVE(histedit_cmds, hle, entry);
7372 bfce7f83 2019-07-27 stsp free(hle);
7373 bfce7f83 2019-07-27 stsp }
7374 bfce7f83 2019-07-27 stsp }
7375 bfce7f83 2019-07-27 stsp
7376 0ebf8283 2019-07-24 stsp static const struct got_error *
7377 0ebf8283 2019-07-24 stsp histedit_load_list(struct got_histedit_list *histedit_cmds,
7378 0ebf8283 2019-07-24 stsp const char *path, struct got_repository *repo)
7379 0ebf8283 2019-07-24 stsp {
7380 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
7381 0ebf8283 2019-07-24 stsp FILE *f = NULL;
7382 0ebf8283 2019-07-24 stsp
7383 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
7384 0ebf8283 2019-07-24 stsp if (f == NULL) {
7385 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
7386 0ebf8283 2019-07-24 stsp goto done;
7387 0ebf8283 2019-07-24 stsp }
7388 0ebf8283 2019-07-24 stsp
7389 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
7390 0ebf8283 2019-07-24 stsp done:
7391 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
7392 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
7393 0ebf8283 2019-07-24 stsp return err;
7394 0ebf8283 2019-07-24 stsp }
7395 0ebf8283 2019-07-24 stsp
7396 0ebf8283 2019-07-24 stsp static const struct got_error *
7397 0ebf8283 2019-07-24 stsp histedit_edit_list_retry(struct got_histedit_list *histedit_cmds,
7398 bfce7f83 2019-07-27 stsp const struct got_error *edit_err, struct got_object_id_queue *commits,
7399 514f2ffe 2020-01-29 stsp const char *path, const char *branch_name, struct got_repository *repo)
7400 0ebf8283 2019-07-24 stsp {
7401 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL, *prev_err = edit_err;
7402 0ebf8283 2019-07-24 stsp int resp = ' ';
7403 0ebf8283 2019-07-24 stsp
7404 b006047e 2019-07-25 stsp while (resp != 'c' && resp != 'r' && resp != 'a') {
7405 0ebf8283 2019-07-24 stsp printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
7406 bfce7f83 2019-07-27 stsp "or (a)bort: ", getprogname(), prev_err->msg);
7407 0ebf8283 2019-07-24 stsp resp = getchar();
7408 a61a4414 2019-08-07 stsp if (resp == '\n')
7409 a61a4414 2019-08-07 stsp resp = getchar();
7410 426ebf2e 2019-07-25 stsp if (resp == 'c') {
7411 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
7412 bfce7f83 2019-07-27 stsp err = histedit_run_editor(histedit_cmds, path, commits,
7413 bfce7f83 2019-07-27 stsp repo);
7414 426ebf2e 2019-07-25 stsp if (err) {
7415 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
7416 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
7417 426ebf2e 2019-07-25 stsp break;
7418 bfce7f83 2019-07-27 stsp prev_err = err;
7419 426ebf2e 2019-07-25 stsp resp = ' ';
7420 426ebf2e 2019-07-25 stsp continue;
7421 426ebf2e 2019-07-25 stsp }
7422 bfce7f83 2019-07-27 stsp break;
7423 426ebf2e 2019-07-25 stsp } else if (resp == 'r') {
7424 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
7425 0ebf8283 2019-07-24 stsp err = histedit_edit_script(histedit_cmds,
7426 083957f4 2020-02-24 stsp commits, branch_name, 0, repo);
7427 426ebf2e 2019-07-25 stsp if (err) {
7428 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
7429 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
7430 426ebf2e 2019-07-25 stsp break;
7431 bfce7f83 2019-07-27 stsp prev_err = err;
7432 426ebf2e 2019-07-25 stsp resp = ' ';
7433 426ebf2e 2019-07-25 stsp continue;
7434 426ebf2e 2019-07-25 stsp }
7435 bfce7f83 2019-07-27 stsp break;
7436 426ebf2e 2019-07-25 stsp } else if (resp == 'a') {
7437 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CANCEL);
7438 0ebf8283 2019-07-24 stsp break;
7439 426ebf2e 2019-07-25 stsp } else
7440 0ebf8283 2019-07-24 stsp printf("invalid response '%c'\n", resp);
7441 0ebf8283 2019-07-24 stsp }
7442 0ebf8283 2019-07-24 stsp
7443 0ebf8283 2019-07-24 stsp return err;
7444 0ebf8283 2019-07-24 stsp }
7445 0ebf8283 2019-07-24 stsp
7446 0ebf8283 2019-07-24 stsp static const struct got_error *
7447 0ebf8283 2019-07-24 stsp histedit_complete(struct got_worktree *worktree,
7448 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
7449 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_repository *repo)
7450 0ebf8283 2019-07-24 stsp {
7451 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
7452 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
7453 3e3a69f1 2019-07-25 stsp return got_worktree_histedit_complete(worktree, fileindex, tmp_branch,
7454 3e3a69f1 2019-07-25 stsp branch, repo);
7455 0ebf8283 2019-07-24 stsp }
7456 0ebf8283 2019-07-24 stsp
7457 0ebf8283 2019-07-24 stsp static const struct got_error *
7458 0ebf8283 2019-07-24 stsp show_histedit_progress(struct got_commit_object *commit,
7459 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle, struct got_object_id *new_id)
7460 0ebf8283 2019-07-24 stsp {
7461 0ebf8283 2019-07-24 stsp const struct got_error *err;
7462 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
7463 0ebf8283 2019-07-24 stsp
7464 0ebf8283 2019-07-24 stsp err = got_object_id_str(&old_id_str, hle->commit_id);
7465 0ebf8283 2019-07-24 stsp if (err)
7466 0ebf8283 2019-07-24 stsp goto done;
7467 0ebf8283 2019-07-24 stsp
7468 0ebf8283 2019-07-24 stsp if (new_id) {
7469 0ebf8283 2019-07-24 stsp err = got_object_id_str(&new_id_str, new_id);
7470 0ebf8283 2019-07-24 stsp if (err)
7471 0ebf8283 2019-07-24 stsp goto done;
7472 0ebf8283 2019-07-24 stsp }
7473 0ebf8283 2019-07-24 stsp
7474 0ebf8283 2019-07-24 stsp old_id_str[12] = '\0';
7475 0ebf8283 2019-07-24 stsp if (new_id_str)
7476 0ebf8283 2019-07-24 stsp new_id_str[12] = '\0';
7477 0ebf8283 2019-07-24 stsp
7478 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
7479 0ebf8283 2019-07-24 stsp logmsg = strdup(hle->logmsg);
7480 0ebf8283 2019-07-24 stsp if (logmsg == NULL) {
7481 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
7482 0ebf8283 2019-07-24 stsp goto done;
7483 0ebf8283 2019-07-24 stsp }
7484 0ebf8283 2019-07-24 stsp trim_logmsg(logmsg, 42);
7485 0ebf8283 2019-07-24 stsp } else {
7486 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
7487 0ebf8283 2019-07-24 stsp if (err)
7488 0ebf8283 2019-07-24 stsp goto done;
7489 0ebf8283 2019-07-24 stsp }
7490 0ebf8283 2019-07-24 stsp
7491 0ebf8283 2019-07-24 stsp switch (hle->cmd->code) {
7492 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_PICK:
7493 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_EDIT:
7494 0ebf8283 2019-07-24 stsp printf("%s -> %s: %s\n", old_id_str,
7495 0ebf8283 2019-07-24 stsp new_id_str ? new_id_str : "no-op change", logmsg);
7496 0ebf8283 2019-07-24 stsp break;
7497 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_DROP:
7498 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_FOLD:
7499 0ebf8283 2019-07-24 stsp printf("%s -> %s commit: %s\n", old_id_str, hle->cmd->name,
7500 0ebf8283 2019-07-24 stsp logmsg);
7501 0ebf8283 2019-07-24 stsp break;
7502 0ebf8283 2019-07-24 stsp default:
7503 0ebf8283 2019-07-24 stsp break;
7504 0ebf8283 2019-07-24 stsp }
7505 0ebf8283 2019-07-24 stsp done:
7506 0ebf8283 2019-07-24 stsp free(old_id_str);
7507 0ebf8283 2019-07-24 stsp free(new_id_str);
7508 0ebf8283 2019-07-24 stsp return err;
7509 0ebf8283 2019-07-24 stsp }
7510 0ebf8283 2019-07-24 stsp
7511 0ebf8283 2019-07-24 stsp static const struct got_error *
7512 0ebf8283 2019-07-24 stsp histedit_commit(struct got_pathlist_head *merged_paths,
7513 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
7514 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_histedit_list_entry *hle,
7515 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
7516 0ebf8283 2019-07-24 stsp {
7517 0ebf8283 2019-07-24 stsp const struct got_error *err;
7518 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
7519 0ebf8283 2019-07-24 stsp struct got_object_id *new_commit_id;
7520 0ebf8283 2019-07-24 stsp
7521 0ebf8283 2019-07-24 stsp if ((hle->cmd->code == GOT_HISTEDIT_EDIT || get_folded_commits(hle))
7522 0ebf8283 2019-07-24 stsp && hle->logmsg == NULL) {
7523 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
7524 0ebf8283 2019-07-24 stsp if (err)
7525 0ebf8283 2019-07-24 stsp return err;
7526 0ebf8283 2019-07-24 stsp }
7527 0ebf8283 2019-07-24 stsp
7528 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
7529 0ebf8283 2019-07-24 stsp if (err)
7530 0ebf8283 2019-07-24 stsp return err;
7531 0ebf8283 2019-07-24 stsp
7532 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_commit(&new_commit_id, merged_paths,
7533 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, hle->commit_id,
7534 3e3a69f1 2019-07-25 stsp hle->logmsg, repo);
7535 0ebf8283 2019-07-24 stsp if (err) {
7536 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_NO_CHANGES)
7537 0ebf8283 2019-07-24 stsp goto done;
7538 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, NULL);
7539 0ebf8283 2019-07-24 stsp } else {
7540 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, new_commit_id);
7541 0ebf8283 2019-07-24 stsp free(new_commit_id);
7542 0ebf8283 2019-07-24 stsp }
7543 0ebf8283 2019-07-24 stsp done:
7544 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7545 0ebf8283 2019-07-24 stsp return err;
7546 0ebf8283 2019-07-24 stsp }
7547 0ebf8283 2019-07-24 stsp
7548 0ebf8283 2019-07-24 stsp static const struct got_error *
7549 0ebf8283 2019-07-24 stsp histedit_skip_commit(struct got_histedit_list_entry *hle,
7550 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
7551 0ebf8283 2019-07-24 stsp {
7552 0ebf8283 2019-07-24 stsp const struct got_error *error;
7553 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
7554 0ebf8283 2019-07-24 stsp
7555 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_skip_commit(worktree, hle->commit_id,
7556 0ebf8283 2019-07-24 stsp repo);
7557 0ebf8283 2019-07-24 stsp if (error)
7558 0ebf8283 2019-07-24 stsp return error;
7559 0ebf8283 2019-07-24 stsp
7560 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo, hle->commit_id);
7561 0ebf8283 2019-07-24 stsp if (error)
7562 0ebf8283 2019-07-24 stsp return error;
7563 0ebf8283 2019-07-24 stsp
7564 0ebf8283 2019-07-24 stsp error = show_histedit_progress(commit, hle, NULL);
7565 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7566 0ebf8283 2019-07-24 stsp return error;
7567 ab20a43a 2020-01-29 stsp }
7568 ab20a43a 2020-01-29 stsp
7569 ab20a43a 2020-01-29 stsp static const struct got_error *
7570 ab20a43a 2020-01-29 stsp check_local_changes(void *arg, unsigned char status,
7571 ab20a43a 2020-01-29 stsp unsigned char staged_status, const char *path,
7572 ab20a43a 2020-01-29 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
7573 ab20a43a 2020-01-29 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
7574 ab20a43a 2020-01-29 stsp {
7575 ab20a43a 2020-01-29 stsp int *have_local_changes = arg;
7576 ab20a43a 2020-01-29 stsp
7577 ab20a43a 2020-01-29 stsp switch (status) {
7578 ab20a43a 2020-01-29 stsp case GOT_STATUS_ADD:
7579 ab20a43a 2020-01-29 stsp case GOT_STATUS_DELETE:
7580 ab20a43a 2020-01-29 stsp case GOT_STATUS_MODIFY:
7581 ab20a43a 2020-01-29 stsp case GOT_STATUS_CONFLICT:
7582 ab20a43a 2020-01-29 stsp *have_local_changes = 1;
7583 ab20a43a 2020-01-29 stsp return got_error(GOT_ERR_CANCELLED);
7584 ab20a43a 2020-01-29 stsp default:
7585 ab20a43a 2020-01-29 stsp break;
7586 ab20a43a 2020-01-29 stsp }
7587 ab20a43a 2020-01-29 stsp
7588 ab20a43a 2020-01-29 stsp switch (staged_status) {
7589 ab20a43a 2020-01-29 stsp case GOT_STATUS_ADD:
7590 ab20a43a 2020-01-29 stsp case GOT_STATUS_DELETE:
7591 ab20a43a 2020-01-29 stsp case GOT_STATUS_MODIFY:
7592 ab20a43a 2020-01-29 stsp *have_local_changes = 1;
7593 ab20a43a 2020-01-29 stsp return got_error(GOT_ERR_CANCELLED);
7594 ab20a43a 2020-01-29 stsp default:
7595 ab20a43a 2020-01-29 stsp break;
7596 ab20a43a 2020-01-29 stsp }
7597 ab20a43a 2020-01-29 stsp
7598 ab20a43a 2020-01-29 stsp return NULL;
7599 0ebf8283 2019-07-24 stsp }
7600 0ebf8283 2019-07-24 stsp
7601 0ebf8283 2019-07-24 stsp static const struct got_error *
7602 0ebf8283 2019-07-24 stsp cmd_histedit(int argc, char *argv[])
7603 0ebf8283 2019-07-24 stsp {
7604 0ebf8283 2019-07-24 stsp const struct got_error *error = NULL;
7605 0ebf8283 2019-07-24 stsp struct got_worktree *worktree = NULL;
7606 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
7607 0ebf8283 2019-07-24 stsp struct got_repository *repo = NULL;
7608 0ebf8283 2019-07-24 stsp char *cwd = NULL;
7609 0ebf8283 2019-07-24 stsp struct got_reference *branch = NULL;
7610 0ebf8283 2019-07-24 stsp struct got_reference *tmp_branch = NULL;
7611 0ebf8283 2019-07-24 stsp struct got_object_id *resume_commit_id = NULL;
7612 0ebf8283 2019-07-24 stsp struct got_object_id *base_commit_id = NULL;
7613 0ebf8283 2019-07-24 stsp struct got_object_id *head_commit_id = NULL;
7614 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
7615 6ba2bea2 2019-07-27 stsp int ch, rebase_in_progress = 0, did_something;
7616 0ebf8283 2019-07-24 stsp int edit_in_progress = 0, abort_edit = 0, continue_edit = 0;
7617 083957f4 2020-02-24 stsp int edit_logmsg_only = 0;
7618 0ebf8283 2019-07-24 stsp const char *edit_script_path = NULL;
7619 0ebf8283 2019-07-24 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
7620 0ebf8283 2019-07-24 stsp struct got_object_id_queue commits;
7621 0ebf8283 2019-07-24 stsp struct got_pathlist_head merged_paths;
7622 0ebf8283 2019-07-24 stsp const struct got_object_id_queue *parent_ids;
7623 0ebf8283 2019-07-24 stsp struct got_object_qid *pid;
7624 0ebf8283 2019-07-24 stsp struct got_histedit_list histedit_cmds;
7625 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
7626 0ebf8283 2019-07-24 stsp
7627 0ebf8283 2019-07-24 stsp SIMPLEQ_INIT(&commits);
7628 0ebf8283 2019-07-24 stsp TAILQ_INIT(&histedit_cmds);
7629 0ebf8283 2019-07-24 stsp TAILQ_INIT(&merged_paths);
7630 0ebf8283 2019-07-24 stsp
7631 083957f4 2020-02-24 stsp while ((ch = getopt(argc, argv, "acF:m")) != -1) {
7632 0ebf8283 2019-07-24 stsp switch (ch) {
7633 0ebf8283 2019-07-24 stsp case 'a':
7634 0ebf8283 2019-07-24 stsp abort_edit = 1;
7635 0ebf8283 2019-07-24 stsp break;
7636 0ebf8283 2019-07-24 stsp case 'c':
7637 0ebf8283 2019-07-24 stsp continue_edit = 1;
7638 0ebf8283 2019-07-24 stsp break;
7639 0ebf8283 2019-07-24 stsp case 'F':
7640 0ebf8283 2019-07-24 stsp edit_script_path = optarg;
7641 0ebf8283 2019-07-24 stsp break;
7642 083957f4 2020-02-24 stsp case 'm':
7643 083957f4 2020-02-24 stsp edit_logmsg_only = 1;
7644 083957f4 2020-02-24 stsp break;
7645 0ebf8283 2019-07-24 stsp default:
7646 0ebf8283 2019-07-24 stsp usage_histedit();
7647 0ebf8283 2019-07-24 stsp /* NOTREACHED */
7648 0ebf8283 2019-07-24 stsp }
7649 0ebf8283 2019-07-24 stsp }
7650 0ebf8283 2019-07-24 stsp
7651 0ebf8283 2019-07-24 stsp argc -= optind;
7652 0ebf8283 2019-07-24 stsp argv += optind;
7653 0ebf8283 2019-07-24 stsp
7654 0ebf8283 2019-07-24 stsp #ifndef PROFILE
7655 0ebf8283 2019-07-24 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
7656 0ebf8283 2019-07-24 stsp "unveil", NULL) == -1)
7657 0ebf8283 2019-07-24 stsp err(1, "pledge");
7658 0ebf8283 2019-07-24 stsp #endif
7659 0ebf8283 2019-07-24 stsp if (abort_edit && continue_edit)
7660 083957f4 2020-02-24 stsp errx(1, "histedit's -a and -c options are mutually exclusive");
7661 083957f4 2020-02-24 stsp if (edit_script_path && edit_logmsg_only)
7662 083957f4 2020-02-24 stsp errx(1, "histedit's -F and -m options are mutually exclusive");
7663 083957f4 2020-02-24 stsp if (abort_edit && edit_logmsg_only)
7664 083957f4 2020-02-24 stsp errx(1, "histedit's -a and -m options are mutually exclusive");
7665 083957f4 2020-02-24 stsp if (continue_edit && edit_logmsg_only)
7666 083957f4 2020-02-24 stsp errx(1, "histedit's -c and -m options are mutually exclusive");
7667 0ebf8283 2019-07-24 stsp if (argc != 0)
7668 0ebf8283 2019-07-24 stsp usage_histedit();
7669 0ebf8283 2019-07-24 stsp
7670 0ebf8283 2019-07-24 stsp /*
7671 0ebf8283 2019-07-24 stsp * This command cannot apply unveil(2) in all cases because the
7672 0ebf8283 2019-07-24 stsp * user may choose to run an editor to edit the histedit script
7673 0ebf8283 2019-07-24 stsp * and to edit individual commit log messages.
7674 0ebf8283 2019-07-24 stsp * unveil(2) traverses exec(2); if an editor is used we have to
7675 0ebf8283 2019-07-24 stsp * apply unveil after edit script and log messages have been written.
7676 0ebf8283 2019-07-24 stsp * XXX TODO: Make use of unveil(2) where possible.
7677 0ebf8283 2019-07-24 stsp */
7678 0ebf8283 2019-07-24 stsp
7679 0ebf8283 2019-07-24 stsp cwd = getcwd(NULL, 0);
7680 0ebf8283 2019-07-24 stsp if (cwd == NULL) {
7681 0ebf8283 2019-07-24 stsp error = got_error_from_errno("getcwd");
7682 0ebf8283 2019-07-24 stsp goto done;
7683 0ebf8283 2019-07-24 stsp }
7684 0ebf8283 2019-07-24 stsp error = got_worktree_open(&worktree, cwd);
7685 0ebf8283 2019-07-24 stsp if (error)
7686 0ebf8283 2019-07-24 stsp goto done;
7687 0ebf8283 2019-07-24 stsp
7688 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
7689 c9956ddf 2019-09-08 stsp NULL);
7690 0ebf8283 2019-07-24 stsp if (error != NULL)
7691 0ebf8283 2019-07-24 stsp goto done;
7692 0ebf8283 2019-07-24 stsp
7693 0ebf8283 2019-07-24 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
7694 0ebf8283 2019-07-24 stsp if (error)
7695 0ebf8283 2019-07-24 stsp goto done;
7696 0ebf8283 2019-07-24 stsp if (rebase_in_progress) {
7697 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_REBASING);
7698 0ebf8283 2019-07-24 stsp goto done;
7699 0ebf8283 2019-07-24 stsp }
7700 0ebf8283 2019-07-24 stsp
7701 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_in_progress(&edit_in_progress, worktree);
7702 0ebf8283 2019-07-24 stsp if (error)
7703 0ebf8283 2019-07-24 stsp goto done;
7704 0ebf8283 2019-07-24 stsp
7705 083957f4 2020-02-24 stsp if (edit_in_progress && edit_logmsg_only) {
7706 083957f4 2020-02-24 stsp error = got_error_msg(GOT_ERR_HISTEDIT_BUSY,
7707 083957f4 2020-02-24 stsp "histedit operation is in progress in this "
7708 083957f4 2020-02-24 stsp "work tree and must be continued or aborted "
7709 083957f4 2020-02-24 stsp "before the -m option can be used");
7710 083957f4 2020-02-24 stsp goto done;
7711 083957f4 2020-02-24 stsp }
7712 083957f4 2020-02-24 stsp
7713 0ebf8283 2019-07-24 stsp if (edit_in_progress && abort_edit) {
7714 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
7715 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
7716 3e3a69f1 2019-07-25 stsp worktree, repo);
7717 0ebf8283 2019-07-24 stsp if (error)
7718 0ebf8283 2019-07-24 stsp goto done;
7719 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
7720 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
7721 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_abort(worktree, fileindex, repo,
7722 0ebf8283 2019-07-24 stsp branch, base_commit_id, update_progress, &did_something);
7723 0ebf8283 2019-07-24 stsp if (error)
7724 0ebf8283 2019-07-24 stsp goto done;
7725 0ebf8283 2019-07-24 stsp printf("Histedit of %s aborted\n",
7726 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
7727 0ebf8283 2019-07-24 stsp goto done; /* nothing else to do */
7728 0ebf8283 2019-07-24 stsp } else if (abort_edit) {
7729 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
7730 0ebf8283 2019-07-24 stsp goto done;
7731 0ebf8283 2019-07-24 stsp }
7732 0ebf8283 2019-07-24 stsp
7733 0ebf8283 2019-07-24 stsp if (continue_edit) {
7734 0ebf8283 2019-07-24 stsp char *path;
7735 0ebf8283 2019-07-24 stsp
7736 0ebf8283 2019-07-24 stsp if (!edit_in_progress) {
7737 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
7738 0ebf8283 2019-07-24 stsp goto done;
7739 0ebf8283 2019-07-24 stsp }
7740 0ebf8283 2019-07-24 stsp
7741 c3022ba5 2019-07-27 stsp error = got_worktree_get_histedit_script_path(&path, worktree);
7742 0ebf8283 2019-07-24 stsp if (error)
7743 0ebf8283 2019-07-24 stsp goto done;
7744 0ebf8283 2019-07-24 stsp
7745 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds, path, repo);
7746 0ebf8283 2019-07-24 stsp free(path);
7747 0ebf8283 2019-07-24 stsp if (error)
7748 0ebf8283 2019-07-24 stsp goto done;
7749 0ebf8283 2019-07-24 stsp
7750 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
7751 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
7752 3e3a69f1 2019-07-25 stsp worktree, repo);
7753 0ebf8283 2019-07-24 stsp if (error)
7754 0ebf8283 2019-07-24 stsp goto done;
7755 0ebf8283 2019-07-24 stsp
7756 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
7757 0ebf8283 2019-07-24 stsp if (error)
7758 0ebf8283 2019-07-24 stsp goto done;
7759 0ebf8283 2019-07-24 stsp
7760 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
7761 0ebf8283 2019-07-24 stsp head_commit_id);
7762 0ebf8283 2019-07-24 stsp if (error)
7763 0ebf8283 2019-07-24 stsp goto done;
7764 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
7765 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
7766 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
7767 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
7768 3aac7cf7 2019-07-25 stsp goto done;
7769 3aac7cf7 2019-07-25 stsp }
7770 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
7771 8ca9bd68 2019-07-25 stsp base_commit_id, got_worktree_get_path_prefix(worktree),
7772 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
7773 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7774 0ebf8283 2019-07-24 stsp commit = NULL;
7775 0ebf8283 2019-07-24 stsp if (error)
7776 0ebf8283 2019-07-24 stsp goto done;
7777 0ebf8283 2019-07-24 stsp } else {
7778 0ebf8283 2019-07-24 stsp if (edit_in_progress) {
7779 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_HISTEDIT_BUSY);
7780 0ebf8283 2019-07-24 stsp goto done;
7781 0ebf8283 2019-07-24 stsp }
7782 0ebf8283 2019-07-24 stsp
7783 0ebf8283 2019-07-24 stsp error = got_ref_open(&branch, repo,
7784 0ebf8283 2019-07-24 stsp got_worktree_get_head_ref_name(worktree), 0);
7785 0ebf8283 2019-07-24 stsp if (error != NULL)
7786 0ebf8283 2019-07-24 stsp goto done;
7787 0ebf8283 2019-07-24 stsp
7788 c7d20a3f 2019-07-30 stsp if (strncmp(got_ref_get_name(branch), "refs/heads/", 11) != 0) {
7789 c7d20a3f 2019-07-30 stsp error = got_error_msg(GOT_ERR_COMMIT_BRANCH,
7790 c7d20a3f 2019-07-30 stsp "will not edit commit history of a branch outside "
7791 c7d20a3f 2019-07-30 stsp "the \"refs/heads/\" reference namespace");
7792 c7d20a3f 2019-07-30 stsp goto done;
7793 c7d20a3f 2019-07-30 stsp }
7794 c7d20a3f 2019-07-30 stsp
7795 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
7796 bfce7f83 2019-07-27 stsp got_ref_close(branch);
7797 bfce7f83 2019-07-27 stsp branch = NULL;
7798 0ebf8283 2019-07-24 stsp if (error)
7799 0ebf8283 2019-07-24 stsp goto done;
7800 0ebf8283 2019-07-24 stsp
7801 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
7802 0ebf8283 2019-07-24 stsp head_commit_id);
7803 0ebf8283 2019-07-24 stsp if (error)
7804 0ebf8283 2019-07-24 stsp goto done;
7805 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
7806 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
7807 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
7808 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
7809 3aac7cf7 2019-07-25 stsp goto done;
7810 3aac7cf7 2019-07-25 stsp }
7811 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
7812 8ca9bd68 2019-07-25 stsp got_worktree_get_base_commit_id(worktree),
7813 8ca9bd68 2019-07-25 stsp got_worktree_get_path_prefix(worktree),
7814 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
7815 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7816 0ebf8283 2019-07-24 stsp commit = NULL;
7817 0ebf8283 2019-07-24 stsp if (error)
7818 0ebf8283 2019-07-24 stsp goto done;
7819 0ebf8283 2019-07-24 stsp
7820 c5996fff 2020-01-29 stsp if (SIMPLEQ_EMPTY(&commits)) {
7821 c5996fff 2020-01-29 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
7822 c5996fff 2020-01-29 stsp goto done;
7823 c5996fff 2020-01-29 stsp }
7824 c5996fff 2020-01-29 stsp
7825 bfce7f83 2019-07-27 stsp error = got_worktree_histedit_prepare(&tmp_branch, &branch,
7826 bfce7f83 2019-07-27 stsp &base_commit_id, &fileindex, worktree, repo);
7827 bfce7f83 2019-07-27 stsp if (error)
7828 bfce7f83 2019-07-27 stsp goto done;
7829 bfce7f83 2019-07-27 stsp
7830 0ebf8283 2019-07-24 stsp if (edit_script_path) {
7831 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds,
7832 0ebf8283 2019-07-24 stsp edit_script_path, repo);
7833 6ba2bea2 2019-07-27 stsp if (error) {
7834 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
7835 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
7836 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
7837 0ebf8283 2019-07-24 stsp goto done;
7838 6ba2bea2 2019-07-27 stsp }
7839 0ebf8283 2019-07-24 stsp } else {
7840 514f2ffe 2020-01-29 stsp const char *branch_name;
7841 514f2ffe 2020-01-29 stsp branch_name = got_ref_get_symref_target(branch);
7842 514f2ffe 2020-01-29 stsp if (strncmp(branch_name, "refs/heads/", 11) == 0)
7843 514f2ffe 2020-01-29 stsp branch_name += 11;
7844 0ebf8283 2019-07-24 stsp error = histedit_edit_script(&histedit_cmds, &commits,
7845 083957f4 2020-02-24 stsp branch_name, edit_logmsg_only, repo);
7846 6ba2bea2 2019-07-27 stsp if (error) {
7847 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
7848 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
7849 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
7850 0ebf8283 2019-07-24 stsp goto done;
7851 6ba2bea2 2019-07-27 stsp }
7852 0ebf8283 2019-07-24 stsp
7853 0ebf8283 2019-07-24 stsp }
7854 0ebf8283 2019-07-24 stsp
7855 0ebf8283 2019-07-24 stsp error = histedit_save_list(&histedit_cmds, worktree,
7856 0ebf8283 2019-07-24 stsp repo);
7857 6ba2bea2 2019-07-27 stsp if (error) {
7858 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
7859 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
7860 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
7861 0ebf8283 2019-07-24 stsp goto done;
7862 6ba2bea2 2019-07-27 stsp }
7863 0ebf8283 2019-07-24 stsp
7864 0ebf8283 2019-07-24 stsp }
7865 0ebf8283 2019-07-24 stsp
7866 4ec14e60 2019-08-28 hiltjo error = histedit_check_script(&histedit_cmds, &commits, repo);
7867 4ec14e60 2019-08-28 hiltjo if (error)
7868 0ebf8283 2019-07-24 stsp goto done;
7869 0ebf8283 2019-07-24 stsp
7870 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, &histedit_cmds, entry) {
7871 0ebf8283 2019-07-24 stsp if (resume_commit_id) {
7872 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(hle->commit_id,
7873 0ebf8283 2019-07-24 stsp resume_commit_id) != 0)
7874 0ebf8283 2019-07-24 stsp continue;
7875 0ebf8283 2019-07-24 stsp
7876 0ebf8283 2019-07-24 stsp resume_commit_id = NULL;
7877 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP ||
7878 0ebf8283 2019-07-24 stsp hle->cmd->code == GOT_HISTEDIT_FOLD) {
7879 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree,
7880 0ebf8283 2019-07-24 stsp repo);
7881 ab20a43a 2020-01-29 stsp if (error)
7882 ab20a43a 2020-01-29 stsp goto done;
7883 0ebf8283 2019-07-24 stsp } else {
7884 ab20a43a 2020-01-29 stsp struct got_pathlist_head paths;
7885 ab20a43a 2020-01-29 stsp int have_changes = 0;
7886 ab20a43a 2020-01-29 stsp
7887 ab20a43a 2020-01-29 stsp TAILQ_INIT(&paths);
7888 ab20a43a 2020-01-29 stsp error = got_pathlist_append(&paths, "", NULL);
7889 ab20a43a 2020-01-29 stsp if (error)
7890 ab20a43a 2020-01-29 stsp goto done;
7891 ab20a43a 2020-01-29 stsp error = got_worktree_status(worktree, &paths,
7892 ab20a43a 2020-01-29 stsp repo, check_local_changes, &have_changes,
7893 ab20a43a 2020-01-29 stsp check_cancelled, NULL);
7894 ab20a43a 2020-01-29 stsp got_pathlist_free(&paths);
7895 ab20a43a 2020-01-29 stsp if (error) {
7896 ab20a43a 2020-01-29 stsp if (error->code != GOT_ERR_CANCELLED)
7897 ab20a43a 2020-01-29 stsp goto done;
7898 ab20a43a 2020-01-29 stsp if (sigint_received || sigpipe_received)
7899 ab20a43a 2020-01-29 stsp goto done;
7900 ab20a43a 2020-01-29 stsp }
7901 ab20a43a 2020-01-29 stsp if (have_changes) {
7902 ab20a43a 2020-01-29 stsp error = histedit_commit(NULL, worktree,
7903 ab20a43a 2020-01-29 stsp fileindex, tmp_branch, hle, repo);
7904 ab20a43a 2020-01-29 stsp if (error)
7905 ab20a43a 2020-01-29 stsp goto done;
7906 ab20a43a 2020-01-29 stsp } else {
7907 ab20a43a 2020-01-29 stsp error = got_object_open_as_commit(
7908 ab20a43a 2020-01-29 stsp &commit, repo, hle->commit_id);
7909 ab20a43a 2020-01-29 stsp if (error)
7910 ab20a43a 2020-01-29 stsp goto done;
7911 ab20a43a 2020-01-29 stsp error = show_histedit_progress(commit,
7912 ab20a43a 2020-01-29 stsp hle, NULL);
7913 ab20a43a 2020-01-29 stsp got_object_commit_close(commit);
7914 ab20a43a 2020-01-29 stsp commit = NULL;
7915 ab20a43a 2020-01-29 stsp if (error)
7916 ab20a43a 2020-01-29 stsp goto done;
7917 ab20a43a 2020-01-29 stsp }
7918 0ebf8283 2019-07-24 stsp }
7919 0ebf8283 2019-07-24 stsp continue;
7920 0ebf8283 2019-07-24 stsp }
7921 0ebf8283 2019-07-24 stsp
7922 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP) {
7923 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
7924 0ebf8283 2019-07-24 stsp if (error)
7925 0ebf8283 2019-07-24 stsp goto done;
7926 0ebf8283 2019-07-24 stsp continue;
7927 0ebf8283 2019-07-24 stsp }
7928 0ebf8283 2019-07-24 stsp
7929 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
7930 0ebf8283 2019-07-24 stsp hle->commit_id);
7931 0ebf8283 2019-07-24 stsp if (error)
7932 0ebf8283 2019-07-24 stsp goto done;
7933 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
7934 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
7935 0ebf8283 2019-07-24 stsp
7936 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_merge_files(&merged_paths,
7937 3e3a69f1 2019-07-25 stsp worktree, fileindex, pid->id, hle->commit_id, repo,
7938 3e3a69f1 2019-07-25 stsp rebase_progress, &rebase_status, check_cancelled, NULL);
7939 0ebf8283 2019-07-24 stsp if (error)
7940 0ebf8283 2019-07-24 stsp goto done;
7941 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7942 0ebf8283 2019-07-24 stsp commit = NULL;
7943 0ebf8283 2019-07-24 stsp
7944 0ebf8283 2019-07-24 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
7945 a0ea4fc0 2020-02-28 stsp error = show_rebase_merge_conflict(hle->commit_id,
7946 a0ea4fc0 2020-02-28 stsp repo);
7947 a0ea4fc0 2020-02-28 stsp if (error)
7948 a0ea4fc0 2020-02-28 stsp goto done;
7949 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
7950 0ebf8283 2019-07-24 stsp break;
7951 0ebf8283 2019-07-24 stsp }
7952 0ebf8283 2019-07-24 stsp
7953 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_EDIT) {
7954 0ebf8283 2019-07-24 stsp char *id_str;
7955 0ebf8283 2019-07-24 stsp error = got_object_id_str(&id_str, hle->commit_id);
7956 0ebf8283 2019-07-24 stsp if (error)
7957 0ebf8283 2019-07-24 stsp goto done;
7958 0ebf8283 2019-07-24 stsp printf("Stopping histedit for amending commit %s\n",
7959 0ebf8283 2019-07-24 stsp id_str);
7960 0ebf8283 2019-07-24 stsp free(id_str);
7961 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
7962 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree,
7963 3e3a69f1 2019-07-25 stsp fileindex);
7964 0ebf8283 2019-07-24 stsp goto done;
7965 0ebf8283 2019-07-24 stsp }
7966 0ebf8283 2019-07-24 stsp
7967 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_FOLD) {
7968 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
7969 0ebf8283 2019-07-24 stsp if (error)
7970 0ebf8283 2019-07-24 stsp goto done;
7971 0ebf8283 2019-07-24 stsp continue;
7972 0ebf8283 2019-07-24 stsp }
7973 0ebf8283 2019-07-24 stsp
7974 3e3a69f1 2019-07-25 stsp error = histedit_commit(&merged_paths, worktree, fileindex,
7975 3e3a69f1 2019-07-25 stsp tmp_branch, hle, repo);
7976 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
7977 0ebf8283 2019-07-24 stsp if (error)
7978 0ebf8283 2019-07-24 stsp goto done;
7979 0ebf8283 2019-07-24 stsp }
7980 0ebf8283 2019-07-24 stsp
7981 0ebf8283 2019-07-24 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
7982 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree, fileindex);
7983 0ebf8283 2019-07-24 stsp if (error)
7984 0ebf8283 2019-07-24 stsp goto done;
7985 0ebf8283 2019-07-24 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
7986 4cb8f8f3 2020-03-05 stsp "conflicts must be resolved before histedit can continue");
7987 0ebf8283 2019-07-24 stsp } else
7988 3e3a69f1 2019-07-25 stsp error = histedit_complete(worktree, fileindex, tmp_branch,
7989 3e3a69f1 2019-07-25 stsp branch, repo);
7990 0ebf8283 2019-07-24 stsp done:
7991 0ebf8283 2019-07-24 stsp got_object_id_queue_free(&commits);
7992 bfce7f83 2019-07-27 stsp histedit_free_list(&histedit_cmds);
7993 0ebf8283 2019-07-24 stsp free(head_commit_id);
7994 0ebf8283 2019-07-24 stsp free(base_commit_id);
7995 0ebf8283 2019-07-24 stsp free(resume_commit_id);
7996 0ebf8283 2019-07-24 stsp if (commit)
7997 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
7998 0ebf8283 2019-07-24 stsp if (branch)
7999 0ebf8283 2019-07-24 stsp got_ref_close(branch);
8000 0ebf8283 2019-07-24 stsp if (tmp_branch)
8001 0ebf8283 2019-07-24 stsp got_ref_close(tmp_branch);
8002 0ebf8283 2019-07-24 stsp if (worktree)
8003 0ebf8283 2019-07-24 stsp got_worktree_close(worktree);
8004 2822a352 2019-10-15 stsp if (repo)
8005 2822a352 2019-10-15 stsp got_repo_close(repo);
8006 2822a352 2019-10-15 stsp return error;
8007 2822a352 2019-10-15 stsp }
8008 2822a352 2019-10-15 stsp
8009 2822a352 2019-10-15 stsp __dead static void
8010 2822a352 2019-10-15 stsp usage_integrate(void)
8011 2822a352 2019-10-15 stsp {
8012 2822a352 2019-10-15 stsp fprintf(stderr, "usage: %s integrate branch\n", getprogname());
8013 2822a352 2019-10-15 stsp exit(1);
8014 2822a352 2019-10-15 stsp }
8015 2822a352 2019-10-15 stsp
8016 2822a352 2019-10-15 stsp static const struct got_error *
8017 2822a352 2019-10-15 stsp cmd_integrate(int argc, char *argv[])
8018 2822a352 2019-10-15 stsp {
8019 2822a352 2019-10-15 stsp const struct got_error *error = NULL;
8020 2822a352 2019-10-15 stsp struct got_repository *repo = NULL;
8021 2822a352 2019-10-15 stsp struct got_worktree *worktree = NULL;
8022 2822a352 2019-10-15 stsp char *cwd = NULL, *refname = NULL, *base_refname = NULL;
8023 2822a352 2019-10-15 stsp const char *branch_arg = NULL;
8024 2822a352 2019-10-15 stsp struct got_reference *branch_ref = NULL, *base_branch_ref = NULL;
8025 2822a352 2019-10-15 stsp struct got_fileindex *fileindex = NULL;
8026 2822a352 2019-10-15 stsp struct got_object_id *commit_id = NULL, *base_commit_id = NULL;
8027 2822a352 2019-10-15 stsp int ch, did_something = 0;
8028 2822a352 2019-10-15 stsp
8029 2822a352 2019-10-15 stsp while ((ch = getopt(argc, argv, "")) != -1) {
8030 2822a352 2019-10-15 stsp switch (ch) {
8031 2822a352 2019-10-15 stsp default:
8032 2822a352 2019-10-15 stsp usage_integrate();
8033 2822a352 2019-10-15 stsp /* NOTREACHED */
8034 2822a352 2019-10-15 stsp }
8035 2822a352 2019-10-15 stsp }
8036 2822a352 2019-10-15 stsp
8037 2822a352 2019-10-15 stsp argc -= optind;
8038 2822a352 2019-10-15 stsp argv += optind;
8039 2822a352 2019-10-15 stsp
8040 2822a352 2019-10-15 stsp if (argc != 1)
8041 2822a352 2019-10-15 stsp usage_integrate();
8042 2822a352 2019-10-15 stsp branch_arg = argv[0];
8043 2822a352 2019-10-15 stsp
8044 2822a352 2019-10-15 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8045 2822a352 2019-10-15 stsp "unveil", NULL) == -1)
8046 2822a352 2019-10-15 stsp err(1, "pledge");
8047 2822a352 2019-10-15 stsp
8048 2822a352 2019-10-15 stsp cwd = getcwd(NULL, 0);
8049 2822a352 2019-10-15 stsp if (cwd == NULL) {
8050 2822a352 2019-10-15 stsp error = got_error_from_errno("getcwd");
8051 2822a352 2019-10-15 stsp goto done;
8052 2822a352 2019-10-15 stsp }
8053 2822a352 2019-10-15 stsp
8054 2822a352 2019-10-15 stsp error = got_worktree_open(&worktree, cwd);
8055 2822a352 2019-10-15 stsp if (error)
8056 2822a352 2019-10-15 stsp goto done;
8057 2822a352 2019-10-15 stsp
8058 2822a352 2019-10-15 stsp error = check_rebase_or_histedit_in_progress(worktree);
8059 2822a352 2019-10-15 stsp if (error)
8060 2822a352 2019-10-15 stsp goto done;
8061 2822a352 2019-10-15 stsp
8062 2822a352 2019-10-15 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8063 2822a352 2019-10-15 stsp NULL);
8064 2822a352 2019-10-15 stsp if (error != NULL)
8065 2822a352 2019-10-15 stsp goto done;
8066 2822a352 2019-10-15 stsp
8067 2822a352 2019-10-15 stsp error = apply_unveil(got_repo_get_path(repo), 0,
8068 2822a352 2019-10-15 stsp got_worktree_get_root_path(worktree));
8069 2822a352 2019-10-15 stsp if (error)
8070 2822a352 2019-10-15 stsp goto done;
8071 2822a352 2019-10-15 stsp
8072 2822a352 2019-10-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_arg) == -1) {
8073 2822a352 2019-10-15 stsp error = got_error_from_errno("asprintf");
8074 2822a352 2019-10-15 stsp goto done;
8075 2822a352 2019-10-15 stsp }
8076 2822a352 2019-10-15 stsp
8077 2822a352 2019-10-15 stsp error = got_worktree_integrate_prepare(&fileindex, &branch_ref,
8078 2822a352 2019-10-15 stsp &base_branch_ref, worktree, refname, repo);
8079 2822a352 2019-10-15 stsp if (error)
8080 2822a352 2019-10-15 stsp goto done;
8081 2822a352 2019-10-15 stsp
8082 2822a352 2019-10-15 stsp refname = strdup(got_ref_get_name(branch_ref));
8083 2822a352 2019-10-15 stsp if (refname == NULL) {
8084 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
8085 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
8086 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
8087 2822a352 2019-10-15 stsp goto done;
8088 2822a352 2019-10-15 stsp }
8089 2822a352 2019-10-15 stsp base_refname = strdup(got_ref_get_name(base_branch_ref));
8090 2822a352 2019-10-15 stsp if (base_refname == NULL) {
8091 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
8092 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
8093 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
8094 2822a352 2019-10-15 stsp goto done;
8095 2822a352 2019-10-15 stsp }
8096 2822a352 2019-10-15 stsp
8097 2822a352 2019-10-15 stsp error = got_ref_resolve(&commit_id, repo, branch_ref);
8098 2822a352 2019-10-15 stsp if (error)
8099 2822a352 2019-10-15 stsp goto done;
8100 2822a352 2019-10-15 stsp
8101 2822a352 2019-10-15 stsp error = got_ref_resolve(&base_commit_id, repo, base_branch_ref);
8102 2822a352 2019-10-15 stsp if (error)
8103 2822a352 2019-10-15 stsp goto done;
8104 2822a352 2019-10-15 stsp
8105 2822a352 2019-10-15 stsp if (got_object_id_cmp(commit_id, base_commit_id) == 0) {
8106 2822a352 2019-10-15 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
8107 2822a352 2019-10-15 stsp "specified branch has already been integrated");
8108 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
8109 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
8110 2822a352 2019-10-15 stsp goto done;
8111 2822a352 2019-10-15 stsp }
8112 2822a352 2019-10-15 stsp
8113 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, base_commit_id, 1, repo);
8114 2822a352 2019-10-15 stsp if (error) {
8115 2822a352 2019-10-15 stsp if (error->code == GOT_ERR_ANCESTRY)
8116 2822a352 2019-10-15 stsp error = got_error(GOT_ERR_REBASE_REQUIRED);
8117 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
8118 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
8119 2822a352 2019-10-15 stsp goto done;
8120 2822a352 2019-10-15 stsp }
8121 2822a352 2019-10-15 stsp
8122 2822a352 2019-10-15 stsp error = got_worktree_integrate_continue(worktree, fileindex, repo,
8123 2822a352 2019-10-15 stsp branch_ref, base_branch_ref, update_progress, &did_something,
8124 2822a352 2019-10-15 stsp check_cancelled, NULL);
8125 2822a352 2019-10-15 stsp if (error)
8126 2822a352 2019-10-15 stsp goto done;
8127 2822a352 2019-10-15 stsp
8128 2822a352 2019-10-15 stsp printf("Integrated %s into %s\n", refname, base_refname);
8129 2822a352 2019-10-15 stsp done:
8130 715dc77e 2019-08-03 stsp if (repo)
8131 715dc77e 2019-08-03 stsp got_repo_close(repo);
8132 2822a352 2019-10-15 stsp if (worktree)
8133 2822a352 2019-10-15 stsp got_worktree_close(worktree);
8134 2822a352 2019-10-15 stsp free(cwd);
8135 2822a352 2019-10-15 stsp free(base_commit_id);
8136 2822a352 2019-10-15 stsp free(commit_id);
8137 2822a352 2019-10-15 stsp free(refname);
8138 2822a352 2019-10-15 stsp free(base_refname);
8139 715dc77e 2019-08-03 stsp return error;
8140 715dc77e 2019-08-03 stsp }
8141 715dc77e 2019-08-03 stsp
8142 715dc77e 2019-08-03 stsp __dead static void
8143 715dc77e 2019-08-03 stsp usage_stage(void)
8144 715dc77e 2019-08-03 stsp {
8145 f3055044 2019-08-07 stsp fprintf(stderr, "usage: %s stage [-l] | [-p] [-F response-script] "
8146 f3055044 2019-08-07 stsp "[file-path ...]\n",
8147 715dc77e 2019-08-03 stsp getprogname());
8148 715dc77e 2019-08-03 stsp exit(1);
8149 715dc77e 2019-08-03 stsp }
8150 715dc77e 2019-08-03 stsp
8151 715dc77e 2019-08-03 stsp static const struct got_error *
8152 408b4ebc 2019-08-03 stsp print_stage(void *arg, unsigned char status, unsigned char staged_status,
8153 408b4ebc 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
8154 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
8155 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
8156 408b4ebc 2019-08-03 stsp {
8157 408b4ebc 2019-08-03 stsp const struct got_error *err = NULL;
8158 408b4ebc 2019-08-03 stsp char *id_str = NULL;
8159 408b4ebc 2019-08-03 stsp
8160 408b4ebc 2019-08-03 stsp if (staged_status != GOT_STATUS_ADD &&
8161 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_MODIFY &&
8162 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
8163 408b4ebc 2019-08-03 stsp return NULL;
8164 408b4ebc 2019-08-03 stsp
8165 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
8166 408b4ebc 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY)
8167 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, staged_blob_id);
8168 408b4ebc 2019-08-03 stsp else
8169 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, blob_id);
8170 408b4ebc 2019-08-03 stsp if (err)
8171 408b4ebc 2019-08-03 stsp return err;
8172 408b4ebc 2019-08-03 stsp
8173 408b4ebc 2019-08-03 stsp printf("%s %c %s\n", id_str, staged_status, path);
8174 408b4ebc 2019-08-03 stsp free(id_str);
8175 dc424a06 2019-08-07 stsp return NULL;
8176 dc424a06 2019-08-07 stsp }
8177 2e1f37b0 2019-08-08 stsp
8178 dc424a06 2019-08-07 stsp static const struct got_error *
8179 715dc77e 2019-08-03 stsp cmd_stage(int argc, char *argv[])
8180 715dc77e 2019-08-03 stsp {
8181 715dc77e 2019-08-03 stsp const struct got_error *error = NULL;
8182 715dc77e 2019-08-03 stsp struct got_repository *repo = NULL;
8183 715dc77e 2019-08-03 stsp struct got_worktree *worktree = NULL;
8184 715dc77e 2019-08-03 stsp char *cwd = NULL;
8185 715dc77e 2019-08-03 stsp struct got_pathlist_head paths;
8186 715dc77e 2019-08-03 stsp struct got_pathlist_entry *pe;
8187 dc424a06 2019-08-07 stsp int ch, list_stage = 0, pflag = 0;
8188 dc424a06 2019-08-07 stsp FILE *patch_script_file = NULL;
8189 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
8190 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
8191 715dc77e 2019-08-03 stsp
8192 715dc77e 2019-08-03 stsp TAILQ_INIT(&paths);
8193 715dc77e 2019-08-03 stsp
8194 dc424a06 2019-08-07 stsp while ((ch = getopt(argc, argv, "lpF:")) != -1) {
8195 715dc77e 2019-08-03 stsp switch (ch) {
8196 408b4ebc 2019-08-03 stsp case 'l':
8197 408b4ebc 2019-08-03 stsp list_stage = 1;
8198 408b4ebc 2019-08-03 stsp break;
8199 dc424a06 2019-08-07 stsp case 'p':
8200 dc424a06 2019-08-07 stsp pflag = 1;
8201 dc424a06 2019-08-07 stsp break;
8202 dc424a06 2019-08-07 stsp case 'F':
8203 dc424a06 2019-08-07 stsp patch_script_path = optarg;
8204 dc424a06 2019-08-07 stsp break;
8205 715dc77e 2019-08-03 stsp default:
8206 715dc77e 2019-08-03 stsp usage_stage();
8207 715dc77e 2019-08-03 stsp /* NOTREACHED */
8208 715dc77e 2019-08-03 stsp }
8209 715dc77e 2019-08-03 stsp }
8210 715dc77e 2019-08-03 stsp
8211 715dc77e 2019-08-03 stsp argc -= optind;
8212 715dc77e 2019-08-03 stsp argv += optind;
8213 715dc77e 2019-08-03 stsp
8214 715dc77e 2019-08-03 stsp #ifndef PROFILE
8215 715dc77e 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8216 715dc77e 2019-08-03 stsp "unveil", NULL) == -1)
8217 715dc77e 2019-08-03 stsp err(1, "pledge");
8218 715dc77e 2019-08-03 stsp #endif
8219 2db2652d 2019-08-07 stsp if (list_stage && (pflag || patch_script_path))
8220 2db2652d 2019-08-07 stsp errx(1, "-l option cannot be used with other options");
8221 dc424a06 2019-08-07 stsp if (patch_script_path && !pflag)
8222 dc424a06 2019-08-07 stsp errx(1, "-F option can only be used together with -p option");
8223 715dc77e 2019-08-03 stsp
8224 715dc77e 2019-08-03 stsp cwd = getcwd(NULL, 0);
8225 715dc77e 2019-08-03 stsp if (cwd == NULL) {
8226 715dc77e 2019-08-03 stsp error = got_error_from_errno("getcwd");
8227 715dc77e 2019-08-03 stsp goto done;
8228 715dc77e 2019-08-03 stsp }
8229 715dc77e 2019-08-03 stsp
8230 715dc77e 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
8231 715dc77e 2019-08-03 stsp if (error)
8232 715dc77e 2019-08-03 stsp goto done;
8233 715dc77e 2019-08-03 stsp
8234 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8235 c9956ddf 2019-09-08 stsp NULL);
8236 715dc77e 2019-08-03 stsp if (error != NULL)
8237 715dc77e 2019-08-03 stsp goto done;
8238 715dc77e 2019-08-03 stsp
8239 dc424a06 2019-08-07 stsp if (patch_script_path) {
8240 dc424a06 2019-08-07 stsp patch_script_file = fopen(patch_script_path, "r");
8241 dc424a06 2019-08-07 stsp if (patch_script_file == NULL) {
8242 dc424a06 2019-08-07 stsp error = got_error_from_errno2("fopen",
8243 dc424a06 2019-08-07 stsp patch_script_path);
8244 dc424a06 2019-08-07 stsp goto done;
8245 dc424a06 2019-08-07 stsp }
8246 dc424a06 2019-08-07 stsp }
8247 9fd7cd22 2019-08-30 stsp error = apply_unveil(got_repo_get_path(repo), 0,
8248 715dc77e 2019-08-03 stsp got_worktree_get_root_path(worktree));
8249 715dc77e 2019-08-03 stsp if (error)
8250 715dc77e 2019-08-03 stsp goto done;
8251 715dc77e 2019-08-03 stsp
8252 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
8253 6d022e97 2019-08-04 stsp if (error)
8254 6d022e97 2019-08-04 stsp goto done;
8255 715dc77e 2019-08-03 stsp
8256 6d022e97 2019-08-04 stsp if (list_stage)
8257 408b4ebc 2019-08-03 stsp error = got_worktree_status(worktree, &paths, repo,
8258 408b4ebc 2019-08-03 stsp print_stage, NULL, check_cancelled, NULL);
8259 2e1f37b0 2019-08-08 stsp else {
8260 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
8261 2e1f37b0 2019-08-08 stsp cpa.action = "stage";
8262 dc424a06 2019-08-07 stsp error = got_worktree_stage(worktree, &paths,
8263 dc424a06 2019-08-07 stsp pflag ? NULL : print_status, NULL,
8264 2e1f37b0 2019-08-08 stsp pflag ? choose_patch : NULL, &cpa, repo);
8265 2e1f37b0 2019-08-08 stsp }
8266 ad493afc 2019-08-03 stsp done:
8267 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
8268 2e1f37b0 2019-08-08 stsp error == NULL)
8269 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
8270 ad493afc 2019-08-03 stsp if (repo)
8271 ad493afc 2019-08-03 stsp got_repo_close(repo);
8272 ad493afc 2019-08-03 stsp if (worktree)
8273 ad493afc 2019-08-03 stsp got_worktree_close(worktree);
8274 ad493afc 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
8275 ad493afc 2019-08-03 stsp free((char *)pe->path);
8276 ad493afc 2019-08-03 stsp got_pathlist_free(&paths);
8277 ad493afc 2019-08-03 stsp free(cwd);
8278 ad493afc 2019-08-03 stsp return error;
8279 ad493afc 2019-08-03 stsp }
8280 ad493afc 2019-08-03 stsp
8281 ad493afc 2019-08-03 stsp __dead static void
8282 ad493afc 2019-08-03 stsp usage_unstage(void)
8283 ad493afc 2019-08-03 stsp {
8284 2e1f37b0 2019-08-08 stsp fprintf(stderr, "usage: %s unstage [-p] [-F response-script] "
8285 2e1f37b0 2019-08-08 stsp "[file-path ...]\n",
8286 ad493afc 2019-08-03 stsp getprogname());
8287 ad493afc 2019-08-03 stsp exit(1);
8288 ad493afc 2019-08-03 stsp }
8289 ad493afc 2019-08-03 stsp
8290 ad493afc 2019-08-03 stsp
8291 ad493afc 2019-08-03 stsp static const struct got_error *
8292 ad493afc 2019-08-03 stsp cmd_unstage(int argc, char *argv[])
8293 ad493afc 2019-08-03 stsp {
8294 ad493afc 2019-08-03 stsp const struct got_error *error = NULL;
8295 ad493afc 2019-08-03 stsp struct got_repository *repo = NULL;
8296 ad493afc 2019-08-03 stsp struct got_worktree *worktree = NULL;
8297 ad493afc 2019-08-03 stsp char *cwd = NULL;
8298 ad493afc 2019-08-03 stsp struct got_pathlist_head paths;
8299 ad493afc 2019-08-03 stsp struct got_pathlist_entry *pe;
8300 2e1f37b0 2019-08-08 stsp int ch, did_something = 0, pflag = 0;
8301 2e1f37b0 2019-08-08 stsp FILE *patch_script_file = NULL;
8302 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
8303 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
8304 ad493afc 2019-08-03 stsp
8305 ad493afc 2019-08-03 stsp TAILQ_INIT(&paths);
8306 ad493afc 2019-08-03 stsp
8307 2e1f37b0 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:")) != -1) {
8308 ad493afc 2019-08-03 stsp switch (ch) {
8309 2e1f37b0 2019-08-08 stsp case 'p':
8310 2e1f37b0 2019-08-08 stsp pflag = 1;
8311 2e1f37b0 2019-08-08 stsp break;
8312 2e1f37b0 2019-08-08 stsp case 'F':
8313 2e1f37b0 2019-08-08 stsp patch_script_path = optarg;
8314 2e1f37b0 2019-08-08 stsp break;
8315 ad493afc 2019-08-03 stsp default:
8316 ad493afc 2019-08-03 stsp usage_unstage();
8317 ad493afc 2019-08-03 stsp /* NOTREACHED */
8318 ad493afc 2019-08-03 stsp }
8319 ad493afc 2019-08-03 stsp }
8320 ad493afc 2019-08-03 stsp
8321 ad493afc 2019-08-03 stsp argc -= optind;
8322 ad493afc 2019-08-03 stsp argv += optind;
8323 ad493afc 2019-08-03 stsp
8324 ad493afc 2019-08-03 stsp #ifndef PROFILE
8325 ad493afc 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8326 ad493afc 2019-08-03 stsp "unveil", NULL) == -1)
8327 ad493afc 2019-08-03 stsp err(1, "pledge");
8328 ad493afc 2019-08-03 stsp #endif
8329 2e1f37b0 2019-08-08 stsp if (patch_script_path && !pflag)
8330 2e1f37b0 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
8331 2e1f37b0 2019-08-08 stsp
8332 ad493afc 2019-08-03 stsp cwd = getcwd(NULL, 0);
8333 ad493afc 2019-08-03 stsp if (cwd == NULL) {
8334 ad493afc 2019-08-03 stsp error = got_error_from_errno("getcwd");
8335 ad493afc 2019-08-03 stsp goto done;
8336 ad493afc 2019-08-03 stsp }
8337 ad493afc 2019-08-03 stsp
8338 ad493afc 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
8339 ad493afc 2019-08-03 stsp if (error)
8340 ad493afc 2019-08-03 stsp goto done;
8341 ad493afc 2019-08-03 stsp
8342 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8343 c9956ddf 2019-09-08 stsp NULL);
8344 ad493afc 2019-08-03 stsp if (error != NULL)
8345 ad493afc 2019-08-03 stsp goto done;
8346 ad493afc 2019-08-03 stsp
8347 2e1f37b0 2019-08-08 stsp if (patch_script_path) {
8348 2e1f37b0 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
8349 2e1f37b0 2019-08-08 stsp if (patch_script_file == NULL) {
8350 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fopen",
8351 2e1f37b0 2019-08-08 stsp patch_script_path);
8352 2e1f37b0 2019-08-08 stsp goto done;
8353 2e1f37b0 2019-08-08 stsp }
8354 2e1f37b0 2019-08-08 stsp }
8355 2e1f37b0 2019-08-08 stsp
8356 00f36e47 2019-09-06 stsp error = apply_unveil(got_repo_get_path(repo), 0,
8357 ad493afc 2019-08-03 stsp got_worktree_get_root_path(worktree));
8358 ad493afc 2019-08-03 stsp if (error)
8359 ad493afc 2019-08-03 stsp goto done;
8360 ad493afc 2019-08-03 stsp
8361 ad493afc 2019-08-03 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
8362 ad493afc 2019-08-03 stsp if (error)
8363 ad493afc 2019-08-03 stsp goto done;
8364 ad493afc 2019-08-03 stsp
8365 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
8366 2e1f37b0 2019-08-08 stsp cpa.action = "unstage";
8367 ad493afc 2019-08-03 stsp error = got_worktree_unstage(worktree, &paths, update_progress,
8368 2e1f37b0 2019-08-08 stsp &did_something, pflag ? choose_patch : NULL, &cpa, repo);
8369 715dc77e 2019-08-03 stsp done:
8370 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
8371 2e1f37b0 2019-08-08 stsp error == NULL)
8372 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
8373 0ebf8283 2019-07-24 stsp if (repo)
8374 0ebf8283 2019-07-24 stsp got_repo_close(repo);
8375 715dc77e 2019-08-03 stsp if (worktree)
8376 715dc77e 2019-08-03 stsp got_worktree_close(worktree);
8377 715dc77e 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
8378 715dc77e 2019-08-03 stsp free((char *)pe->path);
8379 715dc77e 2019-08-03 stsp got_pathlist_free(&paths);
8380 715dc77e 2019-08-03 stsp free(cwd);
8381 01073a5d 2019-08-22 stsp return error;
8382 01073a5d 2019-08-22 stsp }
8383 01073a5d 2019-08-22 stsp
8384 01073a5d 2019-08-22 stsp __dead static void
8385 01073a5d 2019-08-22 stsp usage_cat(void)
8386 01073a5d 2019-08-22 stsp {
8387 896e9b6f 2019-08-26 stsp fprintf(stderr, "usage: %s cat [-r repository ] [ -c commit ] [ -P ] "
8388 896e9b6f 2019-08-26 stsp "arg1 [arg2 ...]\n", getprogname());
8389 01073a5d 2019-08-22 stsp exit(1);
8390 01073a5d 2019-08-22 stsp }
8391 01073a5d 2019-08-22 stsp
8392 01073a5d 2019-08-22 stsp static const struct got_error *
8393 01073a5d 2019-08-22 stsp cat_blob(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
8394 01073a5d 2019-08-22 stsp {
8395 01073a5d 2019-08-22 stsp const struct got_error *err;
8396 01073a5d 2019-08-22 stsp struct got_blob_object *blob;
8397 01073a5d 2019-08-22 stsp
8398 01073a5d 2019-08-22 stsp err = got_object_open_as_blob(&blob, repo, id, 8192);
8399 01073a5d 2019-08-22 stsp if (err)
8400 01073a5d 2019-08-22 stsp return err;
8401 01073a5d 2019-08-22 stsp
8402 01073a5d 2019-08-22 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, outfile, blob);
8403 01073a5d 2019-08-22 stsp got_object_blob_close(blob);
8404 01073a5d 2019-08-22 stsp return err;
8405 01073a5d 2019-08-22 stsp }
8406 01073a5d 2019-08-22 stsp
8407 01073a5d 2019-08-22 stsp static const struct got_error *
8408 01073a5d 2019-08-22 stsp cat_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
8409 01073a5d 2019-08-22 stsp {
8410 01073a5d 2019-08-22 stsp const struct got_error *err;
8411 01073a5d 2019-08-22 stsp struct got_tree_object *tree;
8412 56e0773d 2019-11-28 stsp int nentries, i;
8413 01073a5d 2019-08-22 stsp
8414 01073a5d 2019-08-22 stsp err = got_object_open_as_tree(&tree, repo, id);
8415 01073a5d 2019-08-22 stsp if (err)
8416 01073a5d 2019-08-22 stsp return err;
8417 01073a5d 2019-08-22 stsp
8418 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
8419 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
8420 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
8421 01073a5d 2019-08-22 stsp char *id_str;
8422 01073a5d 2019-08-22 stsp if (sigint_received || sigpipe_received)
8423 01073a5d 2019-08-22 stsp break;
8424 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
8425 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str, got_tree_entry_get_id(te));
8426 01073a5d 2019-08-22 stsp if (err)
8427 01073a5d 2019-08-22 stsp break;
8428 56e0773d 2019-11-28 stsp fprintf(outfile, "%s %.7o %s\n", id_str,
8429 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(te),
8430 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te));
8431 01073a5d 2019-08-22 stsp free(id_str);
8432 01073a5d 2019-08-22 stsp }
8433 01073a5d 2019-08-22 stsp
8434 01073a5d 2019-08-22 stsp got_object_tree_close(tree);
8435 01073a5d 2019-08-22 stsp return err;
8436 01073a5d 2019-08-22 stsp }
8437 01073a5d 2019-08-22 stsp
8438 01073a5d 2019-08-22 stsp static const struct got_error *
8439 01073a5d 2019-08-22 stsp cat_commit(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
8440 01073a5d 2019-08-22 stsp {
8441 01073a5d 2019-08-22 stsp const struct got_error *err;
8442 01073a5d 2019-08-22 stsp struct got_commit_object *commit;
8443 01073a5d 2019-08-22 stsp const struct got_object_id_queue *parent_ids;
8444 01073a5d 2019-08-22 stsp struct got_object_qid *pid;
8445 01073a5d 2019-08-22 stsp char *id_str = NULL;
8446 24ea5512 2019-08-22 stsp const char *logmsg = NULL;
8447 01073a5d 2019-08-22 stsp
8448 01073a5d 2019-08-22 stsp err = got_object_open_as_commit(&commit, repo, id);
8449 01073a5d 2019-08-22 stsp if (err)
8450 01073a5d 2019-08-22 stsp return err;
8451 01073a5d 2019-08-22 stsp
8452 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_commit_get_tree_id(commit));
8453 01073a5d 2019-08-22 stsp if (err)
8454 01073a5d 2019-08-22 stsp goto done;
8455 01073a5d 2019-08-22 stsp
8456 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str);
8457 01073a5d 2019-08-22 stsp parent_ids = got_object_commit_get_parent_ids(commit);
8458 8aa93786 2019-08-22 stsp fprintf(outfile, "numparents %d\n",
8459 01073a5d 2019-08-22 stsp got_object_commit_get_nparents(commit));
8460 01073a5d 2019-08-22 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
8461 01073a5d 2019-08-22 stsp char *pid_str;
8462 01073a5d 2019-08-22 stsp err = got_object_id_str(&pid_str, pid->id);
8463 01073a5d 2019-08-22 stsp if (err)
8464 01073a5d 2019-08-22 stsp goto done;
8465 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_PARENT, pid_str);
8466 01073a5d 2019-08-22 stsp free(pid_str);
8467 01073a5d 2019-08-22 stsp }
8468 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
8469 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
8470 01073a5d 2019-08-22 stsp got_object_commit_get_author_time(commit));
8471 01073a5d 2019-08-22 stsp
8472 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_COMMITTER,
8473 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
8474 01073a5d 2019-08-22 stsp got_object_commit_get_committer_time(commit));
8475 01073a5d 2019-08-22 stsp
8476 24ea5512 2019-08-22 stsp logmsg = got_object_commit_get_logmsg_raw(commit);
8477 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
8478 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", logmsg);
8479 01073a5d 2019-08-22 stsp done:
8480 01073a5d 2019-08-22 stsp free(id_str);
8481 01073a5d 2019-08-22 stsp got_object_commit_close(commit);
8482 01073a5d 2019-08-22 stsp return err;
8483 01073a5d 2019-08-22 stsp }
8484 01073a5d 2019-08-22 stsp
8485 01073a5d 2019-08-22 stsp static const struct got_error *
8486 01073a5d 2019-08-22 stsp cat_tag(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
8487 01073a5d 2019-08-22 stsp {
8488 01073a5d 2019-08-22 stsp const struct got_error *err;
8489 01073a5d 2019-08-22 stsp struct got_tag_object *tag;
8490 01073a5d 2019-08-22 stsp char *id_str = NULL;
8491 01073a5d 2019-08-22 stsp const char *tagmsg = NULL;
8492 01073a5d 2019-08-22 stsp
8493 01073a5d 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
8494 01073a5d 2019-08-22 stsp if (err)
8495 01073a5d 2019-08-22 stsp return err;
8496 01073a5d 2019-08-22 stsp
8497 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_tag_get_object_id(tag));
8498 01073a5d 2019-08-22 stsp if (err)
8499 01073a5d 2019-08-22 stsp goto done;
8500 01073a5d 2019-08-22 stsp
8501 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str);
8502 e15d5241 2019-08-22 stsp
8503 01073a5d 2019-08-22 stsp switch (got_object_tag_get_object_type(tag)) {
8504 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
8505 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
8506 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_BLOB);
8507 01073a5d 2019-08-22 stsp break;
8508 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
8509 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
8510 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TREE);
8511 01073a5d 2019-08-22 stsp break;
8512 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
8513 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
8514 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_COMMIT);
8515 01073a5d 2019-08-22 stsp break;
8516 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
8517 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
8518 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TAG);
8519 01073a5d 2019-08-22 stsp break;
8520 01073a5d 2019-08-22 stsp default:
8521 01073a5d 2019-08-22 stsp break;
8522 01073a5d 2019-08-22 stsp }
8523 01073a5d 2019-08-22 stsp
8524 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TAG,
8525 e15d5241 2019-08-22 stsp got_object_tag_get_name(tag));
8526 e15d5241 2019-08-22 stsp
8527 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
8528 8aa93786 2019-08-22 stsp got_object_tag_get_tagger(tag),
8529 8aa93786 2019-08-22 stsp got_object_tag_get_tagger_time(tag));
8530 01073a5d 2019-08-22 stsp
8531 01073a5d 2019-08-22 stsp tagmsg = got_object_tag_get_message(tag);
8532 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(tagmsg));
8533 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", tagmsg);
8534 01073a5d 2019-08-22 stsp done:
8535 01073a5d 2019-08-22 stsp free(id_str);
8536 01073a5d 2019-08-22 stsp got_object_tag_close(tag);
8537 01073a5d 2019-08-22 stsp return err;
8538 01073a5d 2019-08-22 stsp }
8539 01073a5d 2019-08-22 stsp
8540 01073a5d 2019-08-22 stsp static const struct got_error *
8541 01073a5d 2019-08-22 stsp cmd_cat(int argc, char *argv[])
8542 01073a5d 2019-08-22 stsp {
8543 01073a5d 2019-08-22 stsp const struct got_error *error;
8544 01073a5d 2019-08-22 stsp struct got_repository *repo = NULL;
8545 01073a5d 2019-08-22 stsp struct got_worktree *worktree = NULL;
8546 01073a5d 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *label = NULL;
8547 896e9b6f 2019-08-26 stsp const char *commit_id_str = NULL;
8548 896e9b6f 2019-08-26 stsp struct got_object_id *id = NULL, *commit_id = NULL;
8549 896e9b6f 2019-08-26 stsp int ch, obj_type, i, force_path = 0;
8550 01073a5d 2019-08-22 stsp
8551 01073a5d 2019-08-22 stsp #ifndef PROFILE
8552 01073a5d 2019-08-22 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
8553 01073a5d 2019-08-22 stsp NULL) == -1)
8554 01073a5d 2019-08-22 stsp err(1, "pledge");
8555 01073a5d 2019-08-22 stsp #endif
8556 01073a5d 2019-08-22 stsp
8557 896e9b6f 2019-08-26 stsp while ((ch = getopt(argc, argv, "c:r:P")) != -1) {
8558 01073a5d 2019-08-22 stsp switch (ch) {
8559 896e9b6f 2019-08-26 stsp case 'c':
8560 896e9b6f 2019-08-26 stsp commit_id_str = optarg;
8561 896e9b6f 2019-08-26 stsp break;
8562 01073a5d 2019-08-22 stsp case 'r':
8563 01073a5d 2019-08-22 stsp repo_path = realpath(optarg, NULL);
8564 01073a5d 2019-08-22 stsp if (repo_path == NULL)
8565 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
8566 9ba1d308 2019-10-21 stsp optarg);
8567 01073a5d 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
8568 01073a5d 2019-08-22 stsp break;
8569 896e9b6f 2019-08-26 stsp case 'P':
8570 896e9b6f 2019-08-26 stsp force_path = 1;
8571 896e9b6f 2019-08-26 stsp break;
8572 01073a5d 2019-08-22 stsp default:
8573 01073a5d 2019-08-22 stsp usage_cat();
8574 01073a5d 2019-08-22 stsp /* NOTREACHED */
8575 01073a5d 2019-08-22 stsp }
8576 01073a5d 2019-08-22 stsp }
8577 01073a5d 2019-08-22 stsp
8578 01073a5d 2019-08-22 stsp argc -= optind;
8579 01073a5d 2019-08-22 stsp argv += optind;
8580 01073a5d 2019-08-22 stsp
8581 01073a5d 2019-08-22 stsp cwd = getcwd(NULL, 0);
8582 01073a5d 2019-08-22 stsp if (cwd == NULL) {
8583 01073a5d 2019-08-22 stsp error = got_error_from_errno("getcwd");
8584 01073a5d 2019-08-22 stsp goto done;
8585 01073a5d 2019-08-22 stsp }
8586 01073a5d 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
8587 01073a5d 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
8588 01073a5d 2019-08-22 stsp goto done;
8589 01073a5d 2019-08-22 stsp if (worktree) {
8590 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
8591 01073a5d 2019-08-22 stsp repo_path = strdup(
8592 01073a5d 2019-08-22 stsp got_worktree_get_repo_path(worktree));
8593 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
8594 01073a5d 2019-08-22 stsp error = got_error_from_errno("strdup");
8595 01073a5d 2019-08-22 stsp goto done;
8596 01073a5d 2019-08-22 stsp }
8597 01073a5d 2019-08-22 stsp }
8598 01073a5d 2019-08-22 stsp }
8599 01073a5d 2019-08-22 stsp
8600 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
8601 01073a5d 2019-08-22 stsp repo_path = getcwd(NULL, 0);
8602 01073a5d 2019-08-22 stsp if (repo_path == NULL)
8603 01073a5d 2019-08-22 stsp return got_error_from_errno("getcwd");
8604 01073a5d 2019-08-22 stsp }
8605 01073a5d 2019-08-22 stsp
8606 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
8607 01073a5d 2019-08-22 stsp free(repo_path);
8608 01073a5d 2019-08-22 stsp if (error != NULL)
8609 01073a5d 2019-08-22 stsp goto done;
8610 01073a5d 2019-08-22 stsp
8611 01073a5d 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
8612 896e9b6f 2019-08-26 stsp if (error)
8613 896e9b6f 2019-08-26 stsp goto done;
8614 896e9b6f 2019-08-26 stsp
8615 896e9b6f 2019-08-26 stsp if (commit_id_str == NULL)
8616 896e9b6f 2019-08-26 stsp commit_id_str = GOT_REF_HEAD;
8617 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
8618 71a27632 2020-01-15 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, 1, repo);
8619 01073a5d 2019-08-22 stsp if (error)
8620 01073a5d 2019-08-22 stsp goto done;
8621 01073a5d 2019-08-22 stsp
8622 01073a5d 2019-08-22 stsp for (i = 0; i < argc; i++) {
8623 896e9b6f 2019-08-26 stsp if (force_path) {
8624 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo, commit_id,
8625 896e9b6f 2019-08-26 stsp argv[i]);
8626 896e9b6f 2019-08-26 stsp if (error)
8627 896e9b6f 2019-08-26 stsp break;
8628 896e9b6f 2019-08-26 stsp } else {
8629 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&id, &label, argv[i],
8630 896e9b6f 2019-08-26 stsp GOT_OBJ_TYPE_ANY, 0, repo);
8631 896e9b6f 2019-08-26 stsp if (error) {
8632 896e9b6f 2019-08-26 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR &&
8633 896e9b6f 2019-08-26 stsp error->code != GOT_ERR_NOT_REF)
8634 896e9b6f 2019-08-26 stsp break;
8635 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo,
8636 896e9b6f 2019-08-26 stsp commit_id, argv[i]);
8637 896e9b6f 2019-08-26 stsp if (error)
8638 896e9b6f 2019-08-26 stsp break;
8639 896e9b6f 2019-08-26 stsp }
8640 896e9b6f 2019-08-26 stsp }
8641 01073a5d 2019-08-22 stsp
8642 01073a5d 2019-08-22 stsp error = got_object_get_type(&obj_type, repo, id);
8643 01073a5d 2019-08-22 stsp if (error)
8644 01073a5d 2019-08-22 stsp break;
8645 01073a5d 2019-08-22 stsp
8646 01073a5d 2019-08-22 stsp switch (obj_type) {
8647 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
8648 01073a5d 2019-08-22 stsp error = cat_blob(id, repo, stdout);
8649 01073a5d 2019-08-22 stsp break;
8650 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
8651 01073a5d 2019-08-22 stsp error = cat_tree(id, repo, stdout);
8652 01073a5d 2019-08-22 stsp break;
8653 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
8654 01073a5d 2019-08-22 stsp error = cat_commit(id, repo, stdout);
8655 01073a5d 2019-08-22 stsp break;
8656 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
8657 01073a5d 2019-08-22 stsp error = cat_tag(id, repo, stdout);
8658 01073a5d 2019-08-22 stsp break;
8659 01073a5d 2019-08-22 stsp default:
8660 01073a5d 2019-08-22 stsp error = got_error(GOT_ERR_OBJ_TYPE);
8661 01073a5d 2019-08-22 stsp break;
8662 01073a5d 2019-08-22 stsp }
8663 01073a5d 2019-08-22 stsp if (error)
8664 01073a5d 2019-08-22 stsp break;
8665 01073a5d 2019-08-22 stsp free(label);
8666 01073a5d 2019-08-22 stsp label = NULL;
8667 01073a5d 2019-08-22 stsp free(id);
8668 01073a5d 2019-08-22 stsp id = NULL;
8669 01073a5d 2019-08-22 stsp }
8670 01073a5d 2019-08-22 stsp done:
8671 01073a5d 2019-08-22 stsp free(label);
8672 01073a5d 2019-08-22 stsp free(id);
8673 896e9b6f 2019-08-26 stsp free(commit_id);
8674 01073a5d 2019-08-22 stsp if (worktree)
8675 01073a5d 2019-08-22 stsp got_worktree_close(worktree);
8676 01073a5d 2019-08-22 stsp if (repo) {
8677 01073a5d 2019-08-22 stsp const struct got_error *repo_error;
8678 01073a5d 2019-08-22 stsp repo_error = got_repo_close(repo);
8679 01073a5d 2019-08-22 stsp if (error == NULL)
8680 01073a5d 2019-08-22 stsp error = repo_error;
8681 01073a5d 2019-08-22 stsp }
8682 0ebf8283 2019-07-24 stsp return error;
8683 0ebf8283 2019-07-24 stsp }