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 33ad4cbe 2019-05-12 jcs #include <sys/wait.h>
23 f42b1b34 2018-03-12 stsp
24 5c860e29 2018-03-12 stsp #include <err.h>
25 5c860e29 2018-03-12 stsp #include <errno.h>
26 12463d8b 2019-12-13 stsp #include <fcntl.h>
27 12ce7a6c 2019-08-12 stsp #include <limits.h>
28 5c860e29 2018-03-12 stsp #include <locale.h>
29 818c7501 2019-07-11 stsp #include <ctype.h>
30 99437157 2018-11-11 stsp #include <signal.h>
31 5c860e29 2018-03-12 stsp #include <stdio.h>
32 5c860e29 2018-03-12 stsp #include <stdlib.h>
33 5c860e29 2018-03-12 stsp #include <string.h>
34 5c860e29 2018-03-12 stsp #include <unistd.h>
35 c09a553d 2018-03-12 stsp #include <libgen.h>
36 c0768b0f 2018-06-10 stsp #include <time.h>
37 33ad4cbe 2019-05-12 jcs #include <paths.h>
38 6841bf13 2019-11-29 kn #include <regex.h>
39 83cd27f8 2020-01-13 stsp #include <getopt.h>
40 d2cdc636 2020-03-18 stsp #include <util.h>
41 5c860e29 2018-03-12 stsp
42 53ccebc2 2019-07-30 stsp #include "got_version.h"
43 f42b1b34 2018-03-12 stsp #include "got_error.h"
44 f42b1b34 2018-03-12 stsp #include "got_object.h"
45 5261c201 2018-04-01 stsp #include "got_reference.h"
46 f42b1b34 2018-03-12 stsp #include "got_repository.h"
47 1dd54920 2019-05-11 stsp #include "got_path.h"
48 e6209546 2019-08-22 stsp #include "got_cancel.h"
49 c09a553d 2018-03-12 stsp #include "got_worktree.h"
50 79109fed 2018-03-27 stsp #include "got_diff.h"
51 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
52 6f23baec 2020-03-18 stsp #include "got_fetch.h"
53 f8a36e22 2021-08-26 stsp #include "got_send.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 50b0790e 2020-09-11 stsp #include "got_gotconfig.h"
58 d65a88a2 2021-09-05 stsp #include "got_dial.h"
59 5c860e29 2018-03-12 stsp
60 5c860e29 2018-03-12 stsp #ifndef nitems
61 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
62 5c860e29 2018-03-12 stsp #endif
63 99437157 2018-11-11 stsp
64 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
65 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
66 99437157 2018-11-11 stsp
67 99437157 2018-11-11 stsp static void
68 99437157 2018-11-11 stsp catch_sigint(int signo)
69 99437157 2018-11-11 stsp {
70 99437157 2018-11-11 stsp sigint_received = 1;
71 99437157 2018-11-11 stsp }
72 99437157 2018-11-11 stsp
73 99437157 2018-11-11 stsp static void
74 99437157 2018-11-11 stsp catch_sigpipe(int signo)
75 99437157 2018-11-11 stsp {
76 99437157 2018-11-11 stsp sigpipe_received = 1;
77 99437157 2018-11-11 stsp }
78 5c860e29 2018-03-12 stsp
79 99437157 2018-11-11 stsp
80 8cfb4057 2019-07-09 stsp struct got_cmd {
81 820059fa 2020-09-25 stsp const char *cmd_name;
82 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
83 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
84 97b3a7be 2019-07-09 stsp const char *cmd_alias;
85 5c860e29 2018-03-12 stsp };
86 5c860e29 2018-03-12 stsp
87 6879ba42 2020-10-01 naddy __dead static void usage(int, int);
88 2c7829a4 2019-06-17 stsp __dead static void usage_init(void);
89 3ce1b845 2019-07-15 stsp __dead static void usage_import(void);
90 93658fb9 2020-03-18 stsp __dead static void usage_clone(void);
91 7848a0e1 2020-03-19 stsp __dead static void usage_fetch(void);
92 2ab43947 2020-03-18 stsp __dead static void usage_checkout(void);
93 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
94 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
95 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
96 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
97 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
98 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
99 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
100 4e759de4 2019-06-26 stsp __dead static void usage_branch(void);
101 8e7bd50a 2019-08-22 stsp __dead static void usage_tag(void);
102 d00136be 2019-03-26 stsp __dead static void usage_add(void);
103 648e4ef7 2019-07-09 stsp __dead static void usage_remove(void);
104 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
105 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
106 f8a36e22 2021-08-26 stsp __dead static void usage_send(void);
107 234035bc 2019-06-01 stsp __dead static void usage_cherrypick(void);
108 5ef14e63 2019-06-02 stsp __dead static void usage_backout(void);
109 818c7501 2019-07-11 stsp __dead static void usage_rebase(void);
110 0ebf8283 2019-07-24 stsp __dead static void usage_histedit(void);
111 2822a352 2019-10-15 stsp __dead static void usage_integrate(void);
112 f259c4c1 2021-09-24 stsp __dead static void usage_merge(void);
113 715dc77e 2019-08-03 stsp __dead static void usage_stage(void);
114 ad493afc 2019-08-03 stsp __dead static void usage_unstage(void);
115 01073a5d 2019-08-22 stsp __dead static void usage_cat(void);
116 b2118c49 2020-07-28 stsp __dead static void usage_info(void);
117 5c860e29 2018-03-12 stsp
118 2c7829a4 2019-06-17 stsp static const struct got_error* cmd_init(int, char *[]);
119 3ce1b845 2019-07-15 stsp static const struct got_error* cmd_import(int, char *[]);
120 93658fb9 2020-03-18 stsp static const struct got_error* cmd_clone(int, char *[]);
121 7848a0e1 2020-03-19 stsp static const struct got_error* cmd_fetch(int, char *[]);
122 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
123 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
124 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
125 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
126 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
127 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
128 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
129 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
130 4e759de4 2019-06-26 stsp static const struct got_error* cmd_branch(int, char *[]);
131 8e7bd50a 2019-08-22 stsp static const struct got_error* cmd_tag(int, char *[]);
132 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
133 648e4ef7 2019-07-09 stsp static const struct got_error* cmd_remove(int, char *[]);
134 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
135 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
136 f8a36e22 2021-08-26 stsp static const struct got_error* cmd_send(int, char *[]);
137 234035bc 2019-06-01 stsp static const struct got_error* cmd_cherrypick(int, char *[]);
138 5ef14e63 2019-06-02 stsp static const struct got_error* cmd_backout(int, char *[]);
139 818c7501 2019-07-11 stsp static const struct got_error* cmd_rebase(int, char *[]);
140 0ebf8283 2019-07-24 stsp static const struct got_error* cmd_histedit(int, char *[]);
141 2822a352 2019-10-15 stsp static const struct got_error* cmd_integrate(int, char *[]);
142 f259c4c1 2021-09-24 stsp static const struct got_error* cmd_merge(int, char *[]);
143 715dc77e 2019-08-03 stsp static const struct got_error* cmd_stage(int, char *[]);
144 ad493afc 2019-08-03 stsp static const struct got_error* cmd_unstage(int, char *[]);
145 01073a5d 2019-08-22 stsp static const struct got_error* cmd_cat(int, char *[]);
146 b2118c49 2020-07-28 stsp static const struct got_error* cmd_info(int, char *[]);
147 5c860e29 2018-03-12 stsp
148 8cfb4057 2019-07-09 stsp static struct got_cmd got_commands[] = {
149 b2118c49 2020-07-28 stsp { "init", cmd_init, usage_init, "" },
150 bc26cce8 2019-08-04 stsp { "import", cmd_import, usage_import, "im" },
151 93658fb9 2020-03-18 stsp { "clone", cmd_clone, usage_clone, "cl" },
152 7848a0e1 2020-03-19 stsp { "fetch", cmd_fetch, usage_fetch, "fe" },
153 2ab43947 2020-03-18 stsp { "checkout", cmd_checkout, usage_checkout, "co" },
154 97b3a7be 2019-07-09 stsp { "update", cmd_update, usage_update, "up" },
155 97b3a7be 2019-07-09 stsp { "log", cmd_log, usage_log, "" },
156 bc26cce8 2019-08-04 stsp { "diff", cmd_diff, usage_diff, "di" },
157 bc26cce8 2019-08-04 stsp { "blame", cmd_blame, usage_blame, "bl" },
158 bc26cce8 2019-08-04 stsp { "tree", cmd_tree, usage_tree, "tr" },
159 97b3a7be 2019-07-09 stsp { "status", cmd_status, usage_status, "st" },
160 97b3a7be 2019-07-09 stsp { "ref", cmd_ref, usage_ref, "" },
161 97b3a7be 2019-07-09 stsp { "branch", cmd_branch, usage_branch, "br" },
162 8e7bd50a 2019-08-22 stsp { "tag", cmd_tag, usage_tag, "" },
163 97b3a7be 2019-07-09 stsp { "add", cmd_add, usage_add, "" },
164 648e4ef7 2019-07-09 stsp { "remove", cmd_remove, usage_remove, "rm" },
165 97b3a7be 2019-07-09 stsp { "revert", cmd_revert, usage_revert, "rv" },
166 97b3a7be 2019-07-09 stsp { "commit", cmd_commit, usage_commit, "ci" },
167 f8a36e22 2021-08-26 stsp { "send", cmd_send, usage_send, "se" },
168 016477fd 2019-07-09 stsp { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
169 97b3a7be 2019-07-09 stsp { "backout", cmd_backout, usage_backout, "bo" },
170 818c7501 2019-07-11 stsp { "rebase", cmd_rebase, usage_rebase, "rb" },
171 0ebf8283 2019-07-24 stsp { "histedit", cmd_histedit, usage_histedit, "he" },
172 2822a352 2019-10-15 stsp { "integrate", cmd_integrate, usage_integrate,"ig" },
173 f259c4c1 2021-09-24 stsp { "merge", cmd_merge, usage_merge, "mg" },
174 715dc77e 2019-08-03 stsp { "stage", cmd_stage, usage_stage, "sg" },
175 ad493afc 2019-08-03 stsp { "unstage", cmd_unstage, usage_unstage, "ug" },
176 01073a5d 2019-08-22 stsp { "cat", cmd_cat, usage_cat, "" },
177 b2118c49 2020-07-28 stsp { "info", cmd_info, usage_info, "" },
178 5c860e29 2018-03-12 stsp };
179 ce5b7c56 2019-07-09 stsp
180 ce5b7c56 2019-07-09 stsp static void
181 6879ba42 2020-10-01 naddy list_commands(FILE *fp)
182 ce5b7c56 2019-07-09 stsp {
183 6059809a 2020-12-17 stsp size_t i;
184 ce5b7c56 2019-07-09 stsp
185 6879ba42 2020-10-01 naddy fprintf(fp, "commands:");
186 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(got_commands); i++) {
187 ce5b7c56 2019-07-09 stsp struct got_cmd *cmd = &got_commands[i];
188 6879ba42 2020-10-01 naddy fprintf(fp, " %s", cmd->cmd_name);
189 ce5b7c56 2019-07-09 stsp }
190 6879ba42 2020-10-01 naddy fputc('\n', fp);
191 ce5b7c56 2019-07-09 stsp }
192 5c860e29 2018-03-12 stsp
193 ff69268e 2020-12-13 stsp __dead static void
194 ff69268e 2020-12-13 stsp option_conflict(char a, char b)
195 ff69268e 2020-12-13 stsp {
196 ff69268e 2020-12-13 stsp errx(1, "-%c and -%c options are mutually exclusive", a, b);
197 ff69268e 2020-12-13 stsp }
198 ff69268e 2020-12-13 stsp
199 5c860e29 2018-03-12 stsp int
200 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
201 5c860e29 2018-03-12 stsp {
202 8cfb4057 2019-07-09 stsp struct got_cmd *cmd;
203 6059809a 2020-12-17 stsp size_t i;
204 5c860e29 2018-03-12 stsp int ch;
205 53ccebc2 2019-07-30 stsp int hflag = 0, Vflag = 0;
206 83cd27f8 2020-01-13 stsp static struct option longopts[] = {
207 62d463ca 2020-10-20 naddy { "version", no_argument, NULL, 'V' },
208 62d463ca 2020-10-20 naddy { NULL, 0, NULL, 0 }
209 83cd27f8 2020-01-13 stsp };
210 5c860e29 2018-03-12 stsp
211 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
212 5c860e29 2018-03-12 stsp
213 6586ea88 2020-01-13 stsp while ((ch = getopt_long(argc, argv, "+hV", longopts, NULL)) != -1) {
214 5c860e29 2018-03-12 stsp switch (ch) {
215 1b6b95a8 2018-03-12 stsp case 'h':
216 1b6b95a8 2018-03-12 stsp hflag = 1;
217 53ccebc2 2019-07-30 stsp break;
218 53ccebc2 2019-07-30 stsp case 'V':
219 53ccebc2 2019-07-30 stsp Vflag = 1;
220 1b6b95a8 2018-03-12 stsp break;
221 5c860e29 2018-03-12 stsp default:
222 6879ba42 2020-10-01 naddy usage(hflag, 1);
223 5c860e29 2018-03-12 stsp /* NOTREACHED */
224 5c860e29 2018-03-12 stsp }
225 5c860e29 2018-03-12 stsp }
226 5c860e29 2018-03-12 stsp
227 5c860e29 2018-03-12 stsp argc -= optind;
228 5c860e29 2018-03-12 stsp argv += optind;
229 9814e6a3 2020-09-27 naddy optind = 1;
230 9814e6a3 2020-09-27 naddy optreset = 1;
231 53ccebc2 2019-07-30 stsp
232 53ccebc2 2019-07-30 stsp if (Vflag) {
233 53ccebc2 2019-07-30 stsp got_version_print_str();
234 6879ba42 2020-10-01 naddy return 0;
235 53ccebc2 2019-07-30 stsp }
236 5c860e29 2018-03-12 stsp
237 5c860e29 2018-03-12 stsp if (argc <= 0)
238 6879ba42 2020-10-01 naddy usage(hflag, hflag ? 0 : 1);
239 5c860e29 2018-03-12 stsp
240 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
241 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
242 99437157 2018-11-11 stsp
243 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
244 d7d4f210 2018-03-12 stsp const struct got_error *error;
245 d7d4f210 2018-03-12 stsp
246 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
247 5c860e29 2018-03-12 stsp
248 97b3a7be 2019-07-09 stsp if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
249 97b3a7be 2019-07-09 stsp strcmp(cmd->cmd_alias, argv[0]) != 0)
250 5c860e29 2018-03-12 stsp continue;
251 5c860e29 2018-03-12 stsp
252 1b6b95a8 2018-03-12 stsp if (hflag)
253 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
254 1b6b95a8 2018-03-12 stsp
255 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
256 f8afbdc8 2019-11-08 stsp if (error && error->code != GOT_ERR_CANCELLED &&
257 f8afbdc8 2019-11-08 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
258 f8afbdc8 2019-11-08 stsp !(sigpipe_received &&
259 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
260 70015d7a 2019-11-08 stsp !(sigint_received &&
261 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EINTR)) {
262 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
263 d7d4f210 2018-03-12 stsp return 1;
264 d7d4f210 2018-03-12 stsp }
265 d7d4f210 2018-03-12 stsp
266 d7d4f210 2018-03-12 stsp return 0;
267 5c860e29 2018-03-12 stsp }
268 5c860e29 2018-03-12 stsp
269 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
270 6879ba42 2020-10-01 naddy list_commands(stderr);
271 5c860e29 2018-03-12 stsp return 1;
272 5c860e29 2018-03-12 stsp }
273 5c860e29 2018-03-12 stsp
274 4ed7e80c 2018-05-20 stsp __dead static void
275 6879ba42 2020-10-01 naddy usage(int hflag, int status)
276 5c860e29 2018-03-12 stsp {
277 6879ba42 2020-10-01 naddy FILE *fp = (status == 0) ? stdout : stderr;
278 6879ba42 2020-10-01 naddy
279 6879ba42 2020-10-01 naddy fprintf(fp, "usage: %s [-h] [-V | --version] command [arg ...]\n",
280 53ccebc2 2019-07-30 stsp getprogname());
281 ce5b7c56 2019-07-09 stsp if (hflag)
282 6879ba42 2020-10-01 naddy list_commands(fp);
283 6879ba42 2020-10-01 naddy exit(status);
284 5c860e29 2018-03-12 stsp }
285 5c860e29 2018-03-12 stsp
286 0266afb7 2019-01-04 stsp static const struct got_error *
287 0ee7065d 2019-05-13 stsp get_editor(char **abspath)
288 e2ba3d07 2019-05-13 stsp {
289 0ee7065d 2019-05-13 stsp const struct got_error *err = NULL;
290 e2ba3d07 2019-05-13 stsp const char *editor;
291 8920fa04 2019-08-18 stsp
292 8920fa04 2019-08-18 stsp *abspath = NULL;
293 e2ba3d07 2019-05-13 stsp
294 e2ba3d07 2019-05-13 stsp editor = getenv("VISUAL");
295 e2ba3d07 2019-05-13 stsp if (editor == NULL)
296 e2ba3d07 2019-05-13 stsp editor = getenv("EDITOR");
297 e2ba3d07 2019-05-13 stsp
298 0ee7065d 2019-05-13 stsp if (editor) {
299 0ee7065d 2019-05-13 stsp err = got_path_find_prog(abspath, editor);
300 0ee7065d 2019-05-13 stsp if (err)
301 0ee7065d 2019-05-13 stsp return err;
302 0ee7065d 2019-05-13 stsp }
303 e2ba3d07 2019-05-13 stsp
304 0ee7065d 2019-05-13 stsp if (*abspath == NULL) {
305 0ee7065d 2019-05-13 stsp *abspath = strdup("/bin/ed");
306 0ee7065d 2019-05-13 stsp if (*abspath == NULL)
307 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
308 0ee7065d 2019-05-13 stsp }
309 0ee7065d 2019-05-13 stsp
310 e2ba3d07 2019-05-13 stsp return NULL;
311 e2ba3d07 2019-05-13 stsp }
312 e2ba3d07 2019-05-13 stsp
313 e2ba3d07 2019-05-13 stsp static const struct got_error *
314 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
315 c530dc23 2019-07-23 stsp const char *worktree_path)
316 0266afb7 2019-01-04 stsp {
317 163ce85a 2019-05-13 stsp const struct got_error *err;
318 0266afb7 2019-01-04 stsp
319 37c06ea4 2019-07-15 stsp #ifdef PROFILE
320 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
321 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
322 37c06ea4 2019-07-15 stsp #endif
323 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
324 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
325 0266afb7 2019-01-04 stsp
326 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
327 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
328 0266afb7 2019-01-04 stsp
329 bb63914a 2020-02-17 stsp if (unveil(GOT_TMPDIR_STR, "rwc") != 0)
330 bb63914a 2020-02-17 stsp return got_error_from_errno2("unveil", GOT_TMPDIR_STR);
331 0266afb7 2019-01-04 stsp
332 163ce85a 2019-05-13 stsp err = got_privsep_unveil_exec_helpers();
333 163ce85a 2019-05-13 stsp if (err != NULL)
334 163ce85a 2019-05-13 stsp return err;
335 0266afb7 2019-01-04 stsp
336 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
337 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
338 0266afb7 2019-01-04 stsp
339 0266afb7 2019-01-04 stsp return NULL;
340 2c7829a4 2019-06-17 stsp }
341 2c7829a4 2019-06-17 stsp
342 2c7829a4 2019-06-17 stsp __dead static void
343 2c7829a4 2019-06-17 stsp usage_init(void)
344 2c7829a4 2019-06-17 stsp {
345 09ea71ba 2019-07-27 stsp fprintf(stderr, "usage: %s init repository-path\n", getprogname());
346 2c7829a4 2019-06-17 stsp exit(1);
347 2c7829a4 2019-06-17 stsp }
348 2c7829a4 2019-06-17 stsp
349 2c7829a4 2019-06-17 stsp static const struct got_error *
350 2c7829a4 2019-06-17 stsp cmd_init(int argc, char *argv[])
351 2c7829a4 2019-06-17 stsp {
352 2c7829a4 2019-06-17 stsp const struct got_error *error = NULL;
353 2c7829a4 2019-06-17 stsp char *repo_path = NULL;
354 2c7829a4 2019-06-17 stsp int ch;
355 2c7829a4 2019-06-17 stsp
356 2c7829a4 2019-06-17 stsp while ((ch = getopt(argc, argv, "")) != -1) {
357 2c7829a4 2019-06-17 stsp switch (ch) {
358 2c7829a4 2019-06-17 stsp default:
359 2c7829a4 2019-06-17 stsp usage_init();
360 2c7829a4 2019-06-17 stsp /* NOTREACHED */
361 2c7829a4 2019-06-17 stsp }
362 2c7829a4 2019-06-17 stsp }
363 2c7829a4 2019-06-17 stsp
364 2c7829a4 2019-06-17 stsp argc -= optind;
365 2c7829a4 2019-06-17 stsp argv += optind;
366 2c7829a4 2019-06-17 stsp
367 2c7829a4 2019-06-17 stsp #ifndef PROFILE
368 2c7829a4 2019-06-17 stsp if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
369 2c7829a4 2019-06-17 stsp err(1, "pledge");
370 2c7829a4 2019-06-17 stsp #endif
371 2c7829a4 2019-06-17 stsp if (argc != 1)
372 bc20e173 2019-06-17 stsp usage_init();
373 2c7829a4 2019-06-17 stsp
374 2c7829a4 2019-06-17 stsp repo_path = strdup(argv[0]);
375 2c7829a4 2019-06-17 stsp if (repo_path == NULL)
376 2c7829a4 2019-06-17 stsp return got_error_from_errno("strdup");
377 2c7829a4 2019-06-17 stsp
378 2c7829a4 2019-06-17 stsp got_path_strip_trailing_slashes(repo_path);
379 2c7829a4 2019-06-17 stsp
380 2c7829a4 2019-06-17 stsp error = got_path_mkdir(repo_path);
381 2c7829a4 2019-06-17 stsp if (error &&
382 2c7829a4 2019-06-17 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
383 2c7829a4 2019-06-17 stsp goto done;
384 2c7829a4 2019-06-17 stsp
385 c530dc23 2019-07-23 stsp error = apply_unveil(repo_path, 0, NULL);
386 2c7829a4 2019-06-17 stsp if (error)
387 2c7829a4 2019-06-17 stsp goto done;
388 2c7829a4 2019-06-17 stsp
389 2c7829a4 2019-06-17 stsp error = got_repo_init(repo_path);
390 3ce1b845 2019-07-15 stsp done:
391 3ce1b845 2019-07-15 stsp free(repo_path);
392 3ce1b845 2019-07-15 stsp return error;
393 3ce1b845 2019-07-15 stsp }
394 3ce1b845 2019-07-15 stsp
395 3ce1b845 2019-07-15 stsp __dead static void
396 3ce1b845 2019-07-15 stsp usage_import(void)
397 3ce1b845 2019-07-15 stsp {
398 3ce1b845 2019-07-15 stsp fprintf(stderr, "usage: %s import [-b branch] [-m message] "
399 3ce1b845 2019-07-15 stsp "[-r repository-path] [-I pattern] path\n", getprogname());
400 3ce1b845 2019-07-15 stsp exit(1);
401 3ce1b845 2019-07-15 stsp }
402 3ce1b845 2019-07-15 stsp
403 3ce1b845 2019-07-15 stsp int
404 3ce1b845 2019-07-15 stsp spawn_editor(const char *editor, const char *file)
405 3ce1b845 2019-07-15 stsp {
406 3ce1b845 2019-07-15 stsp pid_t pid;
407 3ce1b845 2019-07-15 stsp sig_t sighup, sigint, sigquit;
408 3ce1b845 2019-07-15 stsp int st = -1;
409 3ce1b845 2019-07-15 stsp
410 3ce1b845 2019-07-15 stsp sighup = signal(SIGHUP, SIG_IGN);
411 3ce1b845 2019-07-15 stsp sigint = signal(SIGINT, SIG_IGN);
412 3ce1b845 2019-07-15 stsp sigquit = signal(SIGQUIT, SIG_IGN);
413 3ce1b845 2019-07-15 stsp
414 3ce1b845 2019-07-15 stsp switch (pid = fork()) {
415 3ce1b845 2019-07-15 stsp case -1:
416 3ce1b845 2019-07-15 stsp goto doneediting;
417 3ce1b845 2019-07-15 stsp case 0:
418 3ce1b845 2019-07-15 stsp execl(editor, editor, file, (char *)NULL);
419 3ce1b845 2019-07-15 stsp _exit(127);
420 3ce1b845 2019-07-15 stsp }
421 3ce1b845 2019-07-15 stsp
422 3ce1b845 2019-07-15 stsp while (waitpid(pid, &st, 0) == -1)
423 3ce1b845 2019-07-15 stsp if (errno != EINTR)
424 3ce1b845 2019-07-15 stsp break;
425 3ce1b845 2019-07-15 stsp
426 3ce1b845 2019-07-15 stsp doneediting:
427 3ce1b845 2019-07-15 stsp (void)signal(SIGHUP, sighup);
428 3ce1b845 2019-07-15 stsp (void)signal(SIGINT, sigint);
429 3ce1b845 2019-07-15 stsp (void)signal(SIGQUIT, sigquit);
430 3ce1b845 2019-07-15 stsp
431 3ce1b845 2019-07-15 stsp if (!WIFEXITED(st)) {
432 3ce1b845 2019-07-15 stsp errno = EINTR;
433 3ce1b845 2019-07-15 stsp return -1;
434 3ce1b845 2019-07-15 stsp }
435 3ce1b845 2019-07-15 stsp
436 3ce1b845 2019-07-15 stsp return WEXITSTATUS(st);
437 3ce1b845 2019-07-15 stsp }
438 3ce1b845 2019-07-15 stsp
439 3ce1b845 2019-07-15 stsp static const struct got_error *
440 3ce1b845 2019-07-15 stsp edit_logmsg(char **logmsg, const char *editor, const char *logmsg_path,
441 28cf319f 2021-01-28 stsp const char *initial_content, size_t initial_content_len,
442 28cf319f 2021-01-28 stsp int require_modification)
443 3ce1b845 2019-07-15 stsp {
444 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
445 bfa12d5e 2020-09-26 stsp char *line = NULL;
446 bfa12d5e 2020-09-26 stsp size_t linesize = 0;
447 bfa12d5e 2020-09-26 stsp ssize_t linelen;
448 3ce1b845 2019-07-15 stsp struct stat st, st2;
449 bfa12d5e 2020-09-26 stsp FILE *fp = NULL;
450 bfa12d5e 2020-09-26 stsp size_t len, logmsg_len;
451 bfa12d5e 2020-09-26 stsp char *initial_content_stripped = NULL, *buf = NULL, *s;
452 3ce1b845 2019-07-15 stsp
453 3ce1b845 2019-07-15 stsp *logmsg = NULL;
454 3ce1b845 2019-07-15 stsp
455 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st) == -1)
456 3ce1b845 2019-07-15 stsp return got_error_from_errno2("stat", logmsg_path);
457 3ce1b845 2019-07-15 stsp
458 3ce1b845 2019-07-15 stsp if (spawn_editor(editor, logmsg_path) == -1)
459 3ce1b845 2019-07-15 stsp return got_error_from_errno("failed spawning editor");
460 3ce1b845 2019-07-15 stsp
461 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st2) == -1)
462 3ce1b845 2019-07-15 stsp return got_error_from_errno("stat");
463 3ce1b845 2019-07-15 stsp
464 28cf319f 2021-01-28 stsp if (require_modification &&
465 28cf319f 2021-01-28 stsp st.st_mtime == st2.st_mtime && st.st_size == st2.st_size)
466 3ce1b845 2019-07-15 stsp return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
467 3ce1b845 2019-07-15 stsp "no changes made to commit message, aborting");
468 3ce1b845 2019-07-15 stsp
469 bfa12d5e 2020-09-26 stsp /*
470 bfa12d5e 2020-09-26 stsp * Set up a stripped version of the initial content without comments
471 bfa12d5e 2020-09-26 stsp * and blank lines. We need this in order to check if the message
472 bfa12d5e 2020-09-26 stsp * has in fact been edited.
473 bfa12d5e 2020-09-26 stsp */
474 bfa12d5e 2020-09-26 stsp initial_content_stripped = malloc(initial_content_len + 1);
475 bfa12d5e 2020-09-26 stsp if (initial_content_stripped == NULL)
476 bfa12d5e 2020-09-26 stsp return got_error_from_errno("malloc");
477 bfa12d5e 2020-09-26 stsp initial_content_stripped[0] = '\0';
478 bfa12d5e 2020-09-26 stsp
479 bfa12d5e 2020-09-26 stsp buf = strdup(initial_content);
480 bfa12d5e 2020-09-26 stsp if (buf == NULL) {
481 bfa12d5e 2020-09-26 stsp err = got_error_from_errno("strdup");
482 bfa12d5e 2020-09-26 stsp goto done;
483 bfa12d5e 2020-09-26 stsp }
484 bfa12d5e 2020-09-26 stsp s = buf;
485 bfa12d5e 2020-09-26 stsp len = 0;
486 bfa12d5e 2020-09-26 stsp while ((line = strsep(&s, "\n")) != NULL) {
487 bfa12d5e 2020-09-26 stsp if ((line[0] == '#' || (len == 0 && line[0] == '\n')))
488 bfa12d5e 2020-09-26 stsp continue; /* remove comments and leading empty lines */
489 bfa12d5e 2020-09-26 stsp len = strlcat(initial_content_stripped, line,
490 bfa12d5e 2020-09-26 stsp initial_content_len + 1);
491 bfa12d5e 2020-09-26 stsp if (len >= initial_content_len + 1) {
492 bfa12d5e 2020-09-26 stsp err = got_error(GOT_ERR_NO_SPACE);
493 bfa12d5e 2020-09-26 stsp goto done;
494 bfa12d5e 2020-09-26 stsp }
495 bfa12d5e 2020-09-26 stsp }
496 bfa12d5e 2020-09-26 stsp while (len > 0 && initial_content_stripped[len - 1] == '\n') {
497 bfa12d5e 2020-09-26 stsp initial_content_stripped[len - 1] = '\0';
498 bfa12d5e 2020-09-26 stsp len--;
499 bfa12d5e 2020-09-26 stsp }
500 bfa12d5e 2020-09-26 stsp
501 bfa12d5e 2020-09-26 stsp logmsg_len = st2.st_size;
502 bfa12d5e 2020-09-26 stsp *logmsg = malloc(logmsg_len + 1);
503 3ce1b845 2019-07-15 stsp if (*logmsg == NULL)
504 3ce1b845 2019-07-15 stsp return got_error_from_errno("malloc");
505 3ce1b845 2019-07-15 stsp (*logmsg)[0] = '\0';
506 3ce1b845 2019-07-15 stsp
507 3ce1b845 2019-07-15 stsp fp = fopen(logmsg_path, "r");
508 3ce1b845 2019-07-15 stsp if (fp == NULL) {
509 3ce1b845 2019-07-15 stsp err = got_error_from_errno("fopen");
510 3ce1b845 2019-07-15 stsp goto done;
511 3ce1b845 2019-07-15 stsp }
512 bfa12d5e 2020-09-26 stsp
513 bfa12d5e 2020-09-26 stsp len = 0;
514 bfa12d5e 2020-09-26 stsp while ((linelen = getline(&line, &linesize, fp)) != -1) {
515 bfa12d5e 2020-09-26 stsp if ((line[0] == '#' || (len == 0 && line[0] == '\n')))
516 3ce1b845 2019-07-15 stsp continue; /* remove comments and leading empty lines */
517 bfa12d5e 2020-09-26 stsp len = strlcat(*logmsg, line, logmsg_len + 1);
518 bfa12d5e 2020-09-26 stsp if (len >= logmsg_len + 1) {
519 bfa12d5e 2020-09-26 stsp err = got_error(GOT_ERR_NO_SPACE);
520 bfa12d5e 2020-09-26 stsp goto done;
521 bfa12d5e 2020-09-26 stsp }
522 3ce1b845 2019-07-15 stsp }
523 bfa12d5e 2020-09-26 stsp free(line);
524 bfa12d5e 2020-09-26 stsp if (ferror(fp)) {
525 bfa12d5e 2020-09-26 stsp err = got_ferror(fp, GOT_ERR_IO);
526 bfa12d5e 2020-09-26 stsp goto done;
527 bfa12d5e 2020-09-26 stsp }
528 3ce1b845 2019-07-15 stsp while (len > 0 && (*logmsg)[len - 1] == '\n') {
529 3ce1b845 2019-07-15 stsp (*logmsg)[len - 1] = '\0';
530 3ce1b845 2019-07-15 stsp len--;
531 3ce1b845 2019-07-15 stsp }
532 3ce1b845 2019-07-15 stsp
533 bfa12d5e 2020-09-26 stsp if (len == 0) {
534 3ce1b845 2019-07-15 stsp err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
535 3ce1b845 2019-07-15 stsp "commit message cannot be empty, aborting");
536 bfa12d5e 2020-09-26 stsp goto done;
537 bfa12d5e 2020-09-26 stsp }
538 28cf319f 2021-01-28 stsp if (require_modification &&
539 28cf319f 2021-01-28 stsp strcmp(*logmsg, initial_content_stripped) == 0)
540 bfa12d5e 2020-09-26 stsp err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
541 bfa12d5e 2020-09-26 stsp "no changes made to commit message, aborting");
542 3ce1b845 2019-07-15 stsp done:
543 bfa12d5e 2020-09-26 stsp free(initial_content_stripped);
544 bfa12d5e 2020-09-26 stsp free(buf);
545 bfa12d5e 2020-09-26 stsp if (fp && fclose(fp) == EOF && err == NULL)
546 bfa12d5e 2020-09-26 stsp err = got_error_from_errno("fclose");
547 3ce1b845 2019-07-15 stsp if (err) {
548 3ce1b845 2019-07-15 stsp free(*logmsg);
549 3ce1b845 2019-07-15 stsp *logmsg = NULL;
550 3ce1b845 2019-07-15 stsp }
551 3ce1b845 2019-07-15 stsp return err;
552 3ce1b845 2019-07-15 stsp }
553 3ce1b845 2019-07-15 stsp
554 3ce1b845 2019-07-15 stsp static const struct got_error *
555 ef293bdd 2019-10-21 stsp collect_import_msg(char **logmsg, char **logmsg_path, const char *editor,
556 ef293bdd 2019-10-21 stsp const char *path_dir, const char *branch_name)
557 3ce1b845 2019-07-15 stsp {
558 ef293bdd 2019-10-21 stsp char *initial_content = NULL;
559 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
560 1601cb9f 2020-09-11 naddy int initial_content_len;
561 97972933 2020-09-11 stsp int fd = -1;
562 3ce1b845 2019-07-15 stsp
563 1601cb9f 2020-09-11 naddy initial_content_len = asprintf(&initial_content,
564 3ce1b845 2019-07-15 stsp "\n# %s to be imported to branch %s\n", path_dir,
565 1601cb9f 2020-09-11 naddy branch_name);
566 1601cb9f 2020-09-11 naddy if (initial_content_len == -1)
567 3ce1b845 2019-07-15 stsp return got_error_from_errno("asprintf");
568 3ce1b845 2019-07-15 stsp
569 bb63914a 2020-02-17 stsp err = got_opentemp_named_fd(logmsg_path, &fd,
570 bb63914a 2020-02-17 stsp GOT_TMPDIR_STR "/got-importmsg");
571 3ce1b845 2019-07-15 stsp if (err)
572 3ce1b845 2019-07-15 stsp goto done;
573 3ce1b845 2019-07-15 stsp
574 97972933 2020-09-11 stsp if (write(fd, initial_content, initial_content_len) == -1) {
575 97972933 2020-09-11 stsp err = got_error_from_errno2("write", *logmsg_path);
576 97972933 2020-09-11 stsp goto done;
577 97972933 2020-09-11 stsp }
578 3ce1b845 2019-07-15 stsp
579 bfa12d5e 2020-09-26 stsp err = edit_logmsg(logmsg, editor, *logmsg_path, initial_content,
580 0d5bb276 2020-12-15 stsp initial_content_len, 1);
581 3ce1b845 2019-07-15 stsp done:
582 97972933 2020-09-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
583 97972933 2020-09-11 stsp err = got_error_from_errno2("close", *logmsg_path);
584 3ce1b845 2019-07-15 stsp free(initial_content);
585 59f86c76 2020-09-11 stsp if (err) {
586 59f86c76 2020-09-11 stsp free(*logmsg_path);
587 59f86c76 2020-09-11 stsp *logmsg_path = NULL;
588 59f86c76 2020-09-11 stsp }
589 3ce1b845 2019-07-15 stsp return err;
590 3ce1b845 2019-07-15 stsp }
591 3ce1b845 2019-07-15 stsp
592 3ce1b845 2019-07-15 stsp static const struct got_error *
593 3ce1b845 2019-07-15 stsp import_progress(void *arg, const char *path)
594 3ce1b845 2019-07-15 stsp {
595 3ce1b845 2019-07-15 stsp printf("A %s\n", path);
596 3ce1b845 2019-07-15 stsp return NULL;
597 3ce1b845 2019-07-15 stsp }
598 3ce1b845 2019-07-15 stsp
599 3ce1b845 2019-07-15 stsp static const struct got_error *
600 50b0790e 2020-09-11 stsp get_author(char **author, struct got_repository *repo,
601 50b0790e 2020-09-11 stsp struct got_worktree *worktree)
602 84792843 2019-08-09 stsp {
603 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
604 50b0790e 2020-09-11 stsp const char *got_author = NULL, *name, *email;
605 50b0790e 2020-09-11 stsp const struct got_gotconfig *worktree_conf = NULL, *repo_conf = NULL;
606 84792843 2019-08-09 stsp
607 84792843 2019-08-09 stsp *author = NULL;
608 aba9c984 2019-09-08 stsp
609 50b0790e 2020-09-11 stsp if (worktree)
610 50b0790e 2020-09-11 stsp worktree_conf = got_worktree_get_gotconfig(worktree);
611 50b0790e 2020-09-11 stsp repo_conf = got_repo_get_gotconfig(repo);
612 50b0790e 2020-09-11 stsp
613 50b0790e 2020-09-11 stsp /*
614 50b0790e 2020-09-11 stsp * Priority of potential author information sources, from most
615 50b0790e 2020-09-11 stsp * significant to least significant:
616 50b0790e 2020-09-11 stsp * 1) work tree's .got/got.conf file
617 50b0790e 2020-09-11 stsp * 2) repository's got.conf file
618 50b0790e 2020-09-11 stsp * 3) repository's git config file
619 50b0790e 2020-09-11 stsp * 4) environment variables
620 50b0790e 2020-09-11 stsp * 5) global git config files (in user's home directory or /etc)
621 50b0790e 2020-09-11 stsp */
622 50b0790e 2020-09-11 stsp
623 50b0790e 2020-09-11 stsp if (worktree_conf)
624 50b0790e 2020-09-11 stsp got_author = got_gotconfig_get_author(worktree_conf);
625 50b0790e 2020-09-11 stsp if (got_author == NULL)
626 50b0790e 2020-09-11 stsp got_author = got_gotconfig_get_author(repo_conf);
627 84792843 2019-08-09 stsp if (got_author == NULL) {
628 257add31 2020-09-09 stsp name = got_repo_get_gitconfig_author_name(repo);
629 257add31 2020-09-09 stsp email = got_repo_get_gitconfig_author_email(repo);
630 c9956ddf 2019-09-08 stsp if (name && email) {
631 c9956ddf 2019-09-08 stsp if (asprintf(author, "%s <%s>", name, email) == -1)
632 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
633 c9956ddf 2019-09-08 stsp return NULL;
634 c9956ddf 2019-09-08 stsp }
635 257add31 2020-09-09 stsp
636 257add31 2020-09-09 stsp got_author = getenv("GOT_AUTHOR");
637 257add31 2020-09-09 stsp if (got_author == NULL) {
638 257add31 2020-09-09 stsp name = got_repo_get_global_gitconfig_author_name(repo);
639 257add31 2020-09-09 stsp email = got_repo_get_global_gitconfig_author_email(
640 257add31 2020-09-09 stsp repo);
641 257add31 2020-09-09 stsp if (name && email) {
642 257add31 2020-09-09 stsp if (asprintf(author, "%s <%s>", name, email)
643 257add31 2020-09-09 stsp == -1)
644 257add31 2020-09-09 stsp return got_error_from_errno("asprintf");
645 257add31 2020-09-09 stsp return NULL;
646 257add31 2020-09-09 stsp }
647 257add31 2020-09-09 stsp /* TODO: Look up user in password database? */
648 257add31 2020-09-09 stsp return got_error(GOT_ERR_COMMIT_NO_AUTHOR);
649 257add31 2020-09-09 stsp }
650 84792843 2019-08-09 stsp }
651 84792843 2019-08-09 stsp
652 aba9c984 2019-09-08 stsp *author = strdup(got_author);
653 aba9c984 2019-09-08 stsp if (*author == NULL)
654 aba9c984 2019-09-08 stsp return got_error_from_errno("strdup");
655 84792843 2019-08-09 stsp
656 84792843 2019-08-09 stsp /*
657 84792843 2019-08-09 stsp * Really dumb email address check; we're only doing this to
658 84792843 2019-08-09 stsp * avoid git's object parser breaking on commits we create.
659 84792843 2019-08-09 stsp */
660 84792843 2019-08-09 stsp while (*got_author && *got_author != '<')
661 84792843 2019-08-09 stsp got_author++;
662 aba9c984 2019-09-08 stsp if (*got_author != '<') {
663 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
664 aba9c984 2019-09-08 stsp goto done;
665 aba9c984 2019-09-08 stsp }
666 84792843 2019-08-09 stsp while (*got_author && *got_author != '@')
667 84792843 2019-08-09 stsp got_author++;
668 aba9c984 2019-09-08 stsp if (*got_author != '@') {
669 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
670 aba9c984 2019-09-08 stsp goto done;
671 aba9c984 2019-09-08 stsp }
672 84792843 2019-08-09 stsp while (*got_author && *got_author != '>')
673 84792843 2019-08-09 stsp got_author++;
674 84792843 2019-08-09 stsp if (*got_author != '>')
675 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
676 aba9c984 2019-09-08 stsp done:
677 aba9c984 2019-09-08 stsp if (err) {
678 aba9c984 2019-09-08 stsp free(*author);
679 aba9c984 2019-09-08 stsp *author = NULL;
680 aba9c984 2019-09-08 stsp }
681 aba9c984 2019-09-08 stsp return err;
682 c9956ddf 2019-09-08 stsp }
683 c9956ddf 2019-09-08 stsp
684 c9956ddf 2019-09-08 stsp static const struct got_error *
685 c9956ddf 2019-09-08 stsp get_gitconfig_path(char **gitconfig_path)
686 c9956ddf 2019-09-08 stsp {
687 c9956ddf 2019-09-08 stsp const char *homedir = getenv("HOME");
688 c9956ddf 2019-09-08 stsp
689 c9956ddf 2019-09-08 stsp *gitconfig_path = NULL;
690 c9956ddf 2019-09-08 stsp if (homedir) {
691 c9956ddf 2019-09-08 stsp if (asprintf(gitconfig_path, "%s/.gitconfig", homedir) == -1)
692 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
693 c9956ddf 2019-09-08 stsp
694 c9956ddf 2019-09-08 stsp }
695 c9956ddf 2019-09-08 stsp return NULL;
696 84792843 2019-08-09 stsp }
697 84792843 2019-08-09 stsp
698 84792843 2019-08-09 stsp static const struct got_error *
699 3ce1b845 2019-07-15 stsp cmd_import(int argc, char *argv[])
700 3ce1b845 2019-07-15 stsp {
701 3ce1b845 2019-07-15 stsp const struct got_error *error = NULL;
702 3ce1b845 2019-07-15 stsp char *path_dir = NULL, *repo_path = NULL, *logmsg = NULL;
703 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
704 5d67f40d 2019-11-08 stsp const char *branch_name = "main";
705 ef293bdd 2019-10-21 stsp char *refname = NULL, *id_str = NULL, *logmsg_path = NULL;
706 3ce1b845 2019-07-15 stsp struct got_repository *repo = NULL;
707 3ce1b845 2019-07-15 stsp struct got_reference *branch_ref = NULL, *head_ref = NULL;
708 3ce1b845 2019-07-15 stsp struct got_object_id *new_commit_id = NULL;
709 3ce1b845 2019-07-15 stsp int ch;
710 3ce1b845 2019-07-15 stsp struct got_pathlist_head ignores;
711 3ce1b845 2019-07-15 stsp struct got_pathlist_entry *pe;
712 ef293bdd 2019-10-21 stsp int preserve_logmsg = 0;
713 3ce1b845 2019-07-15 stsp
714 3ce1b845 2019-07-15 stsp TAILQ_INIT(&ignores);
715 3ce1b845 2019-07-15 stsp
716 3ce1b845 2019-07-15 stsp while ((ch = getopt(argc, argv, "b:m:r:I:")) != -1) {
717 3ce1b845 2019-07-15 stsp switch (ch) {
718 3ce1b845 2019-07-15 stsp case 'b':
719 3ce1b845 2019-07-15 stsp branch_name = optarg;
720 3ce1b845 2019-07-15 stsp break;
721 3ce1b845 2019-07-15 stsp case 'm':
722 3ce1b845 2019-07-15 stsp logmsg = strdup(optarg);
723 3ce1b845 2019-07-15 stsp if (logmsg == NULL) {
724 3ce1b845 2019-07-15 stsp error = got_error_from_errno("strdup");
725 3ce1b845 2019-07-15 stsp goto done;
726 3ce1b845 2019-07-15 stsp }
727 3ce1b845 2019-07-15 stsp break;
728 3ce1b845 2019-07-15 stsp case 'r':
729 3ce1b845 2019-07-15 stsp repo_path = realpath(optarg, NULL);
730 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
731 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath",
732 9ba1d308 2019-10-21 stsp optarg);
733 3ce1b845 2019-07-15 stsp goto done;
734 3ce1b845 2019-07-15 stsp }
735 3ce1b845 2019-07-15 stsp break;
736 3ce1b845 2019-07-15 stsp case 'I':
737 3ce1b845 2019-07-15 stsp if (optarg[0] == '\0')
738 3ce1b845 2019-07-15 stsp break;
739 3ce1b845 2019-07-15 stsp error = got_pathlist_insert(&pe, &ignores, optarg,
740 3ce1b845 2019-07-15 stsp NULL);
741 3ce1b845 2019-07-15 stsp if (error)
742 3ce1b845 2019-07-15 stsp goto done;
743 3ce1b845 2019-07-15 stsp break;
744 3ce1b845 2019-07-15 stsp default:
745 b2b65d18 2019-08-22 stsp usage_import();
746 3ce1b845 2019-07-15 stsp /* NOTREACHED */
747 3ce1b845 2019-07-15 stsp }
748 3ce1b845 2019-07-15 stsp }
749 3ce1b845 2019-07-15 stsp
750 3ce1b845 2019-07-15 stsp argc -= optind;
751 3ce1b845 2019-07-15 stsp argv += optind;
752 3ce1b845 2019-07-15 stsp
753 3ce1b845 2019-07-15 stsp #ifndef PROFILE
754 aba9c984 2019-09-08 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
755 aba9c984 2019-09-08 stsp "unveil",
756 3ce1b845 2019-07-15 stsp NULL) == -1)
757 3ce1b845 2019-07-15 stsp err(1, "pledge");
758 3ce1b845 2019-07-15 stsp #endif
759 3ce1b845 2019-07-15 stsp if (argc != 1)
760 3ce1b845 2019-07-15 stsp usage_import();
761 2c7829a4 2019-06-17 stsp
762 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
763 3ce1b845 2019-07-15 stsp repo_path = getcwd(NULL, 0);
764 3ce1b845 2019-07-15 stsp if (repo_path == NULL)
765 3ce1b845 2019-07-15 stsp return got_error_from_errno("getcwd");
766 3ce1b845 2019-07-15 stsp }
767 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(repo_path);
768 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
769 c9956ddf 2019-09-08 stsp if (error)
770 c9956ddf 2019-09-08 stsp goto done;
771 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
772 3ce1b845 2019-07-15 stsp if (error)
773 3ce1b845 2019-07-15 stsp goto done;
774 aba9c984 2019-09-08 stsp
775 50b0790e 2020-09-11 stsp error = get_author(&author, repo, NULL);
776 aba9c984 2019-09-08 stsp if (error)
777 aba9c984 2019-09-08 stsp return error;
778 e560b7e0 2019-11-28 stsp
779 e560b7e0 2019-11-28 stsp /*
780 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
781 e560b7e0 2019-11-28 stsp * While technically a valid reference name, this case is usually
782 e560b7e0 2019-11-28 stsp * an unintended typo.
783 e560b7e0 2019-11-28 stsp */
784 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
785 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
786 3ce1b845 2019-07-15 stsp
787 3ce1b845 2019-07-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
788 3ce1b845 2019-07-15 stsp error = got_error_from_errno("asprintf");
789 3ce1b845 2019-07-15 stsp goto done;
790 3ce1b845 2019-07-15 stsp }
791 3ce1b845 2019-07-15 stsp
792 3ce1b845 2019-07-15 stsp error = got_ref_open(&branch_ref, repo, refname, 0);
793 3ce1b845 2019-07-15 stsp if (error) {
794 3ce1b845 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
795 3ce1b845 2019-07-15 stsp goto done;
796 3ce1b845 2019-07-15 stsp } else {
797 3ce1b845 2019-07-15 stsp error = got_error_msg(GOT_ERR_BRANCH_EXISTS,
798 3ce1b845 2019-07-15 stsp "import target branch already exists");
799 3ce1b845 2019-07-15 stsp goto done;
800 3ce1b845 2019-07-15 stsp }
801 3ce1b845 2019-07-15 stsp
802 3ce1b845 2019-07-15 stsp path_dir = realpath(argv[0], NULL);
803 3ce1b845 2019-07-15 stsp if (path_dir == NULL) {
804 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath", argv[0]);
805 3ce1b845 2019-07-15 stsp goto done;
806 3ce1b845 2019-07-15 stsp }
807 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(path_dir);
808 3ce1b845 2019-07-15 stsp
809 3ce1b845 2019-07-15 stsp /*
810 3ce1b845 2019-07-15 stsp * unveil(2) traverses exec(2); if an editor is used we have
811 3ce1b845 2019-07-15 stsp * to apply unveil after the log message has been written.
812 3ce1b845 2019-07-15 stsp */
813 3ce1b845 2019-07-15 stsp if (logmsg == NULL || strlen(logmsg) == 0) {
814 3ce1b845 2019-07-15 stsp error = get_editor(&editor);
815 3ce1b845 2019-07-15 stsp if (error)
816 3ce1b845 2019-07-15 stsp goto done;
817 8e158b01 2019-09-22 stsp free(logmsg);
818 ef293bdd 2019-10-21 stsp error = collect_import_msg(&logmsg, &logmsg_path, editor,
819 ef293bdd 2019-10-21 stsp path_dir, refname);
820 ef293bdd 2019-10-21 stsp if (error) {
821 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
822 ef293bdd 2019-10-21 stsp logmsg_path != NULL)
823 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
824 3ce1b845 2019-07-15 stsp goto done;
825 ef293bdd 2019-10-21 stsp }
826 3ce1b845 2019-07-15 stsp }
827 3ce1b845 2019-07-15 stsp
828 ef293bdd 2019-10-21 stsp if (unveil(path_dir, "r") != 0) {
829 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unveil", path_dir);
830 ef293bdd 2019-10-21 stsp if (logmsg_path)
831 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
832 3ce1b845 2019-07-15 stsp goto done;
833 ef293bdd 2019-10-21 stsp }
834 3ce1b845 2019-07-15 stsp
835 ef293bdd 2019-10-21 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
836 ef293bdd 2019-10-21 stsp if (error) {
837 ef293bdd 2019-10-21 stsp if (logmsg_path)
838 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
839 ef293bdd 2019-10-21 stsp goto done;
840 ef293bdd 2019-10-21 stsp }
841 ef293bdd 2019-10-21 stsp
842 3ce1b845 2019-07-15 stsp error = got_repo_import(&new_commit_id, path_dir, logmsg,
843 84792843 2019-08-09 stsp author, &ignores, repo, import_progress, NULL);
844 ef293bdd 2019-10-21 stsp if (error) {
845 ef293bdd 2019-10-21 stsp if (logmsg_path)
846 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
847 3ce1b845 2019-07-15 stsp goto done;
848 ef293bdd 2019-10-21 stsp }
849 3ce1b845 2019-07-15 stsp
850 3ce1b845 2019-07-15 stsp error = got_ref_alloc(&branch_ref, refname, new_commit_id);
851 ef293bdd 2019-10-21 stsp if (error) {
852 ef293bdd 2019-10-21 stsp if (logmsg_path)
853 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
854 3ce1b845 2019-07-15 stsp goto done;
855 ef293bdd 2019-10-21 stsp }
856 3ce1b845 2019-07-15 stsp
857 3ce1b845 2019-07-15 stsp error = got_ref_write(branch_ref, repo);
858 ef293bdd 2019-10-21 stsp if (error) {
859 ef293bdd 2019-10-21 stsp if (logmsg_path)
860 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
861 3ce1b845 2019-07-15 stsp goto done;
862 ef293bdd 2019-10-21 stsp }
863 3ce1b845 2019-07-15 stsp
864 3ce1b845 2019-07-15 stsp error = got_object_id_str(&id_str, new_commit_id);
865 ef293bdd 2019-10-21 stsp if (error) {
866 ef293bdd 2019-10-21 stsp if (logmsg_path)
867 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
868 3ce1b845 2019-07-15 stsp goto done;
869 ef293bdd 2019-10-21 stsp }
870 3ce1b845 2019-07-15 stsp
871 3ce1b845 2019-07-15 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
872 3ce1b845 2019-07-15 stsp if (error) {
873 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_NOT_REF) {
874 ef293bdd 2019-10-21 stsp if (logmsg_path)
875 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
876 3ce1b845 2019-07-15 stsp goto done;
877 ef293bdd 2019-10-21 stsp }
878 3ce1b845 2019-07-15 stsp
879 3ce1b845 2019-07-15 stsp error = got_ref_alloc_symref(&head_ref, GOT_REF_HEAD,
880 3ce1b845 2019-07-15 stsp branch_ref);
881 ef293bdd 2019-10-21 stsp if (error) {
882 ef293bdd 2019-10-21 stsp if (logmsg_path)
883 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
884 3ce1b845 2019-07-15 stsp goto done;
885 ef293bdd 2019-10-21 stsp }
886 3ce1b845 2019-07-15 stsp
887 3ce1b845 2019-07-15 stsp error = got_ref_write(head_ref, repo);
888 ef293bdd 2019-10-21 stsp if (error) {
889 ef293bdd 2019-10-21 stsp if (logmsg_path)
890 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
891 3ce1b845 2019-07-15 stsp goto done;
892 ef293bdd 2019-10-21 stsp }
893 3ce1b845 2019-07-15 stsp }
894 3ce1b845 2019-07-15 stsp
895 3ce1b845 2019-07-15 stsp printf("Created branch %s with commit %s\n",
896 3ce1b845 2019-07-15 stsp got_ref_get_name(branch_ref), id_str);
897 2c7829a4 2019-06-17 stsp done:
898 ef293bdd 2019-10-21 stsp if (preserve_logmsg) {
899 ef293bdd 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
900 ef293bdd 2019-10-21 stsp getprogname(), logmsg_path);
901 ef293bdd 2019-10-21 stsp } else if (logmsg_path && unlink(logmsg_path) == -1 && error == NULL)
902 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unlink", logmsg_path);
903 8e158b01 2019-09-22 stsp free(logmsg);
904 ef293bdd 2019-10-21 stsp free(logmsg_path);
905 2c7829a4 2019-06-17 stsp free(repo_path);
906 3ce1b845 2019-07-15 stsp free(editor);
907 3ce1b845 2019-07-15 stsp free(refname);
908 3ce1b845 2019-07-15 stsp free(new_commit_id);
909 3ce1b845 2019-07-15 stsp free(id_str);
910 aba9c984 2019-09-08 stsp free(author);
911 c9956ddf 2019-09-08 stsp free(gitconfig_path);
912 3ce1b845 2019-07-15 stsp if (branch_ref)
913 3ce1b845 2019-07-15 stsp got_ref_close(branch_ref);
914 3ce1b845 2019-07-15 stsp if (head_ref)
915 3ce1b845 2019-07-15 stsp got_ref_close(head_ref);
916 2c7829a4 2019-06-17 stsp return error;
917 93658fb9 2020-03-18 stsp }
918 93658fb9 2020-03-18 stsp
919 93658fb9 2020-03-18 stsp __dead static void
920 93658fb9 2020-03-18 stsp usage_clone(void)
921 93658fb9 2020-03-18 stsp {
922 13f12b09 2020-03-21 stsp fprintf(stderr, "usage: %s clone [-a] [-b branch] [-l] [-m] [-q] [-v] "
923 0e4002ca 2020-03-21 stsp "[-R reference] repository-url [directory]\n", getprogname());
924 93658fb9 2020-03-18 stsp exit(1);
925 93658fb9 2020-03-18 stsp }
926 892ac3b6 2020-03-18 stsp
927 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg {
928 892ac3b6 2020-03-18 stsp char last_scaled_size[FMT_SCALED_STRSIZE];
929 892ac3b6 2020-03-18 stsp int last_p_indexed;
930 892ac3b6 2020-03-18 stsp int last_p_resolved;
931 68999b92 2020-03-18 stsp int verbosity;
932 04d9a9ec 2020-09-24 stsp
933 04d9a9ec 2020-09-24 stsp struct got_repository *repo;
934 04d9a9ec 2020-09-24 stsp
935 04d9a9ec 2020-09-24 stsp int create_configs;
936 04d9a9ec 2020-09-24 stsp int configs_created;
937 04d9a9ec 2020-09-24 stsp struct {
938 04d9a9ec 2020-09-24 stsp struct got_pathlist_head *symrefs;
939 04d9a9ec 2020-09-24 stsp struct got_pathlist_head *wanted_branches;
940 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_refs;
941 04d9a9ec 2020-09-24 stsp const char *proto;
942 04d9a9ec 2020-09-24 stsp const char *host;
943 04d9a9ec 2020-09-24 stsp const char *port;
944 04d9a9ec 2020-09-24 stsp const char *remote_repo_path;
945 04d9a9ec 2020-09-24 stsp const char *git_url;
946 04d9a9ec 2020-09-24 stsp int fetch_all_branches;
947 04d9a9ec 2020-09-24 stsp int mirror_references;
948 04d9a9ec 2020-09-24 stsp } config_info;
949 892ac3b6 2020-03-18 stsp };
950 93658fb9 2020-03-18 stsp
951 04d9a9ec 2020-09-24 stsp /* XXX forward declaration */
952 93658fb9 2020-03-18 stsp static const struct got_error *
953 04d9a9ec 2020-09-24 stsp create_config_files(const char *proto, const char *host, const char *port,
954 04d9a9ec 2020-09-24 stsp const char *remote_repo_path, const char *git_url, int fetch_all_branches,
955 04d9a9ec 2020-09-24 stsp int mirror_references, struct got_pathlist_head *symrefs,
956 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_branches,
957 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_refs, struct got_repository *repo);
958 04d9a9ec 2020-09-24 stsp
959 04d9a9ec 2020-09-24 stsp static const struct got_error *
960 baa9fea0 2020-03-18 stsp fetch_progress(void *arg, const char *message, off_t packfile_size,
961 668a20f6 2020-03-18 stsp int nobj_total, int nobj_indexed, int nobj_loose, int nobj_resolved)
962 531c3985 2020-03-18 stsp {
963 04d9a9ec 2020-09-24 stsp const struct got_error *err = NULL;
964 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg *a = arg;
965 892ac3b6 2020-03-18 stsp char scaled_size[FMT_SCALED_STRSIZE];
966 892ac3b6 2020-03-18 stsp int p_indexed, p_resolved;
967 892ac3b6 2020-03-18 stsp int print_size = 0, print_indexed = 0, print_resolved = 0;
968 04d9a9ec 2020-09-24 stsp
969 04d9a9ec 2020-09-24 stsp /*
970 04d9a9ec 2020-09-24 stsp * In order to allow a failed clone to be resumed with 'got fetch'
971 04d9a9ec 2020-09-24 stsp * we try to create configuration files as soon as possible.
972 04d9a9ec 2020-09-24 stsp * Once the server has sent information about its default branch
973 04d9a9ec 2020-09-24 stsp * we have all required information.
974 04d9a9ec 2020-09-24 stsp */
975 04d9a9ec 2020-09-24 stsp if (a->create_configs && !a->configs_created &&
976 04d9a9ec 2020-09-24 stsp !TAILQ_EMPTY(a->config_info.symrefs)) {
977 04d9a9ec 2020-09-24 stsp err = create_config_files(a->config_info.proto,
978 62d463ca 2020-10-20 naddy a->config_info.host, a->config_info.port,
979 62d463ca 2020-10-20 naddy a->config_info.remote_repo_path,
980 62d463ca 2020-10-20 naddy a->config_info.git_url,
981 62d463ca 2020-10-20 naddy a->config_info.fetch_all_branches,
982 62d463ca 2020-10-20 naddy a->config_info.mirror_references,
983 62d463ca 2020-10-20 naddy a->config_info.symrefs,
984 99495ddb 2021-01-10 stsp a->config_info.wanted_branches,
985 99495ddb 2021-01-10 stsp a->config_info.wanted_refs, a->repo);
986 04d9a9ec 2020-09-24 stsp if (err)
987 04d9a9ec 2020-09-24 stsp return err;
988 04d9a9ec 2020-09-24 stsp a->configs_created = 1;
989 04d9a9ec 2020-09-24 stsp }
990 b2409d58 2020-03-18 stsp
991 68999b92 2020-03-18 stsp if (a->verbosity < 0)
992 68999b92 2020-03-18 stsp return NULL;
993 68999b92 2020-03-18 stsp
994 fd843b58 2020-03-18 stsp if (message && message[0] != '\0') {
995 d2cdc636 2020-03-18 stsp printf("\rserver: %s", message);
996 892ac3b6 2020-03-18 stsp fflush(stdout);
997 12d1281e 2020-03-19 stsp return NULL;
998 b2409d58 2020-03-18 stsp }
999 b2409d58 2020-03-18 stsp
1000 b2409d58 2020-03-18 stsp if (packfile_size > 0 || nobj_indexed > 0) {
1001 892ac3b6 2020-03-18 stsp if (fmt_scaled(packfile_size, scaled_size) == 0 &&
1002 892ac3b6 2020-03-18 stsp (a->last_scaled_size[0] == '\0' ||
1003 892ac3b6 2020-03-18 stsp strcmp(scaled_size, a->last_scaled_size)) != 0) {
1004 892ac3b6 2020-03-18 stsp print_size = 1;
1005 892ac3b6 2020-03-18 stsp if (strlcpy(a->last_scaled_size, scaled_size,
1006 892ac3b6 2020-03-18 stsp FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
1007 892ac3b6 2020-03-18 stsp return got_error(GOT_ERR_NO_SPACE);
1008 892ac3b6 2020-03-18 stsp }
1009 61cc1a7a 2020-03-18 stsp if (nobj_indexed > 0) {
1010 892ac3b6 2020-03-18 stsp p_indexed = (nobj_indexed * 100) / nobj_total;
1011 892ac3b6 2020-03-18 stsp if (p_indexed != a->last_p_indexed) {
1012 892ac3b6 2020-03-18 stsp a->last_p_indexed = p_indexed;
1013 892ac3b6 2020-03-18 stsp print_indexed = 1;
1014 892ac3b6 2020-03-18 stsp print_size = 1;
1015 892ac3b6 2020-03-18 stsp }
1016 61cc1a7a 2020-03-18 stsp }
1017 61cc1a7a 2020-03-18 stsp if (nobj_resolved > 0) {
1018 892ac3b6 2020-03-18 stsp p_resolved = (nobj_resolved * 100) /
1019 892ac3b6 2020-03-18 stsp (nobj_total - nobj_loose);
1020 892ac3b6 2020-03-18 stsp if (p_resolved != a->last_p_resolved) {
1021 892ac3b6 2020-03-18 stsp a->last_p_resolved = p_resolved;
1022 892ac3b6 2020-03-18 stsp print_resolved = 1;
1023 892ac3b6 2020-03-18 stsp print_indexed = 1;
1024 892ac3b6 2020-03-18 stsp print_size = 1;
1025 892ac3b6 2020-03-18 stsp }
1026 61cc1a7a 2020-03-18 stsp }
1027 3168e5da 2020-09-10 stsp
1028 d2cdc636 2020-03-18 stsp }
1029 892ac3b6 2020-03-18 stsp if (print_size || print_indexed || print_resolved)
1030 892ac3b6 2020-03-18 stsp printf("\r");
1031 892ac3b6 2020-03-18 stsp if (print_size)
1032 892ac3b6 2020-03-18 stsp printf("%*s fetched", FMT_SCALED_STRSIZE, scaled_size);
1033 d715f13e 2020-03-19 stsp if (print_indexed)
1034 892ac3b6 2020-03-18 stsp printf("; indexing %d%%", p_indexed);
1035 d715f13e 2020-03-19 stsp if (print_resolved)
1036 892ac3b6 2020-03-18 stsp printf("; resolving deltas %d%%", p_resolved);
1037 892ac3b6 2020-03-18 stsp if (print_size || print_indexed || print_resolved)
1038 892ac3b6 2020-03-18 stsp fflush(stdout);
1039 892ac3b6 2020-03-18 stsp
1040 531c3985 2020-03-18 stsp return NULL;
1041 531c3985 2020-03-18 stsp }
1042 531c3985 2020-03-18 stsp
1043 531c3985 2020-03-18 stsp static const struct got_error *
1044 04d9a9ec 2020-09-24 stsp create_symref(const char *refname, struct got_reference *target_ref,
1045 04d9a9ec 2020-09-24 stsp int verbosity, struct got_repository *repo)
1046 4ba14133 2020-03-20 stsp {
1047 4ba14133 2020-03-20 stsp const struct got_error *err;
1048 04d9a9ec 2020-09-24 stsp struct got_reference *head_symref;
1049 4ba14133 2020-03-20 stsp
1050 04d9a9ec 2020-09-24 stsp err = got_ref_alloc_symref(&head_symref, refname, target_ref);
1051 4ba14133 2020-03-20 stsp if (err)
1052 4ba14133 2020-03-20 stsp return err;
1053 4ba14133 2020-03-20 stsp
1054 04d9a9ec 2020-09-24 stsp err = got_ref_write(head_symref, repo);
1055 6338a6a1 2020-03-21 stsp if (err == NULL && verbosity > 0) {
1056 6338a6a1 2020-03-21 stsp printf("Created reference %s: %s\n", GOT_REF_HEAD,
1057 6338a6a1 2020-03-21 stsp got_ref_get_name(target_ref));
1058 6338a6a1 2020-03-21 stsp }
1059 04d9a9ec 2020-09-24 stsp got_ref_close(head_symref);
1060 4ba14133 2020-03-20 stsp return err;
1061 4ba14133 2020-03-20 stsp }
1062 4ba14133 2020-03-20 stsp
1063 4ba14133 2020-03-20 stsp static const struct got_error *
1064 41b0de12 2020-03-21 stsp list_remote_refs(struct got_pathlist_head *symrefs,
1065 41b0de12 2020-03-21 stsp struct got_pathlist_head *refs)
1066 41b0de12 2020-03-21 stsp {
1067 41b0de12 2020-03-21 stsp const struct got_error *err;
1068 41b0de12 2020-03-21 stsp struct got_pathlist_entry *pe;
1069 41b0de12 2020-03-21 stsp
1070 41b0de12 2020-03-21 stsp TAILQ_FOREACH(pe, symrefs, entry) {
1071 41b0de12 2020-03-21 stsp const char *refname = pe->path;
1072 41b0de12 2020-03-21 stsp const char *targetref = pe->data;
1073 41b0de12 2020-03-21 stsp
1074 41b0de12 2020-03-21 stsp printf("%s: %s\n", refname, targetref);
1075 41b0de12 2020-03-21 stsp }
1076 41b0de12 2020-03-21 stsp
1077 41b0de12 2020-03-21 stsp TAILQ_FOREACH(pe, refs, entry) {
1078 41b0de12 2020-03-21 stsp const char *refname = pe->path;
1079 41b0de12 2020-03-21 stsp struct got_object_id *id = pe->data;
1080 41b0de12 2020-03-21 stsp char *id_str;
1081 41b0de12 2020-03-21 stsp
1082 41b0de12 2020-03-21 stsp err = got_object_id_str(&id_str, id);
1083 41b0de12 2020-03-21 stsp if (err)
1084 41b0de12 2020-03-21 stsp return err;
1085 41b0de12 2020-03-21 stsp printf("%s: %s\n", refname, id_str);
1086 41b0de12 2020-03-21 stsp free(id_str);
1087 41b0de12 2020-03-21 stsp }
1088 41b0de12 2020-03-21 stsp
1089 41b0de12 2020-03-21 stsp return NULL;
1090 6338a6a1 2020-03-21 stsp }
1091 6338a6a1 2020-03-21 stsp
1092 6338a6a1 2020-03-21 stsp static const struct got_error *
1093 6338a6a1 2020-03-21 stsp create_ref(const char *refname, struct got_object_id *id,
1094 6338a6a1 2020-03-21 stsp int verbosity, struct got_repository *repo)
1095 6338a6a1 2020-03-21 stsp {
1096 6338a6a1 2020-03-21 stsp const struct got_error *err = NULL;
1097 6338a6a1 2020-03-21 stsp struct got_reference *ref;
1098 6338a6a1 2020-03-21 stsp char *id_str;
1099 6338a6a1 2020-03-21 stsp
1100 6338a6a1 2020-03-21 stsp err = got_object_id_str(&id_str, id);
1101 6338a6a1 2020-03-21 stsp if (err)
1102 6338a6a1 2020-03-21 stsp return err;
1103 6338a6a1 2020-03-21 stsp
1104 6338a6a1 2020-03-21 stsp err = got_ref_alloc(&ref, refname, id);
1105 6338a6a1 2020-03-21 stsp if (err)
1106 6338a6a1 2020-03-21 stsp goto done;
1107 6338a6a1 2020-03-21 stsp
1108 6338a6a1 2020-03-21 stsp err = got_ref_write(ref, repo);
1109 6338a6a1 2020-03-21 stsp got_ref_close(ref);
1110 6338a6a1 2020-03-21 stsp
1111 6338a6a1 2020-03-21 stsp if (err == NULL && verbosity >= 0)
1112 6338a6a1 2020-03-21 stsp printf("Created reference %s: %s\n", refname, id_str);
1113 6338a6a1 2020-03-21 stsp done:
1114 6338a6a1 2020-03-21 stsp free(id_str);
1115 6338a6a1 2020-03-21 stsp return err;
1116 0e4002ca 2020-03-21 stsp }
1117 0e4002ca 2020-03-21 stsp
1118 0e4002ca 2020-03-21 stsp static int
1119 0e4002ca 2020-03-21 stsp match_wanted_ref(const char *refname, const char *wanted_ref)
1120 0e4002ca 2020-03-21 stsp {
1121 0e4002ca 2020-03-21 stsp if (strncmp(refname, "refs/", 5) != 0)
1122 0e4002ca 2020-03-21 stsp return 0;
1123 0e4002ca 2020-03-21 stsp refname += 5;
1124 0e4002ca 2020-03-21 stsp
1125 0e4002ca 2020-03-21 stsp /*
1126 0e4002ca 2020-03-21 stsp * Prevent fetching of references that won't make any
1127 0e4002ca 2020-03-21 stsp * sense outside of the remote repository's context.
1128 0e4002ca 2020-03-21 stsp */
1129 0e4002ca 2020-03-21 stsp if (strncmp(refname, "got/", 4) == 0)
1130 0e4002ca 2020-03-21 stsp return 0;
1131 0e4002ca 2020-03-21 stsp if (strncmp(refname, "remotes/", 8) == 0)
1132 0e4002ca 2020-03-21 stsp return 0;
1133 0e4002ca 2020-03-21 stsp
1134 0e4002ca 2020-03-21 stsp if (strncmp(wanted_ref, "refs/", 5) == 0)
1135 0e4002ca 2020-03-21 stsp wanted_ref += 5;
1136 0e4002ca 2020-03-21 stsp
1137 0e4002ca 2020-03-21 stsp /* Allow prefix match. */
1138 0e4002ca 2020-03-21 stsp if (got_path_is_child(refname, wanted_ref, strlen(wanted_ref)))
1139 0e4002ca 2020-03-21 stsp return 1;
1140 0e4002ca 2020-03-21 stsp
1141 0e4002ca 2020-03-21 stsp /* Allow exact match. */
1142 0e4002ca 2020-03-21 stsp return (strcmp(refname, wanted_ref) == 0);
1143 41b0de12 2020-03-21 stsp }
1144 41b0de12 2020-03-21 stsp
1145 0e4002ca 2020-03-21 stsp static int
1146 0e4002ca 2020-03-21 stsp is_wanted_ref(struct got_pathlist_head *wanted_refs, const char *refname)
1147 0e4002ca 2020-03-21 stsp {
1148 0e4002ca 2020-03-21 stsp struct got_pathlist_entry *pe;
1149 0e4002ca 2020-03-21 stsp
1150 0e4002ca 2020-03-21 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
1151 0e4002ca 2020-03-21 stsp if (match_wanted_ref(refname, pe->path))
1152 0e4002ca 2020-03-21 stsp return 1;
1153 0e4002ca 2020-03-21 stsp }
1154 0e4002ca 2020-03-21 stsp
1155 0e4002ca 2020-03-21 stsp return 0;
1156 0e4002ca 2020-03-21 stsp }
1157 0e4002ca 2020-03-21 stsp
1158 41b0de12 2020-03-21 stsp static const struct got_error *
1159 0e4002ca 2020-03-21 stsp create_wanted_ref(const char *refname, struct got_object_id *id,
1160 0e4002ca 2020-03-21 stsp const char *remote_repo_name, int verbosity, struct got_repository *repo)
1161 0e4002ca 2020-03-21 stsp {
1162 0e4002ca 2020-03-21 stsp const struct got_error *err;
1163 0e4002ca 2020-03-21 stsp char *remote_refname;
1164 0e4002ca 2020-03-21 stsp
1165 0e4002ca 2020-03-21 stsp if (strncmp("refs/", refname, 5) == 0)
1166 0e4002ca 2020-03-21 stsp refname += 5;
1167 0e4002ca 2020-03-21 stsp
1168 0e4002ca 2020-03-21 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
1169 0e4002ca 2020-03-21 stsp remote_repo_name, refname) == -1)
1170 0e4002ca 2020-03-21 stsp return got_error_from_errno("asprintf");
1171 0e4002ca 2020-03-21 stsp
1172 0e4002ca 2020-03-21 stsp err = create_ref(remote_refname, id, verbosity, repo);
1173 0e4002ca 2020-03-21 stsp free(remote_refname);
1174 7c0b7f42 2020-09-24 stsp return err;
1175 7c0b7f42 2020-09-24 stsp }
1176 7c0b7f42 2020-09-24 stsp
1177 7c0b7f42 2020-09-24 stsp static const struct got_error *
1178 7c0b7f42 2020-09-24 stsp create_gotconfig(const char *proto, const char *host, const char *port,
1179 15d3c221 2021-01-05 stsp const char *remote_repo_path, const char *default_branch,
1180 0c8b29c5 2021-01-05 stsp int fetch_all_branches, struct got_pathlist_head *wanted_branches,
1181 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_refs, int mirror_references,
1182 99495ddb 2021-01-10 stsp struct got_repository *repo)
1183 7c0b7f42 2020-09-24 stsp {
1184 7c0b7f42 2020-09-24 stsp const struct got_error *err = NULL;
1185 7c0b7f42 2020-09-24 stsp char *gotconfig_path = NULL;
1186 7c0b7f42 2020-09-24 stsp char *gotconfig = NULL;
1187 7c0b7f42 2020-09-24 stsp FILE *gotconfig_file = NULL;
1188 15d3c221 2021-01-05 stsp const char *branchname = NULL;
1189 99495ddb 2021-01-10 stsp char *branches = NULL, *refs = NULL;
1190 7c0b7f42 2020-09-24 stsp ssize_t n;
1191 7c0b7f42 2020-09-24 stsp
1192 0c8b29c5 2021-01-05 stsp if (!fetch_all_branches && !TAILQ_EMPTY(wanted_branches)) {
1193 132af4a5 2021-01-05 stsp struct got_pathlist_entry *pe;
1194 132af4a5 2021-01-05 stsp TAILQ_FOREACH(pe, wanted_branches, entry) {
1195 132af4a5 2021-01-05 stsp char *s;
1196 132af4a5 2021-01-05 stsp branchname = pe->path;
1197 132af4a5 2021-01-05 stsp if (strncmp(branchname, "refs/heads/", 11) == 0)
1198 132af4a5 2021-01-05 stsp branchname += 11;
1199 132af4a5 2021-01-05 stsp if (asprintf(&s, "%s\"%s\" ",
1200 132af4a5 2021-01-05 stsp branches ? branches : "", branchname) == -1) {
1201 132af4a5 2021-01-05 stsp err = got_error_from_errno("asprintf");
1202 132af4a5 2021-01-05 stsp goto done;
1203 132af4a5 2021-01-05 stsp }
1204 132af4a5 2021-01-05 stsp free(branches);
1205 132af4a5 2021-01-05 stsp branches = s;
1206 132af4a5 2021-01-05 stsp }
1207 0c8b29c5 2021-01-05 stsp } else if (!fetch_all_branches && default_branch) {
1208 15d3c221 2021-01-05 stsp branchname = default_branch;
1209 15d3c221 2021-01-05 stsp if (strncmp(branchname, "refs/heads/", 11) == 0)
1210 15d3c221 2021-01-05 stsp branchname += 11;
1211 132af4a5 2021-01-05 stsp if (asprintf(&branches, "\"%s\" ", branchname) == -1) {
1212 132af4a5 2021-01-05 stsp err = got_error_from_errno("asprintf");
1213 132af4a5 2021-01-05 stsp goto done;
1214 99495ddb 2021-01-10 stsp }
1215 99495ddb 2021-01-10 stsp }
1216 99495ddb 2021-01-10 stsp if (!TAILQ_EMPTY(wanted_refs)) {
1217 99495ddb 2021-01-10 stsp struct got_pathlist_entry *pe;
1218 99495ddb 2021-01-10 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
1219 99495ddb 2021-01-10 stsp char *s;
1220 99495ddb 2021-01-10 stsp const char *refname = pe->path;
1221 99495ddb 2021-01-10 stsp if (strncmp(refname, "refs/", 5) == 0)
1222 99495ddb 2021-01-10 stsp branchname += 5;
1223 99495ddb 2021-01-10 stsp if (asprintf(&s, "%s\"%s\" ",
1224 99495ddb 2021-01-10 stsp refs ? refs : "", refname) == -1) {
1225 99495ddb 2021-01-10 stsp err = got_error_from_errno("asprintf");
1226 99495ddb 2021-01-10 stsp goto done;
1227 99495ddb 2021-01-10 stsp }
1228 99495ddb 2021-01-10 stsp free(refs);
1229 99495ddb 2021-01-10 stsp refs = s;
1230 132af4a5 2021-01-05 stsp }
1231 15d3c221 2021-01-05 stsp }
1232 15d3c221 2021-01-05 stsp
1233 7c0b7f42 2020-09-24 stsp /* Create got.conf(5). */
1234 7c0b7f42 2020-09-24 stsp gotconfig_path = got_repo_get_path_gotconfig(repo);
1235 7c0b7f42 2020-09-24 stsp if (gotconfig_path == NULL) {
1236 7c0b7f42 2020-09-24 stsp err = got_error_from_errno("got_repo_get_path_gotconfig");
1237 7c0b7f42 2020-09-24 stsp goto done;
1238 7c0b7f42 2020-09-24 stsp }
1239 7c0b7f42 2020-09-24 stsp gotconfig_file = fopen(gotconfig_path, "a");
1240 7c0b7f42 2020-09-24 stsp if (gotconfig_file == NULL) {
1241 7c0b7f42 2020-09-24 stsp err = got_error_from_errno2("fopen", gotconfig_path);
1242 7c0b7f42 2020-09-24 stsp goto done;
1243 7c0b7f42 2020-09-24 stsp }
1244 7c0b7f42 2020-09-24 stsp if (asprintf(&gotconfig,
1245 7c0b7f42 2020-09-24 stsp "remote \"%s\" {\n"
1246 7c0b7f42 2020-09-24 stsp "\tserver %s\n"
1247 7c0b7f42 2020-09-24 stsp "\tprotocol %s\n"
1248 7c0b7f42 2020-09-24 stsp "%s%s%s"
1249 7c0b7f42 2020-09-24 stsp "\trepository \"%s\"\n"
1250 15d3c221 2021-01-05 stsp "%s%s%s"
1251 99495ddb 2021-01-10 stsp "%s%s%s"
1252 7c0b7f42 2020-09-24 stsp "%s"
1253 0c8b29c5 2021-01-05 stsp "%s"
1254 7c0b7f42 2020-09-24 stsp "}\n",
1255 7c0b7f42 2020-09-24 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, host, proto,
1256 7c0b7f42 2020-09-24 stsp port ? "\tport " : "", port ? port : "", port ? "\n" : "",
1257 132af4a5 2021-01-05 stsp remote_repo_path, branches ? "\tbranch { " : "",
1258 132af4a5 2021-01-05 stsp branches ? branches : "", branches ? "}\n" : "",
1259 99495ddb 2021-01-10 stsp refs ? "\treference { " : "", refs ? refs : "", refs ? "}\n" : "",
1260 0c8b29c5 2021-01-05 stsp mirror_references ? "\tmirror-references yes\n" : "",
1261 0c8b29c5 2021-01-05 stsp fetch_all_branches ? "\tfetch-all-branches yes\n" : "") == -1) {
1262 7c0b7f42 2020-09-24 stsp err = got_error_from_errno("asprintf");
1263 7c0b7f42 2020-09-24 stsp goto done;
1264 7c0b7f42 2020-09-24 stsp }
1265 7c0b7f42 2020-09-24 stsp n = fwrite(gotconfig, 1, strlen(gotconfig), gotconfig_file);
1266 7c0b7f42 2020-09-24 stsp if (n != strlen(gotconfig)) {
1267 7c0b7f42 2020-09-24 stsp err = got_ferror(gotconfig_file, GOT_ERR_IO);
1268 7c0b7f42 2020-09-24 stsp goto done;
1269 7c0b7f42 2020-09-24 stsp }
1270 7c0b7f42 2020-09-24 stsp
1271 7c0b7f42 2020-09-24 stsp done:
1272 7c0b7f42 2020-09-24 stsp if (gotconfig_file && fclose(gotconfig_file) == EOF && err == NULL)
1273 7c0b7f42 2020-09-24 stsp err = got_error_from_errno2("fclose", gotconfig_path);
1274 7c0b7f42 2020-09-24 stsp free(gotconfig_path);
1275 132af4a5 2021-01-05 stsp free(branches);
1276 7c0b7f42 2020-09-24 stsp return err;
1277 7c0b7f42 2020-09-24 stsp }
1278 7c0b7f42 2020-09-24 stsp
1279 7c0b7f42 2020-09-24 stsp static const struct got_error *
1280 04d9a9ec 2020-09-24 stsp create_gitconfig(const char *git_url, const char *default_branch,
1281 132af4a5 2021-01-05 stsp int fetch_all_branches, struct got_pathlist_head *wanted_branches,
1282 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_refs, int mirror_references,
1283 99495ddb 2021-01-10 stsp struct got_repository *repo)
1284 7c0b7f42 2020-09-24 stsp {
1285 7c0b7f42 2020-09-24 stsp const struct got_error *err = NULL;
1286 7c0b7f42 2020-09-24 stsp char *gitconfig_path = NULL;
1287 7c0b7f42 2020-09-24 stsp char *gitconfig = NULL;
1288 7c0b7f42 2020-09-24 stsp FILE *gitconfig_file = NULL;
1289 99495ddb 2021-01-10 stsp char *branches = NULL, *refs = NULL;
1290 56d0a753 2021-01-20 stsp const char *branchname;
1291 7c0b7f42 2020-09-24 stsp ssize_t n;
1292 7c0b7f42 2020-09-24 stsp
1293 7c0b7f42 2020-09-24 stsp /* Create a config file Git can understand. */
1294 7c0b7f42 2020-09-24 stsp gitconfig_path = got_repo_get_path_gitconfig(repo);
1295 7c0b7f42 2020-09-24 stsp if (gitconfig_path == NULL) {
1296 7c0b7f42 2020-09-24 stsp err = got_error_from_errno("got_repo_get_path_gitconfig");
1297 7c0b7f42 2020-09-24 stsp goto done;
1298 7c0b7f42 2020-09-24 stsp }
1299 7c0b7f42 2020-09-24 stsp gitconfig_file = fopen(gitconfig_path, "a");
1300 7c0b7f42 2020-09-24 stsp if (gitconfig_file == NULL) {
1301 7c0b7f42 2020-09-24 stsp err = got_error_from_errno2("fopen", gitconfig_path);
1302 7c0b7f42 2020-09-24 stsp goto done;
1303 7c0b7f42 2020-09-24 stsp }
1304 56d0a753 2021-01-20 stsp if (fetch_all_branches) {
1305 56d0a753 2021-01-20 stsp if (mirror_references) {
1306 56d0a753 2021-01-20 stsp if (asprintf(&branches,
1307 56d0a753 2021-01-20 stsp "\tfetch = refs/heads/*:refs/heads/*\n") == -1) {
1308 56d0a753 2021-01-20 stsp err = got_error_from_errno("asprintf");
1309 56d0a753 2021-01-20 stsp goto done;
1310 56d0a753 2021-01-20 stsp }
1311 56d0a753 2021-01-20 stsp } else if (asprintf(&branches,
1312 56d0a753 2021-01-20 stsp "\tfetch = refs/heads/*:refs/remotes/%s/*\n",
1313 7c0b7f42 2020-09-24 stsp GOT_FETCH_DEFAULT_REMOTE_NAME) == -1) {
1314 7c0b7f42 2020-09-24 stsp err = got_error_from_errno("asprintf");
1315 7c0b7f42 2020-09-24 stsp goto done;
1316 132af4a5 2021-01-05 stsp }
1317 132af4a5 2021-01-05 stsp } else if (!TAILQ_EMPTY(wanted_branches)) {
1318 132af4a5 2021-01-05 stsp struct got_pathlist_entry *pe;
1319 132af4a5 2021-01-05 stsp TAILQ_FOREACH(pe, wanted_branches, entry) {
1320 132af4a5 2021-01-05 stsp char *s;
1321 132af4a5 2021-01-05 stsp branchname = pe->path;
1322 132af4a5 2021-01-05 stsp if (strncmp(branchname, "refs/heads/", 11) == 0)
1323 132af4a5 2021-01-05 stsp branchname += 11;
1324 56d0a753 2021-01-20 stsp if (mirror_references) {
1325 56d0a753 2021-01-20 stsp if (asprintf(&s,
1326 56d0a753 2021-01-20 stsp "%s\tfetch = refs/heads/%s:refs/heads/%s\n",
1327 56d0a753 2021-01-20 stsp branches ? branches : "",
1328 56d0a753 2021-01-20 stsp branchname, branchname) == -1) {
1329 56d0a753 2021-01-20 stsp err = got_error_from_errno("asprintf");
1330 56d0a753 2021-01-20 stsp goto done;
1331 56d0a753 2021-01-20 stsp }
1332 56d0a753 2021-01-20 stsp } else if (asprintf(&s,
1333 56d0a753 2021-01-20 stsp "%s\tfetch = refs/heads/%s:refs/remotes/%s/%s\n",
1334 132af4a5 2021-01-05 stsp branches ? branches : "",
1335 132af4a5 2021-01-05 stsp branchname, GOT_FETCH_DEFAULT_REMOTE_NAME,
1336 132af4a5 2021-01-05 stsp branchname) == -1) {
1337 132af4a5 2021-01-05 stsp err = got_error_from_errno("asprintf");
1338 132af4a5 2021-01-05 stsp goto done;
1339 132af4a5 2021-01-05 stsp }
1340 132af4a5 2021-01-05 stsp free(branches);
1341 132af4a5 2021-01-05 stsp branches = s;
1342 7c0b7f42 2020-09-24 stsp }
1343 7c0b7f42 2020-09-24 stsp } else {
1344 7c0b7f42 2020-09-24 stsp /*
1345 7c0b7f42 2020-09-24 stsp * If the server specified a default branch, use just that one.
1346 7c0b7f42 2020-09-24 stsp * Otherwise fall back to fetching all branches on next fetch.
1347 7c0b7f42 2020-09-24 stsp */
1348 04d9a9ec 2020-09-24 stsp if (default_branch) {
1349 04d9a9ec 2020-09-24 stsp branchname = default_branch;
1350 7c0b7f42 2020-09-24 stsp if (strncmp(branchname, "refs/heads/", 11) == 0)
1351 7c0b7f42 2020-09-24 stsp branchname += 11;
1352 7c0b7f42 2020-09-24 stsp } else
1353 7c0b7f42 2020-09-24 stsp branchname = "*"; /* fall back to all branches */
1354 56d0a753 2021-01-20 stsp if (mirror_references) {
1355 56d0a753 2021-01-20 stsp if (asprintf(&branches,
1356 56d0a753 2021-01-20 stsp "\tfetch = refs/heads/%s:refs/heads/%s\n",
1357 56d0a753 2021-01-20 stsp branchname, branchname) == -1) {
1358 56d0a753 2021-01-20 stsp err = got_error_from_errno("asprintf");
1359 56d0a753 2021-01-20 stsp goto done;
1360 56d0a753 2021-01-20 stsp }
1361 56d0a753 2021-01-20 stsp } else if (asprintf(&branches,
1362 56d0a753 2021-01-20 stsp "\tfetch = refs/heads/%s:refs/remotes/%s/%s\n",
1363 7c0b7f42 2020-09-24 stsp branchname, GOT_FETCH_DEFAULT_REMOTE_NAME,
1364 7c0b7f42 2020-09-24 stsp branchname) == -1) {
1365 7c0b7f42 2020-09-24 stsp err = got_error_from_errno("asprintf");
1366 7c0b7f42 2020-09-24 stsp goto done;
1367 99495ddb 2021-01-10 stsp }
1368 99495ddb 2021-01-10 stsp }
1369 56d0a753 2021-01-20 stsp if (!TAILQ_EMPTY(wanted_refs)) {
1370 99495ddb 2021-01-10 stsp struct got_pathlist_entry *pe;
1371 99495ddb 2021-01-10 stsp TAILQ_FOREACH(pe, wanted_refs, entry) {
1372 99495ddb 2021-01-10 stsp char *s;
1373 99495ddb 2021-01-10 stsp const char *refname = pe->path;
1374 99495ddb 2021-01-10 stsp if (strncmp(refname, "refs/", 5) == 0)
1375 99495ddb 2021-01-10 stsp refname += 5;
1376 56d0a753 2021-01-20 stsp if (mirror_references) {
1377 56d0a753 2021-01-20 stsp if (asprintf(&s,
1378 56d0a753 2021-01-20 stsp "%s\tfetch = refs/%s:refs/%s\n",
1379 56d0a753 2021-01-20 stsp refs ? refs : "", refname, refname) == -1) {
1380 56d0a753 2021-01-20 stsp err = got_error_from_errno("asprintf");
1381 56d0a753 2021-01-20 stsp goto done;
1382 56d0a753 2021-01-20 stsp }
1383 56d0a753 2021-01-20 stsp } else if (asprintf(&s,
1384 56d0a753 2021-01-20 stsp "%s\tfetch = refs/%s:refs/remotes/%s/%s\n",
1385 99495ddb 2021-01-10 stsp refs ? refs : "",
1386 99495ddb 2021-01-10 stsp refname, GOT_FETCH_DEFAULT_REMOTE_NAME,
1387 99495ddb 2021-01-10 stsp refname) == -1) {
1388 99495ddb 2021-01-10 stsp err = got_error_from_errno("asprintf");
1389 99495ddb 2021-01-10 stsp goto done;
1390 99495ddb 2021-01-10 stsp }
1391 99495ddb 2021-01-10 stsp free(refs);
1392 99495ddb 2021-01-10 stsp refs = s;
1393 7c0b7f42 2020-09-24 stsp }
1394 132af4a5 2021-01-05 stsp }
1395 99495ddb 2021-01-10 stsp
1396 132af4a5 2021-01-05 stsp if (asprintf(&gitconfig,
1397 132af4a5 2021-01-05 stsp "[remote \"%s\"]\n"
1398 132af4a5 2021-01-05 stsp "\turl = %s\n"
1399 132af4a5 2021-01-05 stsp "%s"
1400 99495ddb 2021-01-10 stsp "%s"
1401 56d0a753 2021-01-20 stsp "\tfetch = refs/tags/*:refs/tags/*\n",
1402 132af4a5 2021-01-05 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, git_url, branches ? branches : "",
1403 56d0a753 2021-01-20 stsp refs ? refs : "") == -1) {
1404 132af4a5 2021-01-05 stsp err = got_error_from_errno("asprintf");
1405 132af4a5 2021-01-05 stsp goto done;
1406 7c0b7f42 2020-09-24 stsp }
1407 7c0b7f42 2020-09-24 stsp n = fwrite(gitconfig, 1, strlen(gitconfig), gitconfig_file);
1408 7c0b7f42 2020-09-24 stsp if (n != strlen(gitconfig)) {
1409 7c0b7f42 2020-09-24 stsp err = got_ferror(gitconfig_file, GOT_ERR_IO);
1410 7c0b7f42 2020-09-24 stsp goto done;
1411 7c0b7f42 2020-09-24 stsp }
1412 7c0b7f42 2020-09-24 stsp done:
1413 7c0b7f42 2020-09-24 stsp if (gitconfig_file && fclose(gitconfig_file) == EOF && err == NULL)
1414 7c0b7f42 2020-09-24 stsp err = got_error_from_errno2("fclose", gitconfig_path);
1415 7c0b7f42 2020-09-24 stsp free(gitconfig_path);
1416 132af4a5 2021-01-05 stsp free(branches);
1417 0e4002ca 2020-03-21 stsp return err;
1418 0e4002ca 2020-03-21 stsp }
1419 0e4002ca 2020-03-21 stsp
1420 0e4002ca 2020-03-21 stsp static const struct got_error *
1421 04d9a9ec 2020-09-24 stsp create_config_files(const char *proto, const char *host, const char *port,
1422 04d9a9ec 2020-09-24 stsp const char *remote_repo_path, const char *git_url, int fetch_all_branches,
1423 04d9a9ec 2020-09-24 stsp int mirror_references, struct got_pathlist_head *symrefs,
1424 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_branches,
1425 99495ddb 2021-01-10 stsp struct got_pathlist_head *wanted_refs, struct got_repository *repo)
1426 04d9a9ec 2020-09-24 stsp {
1427 04d9a9ec 2020-09-24 stsp const struct got_error *err = NULL;
1428 04d9a9ec 2020-09-24 stsp const char *default_branch = NULL;
1429 04d9a9ec 2020-09-24 stsp struct got_pathlist_entry *pe;
1430 04d9a9ec 2020-09-24 stsp
1431 04d9a9ec 2020-09-24 stsp /*
1432 04d9a9ec 2020-09-24 stsp * If we asked for a set of wanted branches then use the first
1433 04d9a9ec 2020-09-24 stsp * one of those.
1434 04d9a9ec 2020-09-24 stsp */
1435 62d463ca 2020-10-20 naddy if (!TAILQ_EMPTY(wanted_branches)) {
1436 04d9a9ec 2020-09-24 stsp pe = TAILQ_FIRST(wanted_branches);
1437 04d9a9ec 2020-09-24 stsp default_branch = pe->path;
1438 04d9a9ec 2020-09-24 stsp } else {
1439 04d9a9ec 2020-09-24 stsp /* First HEAD ref listed by server is the default branch. */
1440 04d9a9ec 2020-09-24 stsp TAILQ_FOREACH(pe, symrefs, entry) {
1441 04d9a9ec 2020-09-24 stsp const char *refname = pe->path;
1442 04d9a9ec 2020-09-24 stsp const char *target = pe->data;
1443 04d9a9ec 2020-09-24 stsp
1444 04d9a9ec 2020-09-24 stsp if (strcmp(refname, GOT_REF_HEAD) != 0)
1445 04d9a9ec 2020-09-24 stsp continue;
1446 04d9a9ec 2020-09-24 stsp
1447 04d9a9ec 2020-09-24 stsp default_branch = target;
1448 04d9a9ec 2020-09-24 stsp break;
1449 04d9a9ec 2020-09-24 stsp }
1450 04d9a9ec 2020-09-24 stsp }
1451 04d9a9ec 2020-09-24 stsp
1452 04d9a9ec 2020-09-24 stsp /* Create got.conf(5). */
1453 04d9a9ec 2020-09-24 stsp err = create_gotconfig(proto, host, port, remote_repo_path,
1454 0c8b29c5 2021-01-05 stsp default_branch, fetch_all_branches, wanted_branches,
1455 99495ddb 2021-01-10 stsp wanted_refs, mirror_references, repo);
1456 04d9a9ec 2020-09-24 stsp if (err)
1457 04d9a9ec 2020-09-24 stsp return err;
1458 04d9a9ec 2020-09-24 stsp
1459 04d9a9ec 2020-09-24 stsp /* Create a config file Git can understand. */
1460 04d9a9ec 2020-09-24 stsp return create_gitconfig(git_url, default_branch, fetch_all_branches,
1461 99495ddb 2021-01-10 stsp wanted_branches, wanted_refs, mirror_references, repo);
1462 04d9a9ec 2020-09-24 stsp }
1463 04d9a9ec 2020-09-24 stsp
1464 04d9a9ec 2020-09-24 stsp static const struct got_error *
1465 93658fb9 2020-03-18 stsp cmd_clone(int argc, char *argv[])
1466 93658fb9 2020-03-18 stsp {
1467 39c64a6a 2020-03-18 stsp const struct got_error *error = NULL;
1468 9df6f38b 2020-03-18 stsp const char *uri, *dirname;
1469 09838ffc 2020-03-18 stsp char *proto, *host, *port, *repo_name, *server_path;
1470 d9b4d0c0 2020-03-18 stsp char *default_destdir = NULL, *id_str = NULL;
1471 a9c2d4c2 2020-09-24 stsp const char *repo_path;
1472 bb64b798 2020-03-18 stsp struct got_repository *repo = NULL;
1473 0e4002ca 2020-03-21 stsp struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
1474 d9b4d0c0 2020-03-18 stsp struct got_pathlist_entry *pe;
1475 d9b4d0c0 2020-03-18 stsp struct got_object_id *pack_hash = NULL;
1476 9c52365f 2020-03-21 stsp int ch, fetchfd = -1, fetchstatus;
1477 9c52365f 2020-03-21 stsp pid_t fetchpid = -1;
1478 892ac3b6 2020-03-18 stsp struct got_fetch_progress_arg fpa;
1479 b46f3e71 2020-03-18 stsp char *git_url = NULL;
1480 659e7fbd 2020-03-20 stsp int verbosity = 0, fetch_all_branches = 0, mirror_references = 0;
1481 41b0de12 2020-03-21 stsp int list_refs_only = 0;
1482 93658fb9 2020-03-18 stsp
1483 d9b4d0c0 2020-03-18 stsp TAILQ_INIT(&refs);
1484 d9b4d0c0 2020-03-18 stsp TAILQ_INIT(&symrefs);
1485 4ba14133 2020-03-20 stsp TAILQ_INIT(&wanted_branches);
1486 0e4002ca 2020-03-21 stsp TAILQ_INIT(&wanted_refs);
1487 d9b4d0c0 2020-03-18 stsp
1488 0e4002ca 2020-03-21 stsp while ((ch = getopt(argc, argv, "ab:lmvqR:")) != -1) {
1489 93658fb9 2020-03-18 stsp switch (ch) {
1490 659e7fbd 2020-03-20 stsp case 'a':
1491 659e7fbd 2020-03-20 stsp fetch_all_branches = 1;
1492 4ba14133 2020-03-20 stsp break;
1493 4ba14133 2020-03-20 stsp case 'b':
1494 4ba14133 2020-03-20 stsp error = got_pathlist_append(&wanted_branches,
1495 4ba14133 2020-03-20 stsp optarg, NULL);
1496 4ba14133 2020-03-20 stsp if (error)
1497 4ba14133 2020-03-20 stsp return error;
1498 659e7fbd 2020-03-20 stsp break;
1499 41b0de12 2020-03-21 stsp case 'l':
1500 41b0de12 2020-03-21 stsp list_refs_only = 1;
1501 41b0de12 2020-03-21 stsp break;
1502 469dd726 2020-03-20 stsp case 'm':
1503 469dd726 2020-03-20 stsp mirror_references = 1;
1504 469dd726 2020-03-20 stsp break;
1505 68999b92 2020-03-18 stsp case 'v':
1506 68999b92 2020-03-18 stsp if (verbosity < 0)
1507 68999b92 2020-03-18 stsp verbosity = 0;
1508 68999b92 2020-03-18 stsp else if (verbosity < 3)
1509 68999b92 2020-03-18 stsp verbosity++;
1510 68999b92 2020-03-18 stsp break;
1511 68999b92 2020-03-18 stsp case 'q':
1512 68999b92 2020-03-18 stsp verbosity = -1;
1513 68999b92 2020-03-18 stsp break;
1514 0e4002ca 2020-03-21 stsp case 'R':
1515 0e4002ca 2020-03-21 stsp error = got_pathlist_append(&wanted_refs,
1516 0e4002ca 2020-03-21 stsp optarg, NULL);
1517 0e4002ca 2020-03-21 stsp if (error)
1518 0e4002ca 2020-03-21 stsp return error;
1519 0e4002ca 2020-03-21 stsp break;
1520 93658fb9 2020-03-18 stsp default:
1521 93658fb9 2020-03-18 stsp usage_clone();
1522 93658fb9 2020-03-18 stsp break;
1523 93658fb9 2020-03-18 stsp }
1524 93658fb9 2020-03-18 stsp }
1525 93658fb9 2020-03-18 stsp argc -= optind;
1526 93658fb9 2020-03-18 stsp argv += optind;
1527 39c64a6a 2020-03-18 stsp
1528 4ba14133 2020-03-20 stsp if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
1529 ff69268e 2020-12-13 stsp option_conflict('a', 'b');
1530 41b0de12 2020-03-21 stsp if (list_refs_only) {
1531 41b0de12 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_branches))
1532 ff69268e 2020-12-13 stsp option_conflict('l', 'b');
1533 41b0de12 2020-03-21 stsp if (fetch_all_branches)
1534 ff69268e 2020-12-13 stsp option_conflict('l', 'a');
1535 41b0de12 2020-03-21 stsp if (mirror_references)
1536 ff69268e 2020-12-13 stsp option_conflict('l', 'm');
1537 0e4002ca 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_refs))
1538 ff69268e 2020-12-13 stsp option_conflict('l', 'R');
1539 41b0de12 2020-03-21 stsp }
1540 4ba14133 2020-03-20 stsp
1541 93658fb9 2020-03-18 stsp uri = argv[0];
1542 9df6f38b 2020-03-18 stsp
1543 9df6f38b 2020-03-18 stsp if (argc == 1)
1544 93658fb9 2020-03-18 stsp dirname = NULL;
1545 9df6f38b 2020-03-18 stsp else if (argc == 2)
1546 93658fb9 2020-03-18 stsp dirname = argv[1];
1547 93658fb9 2020-03-18 stsp else
1548 93658fb9 2020-03-18 stsp usage_clone();
1549 09838ffc 2020-03-18 stsp
1550 5e5da8c4 2021-09-05 stsp error = got_dial_parse_uri(&proto, &host, &port, &server_path,
1551 4dbec0a8 2020-08-27 stsp &repo_name, uri);
1552 39c64a6a 2020-03-18 stsp if (error)
1553 09f63084 2020-03-20 stsp goto done;
1554 09f63084 2020-03-20 stsp
1555 09f63084 2020-03-20 stsp if (asprintf(&git_url, "%s://%s%s%s%s%s", proto,
1556 09f63084 2020-03-20 stsp host, port ? ":" : "", port ? port : "",
1557 09f63084 2020-03-20 stsp server_path[0] != '/' ? "/" : "", server_path) == -1) {
1558 09f63084 2020-03-20 stsp error = got_error_from_errno("asprintf");
1559 09838ffc 2020-03-18 stsp goto done;
1560 09f63084 2020-03-20 stsp }
1561 09838ffc 2020-03-18 stsp
1562 39c64a6a 2020-03-18 stsp if (strcmp(proto, "git") == 0) {
1563 b46f3e71 2020-03-18 stsp #ifndef PROFILE
1564 39c64a6a 2020-03-18 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1565 39c64a6a 2020-03-18 stsp "sendfd dns inet unveil", NULL) == -1)
1566 39c64a6a 2020-03-18 stsp err(1, "pledge");
1567 b46f3e71 2020-03-18 stsp #endif
1568 39c64a6a 2020-03-18 stsp } else if (strcmp(proto, "git+ssh") == 0 ||
1569 39c64a6a 2020-03-18 stsp strcmp(proto, "ssh") == 0) {
1570 b46f3e71 2020-03-18 stsp #ifndef PROFILE
1571 39c64a6a 2020-03-18 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1572 39c64a6a 2020-03-18 stsp "sendfd unveil", NULL) == -1)
1573 39c64a6a 2020-03-18 stsp err(1, "pledge");
1574 b46f3e71 2020-03-18 stsp #endif
1575 39c64a6a 2020-03-18 stsp } else if (strcmp(proto, "http") == 0 ||
1576 39c64a6a 2020-03-18 stsp strcmp(proto, "git+http") == 0) {
1577 39c64a6a 2020-03-18 stsp error = got_error_path(proto, GOT_ERR_NOT_IMPL);
1578 39c64a6a 2020-03-18 stsp goto done;
1579 39c64a6a 2020-03-18 stsp } else {
1580 39c64a6a 2020-03-18 stsp error = got_error_path(proto, GOT_ERR_BAD_PROTO);
1581 39c64a6a 2020-03-18 stsp goto done;
1582 39c64a6a 2020-03-18 stsp }
1583 bb64b798 2020-03-18 stsp if (dirname == NULL) {
1584 bb64b798 2020-03-18 stsp if (asprintf(&default_destdir, "%s.git", repo_name) == -1) {
1585 39c64a6a 2020-03-18 stsp error = got_error_from_errno("asprintf");
1586 bb64b798 2020-03-18 stsp goto done;
1587 bb64b798 2020-03-18 stsp }
1588 bb64b798 2020-03-18 stsp repo_path = default_destdir;
1589 bb64b798 2020-03-18 stsp } else
1590 bb64b798 2020-03-18 stsp repo_path = dirname;
1591 bb64b798 2020-03-18 stsp
1592 41b0de12 2020-03-21 stsp if (!list_refs_only) {
1593 41b0de12 2020-03-21 stsp error = got_path_mkdir(repo_path);
1594 2751fe64 2020-09-24 stsp if (error &&
1595 2751fe64 2020-09-24 stsp (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
1596 2751fe64 2020-09-24 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST)))
1597 41b0de12 2020-03-21 stsp goto done;
1598 2751fe64 2020-09-24 stsp if (!got_path_dir_is_empty(repo_path)) {
1599 2751fe64 2020-09-24 stsp error = got_error_path(repo_path,
1600 2751fe64 2020-09-24 stsp GOT_ERR_DIR_NOT_EMPTY);
1601 41b0de12 2020-03-21 stsp goto done;
1602 2751fe64 2020-09-24 stsp }
1603 41b0de12 2020-03-21 stsp }
1604 bb64b798 2020-03-18 stsp
1605 d65a88a2 2021-09-05 stsp error = got_dial_apply_unveil(proto);
1606 d65a88a2 2021-09-05 stsp if (error)
1607 d65a88a2 2021-09-05 stsp goto done;
1608 d65a88a2 2021-09-05 stsp
1609 f535bcd4 2020-09-30 stsp error = apply_unveil(repo_path, 0, NULL);
1610 ee448f5f 2020-03-18 stsp if (error)
1611 ee448f5f 2020-03-18 stsp goto done;
1612 f79e6490 2020-04-19 stsp
1613 f79e6490 2020-04-19 stsp if (verbosity >= 0)
1614 f79e6490 2020-04-19 stsp printf("Connecting to %s%s%s\n", host,
1615 f79e6490 2020-04-19 stsp port ? ":" : "", port ? port : "");
1616 ee448f5f 2020-03-18 stsp
1617 9c52365f 2020-03-21 stsp error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
1618 9c52365f 2020-03-21 stsp server_path, verbosity);
1619 39c64a6a 2020-03-18 stsp if (error)
1620 bb64b798 2020-03-18 stsp goto done;
1621 bb64b798 2020-03-18 stsp
1622 2751fe64 2020-09-24 stsp if (!list_refs_only) {
1623 2751fe64 2020-09-24 stsp error = got_repo_init(repo_path);
1624 2751fe64 2020-09-24 stsp if (error)
1625 2751fe64 2020-09-24 stsp goto done;
1626 2751fe64 2020-09-24 stsp error = got_repo_open(&repo, repo_path, NULL);
1627 2751fe64 2020-09-24 stsp if (error)
1628 2751fe64 2020-09-24 stsp goto done;
1629 2751fe64 2020-09-24 stsp }
1630 2751fe64 2020-09-24 stsp
1631 892ac3b6 2020-03-18 stsp fpa.last_scaled_size[0] = '\0';
1632 892ac3b6 2020-03-18 stsp fpa.last_p_indexed = -1;
1633 892ac3b6 2020-03-18 stsp fpa.last_p_resolved = -1;
1634 68999b92 2020-03-18 stsp fpa.verbosity = verbosity;
1635 04d9a9ec 2020-09-24 stsp fpa.create_configs = 1;
1636 04d9a9ec 2020-09-24 stsp fpa.configs_created = 0;
1637 04d9a9ec 2020-09-24 stsp fpa.repo = repo;
1638 04d9a9ec 2020-09-24 stsp fpa.config_info.symrefs = &symrefs;
1639 04d9a9ec 2020-09-24 stsp fpa.config_info.wanted_branches = &wanted_branches;
1640 99495ddb 2021-01-10 stsp fpa.config_info.wanted_refs = &wanted_refs;
1641 04d9a9ec 2020-09-24 stsp fpa.config_info.proto = proto;
1642 04d9a9ec 2020-09-24 stsp fpa.config_info.host = host;
1643 04d9a9ec 2020-09-24 stsp fpa.config_info.port = port;
1644 04d9a9ec 2020-09-24 stsp fpa.config_info.remote_repo_path = server_path;
1645 04d9a9ec 2020-09-24 stsp fpa.config_info.git_url = git_url;
1646 04d9a9ec 2020-09-24 stsp fpa.config_info.fetch_all_branches = fetch_all_branches;
1647 04d9a9ec 2020-09-24 stsp fpa.config_info.mirror_references = mirror_references;
1648 7848a0e1 2020-03-19 stsp error = got_fetch_pack(&pack_hash, &refs, &symrefs,
1649 469dd726 2020-03-20 stsp GOT_FETCH_DEFAULT_REMOTE_NAME, mirror_references,
1650 0e4002ca 2020-03-21 stsp fetch_all_branches, &wanted_branches, &wanted_refs,
1651 0e4002ca 2020-03-21 stsp list_refs_only, verbosity, fetchfd, repo,
1652 0e4002ca 2020-03-21 stsp fetch_progress, &fpa);
1653 39c64a6a 2020-03-18 stsp if (error)
1654 d9b4d0c0 2020-03-18 stsp goto done;
1655 d9b4d0c0 2020-03-18 stsp
1656 41b0de12 2020-03-21 stsp if (list_refs_only) {
1657 41b0de12 2020-03-21 stsp error = list_remote_refs(&symrefs, &refs);
1658 41b0de12 2020-03-21 stsp goto done;
1659 41b0de12 2020-03-21 stsp }
1660 41b0de12 2020-03-21 stsp
1661 39c64a6a 2020-03-18 stsp error = got_object_id_str(&id_str, pack_hash);
1662 39c64a6a 2020-03-18 stsp if (error)
1663 d9b4d0c0 2020-03-18 stsp goto done;
1664 68999b92 2020-03-18 stsp if (verbosity >= 0)
1665 e69674d8 2020-03-19 stsp printf("\nFetched %s.pack\n", id_str);
1666 d9b4d0c0 2020-03-18 stsp free(id_str);
1667 d9b4d0c0 2020-03-18 stsp
1668 d9b4d0c0 2020-03-18 stsp /* Set up references provided with the pack file. */
1669 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &refs, entry) {
1670 d9b4d0c0 2020-03-18 stsp const char *refname = pe->path;
1671 d9b4d0c0 2020-03-18 stsp struct got_object_id *id = pe->data;
1672 7ebc0570 2020-03-18 stsp char *remote_refname;
1673 0e4002ca 2020-03-21 stsp
1674 0e4002ca 2020-03-21 stsp if (is_wanted_ref(&wanted_refs, refname) &&
1675 0e4002ca 2020-03-21 stsp !mirror_references) {
1676 0e4002ca 2020-03-21 stsp error = create_wanted_ref(refname, id,
1677 0e4002ca 2020-03-21 stsp GOT_FETCH_DEFAULT_REMOTE_NAME,
1678 0e4002ca 2020-03-21 stsp verbosity - 1, repo);
1679 0e4002ca 2020-03-21 stsp if (error)
1680 0e4002ca 2020-03-21 stsp goto done;
1681 0e4002ca 2020-03-21 stsp continue;
1682 0e4002ca 2020-03-21 stsp }
1683 668a20f6 2020-03-18 stsp
1684 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity - 1, repo);
1685 39c64a6a 2020-03-18 stsp if (error)
1686 d9b4d0c0 2020-03-18 stsp goto done;
1687 d9b4d0c0 2020-03-18 stsp
1688 469dd726 2020-03-20 stsp if (mirror_references)
1689 469dd726 2020-03-20 stsp continue;
1690 469dd726 2020-03-20 stsp
1691 7ebc0570 2020-03-18 stsp if (strncmp("refs/heads/", refname, 11) != 0)
1692 7ebc0570 2020-03-18 stsp continue;
1693 7ebc0570 2020-03-18 stsp
1694 7ebc0570 2020-03-18 stsp if (asprintf(&remote_refname,
1695 7ebc0570 2020-03-18 stsp "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1696 7ebc0570 2020-03-18 stsp refname + 11) == -1) {
1697 7ebc0570 2020-03-18 stsp error = got_error_from_errno("asprintf");
1698 7ebc0570 2020-03-18 stsp goto done;
1699 7ebc0570 2020-03-18 stsp }
1700 6338a6a1 2020-03-21 stsp error = create_ref(remote_refname, id, verbosity - 1, repo);
1701 f298ae0f 2020-03-25 stsp free(remote_refname);
1702 39c64a6a 2020-03-18 stsp if (error)
1703 d9b4d0c0 2020-03-18 stsp goto done;
1704 d9b4d0c0 2020-03-18 stsp }
1705 d9b4d0c0 2020-03-18 stsp
1706 d9b4d0c0 2020-03-18 stsp /* Set the HEAD reference if the server provided one. */
1707 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
1708 659e7fbd 2020-03-20 stsp struct got_reference *target_ref;
1709 d9b4d0c0 2020-03-18 stsp const char *refname = pe->path;
1710 d9b4d0c0 2020-03-18 stsp const char *target = pe->data;
1711 f298ae0f 2020-03-25 stsp char *remote_refname = NULL, *remote_target = NULL;
1712 d9b4d0c0 2020-03-18 stsp
1713 d9b4d0c0 2020-03-18 stsp if (strcmp(refname, GOT_REF_HEAD) != 0)
1714 d9b4d0c0 2020-03-18 stsp continue;
1715 d9b4d0c0 2020-03-18 stsp
1716 39c64a6a 2020-03-18 stsp error = got_ref_open(&target_ref, repo, target, 0);
1717 39c64a6a 2020-03-18 stsp if (error) {
1718 55330abe 2020-03-20 stsp if (error->code == GOT_ERR_NOT_REF) {
1719 55330abe 2020-03-20 stsp error = NULL;
1720 d9b4d0c0 2020-03-18 stsp continue;
1721 55330abe 2020-03-20 stsp }
1722 d9b4d0c0 2020-03-18 stsp goto done;
1723 d9b4d0c0 2020-03-18 stsp }
1724 d9b4d0c0 2020-03-18 stsp
1725 04d9a9ec 2020-09-24 stsp error = create_symref(refname, target_ref, verbosity, repo);
1726 f298ae0f 2020-03-25 stsp got_ref_close(target_ref);
1727 f298ae0f 2020-03-25 stsp if (error)
1728 f298ae0f 2020-03-25 stsp goto done;
1729 f298ae0f 2020-03-25 stsp
1730 f298ae0f 2020-03-25 stsp if (mirror_references)
1731 f298ae0f 2020-03-25 stsp continue;
1732 f298ae0f 2020-03-25 stsp
1733 f298ae0f 2020-03-25 stsp if (strncmp("refs/heads/", target, 11) != 0)
1734 f298ae0f 2020-03-25 stsp continue;
1735 f298ae0f 2020-03-25 stsp
1736 f298ae0f 2020-03-25 stsp if (asprintf(&remote_refname,
1737 f298ae0f 2020-03-25 stsp "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1738 f298ae0f 2020-03-25 stsp refname) == -1) {
1739 f298ae0f 2020-03-25 stsp error = got_error_from_errno("asprintf");
1740 f298ae0f 2020-03-25 stsp goto done;
1741 f298ae0f 2020-03-25 stsp }
1742 f298ae0f 2020-03-25 stsp if (asprintf(&remote_target,
1743 f298ae0f 2020-03-25 stsp "refs/remotes/%s/%s", GOT_FETCH_DEFAULT_REMOTE_NAME,
1744 f298ae0f 2020-03-25 stsp target + 11) == -1) {
1745 f298ae0f 2020-03-25 stsp error = got_error_from_errno("asprintf");
1746 f298ae0f 2020-03-25 stsp free(remote_refname);
1747 f298ae0f 2020-03-25 stsp goto done;
1748 f298ae0f 2020-03-25 stsp }
1749 f298ae0f 2020-03-25 stsp error = got_ref_open(&target_ref, repo, remote_target, 0);
1750 f298ae0f 2020-03-25 stsp if (error) {
1751 f298ae0f 2020-03-25 stsp free(remote_refname);
1752 f298ae0f 2020-03-25 stsp free(remote_target);
1753 f298ae0f 2020-03-25 stsp if (error->code == GOT_ERR_NOT_REF) {
1754 f298ae0f 2020-03-25 stsp error = NULL;
1755 f298ae0f 2020-03-25 stsp continue;
1756 f298ae0f 2020-03-25 stsp }
1757 f298ae0f 2020-03-25 stsp goto done;
1758 f298ae0f 2020-03-25 stsp }
1759 04d9a9ec 2020-09-24 stsp error = create_symref(remote_refname, target_ref,
1760 04d9a9ec 2020-09-24 stsp verbosity - 1, repo);
1761 f298ae0f 2020-03-25 stsp free(remote_refname);
1762 f298ae0f 2020-03-25 stsp free(remote_target);
1763 d9b4d0c0 2020-03-18 stsp got_ref_close(target_ref);
1764 39c64a6a 2020-03-18 stsp if (error)
1765 d9b4d0c0 2020-03-18 stsp goto done;
1766 4ba14133 2020-03-20 stsp }
1767 4ba14133 2020-03-20 stsp if (pe == NULL) {
1768 4ba14133 2020-03-20 stsp /*
1769 4ba14133 2020-03-20 stsp * We failed to set the HEAD reference. If we asked for
1770 4ba14133 2020-03-20 stsp * a set of wanted branches use the first of one of those
1771 4ba14133 2020-03-20 stsp * which could be fetched instead.
1772 4ba14133 2020-03-20 stsp */
1773 62d463ca 2020-10-20 naddy TAILQ_FOREACH(pe, &wanted_branches, entry) {
1774 4ba14133 2020-03-20 stsp const char *target = pe->path;
1775 4ba14133 2020-03-20 stsp struct got_reference *target_ref;
1776 d9b4d0c0 2020-03-18 stsp
1777 4ba14133 2020-03-20 stsp error = got_ref_open(&target_ref, repo, target, 0);
1778 4ba14133 2020-03-20 stsp if (error) {
1779 4ba14133 2020-03-20 stsp if (error->code == GOT_ERR_NOT_REF) {
1780 4ba14133 2020-03-20 stsp error = NULL;
1781 4ba14133 2020-03-20 stsp continue;
1782 4ba14133 2020-03-20 stsp }
1783 4ba14133 2020-03-20 stsp goto done;
1784 4ba14133 2020-03-20 stsp }
1785 4ba14133 2020-03-20 stsp
1786 04d9a9ec 2020-09-24 stsp error = create_symref(GOT_REF_HEAD, target_ref,
1787 04d9a9ec 2020-09-24 stsp verbosity, repo);
1788 4ba14133 2020-03-20 stsp got_ref_close(target_ref);
1789 4ba14133 2020-03-20 stsp if (error)
1790 4ba14133 2020-03-20 stsp goto done;
1791 4ba14133 2020-03-20 stsp break;
1792 4ba14133 2020-03-20 stsp }
1793 659e7fbd 2020-03-20 stsp }
1794 659e7fbd 2020-03-20 stsp
1795 d715f13e 2020-03-19 stsp if (verbosity >= 0)
1796 469dd726 2020-03-20 stsp printf("Created %s repository '%s'\n",
1797 469dd726 2020-03-20 stsp mirror_references ? "mirrored" : "cloned", repo_path);
1798 09838ffc 2020-03-18 stsp done:
1799 9c52365f 2020-03-21 stsp if (fetchpid > 0) {
1800 9c52365f 2020-03-21 stsp if (kill(fetchpid, SIGTERM) == -1)
1801 9c52365f 2020-03-21 stsp error = got_error_from_errno("kill");
1802 9c52365f 2020-03-21 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
1803 9c52365f 2020-03-21 stsp error = got_error_from_errno("waitpid");
1804 9c52365f 2020-03-21 stsp }
1805 39c64a6a 2020-03-18 stsp if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
1806 39c64a6a 2020-03-18 stsp error = got_error_from_errno("close");
1807 1d0f4054 2021-06-17 stsp if (repo) {
1808 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
1809 1d0f4054 2021-06-17 stsp if (error == NULL)
1810 1d0f4054 2021-06-17 stsp error = close_err;
1811 1d0f4054 2021-06-17 stsp }
1812 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &refs, entry) {
1813 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
1814 d9b4d0c0 2020-03-18 stsp free(pe->data);
1815 d9b4d0c0 2020-03-18 stsp }
1816 d9b4d0c0 2020-03-18 stsp got_pathlist_free(&refs);
1817 d9b4d0c0 2020-03-18 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
1818 d9b4d0c0 2020-03-18 stsp free((void *)pe->path);
1819 d9b4d0c0 2020-03-18 stsp free(pe->data);
1820 d9b4d0c0 2020-03-18 stsp }
1821 d9b4d0c0 2020-03-18 stsp got_pathlist_free(&symrefs);
1822 4ba14133 2020-03-20 stsp got_pathlist_free(&wanted_branches);
1823 0e4002ca 2020-03-21 stsp got_pathlist_free(&wanted_refs);
1824 d9b4d0c0 2020-03-18 stsp free(pack_hash);
1825 09838ffc 2020-03-18 stsp free(proto);
1826 09838ffc 2020-03-18 stsp free(host);
1827 09838ffc 2020-03-18 stsp free(port);
1828 09838ffc 2020-03-18 stsp free(server_path);
1829 09838ffc 2020-03-18 stsp free(repo_name);
1830 bb64b798 2020-03-18 stsp free(default_destdir);
1831 b46f3e71 2020-03-18 stsp free(git_url);
1832 39c64a6a 2020-03-18 stsp return error;
1833 7848a0e1 2020-03-19 stsp }
1834 7848a0e1 2020-03-19 stsp
1835 7848a0e1 2020-03-19 stsp static const struct got_error *
1836 7848a0e1 2020-03-19 stsp update_ref(struct got_reference *ref, struct got_object_id *new_id,
1837 db6d8ad8 2020-03-21 stsp int replace_tags, int verbosity, struct got_repository *repo)
1838 7848a0e1 2020-03-19 stsp {
1839 7848a0e1 2020-03-19 stsp const struct got_error *err = NULL;
1840 7848a0e1 2020-03-19 stsp char *new_id_str = NULL;
1841 7848a0e1 2020-03-19 stsp struct got_object_id *old_id = NULL;
1842 7848a0e1 2020-03-19 stsp
1843 7848a0e1 2020-03-19 stsp err = got_object_id_str(&new_id_str, new_id);
1844 7848a0e1 2020-03-19 stsp if (err)
1845 7848a0e1 2020-03-19 stsp goto done;
1846 7848a0e1 2020-03-19 stsp
1847 db6d8ad8 2020-03-21 stsp if (!replace_tags &&
1848 db6d8ad8 2020-03-21 stsp strncmp(got_ref_get_name(ref), "refs/tags/", 10) == 0) {
1849 88609724 2020-03-21 stsp err = got_ref_resolve(&old_id, repo, ref);
1850 88609724 2020-03-21 stsp if (err)
1851 88609724 2020-03-21 stsp goto done;
1852 88609724 2020-03-21 stsp if (got_object_id_cmp(old_id, new_id) == 0)
1853 88609724 2020-03-21 stsp goto done;
1854 db6d8ad8 2020-03-21 stsp if (verbosity >= 0) {
1855 db6d8ad8 2020-03-21 stsp printf("Rejecting update of existing tag %s: %s\n",
1856 db6d8ad8 2020-03-21 stsp got_ref_get_name(ref), new_id_str);
1857 db6d8ad8 2020-03-21 stsp }
1858 db6d8ad8 2020-03-21 stsp goto done;
1859 db6d8ad8 2020-03-21 stsp }
1860 db6d8ad8 2020-03-21 stsp
1861 7848a0e1 2020-03-19 stsp if (got_ref_is_symbolic(ref)) {
1862 688f11b3 2020-03-21 stsp if (verbosity >= 0) {
1863 e8a967e0 2020-03-21 stsp printf("Replacing reference %s: %s\n",
1864 6338a6a1 2020-03-21 stsp got_ref_get_name(ref),
1865 6338a6a1 2020-03-21 stsp got_ref_get_symref_target(ref));
1866 688f11b3 2020-03-21 stsp }
1867 e8a967e0 2020-03-21 stsp err = got_ref_change_symref_to_ref(ref, new_id);
1868 7848a0e1 2020-03-19 stsp if (err)
1869 7848a0e1 2020-03-19 stsp goto done;
1870 e8a967e0 2020-03-21 stsp err = got_ref_write(ref, repo);
1871 e8a967e0 2020-03-21 stsp if (err)
1872 e8a967e0 2020-03-21 stsp goto done;
1873 7848a0e1 2020-03-19 stsp } else {
1874 7848a0e1 2020-03-19 stsp err = got_ref_resolve(&old_id, repo, ref);
1875 7848a0e1 2020-03-19 stsp if (err)
1876 7848a0e1 2020-03-19 stsp goto done;
1877 6338a6a1 2020-03-21 stsp if (got_object_id_cmp(old_id, new_id) == 0)
1878 6338a6a1 2020-03-21 stsp goto done;
1879 6338a6a1 2020-03-21 stsp
1880 6338a6a1 2020-03-21 stsp err = got_ref_change_ref(ref, new_id);
1881 6338a6a1 2020-03-21 stsp if (err)
1882 6338a6a1 2020-03-21 stsp goto done;
1883 6338a6a1 2020-03-21 stsp err = got_ref_write(ref, repo);
1884 6338a6a1 2020-03-21 stsp if (err)
1885 6338a6a1 2020-03-21 stsp goto done;
1886 7848a0e1 2020-03-19 stsp }
1887 6338a6a1 2020-03-21 stsp
1888 6338a6a1 2020-03-21 stsp if (verbosity >= 0)
1889 f4d0e3fb 2020-05-15 stsp printf("Updated %s: %s\n", got_ref_get_name(ref),
1890 6338a6a1 2020-03-21 stsp new_id_str);
1891 7848a0e1 2020-03-19 stsp done:
1892 7848a0e1 2020-03-19 stsp free(old_id);
1893 7848a0e1 2020-03-19 stsp free(new_id_str);
1894 7848a0e1 2020-03-19 stsp return err;
1895 2ab43947 2020-03-18 stsp }
1896 f1bcca34 2020-03-25 stsp
1897 f1bcca34 2020-03-25 stsp static const struct got_error *
1898 f1bcca34 2020-03-25 stsp update_symref(const char *refname, struct got_reference *target_ref,
1899 f1bcca34 2020-03-25 stsp int verbosity, struct got_repository *repo)
1900 f1bcca34 2020-03-25 stsp {
1901 f1bcca34 2020-03-25 stsp const struct got_error *err = NULL, *unlock_err;
1902 f1bcca34 2020-03-25 stsp struct got_reference *symref;
1903 bcf34b0e 2020-03-26 stsp int symref_is_locked = 0;
1904 f1bcca34 2020-03-25 stsp
1905 f1bcca34 2020-03-25 stsp err = got_ref_open(&symref, repo, refname, 1);
1906 bcf34b0e 2020-03-26 stsp if (err) {
1907 bcf34b0e 2020-03-26 stsp if (err->code != GOT_ERR_NOT_REF)
1908 bcf34b0e 2020-03-26 stsp return err;
1909 bcf34b0e 2020-03-26 stsp err = got_ref_alloc_symref(&symref, refname, target_ref);
1910 bcf34b0e 2020-03-26 stsp if (err)
1911 bcf34b0e 2020-03-26 stsp goto done;
1912 2ab43947 2020-03-18 stsp
1913 bcf34b0e 2020-03-26 stsp err = got_ref_write(symref, repo);
1914 bcf34b0e 2020-03-26 stsp if (err)
1915 bcf34b0e 2020-03-26 stsp goto done;
1916 f1bcca34 2020-03-25 stsp
1917 bcf34b0e 2020-03-26 stsp if (verbosity >= 0)
1918 bcf34b0e 2020-03-26 stsp printf("Created reference %s: %s\n",
1919 bcf34b0e 2020-03-26 stsp got_ref_get_name(symref),
1920 bcf34b0e 2020-03-26 stsp got_ref_get_symref_target(symref));
1921 bcf34b0e 2020-03-26 stsp } else {
1922 bcf34b0e 2020-03-26 stsp symref_is_locked = 1;
1923 f1bcca34 2020-03-25 stsp
1924 bcf34b0e 2020-03-26 stsp if (strcmp(got_ref_get_symref_target(symref),
1925 bcf34b0e 2020-03-26 stsp got_ref_get_name(target_ref)) == 0)
1926 bcf34b0e 2020-03-26 stsp goto done;
1927 bcf34b0e 2020-03-26 stsp
1928 bcf34b0e 2020-03-26 stsp err = got_ref_change_symref(symref,
1929 bcf34b0e 2020-03-26 stsp got_ref_get_name(target_ref));
1930 bcf34b0e 2020-03-26 stsp if (err)
1931 bcf34b0e 2020-03-26 stsp goto done;
1932 bcf34b0e 2020-03-26 stsp
1933 bcf34b0e 2020-03-26 stsp err = got_ref_write(symref, repo);
1934 bcf34b0e 2020-03-26 stsp if (err)
1935 bcf34b0e 2020-03-26 stsp goto done;
1936 bcf34b0e 2020-03-26 stsp
1937 bcf34b0e 2020-03-26 stsp if (verbosity >= 0)
1938 f4d0e3fb 2020-05-15 stsp printf("Updated %s: %s\n", got_ref_get_name(symref),
1939 bcf34b0e 2020-03-26 stsp got_ref_get_symref_target(symref));
1940 bcf34b0e 2020-03-26 stsp
1941 bcf34b0e 2020-03-26 stsp }
1942 f1bcca34 2020-03-25 stsp done:
1943 bcf34b0e 2020-03-26 stsp if (symref_is_locked) {
1944 bcf34b0e 2020-03-26 stsp unlock_err = got_ref_unlock(symref);
1945 bcf34b0e 2020-03-26 stsp if (unlock_err && err == NULL)
1946 bcf34b0e 2020-03-26 stsp err = unlock_err;
1947 bcf34b0e 2020-03-26 stsp }
1948 f1bcca34 2020-03-25 stsp got_ref_close(symref);
1949 f1bcca34 2020-03-25 stsp return err;
1950 f1bcca34 2020-03-25 stsp }
1951 f1bcca34 2020-03-25 stsp
1952 2ab43947 2020-03-18 stsp __dead static void
1953 7848a0e1 2020-03-19 stsp usage_fetch(void)
1954 7848a0e1 2020-03-19 stsp {
1955 f21ec2f0 2020-03-21 stsp fprintf(stderr, "usage: %s fetch [-a] [-b branch] [-d] [-l] "
1956 161728eb 2021-07-24 stsp "[-r repository-path] [-t] [-q] [-v] [-R reference] [-X] "
1957 0e4002ca 2020-03-21 stsp "[remote-repository-name]\n",
1958 13f12b09 2020-03-21 stsp getprogname());
1959 7848a0e1 2020-03-19 stsp exit(1);
1960 7848a0e1 2020-03-19 stsp }
1961 7848a0e1 2020-03-19 stsp
1962 7848a0e1 2020-03-19 stsp static const struct got_error *
1963 3789fd73 2020-03-26 stsp delete_missing_ref(struct got_reference *ref,
1964 688f11b3 2020-03-21 stsp int verbosity, struct got_repository *repo)
1965 f21ec2f0 2020-03-21 stsp {
1966 f21ec2f0 2020-03-21 stsp const struct got_error *err = NULL;
1967 3789fd73 2020-03-26 stsp struct got_object_id *id = NULL;
1968 3789fd73 2020-03-26 stsp char *id_str = NULL;
1969 3789fd73 2020-03-26 stsp
1970 3789fd73 2020-03-26 stsp if (got_ref_is_symbolic(ref)) {
1971 3789fd73 2020-03-26 stsp err = got_ref_delete(ref, repo);
1972 3789fd73 2020-03-26 stsp if (err)
1973 3789fd73 2020-03-26 stsp return err;
1974 3789fd73 2020-03-26 stsp if (verbosity >= 0) {
1975 f9d54ee6 2021-07-16 stsp printf("Deleted %s: %s\n",
1976 3789fd73 2020-03-26 stsp got_ref_get_name(ref),
1977 3789fd73 2020-03-26 stsp got_ref_get_symref_target(ref));
1978 3789fd73 2020-03-26 stsp }
1979 3789fd73 2020-03-26 stsp } else {
1980 3789fd73 2020-03-26 stsp err = got_ref_resolve(&id, repo, ref);
1981 3789fd73 2020-03-26 stsp if (err)
1982 3789fd73 2020-03-26 stsp return err;
1983 3789fd73 2020-03-26 stsp err = got_object_id_str(&id_str, id);
1984 3789fd73 2020-03-26 stsp if (err)
1985 3789fd73 2020-03-26 stsp goto done;
1986 3168e5da 2020-09-10 stsp
1987 3789fd73 2020-03-26 stsp err = got_ref_delete(ref, repo);
1988 3789fd73 2020-03-26 stsp if (err)
1989 3789fd73 2020-03-26 stsp goto done;
1990 3789fd73 2020-03-26 stsp if (verbosity >= 0) {
1991 f9d54ee6 2021-07-16 stsp printf("Deleted %s: %s\n",
1992 3789fd73 2020-03-26 stsp got_ref_get_name(ref), id_str);
1993 3789fd73 2020-03-26 stsp }
1994 3789fd73 2020-03-26 stsp }
1995 3789fd73 2020-03-26 stsp done:
1996 3789fd73 2020-03-26 stsp free(id);
1997 3789fd73 2020-03-26 stsp free(id_str);
1998 3789fd73 2020-03-26 stsp return NULL;
1999 3789fd73 2020-03-26 stsp }
2000 3789fd73 2020-03-26 stsp
2001 3789fd73 2020-03-26 stsp static const struct got_error *
2002 3789fd73 2020-03-26 stsp delete_missing_refs(struct got_pathlist_head *their_refs,
2003 50b0790e 2020-09-11 stsp struct got_pathlist_head *their_symrefs,
2004 50b0790e 2020-09-11 stsp const struct got_remote_repo *remote,
2005 3789fd73 2020-03-26 stsp int verbosity, struct got_repository *repo)
2006 3789fd73 2020-03-26 stsp {
2007 3789fd73 2020-03-26 stsp const struct got_error *err = NULL, *unlock_err;
2008 f21ec2f0 2020-03-21 stsp struct got_reflist_head my_refs;
2009 f21ec2f0 2020-03-21 stsp struct got_reflist_entry *re;
2010 f21ec2f0 2020-03-21 stsp struct got_pathlist_entry *pe;
2011 3789fd73 2020-03-26 stsp char *remote_namespace = NULL;
2012 3789fd73 2020-03-26 stsp char *local_refname = NULL;
2013 f21ec2f0 2020-03-21 stsp
2014 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&my_refs);
2015 f21ec2f0 2020-03-21 stsp
2016 3789fd73 2020-03-26 stsp if (asprintf(&remote_namespace, "refs/remotes/%s/", remote->name)
2017 3789fd73 2020-03-26 stsp == -1)
2018 3789fd73 2020-03-26 stsp return got_error_from_errno("asprintf");
2019 3789fd73 2020-03-26 stsp
2020 f21ec2f0 2020-03-21 stsp err = got_ref_list(&my_refs, repo, NULL, got_ref_cmp_by_name, NULL);
2021 f21ec2f0 2020-03-21 stsp if (err)
2022 3789fd73 2020-03-26 stsp goto done;
2023 f21ec2f0 2020-03-21 stsp
2024 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &my_refs, entry) {
2025 f21ec2f0 2020-03-21 stsp const char *refname = got_ref_get_name(re->ref);
2026 1b796c3f 2021-09-11 stsp const char *their_refname;
2027 f21ec2f0 2020-03-21 stsp
2028 1b796c3f 2021-09-11 stsp if (remote->mirror_references) {
2029 1b796c3f 2021-09-11 stsp their_refname = refname;
2030 1b796c3f 2021-09-11 stsp } else {
2031 3789fd73 2020-03-26 stsp if (strncmp(refname, remote_namespace,
2032 3789fd73 2020-03-26 stsp strlen(remote_namespace)) == 0) {
2033 3789fd73 2020-03-26 stsp if (strcmp(refname + strlen(remote_namespace),
2034 3789fd73 2020-03-26 stsp GOT_REF_HEAD) == 0)
2035 3789fd73 2020-03-26 stsp continue;
2036 3789fd73 2020-03-26 stsp if (asprintf(&local_refname, "refs/heads/%s",
2037 3789fd73 2020-03-26 stsp refname + strlen(remote_namespace)) == -1) {
2038 3789fd73 2020-03-26 stsp err = got_error_from_errno("asprintf");
2039 3789fd73 2020-03-26 stsp goto done;
2040 3789fd73 2020-03-26 stsp }
2041 3789fd73 2020-03-26 stsp } else if (strncmp(refname, "refs/tags/", 10) != 0)
2042 3789fd73 2020-03-26 stsp continue;
2043 f21ec2f0 2020-03-21 stsp
2044 1b796c3f 2021-09-11 stsp their_refname = local_refname;
2045 1b796c3f 2021-09-11 stsp }
2046 1b796c3f 2021-09-11 stsp
2047 f21ec2f0 2020-03-21 stsp TAILQ_FOREACH(pe, their_refs, entry) {
2048 1b796c3f 2021-09-11 stsp if (strcmp(their_refname, pe->path) == 0)
2049 f21ec2f0 2020-03-21 stsp break;
2050 f21ec2f0 2020-03-21 stsp }
2051 f21ec2f0 2020-03-21 stsp if (pe != NULL)
2052 f21ec2f0 2020-03-21 stsp continue;
2053 f21ec2f0 2020-03-21 stsp
2054 3789fd73 2020-03-26 stsp TAILQ_FOREACH(pe, their_symrefs, entry) {
2055 1b796c3f 2021-09-11 stsp if (strcmp(their_refname, pe->path) == 0)
2056 3789fd73 2020-03-26 stsp break;
2057 3789fd73 2020-03-26 stsp }
2058 3789fd73 2020-03-26 stsp if (pe != NULL)
2059 3789fd73 2020-03-26 stsp continue;
2060 f21ec2f0 2020-03-21 stsp
2061 3789fd73 2020-03-26 stsp err = delete_missing_ref(re->ref, verbosity, repo);
2062 f21ec2f0 2020-03-21 stsp if (err)
2063 f21ec2f0 2020-03-21 stsp break;
2064 3789fd73 2020-03-26 stsp
2065 3789fd73 2020-03-26 stsp if (local_refname) {
2066 3789fd73 2020-03-26 stsp struct got_reference *ref;
2067 3789fd73 2020-03-26 stsp err = got_ref_open(&ref, repo, local_refname, 1);
2068 3789fd73 2020-03-26 stsp if (err) {
2069 3789fd73 2020-03-26 stsp if (err->code != GOT_ERR_NOT_REF)
2070 3789fd73 2020-03-26 stsp break;
2071 3789fd73 2020-03-26 stsp free(local_refname);
2072 3789fd73 2020-03-26 stsp local_refname = NULL;
2073 3789fd73 2020-03-26 stsp continue;
2074 3789fd73 2020-03-26 stsp }
2075 3789fd73 2020-03-26 stsp err = delete_missing_ref(ref, verbosity, repo);
2076 3789fd73 2020-03-26 stsp if (err)
2077 3789fd73 2020-03-26 stsp break;
2078 3789fd73 2020-03-26 stsp unlock_err = got_ref_unlock(ref);
2079 3789fd73 2020-03-26 stsp got_ref_close(ref);
2080 3789fd73 2020-03-26 stsp if (unlock_err && err == NULL) {
2081 3789fd73 2020-03-26 stsp err = unlock_err;
2082 3789fd73 2020-03-26 stsp break;
2083 3789fd73 2020-03-26 stsp }
2084 3789fd73 2020-03-26 stsp
2085 3789fd73 2020-03-26 stsp free(local_refname);
2086 3789fd73 2020-03-26 stsp local_refname = NULL;
2087 6338a6a1 2020-03-21 stsp }
2088 f21ec2f0 2020-03-21 stsp }
2089 3789fd73 2020-03-26 stsp done:
2090 3789fd73 2020-03-26 stsp free(remote_namespace);
2091 3789fd73 2020-03-26 stsp free(local_refname);
2092 0e4002ca 2020-03-21 stsp return err;
2093 0e4002ca 2020-03-21 stsp }
2094 0e4002ca 2020-03-21 stsp
2095 0e4002ca 2020-03-21 stsp static const struct got_error *
2096 0e4002ca 2020-03-21 stsp update_wanted_ref(const char *refname, struct got_object_id *id,
2097 0e4002ca 2020-03-21 stsp const char *remote_repo_name, int verbosity, struct got_repository *repo)
2098 0e4002ca 2020-03-21 stsp {
2099 9f142382 2020-03-21 stsp const struct got_error *err, *unlock_err;
2100 0e4002ca 2020-03-21 stsp char *remote_refname;
2101 0e4002ca 2020-03-21 stsp struct got_reference *ref;
2102 0e4002ca 2020-03-21 stsp
2103 0e4002ca 2020-03-21 stsp if (strncmp("refs/", refname, 5) == 0)
2104 0e4002ca 2020-03-21 stsp refname += 5;
2105 0e4002ca 2020-03-21 stsp
2106 0e4002ca 2020-03-21 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
2107 0e4002ca 2020-03-21 stsp remote_repo_name, refname) == -1)
2108 0e4002ca 2020-03-21 stsp return got_error_from_errno("asprintf");
2109 f21ec2f0 2020-03-21 stsp
2110 9f142382 2020-03-21 stsp err = got_ref_open(&ref, repo, remote_refname, 1);
2111 0e4002ca 2020-03-21 stsp if (err) {
2112 0e4002ca 2020-03-21 stsp if (err->code != GOT_ERR_NOT_REF)
2113 0e4002ca 2020-03-21 stsp goto done;
2114 0e4002ca 2020-03-21 stsp err = create_ref(remote_refname, id, verbosity, repo);
2115 0e4002ca 2020-03-21 stsp } else {
2116 0e4002ca 2020-03-21 stsp err = update_ref(ref, id, 0, verbosity, repo);
2117 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
2118 9f142382 2020-03-21 stsp if (unlock_err && err == NULL)
2119 9f142382 2020-03-21 stsp err = unlock_err;
2120 0e4002ca 2020-03-21 stsp got_ref_close(ref);
2121 0e4002ca 2020-03-21 stsp }
2122 0e4002ca 2020-03-21 stsp done:
2123 0e4002ca 2020-03-21 stsp free(remote_refname);
2124 161728eb 2021-07-24 stsp return err;
2125 161728eb 2021-07-24 stsp }
2126 161728eb 2021-07-24 stsp
2127 161728eb 2021-07-24 stsp static const struct got_error *
2128 161728eb 2021-07-24 stsp delete_ref(struct got_repository *repo, struct got_reference *ref)
2129 161728eb 2021-07-24 stsp {
2130 161728eb 2021-07-24 stsp const struct got_error *err = NULL;
2131 161728eb 2021-07-24 stsp struct got_object_id *id = NULL;
2132 161728eb 2021-07-24 stsp char *id_str = NULL;
2133 161728eb 2021-07-24 stsp const char *target;
2134 161728eb 2021-07-24 stsp
2135 161728eb 2021-07-24 stsp if (got_ref_is_symbolic(ref)) {
2136 161728eb 2021-07-24 stsp target = got_ref_get_symref_target(ref);
2137 161728eb 2021-07-24 stsp } else {
2138 161728eb 2021-07-24 stsp err = got_ref_resolve(&id, repo, ref);
2139 161728eb 2021-07-24 stsp if (err)
2140 161728eb 2021-07-24 stsp goto done;
2141 161728eb 2021-07-24 stsp err = got_object_id_str(&id_str, id);
2142 161728eb 2021-07-24 stsp if (err)
2143 161728eb 2021-07-24 stsp goto done;
2144 161728eb 2021-07-24 stsp target = id_str;
2145 161728eb 2021-07-24 stsp }
2146 161728eb 2021-07-24 stsp
2147 161728eb 2021-07-24 stsp err = got_ref_delete(ref, repo);
2148 161728eb 2021-07-24 stsp if (err)
2149 161728eb 2021-07-24 stsp goto done;
2150 161728eb 2021-07-24 stsp
2151 161728eb 2021-07-24 stsp printf("Deleted %s: %s\n", got_ref_get_name(ref), target);
2152 161728eb 2021-07-24 stsp done:
2153 161728eb 2021-07-24 stsp free(id);
2154 161728eb 2021-07-24 stsp free(id_str);
2155 f21ec2f0 2020-03-21 stsp return err;
2156 f21ec2f0 2020-03-21 stsp }
2157 f21ec2f0 2020-03-21 stsp
2158 f21ec2f0 2020-03-21 stsp static const struct got_error *
2159 161728eb 2021-07-24 stsp delete_refs_for_remote(struct got_repository *repo, const char *remote_name)
2160 161728eb 2021-07-24 stsp {
2161 161728eb 2021-07-24 stsp const struct got_error *err = NULL;
2162 161728eb 2021-07-24 stsp struct got_reflist_head refs;
2163 161728eb 2021-07-24 stsp struct got_reflist_entry *re;
2164 161728eb 2021-07-24 stsp char *prefix;
2165 161728eb 2021-07-24 stsp
2166 161728eb 2021-07-24 stsp TAILQ_INIT(&refs);
2167 161728eb 2021-07-24 stsp
2168 161728eb 2021-07-24 stsp if (asprintf(&prefix, "refs/remotes/%s", remote_name) == -1) {
2169 161728eb 2021-07-24 stsp err = got_error_from_errno("asprintf");
2170 161728eb 2021-07-24 stsp goto done;
2171 161728eb 2021-07-24 stsp }
2172 161728eb 2021-07-24 stsp err = got_ref_list(&refs, repo, prefix, got_ref_cmp_by_name, NULL);
2173 161728eb 2021-07-24 stsp if (err)
2174 161728eb 2021-07-24 stsp goto done;
2175 161728eb 2021-07-24 stsp
2176 161728eb 2021-07-24 stsp TAILQ_FOREACH(re, &refs, entry)
2177 161728eb 2021-07-24 stsp delete_ref(repo, re->ref);
2178 161728eb 2021-07-24 stsp done:
2179 161728eb 2021-07-24 stsp got_ref_list_free(&refs);
2180 161728eb 2021-07-24 stsp return err;
2181 161728eb 2021-07-24 stsp }
2182 161728eb 2021-07-24 stsp
2183 161728eb 2021-07-24 stsp static const struct got_error *
2184 7848a0e1 2020-03-19 stsp cmd_fetch(int argc, char *argv[])
2185 7848a0e1 2020-03-19 stsp {
2186 9f142382 2020-03-21 stsp const struct got_error *error = NULL, *unlock_err;
2187 7848a0e1 2020-03-19 stsp char *cwd = NULL, *repo_path = NULL;
2188 7848a0e1 2020-03-19 stsp const char *remote_name;
2189 7848a0e1 2020-03-19 stsp char *proto = NULL, *host = NULL, *port = NULL;
2190 7848a0e1 2020-03-19 stsp char *repo_name = NULL, *server_path = NULL;
2191 50b0790e 2020-09-11 stsp const struct got_remote_repo *remotes, *remote = NULL;
2192 7848a0e1 2020-03-19 stsp int nremotes;
2193 7848a0e1 2020-03-19 stsp char *id_str = NULL;
2194 7848a0e1 2020-03-19 stsp struct got_repository *repo = NULL;
2195 7848a0e1 2020-03-19 stsp struct got_worktree *worktree = NULL;
2196 50b0790e 2020-09-11 stsp const struct got_gotconfig *repo_conf = NULL, *worktree_conf = NULL;
2197 0e4002ca 2020-03-21 stsp struct got_pathlist_head refs, symrefs, wanted_branches, wanted_refs;
2198 7848a0e1 2020-03-19 stsp struct got_pathlist_entry *pe;
2199 7848a0e1 2020-03-19 stsp struct got_object_id *pack_hash = NULL;
2200 9c52365f 2020-03-21 stsp int i, ch, fetchfd = -1, fetchstatus;
2201 9c52365f 2020-03-21 stsp pid_t fetchpid = -1;
2202 7848a0e1 2020-03-19 stsp struct got_fetch_progress_arg fpa;
2203 41b0de12 2020-03-21 stsp int verbosity = 0, fetch_all_branches = 0, list_refs_only = 0;
2204 161728eb 2021-07-24 stsp int delete_refs = 0, replace_tags = 0, delete_remote = 0;
2205 7848a0e1 2020-03-19 stsp
2206 7848a0e1 2020-03-19 stsp TAILQ_INIT(&refs);
2207 7848a0e1 2020-03-19 stsp TAILQ_INIT(&symrefs);
2208 4ba14133 2020-03-20 stsp TAILQ_INIT(&wanted_branches);
2209 0e4002ca 2020-03-21 stsp TAILQ_INIT(&wanted_refs);
2210 7848a0e1 2020-03-19 stsp
2211 161728eb 2021-07-24 stsp while ((ch = getopt(argc, argv, "ab:dlr:tvqR:X")) != -1) {
2212 7848a0e1 2020-03-19 stsp switch (ch) {
2213 659e7fbd 2020-03-20 stsp case 'a':
2214 659e7fbd 2020-03-20 stsp fetch_all_branches = 1;
2215 4ba14133 2020-03-20 stsp break;
2216 4ba14133 2020-03-20 stsp case 'b':
2217 4ba14133 2020-03-20 stsp error = got_pathlist_append(&wanted_branches,
2218 4ba14133 2020-03-20 stsp optarg, NULL);
2219 4ba14133 2020-03-20 stsp if (error)
2220 4ba14133 2020-03-20 stsp return error;
2221 41b0de12 2020-03-21 stsp break;
2222 f21ec2f0 2020-03-21 stsp case 'd':
2223 f21ec2f0 2020-03-21 stsp delete_refs = 1;
2224 f21ec2f0 2020-03-21 stsp break;
2225 41b0de12 2020-03-21 stsp case 'l':
2226 41b0de12 2020-03-21 stsp list_refs_only = 1;
2227 659e7fbd 2020-03-20 stsp break;
2228 7848a0e1 2020-03-19 stsp case 'r':
2229 7848a0e1 2020-03-19 stsp repo_path = realpath(optarg, NULL);
2230 7848a0e1 2020-03-19 stsp if (repo_path == NULL)
2231 7848a0e1 2020-03-19 stsp return got_error_from_errno2("realpath",
2232 7848a0e1 2020-03-19 stsp optarg);
2233 7848a0e1 2020-03-19 stsp got_path_strip_trailing_slashes(repo_path);
2234 7848a0e1 2020-03-19 stsp break;
2235 db6d8ad8 2020-03-21 stsp case 't':
2236 db6d8ad8 2020-03-21 stsp replace_tags = 1;
2237 db6d8ad8 2020-03-21 stsp break;
2238 7848a0e1 2020-03-19 stsp case 'v':
2239 7848a0e1 2020-03-19 stsp if (verbosity < 0)
2240 7848a0e1 2020-03-19 stsp verbosity = 0;
2241 7848a0e1 2020-03-19 stsp else if (verbosity < 3)
2242 7848a0e1 2020-03-19 stsp verbosity++;
2243 7848a0e1 2020-03-19 stsp break;
2244 7848a0e1 2020-03-19 stsp case 'q':
2245 7848a0e1 2020-03-19 stsp verbosity = -1;
2246 7848a0e1 2020-03-19 stsp break;
2247 0e4002ca 2020-03-21 stsp case 'R':
2248 0e4002ca 2020-03-21 stsp error = got_pathlist_append(&wanted_refs,
2249 0e4002ca 2020-03-21 stsp optarg, NULL);
2250 0e4002ca 2020-03-21 stsp if (error)
2251 0e4002ca 2020-03-21 stsp return error;
2252 0e4002ca 2020-03-21 stsp break;
2253 161728eb 2021-07-24 stsp case 'X':
2254 161728eb 2021-07-24 stsp delete_remote = 1;
2255 161728eb 2021-07-24 stsp break;
2256 7848a0e1 2020-03-19 stsp default:
2257 7848a0e1 2020-03-19 stsp usage_fetch();
2258 7848a0e1 2020-03-19 stsp break;
2259 7848a0e1 2020-03-19 stsp }
2260 7848a0e1 2020-03-19 stsp }
2261 7848a0e1 2020-03-19 stsp argc -= optind;
2262 7848a0e1 2020-03-19 stsp argv += optind;
2263 7848a0e1 2020-03-19 stsp
2264 4ba14133 2020-03-20 stsp if (fetch_all_branches && !TAILQ_EMPTY(&wanted_branches))
2265 ff69268e 2020-12-13 stsp option_conflict('a', 'b');
2266 41b0de12 2020-03-21 stsp if (list_refs_only) {
2267 41b0de12 2020-03-21 stsp if (!TAILQ_EMPTY(&wanted_branches))
2268 ff69268e 2020-12-13 stsp option_conflict('l', 'b');
2269 ff69268e 2020-12-13 stsp if (fetch_all_branches)
2270 ff69268e 2020-12-13 stsp option_conflict('l', 'a');
2271 f21ec2f0 2020-03-21 stsp if (delete_refs)
2272 ff69268e 2020-12-13 stsp option_conflict('l', 'd');
2273 161728eb 2021-07-24 stsp if (delete_remote)
2274 161728eb 2021-07-24 stsp option_conflict('l', 'X');
2275 41b0de12 2020-03-21 stsp }
2276 161728eb 2021-07-24 stsp if (delete_remote) {
2277 161728eb 2021-07-24 stsp if (fetch_all_branches)
2278 161728eb 2021-07-24 stsp option_conflict('X', 'a');
2279 161728eb 2021-07-24 stsp if (!TAILQ_EMPTY(&wanted_branches))
2280 161728eb 2021-07-24 stsp option_conflict('X', 'b');
2281 161728eb 2021-07-24 stsp if (delete_refs)
2282 161728eb 2021-07-24 stsp option_conflict('X', 'd');
2283 161728eb 2021-07-24 stsp if (replace_tags)
2284 161728eb 2021-07-24 stsp option_conflict('X', 't');
2285 161728eb 2021-07-24 stsp if (!TAILQ_EMPTY(&wanted_refs))
2286 161728eb 2021-07-24 stsp option_conflict('X', 'R');
2287 161728eb 2021-07-24 stsp }
2288 161728eb 2021-07-24 stsp
2289 161728eb 2021-07-24 stsp if (argc == 0) {
2290 161728eb 2021-07-24 stsp if (delete_remote)
2291 161728eb 2021-07-24 stsp errx(1, "-X option requires a remote name");
2292 7848a0e1 2020-03-19 stsp remote_name = GOT_FETCH_DEFAULT_REMOTE_NAME;
2293 161728eb 2021-07-24 stsp } else if (argc == 1)
2294 7848a0e1 2020-03-19 stsp remote_name = argv[0];
2295 7848a0e1 2020-03-19 stsp else
2296 7848a0e1 2020-03-19 stsp usage_fetch();
2297 7848a0e1 2020-03-19 stsp
2298 7848a0e1 2020-03-19 stsp cwd = getcwd(NULL, 0);
2299 7848a0e1 2020-03-19 stsp if (cwd == NULL) {
2300 7848a0e1 2020-03-19 stsp error = got_error_from_errno("getcwd");
2301 7848a0e1 2020-03-19 stsp goto done;
2302 7848a0e1 2020-03-19 stsp }
2303 7848a0e1 2020-03-19 stsp
2304 7848a0e1 2020-03-19 stsp if (repo_path == NULL) {
2305 7848a0e1 2020-03-19 stsp error = got_worktree_open(&worktree, cwd);
2306 7848a0e1 2020-03-19 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2307 7848a0e1 2020-03-19 stsp goto done;
2308 7848a0e1 2020-03-19 stsp else
2309 7848a0e1 2020-03-19 stsp error = NULL;
2310 7848a0e1 2020-03-19 stsp if (worktree) {
2311 7848a0e1 2020-03-19 stsp repo_path =
2312 7848a0e1 2020-03-19 stsp strdup(got_worktree_get_repo_path(worktree));
2313 7848a0e1 2020-03-19 stsp if (repo_path == NULL)
2314 7848a0e1 2020-03-19 stsp error = got_error_from_errno("strdup");
2315 7848a0e1 2020-03-19 stsp if (error)
2316 7848a0e1 2020-03-19 stsp goto done;
2317 7848a0e1 2020-03-19 stsp } else {
2318 7848a0e1 2020-03-19 stsp repo_path = strdup(cwd);
2319 7848a0e1 2020-03-19 stsp if (repo_path == NULL) {
2320 7848a0e1 2020-03-19 stsp error = got_error_from_errno("strdup");
2321 7848a0e1 2020-03-19 stsp goto done;
2322 7848a0e1 2020-03-19 stsp }
2323 7848a0e1 2020-03-19 stsp }
2324 7848a0e1 2020-03-19 stsp }
2325 7848a0e1 2020-03-19 stsp
2326 7848a0e1 2020-03-19 stsp error = got_repo_open(&repo, repo_path, NULL);
2327 7848a0e1 2020-03-19 stsp if (error)
2328 7848a0e1 2020-03-19 stsp goto done;
2329 7848a0e1 2020-03-19 stsp
2330 161728eb 2021-07-24 stsp if (delete_remote) {
2331 161728eb 2021-07-24 stsp error = delete_refs_for_remote(repo, remote_name);
2332 161728eb 2021-07-24 stsp goto done; /* nothing else to do */
2333 161728eb 2021-07-24 stsp }
2334 161728eb 2021-07-24 stsp
2335 50b0790e 2020-09-11 stsp if (worktree) {
2336 50b0790e 2020-09-11 stsp worktree_conf = got_worktree_get_gotconfig(worktree);
2337 50b0790e 2020-09-11 stsp if (worktree_conf) {
2338 50b0790e 2020-09-11 stsp got_gotconfig_get_remotes(&nremotes, &remotes,
2339 50b0790e 2020-09-11 stsp worktree_conf);
2340 50b0790e 2020-09-11 stsp for (i = 0; i < nremotes; i++) {
2341 54eb00d5 2020-10-20 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
2342 54eb00d5 2020-10-20 stsp remote = &remotes[i];
2343 50b0790e 2020-09-11 stsp break;
2344 54eb00d5 2020-10-20 stsp }
2345 50b0790e 2020-09-11 stsp }
2346 50b0790e 2020-09-11 stsp }
2347 7848a0e1 2020-03-19 stsp }
2348 50b0790e 2020-09-11 stsp if (remote == NULL) {
2349 50b0790e 2020-09-11 stsp repo_conf = got_repo_get_gotconfig(repo);
2350 50b0790e 2020-09-11 stsp if (repo_conf) {
2351 50b0790e 2020-09-11 stsp got_gotconfig_get_remotes(&nremotes, &remotes,
2352 50b0790e 2020-09-11 stsp repo_conf);
2353 50b0790e 2020-09-11 stsp for (i = 0; i < nremotes; i++) {
2354 54eb00d5 2020-10-20 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
2355 54eb00d5 2020-10-20 stsp remote = &remotes[i];
2356 50b0790e 2020-09-11 stsp break;
2357 54eb00d5 2020-10-20 stsp }
2358 50b0790e 2020-09-11 stsp }
2359 50b0790e 2020-09-11 stsp }
2360 50b0790e 2020-09-11 stsp }
2361 50b0790e 2020-09-11 stsp if (remote == NULL) {
2362 257add31 2020-09-09 stsp got_repo_get_gitconfig_remotes(&nremotes, &remotes, repo);
2363 257add31 2020-09-09 stsp for (i = 0; i < nremotes; i++) {
2364 54eb00d5 2020-10-20 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
2365 54eb00d5 2020-10-20 stsp remote = &remotes[i];
2366 257add31 2020-09-09 stsp break;
2367 54eb00d5 2020-10-20 stsp }
2368 257add31 2020-09-09 stsp }
2369 7848a0e1 2020-03-19 stsp }
2370 50b0790e 2020-09-11 stsp if (remote == NULL) {
2371 50b0790e 2020-09-11 stsp error = got_error_path(remote_name, GOT_ERR_NO_REMOTE);
2372 50b0790e 2020-09-11 stsp goto done;
2373 b8adfa55 2020-09-25 stsp }
2374 b8adfa55 2020-09-25 stsp
2375 0c8b29c5 2021-01-05 stsp if (TAILQ_EMPTY(&wanted_branches)) {
2376 0c8b29c5 2021-01-05 stsp if (!fetch_all_branches)
2377 0c8b29c5 2021-01-05 stsp fetch_all_branches = remote->fetch_all_branches;
2378 6480c871 2021-08-30 stsp for (i = 0; i < remote->nfetch_branches; i++) {
2379 b8adfa55 2020-09-25 stsp got_pathlist_append(&wanted_branches,
2380 6480c871 2021-08-30 stsp remote->fetch_branches[i], NULL);
2381 99495ddb 2021-01-10 stsp }
2382 99495ddb 2021-01-10 stsp }
2383 99495ddb 2021-01-10 stsp if (TAILQ_EMPTY(&wanted_refs)) {
2384 6480c871 2021-08-30 stsp for (i = 0; i < remote->nfetch_refs; i++) {
2385 99495ddb 2021-01-10 stsp got_pathlist_append(&wanted_refs,
2386 6480c871 2021-08-30 stsp remote->fetch_refs[i], NULL);
2387 b8adfa55 2020-09-25 stsp }
2388 50b0790e 2020-09-11 stsp }
2389 7848a0e1 2020-03-19 stsp
2390 5e5da8c4 2021-09-05 stsp error = got_dial_parse_uri(&proto, &host, &port, &server_path,
2391 6480c871 2021-08-30 stsp &repo_name, remote->fetch_url);
2392 7848a0e1 2020-03-19 stsp if (error)
2393 7848a0e1 2020-03-19 stsp goto done;
2394 7848a0e1 2020-03-19 stsp
2395 7848a0e1 2020-03-19 stsp if (strcmp(proto, "git") == 0) {
2396 7848a0e1 2020-03-19 stsp #ifndef PROFILE
2397 7848a0e1 2020-03-19 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2398 7848a0e1 2020-03-19 stsp "sendfd dns inet unveil", NULL) == -1)
2399 7848a0e1 2020-03-19 stsp err(1, "pledge");
2400 7848a0e1 2020-03-19 stsp #endif
2401 7848a0e1 2020-03-19 stsp } else if (strcmp(proto, "git+ssh") == 0 ||
2402 7848a0e1 2020-03-19 stsp strcmp(proto, "ssh") == 0) {
2403 7848a0e1 2020-03-19 stsp #ifndef PROFILE
2404 7848a0e1 2020-03-19 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2405 7848a0e1 2020-03-19 stsp "sendfd unveil", NULL) == -1)
2406 7848a0e1 2020-03-19 stsp err(1, "pledge");
2407 7848a0e1 2020-03-19 stsp #endif
2408 7848a0e1 2020-03-19 stsp } else if (strcmp(proto, "http") == 0 ||
2409 7848a0e1 2020-03-19 stsp strcmp(proto, "git+http") == 0) {
2410 7848a0e1 2020-03-19 stsp error = got_error_path(proto, GOT_ERR_NOT_IMPL);
2411 7848a0e1 2020-03-19 stsp goto done;
2412 7848a0e1 2020-03-19 stsp } else {
2413 7848a0e1 2020-03-19 stsp error = got_error_path(proto, GOT_ERR_BAD_PROTO);
2414 7848a0e1 2020-03-19 stsp goto done;
2415 7848a0e1 2020-03-19 stsp }
2416 7848a0e1 2020-03-19 stsp
2417 d65a88a2 2021-09-05 stsp error = got_dial_apply_unveil(proto);
2418 d65a88a2 2021-09-05 stsp if (error)
2419 d65a88a2 2021-09-05 stsp goto done;
2420 d65a88a2 2021-09-05 stsp
2421 7848a0e1 2020-03-19 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
2422 7848a0e1 2020-03-19 stsp if (error)
2423 7848a0e1 2020-03-19 stsp goto done;
2424 f79e6490 2020-04-19 stsp
2425 f79e6490 2020-04-19 stsp if (verbosity >= 0)
2426 f79e6490 2020-04-19 stsp printf("Connecting to \"%s\" %s%s%s\n", remote->name, host,
2427 f79e6490 2020-04-19 stsp port ? ":" : "", port ? port : "");
2428 7848a0e1 2020-03-19 stsp
2429 9c52365f 2020-03-21 stsp error = got_fetch_connect(&fetchpid, &fetchfd, proto, host, port,
2430 9c52365f 2020-03-21 stsp server_path, verbosity);
2431 7848a0e1 2020-03-19 stsp if (error)
2432 7848a0e1 2020-03-19 stsp goto done;
2433 7848a0e1 2020-03-19 stsp
2434 7848a0e1 2020-03-19 stsp fpa.last_scaled_size[0] = '\0';
2435 7848a0e1 2020-03-19 stsp fpa.last_p_indexed = -1;
2436 7848a0e1 2020-03-19 stsp fpa.last_p_resolved = -1;
2437 7848a0e1 2020-03-19 stsp fpa.verbosity = verbosity;
2438 04d9a9ec 2020-09-24 stsp fpa.repo = repo;
2439 04d9a9ec 2020-09-24 stsp fpa.create_configs = 0;
2440 04d9a9ec 2020-09-24 stsp fpa.configs_created = 0;
2441 04d9a9ec 2020-09-24 stsp memset(&fpa.config_info, 0, sizeof(fpa.config_info));
2442 7848a0e1 2020-03-19 stsp error = got_fetch_pack(&pack_hash, &refs, &symrefs, remote->name,
2443 4ba14133 2020-03-20 stsp remote->mirror_references, fetch_all_branches, &wanted_branches,
2444 0e4002ca 2020-03-21 stsp &wanted_refs, list_refs_only, verbosity, fetchfd, repo,
2445 0e4002ca 2020-03-21 stsp fetch_progress, &fpa);
2446 7848a0e1 2020-03-19 stsp if (error)
2447 7848a0e1 2020-03-19 stsp goto done;
2448 7848a0e1 2020-03-19 stsp
2449 41b0de12 2020-03-21 stsp if (list_refs_only) {
2450 41b0de12 2020-03-21 stsp error = list_remote_refs(&symrefs, &refs);
2451 41b0de12 2020-03-21 stsp goto done;
2452 41b0de12 2020-03-21 stsp }
2453 41b0de12 2020-03-21 stsp
2454 7848a0e1 2020-03-19 stsp if (pack_hash == NULL) {
2455 7848a0e1 2020-03-19 stsp if (verbosity >= 0)
2456 7848a0e1 2020-03-19 stsp printf("Already up-to-date\n");
2457 bcf34b0e 2020-03-26 stsp } else if (verbosity >= 0) {
2458 984065c8 2020-03-19 stsp error = got_object_id_str(&id_str, pack_hash);
2459 984065c8 2020-03-19 stsp if (error)
2460 984065c8 2020-03-19 stsp goto done;
2461 e69674d8 2020-03-19 stsp printf("\nFetched %s.pack\n", id_str);
2462 984065c8 2020-03-19 stsp free(id_str);
2463 984065c8 2020-03-19 stsp id_str = NULL;
2464 984065c8 2020-03-19 stsp }
2465 7848a0e1 2020-03-19 stsp
2466 7848a0e1 2020-03-19 stsp /* Update references provided with the pack file. */
2467 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &refs, entry) {
2468 7848a0e1 2020-03-19 stsp const char *refname = pe->path;
2469 7848a0e1 2020-03-19 stsp struct got_object_id *id = pe->data;
2470 7848a0e1 2020-03-19 stsp struct got_reference *ref;
2471 7848a0e1 2020-03-19 stsp char *remote_refname;
2472 7848a0e1 2020-03-19 stsp
2473 0e4002ca 2020-03-21 stsp if (is_wanted_ref(&wanted_refs, refname) &&
2474 0e4002ca 2020-03-21 stsp !remote->mirror_references) {
2475 0e4002ca 2020-03-21 stsp error = update_wanted_ref(refname, id,
2476 0e4002ca 2020-03-21 stsp remote->name, verbosity, repo);
2477 0e4002ca 2020-03-21 stsp if (error)
2478 0e4002ca 2020-03-21 stsp goto done;
2479 0e4002ca 2020-03-21 stsp continue;
2480 0e4002ca 2020-03-21 stsp }
2481 0e4002ca 2020-03-21 stsp
2482 1510c839 2020-03-20 stsp if (remote->mirror_references ||
2483 1510c839 2020-03-20 stsp strncmp("refs/tags/", refname, 10) == 0) {
2484 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, refname, 1);
2485 7848a0e1 2020-03-19 stsp if (error) {
2486 7848a0e1 2020-03-19 stsp if (error->code != GOT_ERR_NOT_REF)
2487 7848a0e1 2020-03-19 stsp goto done;
2488 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity,
2489 6338a6a1 2020-03-21 stsp repo);
2490 7848a0e1 2020-03-19 stsp if (error)
2491 7848a0e1 2020-03-19 stsp goto done;
2492 7848a0e1 2020-03-19 stsp } else {
2493 db6d8ad8 2020-03-21 stsp error = update_ref(ref, id, replace_tags,
2494 db6d8ad8 2020-03-21 stsp verbosity, repo);
2495 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
2496 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
2497 9f142382 2020-03-21 stsp error = unlock_err;
2498 7848a0e1 2020-03-19 stsp got_ref_close(ref);
2499 7848a0e1 2020-03-19 stsp if (error)
2500 7848a0e1 2020-03-19 stsp goto done;
2501 7848a0e1 2020-03-19 stsp }
2502 7848a0e1 2020-03-19 stsp } else if (strncmp("refs/heads/", refname, 11) == 0) {
2503 7848a0e1 2020-03-19 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
2504 7848a0e1 2020-03-19 stsp remote_name, refname + 11) == -1) {
2505 7848a0e1 2020-03-19 stsp error = got_error_from_errno("asprintf");
2506 7848a0e1 2020-03-19 stsp goto done;
2507 7848a0e1 2020-03-19 stsp }
2508 7848a0e1 2020-03-19 stsp
2509 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, remote_refname, 1);
2510 7848a0e1 2020-03-19 stsp if (error) {
2511 7848a0e1 2020-03-19 stsp if (error->code != GOT_ERR_NOT_REF)
2512 7848a0e1 2020-03-19 stsp goto done;
2513 6338a6a1 2020-03-21 stsp error = create_ref(remote_refname, id,
2514 688f11b3 2020-03-21 stsp verbosity, repo);
2515 7848a0e1 2020-03-19 stsp if (error)
2516 7848a0e1 2020-03-19 stsp goto done;
2517 7848a0e1 2020-03-19 stsp } else {
2518 db6d8ad8 2020-03-21 stsp error = update_ref(ref, id, replace_tags,
2519 db6d8ad8 2020-03-21 stsp verbosity, repo);
2520 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
2521 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
2522 9f142382 2020-03-21 stsp error = unlock_err;
2523 7848a0e1 2020-03-19 stsp got_ref_close(ref);
2524 7848a0e1 2020-03-19 stsp if (error)
2525 7848a0e1 2020-03-19 stsp goto done;
2526 7848a0e1 2020-03-19 stsp }
2527 2ec30c80 2020-03-20 stsp
2528 2ec30c80 2020-03-20 stsp /* Also create a local branch if none exists yet. */
2529 9f142382 2020-03-21 stsp error = got_ref_open(&ref, repo, refname, 1);
2530 2ec30c80 2020-03-20 stsp if (error) {
2531 2ec30c80 2020-03-20 stsp if (error->code != GOT_ERR_NOT_REF)
2532 2ec30c80 2020-03-20 stsp goto done;
2533 6338a6a1 2020-03-21 stsp error = create_ref(refname, id, verbosity,
2534 6338a6a1 2020-03-21 stsp repo);
2535 2ec30c80 2020-03-20 stsp if (error)
2536 2ec30c80 2020-03-20 stsp goto done;
2537 9f142382 2020-03-21 stsp } else {
2538 9f142382 2020-03-21 stsp unlock_err = got_ref_unlock(ref);
2539 9f142382 2020-03-21 stsp if (unlock_err && error == NULL)
2540 9f142382 2020-03-21 stsp error = unlock_err;
2541 2ec30c80 2020-03-20 stsp got_ref_close(ref);
2542 9f142382 2020-03-21 stsp }
2543 7848a0e1 2020-03-19 stsp }
2544 7848a0e1 2020-03-19 stsp }
2545 f1bcca34 2020-03-25 stsp if (delete_refs) {
2546 3789fd73 2020-03-26 stsp error = delete_missing_refs(&refs, &symrefs, remote,
2547 3789fd73 2020-03-26 stsp verbosity, repo);
2548 f1bcca34 2020-03-25 stsp if (error)
2549 f1bcca34 2020-03-25 stsp goto done;
2550 f1bcca34 2020-03-25 stsp }
2551 f1bcca34 2020-03-25 stsp
2552 f1bcca34 2020-03-25 stsp if (!remote->mirror_references) {
2553 f1bcca34 2020-03-25 stsp /* Update remote HEAD reference if the server provided one. */
2554 f1bcca34 2020-03-25 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
2555 f1bcca34 2020-03-25 stsp struct got_reference *target_ref;
2556 f1bcca34 2020-03-25 stsp const char *refname = pe->path;
2557 f1bcca34 2020-03-25 stsp const char *target = pe->data;
2558 f1bcca34 2020-03-25 stsp char *remote_refname = NULL, *remote_target = NULL;
2559 f1bcca34 2020-03-25 stsp
2560 f1bcca34 2020-03-25 stsp if (strcmp(refname, GOT_REF_HEAD) != 0)
2561 f1bcca34 2020-03-25 stsp continue;
2562 f1bcca34 2020-03-25 stsp
2563 f1bcca34 2020-03-25 stsp if (strncmp("refs/heads/", target, 11) != 0)
2564 f1bcca34 2020-03-25 stsp continue;
2565 f1bcca34 2020-03-25 stsp
2566 f1bcca34 2020-03-25 stsp if (asprintf(&remote_refname, "refs/remotes/%s/%s",
2567 f1bcca34 2020-03-25 stsp remote->name, refname) == -1) {
2568 f1bcca34 2020-03-25 stsp error = got_error_from_errno("asprintf");
2569 f1bcca34 2020-03-25 stsp goto done;
2570 f1bcca34 2020-03-25 stsp }
2571 f1bcca34 2020-03-25 stsp if (asprintf(&remote_target, "refs/remotes/%s/%s",
2572 f1bcca34 2020-03-25 stsp remote->name, target + 11) == -1) {
2573 f1bcca34 2020-03-25 stsp error = got_error_from_errno("asprintf");
2574 f1bcca34 2020-03-25 stsp free(remote_refname);
2575 f1bcca34 2020-03-25 stsp goto done;
2576 f1bcca34 2020-03-25 stsp }
2577 f1bcca34 2020-03-25 stsp
2578 f1bcca34 2020-03-25 stsp error = got_ref_open(&target_ref, repo, remote_target,
2579 f1bcca34 2020-03-25 stsp 0);
2580 f1bcca34 2020-03-25 stsp if (error) {
2581 f1bcca34 2020-03-25 stsp free(remote_refname);
2582 f1bcca34 2020-03-25 stsp free(remote_target);
2583 f1bcca34 2020-03-25 stsp if (error->code == GOT_ERR_NOT_REF) {
2584 f1bcca34 2020-03-25 stsp error = NULL;
2585 f1bcca34 2020-03-25 stsp continue;
2586 f1bcca34 2020-03-25 stsp }
2587 f1bcca34 2020-03-25 stsp goto done;
2588 f1bcca34 2020-03-25 stsp }
2589 f1bcca34 2020-03-25 stsp error = update_symref(remote_refname, target_ref,
2590 f1bcca34 2020-03-25 stsp verbosity, repo);
2591 f1bcca34 2020-03-25 stsp free(remote_refname);
2592 f1bcca34 2020-03-25 stsp free(remote_target);
2593 f1bcca34 2020-03-25 stsp got_ref_close(target_ref);
2594 f1bcca34 2020-03-25 stsp if (error)
2595 f1bcca34 2020-03-25 stsp goto done;
2596 f1bcca34 2020-03-25 stsp }
2597 f1bcca34 2020-03-25 stsp }
2598 7848a0e1 2020-03-19 stsp done:
2599 9c52365f 2020-03-21 stsp if (fetchpid > 0) {
2600 9c52365f 2020-03-21 stsp if (kill(fetchpid, SIGTERM) == -1)
2601 9c52365f 2020-03-21 stsp error = got_error_from_errno("kill");
2602 9c52365f 2020-03-21 stsp if (waitpid(fetchpid, &fetchstatus, 0) == -1 && error == NULL)
2603 9c52365f 2020-03-21 stsp error = got_error_from_errno("waitpid");
2604 9c52365f 2020-03-21 stsp }
2605 7848a0e1 2020-03-19 stsp if (fetchfd != -1 && close(fetchfd) == -1 && error == NULL)
2606 7848a0e1 2020-03-19 stsp error = got_error_from_errno("close");
2607 1d0f4054 2021-06-17 stsp if (repo) {
2608 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
2609 1d0f4054 2021-06-17 stsp if (error == NULL)
2610 1d0f4054 2021-06-17 stsp error = close_err;
2611 1d0f4054 2021-06-17 stsp }
2612 7848a0e1 2020-03-19 stsp if (worktree)
2613 7848a0e1 2020-03-19 stsp got_worktree_close(worktree);
2614 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &refs, entry) {
2615 7848a0e1 2020-03-19 stsp free((void *)pe->path);
2616 7848a0e1 2020-03-19 stsp free(pe->data);
2617 7848a0e1 2020-03-19 stsp }
2618 7848a0e1 2020-03-19 stsp got_pathlist_free(&refs);
2619 7848a0e1 2020-03-19 stsp TAILQ_FOREACH(pe, &symrefs, entry) {
2620 7848a0e1 2020-03-19 stsp free((void *)pe->path);
2621 7848a0e1 2020-03-19 stsp free(pe->data);
2622 7848a0e1 2020-03-19 stsp }
2623 7848a0e1 2020-03-19 stsp got_pathlist_free(&symrefs);
2624 4ba14133 2020-03-20 stsp got_pathlist_free(&wanted_branches);
2625 0e4002ca 2020-03-21 stsp got_pathlist_free(&wanted_refs);
2626 7848a0e1 2020-03-19 stsp free(id_str);
2627 7848a0e1 2020-03-19 stsp free(cwd);
2628 7848a0e1 2020-03-19 stsp free(repo_path);
2629 7848a0e1 2020-03-19 stsp free(pack_hash);
2630 7848a0e1 2020-03-19 stsp free(proto);
2631 7848a0e1 2020-03-19 stsp free(host);
2632 7848a0e1 2020-03-19 stsp free(port);
2633 7848a0e1 2020-03-19 stsp free(server_path);
2634 7848a0e1 2020-03-19 stsp free(repo_name);
2635 7848a0e1 2020-03-19 stsp return error;
2636 7848a0e1 2020-03-19 stsp }
2637 7848a0e1 2020-03-19 stsp
2638 7848a0e1 2020-03-19 stsp
2639 7848a0e1 2020-03-19 stsp __dead static void
2640 2ab43947 2020-03-18 stsp usage_checkout(void)
2641 2ab43947 2020-03-18 stsp {
2642 2ab43947 2020-03-18 stsp fprintf(stderr, "usage: %s checkout [-E] [-b branch] [-c commit] "
2643 4ad4a1ec 2021-09-13 tracey "[-p prefix] [-q] repository-path [worktree-path]\n",
2644 4ad4a1ec 2021-09-13 tracey getprogname());
2645 2ab43947 2020-03-18 stsp exit(1);
2646 2ab43947 2020-03-18 stsp }
2647 2ab43947 2020-03-18 stsp
2648 2ab43947 2020-03-18 stsp static void
2649 2ab43947 2020-03-18 stsp show_worktree_base_ref_warning(void)
2650 2ab43947 2020-03-18 stsp {
2651 2ab43947 2020-03-18 stsp fprintf(stderr, "%s: warning: could not create a reference "
2652 2ab43947 2020-03-18 stsp "to the work tree's base commit; the commit could be "
2653 e6786710 2021-07-03 stsp "garbage-collected by Git or 'gotadmin cleanup'; making the "
2654 e6786710 2021-07-03 stsp "repository writable and running 'got update' will prevent this\n",
2655 2ab43947 2020-03-18 stsp getprogname());
2656 2ab43947 2020-03-18 stsp }
2657 2ab43947 2020-03-18 stsp
2658 2ab43947 2020-03-18 stsp struct got_checkout_progress_arg {
2659 2ab43947 2020-03-18 stsp const char *worktree_path;
2660 2ab43947 2020-03-18 stsp int had_base_commit_ref_error;
2661 4ad4a1ec 2021-09-13 tracey int verbosity;
2662 2ab43947 2020-03-18 stsp };
2663 2ab43947 2020-03-18 stsp
2664 2ab43947 2020-03-18 stsp static const struct got_error *
2665 2ab43947 2020-03-18 stsp checkout_progress(void *arg, unsigned char status, const char *path)
2666 2ab43947 2020-03-18 stsp {
2667 2ab43947 2020-03-18 stsp struct got_checkout_progress_arg *a = arg;
2668 2ab43947 2020-03-18 stsp
2669 2ab43947 2020-03-18 stsp /* Base commit bump happens silently. */
2670 2ab43947 2020-03-18 stsp if (status == GOT_STATUS_BUMP_BASE)
2671 2ab43947 2020-03-18 stsp return NULL;
2672 2ab43947 2020-03-18 stsp
2673 2ab43947 2020-03-18 stsp if (status == GOT_STATUS_BASE_REF_ERR) {
2674 2ab43947 2020-03-18 stsp a->had_base_commit_ref_error = 1;
2675 2ab43947 2020-03-18 stsp return NULL;
2676 2ab43947 2020-03-18 stsp }
2677 2ab43947 2020-03-18 stsp
2678 2ab43947 2020-03-18 stsp while (path[0] == '/')
2679 2ab43947 2020-03-18 stsp path++;
2680 2ab43947 2020-03-18 stsp
2681 4ad4a1ec 2021-09-13 tracey if (a->verbosity >= 0)
2682 4ad4a1ec 2021-09-13 tracey printf("%c %s/%s\n", status, a->worktree_path, path);
2683 4ad4a1ec 2021-09-13 tracey
2684 2ab43947 2020-03-18 stsp return NULL;
2685 2ab43947 2020-03-18 stsp }
2686 2ab43947 2020-03-18 stsp
2687 2ab43947 2020-03-18 stsp static const struct got_error *
2688 2ab43947 2020-03-18 stsp check_cancelled(void *arg)
2689 2ab43947 2020-03-18 stsp {
2690 2ab43947 2020-03-18 stsp if (sigint_received || sigpipe_received)
2691 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_CANCELLED);
2692 2ab43947 2020-03-18 stsp return NULL;
2693 2ab43947 2020-03-18 stsp }
2694 2ab43947 2020-03-18 stsp
2695 2ab43947 2020-03-18 stsp static const struct got_error *
2696 2ab43947 2020-03-18 stsp check_linear_ancestry(struct got_object_id *commit_id,
2697 2ab43947 2020-03-18 stsp struct got_object_id *base_commit_id, int allow_forwards_in_time_only,
2698 2ab43947 2020-03-18 stsp struct got_repository *repo)
2699 2ab43947 2020-03-18 stsp {
2700 2ab43947 2020-03-18 stsp const struct got_error *err = NULL;
2701 2ab43947 2020-03-18 stsp struct got_object_id *yca_id;
2702 2ab43947 2020-03-18 stsp
2703 2ab43947 2020-03-18 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
2704 4e91ef15 2021-09-26 stsp commit_id, base_commit_id, 1, repo, check_cancelled, NULL);
2705 2ab43947 2020-03-18 stsp if (err)
2706 2ab43947 2020-03-18 stsp return err;
2707 2ab43947 2020-03-18 stsp
2708 2ab43947 2020-03-18 stsp if (yca_id == NULL)
2709 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
2710 2ab43947 2020-03-18 stsp
2711 2ab43947 2020-03-18 stsp /*
2712 2ab43947 2020-03-18 stsp * Require a straight line of history between the target commit
2713 2ab43947 2020-03-18 stsp * and the work tree's base commit.
2714 2ab43947 2020-03-18 stsp *
2715 2ab43947 2020-03-18 stsp * Non-linear situations such as this require a rebase:
2716 2ab43947 2020-03-18 stsp *
2717 2ab43947 2020-03-18 stsp * (commit) D F (base_commit)
2718 2ab43947 2020-03-18 stsp * \ /
2719 2ab43947 2020-03-18 stsp * C E
2720 2ab43947 2020-03-18 stsp * \ /
2721 2ab43947 2020-03-18 stsp * B (yca)
2722 2ab43947 2020-03-18 stsp * |
2723 2ab43947 2020-03-18 stsp * A
2724 2ab43947 2020-03-18 stsp *
2725 2ab43947 2020-03-18 stsp * 'got update' only handles linear cases:
2726 2ab43947 2020-03-18 stsp * Update forwards in time: A (base/yca) - B - C - D (commit)
2727 2ab43947 2020-03-18 stsp * Update backwards in time: D (base) - C - B - A (commit/yca)
2728 2ab43947 2020-03-18 stsp */
2729 2ab43947 2020-03-18 stsp if (allow_forwards_in_time_only) {
2730 2ab43947 2020-03-18 stsp if (got_object_id_cmp(base_commit_id, yca_id) != 0)
2731 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
2732 2ab43947 2020-03-18 stsp } else if (got_object_id_cmp(commit_id, yca_id) != 0 &&
2733 2ab43947 2020-03-18 stsp got_object_id_cmp(base_commit_id, yca_id) != 0)
2734 2ab43947 2020-03-18 stsp return got_error(GOT_ERR_ANCESTRY);
2735 2ab43947 2020-03-18 stsp
2736 2ab43947 2020-03-18 stsp free(yca_id);
2737 2ab43947 2020-03-18 stsp return NULL;
2738 2ab43947 2020-03-18 stsp }
2739 2ab43947 2020-03-18 stsp
2740 2ab43947 2020-03-18 stsp static const struct got_error *
2741 2ab43947 2020-03-18 stsp check_same_branch(struct got_object_id *commit_id,
2742 2ab43947 2020-03-18 stsp struct got_reference *head_ref, struct got_object_id *yca_id,
2743 2ab43947 2020-03-18 stsp struct got_repository *repo)
2744 2ab43947 2020-03-18 stsp {
2745 2ab43947 2020-03-18 stsp const struct got_error *err = NULL;
2746 2ab43947 2020-03-18 stsp struct got_commit_graph *graph = NULL;
2747 2ab43947 2020-03-18 stsp struct got_object_id *head_commit_id = NULL;
2748 2ab43947 2020-03-18 stsp int is_same_branch = 0;
2749 2ab43947 2020-03-18 stsp
2750 2ab43947 2020-03-18 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
2751 2ab43947 2020-03-18 stsp if (err)
2752 2ab43947 2020-03-18 stsp goto done;
2753 2ab43947 2020-03-18 stsp
2754 2ab43947 2020-03-18 stsp if (got_object_id_cmp(head_commit_id, commit_id) == 0) {
2755 2ab43947 2020-03-18 stsp is_same_branch = 1;
2756 2ab43947 2020-03-18 stsp goto done;
2757 2ab43947 2020-03-18 stsp }
2758 2ab43947 2020-03-18 stsp if (yca_id && got_object_id_cmp(commit_id, yca_id) == 0) {
2759 2ab43947 2020-03-18 stsp is_same_branch = 1;
2760 2ab43947 2020-03-18 stsp goto done;
2761 2ab43947 2020-03-18 stsp }
2762 2ab43947 2020-03-18 stsp
2763 2ab43947 2020-03-18 stsp err = got_commit_graph_open(&graph, "/", 1);
2764 2ab43947 2020-03-18 stsp if (err)
2765 2ab43947 2020-03-18 stsp goto done;
2766 2ab43947 2020-03-18 stsp
2767 2ab43947 2020-03-18 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo,
2768 2ab43947 2020-03-18 stsp check_cancelled, NULL);
2769 2ab43947 2020-03-18 stsp if (err)
2770 2ab43947 2020-03-18 stsp goto done;
2771 2ab43947 2020-03-18 stsp
2772 2ab43947 2020-03-18 stsp for (;;) {
2773 2ab43947 2020-03-18 stsp struct got_object_id *id;
2774 2ab43947 2020-03-18 stsp err = got_commit_graph_iter_next(&id, graph, repo,
2775 2ab43947 2020-03-18 stsp check_cancelled, NULL);
2776 2ab43947 2020-03-18 stsp if (err) {
2777 2ab43947 2020-03-18 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
2778 2ab43947 2020-03-18 stsp err = NULL;
2779 2ab43947 2020-03-18 stsp break;
2780 2ab43947 2020-03-18 stsp }
2781 2ab43947 2020-03-18 stsp
2782 2ab43947 2020-03-18 stsp if (id) {
2783 2ab43947 2020-03-18 stsp if (yca_id && got_object_id_cmp(id, yca_id) == 0)
2784 2ab43947 2020-03-18 stsp break;
2785 2ab43947 2020-03-18 stsp if (got_object_id_cmp(id, commit_id) == 0) {
2786 2ab43947 2020-03-18 stsp is_same_branch = 1;
2787 2ab43947 2020-03-18 stsp break;
2788 2ab43947 2020-03-18 stsp }
2789 2ab43947 2020-03-18 stsp }
2790 2ab43947 2020-03-18 stsp }
2791 2ab43947 2020-03-18 stsp done:
2792 2ab43947 2020-03-18 stsp if (graph)
2793 2ab43947 2020-03-18 stsp got_commit_graph_close(graph);
2794 2ab43947 2020-03-18 stsp free(head_commit_id);
2795 2ab43947 2020-03-18 stsp if (!err && !is_same_branch)
2796 2ab43947 2020-03-18 stsp err = got_error(GOT_ERR_ANCESTRY);
2797 2ab43947 2020-03-18 stsp return err;
2798 a367ff0f 2019-05-14 stsp }
2799 8069f636 2019-01-12 stsp
2800 4ed7e80c 2018-05-20 stsp static const struct got_error *
2801 4b6c9460 2020-03-05 stsp checkout_ancestry_error(struct got_reference *ref, const char *commit_id_str)
2802 4b6c9460 2020-03-05 stsp {
2803 4b6c9460 2020-03-05 stsp static char msg[512];
2804 4b6c9460 2020-03-05 stsp const char *branch_name;
2805 4b6c9460 2020-03-05 stsp
2806 4b6c9460 2020-03-05 stsp if (got_ref_is_symbolic(ref))
2807 4b6c9460 2020-03-05 stsp branch_name = got_ref_get_symref_target(ref);
2808 4b6c9460 2020-03-05 stsp else
2809 4b6c9460 2020-03-05 stsp branch_name = got_ref_get_name(ref);
2810 4b6c9460 2020-03-05 stsp
2811 4b6c9460 2020-03-05 stsp if (strncmp("refs/heads/", branch_name, 11) == 0)
2812 4b6c9460 2020-03-05 stsp branch_name += 11;
2813 4b6c9460 2020-03-05 stsp
2814 4b6c9460 2020-03-05 stsp snprintf(msg, sizeof(msg),
2815 4b6c9460 2020-03-05 stsp "target commit is not contained in branch '%s'; "
2816 4b6c9460 2020-03-05 stsp "the branch to use must be specified with -b; "
2817 4b6c9460 2020-03-05 stsp "if necessary a new branch can be created for "
2818 4b6c9460 2020-03-05 stsp "this commit with 'got branch -c %s BRANCH_NAME'",
2819 4b6c9460 2020-03-05 stsp branch_name, commit_id_str);
2820 4b6c9460 2020-03-05 stsp
2821 4b6c9460 2020-03-05 stsp return got_error_msg(GOT_ERR_ANCESTRY, msg);
2822 4b6c9460 2020-03-05 stsp }
2823 4b6c9460 2020-03-05 stsp
2824 4b6c9460 2020-03-05 stsp static const struct got_error *
2825 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
2826 c09a553d 2018-03-12 stsp {
2827 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
2828 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
2829 08e5873e 2021-09-14 stsp struct got_reference *head_ref = NULL, *ref = NULL;
2830 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
2831 c09a553d 2018-03-12 stsp char *repo_path = NULL;
2832 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
2833 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
2834 08e5873e 2021-09-14 stsp const char *branch_name = GOT_REF_HEAD, *refname = NULL;
2835 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
2836 08e5873e 2021-09-14 stsp struct got_object_id *commit_id = NULL;
2837 f0207f6a 2020-10-19 stsp char *cwd = NULL;
2838 4ad4a1ec 2021-09-13 tracey int ch, same_path_prefix, allow_nonempty = 0, verbosity = 0;
2839 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
2840 7f47418f 2019-12-20 stsp struct got_checkout_progress_arg cpa;
2841 f2ea84fa 2019-07-27 stsp
2842 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
2843 c09a553d 2018-03-12 stsp
2844 4ad4a1ec 2021-09-13 tracey while ((ch = getopt(argc, argv, "b:c:Ep:q")) != -1) {
2845 0bb8a95e 2018-03-12 stsp switch (ch) {
2846 08573d5b 2019-05-14 stsp case 'b':
2847 08573d5b 2019-05-14 stsp branch_name = optarg;
2848 08573d5b 2019-05-14 stsp break;
2849 8069f636 2019-01-12 stsp case 'c':
2850 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
2851 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
2852 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
2853 bb51a5b4 2020-01-13 stsp break;
2854 bb51a5b4 2020-01-13 stsp case 'E':
2855 bb51a5b4 2020-01-13 stsp allow_nonempty = 1;
2856 8069f636 2019-01-12 stsp break;
2857 0bb8a95e 2018-03-12 stsp case 'p':
2858 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
2859 0bb8a95e 2018-03-12 stsp break;
2860 4ad4a1ec 2021-09-13 tracey case 'q':
2861 4ad4a1ec 2021-09-13 tracey verbosity = -1;
2862 4ad4a1ec 2021-09-13 tracey break;
2863 0bb8a95e 2018-03-12 stsp default:
2864 2deda0b9 2019-03-07 stsp usage_checkout();
2865 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
2866 0bb8a95e 2018-03-12 stsp }
2867 0bb8a95e 2018-03-12 stsp }
2868 0bb8a95e 2018-03-12 stsp
2869 0bb8a95e 2018-03-12 stsp argc -= optind;
2870 0bb8a95e 2018-03-12 stsp argv += optind;
2871 0bb8a95e 2018-03-12 stsp
2872 6715a751 2018-03-16 stsp #ifndef PROFILE
2873 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
2874 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
2875 c09a553d 2018-03-12 stsp err(1, "pledge");
2876 6715a751 2018-03-16 stsp #endif
2877 0bb8a95e 2018-03-12 stsp if (argc == 1) {
2878 c47340da 2020-09-20 stsp char *base, *dotgit;
2879 f0207f6a 2020-10-19 stsp const char *path;
2880 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
2881 76089277 2018-04-01 stsp if (repo_path == NULL)
2882 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
2883 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
2884 76089277 2018-04-01 stsp if (cwd == NULL) {
2885 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2886 76089277 2018-04-01 stsp goto done;
2887 76089277 2018-04-01 stsp }
2888 c47340da 2020-09-20 stsp if (path_prefix[0])
2889 f0207f6a 2020-10-19 stsp path = path_prefix;
2890 c47340da 2020-09-20 stsp else
2891 f0207f6a 2020-10-19 stsp path = repo_path;
2892 f0207f6a 2020-10-19 stsp error = got_path_basename(&base, path);
2893 f0207f6a 2020-10-19 stsp if (error)
2894 c47340da 2020-09-20 stsp goto done;
2895 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
2896 c09a553d 2018-03-12 stsp if (dotgit)
2897 c09a553d 2018-03-12 stsp *dotgit = '\0';
2898 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
2899 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
2900 f0207f6a 2020-10-19 stsp free(base);
2901 76089277 2018-04-01 stsp goto done;
2902 c09a553d 2018-03-12 stsp }
2903 f0207f6a 2020-10-19 stsp free(base);
2904 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
2905 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
2906 76089277 2018-04-01 stsp if (repo_path == NULL) {
2907 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2908 76089277 2018-04-01 stsp goto done;
2909 76089277 2018-04-01 stsp }
2910 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
2911 76089277 2018-04-01 stsp if (worktree_path == NULL) {
2912 b4b3a7dd 2019-07-22 stsp if (errno != ENOENT) {
2913 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno2("realpath",
2914 b4b3a7dd 2019-07-22 stsp argv[1]);
2915 b4b3a7dd 2019-07-22 stsp goto done;
2916 b4b3a7dd 2019-07-22 stsp }
2917 b4b3a7dd 2019-07-22 stsp worktree_path = strdup(argv[1]);
2918 b4b3a7dd 2019-07-22 stsp if (worktree_path == NULL) {
2919 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno("strdup");
2920 b4b3a7dd 2019-07-22 stsp goto done;
2921 b4b3a7dd 2019-07-22 stsp }
2922 76089277 2018-04-01 stsp }
2923 c09a553d 2018-03-12 stsp } else
2924 c09a553d 2018-03-12 stsp usage_checkout();
2925 c09a553d 2018-03-12 stsp
2926 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2927 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(worktree_path);
2928 13bfb272 2019-05-10 jcs
2929 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2930 c09a553d 2018-03-12 stsp if (error != NULL)
2931 c02c541e 2019-03-29 stsp goto done;
2932 c02c541e 2019-03-29 stsp
2933 c530dc23 2019-07-23 stsp /* Pre-create work tree path for unveil(2) */
2934 c530dc23 2019-07-23 stsp error = got_path_mkdir(worktree_path);
2935 c530dc23 2019-07-23 stsp if (error) {
2936 80c1b583 2019-08-07 stsp if (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
2937 80c1b583 2019-08-07 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2938 c530dc23 2019-07-23 stsp goto done;
2939 bb51a5b4 2020-01-13 stsp if (!allow_nonempty &&
2940 bb51a5b4 2020-01-13 stsp !got_path_dir_is_empty(worktree_path)) {
2941 c530dc23 2019-07-23 stsp error = got_error_path(worktree_path,
2942 c530dc23 2019-07-23 stsp GOT_ERR_DIR_NOT_EMPTY);
2943 c530dc23 2019-07-23 stsp goto done;
2944 c530dc23 2019-07-23 stsp }
2945 c530dc23 2019-07-23 stsp }
2946 c530dc23 2019-07-23 stsp
2947 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
2948 c02c541e 2019-03-29 stsp if (error)
2949 c09a553d 2018-03-12 stsp goto done;
2950 8069f636 2019-01-12 stsp
2951 08573d5b 2019-05-14 stsp error = got_ref_open(&head_ref, repo, branch_name, 0);
2952 c09a553d 2018-03-12 stsp if (error != NULL)
2953 c09a553d 2018-03-12 stsp goto done;
2954 c09a553d 2018-03-12 stsp
2955 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
2956 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
2957 c09a553d 2018-03-12 stsp goto done;
2958 c09a553d 2018-03-12 stsp
2959 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
2960 c09a553d 2018-03-12 stsp if (error != NULL)
2961 c09a553d 2018-03-12 stsp goto done;
2962 c09a553d 2018-03-12 stsp
2963 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
2964 e5dc7198 2018-12-29 stsp path_prefix);
2965 e5dc7198 2018-12-29 stsp if (error != NULL)
2966 e5dc7198 2018-12-29 stsp goto done;
2967 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
2968 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
2969 49520a32 2018-12-29 stsp goto done;
2970 49520a32 2018-12-29 stsp }
2971 49520a32 2018-12-29 stsp
2972 8069f636 2019-01-12 stsp if (commit_id_str) {
2973 84de9106 2020-12-26 stsp struct got_reflist_head refs;
2974 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
2975 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
2976 84de9106 2020-12-26 stsp NULL);
2977 84de9106 2020-12-26 stsp if (error)
2978 84de9106 2020-12-26 stsp goto done;
2979 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
2980 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &refs, repo);
2981 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
2982 30837e32 2019-07-25 stsp if (error)
2983 8069f636 2019-01-12 stsp goto done;
2984 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
2985 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
2986 8069f636 2019-01-12 stsp if (error != NULL) {
2987 8069f636 2019-01-12 stsp free(commit_id);
2988 4b6c9460 2020-03-05 stsp if (error->code == GOT_ERR_ANCESTRY) {
2989 4b6c9460 2020-03-05 stsp error = checkout_ancestry_error(
2990 4b6c9460 2020-03-05 stsp head_ref, commit_id_str);
2991 4b6c9460 2020-03-05 stsp }
2992 8069f636 2019-01-12 stsp goto done;
2993 8069f636 2019-01-12 stsp }
2994 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
2995 4b6c9460 2020-03-05 stsp if (error) {
2996 4b6c9460 2020-03-05 stsp if (error->code == GOT_ERR_ANCESTRY) {
2997 4b6c9460 2020-03-05 stsp error = checkout_ancestry_error(
2998 4b6c9460 2020-03-05 stsp head_ref, commit_id_str);
2999 4b6c9460 2020-03-05 stsp }
3000 45d344f6 2019-05-14 stsp goto done;
3001 4b6c9460 2020-03-05 stsp }
3002 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
3003 8069f636 2019-01-12 stsp commit_id);
3004 8069f636 2019-01-12 stsp if (error)
3005 8069f636 2019-01-12 stsp goto done;
3006 08e5873e 2021-09-14 stsp /* Expand potentially abbreviated commit ID string. */
3007 08e5873e 2021-09-14 stsp free(commit_id_str);
3008 08e5873e 2021-09-14 stsp error = got_object_id_str(&commit_id_str, commit_id);
3009 08e5873e 2021-09-14 stsp if (error)
3010 08e5873e 2021-09-14 stsp goto done;
3011 08e5873e 2021-09-14 stsp } else {
3012 08e5873e 2021-09-14 stsp commit_id = got_object_id_dup(
3013 08e5873e 2021-09-14 stsp got_worktree_get_base_commit_id(worktree));
3014 08e5873e 2021-09-14 stsp if (commit_id == NULL) {
3015 08e5873e 2021-09-14 stsp error = got_error_from_errno("got_object_id_dup");
3016 08e5873e 2021-09-14 stsp goto done;
3017 08e5873e 2021-09-14 stsp }
3018 08e5873e 2021-09-14 stsp error = got_object_id_str(&commit_id_str, commit_id);
3019 08e5873e 2021-09-14 stsp if (error)
3020 08e5873e 2021-09-14 stsp goto done;
3021 8069f636 2019-01-12 stsp }
3022 8069f636 2019-01-12 stsp
3023 adc19d55 2019-07-28 stsp error = got_pathlist_append(&paths, "", NULL);
3024 f2ea84fa 2019-07-27 stsp if (error)
3025 f2ea84fa 2019-07-27 stsp goto done;
3026 7f47418f 2019-12-20 stsp cpa.worktree_path = worktree_path;
3027 7f47418f 2019-12-20 stsp cpa.had_base_commit_ref_error = 0;
3028 4ad4a1ec 2021-09-13 tracey cpa.verbosity = verbosity;
3029 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
3030 7f47418f 2019-12-20 stsp checkout_progress, &cpa, check_cancelled, NULL);
3031 c09a553d 2018-03-12 stsp if (error != NULL)
3032 c09a553d 2018-03-12 stsp goto done;
3033 c09a553d 2018-03-12 stsp
3034 08e5873e 2021-09-14 stsp if (got_ref_is_symbolic(head_ref)) {
3035 08e5873e 2021-09-14 stsp error = got_ref_resolve_symbolic(&ref, repo, head_ref);
3036 08e5873e 2021-09-14 stsp if (error)
3037 08e5873e 2021-09-14 stsp goto done;
3038 08e5873e 2021-09-14 stsp refname = got_ref_get_name(ref);
3039 08e5873e 2021-09-14 stsp } else
3040 08e5873e 2021-09-14 stsp refname = got_ref_get_name(head_ref);
3041 08e5873e 2021-09-14 stsp printf("Checked out %s: %s\n", refname, commit_id_str);
3042 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
3043 7f47418f 2019-12-20 stsp if (cpa.had_base_commit_ref_error)
3044 7f47418f 2019-12-20 stsp show_worktree_base_ref_warning();
3045 c09a553d 2018-03-12 stsp done:
3046 08e5873e 2021-09-14 stsp if (head_ref)
3047 08e5873e 2021-09-14 stsp got_ref_close(head_ref);
3048 08e5873e 2021-09-14 stsp if (ref)
3049 08e5873e 2021-09-14 stsp got_ref_close(ref);
3050 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
3051 8069f636 2019-01-12 stsp free(commit_id_str);
3052 08e5873e 2021-09-14 stsp free(commit_id);
3053 76089277 2018-04-01 stsp free(repo_path);
3054 507dc3bb 2018-12-29 stsp free(worktree_path);
3055 c47340da 2020-09-20 stsp free(cwd);
3056 507dc3bb 2018-12-29 stsp return error;
3057 9627c110 2020-04-18 stsp }
3058 9627c110 2020-04-18 stsp
3059 9627c110 2020-04-18 stsp struct got_update_progress_arg {
3060 9627c110 2020-04-18 stsp int did_something;
3061 9627c110 2020-04-18 stsp int conflicts;
3062 9627c110 2020-04-18 stsp int obstructed;
3063 9627c110 2020-04-18 stsp int not_updated;
3064 f259c4c1 2021-09-24 stsp int missing;
3065 35ca1db7 2021-09-28 stsp int not_deleted;
3066 35ca1db7 2021-09-28 stsp int unversioned;
3067 4ad4a1ec 2021-09-13 tracey int verbosity;
3068 9627c110 2020-04-18 stsp };
3069 9627c110 2020-04-18 stsp
3070 9627c110 2020-04-18 stsp void
3071 9627c110 2020-04-18 stsp print_update_progress_stats(struct got_update_progress_arg *upa)
3072 9627c110 2020-04-18 stsp {
3073 9627c110 2020-04-18 stsp if (!upa->did_something)
3074 9627c110 2020-04-18 stsp return;
3075 9627c110 2020-04-18 stsp
3076 9627c110 2020-04-18 stsp if (upa->conflicts > 0)
3077 9627c110 2020-04-18 stsp printf("Files with new merge conflicts: %d\n", upa->conflicts);
3078 9627c110 2020-04-18 stsp if (upa->obstructed > 0)
3079 9627c110 2020-04-18 stsp printf("File paths obstructed by a non-regular file: %d\n",
3080 9627c110 2020-04-18 stsp upa->obstructed);
3081 9627c110 2020-04-18 stsp if (upa->not_updated > 0)
3082 9627c110 2020-04-18 stsp printf("Files not updated because of existing merge "
3083 9627c110 2020-04-18 stsp "conflicts: %d\n", upa->not_updated);
3084 507dc3bb 2018-12-29 stsp }
3085 507dc3bb 2018-12-29 stsp
3086 35ca1db7 2021-09-28 stsp /*
3087 35ca1db7 2021-09-28 stsp * The meaning of some status codes differs between merge-style operations and
3088 35ca1db7 2021-09-28 stsp * update operations. For example, the ! status code means "file was missing"
3089 35ca1db7 2021-09-28 stsp * if changes were merged into the work tree, and "missing file was restored"
3090 35ca1db7 2021-09-28 stsp * if the work tree was updated. This function should be used by any operation
3091 35ca1db7 2021-09-28 stsp * which merges changes into the work tree without updating the work tree.
3092 35ca1db7 2021-09-28 stsp */
3093 35ca1db7 2021-09-28 stsp void
3094 35ca1db7 2021-09-28 stsp print_merge_progress_stats(struct got_update_progress_arg *upa)
3095 35ca1db7 2021-09-28 stsp {
3096 35ca1db7 2021-09-28 stsp if (!upa->did_something)
3097 35ca1db7 2021-09-28 stsp return;
3098 35ca1db7 2021-09-28 stsp
3099 35ca1db7 2021-09-28 stsp if (upa->conflicts > 0)
3100 35ca1db7 2021-09-28 stsp printf("Files with new merge conflicts: %d\n", upa->conflicts);
3101 35ca1db7 2021-09-28 stsp if (upa->obstructed > 0)
3102 35ca1db7 2021-09-28 stsp printf("File paths obstructed by a non-regular file: %d\n",
3103 35ca1db7 2021-09-28 stsp upa->obstructed);
3104 35ca1db7 2021-09-28 stsp if (upa->missing > 0)
3105 35ca1db7 2021-09-28 stsp printf("Files which had incoming changes but could not be "
3106 35ca1db7 2021-09-28 stsp "found in the work tree: %d\n", upa->missing);
3107 35ca1db7 2021-09-28 stsp if (upa->not_deleted > 0)
3108 35ca1db7 2021-09-28 stsp printf("Files not deleted due to differences in deleted "
3109 35ca1db7 2021-09-28 stsp "content: %d\n", upa->not_deleted);
3110 35ca1db7 2021-09-28 stsp if (upa->unversioned > 0)
3111 35ca1db7 2021-09-28 stsp printf("Files not merged because an unversioned file was "
3112 35ca1db7 2021-09-28 stsp "found in the work tree: %d\n", upa->unversioned);
3113 35ca1db7 2021-09-28 stsp }
3114 35ca1db7 2021-09-28 stsp
3115 507dc3bb 2018-12-29 stsp __dead static void
3116 507dc3bb 2018-12-29 stsp usage_update(void)
3117 507dc3bb 2018-12-29 stsp {
3118 4ad4a1ec 2021-09-13 tracey fprintf(stderr, "usage: %s update [-b branch] [-c commit] [-q] "
3119 4ad4a1ec 2021-09-13 tracey "[path ...]\n",
3120 507dc3bb 2018-12-29 stsp getprogname());
3121 507dc3bb 2018-12-29 stsp exit(1);
3122 507dc3bb 2018-12-29 stsp }
3123 507dc3bb 2018-12-29 stsp
3124 1ee397ad 2019-07-12 stsp static const struct got_error *
3125 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
3126 507dc3bb 2018-12-29 stsp {
3127 9627c110 2020-04-18 stsp struct got_update_progress_arg *upa = arg;
3128 784955db 2019-01-12 stsp
3129 7f47418f 2019-12-20 stsp if (status == GOT_STATUS_EXISTS ||
3130 7f47418f 2019-12-20 stsp status == GOT_STATUS_BASE_REF_ERR)
3131 1ee397ad 2019-07-12 stsp return NULL;
3132 507dc3bb 2018-12-29 stsp
3133 9627c110 2020-04-18 stsp upa->did_something = 1;
3134 a484d721 2019-06-10 stsp
3135 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
3136 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
3137 1ee397ad 2019-07-12 stsp return NULL;
3138 a484d721 2019-06-10 stsp
3139 9627c110 2020-04-18 stsp if (status == GOT_STATUS_CONFLICT)
3140 9627c110 2020-04-18 stsp upa->conflicts++;
3141 9627c110 2020-04-18 stsp if (status == GOT_STATUS_OBSTRUCTED)
3142 9627c110 2020-04-18 stsp upa->obstructed++;
3143 9627c110 2020-04-18 stsp if (status == GOT_STATUS_CANNOT_UPDATE)
3144 9627c110 2020-04-18 stsp upa->not_updated++;
3145 f259c4c1 2021-09-24 stsp if (status == GOT_STATUS_MISSING)
3146 f259c4c1 2021-09-24 stsp upa->missing++;
3147 35ca1db7 2021-09-28 stsp if (status == GOT_STATUS_CANNOT_DELETE)
3148 35ca1db7 2021-09-28 stsp upa->not_deleted++;
3149 35ca1db7 2021-09-28 stsp if (status == GOT_STATUS_UNVERSIONED)
3150 35ca1db7 2021-09-28 stsp upa->unversioned++;
3151 9627c110 2020-04-18 stsp
3152 507dc3bb 2018-12-29 stsp while (path[0] == '/')
3153 507dc3bb 2018-12-29 stsp path++;
3154 4ad4a1ec 2021-09-13 tracey if (upa->verbosity >= 0)
3155 4ad4a1ec 2021-09-13 tracey printf("%c %s\n", status, path);
3156 4ad4a1ec 2021-09-13 tracey
3157 1ee397ad 2019-07-12 stsp return NULL;
3158 be7061eb 2018-12-30 stsp }
3159 be7061eb 2018-12-30 stsp
3160 be7061eb 2018-12-30 stsp static const struct got_error *
3161 a1fb16d8 2019-05-24 stsp switch_head_ref(struct got_reference *head_ref,
3162 a1fb16d8 2019-05-24 stsp struct got_object_id *commit_id, struct got_worktree *worktree,
3163 a1fb16d8 2019-05-24 stsp struct got_repository *repo)
3164 a1fb16d8 2019-05-24 stsp {
3165 a1fb16d8 2019-05-24 stsp const struct got_error *err = NULL;
3166 a1fb16d8 2019-05-24 stsp char *base_id_str;
3167 a1fb16d8 2019-05-24 stsp int ref_has_moved = 0;
3168 a1fb16d8 2019-05-24 stsp
3169 a1fb16d8 2019-05-24 stsp /* Trivial case: switching between two different references. */
3170 a1fb16d8 2019-05-24 stsp if (strcmp(got_ref_get_name(head_ref),
3171 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree)) != 0) {
3172 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n",
3173 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree),
3174 a1fb16d8 2019-05-24 stsp got_ref_get_name(head_ref));
3175 a1fb16d8 2019-05-24 stsp return got_worktree_set_head_ref(worktree, head_ref);
3176 a1fb16d8 2019-05-24 stsp }
3177 a1fb16d8 2019-05-24 stsp
3178 a1fb16d8 2019-05-24 stsp err = check_linear_ancestry(commit_id,
3179 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
3180 a1fb16d8 2019-05-24 stsp if (err) {
3181 a1fb16d8 2019-05-24 stsp if (err->code != GOT_ERR_ANCESTRY)
3182 a1fb16d8 2019-05-24 stsp return err;
3183 a1fb16d8 2019-05-24 stsp ref_has_moved = 1;
3184 a1fb16d8 2019-05-24 stsp }
3185 a1fb16d8 2019-05-24 stsp if (!ref_has_moved)
3186 a1fb16d8 2019-05-24 stsp return NULL;
3187 a1fb16d8 2019-05-24 stsp
3188 a1fb16d8 2019-05-24 stsp /* Switching to a rebased branch with the same reference name. */
3189 a1fb16d8 2019-05-24 stsp err = got_object_id_str(&base_id_str,
3190 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree));
3191 a1fb16d8 2019-05-24 stsp if (err)
3192 a1fb16d8 2019-05-24 stsp return err;
3193 a1fb16d8 2019-05-24 stsp printf("Reference %s now points at a different branch\n",
3194 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
3195 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n", base_id_str,
3196 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
3197 0ebf8283 2019-07-24 stsp return NULL;
3198 0ebf8283 2019-07-24 stsp }
3199 0ebf8283 2019-07-24 stsp
3200 0ebf8283 2019-07-24 stsp static const struct got_error *
3201 0ebf8283 2019-07-24 stsp check_rebase_or_histedit_in_progress(struct got_worktree *worktree)
3202 0ebf8283 2019-07-24 stsp {
3203 0ebf8283 2019-07-24 stsp const struct got_error *err;
3204 0ebf8283 2019-07-24 stsp int in_progress;
3205 0ebf8283 2019-07-24 stsp
3206 0ebf8283 2019-07-24 stsp err = got_worktree_rebase_in_progress(&in_progress, worktree);
3207 0ebf8283 2019-07-24 stsp if (err)
3208 0ebf8283 2019-07-24 stsp return err;
3209 0ebf8283 2019-07-24 stsp if (in_progress)
3210 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_REBASING);
3211 0ebf8283 2019-07-24 stsp
3212 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_in_progress(&in_progress, worktree);
3213 0ebf8283 2019-07-24 stsp if (err)
3214 0ebf8283 2019-07-24 stsp return err;
3215 0ebf8283 2019-07-24 stsp if (in_progress)
3216 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_BUSY);
3217 f259c4c1 2021-09-24 stsp
3218 f259c4c1 2021-09-24 stsp return NULL;
3219 f259c4c1 2021-09-24 stsp }
3220 f259c4c1 2021-09-24 stsp
3221 f259c4c1 2021-09-24 stsp static const struct got_error *
3222 f259c4c1 2021-09-24 stsp check_merge_in_progress(struct got_worktree *worktree,
3223 f259c4c1 2021-09-24 stsp struct got_repository *repo)
3224 f259c4c1 2021-09-24 stsp {
3225 f259c4c1 2021-09-24 stsp const struct got_error *err;
3226 f259c4c1 2021-09-24 stsp int in_progress;
3227 f259c4c1 2021-09-24 stsp
3228 f259c4c1 2021-09-24 stsp err = got_worktree_merge_in_progress(&in_progress, worktree, repo);
3229 f259c4c1 2021-09-24 stsp if (err)
3230 f259c4c1 2021-09-24 stsp return err;
3231 f259c4c1 2021-09-24 stsp if (in_progress)
3232 f259c4c1 2021-09-24 stsp return got_error(GOT_ERR_MERGE_BUSY);
3233 0ebf8283 2019-07-24 stsp
3234 a1fb16d8 2019-05-24 stsp return NULL;
3235 a5edda0a 2019-07-27 stsp }
3236 a5edda0a 2019-07-27 stsp
3237 a5edda0a 2019-07-27 stsp static const struct got_error *
3238 a5edda0a 2019-07-27 stsp get_worktree_paths_from_argv(struct got_pathlist_head *paths, int argc,
3239 a5edda0a 2019-07-27 stsp char *argv[], struct got_worktree *worktree)
3240 a5edda0a 2019-07-27 stsp {
3241 a0de39f3 2019-08-09 stsp const struct got_error *err = NULL;
3242 a5edda0a 2019-07-27 stsp char *path;
3243 a5edda0a 2019-07-27 stsp int i;
3244 a5edda0a 2019-07-27 stsp
3245 a5edda0a 2019-07-27 stsp if (argc == 0) {
3246 a5edda0a 2019-07-27 stsp path = strdup("");
3247 a5edda0a 2019-07-27 stsp if (path == NULL)
3248 a5edda0a 2019-07-27 stsp return got_error_from_errno("strdup");
3249 adc19d55 2019-07-28 stsp return got_pathlist_append(paths, path, NULL);
3250 a5edda0a 2019-07-27 stsp }
3251 a5edda0a 2019-07-27 stsp
3252 a5edda0a 2019-07-27 stsp for (i = 0; i < argc; i++) {
3253 a5edda0a 2019-07-27 stsp err = got_worktree_resolve_path(&path, worktree, argv[i]);
3254 a5edda0a 2019-07-27 stsp if (err)
3255 a5edda0a 2019-07-27 stsp break;
3256 adc19d55 2019-07-28 stsp err = got_pathlist_append(paths, path, NULL);
3257 a5edda0a 2019-07-27 stsp if (err) {
3258 a5edda0a 2019-07-27 stsp free(path);
3259 a5edda0a 2019-07-27 stsp break;
3260 a5edda0a 2019-07-27 stsp }
3261 a5edda0a 2019-07-27 stsp }
3262 a5edda0a 2019-07-27 stsp
3263 a5edda0a 2019-07-27 stsp return err;
3264 a1fb16d8 2019-05-24 stsp }
3265 a1fb16d8 2019-05-24 stsp
3266 a1fb16d8 2019-05-24 stsp static const struct got_error *
3267 fa51e947 2020-03-27 stsp wrap_not_worktree_error(const struct got_error *orig_err,
3268 fa51e947 2020-03-27 stsp const char *cmdname, const char *path)
3269 fa51e947 2020-03-27 stsp {
3270 fa51e947 2020-03-27 stsp const struct got_error *err;
3271 fa51e947 2020-03-27 stsp struct got_repository *repo;
3272 fa51e947 2020-03-27 stsp static char msg[512];
3273 fa51e947 2020-03-27 stsp
3274 fa51e947 2020-03-27 stsp err = got_repo_open(&repo, path, NULL);
3275 fa51e947 2020-03-27 stsp if (err)
3276 fa51e947 2020-03-27 stsp return orig_err;
3277 fa51e947 2020-03-27 stsp
3278 fa51e947 2020-03-27 stsp snprintf(msg, sizeof(msg),
3279 fa51e947 2020-03-27 stsp "'got %s' needs a work tree in addition to a git repository\n"
3280 fa51e947 2020-03-27 stsp "Work trees can be checked out from this Git repository with "
3281 fa51e947 2020-03-27 stsp "'got checkout'.\n"
3282 fa51e947 2020-03-27 stsp "The got(1) manual page contains more information.", cmdname);
3283 fa51e947 2020-03-27 stsp err = got_error_msg(GOT_ERR_NOT_WORKTREE, msg);
3284 fa51e947 2020-03-27 stsp got_repo_close(repo);
3285 fa51e947 2020-03-27 stsp return err;
3286 fa51e947 2020-03-27 stsp }
3287 fa51e947 2020-03-27 stsp
3288 fa51e947 2020-03-27 stsp static const struct got_error *
3289 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
3290 507dc3bb 2018-12-29 stsp {
3291 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
3292 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
3293 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
3294 f2ea84fa 2019-07-27 stsp char *worktree_path = NULL;
3295 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
3296 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
3297 024e9686 2019-05-14 stsp const char *branch_name = NULL;
3298 024e9686 2019-05-14 stsp struct got_reference *head_ref = NULL;
3299 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
3300 f2ea84fa 2019-07-27 stsp struct got_pathlist_entry *pe;
3301 4ad4a1ec 2021-09-13 tracey int ch, verbosity = 0;
3302 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
3303 507dc3bb 2018-12-29 stsp
3304 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
3305 f2ea84fa 2019-07-27 stsp
3306 4ad4a1ec 2021-09-13 tracey while ((ch = getopt(argc, argv, "b:c:q")) != -1) {
3307 507dc3bb 2018-12-29 stsp switch (ch) {
3308 024e9686 2019-05-14 stsp case 'b':
3309 024e9686 2019-05-14 stsp branch_name = optarg;
3310 024e9686 2019-05-14 stsp break;
3311 507dc3bb 2018-12-29 stsp case 'c':
3312 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
3313 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
3314 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
3315 4ad4a1ec 2021-09-13 tracey break;
3316 4ad4a1ec 2021-09-13 tracey case 'q':
3317 4ad4a1ec 2021-09-13 tracey verbosity = -1;
3318 507dc3bb 2018-12-29 stsp break;
3319 507dc3bb 2018-12-29 stsp default:
3320 2deda0b9 2019-03-07 stsp usage_update();
3321 507dc3bb 2018-12-29 stsp /* NOTREACHED */
3322 507dc3bb 2018-12-29 stsp }
3323 507dc3bb 2018-12-29 stsp }
3324 507dc3bb 2018-12-29 stsp
3325 507dc3bb 2018-12-29 stsp argc -= optind;
3326 507dc3bb 2018-12-29 stsp argv += optind;
3327 507dc3bb 2018-12-29 stsp
3328 507dc3bb 2018-12-29 stsp #ifndef PROFILE
3329 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
3330 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
3331 507dc3bb 2018-12-29 stsp err(1, "pledge");
3332 507dc3bb 2018-12-29 stsp #endif
3333 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
3334 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
3335 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3336 c4cdcb68 2019-04-03 stsp goto done;
3337 c4cdcb68 2019-04-03 stsp }
3338 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
3339 fa51e947 2020-03-27 stsp if (error) {
3340 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
3341 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "update",
3342 fa51e947 2020-03-27 stsp worktree_path);
3343 7d5807f4 2019-07-11 stsp goto done;
3344 fa51e947 2020-03-27 stsp }
3345 7d5807f4 2019-07-11 stsp
3346 0ebf8283 2019-07-24 stsp error = check_rebase_or_histedit_in_progress(worktree);
3347 f2ea84fa 2019-07-27 stsp if (error)
3348 f2ea84fa 2019-07-27 stsp goto done;
3349 507dc3bb 2018-12-29 stsp
3350 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
3351 c9956ddf 2019-09-08 stsp NULL);
3352 507dc3bb 2018-12-29 stsp if (error != NULL)
3353 507dc3bb 2018-12-29 stsp goto done;
3354 507dc3bb 2018-12-29 stsp
3355 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3356 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
3357 087fb88c 2019-08-04 stsp if (error)
3358 087fb88c 2019-08-04 stsp goto done;
3359 087fb88c 2019-08-04 stsp
3360 f259c4c1 2021-09-24 stsp error = check_merge_in_progress(worktree, repo);
3361 f259c4c1 2021-09-24 stsp if (error)
3362 f259c4c1 2021-09-24 stsp goto done;
3363 f259c4c1 2021-09-24 stsp
3364 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
3365 0266afb7 2019-01-04 stsp if (error)
3366 0266afb7 2019-01-04 stsp goto done;
3367 0266afb7 2019-01-04 stsp
3368 a1fb16d8 2019-05-24 stsp error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
3369 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree), 0);
3370 024e9686 2019-05-14 stsp if (error != NULL)
3371 024e9686 2019-05-14 stsp goto done;
3372 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
3373 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
3374 9c4b8182 2019-01-02 stsp if (error != NULL)
3375 9c4b8182 2019-01-02 stsp goto done;
3376 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
3377 507dc3bb 2018-12-29 stsp if (error != NULL)
3378 507dc3bb 2018-12-29 stsp goto done;
3379 507dc3bb 2018-12-29 stsp } else {
3380 84de9106 2020-12-26 stsp struct got_reflist_head refs;
3381 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
3382 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
3383 84de9106 2020-12-26 stsp NULL);
3384 84de9106 2020-12-26 stsp if (error)
3385 84de9106 2020-12-26 stsp goto done;
3386 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
3387 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &refs, repo);
3388 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
3389 04f57cb3 2019-07-25 stsp free(commit_id_str);
3390 bb787f09 2019-07-25 stsp commit_id_str = NULL;
3391 30837e32 2019-07-25 stsp if (error)
3392 a297e751 2019-07-11 stsp goto done;
3393 a297e751 2019-07-11 stsp error = got_object_id_str(&commit_id_str, commit_id);
3394 a297e751 2019-07-11 stsp if (error)
3395 507dc3bb 2018-12-29 stsp goto done;
3396 507dc3bb 2018-12-29 stsp }
3397 35c965b2 2018-12-29 stsp
3398 a1fb16d8 2019-05-24 stsp if (branch_name) {
3399 024e9686 2019-05-14 stsp struct got_object_id *head_commit_id;
3400 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry) {
3401 f2b16ada 2019-08-02 stsp if (pe->path_len == 0)
3402 f2ea84fa 2019-07-27 stsp continue;
3403 f2ea84fa 2019-07-27 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
3404 f2ea84fa 2019-07-27 stsp "switching between branches requires that "
3405 f2ea84fa 2019-07-27 stsp "the entire work tree gets updated");
3406 024e9686 2019-05-14 stsp goto done;
3407 024e9686 2019-05-14 stsp }
3408 024e9686 2019-05-14 stsp error = got_ref_resolve(&head_commit_id, repo, head_ref);
3409 024e9686 2019-05-14 stsp if (error)
3410 024e9686 2019-05-14 stsp goto done;
3411 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, head_commit_id, 0,
3412 3aef623b 2019-10-15 stsp repo);
3413 a367ff0f 2019-05-14 stsp free(head_commit_id);
3414 024e9686 2019-05-14 stsp if (error != NULL)
3415 024e9686 2019-05-14 stsp goto done;
3416 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
3417 a367ff0f 2019-05-14 stsp if (error)
3418 a367ff0f 2019-05-14 stsp goto done;
3419 a1fb16d8 2019-05-24 stsp error = switch_head_ref(head_ref, commit_id, worktree, repo);
3420 024e9686 2019-05-14 stsp if (error)
3421 024e9686 2019-05-14 stsp goto done;
3422 024e9686 2019-05-14 stsp } else {
3423 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
3424 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
3425 a367ff0f 2019-05-14 stsp if (error != NULL) {
3426 a367ff0f 2019-05-14 stsp if (error->code == GOT_ERR_ANCESTRY)
3427 a367ff0f 2019-05-14 stsp error = got_error(GOT_ERR_BRANCH_MOVED);
3428 024e9686 2019-05-14 stsp goto done;
3429 a367ff0f 2019-05-14 stsp }
3430 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
3431 a367ff0f 2019-05-14 stsp if (error)
3432 a367ff0f 2019-05-14 stsp goto done;
3433 024e9686 2019-05-14 stsp }
3434 507dc3bb 2018-12-29 stsp
3435 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
3436 507dc3bb 2018-12-29 stsp commit_id) != 0) {
3437 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
3438 507dc3bb 2018-12-29 stsp commit_id);
3439 507dc3bb 2018-12-29 stsp if (error)
3440 507dc3bb 2018-12-29 stsp goto done;
3441 507dc3bb 2018-12-29 stsp }
3442 507dc3bb 2018-12-29 stsp
3443 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
3444 4ad4a1ec 2021-09-13 tracey upa.verbosity = verbosity;
3445 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
3446 9627c110 2020-04-18 stsp update_progress, &upa, check_cancelled, NULL);
3447 507dc3bb 2018-12-29 stsp if (error != NULL)
3448 507dc3bb 2018-12-29 stsp goto done;
3449 9c4b8182 2019-01-02 stsp
3450 4f3c844b 2021-09-14 stsp if (upa.did_something) {
3451 4f3c844b 2021-09-14 stsp printf("Updated to %s: %s\n",
3452 4f3c844b 2021-09-14 stsp got_worktree_get_head_ref_name(worktree), commit_id_str);
3453 4f3c844b 2021-09-14 stsp } else
3454 784955db 2019-01-12 stsp printf("Already up-to-date\n");
3455 9627c110 2020-04-18 stsp print_update_progress_stats(&upa);
3456 507dc3bb 2018-12-29 stsp done:
3457 c09a553d 2018-03-12 stsp free(worktree_path);
3458 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
3459 f2ea84fa 2019-07-27 stsp free((char *)pe->path);
3460 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
3461 507dc3bb 2018-12-29 stsp free(commit_id);
3462 9c4b8182 2019-01-02 stsp free(commit_id_str);
3463 c09a553d 2018-03-12 stsp return error;
3464 c09a553d 2018-03-12 stsp }
3465 c09a553d 2018-03-12 stsp
3466 f42b1b34 2018-03-12 stsp static const struct got_error *
3467 44392932 2019-08-25 stsp diff_blobs(struct got_object_id *blob_id1, struct got_object_id *blob_id2,
3468 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
3469 64453f7e 2020-11-21 stsp int force_text_diff, struct got_repository *repo)
3470 5c860e29 2018-03-12 stsp {
3471 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
3472 44392932 2019-08-25 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
3473 79109fed 2018-03-27 stsp
3474 44392932 2019-08-25 stsp if (blob_id1) {
3475 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob1, repo, blob_id1, 8192);
3476 44392932 2019-08-25 stsp if (err)
3477 44392932 2019-08-25 stsp goto done;
3478 44392932 2019-08-25 stsp }
3479 79109fed 2018-03-27 stsp
3480 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob2, repo, blob_id2, 8192);
3481 44392932 2019-08-25 stsp if (err)
3482 44392932 2019-08-25 stsp goto done;
3483 79109fed 2018-03-27 stsp
3484 44392932 2019-08-25 stsp while (path[0] == '/')
3485 44392932 2019-08-25 stsp path++;
3486 fe621944 2020-11-10 stsp err = got_diff_blob(NULL, NULL, blob1, blob2, path, path,
3487 64453f7e 2020-11-21 stsp diff_context, ignore_whitespace, force_text_diff, stdout);
3488 44392932 2019-08-25 stsp done:
3489 44392932 2019-08-25 stsp if (blob1)
3490 44392932 2019-08-25 stsp got_object_blob_close(blob1);
3491 44392932 2019-08-25 stsp got_object_blob_close(blob2);
3492 44392932 2019-08-25 stsp return err;
3493 44392932 2019-08-25 stsp }
3494 44392932 2019-08-25 stsp
3495 44392932 2019-08-25 stsp static const struct got_error *
3496 44392932 2019-08-25 stsp diff_trees(struct got_object_id *tree_id1, struct got_object_id *tree_id2,
3497 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
3498 64453f7e 2020-11-21 stsp int force_text_diff, struct got_repository *repo)
3499 44392932 2019-08-25 stsp {
3500 44392932 2019-08-25 stsp const struct got_error *err = NULL;
3501 44392932 2019-08-25 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3502 44392932 2019-08-25 stsp struct got_diff_blob_output_unidiff_arg arg;
3503 44392932 2019-08-25 stsp
3504 44392932 2019-08-25 stsp if (tree_id1) {
3505 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3506 79109fed 2018-03-27 stsp if (err)
3507 44392932 2019-08-25 stsp goto done;
3508 79109fed 2018-03-27 stsp }
3509 79109fed 2018-03-27 stsp
3510 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3511 0f2b3dca 2018-12-22 stsp if (err)
3512 0f2b3dca 2018-12-22 stsp goto done;
3513 0f2b3dca 2018-12-22 stsp
3514 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
3515 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
3516 64453f7e 2020-11-21 stsp arg.force_text_diff = force_text_diff;
3517 aaa13589 2019-06-01 stsp arg.outfile = stdout;
3518 fe621944 2020-11-10 stsp arg.line_offsets = NULL;
3519 fe621944 2020-11-10 stsp arg.nlines = 0;
3520 44392932 2019-08-25 stsp while (path[0] == '/')
3521 44392932 2019-08-25 stsp path++;
3522 44392932 2019-08-25 stsp err = got_diff_tree(tree1, tree2, path, path, repo,
3523 31b4484f 2019-07-27 stsp got_diff_blob_output_unidiff, &arg, 1);
3524 0f2b3dca 2018-12-22 stsp done:
3525 79109fed 2018-03-27 stsp if (tree1)
3526 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
3527 366e0a5f 2019-10-10 stsp if (tree2)
3528 366e0a5f 2019-10-10 stsp got_object_tree_close(tree2);
3529 44392932 2019-08-25 stsp return err;
3530 44392932 2019-08-25 stsp }
3531 44392932 2019-08-25 stsp
3532 44392932 2019-08-25 stsp static const struct got_error *
3533 0208f208 2020-05-05 stsp get_changed_paths(struct got_pathlist_head *paths,
3534 0208f208 2020-05-05 stsp struct got_commit_object *commit, struct got_repository *repo)
3535 0208f208 2020-05-05 stsp {
3536 0208f208 2020-05-05 stsp const struct got_error *err = NULL;
3537 0208f208 2020-05-05 stsp struct got_object_id *tree_id1 = NULL, *tree_id2 = NULL;
3538 0208f208 2020-05-05 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3539 0208f208 2020-05-05 stsp struct got_object_qid *qid;
3540 0208f208 2020-05-05 stsp
3541 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
3542 0208f208 2020-05-05 stsp if (qid != NULL) {
3543 0208f208 2020-05-05 stsp struct got_commit_object *pcommit;
3544 0208f208 2020-05-05 stsp err = got_object_open_as_commit(&pcommit, repo,
3545 0208f208 2020-05-05 stsp qid->id);
3546 0208f208 2020-05-05 stsp if (err)
3547 0208f208 2020-05-05 stsp return err;
3548 0208f208 2020-05-05 stsp
3549 aa8b5dd0 2021-08-01 stsp tree_id1 = got_object_id_dup(
3550 aa8b5dd0 2021-08-01 stsp got_object_commit_get_tree_id(pcommit));
3551 aa8b5dd0 2021-08-01 stsp if (tree_id1 == NULL) {
3552 aa8b5dd0 2021-08-01 stsp got_object_commit_close(pcommit);
3553 aa8b5dd0 2021-08-01 stsp return got_error_from_errno("got_object_id_dup");
3554 aa8b5dd0 2021-08-01 stsp }
3555 0208f208 2020-05-05 stsp got_object_commit_close(pcommit);
3556 0208f208 2020-05-05 stsp
3557 0208f208 2020-05-05 stsp }
3558 0208f208 2020-05-05 stsp
3559 0208f208 2020-05-05 stsp if (tree_id1) {
3560 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
3561 0208f208 2020-05-05 stsp if (err)
3562 0208f208 2020-05-05 stsp goto done;
3563 0208f208 2020-05-05 stsp }
3564 0208f208 2020-05-05 stsp
3565 0208f208 2020-05-05 stsp tree_id2 = got_object_commit_get_tree_id(commit);
3566 0208f208 2020-05-05 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
3567 0208f208 2020-05-05 stsp if (err)
3568 0208f208 2020-05-05 stsp goto done;
3569 0208f208 2020-05-05 stsp
3570 0208f208 2020-05-05 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
3571 0208f208 2020-05-05 stsp got_diff_tree_collect_changed_paths, paths, 0);
3572 0208f208 2020-05-05 stsp done:
3573 0208f208 2020-05-05 stsp if (tree1)
3574 0208f208 2020-05-05 stsp got_object_tree_close(tree1);
3575 0208f208 2020-05-05 stsp if (tree2)
3576 0208f208 2020-05-05 stsp got_object_tree_close(tree2);
3577 aa8b5dd0 2021-08-01 stsp free(tree_id1);
3578 0208f208 2020-05-05 stsp return err;
3579 0208f208 2020-05-05 stsp }
3580 0208f208 2020-05-05 stsp
3581 0208f208 2020-05-05 stsp static const struct got_error *
3582 44392932 2019-08-25 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
3583 44392932 2019-08-25 stsp const char *path, int diff_context, struct got_repository *repo)
3584 44392932 2019-08-25 stsp {
3585 44392932 2019-08-25 stsp const struct got_error *err = NULL;
3586 44392932 2019-08-25 stsp struct got_commit_object *pcommit = NULL;
3587 44392932 2019-08-25 stsp char *id_str1 = NULL, *id_str2 = NULL;
3588 44392932 2019-08-25 stsp struct got_object_id *obj_id1 = NULL, *obj_id2 = NULL;
3589 44392932 2019-08-25 stsp struct got_object_qid *qid;
3590 44392932 2019-08-25 stsp
3591 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
3592 44392932 2019-08-25 stsp if (qid != NULL) {
3593 44392932 2019-08-25 stsp err = got_object_open_as_commit(&pcommit, repo,
3594 44392932 2019-08-25 stsp qid->id);
3595 44392932 2019-08-25 stsp if (err)
3596 44392932 2019-08-25 stsp return err;
3597 44392932 2019-08-25 stsp }
3598 44392932 2019-08-25 stsp
3599 44392932 2019-08-25 stsp if (path && path[0] != '\0') {
3600 44392932 2019-08-25 stsp int obj_type;
3601 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id2, repo, id, path);
3602 44392932 2019-08-25 stsp if (err)
3603 44392932 2019-08-25 stsp goto done;
3604 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
3605 44392932 2019-08-25 stsp if (err) {
3606 44392932 2019-08-25 stsp free(obj_id2);
3607 44392932 2019-08-25 stsp goto done;
3608 44392932 2019-08-25 stsp }
3609 44392932 2019-08-25 stsp if (pcommit) {
3610 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id1, repo,
3611 44392932 2019-08-25 stsp qid->id, path);
3612 44392932 2019-08-25 stsp if (err) {
3613 2e8c69d1 2020-05-04 stsp if (err->code != GOT_ERR_NO_TREE_ENTRY) {
3614 2e8c69d1 2020-05-04 stsp free(obj_id2);
3615 2e8c69d1 2020-05-04 stsp goto done;
3616 2e8c69d1 2020-05-04 stsp }
3617 2e8c69d1 2020-05-04 stsp } else {
3618 2e8c69d1 2020-05-04 stsp err = got_object_id_str(&id_str1, obj_id1);
3619 2e8c69d1 2020-05-04 stsp if (err) {
3620 2e8c69d1 2020-05-04 stsp free(obj_id2);
3621 2e8c69d1 2020-05-04 stsp goto done;
3622 2e8c69d1 2020-05-04 stsp }
3623 44392932 2019-08-25 stsp }
3624 44392932 2019-08-25 stsp }
3625 44392932 2019-08-25 stsp err = got_object_get_type(&obj_type, repo, obj_id2);
3626 44392932 2019-08-25 stsp if (err) {
3627 44392932 2019-08-25 stsp free(obj_id2);
3628 44392932 2019-08-25 stsp goto done;
3629 44392932 2019-08-25 stsp }
3630 44392932 2019-08-25 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
3631 44392932 2019-08-25 stsp switch (obj_type) {
3632 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_BLOB:
3633 44392932 2019-08-25 stsp err = diff_blobs(obj_id1, obj_id2, path, diff_context,
3634 64453f7e 2020-11-21 stsp 0, 0, repo);
3635 44392932 2019-08-25 stsp break;
3636 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_TREE:
3637 44392932 2019-08-25 stsp err = diff_trees(obj_id1, obj_id2, path, diff_context,
3638 64453f7e 2020-11-21 stsp 0, 0, repo);
3639 44392932 2019-08-25 stsp break;
3640 44392932 2019-08-25 stsp default:
3641 44392932 2019-08-25 stsp err = got_error(GOT_ERR_OBJ_TYPE);
3642 44392932 2019-08-25 stsp break;
3643 44392932 2019-08-25 stsp }
3644 44392932 2019-08-25 stsp free(obj_id1);
3645 44392932 2019-08-25 stsp free(obj_id2);
3646 44392932 2019-08-25 stsp } else {
3647 44392932 2019-08-25 stsp obj_id2 = got_object_commit_get_tree_id(commit);
3648 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
3649 44392932 2019-08-25 stsp if (err)
3650 44392932 2019-08-25 stsp goto done;
3651 579bd556 2020-10-24 stsp if (pcommit) {
3652 579bd556 2020-10-24 stsp obj_id1 = got_object_commit_get_tree_id(pcommit);
3653 579bd556 2020-10-24 stsp err = got_object_id_str(&id_str1, obj_id1);
3654 579bd556 2020-10-24 stsp if (err)
3655 579bd556 2020-10-24 stsp goto done;
3656 579bd556 2020-10-24 stsp }
3657 64453f7e 2020-11-21 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
3658 64453f7e 2020-11-21 stsp id_str2);
3659 64453f7e 2020-11-21 stsp err = diff_trees(obj_id1, obj_id2, "", diff_context, 0, 0,
3660 64453f7e 2020-11-21 stsp repo);
3661 44392932 2019-08-25 stsp }
3662 44392932 2019-08-25 stsp done:
3663 0f2b3dca 2018-12-22 stsp free(id_str1);
3664 0f2b3dca 2018-12-22 stsp free(id_str2);
3665 44392932 2019-08-25 stsp if (pcommit)
3666 44392932 2019-08-25 stsp got_object_commit_close(pcommit);
3667 79109fed 2018-03-27 stsp return err;
3668 79109fed 2018-03-27 stsp }
3669 79109fed 2018-03-27 stsp
3670 4bb494d5 2018-06-16 stsp static char *
3671 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
3672 6c281f94 2018-06-11 stsp {
3673 09867e48 2019-08-13 stsp struct tm mytm, *tm;
3674 09867e48 2019-08-13 stsp char *p, *s;
3675 09867e48 2019-08-13 stsp
3676 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
3677 09867e48 2019-08-13 stsp if (tm == NULL)
3678 09867e48 2019-08-13 stsp return NULL;
3679 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
3680 09867e48 2019-08-13 stsp if (s == NULL)
3681 09867e48 2019-08-13 stsp return NULL;
3682 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
3683 6c281f94 2018-06-11 stsp if (p)
3684 6c281f94 2018-06-11 stsp *p = '\0';
3685 6c281f94 2018-06-11 stsp return s;
3686 6c281f94 2018-06-11 stsp }
3687 dc424a06 2019-08-07 stsp
3688 6841bf13 2019-11-29 kn static const struct got_error *
3689 6841bf13 2019-11-29 kn match_logmsg(int *have_match, struct got_object_id *id,
3690 6841bf13 2019-11-29 kn struct got_commit_object *commit, regex_t *regex)
3691 6841bf13 2019-11-29 kn {
3692 6841bf13 2019-11-29 kn const struct got_error *err = NULL;
3693 6841bf13 2019-11-29 kn regmatch_t regmatch;
3694 6841bf13 2019-11-29 kn char *id_str = NULL, *logmsg = NULL;
3695 6841bf13 2019-11-29 kn
3696 6841bf13 2019-11-29 kn *have_match = 0;
3697 6841bf13 2019-11-29 kn
3698 6841bf13 2019-11-29 kn err = got_object_id_str(&id_str, id);
3699 6841bf13 2019-11-29 kn if (err)
3700 6841bf13 2019-11-29 kn return err;
3701 6841bf13 2019-11-29 kn
3702 6841bf13 2019-11-29 kn err = got_object_commit_get_logmsg(&logmsg, commit);
3703 6841bf13 2019-11-29 kn if (err)
3704 6841bf13 2019-11-29 kn goto done;
3705 6841bf13 2019-11-29 kn
3706 6841bf13 2019-11-29 kn if (regexec(regex, logmsg, 1, &regmatch, 0) == 0)
3707 6841bf13 2019-11-29 kn *have_match = 1;
3708 6841bf13 2019-11-29 kn done:
3709 6841bf13 2019-11-29 kn free(id_str);
3710 6841bf13 2019-11-29 kn free(logmsg);
3711 6841bf13 2019-11-29 kn return err;
3712 6841bf13 2019-11-29 kn }
3713 6841bf13 2019-11-29 kn
3714 0208f208 2020-05-05 stsp static void
3715 0208f208 2020-05-05 stsp match_changed_paths(int *have_match, struct got_pathlist_head *changed_paths,
3716 0208f208 2020-05-05 stsp regex_t *regex)
3717 0208f208 2020-05-05 stsp {
3718 0208f208 2020-05-05 stsp regmatch_t regmatch;
3719 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
3720 0208f208 2020-05-05 stsp
3721 0208f208 2020-05-05 stsp *have_match = 0;
3722 0208f208 2020-05-05 stsp
3723 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, changed_paths, entry) {
3724 0208f208 2020-05-05 stsp if (regexec(regex, pe->path, 1, &regmatch, 0) == 0) {
3725 0208f208 2020-05-05 stsp *have_match = 1;
3726 0208f208 2020-05-05 stsp break;
3727 0208f208 2020-05-05 stsp }
3728 0208f208 2020-05-05 stsp }
3729 0208f208 2020-05-05 stsp }
3730 0208f208 2020-05-05 stsp
3731 dc424a06 2019-08-07 stsp #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
3732 6c281f94 2018-06-11 stsp
3733 888b7d99 2020-12-26 stsp static const struct got_error*
3734 888b7d99 2020-12-26 stsp build_refs_str(char **refs_str, struct got_reflist_head *refs,
3735 888b7d99 2020-12-26 stsp struct got_object_id *id, struct got_repository *repo)
3736 888b7d99 2020-12-26 stsp {
3737 888b7d99 2020-12-26 stsp static const struct got_error *err = NULL;
3738 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
3739 888b7d99 2020-12-26 stsp char *s;
3740 888b7d99 2020-12-26 stsp const char *name;
3741 5c860e29 2018-03-12 stsp
3742 888b7d99 2020-12-26 stsp *refs_str = NULL;
3743 888b7d99 2020-12-26 stsp
3744 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, refs, entry) {
3745 a436ad14 2019-08-13 stsp struct got_tag_object *tag = NULL;
3746 48cae60d 2020-09-22 stsp struct got_object_id *ref_id;
3747 a436ad14 2019-08-13 stsp int cmp;
3748 a436ad14 2019-08-13 stsp
3749 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
3750 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
3751 d9498b20 2019-02-05 stsp continue;
3752 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
3753 199a4027 2019-02-02 stsp name += 5;
3754 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
3755 7143d404 2019-03-12 stsp continue;
3756 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
3757 e34f9ed6 2019-02-02 stsp name += 6;
3758 4343a07f 2020-04-24 stsp if (strncmp(name, "remotes/", 8) == 0) {
3759 141c2bff 2019-02-04 stsp name += 8;
3760 4343a07f 2020-04-24 stsp s = strstr(name, "/" GOT_REF_HEAD);
3761 4343a07f 2020-04-24 stsp if (s != NULL && s[strlen(s)] == '\0')
3762 4343a07f 2020-04-24 stsp continue;
3763 4343a07f 2020-04-24 stsp }
3764 48cae60d 2020-09-22 stsp err = got_ref_resolve(&ref_id, repo, re->ref);
3765 48cae60d 2020-09-22 stsp if (err)
3766 888b7d99 2020-12-26 stsp break;
3767 a436ad14 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
3768 48cae60d 2020-09-22 stsp err = got_object_open_as_tag(&tag, repo, ref_id);
3769 5d844a1e 2019-08-13 stsp if (err) {
3770 48cae60d 2020-09-22 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
3771 48cae60d 2020-09-22 stsp free(ref_id);
3772 888b7d99 2020-12-26 stsp break;
3773 48cae60d 2020-09-22 stsp }
3774 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
3775 5d844a1e 2019-08-13 stsp err = NULL;
3776 5d844a1e 2019-08-13 stsp tag = NULL;
3777 5d844a1e 2019-08-13 stsp }
3778 a436ad14 2019-08-13 stsp }
3779 a436ad14 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
3780 48cae60d 2020-09-22 stsp got_object_tag_get_object_id(tag) : ref_id, id);
3781 48cae60d 2020-09-22 stsp free(ref_id);
3782 a436ad14 2019-08-13 stsp if (tag)
3783 a436ad14 2019-08-13 stsp got_object_tag_close(tag);
3784 a436ad14 2019-08-13 stsp if (cmp != 0)
3785 a436ad14 2019-08-13 stsp continue;
3786 888b7d99 2020-12-26 stsp s = *refs_str;
3787 888b7d99 2020-12-26 stsp if (asprintf(refs_str, "%s%s%s", s ? s : "",
3788 888b7d99 2020-12-26 stsp s ? ", " : "", name) == -1) {
3789 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
3790 199a4027 2019-02-02 stsp free(s);
3791 888b7d99 2020-12-26 stsp *refs_str = NULL;
3792 888b7d99 2020-12-26 stsp break;
3793 199a4027 2019-02-02 stsp }
3794 199a4027 2019-02-02 stsp free(s);
3795 199a4027 2019-02-02 stsp }
3796 888b7d99 2020-12-26 stsp
3797 888b7d99 2020-12-26 stsp return err;
3798 888b7d99 2020-12-26 stsp }
3799 888b7d99 2020-12-26 stsp
3800 888b7d99 2020-12-26 stsp static const struct got_error *
3801 888b7d99 2020-12-26 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
3802 888b7d99 2020-12-26 stsp struct got_repository *repo, const char *path,
3803 888b7d99 2020-12-26 stsp struct got_pathlist_head *changed_paths, int show_patch,
3804 e600f124 2021-03-21 stsp int diff_context, struct got_reflist_object_id_map *refs_idmap,
3805 e600f124 2021-03-21 stsp const char *custom_refs_str)
3806 888b7d99 2020-12-26 stsp {
3807 888b7d99 2020-12-26 stsp const struct got_error *err = NULL;
3808 888b7d99 2020-12-26 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
3809 888b7d99 2020-12-26 stsp char datebuf[26];
3810 888b7d99 2020-12-26 stsp time_t committer_time;
3811 888b7d99 2020-12-26 stsp const char *author, *committer;
3812 888b7d99 2020-12-26 stsp char *refs_str = NULL;
3813 888b7d99 2020-12-26 stsp
3814 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
3815 8bf5b3c9 2018-03-17 stsp if (err)
3816 8bf5b3c9 2018-03-17 stsp return err;
3817 788c352e 2018-06-16 stsp
3818 e600f124 2021-03-21 stsp if (custom_refs_str == NULL) {
3819 e600f124 2021-03-21 stsp struct got_reflist_head *refs;
3820 e600f124 2021-03-21 stsp refs = got_reflist_object_id_map_lookup(refs_idmap, id);
3821 e600f124 2021-03-21 stsp if (refs) {
3822 e600f124 2021-03-21 stsp err = build_refs_str(&refs_str, refs, id, repo);
3823 e600f124 2021-03-21 stsp if (err)
3824 e600f124 2021-03-21 stsp goto done;
3825 e600f124 2021-03-21 stsp }
3826 888b7d99 2020-12-26 stsp }
3827 888b7d99 2020-12-26 stsp
3828 dc424a06 2019-08-07 stsp printf(GOT_COMMIT_SEP_STR);
3829 e600f124 2021-03-21 stsp if (custom_refs_str)
3830 e600f124 2021-03-21 stsp printf("commit %s (%s)\n", id_str, custom_refs_str);
3831 e600f124 2021-03-21 stsp else
3832 e600f124 2021-03-21 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
3833 e600f124 2021-03-21 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
3834 832c249c 2018-06-10 stsp free(id_str);
3835 d3d493d7 2019-02-21 stsp id_str = NULL;
3836 d3d493d7 2019-02-21 stsp free(refs_str);
3837 d3d493d7 2019-02-21 stsp refs_str = NULL;
3838 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
3839 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
3840 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
3841 09867e48 2019-08-13 stsp if (datestr)
3842 09867e48 2019-08-13 stsp printf("date: %s UTC\n", datestr);
3843 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
3844 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
3845 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
3846 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
3847 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
3848 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
3849 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
3850 3fe1abad 2018-06-10 stsp int n = 1;
3851 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
3852 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, parent_ids, entry) {
3853 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
3854 a0603db2 2018-06-10 stsp if (err)
3855 888b7d99 2020-12-26 stsp goto done;
3856 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
3857 a0603db2 2018-06-10 stsp free(id_str);
3858 888b7d99 2020-12-26 stsp id_str = NULL;
3859 a0603db2 2018-06-10 stsp }
3860 a0603db2 2018-06-10 stsp }
3861 832c249c 2018-06-10 stsp
3862 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
3863 5943eee2 2019-08-13 stsp if (err)
3864 888b7d99 2020-12-26 stsp goto done;
3865 8bf5b3c9 2018-03-17 stsp
3866 621015ac 2018-07-23 stsp logmsg = logmsg0;
3867 832c249c 2018-06-10 stsp do {
3868 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
3869 832c249c 2018-06-10 stsp if (line)
3870 832c249c 2018-06-10 stsp printf(" %s\n", line);
3871 832c249c 2018-06-10 stsp } while (line);
3872 621015ac 2018-07-23 stsp free(logmsg0);
3873 832c249c 2018-06-10 stsp
3874 0208f208 2020-05-05 stsp if (changed_paths) {
3875 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
3876 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, changed_paths, entry) {
3877 0208f208 2020-05-05 stsp struct got_diff_changed_path *cp = pe->data;
3878 0208f208 2020-05-05 stsp printf(" %c %s\n", cp->status, pe->path);
3879 0208f208 2020-05-05 stsp }
3880 0208f208 2020-05-05 stsp printf("\n");
3881 0208f208 2020-05-05 stsp }
3882 971751ac 2018-03-27 stsp if (show_patch) {
3883 44392932 2019-08-25 stsp err = print_patch(commit, id, path, diff_context, repo);
3884 971751ac 2018-03-27 stsp if (err == 0)
3885 971751ac 2018-03-27 stsp printf("\n");
3886 971751ac 2018-03-27 stsp }
3887 07862c20 2018-09-15 stsp
3888 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
3889 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
3890 888b7d99 2020-12-26 stsp done:
3891 888b7d99 2020-12-26 stsp free(id_str);
3892 888b7d99 2020-12-26 stsp free(refs_str);
3893 07862c20 2018-09-15 stsp return err;
3894 f42b1b34 2018-03-12 stsp }
3895 5c860e29 2018-03-12 stsp
3896 f42b1b34 2018-03-12 stsp static const struct got_error *
3897 d1fe46f9 2020-04-18 stsp print_commits(struct got_object_id *root_id, struct got_object_id *end_id,
3898 0208f208 2020-05-05 stsp struct got_repository *repo, const char *path, int show_changed_paths,
3899 0208f208 2020-05-05 stsp int show_patch, const char *search_pattern, int diff_context, int limit,
3900 888b7d99 2020-12-26 stsp int log_branches, int reverse_display_order,
3901 888b7d99 2020-12-26 stsp struct got_reflist_object_id_map *refs_idmap)
3902 f42b1b34 2018-03-12 stsp {
3903 f42b1b34 2018-03-12 stsp const struct got_error *err;
3904 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
3905 6841bf13 2019-11-29 kn regex_t regex;
3906 6841bf13 2019-11-29 kn int have_match;
3907 dbec59df 2020-04-18 stsp struct got_object_id_queue reversed_commits;
3908 dbec59df 2020-04-18 stsp struct got_object_qid *qid;
3909 dbec59df 2020-04-18 stsp struct got_commit_object *commit;
3910 0208f208 2020-05-05 stsp struct got_pathlist_head changed_paths;
3911 0208f208 2020-05-05 stsp struct got_pathlist_entry *pe;
3912 dbec59df 2020-04-18 stsp
3913 dbdddfee 2021-06-23 naddy STAILQ_INIT(&reversed_commits);
3914 0208f208 2020-05-05 stsp TAILQ_INIT(&changed_paths);
3915 372ccdbb 2018-06-10 stsp
3916 ccecc9fd 2020-04-18 stsp if (search_pattern && regcomp(&regex, search_pattern,
3917 ccecc9fd 2020-04-18 stsp REG_EXTENDED | REG_NOSUB | REG_NEWLINE))
3918 6841bf13 2019-11-29 kn return got_error_msg(GOT_ERR_REGEX, search_pattern);
3919 6841bf13 2019-11-29 kn
3920 48c8c60d 2020-01-27 stsp err = got_commit_graph_open(&graph, path, !log_branches);
3921 f42b1b34 2018-03-12 stsp if (err)
3922 f42b1b34 2018-03-12 stsp return err;
3923 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, root_id, repo,
3924 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
3925 372ccdbb 2018-06-10 stsp if (err)
3926 fcc85cad 2018-07-22 stsp goto done;
3927 656b1f76 2019-05-11 jcs for (;;) {
3928 372ccdbb 2018-06-10 stsp struct got_object_id *id;
3929 8bf5b3c9 2018-03-17 stsp
3930 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
3931 84453469 2018-11-11 stsp break;
3932 84453469 2018-11-11 stsp
3933 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&id, graph, repo,
3934 ee780d5c 2020-01-04 stsp check_cancelled, NULL);
3935 372ccdbb 2018-06-10 stsp if (err) {
3936 ee780d5c 2020-01-04 stsp if (err->code == GOT_ERR_ITER_COMPLETED)
3937 9ba79e04 2018-06-11 stsp err = NULL;
3938 ee780d5c 2020-01-04 stsp break;
3939 7e665116 2018-04-02 stsp }
3940 b43fbaa0 2018-06-11 stsp if (id == NULL)
3941 7e665116 2018-04-02 stsp break;
3942 b43fbaa0 2018-06-11 stsp
3943 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
3944 b43fbaa0 2018-06-11 stsp if (err)
3945 fcc85cad 2018-07-22 stsp break;
3946 6841bf13 2019-11-29 kn
3947 502b9684 2020-07-31 stsp if (show_changed_paths && !reverse_display_order) {
3948 0208f208 2020-05-05 stsp err = get_changed_paths(&changed_paths, commit, repo);
3949 0208f208 2020-05-05 stsp if (err)
3950 0208f208 2020-05-05 stsp break;
3951 0208f208 2020-05-05 stsp }
3952 0208f208 2020-05-05 stsp
3953 6841bf13 2019-11-29 kn if (search_pattern) {
3954 6841bf13 2019-11-29 kn err = match_logmsg(&have_match, id, commit, &regex);
3955 6841bf13 2019-11-29 kn if (err) {
3956 6841bf13 2019-11-29 kn got_object_commit_close(commit);
3957 6841bf13 2019-11-29 kn break;
3958 6841bf13 2019-11-29 kn }
3959 0208f208 2020-05-05 stsp if (have_match == 0 && show_changed_paths)
3960 0208f208 2020-05-05 stsp match_changed_paths(&have_match,
3961 0208f208 2020-05-05 stsp &changed_paths, &regex);
3962 6841bf13 2019-11-29 kn if (have_match == 0) {
3963 6841bf13 2019-11-29 kn got_object_commit_close(commit);
3964 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
3965 0208f208 2020-05-05 stsp free((char *)pe->path);
3966 0208f208 2020-05-05 stsp free(pe->data);
3967 0208f208 2020-05-05 stsp }
3968 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
3969 6841bf13 2019-11-29 kn continue;
3970 6841bf13 2019-11-29 kn }
3971 6841bf13 2019-11-29 kn }
3972 6841bf13 2019-11-29 kn
3973 dbec59df 2020-04-18 stsp if (reverse_display_order) {
3974 dbec59df 2020-04-18 stsp err = got_object_qid_alloc(&qid, id);
3975 dbec59df 2020-04-18 stsp if (err)
3976 dbec59df 2020-04-18 stsp break;
3977 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(&reversed_commits, qid, entry);
3978 dbec59df 2020-04-18 stsp got_object_commit_close(commit);
3979 dbec59df 2020-04-18 stsp } else {
3980 0208f208 2020-05-05 stsp err = print_commit(commit, id, repo, path,
3981 0208f208 2020-05-05 stsp show_changed_paths ? &changed_paths : NULL,
3982 e600f124 2021-03-21 stsp show_patch, diff_context, refs_idmap, NULL);
3983 dbec59df 2020-04-18 stsp got_object_commit_close(commit);
3984 dbec59df 2020-04-18 stsp if (err)
3985 dbec59df 2020-04-18 stsp break;
3986 dbec59df 2020-04-18 stsp }
3987 dbec59df 2020-04-18 stsp if ((limit && --limit == 0) ||
3988 dbec59df 2020-04-18 stsp (end_id && got_object_id_cmp(id, end_id) == 0))
3989 7e665116 2018-04-02 stsp break;
3990 0208f208 2020-05-05 stsp
3991 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
3992 0208f208 2020-05-05 stsp free((char *)pe->path);
3993 0208f208 2020-05-05 stsp free(pe->data);
3994 0208f208 2020-05-05 stsp }
3995 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
3996 31cedeaf 2018-09-15 stsp }
3997 dbec59df 2020-04-18 stsp if (reverse_display_order) {
3998 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, &reversed_commits, entry) {
3999 dbec59df 2020-04-18 stsp err = got_object_open_as_commit(&commit, repo, qid->id);
4000 dbec59df 2020-04-18 stsp if (err)
4001 dbec59df 2020-04-18 stsp break;
4002 502b9684 2020-07-31 stsp if (show_changed_paths) {
4003 502b9684 2020-07-31 stsp err = get_changed_paths(&changed_paths,
4004 502b9684 2020-07-31 stsp commit, repo);
4005 502b9684 2020-07-31 stsp if (err)
4006 502b9684 2020-07-31 stsp break;
4007 502b9684 2020-07-31 stsp }
4008 dbec59df 2020-04-18 stsp err = print_commit(commit, qid->id, repo, path,
4009 0208f208 2020-05-05 stsp show_changed_paths ? &changed_paths : NULL,
4010 e600f124 2021-03-21 stsp show_patch, diff_context, refs_idmap, NULL);
4011 dbec59df 2020-04-18 stsp got_object_commit_close(commit);
4012 dbec59df 2020-04-18 stsp if (err)
4013 dbec59df 2020-04-18 stsp break;
4014 502b9684 2020-07-31 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4015 502b9684 2020-07-31 stsp free((char *)pe->path);
4016 502b9684 2020-07-31 stsp free(pe->data);
4017 502b9684 2020-07-31 stsp }
4018 502b9684 2020-07-31 stsp got_pathlist_free(&changed_paths);
4019 dbec59df 2020-04-18 stsp }
4020 dbec59df 2020-04-18 stsp }
4021 fcc85cad 2018-07-22 stsp done:
4022 dbdddfee 2021-06-23 naddy while (!STAILQ_EMPTY(&reversed_commits)) {
4023 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(&reversed_commits);
4024 dbdddfee 2021-06-23 naddy STAILQ_REMOVE_HEAD(&reversed_commits, entry);
4025 dbec59df 2020-04-18 stsp got_object_qid_free(qid);
4026 dbec59df 2020-04-18 stsp }
4027 0208f208 2020-05-05 stsp TAILQ_FOREACH(pe, &changed_paths, entry) {
4028 0208f208 2020-05-05 stsp free((char *)pe->path);
4029 0208f208 2020-05-05 stsp free(pe->data);
4030 0208f208 2020-05-05 stsp }
4031 0208f208 2020-05-05 stsp got_pathlist_free(&changed_paths);
4032 6841bf13 2019-11-29 kn if (search_pattern)
4033 6841bf13 2019-11-29 kn regfree(&regex);
4034 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
4035 f42b1b34 2018-03-12 stsp return err;
4036 f42b1b34 2018-03-12 stsp }
4037 5c860e29 2018-03-12 stsp
4038 4ed7e80c 2018-05-20 stsp __dead static void
4039 6f3d1eb0 2018-03-12 stsp usage_log(void)
4040 6f3d1eb0 2018-03-12 stsp {
4041 d1fe46f9 2020-04-18 stsp fprintf(stderr, "usage: %s log [-b] [-c commit] [-C number] [ -l N ] "
4042 0208f208 2020-05-05 stsp "[-p] [-P] [-x commit] [-s search-pattern] [-r repository-path] "
4043 0208f208 2020-05-05 stsp "[-R] [path]\n", getprogname());
4044 6f3d1eb0 2018-03-12 stsp exit(1);
4045 b1ebc001 2019-08-13 stsp }
4046 b1ebc001 2019-08-13 stsp
4047 b1ebc001 2019-08-13 stsp static int
4048 b1ebc001 2019-08-13 stsp get_default_log_limit(void)
4049 b1ebc001 2019-08-13 stsp {
4050 b1ebc001 2019-08-13 stsp const char *got_default_log_limit;
4051 b1ebc001 2019-08-13 stsp long long n;
4052 b1ebc001 2019-08-13 stsp const char *errstr;
4053 b1ebc001 2019-08-13 stsp
4054 b1ebc001 2019-08-13 stsp got_default_log_limit = getenv("GOT_LOG_DEFAULT_LIMIT");
4055 b1ebc001 2019-08-13 stsp if (got_default_log_limit == NULL)
4056 b1ebc001 2019-08-13 stsp return 0;
4057 b1ebc001 2019-08-13 stsp n = strtonum(got_default_log_limit, 0, INT_MAX, &errstr);
4058 b1ebc001 2019-08-13 stsp if (errstr != NULL)
4059 b1ebc001 2019-08-13 stsp return 0;
4060 b1ebc001 2019-08-13 stsp return n;
4061 6f3d1eb0 2018-03-12 stsp }
4062 6f3d1eb0 2018-03-12 stsp
4063 4ed7e80c 2018-05-20 stsp static const struct got_error *
4064 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
4065 f42b1b34 2018-03-12 stsp {
4066 f42b1b34 2018-03-12 stsp const struct got_error *error;
4067 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
4068 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
4069 d1fe46f9 2020-04-18 stsp struct got_object_id *start_id = NULL, *end_id = NULL;
4070 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
4071 d1fe46f9 2020-04-18 stsp const char *start_commit = NULL, *end_commit = NULL;
4072 d1fe46f9 2020-04-18 stsp const char *search_pattern = NULL;
4073 dc1edbfa 2019-11-29 kn int diff_context = -1, ch;
4074 0208f208 2020-05-05 stsp int show_changed_paths = 0, show_patch = 0, limit = 0, log_branches = 0;
4075 dbec59df 2020-04-18 stsp int reverse_display_order = 0;
4076 64a96a6d 2018-04-01 stsp const char *errstr;
4077 199a4027 2019-02-02 stsp struct got_reflist_head refs;
4078 888b7d99 2020-12-26 stsp struct got_reflist_object_id_map *refs_idmap = NULL;
4079 1b3893a2 2019-03-18 stsp
4080 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
4081 5c860e29 2018-03-12 stsp
4082 6715a751 2018-03-16 stsp #ifndef PROFILE
4083 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4084 6098196c 2019-01-04 stsp NULL)
4085 ad242220 2018-09-08 stsp == -1)
4086 f42b1b34 2018-03-12 stsp err(1, "pledge");
4087 6715a751 2018-03-16 stsp #endif
4088 79109fed 2018-03-27 stsp
4089 b1ebc001 2019-08-13 stsp limit = get_default_log_limit();
4090 b1ebc001 2019-08-13 stsp
4091 0208f208 2020-05-05 stsp while ((ch = getopt(argc, argv, "bpPc:C:l:r:Rs:x:")) != -1) {
4092 79109fed 2018-03-27 stsp switch (ch) {
4093 79109fed 2018-03-27 stsp case 'p':
4094 79109fed 2018-03-27 stsp show_patch = 1;
4095 d142fc45 2018-04-01 stsp break;
4096 0208f208 2020-05-05 stsp case 'P':
4097 0208f208 2020-05-05 stsp show_changed_paths = 1;
4098 0208f208 2020-05-05 stsp break;
4099 d142fc45 2018-04-01 stsp case 'c':
4100 d142fc45 2018-04-01 stsp start_commit = optarg;
4101 64a96a6d 2018-04-01 stsp break;
4102 c0cc5c62 2018-10-18 stsp case 'C':
4103 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
4104 4a8520aa 2018-10-18 stsp &errstr);
4105 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
4106 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
4107 c0cc5c62 2018-10-18 stsp break;
4108 64a96a6d 2018-04-01 stsp case 'l':
4109 b1ebc001 2019-08-13 stsp limit = strtonum(optarg, 0, INT_MAX, &errstr);
4110 64a96a6d 2018-04-01 stsp if (errstr != NULL)
4111 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
4112 cc54c501 2019-07-15 stsp break;
4113 48c8c60d 2020-01-27 stsp case 'b':
4114 48c8c60d 2020-01-27 stsp log_branches = 1;
4115 a0603db2 2018-06-10 stsp break;
4116 04ca23f4 2018-07-16 stsp case 'r':
4117 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
4118 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
4119 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4120 9ba1d308 2019-10-21 stsp optarg);
4121 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
4122 04ca23f4 2018-07-16 stsp break;
4123 dbec59df 2020-04-18 stsp case 'R':
4124 dbec59df 2020-04-18 stsp reverse_display_order = 1;
4125 dbec59df 2020-04-18 stsp break;
4126 6841bf13 2019-11-29 kn case 's':
4127 6841bf13 2019-11-29 kn search_pattern = optarg;
4128 6841bf13 2019-11-29 kn break;
4129 d1fe46f9 2020-04-18 stsp case 'x':
4130 d1fe46f9 2020-04-18 stsp end_commit = optarg;
4131 d1fe46f9 2020-04-18 stsp break;
4132 79109fed 2018-03-27 stsp default:
4133 2deda0b9 2019-03-07 stsp usage_log();
4134 79109fed 2018-03-27 stsp /* NOTREACHED */
4135 79109fed 2018-03-27 stsp }
4136 79109fed 2018-03-27 stsp }
4137 79109fed 2018-03-27 stsp
4138 79109fed 2018-03-27 stsp argc -= optind;
4139 79109fed 2018-03-27 stsp argv += optind;
4140 f42b1b34 2018-03-12 stsp
4141 dc1edbfa 2019-11-29 kn if (diff_context == -1)
4142 dc1edbfa 2019-11-29 kn diff_context = 3;
4143 dc1edbfa 2019-11-29 kn else if (!show_patch)
4144 0429cd76 2020-09-15 naddy errx(1, "-C requires -p");
4145 dc1edbfa 2019-11-29 kn
4146 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
4147 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
4148 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4149 04ca23f4 2018-07-16 stsp goto done;
4150 04ca23f4 2018-07-16 stsp }
4151 cffc0aa4 2019-02-05 stsp
4152 50f2fada 2020-04-24 stsp if (repo_path == NULL) {
4153 50f2fada 2020-04-24 stsp error = got_worktree_open(&worktree, cwd);
4154 50f2fada 2020-04-24 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4155 50f2fada 2020-04-24 stsp goto done;
4156 50f2fada 2020-04-24 stsp error = NULL;
4157 50f2fada 2020-04-24 stsp }
4158 cffc0aa4 2019-02-05 stsp
4159 603cdeb0 2020-10-22 stsp if (argc == 1) {
4160 e7301579 2019-03-18 stsp if (worktree) {
4161 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
4162 e7301579 2019-03-18 stsp argv[0]);
4163 e7301579 2019-03-18 stsp if (error)
4164 e7301579 2019-03-18 stsp goto done;
4165 e7301579 2019-03-18 stsp } else {
4166 e7301579 2019-03-18 stsp path = strdup(argv[0]);
4167 e7301579 2019-03-18 stsp if (path == NULL) {
4168 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4169 e7301579 2019-03-18 stsp goto done;
4170 e7301579 2019-03-18 stsp }
4171 e7301579 2019-03-18 stsp }
4172 603cdeb0 2020-10-22 stsp } else if (argc != 0)
4173 cbd1af7a 2019-03-18 stsp usage_log();
4174 cbd1af7a 2019-03-18 stsp
4175 5486daa2 2019-05-11 stsp if (repo_path == NULL) {
4176 5486daa2 2019-05-11 stsp repo_path = worktree ?
4177 5486daa2 2019-05-11 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
4178 5486daa2 2019-05-11 stsp }
4179 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
4180 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
4181 cffc0aa4 2019-02-05 stsp goto done;
4182 04ca23f4 2018-07-16 stsp }
4183 6098196c 2019-01-04 stsp
4184 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4185 d7d4f210 2018-03-12 stsp if (error != NULL)
4186 04ca23f4 2018-07-16 stsp goto done;
4187 f42b1b34 2018-03-12 stsp
4188 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4189 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4190 c02c541e 2019-03-29 stsp if (error)
4191 c02c541e 2019-03-29 stsp goto done;
4192 c02c541e 2019-03-29 stsp
4193 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
4194 84de9106 2020-12-26 stsp if (error)
4195 84de9106 2020-12-26 stsp goto done;
4196 84de9106 2020-12-26 stsp
4197 888b7d99 2020-12-26 stsp error = got_reflist_object_id_map_create(&refs_idmap, &refs, repo);
4198 888b7d99 2020-12-26 stsp if (error)
4199 888b7d99 2020-12-26 stsp goto done;
4200 888b7d99 2020-12-26 stsp
4201 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
4202 3235492e 2018-04-01 stsp struct got_reference *head_ref;
4203 d1fe46f9 2020-04-18 stsp struct got_commit_object *commit = NULL;
4204 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
4205 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
4206 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
4207 3235492e 2018-04-01 stsp if (error != NULL)
4208 d1fe46f9 2020-04-18 stsp goto done;
4209 d1fe46f9 2020-04-18 stsp error = got_ref_resolve(&start_id, repo, head_ref);
4210 3235492e 2018-04-01 stsp got_ref_close(head_ref);
4211 3235492e 2018-04-01 stsp if (error != NULL)
4212 d1fe46f9 2020-04-18 stsp goto done;
4213 d1fe46f9 2020-04-18 stsp error = got_object_open_as_commit(&commit, repo,
4214 d1fe46f9 2020-04-18 stsp start_id);
4215 d1fe46f9 2020-04-18 stsp if (error != NULL)
4216 d1fe46f9 2020-04-18 stsp goto done;
4217 d1fe46f9 2020-04-18 stsp got_object_commit_close(commit);
4218 3235492e 2018-04-01 stsp } else {
4219 7f9bfb31 2020-11-01 stsp error = got_repo_match_object_id(&start_id, NULL,
4220 84de9106 2020-12-26 stsp start_commit, GOT_OBJ_TYPE_COMMIT, &refs, repo);
4221 d1fe46f9 2020-04-18 stsp if (error != NULL)
4222 d1fe46f9 2020-04-18 stsp goto done;
4223 3235492e 2018-04-01 stsp }
4224 d1fe46f9 2020-04-18 stsp if (end_commit != NULL) {
4225 7f9bfb31 2020-11-01 stsp error = got_repo_match_object_id(&end_id, NULL,
4226 84de9106 2020-12-26 stsp end_commit, GOT_OBJ_TYPE_COMMIT, &refs, repo);
4227 d1fe46f9 2020-04-18 stsp if (error != NULL)
4228 d1fe46f9 2020-04-18 stsp goto done;
4229 d1fe46f9 2020-04-18 stsp }
4230 04ca23f4 2018-07-16 stsp
4231 deeabeae 2019-08-27 stsp if (worktree) {
4232 603cdeb0 2020-10-22 stsp /*
4233 603cdeb0 2020-10-22 stsp * If a path was specified on the command line it was resolved
4234 603cdeb0 2020-10-22 stsp * to a path in the work tree above. Prepend the work tree's
4235 603cdeb0 2020-10-22 stsp * path prefix to obtain the corresponding in-repository path.
4236 603cdeb0 2020-10-22 stsp */
4237 603cdeb0 2020-10-22 stsp if (path) {
4238 603cdeb0 2020-10-22 stsp const char *prefix;
4239 603cdeb0 2020-10-22 stsp prefix = got_worktree_get_path_prefix(worktree);
4240 603cdeb0 2020-10-22 stsp if (asprintf(&in_repo_path, "%s%s%s", prefix,
4241 603cdeb0 2020-10-22 stsp (path[0] != '\0') ? "/" : "", path) == -1) {
4242 603cdeb0 2020-10-22 stsp error = got_error_from_errno("asprintf");
4243 603cdeb0 2020-10-22 stsp goto done;
4244 603cdeb0 2020-10-22 stsp }
4245 603cdeb0 2020-10-22 stsp }
4246 deeabeae 2019-08-27 stsp } else
4247 603cdeb0 2020-10-22 stsp error = got_repo_map_path(&in_repo_path, repo,
4248 8fa913ec 2020-11-14 stsp path ? path : "");
4249 04ca23f4 2018-07-16 stsp if (error != NULL)
4250 04ca23f4 2018-07-16 stsp goto done;
4251 04ca23f4 2018-07-16 stsp if (in_repo_path) {
4252 04ca23f4 2018-07-16 stsp free(path);
4253 04ca23f4 2018-07-16 stsp path = in_repo_path;
4254 04ca23f4 2018-07-16 stsp }
4255 199a4027 2019-02-02 stsp
4256 603cdeb0 2020-10-22 stsp error = print_commits(start_id, end_id, repo, path ? path : "",
4257 603cdeb0 2020-10-22 stsp show_changed_paths, show_patch, search_pattern, diff_context,
4258 888b7d99 2020-12-26 stsp limit, log_branches, reverse_display_order, refs_idmap);
4259 04ca23f4 2018-07-16 stsp done:
4260 04ca23f4 2018-07-16 stsp free(path);
4261 04ca23f4 2018-07-16 stsp free(repo_path);
4262 04ca23f4 2018-07-16 stsp free(cwd);
4263 cffc0aa4 2019-02-05 stsp if (worktree)
4264 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
4265 ad242220 2018-09-08 stsp if (repo) {
4266 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4267 ad242220 2018-09-08 stsp if (error == NULL)
4268 1d0f4054 2021-06-17 stsp error = close_err;
4269 ad242220 2018-09-08 stsp }
4270 888b7d99 2020-12-26 stsp if (refs_idmap)
4271 888b7d99 2020-12-26 stsp got_reflist_object_id_map_free(refs_idmap);
4272 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
4273 8bf5b3c9 2018-03-17 stsp return error;
4274 5c860e29 2018-03-12 stsp }
4275 5c860e29 2018-03-12 stsp
4276 4ed7e80c 2018-05-20 stsp __dead static void
4277 3f8b7d6a 2018-04-01 stsp usage_diff(void)
4278 3f8b7d6a 2018-04-01 stsp {
4279 67b631c9 2021-10-10 stsp fprintf(stderr, "usage: %s diff [-a] [-c commit1] [-c commit2] "
4280 67b631c9 2021-10-10 stsp "[-C number] [-r repository-path] "
4281 e7ffb0b0 2021-10-07 stsp "[-s] [-w] [-P] [object1 object2 | path ...]\n", getprogname());
4282 3f8b7d6a 2018-04-01 stsp exit(1);
4283 b00d56cd 2018-04-01 stsp }
4284 b00d56cd 2018-04-01 stsp
4285 b72f483a 2019-02-05 stsp struct print_diff_arg {
4286 b72f483a 2019-02-05 stsp struct got_repository *repo;
4287 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
4288 b72f483a 2019-02-05 stsp int diff_context;
4289 3fc0c068 2019-02-10 stsp const char *id_str;
4290 3fc0c068 2019-02-10 stsp int header_shown;
4291 98eaaa12 2019-08-03 stsp int diff_staged;
4292 63035f9f 2019-10-06 stsp int ignore_whitespace;
4293 64453f7e 2020-11-21 stsp int force_text_diff;
4294 b72f483a 2019-02-05 stsp };
4295 39449a05 2020-07-23 stsp
4296 39449a05 2020-07-23 stsp /*
4297 39449a05 2020-07-23 stsp * Create a file which contains the target path of a symlink so we can feed
4298 39449a05 2020-07-23 stsp * it as content to the diff engine.
4299 39449a05 2020-07-23 stsp */
4300 39449a05 2020-07-23 stsp static const struct got_error *
4301 39449a05 2020-07-23 stsp get_symlink_target_file(int *fd, int dirfd, const char *de_name,
4302 39449a05 2020-07-23 stsp const char *abspath)
4303 39449a05 2020-07-23 stsp {
4304 39449a05 2020-07-23 stsp const struct got_error *err = NULL;
4305 39449a05 2020-07-23 stsp char target_path[PATH_MAX];
4306 39449a05 2020-07-23 stsp ssize_t target_len, outlen;
4307 39449a05 2020-07-23 stsp
4308 39449a05 2020-07-23 stsp *fd = -1;
4309 39449a05 2020-07-23 stsp
4310 39449a05 2020-07-23 stsp if (dirfd != -1) {
4311 39449a05 2020-07-23 stsp target_len = readlinkat(dirfd, de_name, target_path, PATH_MAX);
4312 39449a05 2020-07-23 stsp if (target_len == -1)
4313 39449a05 2020-07-23 stsp return got_error_from_errno2("readlinkat", abspath);
4314 39449a05 2020-07-23 stsp } else {
4315 39449a05 2020-07-23 stsp target_len = readlink(abspath, target_path, PATH_MAX);
4316 39449a05 2020-07-23 stsp if (target_len == -1)
4317 39449a05 2020-07-23 stsp return got_error_from_errno2("readlink", abspath);
4318 39449a05 2020-07-23 stsp }
4319 39449a05 2020-07-23 stsp
4320 39449a05 2020-07-23 stsp *fd = got_opentempfd();
4321 39449a05 2020-07-23 stsp if (*fd == -1)
4322 39449a05 2020-07-23 stsp return got_error_from_errno("got_opentempfd");
4323 39449a05 2020-07-23 stsp
4324 39449a05 2020-07-23 stsp outlen = write(*fd, target_path, target_len);
4325 39449a05 2020-07-23 stsp if (outlen == -1) {
4326 39449a05 2020-07-23 stsp err = got_error_from_errno("got_opentempfd");
4327 39449a05 2020-07-23 stsp goto done;
4328 39449a05 2020-07-23 stsp }
4329 39449a05 2020-07-23 stsp
4330 39449a05 2020-07-23 stsp if (lseek(*fd, 0, SEEK_SET) == -1) {
4331 39449a05 2020-07-23 stsp err = got_error_from_errno2("lseek", abspath);
4332 39449a05 2020-07-23 stsp goto done;
4333 39449a05 2020-07-23 stsp }
4334 39449a05 2020-07-23 stsp done:
4335 39449a05 2020-07-23 stsp if (err) {
4336 39449a05 2020-07-23 stsp close(*fd);
4337 39449a05 2020-07-23 stsp *fd = -1;
4338 39449a05 2020-07-23 stsp }
4339 39449a05 2020-07-23 stsp return err;
4340 39449a05 2020-07-23 stsp }
4341 b72f483a 2019-02-05 stsp
4342 4ed7e80c 2018-05-20 stsp static const struct got_error *
4343 88d0e355 2019-08-03 stsp print_diff(void *arg, unsigned char status, unsigned char staged_status,
4344 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
4345 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
4346 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
4347 b72f483a 2019-02-05 stsp {
4348 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
4349 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
4350 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
4351 12463d8b 2019-12-13 stsp int fd = -1;
4352 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
4353 4ce46740 2019-08-08 stsp char *abspath = NULL, *label1 = NULL;
4354 b72f483a 2019-02-05 stsp struct stat sb;
4355 b72f483a 2019-02-05 stsp
4356 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
4357 98eaaa12 2019-08-03 stsp if (staged_status != GOT_STATUS_MODIFY &&
4358 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_ADD &&
4359 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
4360 98eaaa12 2019-08-03 stsp return NULL;
4361 98eaaa12 2019-08-03 stsp } else {
4362 98eaaa12 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
4363 98eaaa12 2019-08-03 stsp return NULL;
4364 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
4365 2a06fe5f 2019-08-24 stsp return got_error_set_errno(ENOENT, path);
4366 98eaaa12 2019-08-03 stsp if (status != GOT_STATUS_MODIFY &&
4367 98eaaa12 2019-08-03 stsp status != GOT_STATUS_ADD &&
4368 98eaaa12 2019-08-03 stsp status != GOT_STATUS_DELETE &&
4369 98eaaa12 2019-08-03 stsp status != GOT_STATUS_CONFLICT)
4370 98eaaa12 2019-08-03 stsp return NULL;
4371 98eaaa12 2019-08-03 stsp }
4372 3fc0c068 2019-02-10 stsp
4373 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
4374 98eaaa12 2019-08-03 stsp printf("diff %s %s%s\n", a->id_str,
4375 98eaaa12 2019-08-03 stsp got_worktree_get_root_path(a->worktree),
4376 98eaaa12 2019-08-03 stsp a->diff_staged ? " (staged changes)" : "");
4377 3fc0c068 2019-02-10 stsp a->header_shown = 1;
4378 3fc0c068 2019-02-10 stsp }
4379 b72f483a 2019-02-05 stsp
4380 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
4381 98eaaa12 2019-08-03 stsp const char *label1 = NULL, *label2 = NULL;
4382 98eaaa12 2019-08-03 stsp switch (staged_status) {
4383 98eaaa12 2019-08-03 stsp case GOT_STATUS_MODIFY:
4384 98eaaa12 2019-08-03 stsp label1 = path;
4385 98eaaa12 2019-08-03 stsp label2 = path;
4386 98eaaa12 2019-08-03 stsp break;
4387 98eaaa12 2019-08-03 stsp case GOT_STATUS_ADD:
4388 98eaaa12 2019-08-03 stsp label2 = path;
4389 98eaaa12 2019-08-03 stsp break;
4390 98eaaa12 2019-08-03 stsp case GOT_STATUS_DELETE:
4391 98eaaa12 2019-08-03 stsp label1 = path;
4392 98eaaa12 2019-08-03 stsp break;
4393 98eaaa12 2019-08-03 stsp default:
4394 98eaaa12 2019-08-03 stsp return got_error(GOT_ERR_FILE_STATUS);
4395 98eaaa12 2019-08-03 stsp }
4396 fe621944 2020-11-10 stsp return got_diff_objects_as_blobs(NULL, NULL, blob_id,
4397 fe621944 2020-11-10 stsp staged_blob_id, label1, label2, a->diff_context,
4398 64453f7e 2020-11-21 stsp a->ignore_whitespace, a->force_text_diff, a->repo, stdout);
4399 98eaaa12 2019-08-03 stsp }
4400 98eaaa12 2019-08-03 stsp
4401 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
4402 4ce46740 2019-08-08 stsp staged_status == GOT_STATUS_MODIFY) {
4403 4ce46740 2019-08-08 stsp char *id_str;
4404 408b4ebc 2019-08-03 stsp err = got_object_open_as_blob(&blob1, a->repo, staged_blob_id,
4405 408b4ebc 2019-08-03 stsp 8192);
4406 4ce46740 2019-08-08 stsp if (err)
4407 4ce46740 2019-08-08 stsp goto done;
4408 4ce46740 2019-08-08 stsp err = got_object_id_str(&id_str, staged_blob_id);
4409 4ce46740 2019-08-08 stsp if (err)
4410 4ce46740 2019-08-08 stsp goto done;
4411 4ce46740 2019-08-08 stsp if (asprintf(&label1, "%s (staged)", id_str) == -1) {
4412 4ce46740 2019-08-08 stsp err = got_error_from_errno("asprintf");
4413 4ce46740 2019-08-08 stsp free(id_str);
4414 4ce46740 2019-08-08 stsp goto done;
4415 4ce46740 2019-08-08 stsp }
4416 4ce46740 2019-08-08 stsp free(id_str);
4417 4ce46740 2019-08-08 stsp } else if (status != GOT_STATUS_ADD) {
4418 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
4419 4ce46740 2019-08-08 stsp if (err)
4420 4ce46740 2019-08-08 stsp goto done;
4421 4ce46740 2019-08-08 stsp }
4422 d00136be 2019-03-26 stsp
4423 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
4424 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
4425 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
4426 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
4427 2ec1f75b 2019-03-26 stsp goto done;
4428 2ec1f75b 2019-03-26 stsp }
4429 b72f483a 2019-02-05 stsp
4430 12463d8b 2019-12-13 stsp if (dirfd != -1) {
4431 12463d8b 2019-12-13 stsp fd = openat(dirfd, de_name, O_RDONLY | O_NOFOLLOW);
4432 12463d8b 2019-12-13 stsp if (fd == -1) {
4433 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink()) {
4434 39449a05 2020-07-23 stsp err = got_error_from_errno2("openat",
4435 39449a05 2020-07-23 stsp abspath);
4436 39449a05 2020-07-23 stsp goto done;
4437 39449a05 2020-07-23 stsp }
4438 39449a05 2020-07-23 stsp err = get_symlink_target_file(&fd, dirfd,
4439 39449a05 2020-07-23 stsp de_name, abspath);
4440 39449a05 2020-07-23 stsp if (err)
4441 39449a05 2020-07-23 stsp goto done;
4442 12463d8b 2019-12-13 stsp }
4443 12463d8b 2019-12-13 stsp } else {
4444 12463d8b 2019-12-13 stsp fd = open(abspath, O_RDONLY | O_NOFOLLOW);
4445 12463d8b 2019-12-13 stsp if (fd == -1) {
4446 5c02d2a5 2021-09-26 stsp if (!got_err_open_nofollow_on_symlink()) {
4447 39449a05 2020-07-23 stsp err = got_error_from_errno2("open",
4448 39449a05 2020-07-23 stsp abspath);
4449 39449a05 2020-07-23 stsp goto done;
4450 39449a05 2020-07-23 stsp }
4451 39449a05 2020-07-23 stsp err = get_symlink_target_file(&fd, dirfd,
4452 39449a05 2020-07-23 stsp de_name, abspath);
4453 39449a05 2020-07-23 stsp if (err)
4454 39449a05 2020-07-23 stsp goto done;
4455 12463d8b 2019-12-13 stsp }
4456 12463d8b 2019-12-13 stsp }
4457 12463d8b 2019-12-13 stsp if (fstat(fd, &sb) == -1) {
4458 12463d8b 2019-12-13 stsp err = got_error_from_errno2("fstat", abspath);
4459 2ec1f75b 2019-03-26 stsp goto done;
4460 2ec1f75b 2019-03-26 stsp }
4461 12463d8b 2019-12-13 stsp f2 = fdopen(fd, "r");
4462 12463d8b 2019-12-13 stsp if (f2 == NULL) {
4463 12463d8b 2019-12-13 stsp err = got_error_from_errno2("fdopen", abspath);
4464 2ec1f75b 2019-03-26 stsp goto done;
4465 2ec1f75b 2019-03-26 stsp }
4466 12463d8b 2019-12-13 stsp fd = -1;
4467 2ec1f75b 2019-03-26 stsp } else
4468 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
4469 b72f483a 2019-02-05 stsp
4470 4ce46740 2019-08-08 stsp err = got_diff_blob_file(blob1, label1, f2, sb.st_size, path,
4471 64453f7e 2020-11-21 stsp a->diff_context, a->ignore_whitespace, a->force_text_diff, stdout);
4472 b72f483a 2019-02-05 stsp done:
4473 b72f483a 2019-02-05 stsp if (blob1)
4474 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
4475 12463d8b 2019-12-13 stsp if (f2 && fclose(f2) == EOF && err == NULL)
4476 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
4477 12463d8b 2019-12-13 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
4478 12463d8b 2019-12-13 stsp err = got_error_from_errno("close");
4479 b72f483a 2019-02-05 stsp free(abspath);
4480 927df6b7 2019-02-10 stsp return err;
4481 927df6b7 2019-02-10 stsp }
4482 927df6b7 2019-02-10 stsp
4483 927df6b7 2019-02-10 stsp static const struct got_error *
4484 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
4485 b00d56cd 2018-04-01 stsp {
4486 b00d56cd 2018-04-01 stsp const struct got_error *error;
4487 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
4488 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
4489 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
4490 67b631c9 2021-10-10 stsp const char *commit_args[2] = { NULL, NULL };
4491 67b631c9 2021-10-10 stsp int ncommit_args = 0;
4492 e7ffb0b0 2021-10-07 stsp struct got_object_id *ids[2] = { NULL, NULL };
4493 e7ffb0b0 2021-10-07 stsp char *labels[2] = { NULL, NULL };
4494 67b631c9 2021-10-10 stsp int type1 = GOT_OBJ_TYPE_ANY, type2 = GOT_OBJ_TYPE_ANY;
4495 e7ffb0b0 2021-10-07 stsp int diff_context = 3, diff_staged = 0, ignore_whitespace = 0, ch, i;
4496 e7ffb0b0 2021-10-07 stsp int force_text_diff = 0, force_path = 0, rflag = 0;
4497 c0cc5c62 2018-10-18 stsp const char *errstr;
4498 84de9106 2020-12-26 stsp struct got_reflist_head refs;
4499 e7ffb0b0 2021-10-07 stsp struct got_pathlist_head paths;
4500 e7ffb0b0 2021-10-07 stsp struct got_pathlist_entry *pe;
4501 b00d56cd 2018-04-01 stsp
4502 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
4503 e7ffb0b0 2021-10-07 stsp TAILQ_INIT(&paths);
4504 84de9106 2020-12-26 stsp
4505 b00d56cd 2018-04-01 stsp #ifndef PROFILE
4506 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4507 25eccc22 2019-01-04 stsp NULL) == -1)
4508 b00d56cd 2018-04-01 stsp err(1, "pledge");
4509 b00d56cd 2018-04-01 stsp #endif
4510 b00d56cd 2018-04-01 stsp
4511 67b631c9 2021-10-10 stsp while ((ch = getopt(argc, argv, "ac:C:r:swP")) != -1) {
4512 b00d56cd 2018-04-01 stsp switch (ch) {
4513 64453f7e 2020-11-21 stsp case 'a':
4514 64453f7e 2020-11-21 stsp force_text_diff = 1;
4515 64453f7e 2020-11-21 stsp break;
4516 67b631c9 2021-10-10 stsp case 'c':
4517 67b631c9 2021-10-10 stsp if (ncommit_args >= 2)
4518 67b631c9 2021-10-10 stsp errx(1, "too many -c options used");
4519 67b631c9 2021-10-10 stsp commit_args[ncommit_args++] = optarg;
4520 67b631c9 2021-10-10 stsp break;
4521 c0cc5c62 2018-10-18 stsp case 'C':
4522 dfcab68b 2019-11-29 kn diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
4523 dfcab68b 2019-11-29 kn &errstr);
4524 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
4525 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
4526 c0cc5c62 2018-10-18 stsp break;
4527 b72f483a 2019-02-05 stsp case 'r':
4528 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
4529 b72f483a 2019-02-05 stsp if (repo_path == NULL)
4530 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4531 9ba1d308 2019-10-21 stsp optarg);
4532 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
4533 e7ffb0b0 2021-10-07 stsp rflag = 1;
4534 b72f483a 2019-02-05 stsp break;
4535 98eaaa12 2019-08-03 stsp case 's':
4536 98eaaa12 2019-08-03 stsp diff_staged = 1;
4537 63035f9f 2019-10-06 stsp break;
4538 63035f9f 2019-10-06 stsp case 'w':
4539 63035f9f 2019-10-06 stsp ignore_whitespace = 1;
4540 98eaaa12 2019-08-03 stsp break;
4541 e7ffb0b0 2021-10-07 stsp case 'P':
4542 e7ffb0b0 2021-10-07 stsp force_path = 1;
4543 e7ffb0b0 2021-10-07 stsp break;
4544 b00d56cd 2018-04-01 stsp default:
4545 2deda0b9 2019-03-07 stsp usage_diff();
4546 b00d56cd 2018-04-01 stsp /* NOTREACHED */
4547 b00d56cd 2018-04-01 stsp }
4548 b00d56cd 2018-04-01 stsp }
4549 b00d56cd 2018-04-01 stsp
4550 b00d56cd 2018-04-01 stsp argc -= optind;
4551 b00d56cd 2018-04-01 stsp argv += optind;
4552 b00d56cd 2018-04-01 stsp
4553 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
4554 b72f483a 2019-02-05 stsp if (cwd == NULL) {
4555 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4556 b72f483a 2019-02-05 stsp goto done;
4557 b72f483a 2019-02-05 stsp }
4558 e7ffb0b0 2021-10-07 stsp
4559 e7ffb0b0 2021-10-07 stsp if (repo_path == NULL) {
4560 1f03b8da 2020-03-20 stsp error = got_worktree_open(&worktree, cwd);
4561 e7ffb0b0 2021-10-07 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4562 1f03b8da 2020-03-20 stsp goto done;
4563 e7ffb0b0 2021-10-07 stsp else
4564 e7ffb0b0 2021-10-07 stsp error = NULL;
4565 e7ffb0b0 2021-10-07 stsp if (worktree) {
4566 e7ffb0b0 2021-10-07 stsp repo_path =
4567 e7ffb0b0 2021-10-07 stsp strdup(got_worktree_get_repo_path(worktree));
4568 e7ffb0b0 2021-10-07 stsp if (repo_path == NULL) {
4569 e7ffb0b0 2021-10-07 stsp error = got_error_from_errno("strdup");
4570 927df6b7 2019-02-10 stsp goto done;
4571 e7ffb0b0 2021-10-07 stsp }
4572 927df6b7 2019-02-10 stsp } else {
4573 e7ffb0b0 2021-10-07 stsp repo_path = strdup(cwd);
4574 1a1242a9 2021-04-01 kn if (repo_path == NULL) {
4575 1a1242a9 2021-04-01 kn error = got_error_from_errno("strdup");
4576 1a1242a9 2021-04-01 kn goto done;
4577 30db809c 2019-06-05 stsp }
4578 30db809c 2019-06-05 stsp }
4579 e7ffb0b0 2021-10-07 stsp }
4580 b00d56cd 2018-04-01 stsp
4581 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4582 76089277 2018-04-01 stsp free(repo_path);
4583 b00d56cd 2018-04-01 stsp if (error != NULL)
4584 b00d56cd 2018-04-01 stsp goto done;
4585 67b631c9 2021-10-10 stsp
4586 67b631c9 2021-10-10 stsp if (rflag || worktree == NULL || ncommit_args > 0) {
4587 67b631c9 2021-10-10 stsp if (force_path) {
4588 67b631c9 2021-10-10 stsp error = got_error_msg(GOT_ERR_NOT_IMPL,
4589 67b631c9 2021-10-10 stsp "-P option can only be used when diffing "
4590 67b631c9 2021-10-10 stsp "a work tree");
4591 67b631c9 2021-10-10 stsp goto done;
4592 67b631c9 2021-10-10 stsp }
4593 67b631c9 2021-10-10 stsp if (diff_staged) {
4594 67b631c9 2021-10-10 stsp error = got_error_msg(GOT_ERR_NOT_IMPL,
4595 67b631c9 2021-10-10 stsp "-s option can only be used when diffing "
4596 67b631c9 2021-10-10 stsp "a work tree");
4597 67b631c9 2021-10-10 stsp goto done;
4598 67b631c9 2021-10-10 stsp }
4599 67b631c9 2021-10-10 stsp }
4600 b00d56cd 2018-04-01 stsp
4601 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4602 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
4603 c02c541e 2019-03-29 stsp if (error)
4604 c02c541e 2019-03-29 stsp goto done;
4605 c02c541e 2019-03-29 stsp
4606 67b631c9 2021-10-10 stsp if ((!force_path && argc == 2) || ncommit_args > 0) {
4607 67b631c9 2021-10-10 stsp int obj_type = (ncommit_args > 0 ?
4608 67b631c9 2021-10-10 stsp GOT_OBJ_TYPE_COMMIT : GOT_OBJ_TYPE_ANY);
4609 e7ffb0b0 2021-10-07 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
4610 e7ffb0b0 2021-10-07 stsp NULL);
4611 e7ffb0b0 2021-10-07 stsp if (error)
4612 e7ffb0b0 2021-10-07 stsp goto done;
4613 67b631c9 2021-10-10 stsp for (i = 0; i < (ncommit_args > 0 ? ncommit_args : argc); i++) {
4614 67b631c9 2021-10-10 stsp const char *arg;
4615 67b631c9 2021-10-10 stsp if (ncommit_args > 0)
4616 67b631c9 2021-10-10 stsp arg = commit_args[i];
4617 67b631c9 2021-10-10 stsp else
4618 67b631c9 2021-10-10 stsp arg = argv[i];
4619 e7ffb0b0 2021-10-07 stsp error = got_repo_match_object_id(&ids[i], &labels[i],
4620 67b631c9 2021-10-10 stsp arg, obj_type, &refs, repo);
4621 e7ffb0b0 2021-10-07 stsp if (error) {
4622 e7ffb0b0 2021-10-07 stsp if (error->code != GOT_ERR_NOT_REF &&
4623 e7ffb0b0 2021-10-07 stsp error->code != GOT_ERR_NO_OBJ)
4624 e7ffb0b0 2021-10-07 stsp goto done;
4625 67b631c9 2021-10-10 stsp if (ncommit_args > 0)
4626 67b631c9 2021-10-10 stsp goto done;
4627 e7ffb0b0 2021-10-07 stsp error = NULL;
4628 e7ffb0b0 2021-10-07 stsp break;
4629 e7ffb0b0 2021-10-07 stsp }
4630 e7ffb0b0 2021-10-07 stsp }
4631 e7ffb0b0 2021-10-07 stsp }
4632 e7ffb0b0 2021-10-07 stsp
4633 67b631c9 2021-10-10 stsp if (ncommit_args == 0 && (ids[0] == NULL || ids[1] == NULL)) {
4634 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
4635 b72f483a 2019-02-05 stsp char *id_str;
4636 72ea6654 2019-07-27 stsp
4637 67b631c9 2021-10-10 stsp if (worktree == NULL) {
4638 67b631c9 2021-10-10 stsp if (argc == 2 && ids[0] == NULL) {
4639 67b631c9 2021-10-10 stsp error = got_error_path(argv[0], GOT_ERR_NO_OBJ);
4640 67b631c9 2021-10-10 stsp goto done;
4641 67b631c9 2021-10-10 stsp } else if (argc == 2 && ids[1] == NULL) {
4642 67b631c9 2021-10-10 stsp error = got_error_path(argv[1], GOT_ERR_NO_OBJ);
4643 67b631c9 2021-10-10 stsp goto done;
4644 67b631c9 2021-10-10 stsp } else if (argc > 0) {
4645 67b631c9 2021-10-10 stsp error = got_error_fmt(GOT_ERR_NOT_WORKTREE,
4646 67b631c9 2021-10-10 stsp "%s", "specified paths cannot be resolved");
4647 67b631c9 2021-10-10 stsp goto done;
4648 67b631c9 2021-10-10 stsp } else {
4649 67b631c9 2021-10-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
4650 67b631c9 2021-10-10 stsp goto done;
4651 67b631c9 2021-10-10 stsp }
4652 67b631c9 2021-10-10 stsp }
4653 67b631c9 2021-10-10 stsp
4654 67b631c9 2021-10-10 stsp error = get_worktree_paths_from_argv(&paths, argc, argv,
4655 67b631c9 2021-10-10 stsp worktree);
4656 67b631c9 2021-10-10 stsp if (error)
4657 67b631c9 2021-10-10 stsp goto done;
4658 67b631c9 2021-10-10 stsp
4659 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
4660 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
4661 b72f483a 2019-02-05 stsp if (error)
4662 b72f483a 2019-02-05 stsp goto done;
4663 b72f483a 2019-02-05 stsp arg.repo = repo;
4664 b72f483a 2019-02-05 stsp arg.worktree = worktree;
4665 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
4666 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
4667 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
4668 98eaaa12 2019-08-03 stsp arg.diff_staged = diff_staged;
4669 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
4670 64453f7e 2020-11-21 stsp arg.force_text_diff = force_text_diff;
4671 b72f483a 2019-02-05 stsp
4672 f6343036 2021-06-22 stsp error = got_worktree_status(worktree, &paths, repo, 0,
4673 f6343036 2021-06-22 stsp print_diff, &arg, check_cancelled, NULL);
4674 b72f483a 2019-02-05 stsp free(id_str);
4675 b72f483a 2019-02-05 stsp goto done;
4676 b72f483a 2019-02-05 stsp }
4677 84de9106 2020-12-26 stsp
4678 67b631c9 2021-10-10 stsp if (ncommit_args == 1) {
4679 67b631c9 2021-10-10 stsp struct got_commit_object *commit;
4680 67b631c9 2021-10-10 stsp error = got_object_open_as_commit(&commit, repo, ids[0]);
4681 67b631c9 2021-10-10 stsp if (error)
4682 e7ffb0b0 2021-10-07 stsp goto done;
4683 b00d56cd 2018-04-01 stsp
4684 67b631c9 2021-10-10 stsp labels[1] = labels[0];
4685 67b631c9 2021-10-10 stsp ids[1] = ids[0];
4686 67b631c9 2021-10-10 stsp if (got_object_commit_get_nparents(commit) > 0) {
4687 67b631c9 2021-10-10 stsp const struct got_object_id_queue *pids;
4688 67b631c9 2021-10-10 stsp struct got_object_qid *pid;
4689 67b631c9 2021-10-10 stsp pids = got_object_commit_get_parent_ids(commit);
4690 67b631c9 2021-10-10 stsp pid = STAILQ_FIRST(pids);
4691 67b631c9 2021-10-10 stsp ids[0] = got_object_id_dup(pid->id);
4692 67b631c9 2021-10-10 stsp if (ids[0] == NULL) {
4693 67b631c9 2021-10-10 stsp error = got_error_from_errno(
4694 67b631c9 2021-10-10 stsp "got_object_id_dup");
4695 67b631c9 2021-10-10 stsp got_object_commit_close(commit);
4696 67b631c9 2021-10-10 stsp goto done;
4697 67b631c9 2021-10-10 stsp }
4698 67b631c9 2021-10-10 stsp error = got_object_id_str(&labels[0], ids[0]);
4699 67b631c9 2021-10-10 stsp if (error) {
4700 67b631c9 2021-10-10 stsp got_object_commit_close(commit);
4701 67b631c9 2021-10-10 stsp goto done;
4702 67b631c9 2021-10-10 stsp }
4703 67b631c9 2021-10-10 stsp } else {
4704 67b631c9 2021-10-10 stsp ids[0] = NULL;
4705 67b631c9 2021-10-10 stsp labels[0] = strdup("/dev/null");
4706 67b631c9 2021-10-10 stsp if (labels[0] == NULL) {
4707 67b631c9 2021-10-10 stsp error = got_error_from_errno("strdup");
4708 67b631c9 2021-10-10 stsp got_object_commit_close(commit);
4709 67b631c9 2021-10-10 stsp goto done;
4710 67b631c9 2021-10-10 stsp }
4711 67b631c9 2021-10-10 stsp }
4712 67b631c9 2021-10-10 stsp
4713 67b631c9 2021-10-10 stsp got_object_commit_close(commit);
4714 67b631c9 2021-10-10 stsp }
4715 67b631c9 2021-10-10 stsp
4716 67b631c9 2021-10-10 stsp if (ncommit_args == 0 && argc > 2) {
4717 67b631c9 2021-10-10 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
4718 67b631c9 2021-10-10 stsp "path arguments cannot be used when diffing two objects");
4719 0adb7196 2019-08-11 stsp goto done;
4720 67b631c9 2021-10-10 stsp }
4721 b00d56cd 2018-04-01 stsp
4722 67b631c9 2021-10-10 stsp if (ids[0]) {
4723 67b631c9 2021-10-10 stsp error = got_object_get_type(&type1, repo, ids[0]);
4724 67b631c9 2021-10-10 stsp if (error)
4725 67b631c9 2021-10-10 stsp goto done;
4726 67b631c9 2021-10-10 stsp }
4727 67b631c9 2021-10-10 stsp
4728 e7ffb0b0 2021-10-07 stsp error = got_object_get_type(&type2, repo, ids[1]);
4729 15a94983 2018-12-23 stsp if (error)
4730 15a94983 2018-12-23 stsp goto done;
4731 67b631c9 2021-10-10 stsp if (type1 != GOT_OBJ_TYPE_ANY && type1 != type2) {
4732 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
4733 b00d56cd 2018-04-01 stsp goto done;
4734 b00d56cd 2018-04-01 stsp }
4735 67b631c9 2021-10-10 stsp if (type1 == GOT_OBJ_TYPE_BLOB && argc > 0) {
4736 67b631c9 2021-10-10 stsp error = got_error_msg(GOT_ERR_OBJ_TYPE,
4737 67b631c9 2021-10-10 stsp "path arguments cannot be used when diffing blobs");
4738 67b631c9 2021-10-10 stsp goto done;
4739 67b631c9 2021-10-10 stsp }
4740 b00d56cd 2018-04-01 stsp
4741 67b631c9 2021-10-10 stsp for (i = 0; ncommit_args > 0 && i < argc; i++) {
4742 67b631c9 2021-10-10 stsp char *in_repo_path;
4743 67b631c9 2021-10-10 stsp struct got_pathlist_entry *new;
4744 67b631c9 2021-10-10 stsp if (worktree) {
4745 67b631c9 2021-10-10 stsp const char *prefix;
4746 67b631c9 2021-10-10 stsp char *p;
4747 67b631c9 2021-10-10 stsp error = got_worktree_resolve_path(&p, worktree,
4748 67b631c9 2021-10-10 stsp argv[i]);
4749 67b631c9 2021-10-10 stsp if (error)
4750 67b631c9 2021-10-10 stsp goto done;
4751 67b631c9 2021-10-10 stsp prefix = got_worktree_get_path_prefix(worktree);
4752 67b631c9 2021-10-10 stsp while (prefix[0] == '/')
4753 67b631c9 2021-10-10 stsp prefix++;
4754 67b631c9 2021-10-10 stsp if (asprintf(&in_repo_path, "%s%s%s", prefix,
4755 67b631c9 2021-10-10 stsp (p[0] != '\0' && prefix[0] != '\0') ? "/" : "",
4756 67b631c9 2021-10-10 stsp p) == -1) {
4757 67b631c9 2021-10-10 stsp error = got_error_from_errno("asprintf");
4758 67b631c9 2021-10-10 stsp free(p);
4759 67b631c9 2021-10-10 stsp goto done;
4760 67b631c9 2021-10-10 stsp }
4761 67b631c9 2021-10-10 stsp free(p);
4762 67b631c9 2021-10-10 stsp } else {
4763 67b631c9 2021-10-10 stsp char *mapped_path, *s;
4764 67b631c9 2021-10-10 stsp error = got_repo_map_path(&mapped_path, repo, argv[i]);
4765 67b631c9 2021-10-10 stsp if (error)
4766 67b631c9 2021-10-10 stsp goto done;
4767 67b631c9 2021-10-10 stsp s = mapped_path;
4768 67b631c9 2021-10-10 stsp while (s[0] == '/')
4769 67b631c9 2021-10-10 stsp s++;
4770 67b631c9 2021-10-10 stsp in_repo_path = strdup(s);
4771 67b631c9 2021-10-10 stsp if (in_repo_path == NULL) {
4772 67b631c9 2021-10-10 stsp error = got_error_from_errno("asprintf");
4773 67b631c9 2021-10-10 stsp free(mapped_path);
4774 67b631c9 2021-10-10 stsp goto done;
4775 67b631c9 2021-10-10 stsp }
4776 67b631c9 2021-10-10 stsp free(mapped_path);
4777 67b631c9 2021-10-10 stsp
4778 67b631c9 2021-10-10 stsp }
4779 67b631c9 2021-10-10 stsp error = got_pathlist_insert(&new, &paths, in_repo_path, NULL);
4780 67b631c9 2021-10-10 stsp if (error || new == NULL /* duplicate */)
4781 67b631c9 2021-10-10 stsp free(in_repo_path);
4782 67b631c9 2021-10-10 stsp if (error)
4783 67b631c9 2021-10-10 stsp goto done;
4784 67b631c9 2021-10-10 stsp }
4785 67b631c9 2021-10-10 stsp
4786 67b631c9 2021-10-10 stsp switch (type1 == GOT_OBJ_TYPE_ANY ? type2 : type1) {
4787 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
4788 e7ffb0b0 2021-10-07 stsp error = got_diff_objects_as_blobs(NULL, NULL, ids[0], ids[1],
4789 64453f7e 2020-11-21 stsp NULL, NULL, diff_context, ignore_whitespace,
4790 64453f7e 2020-11-21 stsp force_text_diff, repo, stdout);
4791 b00d56cd 2018-04-01 stsp break;
4792 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
4793 e7ffb0b0 2021-10-07 stsp error = got_diff_objects_as_trees(NULL, NULL, ids[0], ids[1],
4794 67b631c9 2021-10-10 stsp &paths, "", "", diff_context, ignore_whitespace,
4795 67b631c9 2021-10-10 stsp force_text_diff, repo, stdout);
4796 b00d56cd 2018-04-01 stsp break;
4797 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
4798 e7ffb0b0 2021-10-07 stsp printf("diff %s %s\n", labels[0], labels[1]);
4799 e7ffb0b0 2021-10-07 stsp error = got_diff_objects_as_commits(NULL, NULL, ids[0], ids[1],
4800 67b631c9 2021-10-10 stsp &paths, diff_context, ignore_whitespace, force_text_diff,
4801 67b631c9 2021-10-10 stsp repo, stdout);
4802 b00d56cd 2018-04-01 stsp break;
4803 b00d56cd 2018-04-01 stsp default:
4804 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
4805 b00d56cd 2018-04-01 stsp }
4806 b00d56cd 2018-04-01 stsp done:
4807 e7ffb0b0 2021-10-07 stsp free(labels[0]);
4808 e7ffb0b0 2021-10-07 stsp free(labels[1]);
4809 e7ffb0b0 2021-10-07 stsp free(ids[0]);
4810 e7ffb0b0 2021-10-07 stsp free(ids[1]);
4811 b72f483a 2019-02-05 stsp if (worktree)
4812 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
4813 ad242220 2018-09-08 stsp if (repo) {
4814 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
4815 ad242220 2018-09-08 stsp if (error == NULL)
4816 1d0f4054 2021-06-17 stsp error = close_err;
4817 ad242220 2018-09-08 stsp }
4818 e7ffb0b0 2021-10-07 stsp TAILQ_FOREACH(pe, &paths, entry)
4819 e7ffb0b0 2021-10-07 stsp free((char *)pe->path);
4820 e7ffb0b0 2021-10-07 stsp got_pathlist_free(&paths);
4821 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
4822 b00d56cd 2018-04-01 stsp return error;
4823 404c43c4 2018-06-21 stsp }
4824 404c43c4 2018-06-21 stsp
4825 404c43c4 2018-06-21 stsp __dead static void
4826 404c43c4 2018-06-21 stsp usage_blame(void)
4827 404c43c4 2018-06-21 stsp {
4828 9270e621 2019-02-05 stsp fprintf(stderr,
4829 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
4830 404c43c4 2018-06-21 stsp getprogname());
4831 404c43c4 2018-06-21 stsp exit(1);
4832 b00d56cd 2018-04-01 stsp }
4833 b00d56cd 2018-04-01 stsp
4834 28315671 2019-08-14 stsp struct blame_line {
4835 28315671 2019-08-14 stsp int annotated;
4836 28315671 2019-08-14 stsp char *id_str;
4837 82f6abb8 2019-08-14 stsp char *committer;
4838 11db6024 2019-10-21 stsp char datebuf[11]; /* YYYY-MM-DD + NUL */
4839 28315671 2019-08-14 stsp };
4840 28315671 2019-08-14 stsp
4841 28315671 2019-08-14 stsp struct blame_cb_args {
4842 28315671 2019-08-14 stsp struct blame_line *lines;
4843 28315671 2019-08-14 stsp int nlines;
4844 7ef28ff8 2019-08-14 stsp int nlines_prec;
4845 28315671 2019-08-14 stsp int lineno_cur;
4846 28315671 2019-08-14 stsp off_t *line_offsets;
4847 28315671 2019-08-14 stsp FILE *f;
4848 82f6abb8 2019-08-14 stsp struct got_repository *repo;
4849 28315671 2019-08-14 stsp };
4850 28315671 2019-08-14 stsp
4851 404c43c4 2018-06-21 stsp static const struct got_error *
4852 28315671 2019-08-14 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
4853 28315671 2019-08-14 stsp {
4854 28315671 2019-08-14 stsp const struct got_error *err = NULL;
4855 28315671 2019-08-14 stsp struct blame_cb_args *a = arg;
4856 28315671 2019-08-14 stsp struct blame_line *bline;
4857 82f6abb8 2019-08-14 stsp char *line = NULL;
4858 28315671 2019-08-14 stsp size_t linesize = 0;
4859 82f6abb8 2019-08-14 stsp struct got_commit_object *commit = NULL;
4860 28315671 2019-08-14 stsp off_t offset;
4861 bcb49d15 2019-08-14 stsp struct tm tm;
4862 bcb49d15 2019-08-14 stsp time_t committer_time;
4863 28315671 2019-08-14 stsp
4864 28315671 2019-08-14 stsp if (nlines != a->nlines ||
4865 28315671 2019-08-14 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
4866 28315671 2019-08-14 stsp return got_error(GOT_ERR_RANGE);
4867 28315671 2019-08-14 stsp
4868 28315671 2019-08-14 stsp if (sigint_received)
4869 28315671 2019-08-14 stsp return got_error(GOT_ERR_ITER_COMPLETED);
4870 28315671 2019-08-14 stsp
4871 2839f8b9 2019-08-18 stsp if (lineno == -1)
4872 2839f8b9 2019-08-18 stsp return NULL; /* no change in this commit */
4873 2839f8b9 2019-08-18 stsp
4874 28315671 2019-08-14 stsp /* Annotate this line. */
4875 28315671 2019-08-14 stsp bline = &a->lines[lineno - 1];
4876 28315671 2019-08-14 stsp if (bline->annotated)
4877 28315671 2019-08-14 stsp return NULL;
4878 28315671 2019-08-14 stsp err = got_object_id_str(&bline->id_str, id);
4879 28315671 2019-08-14 stsp if (err)
4880 28315671 2019-08-14 stsp return err;
4881 82f6abb8 2019-08-14 stsp
4882 82f6abb8 2019-08-14 stsp err = got_object_open_as_commit(&commit, a->repo, id);
4883 82f6abb8 2019-08-14 stsp if (err)
4884 82f6abb8 2019-08-14 stsp goto done;
4885 82f6abb8 2019-08-14 stsp
4886 82f6abb8 2019-08-14 stsp bline->committer = strdup(got_object_commit_get_committer(commit));
4887 82f6abb8 2019-08-14 stsp if (bline->committer == NULL) {
4888 82f6abb8 2019-08-14 stsp err = got_error_from_errno("strdup");
4889 bcb49d15 2019-08-14 stsp goto done;
4890 bcb49d15 2019-08-14 stsp }
4891 bcb49d15 2019-08-14 stsp
4892 bcb49d15 2019-08-14 stsp committer_time = got_object_commit_get_committer_time(commit);
4893 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
4894 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
4895 6db9f7f6 2019-12-10 stsp if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G-%m-%d",
4896 ec6d1a36 2021-03-21 jrick &tm) == 0) {
4897 bcb49d15 2019-08-14 stsp err = got_error(GOT_ERR_NO_SPACE);
4898 82f6abb8 2019-08-14 stsp goto done;
4899 82f6abb8 2019-08-14 stsp }
4900 28315671 2019-08-14 stsp bline->annotated = 1;
4901 28315671 2019-08-14 stsp
4902 28315671 2019-08-14 stsp /* Print lines annotated so far. */
4903 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
4904 28315671 2019-08-14 stsp if (!bline->annotated)
4905 82f6abb8 2019-08-14 stsp goto done;
4906 28315671 2019-08-14 stsp
4907 28315671 2019-08-14 stsp offset = a->line_offsets[a->lineno_cur - 1];
4908 82f6abb8 2019-08-14 stsp if (fseeko(a->f, offset, SEEK_SET) == -1) {
4909 82f6abb8 2019-08-14 stsp err = got_error_from_errno("fseeko");
4910 82f6abb8 2019-08-14 stsp goto done;
4911 82f6abb8 2019-08-14 stsp }
4912 28315671 2019-08-14 stsp
4913 28315671 2019-08-14 stsp while (bline->annotated) {
4914 82f6abb8 2019-08-14 stsp char *smallerthan, *at, *nl, *committer;
4915 82f6abb8 2019-08-14 stsp size_t len;
4916 82f6abb8 2019-08-14 stsp
4917 500467ff 2019-09-25 hiltjo if (getline(&line, &linesize, a->f) == -1) {
4918 28315671 2019-08-14 stsp if (ferror(a->f))
4919 28315671 2019-08-14 stsp err = got_error_from_errno("getline");
4920 28315671 2019-08-14 stsp break;
4921 28315671 2019-08-14 stsp }
4922 82f6abb8 2019-08-14 stsp
4923 82f6abb8 2019-08-14 stsp committer = bline->committer;
4924 82f6abb8 2019-08-14 stsp smallerthan = strchr(committer, '<');
4925 82f6abb8 2019-08-14 stsp if (smallerthan && smallerthan[1] != '\0')
4926 82f6abb8 2019-08-14 stsp committer = smallerthan + 1;
4927 82f6abb8 2019-08-14 stsp at = strchr(committer, '@');
4928 82f6abb8 2019-08-14 stsp if (at)
4929 82f6abb8 2019-08-14 stsp *at = '\0';
4930 82f6abb8 2019-08-14 stsp len = strlen(committer);
4931 82f6abb8 2019-08-14 stsp if (len >= 9)
4932 82f6abb8 2019-08-14 stsp committer[8] = '\0';
4933 28315671 2019-08-14 stsp
4934 28315671 2019-08-14 stsp nl = strchr(line, '\n');
4935 28315671 2019-08-14 stsp if (nl)
4936 28315671 2019-08-14 stsp *nl = '\0';
4937 bcb49d15 2019-08-14 stsp printf("%.*d) %.8s %s %-8s %s\n", a->nlines_prec, a->lineno_cur,
4938 bcb49d15 2019-08-14 stsp bline->id_str, bline->datebuf, committer, line);
4939 28315671 2019-08-14 stsp
4940 28315671 2019-08-14 stsp a->lineno_cur++;
4941 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
4942 28315671 2019-08-14 stsp }
4943 82f6abb8 2019-08-14 stsp done:
4944 82f6abb8 2019-08-14 stsp if (commit)
4945 82f6abb8 2019-08-14 stsp got_object_commit_close(commit);
4946 28315671 2019-08-14 stsp free(line);
4947 28315671 2019-08-14 stsp return err;
4948 28315671 2019-08-14 stsp }
4949 28315671 2019-08-14 stsp
4950 28315671 2019-08-14 stsp static const struct got_error *
4951 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
4952 404c43c4 2018-06-21 stsp {
4953 404c43c4 2018-06-21 stsp const struct got_error *error;
4954 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
4955 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
4956 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
4957 0587e10c 2020-07-23 stsp char *link_target = NULL;
4958 28315671 2019-08-14 stsp struct got_object_id *obj_id = NULL;
4959 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
4960 28315671 2019-08-14 stsp struct got_blob_object *blob = NULL;
4961 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
4962 28315671 2019-08-14 stsp struct blame_cb_args bca;
4963 28315671 2019-08-14 stsp int ch, obj_type, i;
4964 be659d10 2020-11-18 stsp off_t filesize;
4965 90f3c347 2019-08-19 stsp
4966 90f3c347 2019-08-19 stsp memset(&bca, 0, sizeof(bca));
4967 404c43c4 2018-06-21 stsp
4968 404c43c4 2018-06-21 stsp #ifndef PROFILE
4969 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4970 36e2fb66 2019-01-04 stsp NULL) == -1)
4971 404c43c4 2018-06-21 stsp err(1, "pledge");
4972 404c43c4 2018-06-21 stsp #endif
4973 404c43c4 2018-06-21 stsp
4974 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
4975 404c43c4 2018-06-21 stsp switch (ch) {
4976 404c43c4 2018-06-21 stsp case 'c':
4977 404c43c4 2018-06-21 stsp commit_id_str = optarg;
4978 404c43c4 2018-06-21 stsp break;
4979 66bea077 2018-08-02 stsp case 'r':
4980 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
4981 66bea077 2018-08-02 stsp if (repo_path == NULL)
4982 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
4983 9ba1d308 2019-10-21 stsp optarg);
4984 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
4985 66bea077 2018-08-02 stsp break;
4986 404c43c4 2018-06-21 stsp default:
4987 2deda0b9 2019-03-07 stsp usage_blame();
4988 404c43c4 2018-06-21 stsp /* NOTREACHED */
4989 404c43c4 2018-06-21 stsp }
4990 404c43c4 2018-06-21 stsp }
4991 404c43c4 2018-06-21 stsp
4992 404c43c4 2018-06-21 stsp argc -= optind;
4993 404c43c4 2018-06-21 stsp argv += optind;
4994 404c43c4 2018-06-21 stsp
4995 a39318fd 2018-08-02 stsp if (argc == 1)
4996 404c43c4 2018-06-21 stsp path = argv[0];
4997 a39318fd 2018-08-02 stsp else
4998 404c43c4 2018-06-21 stsp usage_blame();
4999 404c43c4 2018-06-21 stsp
5000 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
5001 66bea077 2018-08-02 stsp if (cwd == NULL) {
5002 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5003 66bea077 2018-08-02 stsp goto done;
5004 66bea077 2018-08-02 stsp }
5005 66bea077 2018-08-02 stsp if (repo_path == NULL) {
5006 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
5007 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5008 66bea077 2018-08-02 stsp goto done;
5009 0c06baac 2019-02-05 stsp else
5010 0c06baac 2019-02-05 stsp error = NULL;
5011 0c06baac 2019-02-05 stsp if (worktree) {
5012 0c06baac 2019-02-05 stsp repo_path =
5013 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
5014 1f03b8da 2020-03-20 stsp if (repo_path == NULL) {
5015 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5016 1f03b8da 2020-03-20 stsp if (error)
5017 1f03b8da 2020-03-20 stsp goto done;
5018 1f03b8da 2020-03-20 stsp }
5019 0c06baac 2019-02-05 stsp } else {
5020 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
5021 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
5022 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5023 0c06baac 2019-02-05 stsp goto done;
5024 0c06baac 2019-02-05 stsp }
5025 66bea077 2018-08-02 stsp }
5026 66bea077 2018-08-02 stsp }
5027 36e2fb66 2019-01-04 stsp
5028 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5029 c02c541e 2019-03-29 stsp if (error != NULL)
5030 404c43c4 2018-06-21 stsp goto done;
5031 404c43c4 2018-06-21 stsp
5032 0c06baac 2019-02-05 stsp if (worktree) {
5033 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
5034 01740607 2020-11-04 stsp char *p;
5035 01740607 2020-11-04 stsp
5036 01740607 2020-11-04 stsp error = got_worktree_resolve_path(&p, worktree, path);
5037 01740607 2020-11-04 stsp if (error)
5038 01740607 2020-11-04 stsp goto done;
5039 01740607 2020-11-04 stsp if (asprintf(&in_repo_path, "%s%s%s", prefix,
5040 01740607 2020-11-04 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
5041 01740607 2020-11-04 stsp p) == -1) {
5042 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
5043 01740607 2020-11-04 stsp free(p);
5044 0c06baac 2019-02-05 stsp goto done;
5045 0c06baac 2019-02-05 stsp }
5046 0c06baac 2019-02-05 stsp free(p);
5047 01740607 2020-11-04 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5048 0c06baac 2019-02-05 stsp } else {
5049 01740607 2020-11-04 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5050 01740607 2020-11-04 stsp if (error)
5051 01740607 2020-11-04 stsp goto done;
5052 8fa913ec 2020-11-14 stsp error = got_repo_map_path(&in_repo_path, repo, path);
5053 0c06baac 2019-02-05 stsp }
5054 0c06baac 2019-02-05 stsp if (error)
5055 66bea077 2018-08-02 stsp goto done;
5056 66bea077 2018-08-02 stsp
5057 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
5058 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
5059 a0975128 2020-02-07 stsp error = got_ref_open(&head_ref, repo, worktree ?
5060 a0975128 2020-02-07 stsp got_worktree_get_head_ref_name(worktree) : GOT_REF_HEAD, 0);
5061 404c43c4 2018-06-21 stsp if (error != NULL)
5062 66bea077 2018-08-02 stsp goto done;
5063 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
5064 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
5065 404c43c4 2018-06-21 stsp if (error != NULL)
5066 66bea077 2018-08-02 stsp goto done;
5067 404c43c4 2018-06-21 stsp } else {
5068 84de9106 2020-12-26 stsp struct got_reflist_head refs;
5069 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
5070 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
5071 84de9106 2020-12-26 stsp NULL);
5072 84de9106 2020-12-26 stsp if (error)
5073 84de9106 2020-12-26 stsp goto done;
5074 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
5075 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &refs, repo);
5076 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
5077 30837e32 2019-07-25 stsp if (error)
5078 66bea077 2018-08-02 stsp goto done;
5079 404c43c4 2018-06-21 stsp }
5080 404c43c4 2018-06-21 stsp
5081 0587e10c 2020-07-23 stsp error = got_object_resolve_symlinks(&link_target, in_repo_path,
5082 0587e10c 2020-07-23 stsp commit_id, repo);
5083 0587e10c 2020-07-23 stsp if (error)
5084 0587e10c 2020-07-23 stsp goto done;
5085 0587e10c 2020-07-23 stsp
5086 0587e10c 2020-07-23 stsp error = got_object_id_by_path(&obj_id, repo, commit_id,
5087 0587e10c 2020-07-23 stsp link_target ? link_target : in_repo_path);
5088 28315671 2019-08-14 stsp if (error)
5089 28315671 2019-08-14 stsp goto done;
5090 28315671 2019-08-14 stsp
5091 28315671 2019-08-14 stsp error = got_object_get_type(&obj_type, repo, obj_id);
5092 28315671 2019-08-14 stsp if (error)
5093 28315671 2019-08-14 stsp goto done;
5094 28315671 2019-08-14 stsp
5095 28315671 2019-08-14 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
5096 eb59b6d4 2020-07-23 stsp error = got_error_path(link_target ? link_target : in_repo_path,
5097 eb59b6d4 2020-07-23 stsp GOT_ERR_OBJ_TYPE);
5098 28315671 2019-08-14 stsp goto done;
5099 28315671 2019-08-14 stsp }
5100 28315671 2019-08-14 stsp
5101 28315671 2019-08-14 stsp error = got_object_open_as_blob(&blob, repo, obj_id, 8192);
5102 28315671 2019-08-14 stsp if (error)
5103 28315671 2019-08-14 stsp goto done;
5104 28315671 2019-08-14 stsp bca.f = got_opentemp();
5105 28315671 2019-08-14 stsp if (bca.f == NULL) {
5106 28315671 2019-08-14 stsp error = got_error_from_errno("got_opentemp");
5107 28315671 2019-08-14 stsp goto done;
5108 28315671 2019-08-14 stsp }
5109 b02560ec 2019-08-19 stsp error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
5110 28315671 2019-08-14 stsp &bca.line_offsets, bca.f, blob);
5111 7ef28ff8 2019-08-14 stsp if (error || bca.nlines == 0)
5112 28315671 2019-08-14 stsp goto done;
5113 28315671 2019-08-14 stsp
5114 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
5115 b02560ec 2019-08-19 stsp if (bca.line_offsets[bca.nlines - 1] == filesize)
5116 b02560ec 2019-08-19 stsp bca.nlines--;
5117 b02560ec 2019-08-19 stsp
5118 28315671 2019-08-14 stsp bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
5119 28315671 2019-08-14 stsp if (bca.lines == NULL) {
5120 28315671 2019-08-14 stsp error = got_error_from_errno("calloc");
5121 28315671 2019-08-14 stsp goto done;
5122 28315671 2019-08-14 stsp }
5123 28315671 2019-08-14 stsp bca.lineno_cur = 1;
5124 7ef28ff8 2019-08-14 stsp bca.nlines_prec = 0;
5125 7ef28ff8 2019-08-14 stsp i = bca.nlines;
5126 7ef28ff8 2019-08-14 stsp while (i > 0) {
5127 7ef28ff8 2019-08-14 stsp i /= 10;
5128 7ef28ff8 2019-08-14 stsp bca.nlines_prec++;
5129 7ef28ff8 2019-08-14 stsp }
5130 82f6abb8 2019-08-14 stsp bca.repo = repo;
5131 7ef28ff8 2019-08-14 stsp
5132 0587e10c 2020-07-23 stsp error = got_blame(link_target ? link_target : in_repo_path, commit_id,
5133 0587e10c 2020-07-23 stsp repo, blame_cb, &bca, check_cancelled, NULL);
5134 404c43c4 2018-06-21 stsp done:
5135 66bea077 2018-08-02 stsp free(in_repo_path);
5136 0587e10c 2020-07-23 stsp free(link_target);
5137 66bea077 2018-08-02 stsp free(repo_path);
5138 66bea077 2018-08-02 stsp free(cwd);
5139 404c43c4 2018-06-21 stsp free(commit_id);
5140 28315671 2019-08-14 stsp free(obj_id);
5141 28315671 2019-08-14 stsp if (blob)
5142 28315671 2019-08-14 stsp got_object_blob_close(blob);
5143 0c06baac 2019-02-05 stsp if (worktree)
5144 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
5145 ad242220 2018-09-08 stsp if (repo) {
5146 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5147 ad242220 2018-09-08 stsp if (error == NULL)
5148 1d0f4054 2021-06-17 stsp error = close_err;
5149 ad242220 2018-09-08 stsp }
5150 3affba96 2019-09-22 stsp if (bca.lines) {
5151 3affba96 2019-09-22 stsp for (i = 0; i < bca.nlines; i++) {
5152 3affba96 2019-09-22 stsp struct blame_line *bline = &bca.lines[i];
5153 3affba96 2019-09-22 stsp free(bline->id_str);
5154 3affba96 2019-09-22 stsp free(bline->committer);
5155 3affba96 2019-09-22 stsp }
5156 3affba96 2019-09-22 stsp free(bca.lines);
5157 28315671 2019-08-14 stsp }
5158 28315671 2019-08-14 stsp free(bca.line_offsets);
5159 28315671 2019-08-14 stsp if (bca.f && fclose(bca.f) == EOF && error == NULL)
5160 28315671 2019-08-14 stsp error = got_error_from_errno("fclose");
5161 404c43c4 2018-06-21 stsp return error;
5162 5de5890b 2018-10-18 stsp }
5163 5de5890b 2018-10-18 stsp
5164 5de5890b 2018-10-18 stsp __dead static void
5165 5de5890b 2018-10-18 stsp usage_tree(void)
5166 5de5890b 2018-10-18 stsp {
5167 c1669e2e 2019-01-09 stsp fprintf(stderr,
5168 5d58be12 2020-05-17 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] [path]\n",
5169 5de5890b 2018-10-18 stsp getprogname());
5170 5de5890b 2018-10-18 stsp exit(1);
5171 5de5890b 2018-10-18 stsp }
5172 5de5890b 2018-10-18 stsp
5173 0d6c6ee3 2020-05-20 stsp static const struct got_error *
5174 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
5175 0d6c6ee3 2020-05-20 stsp const char *root_path, struct got_repository *repo)
5176 c1669e2e 2019-01-09 stsp {
5177 0d6c6ee3 2020-05-20 stsp const struct got_error *err = NULL;
5178 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
5179 848d6979 2019-08-12 stsp const char *modestr = "";
5180 56e0773d 2019-11-28 stsp mode_t mode = got_tree_entry_get_mode(te);
5181 0d6c6ee3 2020-05-20 stsp char *link_target = NULL;
5182 5de5890b 2018-10-18 stsp
5183 c1669e2e 2019-01-09 stsp path += strlen(root_path);
5184 c1669e2e 2019-01-09 stsp while (path[0] == '/')
5185 c1669e2e 2019-01-09 stsp path++;
5186 c1669e2e 2019-01-09 stsp
5187 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
5188 63c5ca5d 2019-08-24 stsp modestr = "$";
5189 0d6c6ee3 2020-05-20 stsp else if (S_ISLNK(mode)) {
5190 0d6c6ee3 2020-05-20 stsp int i;
5191 0d6c6ee3 2020-05-20 stsp
5192 0d6c6ee3 2020-05-20 stsp err = got_tree_entry_get_symlink_target(&link_target, te, repo);
5193 0d6c6ee3 2020-05-20 stsp if (err)
5194 0d6c6ee3 2020-05-20 stsp return err;
5195 0d6c6ee3 2020-05-20 stsp for (i = 0; i < strlen(link_target); i++) {
5196 0d6c6ee3 2020-05-20 stsp if (!isprint((unsigned char)link_target[i]))
5197 0d6c6ee3 2020-05-20 stsp link_target[i] = '?';
5198 0d6c6ee3 2020-05-20 stsp }
5199 0d6c6ee3 2020-05-20 stsp
5200 848d6979 2019-08-12 stsp modestr = "@";
5201 0d6c6ee3 2020-05-20 stsp }
5202 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
5203 848d6979 2019-08-12 stsp modestr = "/";
5204 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
5205 848d6979 2019-08-12 stsp modestr = "*";
5206 848d6979 2019-08-12 stsp
5207 0d6c6ee3 2020-05-20 stsp printf("%s%s%s%s%s%s%s\n", id ? id : "", path,
5208 0d6c6ee3 2020-05-20 stsp is_root_path ? "" : "/", got_tree_entry_get_name(te), modestr,
5209 0d6c6ee3 2020-05-20 stsp link_target ? " -> ": "", link_target ? link_target : "");
5210 0d6c6ee3 2020-05-20 stsp
5211 0d6c6ee3 2020-05-20 stsp free(link_target);
5212 0d6c6ee3 2020-05-20 stsp return NULL;
5213 c1669e2e 2019-01-09 stsp }
5214 c1669e2e 2019-01-09 stsp
5215 5de5890b 2018-10-18 stsp static const struct got_error *
5216 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
5217 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
5218 c1669e2e 2019-01-09 stsp struct got_repository *repo)
5219 5de5890b 2018-10-18 stsp {
5220 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
5221 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
5222 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
5223 56e0773d 2019-11-28 stsp int nentries, i;
5224 5de5890b 2018-10-18 stsp
5225 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
5226 5de5890b 2018-10-18 stsp if (err)
5227 5de5890b 2018-10-18 stsp goto done;
5228 5de5890b 2018-10-18 stsp
5229 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
5230 5de5890b 2018-10-18 stsp if (err)
5231 5de5890b 2018-10-18 stsp goto done;
5232 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
5233 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
5234 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
5235 5de5890b 2018-10-18 stsp char *id = NULL;
5236 84453469 2018-11-11 stsp
5237 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
5238 84453469 2018-11-11 stsp break;
5239 84453469 2018-11-11 stsp
5240 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
5241 5de5890b 2018-10-18 stsp if (show_ids) {
5242 5de5890b 2018-10-18 stsp char *id_str;
5243 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
5244 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
5245 5de5890b 2018-10-18 stsp if (err)
5246 5de5890b 2018-10-18 stsp goto done;
5247 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
5248 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5249 5de5890b 2018-10-18 stsp free(id_str);
5250 5de5890b 2018-10-18 stsp goto done;
5251 5de5890b 2018-10-18 stsp }
5252 5de5890b 2018-10-18 stsp free(id_str);
5253 5de5890b 2018-10-18 stsp }
5254 0d6c6ee3 2020-05-20 stsp err = print_entry(te, id, path, root_path, repo);
5255 5de5890b 2018-10-18 stsp free(id);
5256 0d6c6ee3 2020-05-20 stsp if (err)
5257 0d6c6ee3 2020-05-20 stsp goto done;
5258 c1669e2e 2019-01-09 stsp
5259 56e0773d 2019-11-28 stsp if (recurse && S_ISDIR(got_tree_entry_get_mode(te))) {
5260 c1669e2e 2019-01-09 stsp char *child_path;
5261 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
5262 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
5263 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te)) == -1) {
5264 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
5265 c1669e2e 2019-01-09 stsp goto done;
5266 c1669e2e 2019-01-09 stsp }
5267 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
5268 c1669e2e 2019-01-09 stsp root_path, repo);
5269 c1669e2e 2019-01-09 stsp free(child_path);
5270 c1669e2e 2019-01-09 stsp if (err)
5271 c1669e2e 2019-01-09 stsp goto done;
5272 c1669e2e 2019-01-09 stsp }
5273 5de5890b 2018-10-18 stsp }
5274 5de5890b 2018-10-18 stsp done:
5275 5de5890b 2018-10-18 stsp if (tree)
5276 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
5277 5de5890b 2018-10-18 stsp free(tree_id);
5278 5de5890b 2018-10-18 stsp return err;
5279 404c43c4 2018-06-21 stsp }
5280 404c43c4 2018-06-21 stsp
5281 5de5890b 2018-10-18 stsp static const struct got_error *
5282 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
5283 5de5890b 2018-10-18 stsp {
5284 5de5890b 2018-10-18 stsp const struct got_error *error;
5285 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
5286 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
5287 4e0a20a4 2020-03-23 tracey const char *path, *refname = NULL;
5288 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
5289 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
5290 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
5291 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
5292 5de5890b 2018-10-18 stsp int ch;
5293 5de5890b 2018-10-18 stsp
5294 5de5890b 2018-10-18 stsp #ifndef PROFILE
5295 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5296 0f8d269b 2019-01-04 stsp NULL) == -1)
5297 5de5890b 2018-10-18 stsp err(1, "pledge");
5298 5de5890b 2018-10-18 stsp #endif
5299 5de5890b 2018-10-18 stsp
5300 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
5301 5de5890b 2018-10-18 stsp switch (ch) {
5302 5de5890b 2018-10-18 stsp case 'c':
5303 5de5890b 2018-10-18 stsp commit_id_str = optarg;
5304 5de5890b 2018-10-18 stsp break;
5305 5de5890b 2018-10-18 stsp case 'r':
5306 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
5307 5de5890b 2018-10-18 stsp if (repo_path == NULL)
5308 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
5309 9ba1d308 2019-10-21 stsp optarg);
5310 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
5311 5de5890b 2018-10-18 stsp break;
5312 5de5890b 2018-10-18 stsp case 'i':
5313 5de5890b 2018-10-18 stsp show_ids = 1;
5314 5de5890b 2018-10-18 stsp break;
5315 c1669e2e 2019-01-09 stsp case 'R':
5316 c1669e2e 2019-01-09 stsp recurse = 1;
5317 c1669e2e 2019-01-09 stsp break;
5318 5de5890b 2018-10-18 stsp default:
5319 2deda0b9 2019-03-07 stsp usage_tree();
5320 5de5890b 2018-10-18 stsp /* NOTREACHED */
5321 5de5890b 2018-10-18 stsp }
5322 5de5890b 2018-10-18 stsp }
5323 5de5890b 2018-10-18 stsp
5324 5de5890b 2018-10-18 stsp argc -= optind;
5325 5de5890b 2018-10-18 stsp argv += optind;
5326 5de5890b 2018-10-18 stsp
5327 5de5890b 2018-10-18 stsp if (argc == 1)
5328 5de5890b 2018-10-18 stsp path = argv[0];
5329 5de5890b 2018-10-18 stsp else if (argc > 1)
5330 5de5890b 2018-10-18 stsp usage_tree();
5331 5de5890b 2018-10-18 stsp else
5332 7a2c19d6 2019-02-05 stsp path = NULL;
5333 7a2c19d6 2019-02-05 stsp
5334 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
5335 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
5336 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5337 9bf7a39b 2019-02-05 stsp goto done;
5338 9bf7a39b 2019-02-05 stsp }
5339 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
5340 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
5341 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5342 7a2c19d6 2019-02-05 stsp goto done;
5343 7a2c19d6 2019-02-05 stsp else
5344 7a2c19d6 2019-02-05 stsp error = NULL;
5345 7a2c19d6 2019-02-05 stsp if (worktree) {
5346 7a2c19d6 2019-02-05 stsp repo_path =
5347 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
5348 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
5349 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5350 7a2c19d6 2019-02-05 stsp if (error)
5351 7a2c19d6 2019-02-05 stsp goto done;
5352 7a2c19d6 2019-02-05 stsp } else {
5353 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
5354 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
5355 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5356 7a2c19d6 2019-02-05 stsp goto done;
5357 7a2c19d6 2019-02-05 stsp }
5358 5de5890b 2018-10-18 stsp }
5359 5de5890b 2018-10-18 stsp }
5360 5de5890b 2018-10-18 stsp
5361 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5362 5de5890b 2018-10-18 stsp if (error != NULL)
5363 c02c541e 2019-03-29 stsp goto done;
5364 c02c541e 2019-03-29 stsp
5365 4fedbf4c 2020-11-07 stsp if (worktree) {
5366 4fedbf4c 2020-11-07 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
5367 4fedbf4c 2020-11-07 stsp char *p;
5368 5de5890b 2018-10-18 stsp
5369 4fedbf4c 2020-11-07 stsp if (path == NULL)
5370 4fedbf4c 2020-11-07 stsp path = "";
5371 4fedbf4c 2020-11-07 stsp error = got_worktree_resolve_path(&p, worktree, path);
5372 4fedbf4c 2020-11-07 stsp if (error)
5373 4fedbf4c 2020-11-07 stsp goto done;
5374 4fedbf4c 2020-11-07 stsp if (asprintf(&in_repo_path, "%s%s%s", prefix,
5375 4fedbf4c 2020-11-07 stsp (p[0] != '\0' && !got_path_is_root_dir(prefix)) ? "/" : "",
5376 4fedbf4c 2020-11-07 stsp p) == -1) {
5377 4fedbf4c 2020-11-07 stsp error = got_error_from_errno("asprintf");
5378 9bf7a39b 2019-02-05 stsp free(p);
5379 4fedbf4c 2020-11-07 stsp goto done;
5380 4fedbf4c 2020-11-07 stsp }
5381 4fedbf4c 2020-11-07 stsp free(p);
5382 4fedbf4c 2020-11-07 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5383 4fedbf4c 2020-11-07 stsp if (error)
5384 4fedbf4c 2020-11-07 stsp goto done;
5385 4fedbf4c 2020-11-07 stsp } else {
5386 4fedbf4c 2020-11-07 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
5387 4fedbf4c 2020-11-07 stsp if (error)
5388 4fedbf4c 2020-11-07 stsp goto done;
5389 4fedbf4c 2020-11-07 stsp if (path == NULL)
5390 9bf7a39b 2019-02-05 stsp path = "/";
5391 8fa913ec 2020-11-14 stsp error = got_repo_map_path(&in_repo_path, repo, path);
5392 9bf7a39b 2019-02-05 stsp if (error != NULL)
5393 9bf7a39b 2019-02-05 stsp goto done;
5394 9bf7a39b 2019-02-05 stsp }
5395 5de5890b 2018-10-18 stsp
5396 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
5397 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
5398 4e0a20a4 2020-03-23 tracey if (worktree)
5399 4e0a20a4 2020-03-23 tracey refname = got_worktree_get_head_ref_name(worktree);
5400 4e0a20a4 2020-03-23 tracey else
5401 4e0a20a4 2020-03-23 tracey refname = GOT_REF_HEAD;
5402 4e0a20a4 2020-03-23 tracey error = got_ref_open(&head_ref, repo, refname, 0);
5403 5de5890b 2018-10-18 stsp if (error != NULL)
5404 5de5890b 2018-10-18 stsp goto done;
5405 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
5406 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
5407 5de5890b 2018-10-18 stsp if (error != NULL)
5408 5de5890b 2018-10-18 stsp goto done;
5409 5de5890b 2018-10-18 stsp } else {
5410 84de9106 2020-12-26 stsp struct got_reflist_head refs;
5411 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
5412 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
5413 84de9106 2020-12-26 stsp NULL);
5414 84de9106 2020-12-26 stsp if (error)
5415 84de9106 2020-12-26 stsp goto done;
5416 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
5417 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &refs, repo);
5418 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
5419 30837e32 2019-07-25 stsp if (error)
5420 5de5890b 2018-10-18 stsp goto done;
5421 5de5890b 2018-10-18 stsp }
5422 5de5890b 2018-10-18 stsp
5423 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
5424 c1669e2e 2019-01-09 stsp in_repo_path, repo);
5425 5de5890b 2018-10-18 stsp done:
5426 5de5890b 2018-10-18 stsp free(in_repo_path);
5427 5de5890b 2018-10-18 stsp free(repo_path);
5428 5de5890b 2018-10-18 stsp free(cwd);
5429 5de5890b 2018-10-18 stsp free(commit_id);
5430 7a2c19d6 2019-02-05 stsp if (worktree)
5431 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
5432 5de5890b 2018-10-18 stsp if (repo) {
5433 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5434 5de5890b 2018-10-18 stsp if (error == NULL)
5435 1d0f4054 2021-06-17 stsp error = close_err;
5436 5de5890b 2018-10-18 stsp }
5437 5de5890b 2018-10-18 stsp return error;
5438 5de5890b 2018-10-18 stsp }
5439 5de5890b 2018-10-18 stsp
5440 6bad629b 2019-02-04 stsp __dead static void
5441 6bad629b 2019-02-04 stsp usage_status(void)
5442 6bad629b 2019-02-04 stsp {
5443 00357e4d 2021-09-14 tracey fprintf(stderr, "usage: %s status [-I] [-s status-codes ] "
5444 00357e4d 2021-09-14 tracey "[-S status-codes] [path ...]\n", getprogname());
5445 6bad629b 2019-02-04 stsp exit(1);
5446 6bad629b 2019-02-04 stsp }
5447 00357e4d 2021-09-14 tracey
5448 00357e4d 2021-09-14 tracey struct got_status_arg {
5449 00357e4d 2021-09-14 tracey char *status_codes;
5450 00357e4d 2021-09-14 tracey int suppress;
5451 00357e4d 2021-09-14 tracey };
5452 5c860e29 2018-03-12 stsp
5453 b72f483a 2019-02-05 stsp static const struct got_error *
5454 88d0e355 2019-08-03 stsp print_status(void *arg, unsigned char status, unsigned char staged_status,
5455 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
5456 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
5457 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
5458 6bad629b 2019-02-04 stsp {
5459 00357e4d 2021-09-14 tracey struct got_status_arg *st = arg;
5460 00357e4d 2021-09-14 tracey
5461 244725f2 2019-08-03 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
5462 c363b2c1 2019-08-03 stsp status = GOT_STATUS_NO_CHANGE;
5463 00357e4d 2021-09-14 tracey if (st != NULL && st->status_codes) {
5464 00357e4d 2021-09-14 tracey size_t ncodes = strlen(st->status_codes);
5465 00357e4d 2021-09-14 tracey int i, j = 0;
5466 00357e4d 2021-09-14 tracey
5467 081470ac 2020-08-13 stsp for (i = 0; i < ncodes ; i++) {
5468 00357e4d 2021-09-14 tracey if (st->suppress) {
5469 00357e4d 2021-09-14 tracey if (status == st->status_codes[i] ||
5470 00357e4d 2021-09-14 tracey staged_status == st->status_codes[i]) {
5471 00357e4d 2021-09-14 tracey j++;
5472 00357e4d 2021-09-14 tracey continue;
5473 00357e4d 2021-09-14 tracey }
5474 00357e4d 2021-09-14 tracey } else {
5475 00357e4d 2021-09-14 tracey if (status == st->status_codes[i] ||
5476 00357e4d 2021-09-14 tracey staged_status == st->status_codes[i])
5477 00357e4d 2021-09-14 tracey break;
5478 00357e4d 2021-09-14 tracey }
5479 081470ac 2020-08-13 stsp }
5480 00357e4d 2021-09-14 tracey
5481 00357e4d 2021-09-14 tracey if (st->suppress && j == 0)
5482 00357e4d 2021-09-14 tracey goto print;
5483 00357e4d 2021-09-14 tracey
5484 081470ac 2020-08-13 stsp if (i == ncodes)
5485 081470ac 2020-08-13 stsp return NULL;
5486 081470ac 2020-08-13 stsp }
5487 00357e4d 2021-09-14 tracey print:
5488 88d0e355 2019-08-03 stsp printf("%c%c %s\n", status, staged_status, path);
5489 b72f483a 2019-02-05 stsp return NULL;
5490 6bad629b 2019-02-04 stsp }
5491 5c860e29 2018-03-12 stsp
5492 6bad629b 2019-02-04 stsp static const struct got_error *
5493 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
5494 6bad629b 2019-02-04 stsp {
5495 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
5496 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
5497 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
5498 00357e4d 2021-09-14 tracey struct got_status_arg st;
5499 00357e4d 2021-09-14 tracey char *cwd = NULL;
5500 72ea6654 2019-07-27 stsp struct got_pathlist_head paths;
5501 a5edda0a 2019-07-27 stsp struct got_pathlist_entry *pe;
5502 f6343036 2021-06-22 stsp int ch, i, no_ignores = 0;
5503 5c860e29 2018-03-12 stsp
5504 72ea6654 2019-07-27 stsp TAILQ_INIT(&paths);
5505 72ea6654 2019-07-27 stsp
5506 00357e4d 2021-09-14 tracey memset(&st, 0, sizeof(st));
5507 00357e4d 2021-09-14 tracey st.status_codes = NULL;
5508 00357e4d 2021-09-14 tracey st.suppress = 0;
5509 00357e4d 2021-09-14 tracey
5510 00357e4d 2021-09-14 tracey while ((ch = getopt(argc, argv, "Is:S:")) != -1) {
5511 6bad629b 2019-02-04 stsp switch (ch) {
5512 f6343036 2021-06-22 stsp case 'I':
5513 f6343036 2021-06-22 stsp no_ignores = 1;
5514 f6343036 2021-06-22 stsp break;
5515 788d4a19 2021-09-14 stsp case 'S':
5516 788d4a19 2021-09-14 stsp if (st.status_codes != NULL && st.suppress == 0)
5517 788d4a19 2021-09-14 stsp option_conflict('S', 's');
5518 788d4a19 2021-09-14 stsp st.suppress = 1;
5519 788d4a19 2021-09-14 stsp /* fallthrough */
5520 081470ac 2020-08-13 stsp case 's':
5521 081470ac 2020-08-13 stsp for (i = 0; i < strlen(optarg); i++) {
5522 081470ac 2020-08-13 stsp switch (optarg[i]) {
5523 081470ac 2020-08-13 stsp case GOT_STATUS_MODIFY:
5524 081470ac 2020-08-13 stsp case GOT_STATUS_ADD:
5525 081470ac 2020-08-13 stsp case GOT_STATUS_DELETE:
5526 081470ac 2020-08-13 stsp case GOT_STATUS_CONFLICT:
5527 081470ac 2020-08-13 stsp case GOT_STATUS_MISSING:
5528 081470ac 2020-08-13 stsp case GOT_STATUS_OBSTRUCTED:
5529 081470ac 2020-08-13 stsp case GOT_STATUS_UNVERSIONED:
5530 081470ac 2020-08-13 stsp case GOT_STATUS_MODE_CHANGE:
5531 081470ac 2020-08-13 stsp case GOT_STATUS_NONEXISTENT:
5532 081470ac 2020-08-13 stsp break;
5533 081470ac 2020-08-13 stsp default:
5534 081470ac 2020-08-13 stsp errx(1, "invalid status code '%c'",
5535 081470ac 2020-08-13 stsp optarg[i]);
5536 081470ac 2020-08-13 stsp }
5537 081470ac 2020-08-13 stsp }
5538 788d4a19 2021-09-14 stsp if (ch == 's' && st.suppress)
5539 b043307b 2021-09-14 stsp option_conflict('s', 'S');
5540 00357e4d 2021-09-14 tracey st.status_codes = optarg;
5541 081470ac 2020-08-13 stsp break;
5542 5c860e29 2018-03-12 stsp default:
5543 2deda0b9 2019-03-07 stsp usage_status();
5544 6bad629b 2019-02-04 stsp /* NOTREACHED */
5545 5c860e29 2018-03-12 stsp }
5546 5c860e29 2018-03-12 stsp }
5547 5c860e29 2018-03-12 stsp
5548 6bad629b 2019-02-04 stsp argc -= optind;
5549 6bad629b 2019-02-04 stsp argv += optind;
5550 5c860e29 2018-03-12 stsp
5551 6bad629b 2019-02-04 stsp #ifndef PROFILE
5552 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
5553 6bad629b 2019-02-04 stsp NULL) == -1)
5554 6bad629b 2019-02-04 stsp err(1, "pledge");
5555 f42b1b34 2018-03-12 stsp #endif
5556 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
5557 927df6b7 2019-02-10 stsp if (cwd == NULL) {
5558 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5559 927df6b7 2019-02-10 stsp goto done;
5560 927df6b7 2019-02-10 stsp }
5561 927df6b7 2019-02-10 stsp
5562 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
5563 fa51e947 2020-03-27 stsp if (error) {
5564 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
5565 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "status", cwd);
5566 a5edda0a 2019-07-27 stsp goto done;
5567 fa51e947 2020-03-27 stsp }
5568 6bad629b 2019-02-04 stsp
5569 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5570 c9956ddf 2019-09-08 stsp NULL);
5571 6bad629b 2019-02-04 stsp if (error != NULL)
5572 6bad629b 2019-02-04 stsp goto done;
5573 6bad629b 2019-02-04 stsp
5574 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
5575 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5576 087fb88c 2019-08-04 stsp if (error)
5577 087fb88c 2019-08-04 stsp goto done;
5578 087fb88c 2019-08-04 stsp
5579 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
5580 6bad629b 2019-02-04 stsp if (error)
5581 6bad629b 2019-02-04 stsp goto done;
5582 6bad629b 2019-02-04 stsp
5583 f6343036 2021-06-22 stsp error = got_worktree_status(worktree, &paths, repo, no_ignores,
5584 00357e4d 2021-09-14 tracey print_status, &st, check_cancelled, NULL);
5585 6bad629b 2019-02-04 stsp done:
5586 a5edda0a 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
5587 a5edda0a 2019-07-27 stsp free((char *)pe->path);
5588 72ea6654 2019-07-27 stsp got_pathlist_free(&paths);
5589 927df6b7 2019-02-10 stsp free(cwd);
5590 d0eebce4 2019-03-11 stsp return error;
5591 d0eebce4 2019-03-11 stsp }
5592 d0eebce4 2019-03-11 stsp
5593 d0eebce4 2019-03-11 stsp __dead static void
5594 d0eebce4 2019-03-11 stsp usage_ref(void)
5595 d0eebce4 2019-03-11 stsp {
5596 d0eebce4 2019-03-11 stsp fprintf(stderr,
5597 e31abbf2 2020-03-22 stsp "usage: %s ref [-r repository] [-l] [-c object] [-s reference] "
5598 e31abbf2 2020-03-22 stsp "[-d] [name]\n",
5599 d0eebce4 2019-03-11 stsp getprogname());
5600 d0eebce4 2019-03-11 stsp exit(1);
5601 d0eebce4 2019-03-11 stsp }
5602 d0eebce4 2019-03-11 stsp
5603 d0eebce4 2019-03-11 stsp static const struct got_error *
5604 b2070a3f 2020-03-22 stsp list_refs(struct got_repository *repo, const char *refname)
5605 d0eebce4 2019-03-11 stsp {
5606 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
5607 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
5608 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
5609 d0eebce4 2019-03-11 stsp
5610 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
5611 b2070a3f 2020-03-22 stsp err = got_ref_list(&refs, repo, refname, got_ref_cmp_by_name, NULL);
5612 d0eebce4 2019-03-11 stsp if (err)
5613 d0eebce4 2019-03-11 stsp return err;
5614 d0eebce4 2019-03-11 stsp
5615 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
5616 d0eebce4 2019-03-11 stsp char *refstr;
5617 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
5618 d0eebce4 2019-03-11 stsp if (refstr == NULL)
5619 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
5620 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
5621 d0eebce4 2019-03-11 stsp free(refstr);
5622 d0eebce4 2019-03-11 stsp }
5623 d0eebce4 2019-03-11 stsp
5624 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
5625 d0eebce4 2019-03-11 stsp return NULL;
5626 d0eebce4 2019-03-11 stsp }
5627 d0eebce4 2019-03-11 stsp
5628 d0eebce4 2019-03-11 stsp static const struct got_error *
5629 161728eb 2021-07-24 stsp delete_ref_by_name(struct got_repository *repo, const char *refname)
5630 d0eebce4 2019-03-11 stsp {
5631 161728eb 2021-07-24 stsp const struct got_error *err;
5632 d0eebce4 2019-03-11 stsp struct got_reference *ref;
5633 d0eebce4 2019-03-11 stsp
5634 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
5635 d0eebce4 2019-03-11 stsp if (err)
5636 d0eebce4 2019-03-11 stsp return err;
5637 993f033b 2021-07-16 stsp
5638 161728eb 2021-07-24 stsp err = delete_ref(repo, ref);
5639 d0eebce4 2019-03-11 stsp got_ref_close(ref);
5640 d0eebce4 2019-03-11 stsp return err;
5641 d0eebce4 2019-03-11 stsp }
5642 d0eebce4 2019-03-11 stsp
5643 d0eebce4 2019-03-11 stsp static const struct got_error *
5644 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
5645 d0eebce4 2019-03-11 stsp {
5646 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
5647 d0eebce4 2019-03-11 stsp struct got_object_id *id;
5648 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
5649 d1644381 2019-07-14 stsp
5650 d1644381 2019-07-14 stsp /*
5651 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
5652 d1644381 2019-07-14 stsp * While technically a valid reference name, this case is usually
5653 d1644381 2019-07-14 stsp * an unintended typo.
5654 d1644381 2019-07-14 stsp */
5655 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
5656 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
5657 d0eebce4 2019-03-11 stsp
5658 dd88155e 2019-06-29 stsp err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
5659 dd88155e 2019-06-29 stsp repo);
5660 d83d9d5c 2019-05-13 stsp if (err) {
5661 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
5662 d0eebce4 2019-03-11 stsp
5663 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
5664 d83d9d5c 2019-05-13 stsp return err;
5665 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
5666 d83d9d5c 2019-05-13 stsp if (err)
5667 d83d9d5c 2019-05-13 stsp return err;
5668 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
5669 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
5670 d83d9d5c 2019-05-13 stsp if (err)
5671 d83d9d5c 2019-05-13 stsp return err;
5672 d83d9d5c 2019-05-13 stsp }
5673 d83d9d5c 2019-05-13 stsp
5674 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
5675 d0eebce4 2019-03-11 stsp if (err)
5676 d0eebce4 2019-03-11 stsp goto done;
5677 d0eebce4 2019-03-11 stsp
5678 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
5679 d0eebce4 2019-03-11 stsp done:
5680 d0eebce4 2019-03-11 stsp if (ref)
5681 d0eebce4 2019-03-11 stsp got_ref_close(ref);
5682 d0eebce4 2019-03-11 stsp free(id);
5683 d1c1ae5f 2019-08-12 stsp return err;
5684 d1c1ae5f 2019-08-12 stsp }
5685 d1c1ae5f 2019-08-12 stsp
5686 d1c1ae5f 2019-08-12 stsp static const struct got_error *
5687 d1c1ae5f 2019-08-12 stsp add_symref(struct got_repository *repo, const char *refname, const char *target)
5688 d1c1ae5f 2019-08-12 stsp {
5689 d1c1ae5f 2019-08-12 stsp const struct got_error *err = NULL;
5690 d1c1ae5f 2019-08-12 stsp struct got_reference *ref = NULL;
5691 d1c1ae5f 2019-08-12 stsp struct got_reference *target_ref = NULL;
5692 d1c1ae5f 2019-08-12 stsp
5693 d1c1ae5f 2019-08-12 stsp /*
5694 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
5695 d1c1ae5f 2019-08-12 stsp * While technically a valid reference name, this case is usually
5696 d1c1ae5f 2019-08-12 stsp * an unintended typo.
5697 d1c1ae5f 2019-08-12 stsp */
5698 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
5699 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
5700 d1c1ae5f 2019-08-12 stsp
5701 d1c1ae5f 2019-08-12 stsp err = got_ref_open(&target_ref, repo, target, 0);
5702 d1c1ae5f 2019-08-12 stsp if (err)
5703 d1c1ae5f 2019-08-12 stsp return err;
5704 d1c1ae5f 2019-08-12 stsp
5705 d1c1ae5f 2019-08-12 stsp err = got_ref_alloc_symref(&ref, refname, target_ref);
5706 d1c1ae5f 2019-08-12 stsp if (err)
5707 d1c1ae5f 2019-08-12 stsp goto done;
5708 d1c1ae5f 2019-08-12 stsp
5709 d1c1ae5f 2019-08-12 stsp err = got_ref_write(ref, repo);
5710 d1c1ae5f 2019-08-12 stsp done:
5711 d1c1ae5f 2019-08-12 stsp if (target_ref)
5712 d1c1ae5f 2019-08-12 stsp got_ref_close(target_ref);
5713 d1c1ae5f 2019-08-12 stsp if (ref)
5714 d1c1ae5f 2019-08-12 stsp got_ref_close(ref);
5715 d0eebce4 2019-03-11 stsp return err;
5716 d0eebce4 2019-03-11 stsp }
5717 d0eebce4 2019-03-11 stsp
5718 d0eebce4 2019-03-11 stsp static const struct got_error *
5719 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
5720 d0eebce4 2019-03-11 stsp {
5721 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
5722 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
5723 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
5724 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
5725 e31abbf2 2020-03-22 stsp int ch, do_list = 0, do_delete = 0;
5726 b2070a3f 2020-03-22 stsp const char *obj_arg = NULL, *symref_target= NULL;
5727 b2070a3f 2020-03-22 stsp char *refname = NULL;
5728 d0eebce4 2019-03-11 stsp
5729 e31abbf2 2020-03-22 stsp while ((ch = getopt(argc, argv, "c:dr:ls:")) != -1) {
5730 d0eebce4 2019-03-11 stsp switch (ch) {
5731 e31abbf2 2020-03-22 stsp case 'c':
5732 e31abbf2 2020-03-22 stsp obj_arg = optarg;
5733 e31abbf2 2020-03-22 stsp break;
5734 d0eebce4 2019-03-11 stsp case 'd':
5735 e31abbf2 2020-03-22 stsp do_delete = 1;
5736 d0eebce4 2019-03-11 stsp break;
5737 d0eebce4 2019-03-11 stsp case 'r':
5738 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
5739 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
5740 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
5741 9ba1d308 2019-10-21 stsp optarg);
5742 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
5743 d0eebce4 2019-03-11 stsp break;
5744 d0eebce4 2019-03-11 stsp case 'l':
5745 d0eebce4 2019-03-11 stsp do_list = 1;
5746 d1c1ae5f 2019-08-12 stsp break;
5747 d1c1ae5f 2019-08-12 stsp case 's':
5748 e31abbf2 2020-03-22 stsp symref_target = optarg;
5749 d0eebce4 2019-03-11 stsp break;
5750 d0eebce4 2019-03-11 stsp default:
5751 d0eebce4 2019-03-11 stsp usage_ref();
5752 d0eebce4 2019-03-11 stsp /* NOTREACHED */
5753 d0eebce4 2019-03-11 stsp }
5754 d0eebce4 2019-03-11 stsp }
5755 d0eebce4 2019-03-11 stsp
5756 e31abbf2 2020-03-22 stsp if (obj_arg && do_list)
5757 ff69268e 2020-12-13 stsp option_conflict('c', 'l');
5758 ff69268e 2020-12-13 stsp if (obj_arg && do_delete)
5759 ff69268e 2020-12-13 stsp option_conflict('c', 'd');
5760 907f15e2 2020-03-22 stsp if (obj_arg && symref_target)
5761 ff69268e 2020-12-13 stsp option_conflict('c', 's');
5762 e31abbf2 2020-03-22 stsp if (symref_target && do_delete)
5763 ff69268e 2020-12-13 stsp option_conflict('s', 'd');
5764 e31abbf2 2020-03-22 stsp if (symref_target && do_list)
5765 ff69268e 2020-12-13 stsp option_conflict('s', 'l');
5766 e31abbf2 2020-03-22 stsp if (do_delete && do_list)
5767 ff69268e 2020-12-13 stsp option_conflict('d', 'l');
5768 d0eebce4 2019-03-11 stsp
5769 d0eebce4 2019-03-11 stsp argc -= optind;
5770 d0eebce4 2019-03-11 stsp argv += optind;
5771 d0eebce4 2019-03-11 stsp
5772 e31abbf2 2020-03-22 stsp if (do_list) {
5773 b2070a3f 2020-03-22 stsp if (argc != 0 && argc != 1)
5774 d0eebce4 2019-03-11 stsp usage_ref();
5775 b2070a3f 2020-03-22 stsp if (argc == 1) {
5776 b2070a3f 2020-03-22 stsp refname = strdup(argv[0]);
5777 b2070a3f 2020-03-22 stsp if (refname == NULL) {
5778 b2070a3f 2020-03-22 stsp error = got_error_from_errno("strdup");
5779 b2070a3f 2020-03-22 stsp goto done;
5780 b2070a3f 2020-03-22 stsp }
5781 b2070a3f 2020-03-22 stsp }
5782 e31abbf2 2020-03-22 stsp } else {
5783 e31abbf2 2020-03-22 stsp if (argc != 1)
5784 e31abbf2 2020-03-22 stsp usage_ref();
5785 b2070a3f 2020-03-22 stsp refname = strdup(argv[0]);
5786 b2070a3f 2020-03-22 stsp if (refname == NULL) {
5787 b2070a3f 2020-03-22 stsp error = got_error_from_errno("strdup");
5788 b2070a3f 2020-03-22 stsp goto done;
5789 b2070a3f 2020-03-22 stsp }
5790 e31abbf2 2020-03-22 stsp }
5791 b2070a3f 2020-03-22 stsp
5792 b2070a3f 2020-03-22 stsp if (refname)
5793 b2070a3f 2020-03-22 stsp got_path_strip_trailing_slashes(refname);
5794 d0eebce4 2019-03-11 stsp
5795 d0eebce4 2019-03-11 stsp #ifndef PROFILE
5796 e0b57350 2019-03-12 stsp if (do_list) {
5797 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
5798 e0b57350 2019-03-12 stsp NULL) == -1)
5799 e0b57350 2019-03-12 stsp err(1, "pledge");
5800 e0b57350 2019-03-12 stsp } else {
5801 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
5802 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
5803 e0b57350 2019-03-12 stsp err(1, "pledge");
5804 e0b57350 2019-03-12 stsp }
5805 d0eebce4 2019-03-11 stsp #endif
5806 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
5807 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
5808 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
5809 d0eebce4 2019-03-11 stsp goto done;
5810 d0eebce4 2019-03-11 stsp }
5811 d0eebce4 2019-03-11 stsp
5812 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
5813 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
5814 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
5815 d0eebce4 2019-03-11 stsp goto done;
5816 d0eebce4 2019-03-11 stsp else
5817 d0eebce4 2019-03-11 stsp error = NULL;
5818 d0eebce4 2019-03-11 stsp if (worktree) {
5819 d0eebce4 2019-03-11 stsp repo_path =
5820 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
5821 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
5822 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5823 d0eebce4 2019-03-11 stsp if (error)
5824 d0eebce4 2019-03-11 stsp goto done;
5825 d0eebce4 2019-03-11 stsp } else {
5826 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
5827 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
5828 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
5829 d0eebce4 2019-03-11 stsp goto done;
5830 d0eebce4 2019-03-11 stsp }
5831 d0eebce4 2019-03-11 stsp }
5832 d0eebce4 2019-03-11 stsp }
5833 d0eebce4 2019-03-11 stsp
5834 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
5835 d0eebce4 2019-03-11 stsp if (error != NULL)
5836 d0eebce4 2019-03-11 stsp goto done;
5837 d0eebce4 2019-03-11 stsp
5838 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
5839 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
5840 c02c541e 2019-03-29 stsp if (error)
5841 c02c541e 2019-03-29 stsp goto done;
5842 c02c541e 2019-03-29 stsp
5843 d0eebce4 2019-03-11 stsp if (do_list)
5844 b2070a3f 2020-03-22 stsp error = list_refs(repo, refname);
5845 e31abbf2 2020-03-22 stsp else if (do_delete)
5846 161728eb 2021-07-24 stsp error = delete_ref_by_name(repo, refname);
5847 e31abbf2 2020-03-22 stsp else if (symref_target)
5848 e31abbf2 2020-03-22 stsp error = add_symref(repo, refname, symref_target);
5849 e31abbf2 2020-03-22 stsp else {
5850 e31abbf2 2020-03-22 stsp if (obj_arg == NULL)
5851 e31abbf2 2020-03-22 stsp usage_ref();
5852 e31abbf2 2020-03-22 stsp error = add_ref(repo, refname, obj_arg);
5853 e31abbf2 2020-03-22 stsp }
5854 4e759de4 2019-06-26 stsp done:
5855 b2070a3f 2020-03-22 stsp free(refname);
5856 1d0f4054 2021-06-17 stsp if (repo) {
5857 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
5858 1d0f4054 2021-06-17 stsp if (error == NULL)
5859 1d0f4054 2021-06-17 stsp error = close_err;
5860 1d0f4054 2021-06-17 stsp }
5861 4e759de4 2019-06-26 stsp if (worktree)
5862 4e759de4 2019-06-26 stsp got_worktree_close(worktree);
5863 4e759de4 2019-06-26 stsp free(cwd);
5864 4e759de4 2019-06-26 stsp free(repo_path);
5865 4e759de4 2019-06-26 stsp return error;
5866 4e759de4 2019-06-26 stsp }
5867 4e759de4 2019-06-26 stsp
5868 4e759de4 2019-06-26 stsp __dead static void
5869 4e759de4 2019-06-26 stsp usage_branch(void)
5870 4e759de4 2019-06-26 stsp {
5871 4e759de4 2019-06-26 stsp fprintf(stderr,
5872 da76fce2 2020-02-24 stsp "usage: %s branch [-c commit] [-d] [-r repository] [-l] [-n] "
5873 da76fce2 2020-02-24 stsp "[name]\n", getprogname());
5874 4e759de4 2019-06-26 stsp exit(1);
5875 4e759de4 2019-06-26 stsp }
5876 4e759de4 2019-06-26 stsp
5877 4e759de4 2019-06-26 stsp static const struct got_error *
5878 4e99b47e 2019-10-04 stsp list_branch(struct got_repository *repo, struct got_worktree *worktree,
5879 4e99b47e 2019-10-04 stsp struct got_reference *ref)
5880 4e99b47e 2019-10-04 stsp {
5881 4e99b47e 2019-10-04 stsp const struct got_error *err = NULL;
5882 4e99b47e 2019-10-04 stsp const char *refname, *marker = " ";
5883 4e99b47e 2019-10-04 stsp char *refstr;
5884 4e99b47e 2019-10-04 stsp
5885 4e99b47e 2019-10-04 stsp refname = got_ref_get_name(ref);
5886 4e99b47e 2019-10-04 stsp if (worktree && strcmp(refname,
5887 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree)) == 0) {
5888 4e99b47e 2019-10-04 stsp struct got_object_id *id = NULL;
5889 4e99b47e 2019-10-04 stsp
5890 4e99b47e 2019-10-04 stsp err = got_ref_resolve(&id, repo, ref);
5891 4e99b47e 2019-10-04 stsp if (err)
5892 4e99b47e 2019-10-04 stsp return err;
5893 4e99b47e 2019-10-04 stsp if (got_object_id_cmp(id,
5894 4e99b47e 2019-10-04 stsp got_worktree_get_base_commit_id(worktree)) == 0)
5895 4e99b47e 2019-10-04 stsp marker = "* ";
5896 4e99b47e 2019-10-04 stsp else
5897 4e99b47e 2019-10-04 stsp marker = "~ ";
5898 4e99b47e 2019-10-04 stsp free(id);
5899 4e99b47e 2019-10-04 stsp }
5900 4e99b47e 2019-10-04 stsp
5901 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
5902 4e99b47e 2019-10-04 stsp refname += 11;
5903 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
5904 4e99b47e 2019-10-04 stsp refname += 18;
5905 34d4e04c 2021-02-08 stsp if (strncmp(refname, "refs/remotes/", 13) == 0)
5906 34d4e04c 2021-02-08 stsp refname += 13;
5907 4e99b47e 2019-10-04 stsp
5908 4e99b47e 2019-10-04 stsp refstr = got_ref_to_str(ref);
5909 4e99b47e 2019-10-04 stsp if (refstr == NULL)
5910 4e99b47e 2019-10-04 stsp return got_error_from_errno("got_ref_to_str");
5911 4e99b47e 2019-10-04 stsp
5912 4e99b47e 2019-10-04 stsp printf("%s%s: %s\n", marker, refname, refstr);
5913 4e99b47e 2019-10-04 stsp free(refstr);
5914 4e99b47e 2019-10-04 stsp return NULL;
5915 4e99b47e 2019-10-04 stsp }
5916 4e99b47e 2019-10-04 stsp
5917 4e99b47e 2019-10-04 stsp static const struct got_error *
5918 ad89fa31 2019-10-04 stsp show_current_branch(struct got_repository *repo, struct got_worktree *worktree)
5919 ad89fa31 2019-10-04 stsp {
5920 ad89fa31 2019-10-04 stsp const char *refname;
5921 ad89fa31 2019-10-04 stsp
5922 ad89fa31 2019-10-04 stsp if (worktree == NULL)
5923 ad89fa31 2019-10-04 stsp return got_error(GOT_ERR_NOT_WORKTREE);
5924 ad89fa31 2019-10-04 stsp
5925 ad89fa31 2019-10-04 stsp refname = got_worktree_get_head_ref_name(worktree);
5926 ad89fa31 2019-10-04 stsp
5927 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
5928 ad89fa31 2019-10-04 stsp refname += 11;
5929 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
5930 ad89fa31 2019-10-04 stsp refname += 18;
5931 ad89fa31 2019-10-04 stsp
5932 ad89fa31 2019-10-04 stsp printf("%s\n", refname);
5933 ad89fa31 2019-10-04 stsp
5934 ad89fa31 2019-10-04 stsp return NULL;
5935 ad89fa31 2019-10-04 stsp }
5936 ad89fa31 2019-10-04 stsp
5937 ad89fa31 2019-10-04 stsp static const struct got_error *
5938 ba882ee3 2019-07-11 stsp list_branches(struct got_repository *repo, struct got_worktree *worktree)
5939 4e759de4 2019-06-26 stsp {
5940 4e759de4 2019-06-26 stsp static const struct got_error *err = NULL;
5941 4e759de4 2019-06-26 stsp struct got_reflist_head refs;
5942 4e759de4 2019-06-26 stsp struct got_reflist_entry *re;
5943 4e99b47e 2019-10-04 stsp struct got_reference *temp_ref = NULL;
5944 4e99b47e 2019-10-04 stsp int rebase_in_progress, histedit_in_progress;
5945 4e759de4 2019-06-26 stsp
5946 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
5947 ba882ee3 2019-07-11 stsp
5948 4e99b47e 2019-10-04 stsp if (worktree) {
5949 4e99b47e 2019-10-04 stsp err = got_worktree_rebase_in_progress(&rebase_in_progress,
5950 4e99b47e 2019-10-04 stsp worktree);
5951 4e99b47e 2019-10-04 stsp if (err)
5952 4e99b47e 2019-10-04 stsp return err;
5953 4e99b47e 2019-10-04 stsp
5954 4e99b47e 2019-10-04 stsp err = got_worktree_histedit_in_progress(&histedit_in_progress,
5955 4e99b47e 2019-10-04 stsp worktree);
5956 4e99b47e 2019-10-04 stsp if (err)
5957 4e99b47e 2019-10-04 stsp return err;
5958 4e99b47e 2019-10-04 stsp
5959 4e99b47e 2019-10-04 stsp if (rebase_in_progress || histedit_in_progress) {
5960 4e99b47e 2019-10-04 stsp err = got_ref_open(&temp_ref, repo,
5961 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree), 0);
5962 4e99b47e 2019-10-04 stsp if (err)
5963 4e99b47e 2019-10-04 stsp return err;
5964 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, temp_ref);
5965 4e99b47e 2019-10-04 stsp got_ref_close(temp_ref);
5966 4e99b47e 2019-10-04 stsp }
5967 4e99b47e 2019-10-04 stsp }
5968 4e99b47e 2019-10-04 stsp
5969 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, "refs/heads",
5970 b8bad2ba 2019-08-23 stsp got_ref_cmp_by_name, NULL);
5971 4e759de4 2019-06-26 stsp if (err)
5972 4e759de4 2019-06-26 stsp return err;
5973 4e759de4 2019-06-26 stsp
5974 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry)
5975 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, re->ref);
5976 4e759de4 2019-06-26 stsp
5977 4e759de4 2019-06-26 stsp got_ref_list_free(&refs);
5978 34d4e04c 2021-02-08 stsp
5979 34d4e04c 2021-02-08 stsp err = got_ref_list(&refs, repo, "refs/remotes",
5980 34d4e04c 2021-02-08 stsp got_ref_cmp_by_name, NULL);
5981 34d4e04c 2021-02-08 stsp if (err)
5982 34d4e04c 2021-02-08 stsp return err;
5983 34d4e04c 2021-02-08 stsp
5984 34d4e04c 2021-02-08 stsp TAILQ_FOREACH(re, &refs, entry)
5985 34d4e04c 2021-02-08 stsp list_branch(repo, worktree, re->ref);
5986 34d4e04c 2021-02-08 stsp
5987 34d4e04c 2021-02-08 stsp got_ref_list_free(&refs);
5988 34d4e04c 2021-02-08 stsp
5989 4e759de4 2019-06-26 stsp return NULL;
5990 4e759de4 2019-06-26 stsp }
5991 4e759de4 2019-06-26 stsp
5992 4e759de4 2019-06-26 stsp static const struct got_error *
5993 45cd4e47 2019-08-25 stsp delete_branch(struct got_repository *repo, struct got_worktree *worktree,
5994 45cd4e47 2019-08-25 stsp const char *branch_name)
5995 4e759de4 2019-06-26 stsp {
5996 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
5997 45cd4e47 2019-08-25 stsp struct got_reference *ref = NULL;
5998 2f1457c6 2021-08-27 stsp char *refname, *remote_refname = NULL;
5999 4e759de4 2019-06-26 stsp
6000 2f1457c6 2021-08-27 stsp if (strncmp(branch_name, "refs/", 5) == 0)
6001 2f1457c6 2021-08-27 stsp branch_name += 5;
6002 2f1457c6 2021-08-27 stsp if (strncmp(branch_name, "heads/", 6) == 0)
6003 2f1457c6 2021-08-27 stsp branch_name += 6;
6004 2f1457c6 2021-08-27 stsp else if (strncmp(branch_name, "remotes/", 8) == 0)
6005 2f1457c6 2021-08-27 stsp branch_name += 8;
6006 2f1457c6 2021-08-27 stsp
6007 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
6008 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
6009 4e759de4 2019-06-26 stsp
6010 2f1457c6 2021-08-27 stsp if (asprintf(&remote_refname, "refs/remotes/%s",
6011 2f1457c6 2021-08-27 stsp branch_name) == -1) {
6012 2f1457c6 2021-08-27 stsp err = got_error_from_errno("asprintf");
6013 4e759de4 2019-06-26 stsp goto done;
6014 2f1457c6 2021-08-27 stsp }
6015 4e759de4 2019-06-26 stsp
6016 2f1457c6 2021-08-27 stsp err = got_ref_open(&ref, repo, refname, 0);
6017 2f1457c6 2021-08-27 stsp if (err) {
6018 2f1457c6 2021-08-27 stsp const struct got_error *err2;
6019 2f1457c6 2021-08-27 stsp if (err->code != GOT_ERR_NOT_REF)
6020 2f1457c6 2021-08-27 stsp goto done;
6021 2f1457c6 2021-08-27 stsp /*
6022 2f1457c6 2021-08-27 stsp * Keep 'err' intact such that if neither branch exists
6023 2f1457c6 2021-08-27 stsp * we report "refs/heads" rather than "refs/remotes" in
6024 2f1457c6 2021-08-27 stsp * our error message.
6025 2f1457c6 2021-08-27 stsp */
6026 2f1457c6 2021-08-27 stsp err2 = got_ref_open(&ref, repo, remote_refname, 0);
6027 2f1457c6 2021-08-27 stsp if (err2)
6028 2f1457c6 2021-08-27 stsp goto done;
6029 2f1457c6 2021-08-27 stsp err = NULL;
6030 2f1457c6 2021-08-27 stsp }
6031 2f1457c6 2021-08-27 stsp
6032 45cd4e47 2019-08-25 stsp if (worktree &&
6033 45cd4e47 2019-08-25 stsp strcmp(got_worktree_get_head_ref_name(worktree),
6034 45cd4e47 2019-08-25 stsp got_ref_get_name(ref)) == 0) {
6035 45cd4e47 2019-08-25 stsp err = got_error_msg(GOT_ERR_SAME_BRANCH,
6036 45cd4e47 2019-08-25 stsp "will not delete this work tree's current branch");
6037 45cd4e47 2019-08-25 stsp goto done;
6038 45cd4e47 2019-08-25 stsp }
6039 45cd4e47 2019-08-25 stsp
6040 978a28a1 2021-09-04 naddy err = delete_ref(repo, ref);
6041 4e759de4 2019-06-26 stsp done:
6042 45cd4e47 2019-08-25 stsp if (ref)
6043 45cd4e47 2019-08-25 stsp got_ref_close(ref);
6044 4e759de4 2019-06-26 stsp free(refname);
6045 2f1457c6 2021-08-27 stsp free(remote_refname);
6046 4e759de4 2019-06-26 stsp return err;
6047 4e759de4 2019-06-26 stsp }
6048 4e759de4 2019-06-26 stsp
6049 4e759de4 2019-06-26 stsp static const struct got_error *
6050 4e759de4 2019-06-26 stsp add_branch(struct got_repository *repo, const char *branch_name,
6051 a74f7e83 2019-11-10 stsp struct got_object_id *base_commit_id)
6052 4e759de4 2019-06-26 stsp {
6053 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
6054 4e759de4 2019-06-26 stsp struct got_reference *ref = NULL;
6055 4e759de4 2019-06-26 stsp char *base_refname = NULL, *refname = NULL;
6056 d3f84d51 2019-07-11 stsp
6057 d3f84d51 2019-07-11 stsp /*
6058 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
6059 d3f84d51 2019-07-11 stsp * While technically a valid reference name, this case is usually
6060 d3f84d51 2019-07-11 stsp * an unintended typo.
6061 d3f84d51 2019-07-11 stsp */
6062 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
6063 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
6064 2f1457c6 2021-08-27 stsp
6065 2f1457c6 2021-08-27 stsp if (strncmp(branch_name, "refs/heads/", 11) == 0)
6066 2f1457c6 2021-08-27 stsp branch_name += 11;
6067 4e759de4 2019-06-26 stsp
6068 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
6069 62d463ca 2020-10-20 naddy err = got_error_from_errno("asprintf");
6070 62d463ca 2020-10-20 naddy goto done;
6071 4e759de4 2019-06-26 stsp }
6072 4e759de4 2019-06-26 stsp
6073 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
6074 4e759de4 2019-06-26 stsp if (err == NULL) {
6075 4e759de4 2019-06-26 stsp err = got_error(GOT_ERR_BRANCH_EXISTS);
6076 4e759de4 2019-06-26 stsp goto done;
6077 4e759de4 2019-06-26 stsp } else if (err->code != GOT_ERR_NOT_REF)
6078 4e759de4 2019-06-26 stsp goto done;
6079 4e759de4 2019-06-26 stsp
6080 a74f7e83 2019-11-10 stsp err = got_ref_alloc(&ref, refname, base_commit_id);
6081 4e759de4 2019-06-26 stsp if (err)
6082 4e759de4 2019-06-26 stsp goto done;
6083 4e759de4 2019-06-26 stsp
6084 4e759de4 2019-06-26 stsp err = got_ref_write(ref, repo);
6085 d0eebce4 2019-03-11 stsp done:
6086 4e759de4 2019-06-26 stsp if (ref)
6087 4e759de4 2019-06-26 stsp got_ref_close(ref);
6088 4e759de4 2019-06-26 stsp free(base_refname);
6089 4e759de4 2019-06-26 stsp free(refname);
6090 4e759de4 2019-06-26 stsp return err;
6091 4e759de4 2019-06-26 stsp }
6092 4e759de4 2019-06-26 stsp
6093 4e759de4 2019-06-26 stsp static const struct got_error *
6094 4e759de4 2019-06-26 stsp cmd_branch(int argc, char *argv[])
6095 4e759de4 2019-06-26 stsp {
6096 4e759de4 2019-06-26 stsp const struct got_error *error = NULL;
6097 4e759de4 2019-06-26 stsp struct got_repository *repo = NULL;
6098 4e759de4 2019-06-26 stsp struct got_worktree *worktree = NULL;
6099 4e759de4 2019-06-26 stsp char *cwd = NULL, *repo_path = NULL;
6100 da76fce2 2020-02-24 stsp int ch, do_list = 0, do_show = 0, do_update = 1;
6101 a74f7e83 2019-11-10 stsp const char *delref = NULL, *commit_id_arg = NULL;
6102 da76fce2 2020-02-24 stsp struct got_reference *ref = NULL;
6103 da76fce2 2020-02-24 stsp struct got_pathlist_head paths;
6104 da76fce2 2020-02-24 stsp struct got_pathlist_entry *pe;
6105 da76fce2 2020-02-24 stsp struct got_object_id *commit_id = NULL;
6106 da76fce2 2020-02-24 stsp char *commit_id_str = NULL;
6107 4e759de4 2019-06-26 stsp
6108 da76fce2 2020-02-24 stsp TAILQ_INIT(&paths);
6109 da76fce2 2020-02-24 stsp
6110 da76fce2 2020-02-24 stsp while ((ch = getopt(argc, argv, "c:d:r:ln")) != -1) {
6111 4e759de4 2019-06-26 stsp switch (ch) {
6112 a74f7e83 2019-11-10 stsp case 'c':
6113 a74f7e83 2019-11-10 stsp commit_id_arg = optarg;
6114 a74f7e83 2019-11-10 stsp break;
6115 4e759de4 2019-06-26 stsp case 'd':
6116 4e759de4 2019-06-26 stsp delref = optarg;
6117 4e759de4 2019-06-26 stsp break;
6118 4e759de4 2019-06-26 stsp case 'r':
6119 4e759de4 2019-06-26 stsp repo_path = realpath(optarg, NULL);
6120 4e759de4 2019-06-26 stsp if (repo_path == NULL)
6121 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6122 9ba1d308 2019-10-21 stsp optarg);
6123 4e759de4 2019-06-26 stsp got_path_strip_trailing_slashes(repo_path);
6124 4e759de4 2019-06-26 stsp break;
6125 4e759de4 2019-06-26 stsp case 'l':
6126 4e759de4 2019-06-26 stsp do_list = 1;
6127 da76fce2 2020-02-24 stsp break;
6128 da76fce2 2020-02-24 stsp case 'n':
6129 da76fce2 2020-02-24 stsp do_update = 0;
6130 4e759de4 2019-06-26 stsp break;
6131 4e759de4 2019-06-26 stsp default:
6132 4e759de4 2019-06-26 stsp usage_branch();
6133 4e759de4 2019-06-26 stsp /* NOTREACHED */
6134 4e759de4 2019-06-26 stsp }
6135 4e759de4 2019-06-26 stsp }
6136 4e759de4 2019-06-26 stsp
6137 4e759de4 2019-06-26 stsp if (do_list && delref)
6138 ff69268e 2020-12-13 stsp option_conflict('l', 'd');
6139 4e759de4 2019-06-26 stsp
6140 4e759de4 2019-06-26 stsp argc -= optind;
6141 4e759de4 2019-06-26 stsp argv += optind;
6142 ad89fa31 2019-10-04 stsp
6143 ad89fa31 2019-10-04 stsp if (!do_list && !delref && argc == 0)
6144 ad89fa31 2019-10-04 stsp do_show = 1;
6145 4e759de4 2019-06-26 stsp
6146 a74f7e83 2019-11-10 stsp if ((do_list || delref || do_show) && commit_id_arg != NULL)
6147 a74f7e83 2019-11-10 stsp errx(1, "-c option can only be used when creating a branch");
6148 a74f7e83 2019-11-10 stsp
6149 4e759de4 2019-06-26 stsp if (do_list || delref) {
6150 4e759de4 2019-06-26 stsp if (argc > 0)
6151 4e759de4 2019-06-26 stsp usage_branch();
6152 a74f7e83 2019-11-10 stsp } else if (!do_show && argc != 1)
6153 4e759de4 2019-06-26 stsp usage_branch();
6154 4e759de4 2019-06-26 stsp
6155 4e759de4 2019-06-26 stsp #ifndef PROFILE
6156 ad89fa31 2019-10-04 stsp if (do_list || do_show) {
6157 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
6158 4e759de4 2019-06-26 stsp NULL) == -1)
6159 4e759de4 2019-06-26 stsp err(1, "pledge");
6160 4e759de4 2019-06-26 stsp } else {
6161 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
6162 4e759de4 2019-06-26 stsp "sendfd unveil", NULL) == -1)
6163 4e759de4 2019-06-26 stsp err(1, "pledge");
6164 4e759de4 2019-06-26 stsp }
6165 4e759de4 2019-06-26 stsp #endif
6166 4e759de4 2019-06-26 stsp cwd = getcwd(NULL, 0);
6167 4e759de4 2019-06-26 stsp if (cwd == NULL) {
6168 4e759de4 2019-06-26 stsp error = got_error_from_errno("getcwd");
6169 4e759de4 2019-06-26 stsp goto done;
6170 4e759de4 2019-06-26 stsp }
6171 4e759de4 2019-06-26 stsp
6172 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
6173 4e759de4 2019-06-26 stsp error = got_worktree_open(&worktree, cwd);
6174 4e759de4 2019-06-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6175 4e759de4 2019-06-26 stsp goto done;
6176 4e759de4 2019-06-26 stsp else
6177 4e759de4 2019-06-26 stsp error = NULL;
6178 4e759de4 2019-06-26 stsp if (worktree) {
6179 4e759de4 2019-06-26 stsp repo_path =
6180 4e759de4 2019-06-26 stsp strdup(got_worktree_get_repo_path(worktree));
6181 4e759de4 2019-06-26 stsp if (repo_path == NULL)
6182 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
6183 4e759de4 2019-06-26 stsp if (error)
6184 4e759de4 2019-06-26 stsp goto done;
6185 4e759de4 2019-06-26 stsp } else {
6186 4e759de4 2019-06-26 stsp repo_path = strdup(cwd);
6187 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
6188 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
6189 4e759de4 2019-06-26 stsp goto done;
6190 4e759de4 2019-06-26 stsp }
6191 4e759de4 2019-06-26 stsp }
6192 4e759de4 2019-06-26 stsp }
6193 4e759de4 2019-06-26 stsp
6194 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
6195 4e759de4 2019-06-26 stsp if (error != NULL)
6196 4e759de4 2019-06-26 stsp goto done;
6197 4e759de4 2019-06-26 stsp
6198 4e759de4 2019-06-26 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
6199 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
6200 4e759de4 2019-06-26 stsp if (error)
6201 4e759de4 2019-06-26 stsp goto done;
6202 4e759de4 2019-06-26 stsp
6203 ad89fa31 2019-10-04 stsp if (do_show)
6204 ad89fa31 2019-10-04 stsp error = show_current_branch(repo, worktree);
6205 ad89fa31 2019-10-04 stsp else if (do_list)
6206 ba882ee3 2019-07-11 stsp error = list_branches(repo, worktree);
6207 4e759de4 2019-06-26 stsp else if (delref)
6208 45cd4e47 2019-08-25 stsp error = delete_branch(repo, worktree, delref);
6209 4e759de4 2019-06-26 stsp else {
6210 84de9106 2020-12-26 stsp struct got_reflist_head refs;
6211 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
6212 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name,
6213 84de9106 2020-12-26 stsp NULL);
6214 84de9106 2020-12-26 stsp if (error)
6215 84de9106 2020-12-26 stsp goto done;
6216 a74f7e83 2019-11-10 stsp if (commit_id_arg == NULL)
6217 a74f7e83 2019-11-10 stsp commit_id_arg = worktree ?
6218 4e759de4 2019-06-26 stsp got_worktree_get_head_ref_name(worktree) :
6219 4e759de4 2019-06-26 stsp GOT_REF_HEAD;
6220 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
6221 84de9106 2020-12-26 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, &refs, repo);
6222 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
6223 a74f7e83 2019-11-10 stsp if (error)
6224 a74f7e83 2019-11-10 stsp goto done;
6225 a74f7e83 2019-11-10 stsp error = add_branch(repo, argv[0], commit_id);
6226 da76fce2 2020-02-24 stsp if (error)
6227 da76fce2 2020-02-24 stsp goto done;
6228 da76fce2 2020-02-24 stsp if (worktree && do_update) {
6229 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
6230 da76fce2 2020-02-24 stsp char *branch_refname = NULL;
6231 da76fce2 2020-02-24 stsp
6232 da76fce2 2020-02-24 stsp error = got_object_id_str(&commit_id_str, commit_id);
6233 da76fce2 2020-02-24 stsp if (error)
6234 da76fce2 2020-02-24 stsp goto done;
6235 da76fce2 2020-02-24 stsp error = get_worktree_paths_from_argv(&paths, 0, NULL,
6236 da76fce2 2020-02-24 stsp worktree);
6237 da76fce2 2020-02-24 stsp if (error)
6238 da76fce2 2020-02-24 stsp goto done;
6239 da76fce2 2020-02-24 stsp if (asprintf(&branch_refname, "refs/heads/%s", argv[0])
6240 da76fce2 2020-02-24 stsp == -1) {
6241 da76fce2 2020-02-24 stsp error = got_error_from_errno("asprintf");
6242 da76fce2 2020-02-24 stsp goto done;
6243 da76fce2 2020-02-24 stsp }
6244 da76fce2 2020-02-24 stsp error = got_ref_open(&ref, repo, branch_refname, 0);
6245 da76fce2 2020-02-24 stsp free(branch_refname);
6246 da76fce2 2020-02-24 stsp if (error)
6247 da76fce2 2020-02-24 stsp goto done;
6248 da76fce2 2020-02-24 stsp error = switch_head_ref(ref, commit_id, worktree,
6249 da76fce2 2020-02-24 stsp repo);
6250 da76fce2 2020-02-24 stsp if (error)
6251 da76fce2 2020-02-24 stsp goto done;
6252 da76fce2 2020-02-24 stsp error = got_worktree_set_base_commit_id(worktree, repo,
6253 da76fce2 2020-02-24 stsp commit_id);
6254 da76fce2 2020-02-24 stsp if (error)
6255 da76fce2 2020-02-24 stsp goto done;
6256 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
6257 da76fce2 2020-02-24 stsp error = got_worktree_checkout_files(worktree, &paths,
6258 9627c110 2020-04-18 stsp repo, update_progress, &upa, check_cancelled,
6259 9627c110 2020-04-18 stsp NULL);
6260 da76fce2 2020-02-24 stsp if (error)
6261 da76fce2 2020-02-24 stsp goto done;
6262 4f3c844b 2021-09-14 stsp if (upa.did_something) {
6263 4f3c844b 2021-09-14 stsp printf("Updated to %s: %s\n",
6264 4f3c844b 2021-09-14 stsp got_worktree_get_head_ref_name(worktree),
6265 4f3c844b 2021-09-14 stsp commit_id_str);
6266 4f3c844b 2021-09-14 stsp }
6267 9627c110 2020-04-18 stsp print_update_progress_stats(&upa);
6268 da76fce2 2020-02-24 stsp }
6269 4e759de4 2019-06-26 stsp }
6270 4e759de4 2019-06-26 stsp done:
6271 da76fce2 2020-02-24 stsp if (ref)
6272 da76fce2 2020-02-24 stsp got_ref_close(ref);
6273 1d0f4054 2021-06-17 stsp if (repo) {
6274 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6275 1d0f4054 2021-06-17 stsp if (error == NULL)
6276 1d0f4054 2021-06-17 stsp error = close_err;
6277 1d0f4054 2021-06-17 stsp }
6278 d0eebce4 2019-03-11 stsp if (worktree)
6279 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
6280 d0eebce4 2019-03-11 stsp free(cwd);
6281 d0eebce4 2019-03-11 stsp free(repo_path);
6282 da76fce2 2020-02-24 stsp free(commit_id);
6283 da76fce2 2020-02-24 stsp free(commit_id_str);
6284 da76fce2 2020-02-24 stsp TAILQ_FOREACH(pe, &paths, entry)
6285 da76fce2 2020-02-24 stsp free((char *)pe->path);
6286 da76fce2 2020-02-24 stsp got_pathlist_free(&paths);
6287 d00136be 2019-03-26 stsp return error;
6288 d00136be 2019-03-26 stsp }
6289 d00136be 2019-03-26 stsp
6290 8e7bd50a 2019-08-22 stsp
6291 d00136be 2019-03-26 stsp __dead static void
6292 8e7bd50a 2019-08-22 stsp usage_tag(void)
6293 8e7bd50a 2019-08-22 stsp {
6294 8e7bd50a 2019-08-22 stsp fprintf(stderr,
6295 80106605 2020-02-24 stsp "usage: %s tag [-c commit] [-r repository] [-l] "
6296 80106605 2020-02-24 stsp "[-m message] name\n", getprogname());
6297 8e7bd50a 2019-08-22 stsp exit(1);
6298 b8bad2ba 2019-08-23 stsp }
6299 b8bad2ba 2019-08-23 stsp
6300 b8bad2ba 2019-08-23 stsp #if 0
6301 b8bad2ba 2019-08-23 stsp static const struct got_error *
6302 b8bad2ba 2019-08-23 stsp sort_tags(struct got_reflist_head *sorted, struct got_reflist_head *tags)
6303 b8bad2ba 2019-08-23 stsp {
6304 b8bad2ba 2019-08-23 stsp const struct got_error *err = NULL;
6305 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *re, *se, *new;
6306 b8bad2ba 2019-08-23 stsp struct got_object_id *re_id, *se_id;
6307 b8bad2ba 2019-08-23 stsp struct got_tag_object *re_tag, *se_tag;
6308 b8bad2ba 2019-08-23 stsp time_t re_time, se_time;
6309 b8bad2ba 2019-08-23 stsp
6310 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(re, tags, entry) {
6311 dbdddfee 2021-06-23 naddy se = STAILQ_FIRST(sorted);
6312 b8bad2ba 2019-08-23 stsp if (se == NULL) {
6313 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
6314 b8bad2ba 2019-08-23 stsp if (err)
6315 b8bad2ba 2019-08-23 stsp return err;
6316 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(sorted, new, entry);
6317 b8bad2ba 2019-08-23 stsp continue;
6318 b8bad2ba 2019-08-23 stsp } else {
6319 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&re_id, repo, re->ref);
6320 b8bad2ba 2019-08-23 stsp if (err)
6321 b8bad2ba 2019-08-23 stsp break;
6322 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&re_tag, repo, re_id);
6323 b8bad2ba 2019-08-23 stsp free(re_id);
6324 b8bad2ba 2019-08-23 stsp if (err)
6325 b8bad2ba 2019-08-23 stsp break;
6326 b8bad2ba 2019-08-23 stsp re_time = got_object_tag_get_tagger_time(re_tag);
6327 b8bad2ba 2019-08-23 stsp got_object_tag_close(re_tag);
6328 b8bad2ba 2019-08-23 stsp }
6329 b8bad2ba 2019-08-23 stsp
6330 b8bad2ba 2019-08-23 stsp while (se) {
6331 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&se_id, repo, re->ref);
6332 b8bad2ba 2019-08-23 stsp if (err)
6333 b8bad2ba 2019-08-23 stsp break;
6334 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&se_tag, repo, se_id);
6335 b8bad2ba 2019-08-23 stsp free(se_id);
6336 b8bad2ba 2019-08-23 stsp if (err)
6337 b8bad2ba 2019-08-23 stsp break;
6338 b8bad2ba 2019-08-23 stsp se_time = got_object_tag_get_tagger_time(se_tag);
6339 b8bad2ba 2019-08-23 stsp got_object_tag_close(se_tag);
6340 b8bad2ba 2019-08-23 stsp
6341 b8bad2ba 2019-08-23 stsp if (se_time > re_time) {
6342 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
6343 b8bad2ba 2019-08-23 stsp if (err)
6344 b8bad2ba 2019-08-23 stsp return err;
6345 dbdddfee 2021-06-23 naddy STAILQ_INSERT_AFTER(sorted, se, new, entry);
6346 b8bad2ba 2019-08-23 stsp break;
6347 b8bad2ba 2019-08-23 stsp }
6348 dbdddfee 2021-06-23 naddy se = STAILQ_NEXT(se, entry);
6349 b8bad2ba 2019-08-23 stsp continue;
6350 b8bad2ba 2019-08-23 stsp }
6351 b8bad2ba 2019-08-23 stsp }
6352 b8bad2ba 2019-08-23 stsp done:
6353 b8bad2ba 2019-08-23 stsp return err;
6354 8e7bd50a 2019-08-22 stsp }
6355 b8bad2ba 2019-08-23 stsp #endif
6356 b8bad2ba 2019-08-23 stsp
6357 b8bad2ba 2019-08-23 stsp static const struct got_error *
6358 8e7bd50a 2019-08-22 stsp list_tags(struct got_repository *repo, struct got_worktree *worktree)
6359 8e7bd50a 2019-08-22 stsp {
6360 8e7bd50a 2019-08-22 stsp static const struct got_error *err = NULL;
6361 8e7bd50a 2019-08-22 stsp struct got_reflist_head refs;
6362 8e7bd50a 2019-08-22 stsp struct got_reflist_entry *re;
6363 8e7bd50a 2019-08-22 stsp
6364 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
6365 8e7bd50a 2019-08-22 stsp
6366 d1f16636 2020-01-15 stsp err = got_ref_list(&refs, repo, "refs/tags", got_ref_cmp_tags, repo);
6367 8e7bd50a 2019-08-22 stsp if (err)
6368 8e7bd50a 2019-08-22 stsp return err;
6369 8e7bd50a 2019-08-22 stsp
6370 d9dff0e5 2020-12-26 stsp TAILQ_FOREACH(re, &refs, entry) {
6371 8e7bd50a 2019-08-22 stsp const char *refname;
6372 8e7bd50a 2019-08-22 stsp char *refstr, *tagmsg0, *tagmsg, *line, *id_str, *datestr;
6373 8e7bd50a 2019-08-22 stsp char datebuf[26];
6374 d4efa91b 2020-01-14 stsp const char *tagger;
6375 8e7bd50a 2019-08-22 stsp time_t tagger_time;
6376 8e7bd50a 2019-08-22 stsp struct got_object_id *id;
6377 8e7bd50a 2019-08-22 stsp struct got_tag_object *tag;
6378 d4efa91b 2020-01-14 stsp struct got_commit_object *commit = NULL;
6379 8e7bd50a 2019-08-22 stsp
6380 8e7bd50a 2019-08-22 stsp refname = got_ref_get_name(re->ref);
6381 8e7bd50a 2019-08-22 stsp if (strncmp(refname, "refs/tags/", 10) != 0)
6382 8e7bd50a 2019-08-22 stsp continue;
6383 8e7bd50a 2019-08-22 stsp refname += 10;
6384 8e7bd50a 2019-08-22 stsp refstr = got_ref_to_str(re->ref);
6385 8e7bd50a 2019-08-22 stsp if (refstr == NULL) {
6386 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("got_ref_to_str");
6387 8e7bd50a 2019-08-22 stsp break;
6388 8e7bd50a 2019-08-22 stsp }
6389 8e7bd50a 2019-08-22 stsp printf("%stag %s %s\n", GOT_COMMIT_SEP_STR, refname, refstr);
6390 8e7bd50a 2019-08-22 stsp free(refstr);
6391 8e7bd50a 2019-08-22 stsp
6392 8e7bd50a 2019-08-22 stsp err = got_ref_resolve(&id, repo, re->ref);
6393 8e7bd50a 2019-08-22 stsp if (err)
6394 8e7bd50a 2019-08-22 stsp break;
6395 8e7bd50a 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
6396 d4efa91b 2020-01-14 stsp if (err) {
6397 d4efa91b 2020-01-14 stsp if (err->code != GOT_ERR_OBJ_TYPE) {
6398 d4efa91b 2020-01-14 stsp free(id);
6399 d4efa91b 2020-01-14 stsp break;
6400 d4efa91b 2020-01-14 stsp }
6401 d4efa91b 2020-01-14 stsp /* "lightweight" tag */
6402 d4efa91b 2020-01-14 stsp err = got_object_open_as_commit(&commit, repo, id);
6403 d4efa91b 2020-01-14 stsp if (err) {
6404 d4efa91b 2020-01-14 stsp free(id);
6405 d4efa91b 2020-01-14 stsp break;
6406 d4efa91b 2020-01-14 stsp }
6407 d4efa91b 2020-01-14 stsp tagger = got_object_commit_get_committer(commit);
6408 d4efa91b 2020-01-14 stsp tagger_time =
6409 d4efa91b 2020-01-14 stsp got_object_commit_get_committer_time(commit);
6410 d4efa91b 2020-01-14 stsp err = got_object_id_str(&id_str, id);
6411 d4efa91b 2020-01-14 stsp free(id);
6412 d4efa91b 2020-01-14 stsp if (err)
6413 d4efa91b 2020-01-14 stsp break;
6414 d4efa91b 2020-01-14 stsp } else {
6415 d4efa91b 2020-01-14 stsp free(id);
6416 d4efa91b 2020-01-14 stsp tagger = got_object_tag_get_tagger(tag);
6417 d4efa91b 2020-01-14 stsp tagger_time = got_object_tag_get_tagger_time(tag);
6418 d4efa91b 2020-01-14 stsp err = got_object_id_str(&id_str,
6419 d4efa91b 2020-01-14 stsp got_object_tag_get_object_id(tag));
6420 d4efa91b 2020-01-14 stsp if (err)
6421 d4efa91b 2020-01-14 stsp break;
6422 d4efa91b 2020-01-14 stsp }
6423 d4efa91b 2020-01-14 stsp printf("from: %s\n", tagger);
6424 2417344c 2019-08-23 stsp datestr = get_datestr(&tagger_time, datebuf);
6425 2417344c 2019-08-23 stsp if (datestr)
6426 2417344c 2019-08-23 stsp printf("date: %s UTC\n", datestr);
6427 d4efa91b 2020-01-14 stsp if (commit)
6428 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
6429 d4efa91b 2020-01-14 stsp else {
6430 d4efa91b 2020-01-14 stsp switch (got_object_tag_get_object_type(tag)) {
6431 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_BLOB:
6432 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB,
6433 d4efa91b 2020-01-14 stsp id_str);
6434 d4efa91b 2020-01-14 stsp break;
6435 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_TREE:
6436 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TREE,
6437 d4efa91b 2020-01-14 stsp id_str);
6438 d4efa91b 2020-01-14 stsp break;
6439 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_COMMIT:
6440 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT,
6441 d4efa91b 2020-01-14 stsp id_str);
6442 d4efa91b 2020-01-14 stsp break;
6443 d4efa91b 2020-01-14 stsp case GOT_OBJ_TYPE_TAG:
6444 d4efa91b 2020-01-14 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TAG,
6445 d4efa91b 2020-01-14 stsp id_str);
6446 d4efa91b 2020-01-14 stsp break;
6447 d4efa91b 2020-01-14 stsp default:
6448 d4efa91b 2020-01-14 stsp break;
6449 d4efa91b 2020-01-14 stsp }
6450 8e7bd50a 2019-08-22 stsp }
6451 8e7bd50a 2019-08-22 stsp free(id_str);
6452 d4efa91b 2020-01-14 stsp if (commit) {
6453 d4efa91b 2020-01-14 stsp err = got_object_commit_get_logmsg(&tagmsg0, commit);
6454 d4efa91b 2020-01-14 stsp if (err)
6455 d4efa91b 2020-01-14 stsp break;
6456 d4efa91b 2020-01-14 stsp got_object_commit_close(commit);
6457 d4efa91b 2020-01-14 stsp } else {
6458 d4efa91b 2020-01-14 stsp tagmsg0 = strdup(got_object_tag_get_message(tag));
6459 d4efa91b 2020-01-14 stsp got_object_tag_close(tag);
6460 d4efa91b 2020-01-14 stsp if (tagmsg0 == NULL) {
6461 d4efa91b 2020-01-14 stsp err = got_error_from_errno("strdup");
6462 d4efa91b 2020-01-14 stsp break;
6463 d4efa91b 2020-01-14 stsp }
6464 8e7bd50a 2019-08-22 stsp }
6465 8e7bd50a 2019-08-22 stsp
6466 8e7bd50a 2019-08-22 stsp tagmsg = tagmsg0;
6467 8e7bd50a 2019-08-22 stsp do {
6468 8e7bd50a 2019-08-22 stsp line = strsep(&tagmsg, "\n");
6469 8e7bd50a 2019-08-22 stsp if (line)
6470 8e7bd50a 2019-08-22 stsp printf(" %s\n", line);
6471 8e7bd50a 2019-08-22 stsp } while (line);
6472 8e7bd50a 2019-08-22 stsp free(tagmsg0);
6473 8e7bd50a 2019-08-22 stsp }
6474 8e7bd50a 2019-08-22 stsp
6475 8e7bd50a 2019-08-22 stsp got_ref_list_free(&refs);
6476 8e7bd50a 2019-08-22 stsp return NULL;
6477 8e7bd50a 2019-08-22 stsp }
6478 8e7bd50a 2019-08-22 stsp
6479 8e7bd50a 2019-08-22 stsp static const struct got_error *
6480 f372d5cd 2019-10-21 stsp get_tag_message(char **tagmsg, char **tagmsg_path, const char *commit_id_str,
6481 62870f63 2019-08-22 stsp const char *tag_name, const char *repo_path)
6482 8e7bd50a 2019-08-22 stsp {
6483 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
6484 8e7bd50a 2019-08-22 stsp char *template = NULL, *initial_content = NULL;
6485 f372d5cd 2019-10-21 stsp char *editor = NULL;
6486 1601cb9f 2020-09-11 naddy int initial_content_len;
6487 8e7bd50a 2019-08-22 stsp int fd = -1;
6488 8e7bd50a 2019-08-22 stsp
6489 bb63914a 2020-02-17 stsp if (asprintf(&template, GOT_TMPDIR_STR "/got-tagmsg") == -1) {
6490 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
6491 8e7bd50a 2019-08-22 stsp goto done;
6492 8e7bd50a 2019-08-22 stsp }
6493 8e7bd50a 2019-08-22 stsp
6494 1601cb9f 2020-09-11 naddy initial_content_len = asprintf(&initial_content,
6495 1601cb9f 2020-09-11 naddy "\n# tagging commit %s as %s\n",
6496 1601cb9f 2020-09-11 naddy commit_id_str, tag_name);
6497 1601cb9f 2020-09-11 naddy if (initial_content_len == -1) {
6498 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
6499 8e7bd50a 2019-08-22 stsp goto done;
6500 8e7bd50a 2019-08-22 stsp }
6501 8e7bd50a 2019-08-22 stsp
6502 f372d5cd 2019-10-21 stsp err = got_opentemp_named_fd(tagmsg_path, &fd, template);
6503 8e7bd50a 2019-08-22 stsp if (err)
6504 8e7bd50a 2019-08-22 stsp goto done;
6505 8e7bd50a 2019-08-22 stsp
6506 97972933 2020-09-11 stsp if (write(fd, initial_content, initial_content_len) == -1) {
6507 97972933 2020-09-11 stsp err = got_error_from_errno2("write", *tagmsg_path);
6508 97972933 2020-09-11 stsp goto done;
6509 97972933 2020-09-11 stsp }
6510 8e7bd50a 2019-08-22 stsp
6511 8e7bd50a 2019-08-22 stsp err = get_editor(&editor);
6512 8e7bd50a 2019-08-22 stsp if (err)
6513 8e7bd50a 2019-08-22 stsp goto done;
6514 bfa12d5e 2020-09-26 stsp err = edit_logmsg(tagmsg, editor, *tagmsg_path, initial_content,
6515 0d5bb276 2020-12-15 stsp initial_content_len, 1);
6516 8e7bd50a 2019-08-22 stsp done:
6517 8e7bd50a 2019-08-22 stsp free(initial_content);
6518 8e7bd50a 2019-08-22 stsp free(template);
6519 8e7bd50a 2019-08-22 stsp free(editor);
6520 8e7bd50a 2019-08-22 stsp
6521 97972933 2020-09-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
6522 97972933 2020-09-11 stsp err = got_error_from_errno2("close", *tagmsg_path);
6523 97972933 2020-09-11 stsp
6524 8e7bd50a 2019-08-22 stsp /* Editor is done; we can now apply unveil(2) */
6525 59f86c76 2020-09-11 stsp if (err == NULL)
6526 8e7bd50a 2019-08-22 stsp err = apply_unveil(repo_path, 0, NULL);
6527 59f86c76 2020-09-11 stsp if (err) {
6528 59f86c76 2020-09-11 stsp free(*tagmsg);
6529 59f86c76 2020-09-11 stsp *tagmsg = NULL;
6530 8e7bd50a 2019-08-22 stsp }
6531 8e7bd50a 2019-08-22 stsp return err;
6532 8e7bd50a 2019-08-22 stsp }
6533 8e7bd50a 2019-08-22 stsp
6534 8e7bd50a 2019-08-22 stsp static const struct got_error *
6535 50b0790e 2020-09-11 stsp add_tag(struct got_repository *repo, struct got_worktree *worktree,
6536 50b0790e 2020-09-11 stsp const char *tag_name, const char *commit_arg, const char *tagmsg_arg)
6537 8e7bd50a 2019-08-22 stsp {
6538 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
6539 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id = NULL, *tag_id = NULL;
6540 8e7bd50a 2019-08-22 stsp char *label = NULL, *commit_id_str = NULL;
6541 8e7bd50a 2019-08-22 stsp struct got_reference *ref = NULL;
6542 aba9c984 2019-09-08 stsp char *refname = NULL, *tagmsg = NULL, *tagger = NULL;
6543 f372d5cd 2019-10-21 stsp char *tagmsg_path = NULL, *tag_id_str = NULL;
6544 f372d5cd 2019-10-21 stsp int preserve_tagmsg = 0;
6545 84de9106 2020-12-26 stsp struct got_reflist_head refs;
6546 8e7bd50a 2019-08-22 stsp
6547 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
6548 84de9106 2020-12-26 stsp
6549 8e7bd50a 2019-08-22 stsp /*
6550 bd5895f3 2019-11-28 stsp * Don't let the user create a tag name with a leading '-'.
6551 8e7bd50a 2019-08-22 stsp * While technically a valid reference name, this case is usually
6552 8e7bd50a 2019-08-22 stsp * an unintended typo.
6553 8e7bd50a 2019-08-22 stsp */
6554 bd5895f3 2019-11-28 stsp if (tag_name[0] == '-')
6555 bd5895f3 2019-11-28 stsp return got_error_path(tag_name, GOT_ERR_REF_NAME_MINUS);
6556 8e7bd50a 2019-08-22 stsp
6557 50b0790e 2020-09-11 stsp err = get_author(&tagger, repo, worktree);
6558 8e7bd50a 2019-08-22 stsp if (err)
6559 8e7bd50a 2019-08-22 stsp return err;
6560 8e7bd50a 2019-08-22 stsp
6561 84de9106 2020-12-26 stsp err = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
6562 84de9106 2020-12-26 stsp if (err)
6563 84de9106 2020-12-26 stsp goto done;
6564 84de9106 2020-12-26 stsp
6565 71a27632 2020-01-15 stsp err = got_repo_match_object_id(&commit_id, &label, commit_arg,
6566 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_COMMIT, &refs, repo);
6567 8e7bd50a 2019-08-22 stsp if (err)
6568 8e7bd50a 2019-08-22 stsp goto done;
6569 8e7bd50a 2019-08-22 stsp
6570 8e7bd50a 2019-08-22 stsp err = got_object_id_str(&commit_id_str, commit_id);
6571 8e7bd50a 2019-08-22 stsp if (err)
6572 8e7bd50a 2019-08-22 stsp goto done;
6573 8e7bd50a 2019-08-22 stsp
6574 8e7bd50a 2019-08-22 stsp if (strncmp("refs/tags/", tag_name, 10) == 0) {
6575 8e7bd50a 2019-08-22 stsp refname = strdup(tag_name);
6576 8e7bd50a 2019-08-22 stsp if (refname == NULL) {
6577 62d463ca 2020-10-20 naddy err = got_error_from_errno("strdup");
6578 62d463ca 2020-10-20 naddy goto done;
6579 8e7bd50a 2019-08-22 stsp }
6580 8e7bd50a 2019-08-22 stsp tag_name += 10;
6581 8e7bd50a 2019-08-22 stsp } else if (asprintf(&refname, "refs/tags/%s", tag_name) == -1) {
6582 62d463ca 2020-10-20 naddy err = got_error_from_errno("asprintf");
6583 62d463ca 2020-10-20 naddy goto done;
6584 8e7bd50a 2019-08-22 stsp }
6585 8e7bd50a 2019-08-22 stsp
6586 8e7bd50a 2019-08-22 stsp err = got_ref_open(&ref, repo, refname, 0);
6587 8e7bd50a 2019-08-22 stsp if (err == NULL) {
6588 8e7bd50a 2019-08-22 stsp err = got_error(GOT_ERR_TAG_EXISTS);
6589 8e7bd50a 2019-08-22 stsp goto done;
6590 8e7bd50a 2019-08-22 stsp } else if (err->code != GOT_ERR_NOT_REF)
6591 8e7bd50a 2019-08-22 stsp goto done;
6592 8e7bd50a 2019-08-22 stsp
6593 8e7bd50a 2019-08-22 stsp if (tagmsg_arg == NULL) {
6594 f372d5cd 2019-10-21 stsp err = get_tag_message(&tagmsg, &tagmsg_path, commit_id_str,
6595 62870f63 2019-08-22 stsp tag_name, got_repo_get_path(repo));
6596 f372d5cd 2019-10-21 stsp if (err) {
6597 f372d5cd 2019-10-21 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY &&
6598 f372d5cd 2019-10-21 stsp tagmsg_path != NULL)
6599 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
6600 8e7bd50a 2019-08-22 stsp goto done;
6601 f372d5cd 2019-10-21 stsp }
6602 8e7bd50a 2019-08-22 stsp }
6603 8e7bd50a 2019-08-22 stsp
6604 8e7bd50a 2019-08-22 stsp err = got_object_tag_create(&tag_id, tag_name, commit_id,
6605 8e7bd50a 2019-08-22 stsp tagger, time(NULL), tagmsg ? tagmsg : tagmsg_arg, repo);
6606 f372d5cd 2019-10-21 stsp if (err) {
6607 f372d5cd 2019-10-21 stsp if (tagmsg_path)
6608 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
6609 8e7bd50a 2019-08-22 stsp goto done;
6610 f372d5cd 2019-10-21 stsp }
6611 8e7bd50a 2019-08-22 stsp
6612 8e7bd50a 2019-08-22 stsp err = got_ref_alloc(&ref, refname, tag_id);
6613 f372d5cd 2019-10-21 stsp if (err) {
6614 f372d5cd 2019-10-21 stsp if (tagmsg_path)
6615 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
6616 8e7bd50a 2019-08-22 stsp goto done;
6617 f372d5cd 2019-10-21 stsp }
6618 8e7bd50a 2019-08-22 stsp
6619 8e7bd50a 2019-08-22 stsp err = got_ref_write(ref, repo);
6620 f372d5cd 2019-10-21 stsp if (err) {
6621 f372d5cd 2019-10-21 stsp if (tagmsg_path)
6622 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
6623 f372d5cd 2019-10-21 stsp goto done;
6624 f372d5cd 2019-10-21 stsp }
6625 8e7bd50a 2019-08-22 stsp
6626 f372d5cd 2019-10-21 stsp err = got_object_id_str(&tag_id_str, tag_id);
6627 f372d5cd 2019-10-21 stsp if (err) {
6628 f372d5cd 2019-10-21 stsp if (tagmsg_path)
6629 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
6630 f372d5cd 2019-10-21 stsp goto done;
6631 8e7bd50a 2019-08-22 stsp }
6632 f372d5cd 2019-10-21 stsp printf("Created tag %s\n", tag_id_str);
6633 8e7bd50a 2019-08-22 stsp done:
6634 f372d5cd 2019-10-21 stsp if (preserve_tagmsg) {
6635 f372d5cd 2019-10-21 stsp fprintf(stderr, "%s: tag message preserved in %s\n",
6636 f372d5cd 2019-10-21 stsp getprogname(), tagmsg_path);
6637 f372d5cd 2019-10-21 stsp } else if (tagmsg_path && unlink(tagmsg_path) == -1 && err == NULL)
6638 f372d5cd 2019-10-21 stsp err = got_error_from_errno2("unlink", tagmsg_path);
6639 f372d5cd 2019-10-21 stsp free(tag_id_str);
6640 8e7bd50a 2019-08-22 stsp if (ref)
6641 8e7bd50a 2019-08-22 stsp got_ref_close(ref);
6642 8e7bd50a 2019-08-22 stsp free(commit_id);
6643 8e7bd50a 2019-08-22 stsp free(commit_id_str);
6644 8e7bd50a 2019-08-22 stsp free(refname);
6645 8e7bd50a 2019-08-22 stsp free(tagmsg);
6646 f372d5cd 2019-10-21 stsp free(tagmsg_path);
6647 aba9c984 2019-09-08 stsp free(tagger);
6648 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
6649 8e7bd50a 2019-08-22 stsp return err;
6650 8e7bd50a 2019-08-22 stsp }
6651 8e7bd50a 2019-08-22 stsp
6652 8e7bd50a 2019-08-22 stsp static const struct got_error *
6653 8e7bd50a 2019-08-22 stsp cmd_tag(int argc, char *argv[])
6654 8e7bd50a 2019-08-22 stsp {
6655 8e7bd50a 2019-08-22 stsp const struct got_error *error = NULL;
6656 8e7bd50a 2019-08-22 stsp struct got_repository *repo = NULL;
6657 8e7bd50a 2019-08-22 stsp struct got_worktree *worktree = NULL;
6658 8e7bd50a 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *commit_id_str = NULL;
6659 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL;
6660 8e7bd50a 2019-08-22 stsp const char *tag_name, *commit_id_arg = NULL, *tagmsg = NULL;
6661 8e7bd50a 2019-08-22 stsp int ch, do_list = 0;
6662 8e7bd50a 2019-08-22 stsp
6663 80106605 2020-02-24 stsp while ((ch = getopt(argc, argv, "c:m:r:l")) != -1) {
6664 8e7bd50a 2019-08-22 stsp switch (ch) {
6665 80106605 2020-02-24 stsp case 'c':
6666 80106605 2020-02-24 stsp commit_id_arg = optarg;
6667 80106605 2020-02-24 stsp break;
6668 8e7bd50a 2019-08-22 stsp case 'm':
6669 8e7bd50a 2019-08-22 stsp tagmsg = optarg;
6670 8e7bd50a 2019-08-22 stsp break;
6671 8e7bd50a 2019-08-22 stsp case 'r':
6672 8e7bd50a 2019-08-22 stsp repo_path = realpath(optarg, NULL);
6673 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
6674 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
6675 9ba1d308 2019-10-21 stsp optarg);
6676 8e7bd50a 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
6677 8e7bd50a 2019-08-22 stsp break;
6678 8e7bd50a 2019-08-22 stsp case 'l':
6679 8e7bd50a 2019-08-22 stsp do_list = 1;
6680 8e7bd50a 2019-08-22 stsp break;
6681 8e7bd50a 2019-08-22 stsp default:
6682 8e7bd50a 2019-08-22 stsp usage_tag();
6683 8e7bd50a 2019-08-22 stsp /* NOTREACHED */
6684 8e7bd50a 2019-08-22 stsp }
6685 8e7bd50a 2019-08-22 stsp }
6686 8e7bd50a 2019-08-22 stsp
6687 8e7bd50a 2019-08-22 stsp argc -= optind;
6688 8e7bd50a 2019-08-22 stsp argv += optind;
6689 8e7bd50a 2019-08-22 stsp
6690 8e7bd50a 2019-08-22 stsp if (do_list) {
6691 80106605 2020-02-24 stsp if (commit_id_arg != NULL)
6692 775ce909 2020-03-22 stsp errx(1,
6693 775ce909 2020-03-22 stsp "-c option can only be used when creating a tag");
6694 8e7bd50a 2019-08-22 stsp if (tagmsg)
6695 ff69268e 2020-12-13 stsp option_conflict('l', 'm');
6696 8e7bd50a 2019-08-22 stsp if (argc > 0)
6697 8e7bd50a 2019-08-22 stsp usage_tag();
6698 80106605 2020-02-24 stsp } else if (argc != 1)
6699 8e7bd50a 2019-08-22 stsp usage_tag();
6700 80106605 2020-02-24 stsp
6701 a2887370 2019-08-23 stsp tag_name = argv[0];
6702 8e7bd50a 2019-08-22 stsp
6703 8e7bd50a 2019-08-22 stsp #ifndef PROFILE
6704 8e7bd50a 2019-08-22 stsp if (do_list) {
6705 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
6706 8e7bd50a 2019-08-22 stsp NULL) == -1)
6707 8e7bd50a 2019-08-22 stsp err(1, "pledge");
6708 8e7bd50a 2019-08-22 stsp } else {
6709 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
6710 8e7bd50a 2019-08-22 stsp "sendfd unveil", NULL) == -1)
6711 8e7bd50a 2019-08-22 stsp err(1, "pledge");
6712 8e7bd50a 2019-08-22 stsp }
6713 8e7bd50a 2019-08-22 stsp #endif
6714 8e7bd50a 2019-08-22 stsp cwd = getcwd(NULL, 0);
6715 8e7bd50a 2019-08-22 stsp if (cwd == NULL) {
6716 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("getcwd");
6717 8e7bd50a 2019-08-22 stsp goto done;
6718 8e7bd50a 2019-08-22 stsp }
6719 8e7bd50a 2019-08-22 stsp
6720 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
6721 8e7bd50a 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
6722 8e7bd50a 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
6723 8e7bd50a 2019-08-22 stsp goto done;
6724 8e7bd50a 2019-08-22 stsp else
6725 8e7bd50a 2019-08-22 stsp error = NULL;
6726 8e7bd50a 2019-08-22 stsp if (worktree) {
6727 8e7bd50a 2019-08-22 stsp repo_path =
6728 8e7bd50a 2019-08-22 stsp strdup(got_worktree_get_repo_path(worktree));
6729 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
6730 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
6731 8e7bd50a 2019-08-22 stsp if (error)
6732 8e7bd50a 2019-08-22 stsp goto done;
6733 8e7bd50a 2019-08-22 stsp } else {
6734 8e7bd50a 2019-08-22 stsp repo_path = strdup(cwd);
6735 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
6736 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
6737 8e7bd50a 2019-08-22 stsp goto done;
6738 8e7bd50a 2019-08-22 stsp }
6739 8e7bd50a 2019-08-22 stsp }
6740 8e7bd50a 2019-08-22 stsp }
6741 8e7bd50a 2019-08-22 stsp
6742 8e7bd50a 2019-08-22 stsp if (do_list) {
6743 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
6744 c9956ddf 2019-09-08 stsp if (error != NULL)
6745 c9956ddf 2019-09-08 stsp goto done;
6746 8e7bd50a 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
6747 8e7bd50a 2019-08-22 stsp if (error)
6748 8e7bd50a 2019-08-22 stsp goto done;
6749 8e7bd50a 2019-08-22 stsp error = list_tags(repo, worktree);
6750 8e7bd50a 2019-08-22 stsp } else {
6751 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
6752 c9956ddf 2019-09-08 stsp if (error)
6753 c9956ddf 2019-09-08 stsp goto done;
6754 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
6755 c9956ddf 2019-09-08 stsp if (error != NULL)
6756 c9956ddf 2019-09-08 stsp goto done;
6757 c9956ddf 2019-09-08 stsp
6758 8e7bd50a 2019-08-22 stsp if (tagmsg) {
6759 42a285e2 2020-10-01 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
6760 8e7bd50a 2019-08-22 stsp if (error)
6761 8e7bd50a 2019-08-22 stsp goto done;
6762 8e7bd50a 2019-08-22 stsp }
6763 8e7bd50a 2019-08-22 stsp
6764 8e7bd50a 2019-08-22 stsp if (commit_id_arg == NULL) {
6765 8e7bd50a 2019-08-22 stsp struct got_reference *head_ref;
6766 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id;
6767 8e7bd50a 2019-08-22 stsp error = got_ref_open(&head_ref, repo,
6768 8e7bd50a 2019-08-22 stsp worktree ? got_worktree_get_head_ref_name(worktree)
6769 8e7bd50a 2019-08-22 stsp : GOT_REF_HEAD, 0);
6770 8e7bd50a 2019-08-22 stsp if (error)
6771 8e7bd50a 2019-08-22 stsp goto done;
6772 8e7bd50a 2019-08-22 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
6773 8e7bd50a 2019-08-22 stsp got_ref_close(head_ref);
6774 8e7bd50a 2019-08-22 stsp if (error)
6775 8e7bd50a 2019-08-22 stsp goto done;
6776 8e7bd50a 2019-08-22 stsp error = got_object_id_str(&commit_id_str, commit_id);
6777 8e7bd50a 2019-08-22 stsp free(commit_id);
6778 8e7bd50a 2019-08-22 stsp if (error)
6779 8e7bd50a 2019-08-22 stsp goto done;
6780 8e7bd50a 2019-08-22 stsp }
6781 8e7bd50a 2019-08-22 stsp
6782 50b0790e 2020-09-11 stsp error = add_tag(repo, worktree, tag_name,
6783 8e7bd50a 2019-08-22 stsp commit_id_str ? commit_id_str : commit_id_arg, tagmsg);
6784 8e7bd50a 2019-08-22 stsp }
6785 8e7bd50a 2019-08-22 stsp done:
6786 1d0f4054 2021-06-17 stsp if (repo) {
6787 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6788 1d0f4054 2021-06-17 stsp if (error == NULL)
6789 1d0f4054 2021-06-17 stsp error = close_err;
6790 1d0f4054 2021-06-17 stsp }
6791 8e7bd50a 2019-08-22 stsp if (worktree)
6792 8e7bd50a 2019-08-22 stsp got_worktree_close(worktree);
6793 8e7bd50a 2019-08-22 stsp free(cwd);
6794 8e7bd50a 2019-08-22 stsp free(repo_path);
6795 c9956ddf 2019-09-08 stsp free(gitconfig_path);
6796 8e7bd50a 2019-08-22 stsp free(commit_id_str);
6797 8e7bd50a 2019-08-22 stsp return error;
6798 8e7bd50a 2019-08-22 stsp }
6799 8e7bd50a 2019-08-22 stsp
6800 8e7bd50a 2019-08-22 stsp __dead static void
6801 d00136be 2019-03-26 stsp usage_add(void)
6802 d00136be 2019-03-26 stsp {
6803 c29c428a 2019-12-16 stsp fprintf(stderr, "usage: %s add [-R] [-I] path ...\n",
6804 022fae89 2019-12-06 tracey getprogname());
6805 d00136be 2019-03-26 stsp exit(1);
6806 d00136be 2019-03-26 stsp }
6807 d00136be 2019-03-26 stsp
6808 d00136be 2019-03-26 stsp static const struct got_error *
6809 4e68cba3 2019-11-23 stsp add_progress(void *arg, unsigned char status, const char *path)
6810 4e68cba3 2019-11-23 stsp {
6811 4e68cba3 2019-11-23 stsp while (path[0] == '/')
6812 4e68cba3 2019-11-23 stsp path++;
6813 4e68cba3 2019-11-23 stsp printf("%c %s\n", status, path);
6814 4e68cba3 2019-11-23 stsp return NULL;
6815 4e68cba3 2019-11-23 stsp }
6816 4e68cba3 2019-11-23 stsp
6817 4e68cba3 2019-11-23 stsp static const struct got_error *
6818 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
6819 d00136be 2019-03-26 stsp {
6820 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
6821 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
6822 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
6823 1dd54920 2019-05-11 stsp char *cwd = NULL;
6824 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
6825 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
6826 022fae89 2019-12-06 tracey int ch, can_recurse = 0, no_ignores = 0;
6827 1dd54920 2019-05-11 stsp
6828 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
6829 d00136be 2019-03-26 stsp
6830 022fae89 2019-12-06 tracey while ((ch = getopt(argc, argv, "IR")) != -1) {
6831 d00136be 2019-03-26 stsp switch (ch) {
6832 022fae89 2019-12-06 tracey case 'I':
6833 022fae89 2019-12-06 tracey no_ignores = 1;
6834 022fae89 2019-12-06 tracey break;
6835 4e68cba3 2019-11-23 stsp case 'R':
6836 4e68cba3 2019-11-23 stsp can_recurse = 1;
6837 4e68cba3 2019-11-23 stsp break;
6838 d00136be 2019-03-26 stsp default:
6839 d00136be 2019-03-26 stsp usage_add();
6840 d00136be 2019-03-26 stsp /* NOTREACHED */
6841 d00136be 2019-03-26 stsp }
6842 d00136be 2019-03-26 stsp }
6843 d00136be 2019-03-26 stsp
6844 d00136be 2019-03-26 stsp argc -= optind;
6845 d00136be 2019-03-26 stsp argv += optind;
6846 d00136be 2019-03-26 stsp
6847 43012d58 2019-07-14 stsp #ifndef PROFILE
6848 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
6849 43012d58 2019-07-14 stsp NULL) == -1)
6850 43012d58 2019-07-14 stsp err(1, "pledge");
6851 43012d58 2019-07-14 stsp #endif
6852 723c305c 2019-05-11 jcs if (argc < 1)
6853 d00136be 2019-03-26 stsp usage_add();
6854 d00136be 2019-03-26 stsp
6855 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
6856 d00136be 2019-03-26 stsp if (cwd == NULL) {
6857 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
6858 d00136be 2019-03-26 stsp goto done;
6859 d00136be 2019-03-26 stsp }
6860 723c305c 2019-05-11 jcs
6861 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
6862 fa51e947 2020-03-27 stsp if (error) {
6863 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
6864 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "add", cwd);
6865 d00136be 2019-03-26 stsp goto done;
6866 fa51e947 2020-03-27 stsp }
6867 d00136be 2019-03-26 stsp
6868 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6869 c9956ddf 2019-09-08 stsp NULL);
6870 031a5338 2019-03-26 stsp if (error != NULL)
6871 031a5338 2019-03-26 stsp goto done;
6872 031a5338 2019-03-26 stsp
6873 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
6874 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
6875 d00136be 2019-03-26 stsp if (error)
6876 d00136be 2019-03-26 stsp goto done;
6877 d00136be 2019-03-26 stsp
6878 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6879 6d022e97 2019-08-04 stsp if (error)
6880 022fae89 2019-12-06 tracey goto done;
6881 022fae89 2019-12-06 tracey
6882 4e68cba3 2019-11-23 stsp if (!can_recurse) {
6883 4e68cba3 2019-11-23 stsp char *ondisk_path;
6884 4e68cba3 2019-11-23 stsp struct stat sb;
6885 4e68cba3 2019-11-23 stsp TAILQ_FOREACH(pe, &paths, entry) {
6886 4e68cba3 2019-11-23 stsp if (asprintf(&ondisk_path, "%s/%s",
6887 4e68cba3 2019-11-23 stsp got_worktree_get_root_path(worktree),
6888 62d463ca 2020-10-20 naddy pe->path) == -1) {
6889 4e68cba3 2019-11-23 stsp error = got_error_from_errno("asprintf");
6890 4e68cba3 2019-11-23 stsp goto done;
6891 4e68cba3 2019-11-23 stsp }
6892 4e68cba3 2019-11-23 stsp if (lstat(ondisk_path, &sb) == -1) {
6893 4e68cba3 2019-11-23 stsp if (errno == ENOENT) {
6894 4e68cba3 2019-11-23 stsp free(ondisk_path);
6895 4e68cba3 2019-11-23 stsp continue;
6896 4e68cba3 2019-11-23 stsp }
6897 4e68cba3 2019-11-23 stsp error = got_error_from_errno2("lstat",
6898 4e68cba3 2019-11-23 stsp ondisk_path);
6899 4e68cba3 2019-11-23 stsp free(ondisk_path);
6900 4e68cba3 2019-11-23 stsp goto done;
6901 4e68cba3 2019-11-23 stsp }
6902 4e68cba3 2019-11-23 stsp free(ondisk_path);
6903 4e68cba3 2019-11-23 stsp if (S_ISDIR(sb.st_mode)) {
6904 4e68cba3 2019-11-23 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
6905 4e68cba3 2019-11-23 stsp "adding directories requires -R option");
6906 4e68cba3 2019-11-23 stsp goto done;
6907 4e68cba3 2019-11-23 stsp }
6908 4e68cba3 2019-11-23 stsp }
6909 4e68cba3 2019-11-23 stsp }
6910 022fae89 2019-12-06 tracey
6911 4e68cba3 2019-11-23 stsp error = got_worktree_schedule_add(worktree, &paths, add_progress,
6912 022fae89 2019-12-06 tracey NULL, repo, no_ignores);
6913 d00136be 2019-03-26 stsp done:
6914 1d0f4054 2021-06-17 stsp if (repo) {
6915 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
6916 1d0f4054 2021-06-17 stsp if (error == NULL)
6917 1d0f4054 2021-06-17 stsp error = close_err;
6918 1d0f4054 2021-06-17 stsp }
6919 d00136be 2019-03-26 stsp if (worktree)
6920 d00136be 2019-03-26 stsp got_worktree_close(worktree);
6921 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
6922 1dd54920 2019-05-11 stsp free((char *)pe->path);
6923 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
6924 2ec1f75b 2019-03-26 stsp free(cwd);
6925 2ec1f75b 2019-03-26 stsp return error;
6926 2ec1f75b 2019-03-26 stsp }
6927 2ec1f75b 2019-03-26 stsp
6928 2ec1f75b 2019-03-26 stsp __dead static void
6929 648e4ef7 2019-07-09 stsp usage_remove(void)
6930 2ec1f75b 2019-03-26 stsp {
6931 766841c2 2020-08-13 stsp fprintf(stderr, "usage: %s remove [-f] [-k] [-R] [-s status-codes] "
6932 766841c2 2020-08-13 stsp "path ...\n", getprogname());
6933 2ec1f75b 2019-03-26 stsp exit(1);
6934 2a06fe5f 2019-08-24 stsp }
6935 2a06fe5f 2019-08-24 stsp
6936 2a06fe5f 2019-08-24 stsp static const struct got_error *
6937 2a06fe5f 2019-08-24 stsp print_remove_status(void *arg, unsigned char status,
6938 f2a9dc41 2019-12-13 tracey unsigned char staged_status, const char *path)
6939 2a06fe5f 2019-08-24 stsp {
6940 f2a9dc41 2019-12-13 tracey while (path[0] == '/')
6941 f2a9dc41 2019-12-13 tracey path++;
6942 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
6943 2a06fe5f 2019-08-24 stsp return NULL;
6944 2a06fe5f 2019-08-24 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
6945 2a06fe5f 2019-08-24 stsp status = GOT_STATUS_NO_CHANGE;
6946 2a06fe5f 2019-08-24 stsp printf("%c%c %s\n", status, staged_status, path);
6947 2a06fe5f 2019-08-24 stsp return NULL;
6948 2ec1f75b 2019-03-26 stsp }
6949 2ec1f75b 2019-03-26 stsp
6950 2ec1f75b 2019-03-26 stsp static const struct got_error *
6951 648e4ef7 2019-07-09 stsp cmd_remove(int argc, char *argv[])
6952 2ec1f75b 2019-03-26 stsp {
6953 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
6954 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
6955 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
6956 766841c2 2020-08-13 stsp const char *status_codes = NULL;
6957 17ed4618 2019-06-02 stsp char *cwd = NULL;
6958 17ed4618 2019-06-02 stsp struct got_pathlist_head paths;
6959 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
6960 766841c2 2020-08-13 stsp int ch, delete_local_mods = 0, can_recurse = 0, keep_on_disk = 0, i;
6961 2ec1f75b 2019-03-26 stsp
6962 17ed4618 2019-06-02 stsp TAILQ_INIT(&paths);
6963 17ed4618 2019-06-02 stsp
6964 766841c2 2020-08-13 stsp while ((ch = getopt(argc, argv, "fkRs:")) != -1) {
6965 2ec1f75b 2019-03-26 stsp switch (ch) {
6966 2ec1f75b 2019-03-26 stsp case 'f':
6967 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
6968 2ec1f75b 2019-03-26 stsp break;
6969 70e3e7f5 2019-12-13 tracey case 'k':
6970 70e3e7f5 2019-12-13 tracey keep_on_disk = 1;
6971 70e3e7f5 2019-12-13 tracey break;
6972 f2a9dc41 2019-12-13 tracey case 'R':
6973 f2a9dc41 2019-12-13 tracey can_recurse = 1;
6974 f2a9dc41 2019-12-13 tracey break;
6975 766841c2 2020-08-13 stsp case 's':
6976 766841c2 2020-08-13 stsp for (i = 0; i < strlen(optarg); i++) {
6977 766841c2 2020-08-13 stsp switch (optarg[i]) {
6978 766841c2 2020-08-13 stsp case GOT_STATUS_MODIFY:
6979 766841c2 2020-08-13 stsp delete_local_mods = 1;
6980 766841c2 2020-08-13 stsp break;
6981 766841c2 2020-08-13 stsp case GOT_STATUS_MISSING:
6982 766841c2 2020-08-13 stsp break;
6983 766841c2 2020-08-13 stsp default:
6984 766841c2 2020-08-13 stsp errx(1, "invalid status code '%c'",
6985 766841c2 2020-08-13 stsp optarg[i]);
6986 766841c2 2020-08-13 stsp }
6987 766841c2 2020-08-13 stsp }
6988 766841c2 2020-08-13 stsp status_codes = optarg;
6989 766841c2 2020-08-13 stsp break;
6990 2ec1f75b 2019-03-26 stsp default:
6991 f2a9dc41 2019-12-13 tracey usage_remove();
6992 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
6993 2ec1f75b 2019-03-26 stsp }
6994 2ec1f75b 2019-03-26 stsp }
6995 2ec1f75b 2019-03-26 stsp
6996 2ec1f75b 2019-03-26 stsp argc -= optind;
6997 2ec1f75b 2019-03-26 stsp argv += optind;
6998 2ec1f75b 2019-03-26 stsp
6999 43012d58 2019-07-14 stsp #ifndef PROFILE
7000 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
7001 43012d58 2019-07-14 stsp NULL) == -1)
7002 43012d58 2019-07-14 stsp err(1, "pledge");
7003 43012d58 2019-07-14 stsp #endif
7004 17ed4618 2019-06-02 stsp if (argc < 1)
7005 648e4ef7 2019-07-09 stsp usage_remove();
7006 2ec1f75b 2019-03-26 stsp
7007 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
7008 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
7009 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
7010 2ec1f75b 2019-03-26 stsp goto done;
7011 2ec1f75b 2019-03-26 stsp }
7012 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
7013 fa51e947 2020-03-27 stsp if (error) {
7014 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
7015 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "remove", cwd);
7016 2ec1f75b 2019-03-26 stsp goto done;
7017 fa51e947 2020-03-27 stsp }
7018 2ec1f75b 2019-03-26 stsp
7019 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
7020 c9956ddf 2019-09-08 stsp NULL);
7021 2af4a041 2019-05-11 jcs if (error)
7022 2ec1f75b 2019-03-26 stsp goto done;
7023 2ec1f75b 2019-03-26 stsp
7024 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
7025 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
7026 2ec1f75b 2019-03-26 stsp if (error)
7027 2ec1f75b 2019-03-26 stsp goto done;
7028 2ec1f75b 2019-03-26 stsp
7029 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
7030 6d022e97 2019-08-04 stsp if (error)
7031 6d022e97 2019-08-04 stsp goto done;
7032 17ed4618 2019-06-02 stsp
7033 f2a9dc41 2019-12-13 tracey if (!can_recurse) {
7034 f2a9dc41 2019-12-13 tracey char *ondisk_path;
7035 f2a9dc41 2019-12-13 tracey struct stat sb;
7036 f2a9dc41 2019-12-13 tracey TAILQ_FOREACH(pe, &paths, entry) {
7037 f2a9dc41 2019-12-13 tracey if (asprintf(&ondisk_path, "%s/%s",
7038 f2a9dc41 2019-12-13 tracey got_worktree_get_root_path(worktree),
7039 62d463ca 2020-10-20 naddy pe->path) == -1) {
7040 f2a9dc41 2019-12-13 tracey error = got_error_from_errno("asprintf");
7041 f2a9dc41 2019-12-13 tracey goto done;
7042 f2a9dc41 2019-12-13 tracey }
7043 f2a9dc41 2019-12-13 tracey if (lstat(ondisk_path, &sb) == -1) {
7044 f2a9dc41 2019-12-13 tracey if (errno == ENOENT) {
7045 f2a9dc41 2019-12-13 tracey free(ondisk_path);
7046 f2a9dc41 2019-12-13 tracey continue;
7047 f2a9dc41 2019-12-13 tracey }
7048 f2a9dc41 2019-12-13 tracey error = got_error_from_errno2("lstat",
7049 f2a9dc41 2019-12-13 tracey ondisk_path);
7050 f2a9dc41 2019-12-13 tracey free(ondisk_path);
7051 f2a9dc41 2019-12-13 tracey goto done;
7052 f2a9dc41 2019-12-13 tracey }
7053 f2a9dc41 2019-12-13 tracey free(ondisk_path);
7054 f2a9dc41 2019-12-13 tracey if (S_ISDIR(sb.st_mode)) {
7055 f2a9dc41 2019-12-13 tracey error = got_error_msg(GOT_ERR_BAD_PATH,
7056 f2a9dc41 2019-12-13 tracey "removing directories requires -R option");
7057 f2a9dc41 2019-12-13 tracey goto done;
7058 f2a9dc41 2019-12-13 tracey }
7059 f2a9dc41 2019-12-13 tracey }
7060 f2a9dc41 2019-12-13 tracey }
7061 f2a9dc41 2019-12-13 tracey
7062 17ed4618 2019-06-02 stsp error = got_worktree_schedule_delete(worktree, &paths,
7063 766841c2 2020-08-13 stsp delete_local_mods, status_codes, print_remove_status, NULL,
7064 766841c2 2020-08-13 stsp repo, keep_on_disk);
7065 a129376b 2019-03-28 stsp done:
7066 1d0f4054 2021-06-17 stsp if (repo) {
7067 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7068 1d0f4054 2021-06-17 stsp if (error == NULL)
7069 1d0f4054 2021-06-17 stsp error = close_err;
7070 1d0f4054 2021-06-17 stsp }
7071 a129376b 2019-03-28 stsp if (worktree)
7072 a129376b 2019-03-28 stsp got_worktree_close(worktree);
7073 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, &paths, entry)
7074 17ed4618 2019-06-02 stsp free((char *)pe->path);
7075 17ed4618 2019-06-02 stsp got_pathlist_free(&paths);
7076 a129376b 2019-03-28 stsp free(cwd);
7077 a129376b 2019-03-28 stsp return error;
7078 a129376b 2019-03-28 stsp }
7079 a129376b 2019-03-28 stsp
7080 a129376b 2019-03-28 stsp __dead static void
7081 a129376b 2019-03-28 stsp usage_revert(void)
7082 a129376b 2019-03-28 stsp {
7083 33aa809d 2019-08-08 stsp fprintf(stderr, "usage: %s revert [-p] [-F response-script] [-R] "
7084 33aa809d 2019-08-08 stsp "path ...\n", getprogname());
7085 a129376b 2019-03-28 stsp exit(1);
7086 a129376b 2019-03-28 stsp }
7087 a129376b 2019-03-28 stsp
7088 1ee397ad 2019-07-12 stsp static const struct got_error *
7089 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
7090 a129376b 2019-03-28 stsp {
7091 fb9704af 2020-01-27 stsp if (status == GOT_STATUS_UNVERSIONED)
7092 fb9704af 2020-01-27 stsp return NULL;
7093 fb9704af 2020-01-27 stsp
7094 a129376b 2019-03-28 stsp while (path[0] == '/')
7095 a129376b 2019-03-28 stsp path++;
7096 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
7097 33aa809d 2019-08-08 stsp return NULL;
7098 33aa809d 2019-08-08 stsp }
7099 33aa809d 2019-08-08 stsp
7100 33aa809d 2019-08-08 stsp struct choose_patch_arg {
7101 33aa809d 2019-08-08 stsp FILE *patch_script_file;
7102 33aa809d 2019-08-08 stsp const char *action;
7103 33aa809d 2019-08-08 stsp };
7104 33aa809d 2019-08-08 stsp
7105 33aa809d 2019-08-08 stsp static const struct got_error *
7106 33aa809d 2019-08-08 stsp show_change(unsigned char status, const char *path, FILE *patch_file, int n,
7107 33aa809d 2019-08-08 stsp int nchanges, const char *action)
7108 33aa809d 2019-08-08 stsp {
7109 33aa809d 2019-08-08 stsp char *line = NULL;
7110 33aa809d 2019-08-08 stsp size_t linesize = 0;
7111 33aa809d 2019-08-08 stsp ssize_t linelen;
7112 33aa809d 2019-08-08 stsp
7113 33aa809d 2019-08-08 stsp switch (status) {
7114 33aa809d 2019-08-08 stsp case GOT_STATUS_ADD:
7115 33aa809d 2019-08-08 stsp printf("A %s\n%s this addition? [y/n] ", path, action);
7116 33aa809d 2019-08-08 stsp break;
7117 33aa809d 2019-08-08 stsp case GOT_STATUS_DELETE:
7118 33aa809d 2019-08-08 stsp printf("D %s\n%s this deletion? [y/n] ", path, action);
7119 33aa809d 2019-08-08 stsp break;
7120 33aa809d 2019-08-08 stsp case GOT_STATUS_MODIFY:
7121 33aa809d 2019-08-08 stsp if (fseek(patch_file, 0L, SEEK_SET) == -1)
7122 33aa809d 2019-08-08 stsp return got_error_from_errno("fseek");
7123 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
7124 9516e7cb 2019-08-11 stsp while ((linelen = getline(&line, &linesize, patch_file)) != -1)
7125 33aa809d 2019-08-08 stsp printf("%s", line);
7126 33aa809d 2019-08-08 stsp if (ferror(patch_file))
7127 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
7128 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
7129 33aa809d 2019-08-08 stsp printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
7130 33aa809d 2019-08-08 stsp path, n, nchanges, action);
7131 33aa809d 2019-08-08 stsp break;
7132 33aa809d 2019-08-08 stsp default:
7133 33aa809d 2019-08-08 stsp return got_error_path(path, GOT_ERR_FILE_STATUS);
7134 33aa809d 2019-08-08 stsp }
7135 33aa809d 2019-08-08 stsp
7136 33aa809d 2019-08-08 stsp return NULL;
7137 33aa809d 2019-08-08 stsp }
7138 33aa809d 2019-08-08 stsp
7139 33aa809d 2019-08-08 stsp static const struct got_error *
7140 33aa809d 2019-08-08 stsp choose_patch(int *choice, void *arg, unsigned char status, const char *path,
7141 33aa809d 2019-08-08 stsp FILE *patch_file, int n, int nchanges)
7142 33aa809d 2019-08-08 stsp {
7143 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
7144 33aa809d 2019-08-08 stsp char *line = NULL;
7145 33aa809d 2019-08-08 stsp size_t linesize = 0;
7146 33aa809d 2019-08-08 stsp ssize_t linelen;
7147 33aa809d 2019-08-08 stsp int resp = ' ';
7148 33aa809d 2019-08-08 stsp struct choose_patch_arg *a = arg;
7149 33aa809d 2019-08-08 stsp
7150 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NONE;
7151 33aa809d 2019-08-08 stsp
7152 33aa809d 2019-08-08 stsp if (a->patch_script_file) {
7153 33aa809d 2019-08-08 stsp char *nl;
7154 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
7155 33aa809d 2019-08-08 stsp a->action);
7156 33aa809d 2019-08-08 stsp if (err)
7157 33aa809d 2019-08-08 stsp return err;
7158 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, a->patch_script_file);
7159 33aa809d 2019-08-08 stsp if (linelen == -1) {
7160 33aa809d 2019-08-08 stsp if (ferror(a->patch_script_file))
7161 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
7162 33aa809d 2019-08-08 stsp return NULL;
7163 33aa809d 2019-08-08 stsp }
7164 33aa809d 2019-08-08 stsp nl = strchr(line, '\n');
7165 33aa809d 2019-08-08 stsp if (nl)
7166 33aa809d 2019-08-08 stsp *nl = '\0';
7167 33aa809d 2019-08-08 stsp if (strcmp(line, "y") == 0) {
7168 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
7169 33aa809d 2019-08-08 stsp printf("y\n");
7170 33aa809d 2019-08-08 stsp } else if (strcmp(line, "n") == 0) {
7171 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
7172 33aa809d 2019-08-08 stsp printf("n\n");
7173 33aa809d 2019-08-08 stsp } else if (strcmp(line, "q") == 0 &&
7174 33aa809d 2019-08-08 stsp status == GOT_STATUS_MODIFY) {
7175 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
7176 33aa809d 2019-08-08 stsp printf("q\n");
7177 33aa809d 2019-08-08 stsp } else
7178 33aa809d 2019-08-08 stsp printf("invalid response '%s'\n", line);
7179 33aa809d 2019-08-08 stsp free(line);
7180 33aa809d 2019-08-08 stsp return NULL;
7181 33aa809d 2019-08-08 stsp }
7182 33aa809d 2019-08-08 stsp
7183 33aa809d 2019-08-08 stsp while (resp != 'y' && resp != 'n' && resp != 'q') {
7184 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
7185 33aa809d 2019-08-08 stsp a->action);
7186 33aa809d 2019-08-08 stsp if (err)
7187 33aa809d 2019-08-08 stsp return err;
7188 33aa809d 2019-08-08 stsp resp = getchar();
7189 33aa809d 2019-08-08 stsp if (resp == '\n')
7190 33aa809d 2019-08-08 stsp resp = getchar();
7191 33aa809d 2019-08-08 stsp if (status == GOT_STATUS_MODIFY) {
7192 33aa809d 2019-08-08 stsp if (resp != 'y' && resp != 'n' && resp != 'q') {
7193 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
7194 33aa809d 2019-08-08 stsp resp = ' ';
7195 33aa809d 2019-08-08 stsp }
7196 33aa809d 2019-08-08 stsp } else if (resp != 'y' && resp != 'n') {
7197 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
7198 33aa809d 2019-08-08 stsp resp = ' ';
7199 33aa809d 2019-08-08 stsp }
7200 33aa809d 2019-08-08 stsp }
7201 33aa809d 2019-08-08 stsp
7202 33aa809d 2019-08-08 stsp if (resp == 'y')
7203 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
7204 33aa809d 2019-08-08 stsp else if (resp == 'n')
7205 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
7206 33aa809d 2019-08-08 stsp else if (resp == 'q' && status == GOT_STATUS_MODIFY)
7207 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
7208 33aa809d 2019-08-08 stsp
7209 1ee397ad 2019-07-12 stsp return NULL;
7210 a129376b 2019-03-28 stsp }
7211 a129376b 2019-03-28 stsp
7212 33aa809d 2019-08-08 stsp
7213 a129376b 2019-03-28 stsp static const struct got_error *
7214 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
7215 a129376b 2019-03-28 stsp {
7216 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
7217 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
7218 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
7219 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
7220 e20a8b6f 2019-06-04 stsp struct got_pathlist_head paths;
7221 0f6d7415 2019-08-08 stsp struct got_pathlist_entry *pe;
7222 33aa809d 2019-08-08 stsp int ch, can_recurse = 0, pflag = 0;
7223 33aa809d 2019-08-08 stsp FILE *patch_script_file = NULL;
7224 33aa809d 2019-08-08 stsp const char *patch_script_path = NULL;
7225 33aa809d 2019-08-08 stsp struct choose_patch_arg cpa;
7226 a129376b 2019-03-28 stsp
7227 e20a8b6f 2019-06-04 stsp TAILQ_INIT(&paths);
7228 e20a8b6f 2019-06-04 stsp
7229 33aa809d 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:R")) != -1) {
7230 a129376b 2019-03-28 stsp switch (ch) {
7231 33aa809d 2019-08-08 stsp case 'p':
7232 33aa809d 2019-08-08 stsp pflag = 1;
7233 33aa809d 2019-08-08 stsp break;
7234 33aa809d 2019-08-08 stsp case 'F':
7235 33aa809d 2019-08-08 stsp patch_script_path = optarg;
7236 33aa809d 2019-08-08 stsp break;
7237 0f6d7415 2019-08-08 stsp case 'R':
7238 0f6d7415 2019-08-08 stsp can_recurse = 1;
7239 0f6d7415 2019-08-08 stsp break;
7240 a129376b 2019-03-28 stsp default:
7241 a129376b 2019-03-28 stsp usage_revert();
7242 a129376b 2019-03-28 stsp /* NOTREACHED */
7243 a129376b 2019-03-28 stsp }
7244 a129376b 2019-03-28 stsp }
7245 a129376b 2019-03-28 stsp
7246 a129376b 2019-03-28 stsp argc -= optind;
7247 a129376b 2019-03-28 stsp argv += optind;
7248 a129376b 2019-03-28 stsp
7249 43012d58 2019-07-14 stsp #ifndef PROFILE
7250 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
7251 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
7252 43012d58 2019-07-14 stsp err(1, "pledge");
7253 43012d58 2019-07-14 stsp #endif
7254 e20a8b6f 2019-06-04 stsp if (argc < 1)
7255 a129376b 2019-03-28 stsp usage_revert();
7256 33aa809d 2019-08-08 stsp if (patch_script_path && !pflag)
7257 33aa809d 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
7258 a129376b 2019-03-28 stsp
7259 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
7260 a129376b 2019-03-28 stsp if (cwd == NULL) {
7261 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
7262 a129376b 2019-03-28 stsp goto done;
7263 a129376b 2019-03-28 stsp }
7264 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
7265 fa51e947 2020-03-27 stsp if (error) {
7266 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
7267 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "revert", cwd);
7268 2ec1f75b 2019-03-26 stsp goto done;
7269 fa51e947 2020-03-27 stsp }
7270 a129376b 2019-03-28 stsp
7271 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
7272 c9956ddf 2019-09-08 stsp NULL);
7273 a129376b 2019-03-28 stsp if (error != NULL)
7274 a129376b 2019-03-28 stsp goto done;
7275 a129376b 2019-03-28 stsp
7276 33aa809d 2019-08-08 stsp if (patch_script_path) {
7277 33aa809d 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
7278 33aa809d 2019-08-08 stsp if (patch_script_file == NULL) {
7279 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fopen",
7280 33aa809d 2019-08-08 stsp patch_script_path);
7281 33aa809d 2019-08-08 stsp goto done;
7282 33aa809d 2019-08-08 stsp }
7283 33aa809d 2019-08-08 stsp }
7284 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
7285 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
7286 a129376b 2019-03-28 stsp if (error)
7287 a129376b 2019-03-28 stsp goto done;
7288 a129376b 2019-03-28 stsp
7289 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
7290 6d022e97 2019-08-04 stsp if (error)
7291 6d022e97 2019-08-04 stsp goto done;
7292 00db391e 2019-08-03 stsp
7293 0f6d7415 2019-08-08 stsp if (!can_recurse) {
7294 0f6d7415 2019-08-08 stsp char *ondisk_path;
7295 0f6d7415 2019-08-08 stsp struct stat sb;
7296 0f6d7415 2019-08-08 stsp TAILQ_FOREACH(pe, &paths, entry) {
7297 0f6d7415 2019-08-08 stsp if (asprintf(&ondisk_path, "%s/%s",
7298 0f6d7415 2019-08-08 stsp got_worktree_get_root_path(worktree),
7299 62d463ca 2020-10-20 naddy pe->path) == -1) {
7300 0f6d7415 2019-08-08 stsp error = got_error_from_errno("asprintf");
7301 0f6d7415 2019-08-08 stsp goto done;
7302 0f6d7415 2019-08-08 stsp }
7303 0f6d7415 2019-08-08 stsp if (lstat(ondisk_path, &sb) == -1) {
7304 0f6d7415 2019-08-08 stsp if (errno == ENOENT) {
7305 0f6d7415 2019-08-08 stsp free(ondisk_path);
7306 0f6d7415 2019-08-08 stsp continue;
7307 0f6d7415 2019-08-08 stsp }
7308 0f6d7415 2019-08-08 stsp error = got_error_from_errno2("lstat",
7309 0f6d7415 2019-08-08 stsp ondisk_path);
7310 0f6d7415 2019-08-08 stsp free(ondisk_path);
7311 0f6d7415 2019-08-08 stsp goto done;
7312 0f6d7415 2019-08-08 stsp }
7313 0f6d7415 2019-08-08 stsp free(ondisk_path);
7314 0f6d7415 2019-08-08 stsp if (S_ISDIR(sb.st_mode)) {
7315 0f6d7415 2019-08-08 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
7316 0f6d7415 2019-08-08 stsp "reverting directories requires -R option");
7317 0f6d7415 2019-08-08 stsp goto done;
7318 0f6d7415 2019-08-08 stsp }
7319 0f6d7415 2019-08-08 stsp }
7320 0f6d7415 2019-08-08 stsp }
7321 0f6d7415 2019-08-08 stsp
7322 33aa809d 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
7323 33aa809d 2019-08-08 stsp cpa.action = "revert";
7324 33aa809d 2019-08-08 stsp error = got_worktree_revert(worktree, &paths, revert_progress, NULL,
7325 33aa809d 2019-08-08 stsp pflag ? choose_patch : NULL, &cpa, repo);
7326 2ec1f75b 2019-03-26 stsp done:
7327 33aa809d 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
7328 33aa809d 2019-08-08 stsp error == NULL)
7329 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
7330 1d0f4054 2021-06-17 stsp if (repo) {
7331 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7332 1d0f4054 2021-06-17 stsp if (error == NULL)
7333 1d0f4054 2021-06-17 stsp error = close_err;
7334 1d0f4054 2021-06-17 stsp }
7335 2ec1f75b 2019-03-26 stsp if (worktree)
7336 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
7337 2ec1f75b 2019-03-26 stsp free(path);
7338 d00136be 2019-03-26 stsp free(cwd);
7339 6bad629b 2019-02-04 stsp return error;
7340 c4296144 2019-05-09 stsp }
7341 c4296144 2019-05-09 stsp
7342 c4296144 2019-05-09 stsp __dead static void
7343 c4296144 2019-05-09 stsp usage_commit(void)
7344 c4296144 2019-05-09 stsp {
7345 28cf319f 2021-01-28 stsp fprintf(stderr, "usage: %s commit [-F path] [-m msg] [-N] [-S] "
7346 28cf319f 2021-01-28 stsp "[path ...]\n", getprogname());
7347 c4296144 2019-05-09 stsp exit(1);
7348 33ad4cbe 2019-05-12 jcs }
7349 33ad4cbe 2019-05-12 jcs
7350 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
7351 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
7352 28cf319f 2021-01-28 stsp const char *prepared_log;
7353 28cf319f 2021-01-28 stsp int non_interactive;
7354 e2ba3d07 2019-05-13 stsp const char *editor;
7355 e0870e44 2019-05-13 stsp const char *worktree_path;
7356 76d98825 2019-06-03 stsp const char *branch_name;
7357 314a6357 2019-05-13 stsp const char *repo_path;
7358 e0870e44 2019-05-13 stsp char *logmsg_path;
7359 e2ba3d07 2019-05-13 stsp
7360 e2ba3d07 2019-05-13 stsp };
7361 28cf319f 2021-01-28 stsp
7362 28cf319f 2021-01-28 stsp static const struct got_error *
7363 28cf319f 2021-01-28 stsp read_prepared_logmsg(char **logmsg, const char *path)
7364 28cf319f 2021-01-28 stsp {
7365 28cf319f 2021-01-28 stsp const struct got_error *err = NULL;
7366 28cf319f 2021-01-28 stsp FILE *f = NULL;
7367 28cf319f 2021-01-28 stsp struct stat sb;
7368 28cf319f 2021-01-28 stsp size_t r;
7369 28cf319f 2021-01-28 stsp
7370 28cf319f 2021-01-28 stsp *logmsg = NULL;
7371 28cf319f 2021-01-28 stsp memset(&sb, 0, sizeof(sb));
7372 28cf319f 2021-01-28 stsp
7373 28cf319f 2021-01-28 stsp f = fopen(path, "r");
7374 28cf319f 2021-01-28 stsp if (f == NULL)
7375 28cf319f 2021-01-28 stsp return got_error_from_errno2("fopen", path);
7376 28cf319f 2021-01-28 stsp
7377 28cf319f 2021-01-28 stsp if (fstat(fileno(f), &sb) == -1) {
7378 28cf319f 2021-01-28 stsp err = got_error_from_errno2("fstat", path);
7379 28cf319f 2021-01-28 stsp goto done;
7380 28cf319f 2021-01-28 stsp }
7381 28cf319f 2021-01-28 stsp if (sb.st_size == 0) {
7382 28cf319f 2021-01-28 stsp err = got_error(GOT_ERR_COMMIT_MSG_EMPTY);
7383 28cf319f 2021-01-28 stsp goto done;
7384 28cf319f 2021-01-28 stsp }
7385 28cf319f 2021-01-28 stsp
7386 28cf319f 2021-01-28 stsp *logmsg = malloc(sb.st_size + 1);
7387 28cf319f 2021-01-28 stsp if (*logmsg == NULL) {
7388 28cf319f 2021-01-28 stsp err = got_error_from_errno("malloc");
7389 28cf319f 2021-01-28 stsp goto done;
7390 28cf319f 2021-01-28 stsp }
7391 28cf319f 2021-01-28 stsp
7392 28cf319f 2021-01-28 stsp r = fread(*logmsg, 1, sb.st_size, f);
7393 28cf319f 2021-01-28 stsp if (r != sb.st_size) {
7394 28cf319f 2021-01-28 stsp if (ferror(f))
7395 28cf319f 2021-01-28 stsp err = got_error_from_errno2("fread", path);
7396 28cf319f 2021-01-28 stsp else
7397 28cf319f 2021-01-28 stsp err = got_error(GOT_ERR_IO);
7398 28cf319f 2021-01-28 stsp goto done;
7399 28cf319f 2021-01-28 stsp }
7400 28cf319f 2021-01-28 stsp (*logmsg)[sb.st_size] = '\0';
7401 28cf319f 2021-01-28 stsp done:
7402 28cf319f 2021-01-28 stsp if (fclose(f) == EOF && err == NULL)
7403 28cf319f 2021-01-28 stsp err = got_error_from_errno2("fclose", path);
7404 28cf319f 2021-01-28 stsp if (err) {
7405 28cf319f 2021-01-28 stsp free(*logmsg);
7406 28cf319f 2021-01-28 stsp *logmsg = NULL;
7407 28cf319f 2021-01-28 stsp }
7408 28cf319f 2021-01-28 stsp return err;
7409 28cf319f 2021-01-28 stsp
7410 28cf319f 2021-01-28 stsp }
7411 e0870e44 2019-05-13 stsp
7412 33ad4cbe 2019-05-12 jcs static const struct got_error *
7413 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
7414 33ad4cbe 2019-05-12 jcs void *arg)
7415 33ad4cbe 2019-05-12 jcs {
7416 76d98825 2019-06-03 stsp char *initial_content = NULL;
7417 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
7418 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
7419 e0870e44 2019-05-13 stsp char *template = NULL;
7420 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
7421 1601cb9f 2020-09-11 naddy int initial_content_len;
7422 97972933 2020-09-11 stsp int fd = -1;
7423 33ad4cbe 2019-05-12 jcs size_t len;
7424 33ad4cbe 2019-05-12 jcs
7425 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
7426 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
7427 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
7428 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
7429 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
7430 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
7431 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
7432 33ad4cbe 2019-05-12 jcs return NULL;
7433 28cf319f 2021-01-28 stsp } else if (a->prepared_log != NULL && a->non_interactive)
7434 28cf319f 2021-01-28 stsp return read_prepared_logmsg(logmsg, a->prepared_log);
7435 33ad4cbe 2019-05-12 jcs
7436 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
7437 76d98825 2019-06-03 stsp return got_error_from_errno("asprintf");
7438 76d98825 2019-06-03 stsp
7439 28cf319f 2021-01-28 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
7440 28cf319f 2021-01-28 stsp if (err)
7441 28cf319f 2021-01-28 stsp goto done;
7442 28cf319f 2021-01-28 stsp
7443 28cf319f 2021-01-28 stsp if (a->prepared_log) {
7444 28cf319f 2021-01-28 stsp char *msg;
7445 28cf319f 2021-01-28 stsp err = read_prepared_logmsg(&msg, a->prepared_log);
7446 28cf319f 2021-01-28 stsp if (err)
7447 28cf319f 2021-01-28 stsp goto done;
7448 28cf319f 2021-01-28 stsp if (write(fd, msg, strlen(msg)) == -1) {
7449 28cf319f 2021-01-28 stsp err = got_error_from_errno2("write", a->logmsg_path);
7450 28cf319f 2021-01-28 stsp free(msg);
7451 28cf319f 2021-01-28 stsp goto done;
7452 28cf319f 2021-01-28 stsp }
7453 28cf319f 2021-01-28 stsp free(msg);
7454 28cf319f 2021-01-28 stsp }
7455 28cf319f 2021-01-28 stsp
7456 1601cb9f 2020-09-11 naddy initial_content_len = asprintf(&initial_content,
7457 76d98825 2019-06-03 stsp "\n# changes to be committed on branch %s:\n",
7458 1601cb9f 2020-09-11 naddy a->branch_name);
7459 28cf319f 2021-01-28 stsp if (initial_content_len == -1) {
7460 28cf319f 2021-01-28 stsp err = got_error_from_errno("asprintf");
7461 e0870e44 2019-05-13 stsp goto done;
7462 28cf319f 2021-01-28 stsp }
7463 33ad4cbe 2019-05-12 jcs
7464 97972933 2020-09-11 stsp if (write(fd, initial_content, initial_content_len) == -1) {
7465 97972933 2020-09-11 stsp err = got_error_from_errno2("write", a->logmsg_path);
7466 97972933 2020-09-11 stsp goto done;
7467 97972933 2020-09-11 stsp }
7468 33ad4cbe 2019-05-12 jcs
7469 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
7470 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
7471 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
7472 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
7473 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
7474 33ad4cbe 2019-05-12 jcs }
7475 33ad4cbe 2019-05-12 jcs
7476 bfa12d5e 2020-09-26 stsp err = edit_logmsg(logmsg, a->editor, a->logmsg_path, initial_content,
7477 28cf319f 2021-01-28 stsp initial_content_len, a->prepared_log ? 0 : 1);
7478 33ad4cbe 2019-05-12 jcs done:
7479 76d98825 2019-06-03 stsp free(initial_content);
7480 e0870e44 2019-05-13 stsp free(template);
7481 314a6357 2019-05-13 stsp
7482 97972933 2020-09-11 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
7483 97972933 2020-09-11 stsp err = got_error_from_errno2("close", a->logmsg_path);
7484 97972933 2020-09-11 stsp
7485 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
7486 59f86c76 2020-09-11 stsp if (err == NULL)
7487 c530dc23 2019-07-23 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path);
7488 59f86c76 2020-09-11 stsp if (err) {
7489 59f86c76 2020-09-11 stsp free(*logmsg);
7490 59f86c76 2020-09-11 stsp *logmsg = NULL;
7491 3ce1b845 2019-07-15 stsp }
7492 33ad4cbe 2019-05-12 jcs return err;
7493 6bad629b 2019-02-04 stsp }
7494 c4296144 2019-05-09 stsp
7495 c4296144 2019-05-09 stsp static const struct got_error *
7496 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
7497 c4296144 2019-05-09 stsp {
7498 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
7499 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
7500 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
7501 5c1e53bc 2019-07-28 stsp char *cwd = NULL, *id_str = NULL;
7502 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
7503 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
7504 28cf319f 2021-01-28 stsp char *prepared_logmsg = NULL;
7505 aba9c984 2019-09-08 stsp struct collect_commit_logmsg_arg cl_arg;
7506 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
7507 7266f21f 2019-10-21 stsp int ch, rebase_in_progress, histedit_in_progress, preserve_logmsg = 0;
7508 f259c4c1 2021-09-24 stsp int allow_bad_symlinks = 0, non_interactive = 0, merge_in_progress = 0;
7509 5c1e53bc 2019-07-28 stsp struct got_pathlist_head paths;
7510 5c1e53bc 2019-07-28 stsp
7511 5c1e53bc 2019-07-28 stsp TAILQ_INIT(&paths);
7512 6ac5a73c 2019-08-08 stsp cl_arg.logmsg_path = NULL;
7513 c4296144 2019-05-09 stsp
7514 28cf319f 2021-01-28 stsp while ((ch = getopt(argc, argv, "F:m:NS")) != -1) {
7515 c4296144 2019-05-09 stsp switch (ch) {
7516 28cf319f 2021-01-28 stsp case 'F':
7517 28cf319f 2021-01-28 stsp if (logmsg != NULL)
7518 28cf319f 2021-01-28 stsp option_conflict('F', 'm');
7519 28cf319f 2021-01-28 stsp prepared_logmsg = realpath(optarg, NULL);
7520 28cf319f 2021-01-28 stsp if (prepared_logmsg == NULL)
7521 28cf319f 2021-01-28 stsp return got_error_from_errno2("realpath",
7522 28cf319f 2021-01-28 stsp optarg);
7523 28cf319f 2021-01-28 stsp break;
7524 c4296144 2019-05-09 stsp case 'm':
7525 28cf319f 2021-01-28 stsp if (prepared_logmsg)
7526 28cf319f 2021-01-28 stsp option_conflict('m', 'F');
7527 c4296144 2019-05-09 stsp logmsg = optarg;
7528 28cf319f 2021-01-28 stsp break;
7529 28cf319f 2021-01-28 stsp case 'N':
7530 28cf319f 2021-01-28 stsp non_interactive = 1;
7531 c4296144 2019-05-09 stsp break;
7532 35213c7c 2020-07-23 stsp case 'S':
7533 35213c7c 2020-07-23 stsp allow_bad_symlinks = 1;
7534 35213c7c 2020-07-23 stsp break;
7535 c4296144 2019-05-09 stsp default:
7536 c4296144 2019-05-09 stsp usage_commit();
7537 c4296144 2019-05-09 stsp /* NOTREACHED */
7538 c4296144 2019-05-09 stsp }
7539 c4296144 2019-05-09 stsp }
7540 c4296144 2019-05-09 stsp
7541 c4296144 2019-05-09 stsp argc -= optind;
7542 c4296144 2019-05-09 stsp argv += optind;
7543 c4296144 2019-05-09 stsp
7544 43012d58 2019-07-14 stsp #ifndef PROFILE
7545 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
7546 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
7547 43012d58 2019-07-14 stsp err(1, "pledge");
7548 43012d58 2019-07-14 stsp #endif
7549 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
7550 c4296144 2019-05-09 stsp if (cwd == NULL) {
7551 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
7552 c4296144 2019-05-09 stsp goto done;
7553 c4296144 2019-05-09 stsp }
7554 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
7555 fa51e947 2020-03-27 stsp if (error) {
7556 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
7557 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "commit", cwd);
7558 7d5807f4 2019-07-11 stsp goto done;
7559 fa51e947 2020-03-27 stsp }
7560 7d5807f4 2019-07-11 stsp
7561 a698f62e 2019-07-25 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
7562 c4296144 2019-05-09 stsp if (error)
7563 a698f62e 2019-07-25 stsp goto done;
7564 a698f62e 2019-07-25 stsp if (rebase_in_progress) {
7565 a698f62e 2019-07-25 stsp error = got_error(GOT_ERR_REBASING);
7566 c4296144 2019-05-09 stsp goto done;
7567 a698f62e 2019-07-25 stsp }
7568 5c1e53bc 2019-07-28 stsp
7569 916f288c 2019-07-30 stsp error = got_worktree_histedit_in_progress(&histedit_in_progress,
7570 916f288c 2019-07-30 stsp worktree);
7571 5c1e53bc 2019-07-28 stsp if (error)
7572 5c1e53bc 2019-07-28 stsp goto done;
7573 c4296144 2019-05-09 stsp
7574 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
7575 c9956ddf 2019-09-08 stsp if (error)
7576 c9956ddf 2019-09-08 stsp goto done;
7577 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
7578 c9956ddf 2019-09-08 stsp gitconfig_path);
7579 c4296144 2019-05-09 stsp if (error != NULL)
7580 c4296144 2019-05-09 stsp goto done;
7581 c4296144 2019-05-09 stsp
7582 f259c4c1 2021-09-24 stsp error = got_worktree_merge_in_progress(&merge_in_progress, worktree, repo);
7583 f259c4c1 2021-09-24 stsp if (error)
7584 f259c4c1 2021-09-24 stsp goto done;
7585 f259c4c1 2021-09-24 stsp if (merge_in_progress) {
7586 f259c4c1 2021-09-24 stsp error = got_error(GOT_ERR_MERGE_BUSY);
7587 f259c4c1 2021-09-24 stsp goto done;
7588 f259c4c1 2021-09-24 stsp }
7589 f259c4c1 2021-09-24 stsp
7590 50b0790e 2020-09-11 stsp error = get_author(&author, repo, worktree);
7591 aba9c984 2019-09-08 stsp if (error)
7592 aba9c984 2019-09-08 stsp return error;
7593 aba9c984 2019-09-08 stsp
7594 314a6357 2019-05-13 stsp /*
7595 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
7596 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
7597 314a6357 2019-05-13 stsp */
7598 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
7599 314a6357 2019-05-13 stsp error = get_editor(&editor);
7600 314a6357 2019-05-13 stsp else
7601 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
7602 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
7603 c4296144 2019-05-09 stsp if (error)
7604 c4296144 2019-05-09 stsp goto done;
7605 c4296144 2019-05-09 stsp
7606 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
7607 087fb88c 2019-08-04 stsp if (error)
7608 087fb88c 2019-08-04 stsp goto done;
7609 087fb88c 2019-08-04 stsp
7610 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
7611 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
7612 28cf319f 2021-01-28 stsp cl_arg.prepared_log = prepared_logmsg;
7613 28cf319f 2021-01-28 stsp cl_arg.non_interactive = non_interactive;
7614 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
7615 76d98825 2019-06-03 stsp cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
7616 916f288c 2019-07-30 stsp if (!histedit_in_progress) {
7617 916f288c 2019-07-30 stsp if (strncmp(cl_arg.branch_name, "refs/heads/", 11) != 0) {
7618 916f288c 2019-07-30 stsp error = got_error(GOT_ERR_COMMIT_BRANCH);
7619 916f288c 2019-07-30 stsp goto done;
7620 916f288c 2019-07-30 stsp }
7621 916f288c 2019-07-30 stsp cl_arg.branch_name += 11;
7622 916f288c 2019-07-30 stsp }
7623 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
7624 84792843 2019-08-09 stsp error = got_worktree_commit(&id, worktree, &paths, author, NULL,
7625 35213c7c 2020-07-23 stsp allow_bad_symlinks, collect_commit_logmsg, &cl_arg,
7626 35213c7c 2020-07-23 stsp print_status, NULL, repo);
7627 e0870e44 2019-05-13 stsp if (error) {
7628 7266f21f 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
7629 7266f21f 2019-10-21 stsp cl_arg.logmsg_path != NULL)
7630 7266f21f 2019-10-21 stsp preserve_logmsg = 1;
7631 c4296144 2019-05-09 stsp goto done;
7632 e0870e44 2019-05-13 stsp }
7633 c4296144 2019-05-09 stsp
7634 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
7635 c4296144 2019-05-09 stsp if (error)
7636 c4296144 2019-05-09 stsp goto done;
7637 a7648d7a 2019-06-02 stsp printf("Created commit %s\n", id_str);
7638 c4296144 2019-05-09 stsp done:
7639 7266f21f 2019-10-21 stsp if (preserve_logmsg) {
7640 7266f21f 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
7641 7266f21f 2019-10-21 stsp getprogname(), cl_arg.logmsg_path);
7642 7266f21f 2019-10-21 stsp } else if (cl_arg.logmsg_path && unlink(cl_arg.logmsg_path) == -1 &&
7643 7266f21f 2019-10-21 stsp error == NULL)
7644 7266f21f 2019-10-21 stsp error = got_error_from_errno2("unlink", cl_arg.logmsg_path);
7645 6ac5a73c 2019-08-08 stsp free(cl_arg.logmsg_path);
7646 1d0f4054 2021-06-17 stsp if (repo) {
7647 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
7648 1d0f4054 2021-06-17 stsp if (error == NULL)
7649 1d0f4054 2021-06-17 stsp error = close_err;
7650 1d0f4054 2021-06-17 stsp }
7651 c4296144 2019-05-09 stsp if (worktree)
7652 c4296144 2019-05-09 stsp got_worktree_close(worktree);
7653 c4296144 2019-05-09 stsp free(cwd);
7654 c4296144 2019-05-09 stsp free(id_str);
7655 c9956ddf 2019-09-08 stsp free(gitconfig_path);
7656 e2ba3d07 2019-05-13 stsp free(editor);
7657 aba9c984 2019-09-08 stsp free(author);
7658 28cf319f 2021-01-28 stsp free(prepared_logmsg);
7659 f8a36e22 2021-08-26 stsp return error;
7660 f8a36e22 2021-08-26 stsp }
7661 f8a36e22 2021-08-26 stsp
7662 f8a36e22 2021-08-26 stsp __dead static void
7663 f8a36e22 2021-08-26 stsp usage_send(void)
7664 f8a36e22 2021-08-26 stsp {
7665 f8a36e22 2021-08-26 stsp fprintf(stderr, "usage: %s send [-a] [-b branch] [-d branch] [-f] "
7666 f8a36e22 2021-08-26 stsp "[-r repository-path] [-t tag] [-T] [-q] [-v] "
7667 f8a36e22 2021-08-26 stsp "[remote-repository]\n", getprogname());
7668 f8a36e22 2021-08-26 stsp exit(1);
7669 f8a36e22 2021-08-26 stsp }
7670 f8a36e22 2021-08-26 stsp
7671 f8a36e22 2021-08-26 stsp struct got_send_progress_arg {
7672 f8a36e22 2021-08-26 stsp char last_scaled_packsize[FMT_SCALED_STRSIZE];
7673 f8a36e22 2021-08-26 stsp int verbosity;
7674 f8a36e22 2021-08-26 stsp int last_ncommits;
7675 f8a36e22 2021-08-26 stsp int last_nobj_total;
7676 f8a36e22 2021-08-26 stsp int last_p_deltify;
7677 f8a36e22 2021-08-26 stsp int last_p_written;
7678 f8a36e22 2021-08-26 stsp int last_p_sent;
7679 f8a36e22 2021-08-26 stsp int printed_something;
7680 f8a36e22 2021-08-26 stsp int sent_something;
7681 f8a36e22 2021-08-26 stsp struct got_pathlist_head *delete_branches;
7682 f8a36e22 2021-08-26 stsp };
7683 f8a36e22 2021-08-26 stsp
7684 f8a36e22 2021-08-26 stsp static const struct got_error *
7685 f8a36e22 2021-08-26 stsp send_progress(void *arg, off_t packfile_size, int ncommits, int nobj_total,
7686 f8a36e22 2021-08-26 stsp int nobj_deltify, int nobj_written, off_t bytes_sent, const char *refname,
7687 f8a36e22 2021-08-26 stsp int success)
7688 f8a36e22 2021-08-26 stsp {
7689 f8a36e22 2021-08-26 stsp struct got_send_progress_arg *a = arg;
7690 f8a36e22 2021-08-26 stsp char scaled_packsize[FMT_SCALED_STRSIZE];
7691 f8a36e22 2021-08-26 stsp char scaled_sent[FMT_SCALED_STRSIZE];
7692 f8a36e22 2021-08-26 stsp int p_deltify = 0, p_written = 0, p_sent = 0;
7693 f8a36e22 2021-08-26 stsp int print_searching = 0, print_total = 0;
7694 f8a36e22 2021-08-26 stsp int print_deltify = 0, print_written = 0, print_sent = 0;
7695 f8a36e22 2021-08-26 stsp
7696 f8a36e22 2021-08-26 stsp if (a->verbosity < 0)
7697 f8a36e22 2021-08-26 stsp return NULL;
7698 f8a36e22 2021-08-26 stsp
7699 f8a36e22 2021-08-26 stsp if (refname) {
7700 f8a36e22 2021-08-26 stsp const char *status = success ? "accepted" : "rejected";
7701 f8a36e22 2021-08-26 stsp
7702 f8a36e22 2021-08-26 stsp if (success) {
7703 f8a36e22 2021-08-26 stsp struct got_pathlist_entry *pe;
7704 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, a->delete_branches, entry) {
7705 f8a36e22 2021-08-26 stsp const char *branchname = pe->path;
7706 f8a36e22 2021-08-26 stsp if (got_path_cmp(branchname, refname,
7707 f8a36e22 2021-08-26 stsp strlen(branchname), strlen(refname)) == 0) {
7708 f8a36e22 2021-08-26 stsp status = "deleted";
7709 27b75514 2021-08-28 stsp a->sent_something = 1;
7710 f8a36e22 2021-08-26 stsp break;
7711 f8a36e22 2021-08-26 stsp }
7712 f8a36e22 2021-08-26 stsp }
7713 f8a36e22 2021-08-26 stsp }
7714 f8a36e22 2021-08-26 stsp
7715 27b75514 2021-08-28 stsp if (a->printed_something)
7716 27b75514 2021-08-28 stsp putchar('\n');
7717 27b75514 2021-08-28 stsp printf("Server has %s %s", status, refname);
7718 f8a36e22 2021-08-26 stsp a->printed_something = 1;
7719 f8a36e22 2021-08-26 stsp return NULL;
7720 f8a36e22 2021-08-26 stsp }
7721 f8a36e22 2021-08-26 stsp
7722 f8a36e22 2021-08-26 stsp if (fmt_scaled(packfile_size, scaled_packsize) == -1)
7723 f8a36e22 2021-08-26 stsp return got_error_from_errno("fmt_scaled");
7724 f8a36e22 2021-08-26 stsp if (fmt_scaled(bytes_sent, scaled_sent) == -1)
7725 f8a36e22 2021-08-26 stsp return got_error_from_errno("fmt_scaled");
7726 f8a36e22 2021-08-26 stsp
7727 f8a36e22 2021-08-26 stsp if (a->last_ncommits != ncommits) {
7728 f8a36e22 2021-08-26 stsp print_searching = 1;
7729 f8a36e22 2021-08-26 stsp a->last_ncommits = ncommits;
7730 f8a36e22 2021-08-26 stsp }
7731 f8a36e22 2021-08-26 stsp
7732 f8a36e22 2021-08-26 stsp if (a->last_nobj_total != nobj_total) {
7733 f8a36e22 2021-08-26 stsp print_searching = 1;
7734 f8a36e22 2021-08-26 stsp print_total = 1;
7735 f8a36e22 2021-08-26 stsp a->last_nobj_total = nobj_total;
7736 f8a36e22 2021-08-26 stsp }
7737 f8a36e22 2021-08-26 stsp
7738 f8a36e22 2021-08-26 stsp if (packfile_size > 0 && (a->last_scaled_packsize[0] == '\0' ||
7739 f8a36e22 2021-08-26 stsp strcmp(scaled_packsize, a->last_scaled_packsize)) != 0) {
7740 f8a36e22 2021-08-26 stsp if (strlcpy(a->last_scaled_packsize, scaled_packsize,
7741 f8a36e22 2021-08-26 stsp FMT_SCALED_STRSIZE) >= FMT_SCALED_STRSIZE)
7742 f8a36e22 2021-08-26 stsp return got_error(GOT_ERR_NO_SPACE);
7743 f8a36e22 2021-08-26 stsp }
7744 f8a36e22 2021-08-26 stsp
7745 f8a36e22 2021-08-26 stsp if (nobj_deltify > 0 || nobj_written > 0) {
7746 f8a36e22 2021-08-26 stsp if (nobj_deltify > 0) {
7747 f8a36e22 2021-08-26 stsp p_deltify = (nobj_deltify * 100) / nobj_total;
7748 f8a36e22 2021-08-26 stsp if (p_deltify != a->last_p_deltify) {
7749 f8a36e22 2021-08-26 stsp a->last_p_deltify = p_deltify;
7750 f8a36e22 2021-08-26 stsp print_searching = 1;
7751 f8a36e22 2021-08-26 stsp print_total = 1;
7752 f8a36e22 2021-08-26 stsp print_deltify = 1;
7753 f8a36e22 2021-08-26 stsp }
7754 f8a36e22 2021-08-26 stsp }
7755 f8a36e22 2021-08-26 stsp if (nobj_written > 0) {
7756 f8a36e22 2021-08-26 stsp p_written = (nobj_written * 100) / nobj_total;
7757 f8a36e22 2021-08-26 stsp if (p_written != a->last_p_written) {
7758 f8a36e22 2021-08-26 stsp a->last_p_written = p_written;
7759 f8a36e22 2021-08-26 stsp print_searching = 1;
7760 f8a36e22 2021-08-26 stsp print_total = 1;
7761 f8a36e22 2021-08-26 stsp print_deltify = 1;
7762 f8a36e22 2021-08-26 stsp print_written = 1;
7763 f8a36e22 2021-08-26 stsp }
7764 f8a36e22 2021-08-26 stsp }
7765 f8a36e22 2021-08-26 stsp }
7766 f8a36e22 2021-08-26 stsp
7767 f8a36e22 2021-08-26 stsp if (bytes_sent > 0) {
7768 f8a36e22 2021-08-26 stsp p_sent = (bytes_sent * 100) / packfile_size;
7769 f8a36e22 2021-08-26 stsp if (p_sent != a->last_p_sent) {
7770 f8a36e22 2021-08-26 stsp a->last_p_sent = p_sent;
7771 f8a36e22 2021-08-26 stsp print_searching = 1;
7772 f8a36e22 2021-08-26 stsp print_total = 1;
7773 f8a36e22 2021-08-26 stsp print_deltify = 1;
7774 f8a36e22 2021-08-26 stsp print_written = 1;
7775 f8a36e22 2021-08-26 stsp print_sent = 1;
7776 f8a36e22 2021-08-26 stsp }
7777 f8a36e22 2021-08-26 stsp a->sent_something = 1;
7778 f8a36e22 2021-08-26 stsp }
7779 f8a36e22 2021-08-26 stsp
7780 f8a36e22 2021-08-26 stsp if (print_searching || print_total || print_deltify || print_written ||
7781 f8a36e22 2021-08-26 stsp print_sent)
7782 f8a36e22 2021-08-26 stsp printf("\r");
7783 f8a36e22 2021-08-26 stsp if (print_searching)
7784 f8a36e22 2021-08-26 stsp printf("packing %d reference%s", ncommits,
7785 f8a36e22 2021-08-26 stsp ncommits == 1 ? "" : "s");
7786 f8a36e22 2021-08-26 stsp if (print_total)
7787 f8a36e22 2021-08-26 stsp printf("; %d object%s", nobj_total,
7788 f8a36e22 2021-08-26 stsp nobj_total == 1 ? "" : "s");
7789 f8a36e22 2021-08-26 stsp if (print_deltify)
7790 f8a36e22 2021-08-26 stsp printf("; deltify: %d%%", p_deltify);
7791 f8a36e22 2021-08-26 stsp if (print_sent)
7792 f8a36e22 2021-08-26 stsp printf("; uploading pack: %*s %d%%", FMT_SCALED_STRSIZE,
7793 f8a36e22 2021-08-26 stsp scaled_packsize, p_sent);
7794 f8a36e22 2021-08-26 stsp else if (print_written)
7795 f8a36e22 2021-08-26 stsp printf("; writing pack: %*s %d%%", FMT_SCALED_STRSIZE,
7796 f8a36e22 2021-08-26 stsp scaled_packsize, p_written);
7797 f8a36e22 2021-08-26 stsp if (print_searching || print_total || print_deltify ||
7798 f8a36e22 2021-08-26 stsp print_written || print_sent) {
7799 f8a36e22 2021-08-26 stsp a->printed_something = 1;
7800 f8a36e22 2021-08-26 stsp fflush(stdout);
7801 f8a36e22 2021-08-26 stsp }
7802 f8a36e22 2021-08-26 stsp return NULL;
7803 f8a36e22 2021-08-26 stsp }
7804 f8a36e22 2021-08-26 stsp
7805 f8a36e22 2021-08-26 stsp static const struct got_error *
7806 f8a36e22 2021-08-26 stsp cmd_send(int argc, char *argv[])
7807 f8a36e22 2021-08-26 stsp {
7808 f8a36e22 2021-08-26 stsp const struct got_error *error = NULL;
7809 f8a36e22 2021-08-26 stsp char *cwd = NULL, *repo_path = NULL;
7810 f8a36e22 2021-08-26 stsp const char *remote_name;
7811 f8a36e22 2021-08-26 stsp char *proto = NULL, *host = NULL, *port = NULL;
7812 f8a36e22 2021-08-26 stsp char *repo_name = NULL, *server_path = NULL;
7813 f8a36e22 2021-08-26 stsp const struct got_remote_repo *remotes, *remote = NULL;
7814 f8a36e22 2021-08-26 stsp int nremotes, nbranches = 0, ntags = 0, ndelete_branches = 0;
7815 f8a36e22 2021-08-26 stsp struct got_repository *repo = NULL;
7816 f8a36e22 2021-08-26 stsp struct got_worktree *worktree = NULL;
7817 f8a36e22 2021-08-26 stsp const struct got_gotconfig *repo_conf = NULL, *worktree_conf = NULL;
7818 f8a36e22 2021-08-26 stsp struct got_pathlist_head branches;
7819 f8a36e22 2021-08-26 stsp struct got_pathlist_head tags;
7820 f8a36e22 2021-08-26 stsp struct got_reflist_head all_branches;
7821 f8a36e22 2021-08-26 stsp struct got_reflist_head all_tags;
7822 f8a36e22 2021-08-26 stsp struct got_pathlist_head delete_args;
7823 f8a36e22 2021-08-26 stsp struct got_pathlist_head delete_branches;
7824 f8a36e22 2021-08-26 stsp struct got_reflist_entry *re;
7825 f8a36e22 2021-08-26 stsp struct got_pathlist_entry *pe;
7826 f8a36e22 2021-08-26 stsp int i, ch, sendfd = -1, sendstatus;
7827 f8a36e22 2021-08-26 stsp pid_t sendpid = -1;
7828 f8a36e22 2021-08-26 stsp struct got_send_progress_arg spa;
7829 f8a36e22 2021-08-26 stsp int verbosity = 0, overwrite_refs = 0;
7830 f8a36e22 2021-08-26 stsp int send_all_branches = 0, send_all_tags = 0;
7831 f8a36e22 2021-08-26 stsp struct got_reference *ref = NULL;
7832 f8a36e22 2021-08-26 stsp
7833 f8a36e22 2021-08-26 stsp TAILQ_INIT(&branches);
7834 f8a36e22 2021-08-26 stsp TAILQ_INIT(&tags);
7835 f8a36e22 2021-08-26 stsp TAILQ_INIT(&all_branches);
7836 f8a36e22 2021-08-26 stsp TAILQ_INIT(&all_tags);
7837 f8a36e22 2021-08-26 stsp TAILQ_INIT(&delete_args);
7838 f8a36e22 2021-08-26 stsp TAILQ_INIT(&delete_branches);
7839 f8a36e22 2021-08-26 stsp
7840 f8a36e22 2021-08-26 stsp while ((ch = getopt(argc, argv, "ab:d:fr:t:Tvq")) != -1) {
7841 f8a36e22 2021-08-26 stsp switch (ch) {
7842 f8a36e22 2021-08-26 stsp case 'a':
7843 f8a36e22 2021-08-26 stsp send_all_branches = 1;
7844 f8a36e22 2021-08-26 stsp break;
7845 f8a36e22 2021-08-26 stsp case 'b':
7846 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&branches, optarg, NULL);
7847 f8a36e22 2021-08-26 stsp if (error)
7848 f8a36e22 2021-08-26 stsp return error;
7849 f8a36e22 2021-08-26 stsp nbranches++;
7850 f8a36e22 2021-08-26 stsp break;
7851 f8a36e22 2021-08-26 stsp case 'd':
7852 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&delete_args, optarg, NULL);
7853 f8a36e22 2021-08-26 stsp if (error)
7854 f8a36e22 2021-08-26 stsp return error;
7855 f8a36e22 2021-08-26 stsp break;
7856 f8a36e22 2021-08-26 stsp case 'f':
7857 f8a36e22 2021-08-26 stsp overwrite_refs = 1;
7858 f8a36e22 2021-08-26 stsp break;
7859 f8a36e22 2021-08-26 stsp case 'r':
7860 f8a36e22 2021-08-26 stsp repo_path = realpath(optarg, NULL);
7861 f8a36e22 2021-08-26 stsp if (repo_path == NULL)
7862 f8a36e22 2021-08-26 stsp return got_error_from_errno2("realpath",
7863 f8a36e22 2021-08-26 stsp optarg);
7864 f8a36e22 2021-08-26 stsp got_path_strip_trailing_slashes(repo_path);
7865 f8a36e22 2021-08-26 stsp break;
7866 f8a36e22 2021-08-26 stsp case 't':
7867 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&tags, optarg, NULL);
7868 f8a36e22 2021-08-26 stsp if (error)
7869 f8a36e22 2021-08-26 stsp return error;
7870 f8a36e22 2021-08-26 stsp ntags++;
7871 f8a36e22 2021-08-26 stsp break;
7872 f8a36e22 2021-08-26 stsp case 'T':
7873 f8a36e22 2021-08-26 stsp send_all_tags = 1;
7874 f8a36e22 2021-08-26 stsp break;
7875 f8a36e22 2021-08-26 stsp case 'v':
7876 f8a36e22 2021-08-26 stsp if (verbosity < 0)
7877 f8a36e22 2021-08-26 stsp verbosity = 0;
7878 f8a36e22 2021-08-26 stsp else if (verbosity < 3)
7879 f8a36e22 2021-08-26 stsp verbosity++;
7880 f8a36e22 2021-08-26 stsp break;
7881 f8a36e22 2021-08-26 stsp case 'q':
7882 f8a36e22 2021-08-26 stsp verbosity = -1;
7883 f8a36e22 2021-08-26 stsp break;
7884 f8a36e22 2021-08-26 stsp default:
7885 f8a36e22 2021-08-26 stsp usage_send();
7886 f8a36e22 2021-08-26 stsp /* NOTREACHED */
7887 f8a36e22 2021-08-26 stsp }
7888 f8a36e22 2021-08-26 stsp }
7889 f8a36e22 2021-08-26 stsp argc -= optind;
7890 f8a36e22 2021-08-26 stsp argv += optind;
7891 f8a36e22 2021-08-26 stsp
7892 f8a36e22 2021-08-26 stsp if (send_all_branches && !TAILQ_EMPTY(&branches))
7893 f8a36e22 2021-08-26 stsp option_conflict('a', 'b');
7894 f8a36e22 2021-08-26 stsp if (send_all_tags && !TAILQ_EMPTY(&tags))
7895 f8a36e22 2021-08-26 stsp option_conflict('T', 't');
7896 f8a36e22 2021-08-26 stsp
7897 f8a36e22 2021-08-26 stsp
7898 f8a36e22 2021-08-26 stsp if (argc == 0)
7899 f8a36e22 2021-08-26 stsp remote_name = GOT_SEND_DEFAULT_REMOTE_NAME;
7900 f8a36e22 2021-08-26 stsp else if (argc == 1)
7901 f8a36e22 2021-08-26 stsp remote_name = argv[0];
7902 f8a36e22 2021-08-26 stsp else
7903 f8a36e22 2021-08-26 stsp usage_send();
7904 f8a36e22 2021-08-26 stsp
7905 f8a36e22 2021-08-26 stsp cwd = getcwd(NULL, 0);
7906 f8a36e22 2021-08-26 stsp if (cwd == NULL) {
7907 f8a36e22 2021-08-26 stsp error = got_error_from_errno("getcwd");
7908 f8a36e22 2021-08-26 stsp goto done;
7909 f8a36e22 2021-08-26 stsp }
7910 f8a36e22 2021-08-26 stsp
7911 f8a36e22 2021-08-26 stsp if (repo_path == NULL) {
7912 f8a36e22 2021-08-26 stsp error = got_worktree_open(&worktree, cwd);
7913 f8a36e22 2021-08-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7914 f8a36e22 2021-08-26 stsp goto done;
7915 f8a36e22 2021-08-26 stsp else
7916 f8a36e22 2021-08-26 stsp error = NULL;
7917 f8a36e22 2021-08-26 stsp if (worktree) {
7918 f8a36e22 2021-08-26 stsp repo_path =
7919 f8a36e22 2021-08-26 stsp strdup(got_worktree_get_repo_path(worktree));
7920 f8a36e22 2021-08-26 stsp if (repo_path == NULL)
7921 f8a36e22 2021-08-26 stsp error = got_error_from_errno("strdup");
7922 f8a36e22 2021-08-26 stsp if (error)
7923 f8a36e22 2021-08-26 stsp goto done;
7924 f8a36e22 2021-08-26 stsp } else {
7925 f8a36e22 2021-08-26 stsp repo_path = strdup(cwd);
7926 f8a36e22 2021-08-26 stsp if (repo_path == NULL) {
7927 f8a36e22 2021-08-26 stsp error = got_error_from_errno("strdup");
7928 f8a36e22 2021-08-26 stsp goto done;
7929 f8a36e22 2021-08-26 stsp }
7930 f8a36e22 2021-08-26 stsp }
7931 f8a36e22 2021-08-26 stsp }
7932 f8a36e22 2021-08-26 stsp
7933 f8a36e22 2021-08-26 stsp error = got_repo_open(&repo, repo_path, NULL);
7934 f8a36e22 2021-08-26 stsp if (error)
7935 f8a36e22 2021-08-26 stsp goto done;
7936 f8a36e22 2021-08-26 stsp
7937 f8a36e22 2021-08-26 stsp if (worktree) {
7938 f8a36e22 2021-08-26 stsp worktree_conf = got_worktree_get_gotconfig(worktree);
7939 f8a36e22 2021-08-26 stsp if (worktree_conf) {
7940 f8a36e22 2021-08-26 stsp got_gotconfig_get_remotes(&nremotes, &remotes,
7941 f8a36e22 2021-08-26 stsp worktree_conf);
7942 f8a36e22 2021-08-26 stsp for (i = 0; i < nremotes; i++) {
7943 f8a36e22 2021-08-26 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
7944 f8a36e22 2021-08-26 stsp remote = &remotes[i];
7945 f8a36e22 2021-08-26 stsp break;
7946 f8a36e22 2021-08-26 stsp }
7947 f8a36e22 2021-08-26 stsp }
7948 f8a36e22 2021-08-26 stsp }
7949 f8a36e22 2021-08-26 stsp }
7950 f8a36e22 2021-08-26 stsp if (remote == NULL) {
7951 f8a36e22 2021-08-26 stsp repo_conf = got_repo_get_gotconfig(repo);
7952 f8a36e22 2021-08-26 stsp if (repo_conf) {
7953 f8a36e22 2021-08-26 stsp got_gotconfig_get_remotes(&nremotes, &remotes,
7954 f8a36e22 2021-08-26 stsp repo_conf);
7955 f8a36e22 2021-08-26 stsp for (i = 0; i < nremotes; i++) {
7956 f8a36e22 2021-08-26 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
7957 f8a36e22 2021-08-26 stsp remote = &remotes[i];
7958 f8a36e22 2021-08-26 stsp break;
7959 f8a36e22 2021-08-26 stsp }
7960 f8a36e22 2021-08-26 stsp }
7961 f8a36e22 2021-08-26 stsp }
7962 f8a36e22 2021-08-26 stsp }
7963 f8a36e22 2021-08-26 stsp if (remote == NULL) {
7964 f8a36e22 2021-08-26 stsp got_repo_get_gitconfig_remotes(&nremotes, &remotes, repo);
7965 f8a36e22 2021-08-26 stsp for (i = 0; i < nremotes; i++) {
7966 f8a36e22 2021-08-26 stsp if (strcmp(remotes[i].name, remote_name) == 0) {
7967 f8a36e22 2021-08-26 stsp remote = &remotes[i];
7968 f8a36e22 2021-08-26 stsp break;
7969 f8a36e22 2021-08-26 stsp }
7970 f8a36e22 2021-08-26 stsp }
7971 f8a36e22 2021-08-26 stsp }
7972 f8a36e22 2021-08-26 stsp if (remote == NULL) {
7973 f8a36e22 2021-08-26 stsp error = got_error_path(remote_name, GOT_ERR_NO_REMOTE);
7974 f8a36e22 2021-08-26 stsp goto done;
7975 f8a36e22 2021-08-26 stsp }
7976 f8a36e22 2021-08-26 stsp
7977 5e5da8c4 2021-09-05 stsp error = got_dial_parse_uri(&proto, &host, &port, &server_path,
7978 6480c871 2021-08-30 stsp &repo_name, remote->send_url);
7979 f8a36e22 2021-08-26 stsp if (error)
7980 f8a36e22 2021-08-26 stsp goto done;
7981 f8a36e22 2021-08-26 stsp
7982 f8a36e22 2021-08-26 stsp if (strcmp(proto, "git") == 0) {
7983 f8a36e22 2021-08-26 stsp #ifndef PROFILE
7984 f8a36e22 2021-08-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
7985 f8a36e22 2021-08-26 stsp "sendfd dns inet unveil", NULL) == -1)
7986 f8a36e22 2021-08-26 stsp err(1, "pledge");
7987 f8a36e22 2021-08-26 stsp #endif
7988 f8a36e22 2021-08-26 stsp } else if (strcmp(proto, "git+ssh") == 0 ||
7989 f8a36e22 2021-08-26 stsp strcmp(proto, "ssh") == 0) {
7990 f8a36e22 2021-08-26 stsp #ifndef PROFILE
7991 f8a36e22 2021-08-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
7992 f8a36e22 2021-08-26 stsp "sendfd unveil", NULL) == -1)
7993 f8a36e22 2021-08-26 stsp err(1, "pledge");
7994 f8a36e22 2021-08-26 stsp #endif
7995 f8a36e22 2021-08-26 stsp } else if (strcmp(proto, "http") == 0 ||
7996 f8a36e22 2021-08-26 stsp strcmp(proto, "git+http") == 0) {
7997 f8a36e22 2021-08-26 stsp error = got_error_path(proto, GOT_ERR_NOT_IMPL);
7998 f8a36e22 2021-08-26 stsp goto done;
7999 f8a36e22 2021-08-26 stsp } else {
8000 f8a36e22 2021-08-26 stsp error = got_error_path(proto, GOT_ERR_BAD_PROTO);
8001 f8a36e22 2021-08-26 stsp goto done;
8002 f8a36e22 2021-08-26 stsp }
8003 f8a36e22 2021-08-26 stsp
8004 d65a88a2 2021-09-05 stsp error = got_dial_apply_unveil(proto);
8005 d65a88a2 2021-09-05 stsp if (error)
8006 d65a88a2 2021-09-05 stsp goto done;
8007 d65a88a2 2021-09-05 stsp
8008 f8a36e22 2021-08-26 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
8009 f8a36e22 2021-08-26 stsp if (error)
8010 f8a36e22 2021-08-26 stsp goto done;
8011 f8a36e22 2021-08-26 stsp
8012 f8a36e22 2021-08-26 stsp if (send_all_branches) {
8013 f8a36e22 2021-08-26 stsp error = got_ref_list(&all_branches, repo, "refs/heads",
8014 f8a36e22 2021-08-26 stsp got_ref_cmp_by_name, NULL);
8015 f8a36e22 2021-08-26 stsp if (error)
8016 f8a36e22 2021-08-26 stsp goto done;
8017 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(re, &all_branches, entry) {
8018 f8a36e22 2021-08-26 stsp const char *branchname = got_ref_get_name(re->ref);
8019 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&branches,
8020 f8a36e22 2021-08-26 stsp branchname, NULL);
8021 f8a36e22 2021-08-26 stsp if (error)
8022 f8a36e22 2021-08-26 stsp goto done;
8023 f8a36e22 2021-08-26 stsp nbranches++;
8024 f8a36e22 2021-08-26 stsp }
8025 eac1df47 2021-09-01 stsp } else if (nbranches == 0) {
8026 eac1df47 2021-09-01 stsp for (i = 0; i < remote->nsend_branches; i++) {
8027 eac1df47 2021-09-01 stsp got_pathlist_append(&branches,
8028 eac1df47 2021-09-01 stsp remote->send_branches[i], NULL);
8029 eac1df47 2021-09-01 stsp }
8030 f8a36e22 2021-08-26 stsp }
8031 f8a36e22 2021-08-26 stsp
8032 f8a36e22 2021-08-26 stsp if (send_all_tags) {
8033 f8a36e22 2021-08-26 stsp error = got_ref_list(&all_tags, repo, "refs/tags",
8034 f8a36e22 2021-08-26 stsp got_ref_cmp_by_name, NULL);
8035 f8a36e22 2021-08-26 stsp if (error)
8036 f8a36e22 2021-08-26 stsp goto done;
8037 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(re, &all_tags, entry) {
8038 f8a36e22 2021-08-26 stsp const char *tagname = got_ref_get_name(re->ref);
8039 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&tags,
8040 f8a36e22 2021-08-26 stsp tagname, NULL);
8041 f8a36e22 2021-08-26 stsp if (error)
8042 f8a36e22 2021-08-26 stsp goto done;
8043 f8a36e22 2021-08-26 stsp ntags++;
8044 f8a36e22 2021-08-26 stsp }
8045 f8a36e22 2021-08-26 stsp }
8046 f8a36e22 2021-08-26 stsp
8047 f8a36e22 2021-08-26 stsp /*
8048 f8a36e22 2021-08-26 stsp * To prevent accidents only branches in refs/heads/ can be deleted
8049 f8a36e22 2021-08-26 stsp * with 'got send -d'.
8050 f8a36e22 2021-08-26 stsp * Deleting anything else requires local repository access or Git.
8051 f8a36e22 2021-08-26 stsp */
8052 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, &delete_args, entry) {
8053 f8a36e22 2021-08-26 stsp const char *branchname = pe->path;
8054 f8a36e22 2021-08-26 stsp char *s;
8055 f8a36e22 2021-08-26 stsp struct got_pathlist_entry *new;
8056 f8a36e22 2021-08-26 stsp if (strncmp(branchname, "refs/heads/", 11) == 0) {
8057 f8a36e22 2021-08-26 stsp s = strdup(branchname);
8058 f8a36e22 2021-08-26 stsp if (s == NULL) {
8059 f8a36e22 2021-08-26 stsp error = got_error_from_errno("strdup");
8060 f8a36e22 2021-08-26 stsp goto done;
8061 f8a36e22 2021-08-26 stsp }
8062 f8a36e22 2021-08-26 stsp } else {
8063 f8a36e22 2021-08-26 stsp if (asprintf(&s, "refs/heads/%s", branchname) == -1) {
8064 f8a36e22 2021-08-26 stsp error = got_error_from_errno("asprintf");
8065 f8a36e22 2021-08-26 stsp goto done;
8066 f8a36e22 2021-08-26 stsp }
8067 f8a36e22 2021-08-26 stsp }
8068 f8a36e22 2021-08-26 stsp error = got_pathlist_insert(&new, &delete_branches, s, NULL);
8069 f8a36e22 2021-08-26 stsp if (error || new == NULL /* duplicate */)
8070 f8a36e22 2021-08-26 stsp free(s);
8071 f8a36e22 2021-08-26 stsp if (error)
8072 f8a36e22 2021-08-26 stsp goto done;
8073 f8a36e22 2021-08-26 stsp ndelete_branches++;
8074 f8a36e22 2021-08-26 stsp }
8075 f8a36e22 2021-08-26 stsp
8076 f8a36e22 2021-08-26 stsp if (nbranches == 0 && ndelete_branches == 0) {
8077 f8a36e22 2021-08-26 stsp struct got_reference *head_ref;
8078 f8a36e22 2021-08-26 stsp if (worktree)
8079 f8a36e22 2021-08-26 stsp error = got_ref_open(&head_ref, repo,
8080 f8a36e22 2021-08-26 stsp got_worktree_get_head_ref_name(worktree), 0);
8081 f8a36e22 2021-08-26 stsp else
8082 f8a36e22 2021-08-26 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
8083 f8a36e22 2021-08-26 stsp if (error)
8084 f8a36e22 2021-08-26 stsp goto done;
8085 f8a36e22 2021-08-26 stsp if (got_ref_is_symbolic(head_ref)) {
8086 f8a36e22 2021-08-26 stsp error = got_ref_resolve_symbolic(&ref, repo, head_ref);
8087 f8a36e22 2021-08-26 stsp got_ref_close(head_ref);
8088 f8a36e22 2021-08-26 stsp if (error)
8089 f8a36e22 2021-08-26 stsp goto done;
8090 f8a36e22 2021-08-26 stsp } else
8091 f8a36e22 2021-08-26 stsp ref = head_ref;
8092 f8a36e22 2021-08-26 stsp error = got_pathlist_append(&branches, got_ref_get_name(ref),
8093 abc59930 2021-09-05 naddy NULL);
8094 f8a36e22 2021-08-26 stsp if (error)
8095 f8a36e22 2021-08-26 stsp goto done;
8096 f8a36e22 2021-08-26 stsp nbranches++;
8097 f8a36e22 2021-08-26 stsp }
8098 f8a36e22 2021-08-26 stsp
8099 f8a36e22 2021-08-26 stsp if (verbosity >= 0)
8100 f8a36e22 2021-08-26 stsp printf("Connecting to \"%s\" %s%s%s\n", remote->name, host,
8101 f8a36e22 2021-08-26 stsp port ? ":" : "", port ? port : "");
8102 f8a36e22 2021-08-26 stsp
8103 f8a36e22 2021-08-26 stsp error = got_send_connect(&sendpid, &sendfd, proto, host, port,
8104 f8a36e22 2021-08-26 stsp server_path, verbosity);
8105 f8a36e22 2021-08-26 stsp if (error)
8106 f8a36e22 2021-08-26 stsp goto done;
8107 f8a36e22 2021-08-26 stsp
8108 f8a36e22 2021-08-26 stsp memset(&spa, 0, sizeof(spa));
8109 f8a36e22 2021-08-26 stsp spa.last_scaled_packsize[0] = '\0';
8110 f8a36e22 2021-08-26 stsp spa.last_p_deltify = -1;
8111 f8a36e22 2021-08-26 stsp spa.last_p_written = -1;
8112 f8a36e22 2021-08-26 stsp spa.verbosity = verbosity;
8113 f8a36e22 2021-08-26 stsp spa.delete_branches = &delete_branches;
8114 f8a36e22 2021-08-26 stsp error = got_send_pack(remote_name, &branches, &tags, &delete_branches,
8115 f8a36e22 2021-08-26 stsp verbosity, overwrite_refs, sendfd, repo, send_progress, &spa,
8116 f8a36e22 2021-08-26 stsp check_cancelled, NULL);
8117 f8a36e22 2021-08-26 stsp if (spa.printed_something)
8118 f8a36e22 2021-08-26 stsp putchar('\n');
8119 f8a36e22 2021-08-26 stsp if (error)
8120 f8a36e22 2021-08-26 stsp goto done;
8121 f8a36e22 2021-08-26 stsp if (!spa.sent_something && verbosity >= 0)
8122 f8a36e22 2021-08-26 stsp printf("Already up-to-date\n");
8123 f8a36e22 2021-08-26 stsp done:
8124 f8a36e22 2021-08-26 stsp if (sendpid > 0) {
8125 f8a36e22 2021-08-26 stsp if (kill(sendpid, SIGTERM) == -1)
8126 f8a36e22 2021-08-26 stsp error = got_error_from_errno("kill");
8127 f8a36e22 2021-08-26 stsp if (waitpid(sendpid, &sendstatus, 0) == -1 && error == NULL)
8128 f8a36e22 2021-08-26 stsp error = got_error_from_errno("waitpid");
8129 f8a36e22 2021-08-26 stsp }
8130 f8a36e22 2021-08-26 stsp if (sendfd != -1 && close(sendfd) == -1 && error == NULL)
8131 f8a36e22 2021-08-26 stsp error = got_error_from_errno("close");
8132 f8a36e22 2021-08-26 stsp if (repo) {
8133 f8a36e22 2021-08-26 stsp const struct got_error *close_err = got_repo_close(repo);
8134 f8a36e22 2021-08-26 stsp if (error == NULL)
8135 f8a36e22 2021-08-26 stsp error = close_err;
8136 f8a36e22 2021-08-26 stsp }
8137 f8a36e22 2021-08-26 stsp if (worktree)
8138 f8a36e22 2021-08-26 stsp got_worktree_close(worktree);
8139 f8a36e22 2021-08-26 stsp if (ref)
8140 f8a36e22 2021-08-26 stsp got_ref_close(ref);
8141 f8a36e22 2021-08-26 stsp got_pathlist_free(&branches);
8142 f8a36e22 2021-08-26 stsp got_pathlist_free(&tags);
8143 f8a36e22 2021-08-26 stsp got_ref_list_free(&all_branches);
8144 f8a36e22 2021-08-26 stsp got_ref_list_free(&all_tags);
8145 f8a36e22 2021-08-26 stsp got_pathlist_free(&delete_args);
8146 f8a36e22 2021-08-26 stsp TAILQ_FOREACH(pe, &delete_branches, entry)
8147 f8a36e22 2021-08-26 stsp free((char *)pe->path);
8148 f8a36e22 2021-08-26 stsp got_pathlist_free(&delete_branches);
8149 f8a36e22 2021-08-26 stsp free(cwd);
8150 f8a36e22 2021-08-26 stsp free(repo_path);
8151 f8a36e22 2021-08-26 stsp free(proto);
8152 f8a36e22 2021-08-26 stsp free(host);
8153 f8a36e22 2021-08-26 stsp free(port);
8154 f8a36e22 2021-08-26 stsp free(server_path);
8155 f8a36e22 2021-08-26 stsp free(repo_name);
8156 234035bc 2019-06-01 stsp return error;
8157 234035bc 2019-06-01 stsp }
8158 234035bc 2019-06-01 stsp
8159 234035bc 2019-06-01 stsp __dead static void
8160 234035bc 2019-06-01 stsp usage_cherrypick(void)
8161 234035bc 2019-06-01 stsp {
8162 234035bc 2019-06-01 stsp fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
8163 234035bc 2019-06-01 stsp exit(1);
8164 234035bc 2019-06-01 stsp }
8165 234035bc 2019-06-01 stsp
8166 234035bc 2019-06-01 stsp static const struct got_error *
8167 234035bc 2019-06-01 stsp cmd_cherrypick(int argc, char *argv[])
8168 234035bc 2019-06-01 stsp {
8169 234035bc 2019-06-01 stsp const struct got_error *error = NULL;
8170 234035bc 2019-06-01 stsp struct got_worktree *worktree = NULL;
8171 234035bc 2019-06-01 stsp struct got_repository *repo = NULL;
8172 234035bc 2019-06-01 stsp char *cwd = NULL, *commit_id_str = NULL;
8173 234035bc 2019-06-01 stsp struct got_object_id *commit_id = NULL;
8174 234035bc 2019-06-01 stsp struct got_commit_object *commit = NULL;
8175 234035bc 2019-06-01 stsp struct got_object_qid *pid;
8176 9627c110 2020-04-18 stsp int ch;
8177 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
8178 234035bc 2019-06-01 stsp
8179 234035bc 2019-06-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
8180 234035bc 2019-06-01 stsp switch (ch) {
8181 234035bc 2019-06-01 stsp default:
8182 234035bc 2019-06-01 stsp usage_cherrypick();
8183 234035bc 2019-06-01 stsp /* NOTREACHED */
8184 234035bc 2019-06-01 stsp }
8185 234035bc 2019-06-01 stsp }
8186 234035bc 2019-06-01 stsp
8187 234035bc 2019-06-01 stsp argc -= optind;
8188 234035bc 2019-06-01 stsp argv += optind;
8189 234035bc 2019-06-01 stsp
8190 43012d58 2019-07-14 stsp #ifndef PROFILE
8191 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8192 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
8193 43012d58 2019-07-14 stsp err(1, "pledge");
8194 43012d58 2019-07-14 stsp #endif
8195 234035bc 2019-06-01 stsp if (argc != 1)
8196 234035bc 2019-06-01 stsp usage_cherrypick();
8197 234035bc 2019-06-01 stsp
8198 234035bc 2019-06-01 stsp cwd = getcwd(NULL, 0);
8199 234035bc 2019-06-01 stsp if (cwd == NULL) {
8200 234035bc 2019-06-01 stsp error = got_error_from_errno("getcwd");
8201 234035bc 2019-06-01 stsp goto done;
8202 234035bc 2019-06-01 stsp }
8203 234035bc 2019-06-01 stsp error = got_worktree_open(&worktree, cwd);
8204 fa51e947 2020-03-27 stsp if (error) {
8205 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
8206 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "cherrypick",
8207 fa51e947 2020-03-27 stsp cwd);
8208 234035bc 2019-06-01 stsp goto done;
8209 fa51e947 2020-03-27 stsp }
8210 234035bc 2019-06-01 stsp
8211 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8212 c9956ddf 2019-09-08 stsp NULL);
8213 234035bc 2019-06-01 stsp if (error != NULL)
8214 234035bc 2019-06-01 stsp goto done;
8215 234035bc 2019-06-01 stsp
8216 234035bc 2019-06-01 stsp error = apply_unveil(got_repo_get_path(repo), 0,
8217 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
8218 234035bc 2019-06-01 stsp if (error)
8219 234035bc 2019-06-01 stsp goto done;
8220 234035bc 2019-06-01 stsp
8221 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
8222 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
8223 234035bc 2019-06-01 stsp if (error != NULL) {
8224 234035bc 2019-06-01 stsp struct got_reference *ref;
8225 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
8226 234035bc 2019-06-01 stsp goto done;
8227 234035bc 2019-06-01 stsp error = got_ref_open(&ref, repo, argv[0], 0);
8228 234035bc 2019-06-01 stsp if (error != NULL)
8229 234035bc 2019-06-01 stsp goto done;
8230 234035bc 2019-06-01 stsp error = got_ref_resolve(&commit_id, repo, ref);
8231 234035bc 2019-06-01 stsp got_ref_close(ref);
8232 234035bc 2019-06-01 stsp if (error != NULL)
8233 234035bc 2019-06-01 stsp goto done;
8234 234035bc 2019-06-01 stsp }
8235 234035bc 2019-06-01 stsp error = got_object_id_str(&commit_id_str, commit_id);
8236 234035bc 2019-06-01 stsp if (error)
8237 234035bc 2019-06-01 stsp goto done;
8238 234035bc 2019-06-01 stsp
8239 234035bc 2019-06-01 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8240 234035bc 2019-06-01 stsp if (error)
8241 234035bc 2019-06-01 stsp goto done;
8242 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
8243 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
8244 03415a1a 2019-06-02 stsp error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
8245 9627c110 2020-04-18 stsp commit_id, repo, update_progress, &upa, check_cancelled,
8246 03415a1a 2019-06-02 stsp NULL);
8247 234035bc 2019-06-01 stsp if (error != NULL)
8248 234035bc 2019-06-01 stsp goto done;
8249 234035bc 2019-06-01 stsp
8250 9627c110 2020-04-18 stsp if (upa.did_something)
8251 a7648d7a 2019-06-02 stsp printf("Merged commit %s\n", commit_id_str);
8252 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
8253 234035bc 2019-06-01 stsp done:
8254 234035bc 2019-06-01 stsp if (commit)
8255 234035bc 2019-06-01 stsp got_object_commit_close(commit);
8256 234035bc 2019-06-01 stsp free(commit_id_str);
8257 234035bc 2019-06-01 stsp if (worktree)
8258 234035bc 2019-06-01 stsp got_worktree_close(worktree);
8259 1d0f4054 2021-06-17 stsp if (repo) {
8260 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8261 1d0f4054 2021-06-17 stsp if (error == NULL)
8262 1d0f4054 2021-06-17 stsp error = close_err;
8263 1d0f4054 2021-06-17 stsp }
8264 c4296144 2019-05-09 stsp return error;
8265 c4296144 2019-05-09 stsp }
8266 5ef14e63 2019-06-02 stsp
8267 5ef14e63 2019-06-02 stsp __dead static void
8268 5ef14e63 2019-06-02 stsp usage_backout(void)
8269 5ef14e63 2019-06-02 stsp {
8270 5ef14e63 2019-06-02 stsp fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
8271 5ef14e63 2019-06-02 stsp exit(1);
8272 5ef14e63 2019-06-02 stsp }
8273 5ef14e63 2019-06-02 stsp
8274 5ef14e63 2019-06-02 stsp static const struct got_error *
8275 5ef14e63 2019-06-02 stsp cmd_backout(int argc, char *argv[])
8276 5ef14e63 2019-06-02 stsp {
8277 5ef14e63 2019-06-02 stsp const struct got_error *error = NULL;
8278 5ef14e63 2019-06-02 stsp struct got_worktree *worktree = NULL;
8279 5ef14e63 2019-06-02 stsp struct got_repository *repo = NULL;
8280 5ef14e63 2019-06-02 stsp char *cwd = NULL, *commit_id_str = NULL;
8281 5ef14e63 2019-06-02 stsp struct got_object_id *commit_id = NULL;
8282 5ef14e63 2019-06-02 stsp struct got_commit_object *commit = NULL;
8283 5ef14e63 2019-06-02 stsp struct got_object_qid *pid;
8284 9627c110 2020-04-18 stsp int ch;
8285 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
8286 5ef14e63 2019-06-02 stsp
8287 5ef14e63 2019-06-02 stsp while ((ch = getopt(argc, argv, "")) != -1) {
8288 5ef14e63 2019-06-02 stsp switch (ch) {
8289 5ef14e63 2019-06-02 stsp default:
8290 5ef14e63 2019-06-02 stsp usage_backout();
8291 5ef14e63 2019-06-02 stsp /* NOTREACHED */
8292 5ef14e63 2019-06-02 stsp }
8293 5ef14e63 2019-06-02 stsp }
8294 5ef14e63 2019-06-02 stsp
8295 5ef14e63 2019-06-02 stsp argc -= optind;
8296 5ef14e63 2019-06-02 stsp argv += optind;
8297 5ef14e63 2019-06-02 stsp
8298 43012d58 2019-07-14 stsp #ifndef PROFILE
8299 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8300 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
8301 43012d58 2019-07-14 stsp err(1, "pledge");
8302 43012d58 2019-07-14 stsp #endif
8303 5ef14e63 2019-06-02 stsp if (argc != 1)
8304 5ef14e63 2019-06-02 stsp usage_backout();
8305 5ef14e63 2019-06-02 stsp
8306 5ef14e63 2019-06-02 stsp cwd = getcwd(NULL, 0);
8307 5ef14e63 2019-06-02 stsp if (cwd == NULL) {
8308 5ef14e63 2019-06-02 stsp error = got_error_from_errno("getcwd");
8309 5ef14e63 2019-06-02 stsp goto done;
8310 5ef14e63 2019-06-02 stsp }
8311 5ef14e63 2019-06-02 stsp error = got_worktree_open(&worktree, cwd);
8312 fa51e947 2020-03-27 stsp if (error) {
8313 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
8314 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "backout", cwd);
8315 5ef14e63 2019-06-02 stsp goto done;
8316 fa51e947 2020-03-27 stsp }
8317 5ef14e63 2019-06-02 stsp
8318 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
8319 c9956ddf 2019-09-08 stsp NULL);
8320 5ef14e63 2019-06-02 stsp if (error != NULL)
8321 5ef14e63 2019-06-02 stsp goto done;
8322 5ef14e63 2019-06-02 stsp
8323 5ef14e63 2019-06-02 stsp error = apply_unveil(got_repo_get_path(repo), 0,
8324 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
8325 5ef14e63 2019-06-02 stsp if (error)
8326 5ef14e63 2019-06-02 stsp goto done;
8327 5ef14e63 2019-06-02 stsp
8328 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
8329 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
8330 5ef14e63 2019-06-02 stsp if (error != NULL) {
8331 5ef14e63 2019-06-02 stsp struct got_reference *ref;
8332 5ef14e63 2019-06-02 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
8333 5ef14e63 2019-06-02 stsp goto done;
8334 5ef14e63 2019-06-02 stsp error = got_ref_open(&ref, repo, argv[0], 0);
8335 5ef14e63 2019-06-02 stsp if (error != NULL)
8336 5ef14e63 2019-06-02 stsp goto done;
8337 5ef14e63 2019-06-02 stsp error = got_ref_resolve(&commit_id, repo, ref);
8338 5ef14e63 2019-06-02 stsp got_ref_close(ref);
8339 5ef14e63 2019-06-02 stsp if (error != NULL)
8340 5ef14e63 2019-06-02 stsp goto done;
8341 5ef14e63 2019-06-02 stsp }
8342 5ef14e63 2019-06-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
8343 5ef14e63 2019-06-02 stsp if (error)
8344 5ef14e63 2019-06-02 stsp goto done;
8345 5ef14e63 2019-06-02 stsp
8346 5ef14e63 2019-06-02 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8347 5ef14e63 2019-06-02 stsp if (error)
8348 5ef14e63 2019-06-02 stsp goto done;
8349 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(got_object_commit_get_parent_ids(commit));
8350 5ef14e63 2019-06-02 stsp if (pid == NULL) {
8351 5ef14e63 2019-06-02 stsp error = got_error(GOT_ERR_ROOT_COMMIT);
8352 5ef14e63 2019-06-02 stsp goto done;
8353 5ef14e63 2019-06-02 stsp }
8354 5ef14e63 2019-06-02 stsp
8355 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
8356 f259c4c1 2021-09-24 stsp error = got_worktree_merge_files(worktree, commit_id, pid->id,
8357 f259c4c1 2021-09-24 stsp repo, update_progress, &upa, check_cancelled, NULL);
8358 5ef14e63 2019-06-02 stsp if (error != NULL)
8359 5ef14e63 2019-06-02 stsp goto done;
8360 5ef14e63 2019-06-02 stsp
8361 9627c110 2020-04-18 stsp if (upa.did_something)
8362 a7648d7a 2019-06-02 stsp printf("Backed out commit %s\n", commit_id_str);
8363 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
8364 5ef14e63 2019-06-02 stsp done:
8365 5ef14e63 2019-06-02 stsp if (commit)
8366 5ef14e63 2019-06-02 stsp got_object_commit_close(commit);
8367 5ef14e63 2019-06-02 stsp free(commit_id_str);
8368 818c7501 2019-07-11 stsp if (worktree)
8369 818c7501 2019-07-11 stsp got_worktree_close(worktree);
8370 1d0f4054 2021-06-17 stsp if (repo) {
8371 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
8372 1d0f4054 2021-06-17 stsp if (error == NULL)
8373 1d0f4054 2021-06-17 stsp error = close_err;
8374 1d0f4054 2021-06-17 stsp }
8375 818c7501 2019-07-11 stsp return error;
8376 818c7501 2019-07-11 stsp }
8377 818c7501 2019-07-11 stsp
8378 818c7501 2019-07-11 stsp __dead static void
8379 818c7501 2019-07-11 stsp usage_rebase(void)
8380 818c7501 2019-07-11 stsp {
8381 643b85bc 2021-07-16 stsp fprintf(stderr, "usage: %s rebase [-a] [-c] [-l] [-X] [branch]\n",
8382 af54c8f8 2019-07-11 stsp getprogname());
8383 818c7501 2019-07-11 stsp exit(1);
8384 0ebf8283 2019-07-24 stsp }
8385 0ebf8283 2019-07-24 stsp
8386 0ebf8283 2019-07-24 stsp void
8387 0ebf8283 2019-07-24 stsp trim_logmsg(char *logmsg, int limit)
8388 0ebf8283 2019-07-24 stsp {
8389 0ebf8283 2019-07-24 stsp char *nl;
8390 0ebf8283 2019-07-24 stsp size_t len;
8391 0ebf8283 2019-07-24 stsp
8392 0ebf8283 2019-07-24 stsp len = strlen(logmsg);
8393 0ebf8283 2019-07-24 stsp if (len > limit)
8394 0ebf8283 2019-07-24 stsp len = limit;
8395 0ebf8283 2019-07-24 stsp logmsg[len] = '\0';
8396 0ebf8283 2019-07-24 stsp nl = strchr(logmsg, '\n');
8397 0ebf8283 2019-07-24 stsp if (nl)
8398 0ebf8283 2019-07-24 stsp *nl = '\0';
8399 0ebf8283 2019-07-24 stsp }
8400 0ebf8283 2019-07-24 stsp
8401 0ebf8283 2019-07-24 stsp static const struct got_error *
8402 0ebf8283 2019-07-24 stsp get_short_logmsg(char **logmsg, int limit, struct got_commit_object *commit)
8403 0ebf8283 2019-07-24 stsp {
8404 5943eee2 2019-08-13 stsp const struct got_error *err;
8405 5943eee2 2019-08-13 stsp char *logmsg0 = NULL;
8406 5943eee2 2019-08-13 stsp const char *s;
8407 0ebf8283 2019-07-24 stsp
8408 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
8409 5943eee2 2019-08-13 stsp if (err)
8410 5943eee2 2019-08-13 stsp return err;
8411 0ebf8283 2019-07-24 stsp
8412 5943eee2 2019-08-13 stsp s = logmsg0;
8413 5943eee2 2019-08-13 stsp while (isspace((unsigned char)s[0]))
8414 5943eee2 2019-08-13 stsp s++;
8415 5943eee2 2019-08-13 stsp
8416 5943eee2 2019-08-13 stsp *logmsg = strdup(s);
8417 5943eee2 2019-08-13 stsp if (*logmsg == NULL) {
8418 5943eee2 2019-08-13 stsp err = got_error_from_errno("strdup");
8419 5943eee2 2019-08-13 stsp goto done;
8420 5943eee2 2019-08-13 stsp }
8421 0ebf8283 2019-07-24 stsp
8422 0ebf8283 2019-07-24 stsp trim_logmsg(*logmsg, limit);
8423 5943eee2 2019-08-13 stsp done:
8424 5943eee2 2019-08-13 stsp free(logmsg0);
8425 a0ea4fc0 2020-02-28 stsp return err;
8426 a0ea4fc0 2020-02-28 stsp }
8427 a0ea4fc0 2020-02-28 stsp
8428 a0ea4fc0 2020-02-28 stsp static const struct got_error *
8429 a0ea4fc0 2020-02-28 stsp show_rebase_merge_conflict(struct got_object_id *id, struct got_repository *repo)
8430 a0ea4fc0 2020-02-28 stsp {
8431 a0ea4fc0 2020-02-28 stsp const struct got_error *err;
8432 a0ea4fc0 2020-02-28 stsp struct got_commit_object *commit = NULL;
8433 a0ea4fc0 2020-02-28 stsp char *id_str = NULL, *logmsg = NULL;
8434 a0ea4fc0 2020-02-28 stsp
8435 a0ea4fc0 2020-02-28 stsp err = got_object_open_as_commit(&commit, repo, id);
8436 a0ea4fc0 2020-02-28 stsp if (err)
8437 a0ea4fc0 2020-02-28 stsp return err;
8438 a0ea4fc0 2020-02-28 stsp
8439 a0ea4fc0 2020-02-28 stsp err = got_object_id_str(&id_str, id);
8440 a0ea4fc0 2020-02-28 stsp if (err)
8441 a0ea4fc0 2020-02-28 stsp goto done;
8442 a0ea4fc0 2020-02-28 stsp
8443 a0ea4fc0 2020-02-28 stsp id_str[12] = '\0';
8444 a0ea4fc0 2020-02-28 stsp
8445 a0ea4fc0 2020-02-28 stsp err = get_short_logmsg(&logmsg, 42, commit);
8446 a0ea4fc0 2020-02-28 stsp if (err)
8447 a0ea4fc0 2020-02-28 stsp goto done;
8448 a0ea4fc0 2020-02-28 stsp
8449 a0ea4fc0 2020-02-28 stsp printf("%s -> merge conflict: %s\n", id_str, logmsg);
8450 a0ea4fc0 2020-02-28 stsp done:
8451 a0ea4fc0 2020-02-28 stsp free(id_str);
8452 a0ea4fc0 2020-02-28 stsp got_object_commit_close(commit);
8453 a0ea4fc0 2020-02-28 stsp free(logmsg);
8454 5943eee2 2019-08-13 stsp return err;
8455 818c7501 2019-07-11 stsp }
8456 818c7501 2019-07-11 stsp
8457 818c7501 2019-07-11 stsp static const struct got_error *
8458 818c7501 2019-07-11 stsp show_rebase_progress(struct got_commit_object *commit,
8459 818c7501 2019-07-11 stsp struct got_object_id *old_id, struct got_object_id *new_id)
8460 818c7501 2019-07-11 stsp {
8461 818c7501 2019-07-11 stsp const struct got_error *err;
8462 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
8463 818c7501 2019-07-11 stsp
8464 818c7501 2019-07-11 stsp err = got_object_id_str(&old_id_str, old_id);
8465 818c7501 2019-07-11 stsp if (err)
8466 818c7501 2019-07-11 stsp goto done;
8467 818c7501 2019-07-11 stsp
8468 ff0d2220 2019-07-11 stsp if (new_id) {
8469 ff0d2220 2019-07-11 stsp err = got_object_id_str(&new_id_str, new_id);
8470 ff0d2220 2019-07-11 stsp if (err)
8471 ff0d2220 2019-07-11 stsp goto done;
8472 ff0d2220 2019-07-11 stsp }
8473 818c7501 2019-07-11 stsp
8474 818c7501 2019-07-11 stsp old_id_str[12] = '\0';
8475 ff0d2220 2019-07-11 stsp if (new_id_str)
8476 ff0d2220 2019-07-11 stsp new_id_str[12] = '\0';
8477 0ebf8283 2019-07-24 stsp
8478 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
8479 0ebf8283 2019-07-24 stsp if (err)
8480 0ebf8283 2019-07-24 stsp goto done;
8481 0ebf8283 2019-07-24 stsp
8482 ff0d2220 2019-07-11 stsp printf("%s -> %s: %s\n", old_id_str,
8483 ff0d2220 2019-07-11 stsp new_id_str ? new_id_str : "no-op change", logmsg);
8484 818c7501 2019-07-11 stsp done:
8485 818c7501 2019-07-11 stsp free(old_id_str);
8486 818c7501 2019-07-11 stsp free(new_id_str);
8487 272a1371 2020-02-28 stsp free(logmsg);
8488 818c7501 2019-07-11 stsp return err;
8489 818c7501 2019-07-11 stsp }
8490 818c7501 2019-07-11 stsp
8491 1ee397ad 2019-07-12 stsp static const struct got_error *
8492 3e3a69f1 2019-07-25 stsp rebase_complete(struct got_worktree *worktree, struct got_fileindex *fileindex,
8493 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_reference *new_base_branch,
8494 e600f124 2021-03-21 stsp struct got_reference *tmp_branch, struct got_repository *repo,
8495 e600f124 2021-03-21 stsp int create_backup)
8496 818c7501 2019-07-11 stsp {
8497 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n", got_ref_get_name(branch));
8498 3e3a69f1 2019-07-25 stsp return got_worktree_rebase_complete(worktree, fileindex,
8499 e600f124 2021-03-21 stsp new_base_branch, tmp_branch, branch, repo, create_backup);
8500 818c7501 2019-07-11 stsp }
8501 818c7501 2019-07-11 stsp
8502 818c7501 2019-07-11 stsp static const struct got_error *
8503 01757395 2019-07-12 stsp rebase_commit(struct got_pathlist_head *merged_paths,
8504 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
8505 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch,
8506 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
8507 ff0d2220 2019-07-11 stsp {
8508 ff0d2220 2019-07-11 stsp const struct got_error *error;
8509 ff0d2220 2019-07-11 stsp struct got_commit_object *commit;
8510 ff0d2220 2019-07-11 stsp struct got_object_id *new_commit_id;
8511 ff0d2220 2019-07-11 stsp
8512 ff0d2220 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
8513 ff0d2220 2019-07-11 stsp if (error)
8514 ff0d2220 2019-07-11 stsp return error;
8515 ff0d2220 2019-07-11 stsp
8516 01757395 2019-07-12 stsp error = got_worktree_rebase_commit(&new_commit_id, merged_paths,
8517 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, commit_id, repo);
8518 ff0d2220 2019-07-11 stsp if (error) {
8519 ff0d2220 2019-07-11 stsp if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
8520 ff0d2220 2019-07-11 stsp goto done;
8521 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, NULL);
8522 ff0d2220 2019-07-11 stsp } else {
8523 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, new_commit_id);
8524 ff0d2220 2019-07-11 stsp free(new_commit_id);
8525 ff0d2220 2019-07-11 stsp }
8526 ff0d2220 2019-07-11 stsp done:
8527 ff0d2220 2019-07-11 stsp got_object_commit_close(commit);
8528 ff0d2220 2019-07-11 stsp return error;
8529 64c6d990 2019-07-11 stsp }
8530 64c6d990 2019-07-11 stsp
8531 64c6d990 2019-07-11 stsp struct check_path_prefix_arg {
8532 64c6d990 2019-07-11 stsp const char *path_prefix;
8533 64c6d990 2019-07-11 stsp size_t len;
8534 8ca9bd68 2019-07-25 stsp int errcode;
8535 64c6d990 2019-07-11 stsp };
8536 64c6d990 2019-07-11 stsp
8537 64c6d990 2019-07-11 stsp static const struct got_error *
8538 8ca9bd68 2019-07-25 stsp check_path_prefix_in_diff(void *arg, struct got_blob_object *blob1,
8539 64c6d990 2019-07-11 stsp struct got_blob_object *blob2, struct got_object_id *id1,
8540 64c6d990 2019-07-11 stsp struct got_object_id *id2, const char *path1, const char *path2,
8541 46f68b20 2019-10-19 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
8542 64c6d990 2019-07-11 stsp {
8543 64c6d990 2019-07-11 stsp struct check_path_prefix_arg *a = arg;
8544 64c6d990 2019-07-11 stsp
8545 64c6d990 2019-07-11 stsp if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
8546 64c6d990 2019-07-11 stsp (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
8547 8ca9bd68 2019-07-25 stsp return got_error(a->errcode);
8548 64c6d990 2019-07-11 stsp
8549 64c6d990 2019-07-11 stsp return NULL;
8550 64c6d990 2019-07-11 stsp }
8551 64c6d990 2019-07-11 stsp
8552 64c6d990 2019-07-11 stsp static const struct got_error *
8553 8ca9bd68 2019-07-25 stsp check_path_prefix(struct got_object_id *parent_id,
8554 64c6d990 2019-07-11 stsp struct got_object_id *commit_id, const char *path_prefix,
8555 8ca9bd68 2019-07-25 stsp int errcode, struct got_repository *repo)
8556 64c6d990 2019-07-11 stsp {
8557 64c6d990 2019-07-11 stsp const struct got_error *err;
8558 64c6d990 2019-07-11 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
8559 64c6d990 2019-07-11 stsp struct got_commit_object *commit = NULL, *parent_commit = NULL;
8560 64c6d990 2019-07-11 stsp struct check_path_prefix_arg cpp_arg;
8561 64c6d990 2019-07-11 stsp
8562 64c6d990 2019-07-11 stsp if (got_path_is_root_dir(path_prefix))
8563 64c6d990 2019-07-11 stsp return NULL;
8564 64c6d990 2019-07-11 stsp
8565 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
8566 64c6d990 2019-07-11 stsp if (err)
8567 64c6d990 2019-07-11 stsp goto done;
8568 64c6d990 2019-07-11 stsp
8569 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&parent_commit, repo, parent_id);
8570 64c6d990 2019-07-11 stsp if (err)
8571 64c6d990 2019-07-11 stsp goto done;
8572 64c6d990 2019-07-11 stsp
8573 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree1, repo,
8574 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(parent_commit));
8575 64c6d990 2019-07-11 stsp if (err)
8576 64c6d990 2019-07-11 stsp goto done;
8577 64c6d990 2019-07-11 stsp
8578 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree2, repo,
8579 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(commit));
8580 64c6d990 2019-07-11 stsp if (err)
8581 64c6d990 2019-07-11 stsp goto done;
8582 64c6d990 2019-07-11 stsp
8583 64c6d990 2019-07-11 stsp cpp_arg.path_prefix = path_prefix;
8584 d23ace97 2019-07-25 stsp while (cpp_arg.path_prefix[0] == '/')
8585 d23ace97 2019-07-25 stsp cpp_arg.path_prefix++;
8586 d23ace97 2019-07-25 stsp cpp_arg.len = strlen(cpp_arg.path_prefix);
8587 8ca9bd68 2019-07-25 stsp cpp_arg.errcode = errcode;
8588 8ca9bd68 2019-07-25 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
8589 31b4484f 2019-07-27 stsp check_path_prefix_in_diff, &cpp_arg, 0);
8590 64c6d990 2019-07-11 stsp done:
8591 64c6d990 2019-07-11 stsp if (tree1)
8592 64c6d990 2019-07-11 stsp got_object_tree_close(tree1);
8593 64c6d990 2019-07-11 stsp if (tree2)
8594 64c6d990 2019-07-11 stsp got_object_tree_close(tree2);
8595 64c6d990 2019-07-11 stsp if (commit)
8596 64c6d990 2019-07-11 stsp got_object_commit_close(commit);
8597 64c6d990 2019-07-11 stsp if (parent_commit)
8598 64c6d990 2019-07-11 stsp got_object_commit_close(parent_commit);
8599 64c6d990 2019-07-11 stsp return err;
8600 ff0d2220 2019-07-11 stsp }
8601 ff0d2220 2019-07-11 stsp
8602 ff0d2220 2019-07-11 stsp static const struct got_error *
8603 8ca9bd68 2019-07-25 stsp collect_commits(struct got_object_id_queue *commits,
8604 af61c510 2019-07-19 stsp struct got_object_id *initial_commit_id,
8605 af61c510 2019-07-19 stsp struct got_object_id *iter_start_id, struct got_object_id *iter_stop_id,
8606 8ca9bd68 2019-07-25 stsp const char *path_prefix, int path_prefix_errcode,
8607 8ca9bd68 2019-07-25 stsp struct got_repository *repo)
8608 af61c510 2019-07-19 stsp {
8609 af61c510 2019-07-19 stsp const struct got_error *err = NULL;
8610 af61c510 2019-07-19 stsp struct got_commit_graph *graph = NULL;
8611 af61c510 2019-07-19 stsp struct got_object_id *parent_id = NULL;
8612 af61c510 2019-07-19 stsp struct got_object_qid *qid;
8613 af61c510 2019-07-19 stsp struct got_object_id *commit_id = initial_commit_id;
8614 af61c510 2019-07-19 stsp
8615 3d509237 2020-01-04 stsp err = got_commit_graph_open(&graph, "/", 1);
8616 af61c510 2019-07-19 stsp if (err)
8617 af61c510 2019-07-19 stsp return err;
8618 af61c510 2019-07-19 stsp
8619 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, iter_start_id, repo,
8620 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
8621 af61c510 2019-07-19 stsp if (err)
8622 af61c510 2019-07-19 stsp goto done;
8623 af61c510 2019-07-19 stsp while (got_object_id_cmp(commit_id, iter_stop_id) != 0) {
8624 ee780d5c 2020-01-04 stsp err = got_commit_graph_iter_next(&parent_id, graph, repo,
8625 ee780d5c 2020-01-04 stsp check_cancelled, NULL);
8626 af61c510 2019-07-19 stsp if (err) {
8627 af61c510 2019-07-19 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
8628 af61c510 2019-07-19 stsp err = got_error_msg(GOT_ERR_ANCESTRY,
8629 af61c510 2019-07-19 stsp "ran out of commits to rebase before "
8630 af61c510 2019-07-19 stsp "youngest common ancestor commit has "
8631 af61c510 2019-07-19 stsp "been reached?!?");
8632 ee780d5c 2020-01-04 stsp }
8633 ee780d5c 2020-01-04 stsp goto done;
8634 af61c510 2019-07-19 stsp } else {
8635 8ca9bd68 2019-07-25 stsp err = check_path_prefix(parent_id, commit_id,
8636 8ca9bd68 2019-07-25 stsp path_prefix, path_prefix_errcode, repo);
8637 af61c510 2019-07-19 stsp if (err)
8638 af61c510 2019-07-19 stsp goto done;
8639 af61c510 2019-07-19 stsp
8640 af61c510 2019-07-19 stsp err = got_object_qid_alloc(&qid, commit_id);
8641 af61c510 2019-07-19 stsp if (err)
8642 af61c510 2019-07-19 stsp goto done;
8643 dbdddfee 2021-06-23 naddy STAILQ_INSERT_HEAD(commits, qid, entry);
8644 af61c510 2019-07-19 stsp commit_id = parent_id;
8645 af61c510 2019-07-19 stsp }
8646 af61c510 2019-07-19 stsp }
8647 af61c510 2019-07-19 stsp done:
8648 af61c510 2019-07-19 stsp got_commit_graph_close(graph);
8649 af61c510 2019-07-19 stsp return err;
8650 e600f124 2021-03-21 stsp }
8651 e600f124 2021-03-21 stsp
8652 e600f124 2021-03-21 stsp static const struct got_error *
8653 e600f124 2021-03-21 stsp get_commit_brief_str(char **brief_str, struct got_commit_object *commit)
8654 e600f124 2021-03-21 stsp {
8655 e600f124 2021-03-21 stsp const struct got_error *err = NULL;
8656 e600f124 2021-03-21 stsp time_t committer_time;
8657 e600f124 2021-03-21 stsp struct tm tm;
8658 e600f124 2021-03-21 stsp char datebuf[11]; /* YYYY-MM-DD + NUL */
8659 e600f124 2021-03-21 stsp char *author0 = NULL, *author, *smallerthan;
8660 e600f124 2021-03-21 stsp char *logmsg0 = NULL, *logmsg, *newline;
8661 e600f124 2021-03-21 stsp
8662 e600f124 2021-03-21 stsp committer_time = got_object_commit_get_committer_time(commit);
8663 e385fc42 2021-08-30 stsp if (gmtime_r(&committer_time, &tm) == NULL)
8664 e385fc42 2021-08-30 stsp return got_error_from_errno("gmtime_r");
8665 e3199de8 2021-03-21 stsp if (strftime(datebuf, sizeof(datebuf), "%G-%m-%d", &tm) == 0)
8666 e600f124 2021-03-21 stsp return got_error(GOT_ERR_NO_SPACE);
8667 e600f124 2021-03-21 stsp
8668 e600f124 2021-03-21 stsp author0 = strdup(got_object_commit_get_author(commit));
8669 e600f124 2021-03-21 stsp if (author0 == NULL)
8670 e600f124 2021-03-21 stsp return got_error_from_errno("strdup");
8671 e600f124 2021-03-21 stsp author = author0;
8672 e600f124 2021-03-21 stsp smallerthan = strchr(author, '<');
8673 e600f124 2021-03-21 stsp if (smallerthan && smallerthan[1] != '\0')
8674 e600f124 2021-03-21 stsp author = smallerthan + 1;
8675 e600f124 2021-03-21 stsp author[strcspn(author, "@>")] = '\0';
8676 e600f124 2021-03-21 stsp
8677 e600f124 2021-03-21 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
8678 e600f124 2021-03-21 stsp if (err)
8679 e600f124 2021-03-21 stsp goto done;
8680 e600f124 2021-03-21 stsp logmsg = logmsg0;
8681 e600f124 2021-03-21 stsp while (*logmsg == '\n')
8682 e600f124 2021-03-21 stsp logmsg++;
8683 e600f124 2021-03-21 stsp newline = strchr(logmsg, '\n');
8684 e600f124 2021-03-21 stsp if (newline)
8685 e600f124 2021-03-21 stsp *newline = '\0';
8686 e600f124 2021-03-21 stsp
8687 e600f124 2021-03-21 stsp if (asprintf(brief_str, "%s %s %s",
8688 e600f124 2021-03-21 stsp datebuf, author, logmsg) == -1)
8689 e600f124 2021-03-21 stsp err = got_error_from_errno("asprintf");
8690 e600f124 2021-03-21 stsp done:
8691 e600f124 2021-03-21 stsp free(author0);
8692 e600f124 2021-03-21 stsp free(logmsg0);
8693 643b85bc 2021-07-16 stsp return err;
8694 643b85bc 2021-07-16 stsp }
8695 643b85bc 2021-07-16 stsp
8696 643b85bc 2021-07-16 stsp static const struct got_error *
8697 643b85bc 2021-07-16 stsp delete_backup_ref(struct got_reference *ref, struct got_object_id *id,
8698 643b85bc 2021-07-16 stsp struct got_repository *repo)
8699 643b85bc 2021-07-16 stsp {
8700 643b85bc 2021-07-16 stsp const struct got_error *err;
8701 643b85bc 2021-07-16 stsp char *id_str;
8702 643b85bc 2021-07-16 stsp
8703 643b85bc 2021-07-16 stsp err = got_object_id_str(&id_str, id);
8704 643b85bc 2021-07-16 stsp if (err)
8705 643b85bc 2021-07-16 stsp return err;
8706 643b85bc 2021-07-16 stsp
8707 643b85bc 2021-07-16 stsp err = got_ref_delete(ref, repo);
8708 643b85bc 2021-07-16 stsp if (err)
8709 643b85bc 2021-07-16 stsp goto done;
8710 643b85bc 2021-07-16 stsp
8711 643b85bc 2021-07-16 stsp printf("Deleted %s: %s\n", got_ref_get_name(ref), id_str);
8712 643b85bc 2021-07-16 stsp done:
8713 643b85bc 2021-07-16 stsp free(id_str);
8714 e600f124 2021-03-21 stsp return err;
8715 e600f124 2021-03-21 stsp }
8716 e600f124 2021-03-21 stsp
8717 e600f124 2021-03-21 stsp static const struct got_error *
8718 e600f124 2021-03-21 stsp print_backup_ref(const char *branch_name, const char *new_id_str,
8719 e600f124 2021-03-21 stsp struct got_object_id *old_commit_id, struct got_commit_object *old_commit,
8720 e600f124 2021-03-21 stsp struct got_reflist_object_id_map *refs_idmap,
8721 e600f124 2021-03-21 stsp struct got_repository *repo)
8722 e600f124 2021-03-21 stsp {
8723 e600f124 2021-03-21 stsp const struct got_error *err = NULL;
8724 e600f124 2021-03-21 stsp struct got_reflist_head *refs;
8725 e600f124 2021-03-21 stsp char *refs_str = NULL;
8726 e600f124 2021-03-21 stsp struct got_object_id *new_commit_id = NULL;
8727 e600f124 2021-03-21 stsp struct got_commit_object *new_commit = NULL;
8728 e600f124 2021-03-21 stsp char *new_commit_brief_str = NULL;
8729 e600f124 2021-03-21 stsp struct got_object_id *yca_id = NULL;
8730 e600f124 2021-03-21 stsp struct got_commit_object *yca_commit = NULL;
8731 e600f124 2021-03-21 stsp char *yca_id_str = NULL, *yca_brief_str = NULL;
8732 e600f124 2021-03-21 stsp char *custom_refs_str;
8733 e600f124 2021-03-21 stsp
8734 e600f124 2021-03-21 stsp if (asprintf(&custom_refs_str, "formerly %s", branch_name) == -1)
8735 e600f124 2021-03-21 stsp return got_error_from_errno("asprintf");
8736 e600f124 2021-03-21 stsp
8737 e600f124 2021-03-21 stsp err = print_commit(old_commit, old_commit_id, repo, NULL, NULL,
8738 e600f124 2021-03-21 stsp 0, 0, refs_idmap, custom_refs_str);
8739 e600f124 2021-03-21 stsp if (err)
8740 e600f124 2021-03-21 stsp goto done;
8741 e600f124 2021-03-21 stsp
8742 e600f124 2021-03-21 stsp err = got_object_resolve_id_str(&new_commit_id, repo, new_id_str);
8743 e600f124 2021-03-21 stsp if (err)
8744 e600f124 2021-03-21 stsp goto done;
8745 e600f124 2021-03-21 stsp
8746 e600f124 2021-03-21 stsp refs = got_reflist_object_id_map_lookup(refs_idmap, new_commit_id);
8747 e600f124 2021-03-21 stsp if (refs) {
8748 e600f124 2021-03-21 stsp err = build_refs_str(&refs_str, refs, new_commit_id, repo);
8749 e600f124 2021-03-21 stsp if (err)
8750 e600f124 2021-03-21 stsp goto done;
8751 e600f124 2021-03-21 stsp }
8752 e600f124 2021-03-21 stsp
8753 e600f124 2021-03-21 stsp err = got_object_open_as_commit(&new_commit, repo, new_commit_id);
8754 e600f124 2021-03-21 stsp if (err)
8755 e600f124 2021-03-21 stsp goto done;
8756 e600f124 2021-03-21 stsp
8757 e600f124 2021-03-21 stsp err = get_commit_brief_str(&new_commit_brief_str, new_commit);
8758 e600f124 2021-03-21 stsp if (err)
8759 e600f124 2021-03-21 stsp goto done;
8760 e600f124 2021-03-21 stsp
8761 e600f124 2021-03-21 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
8762 4e91ef15 2021-09-26 stsp old_commit_id, new_commit_id, 1, repo, check_cancelled, NULL);
8763 e600f124 2021-03-21 stsp if (err)
8764 e600f124 2021-03-21 stsp goto done;
8765 e600f124 2021-03-21 stsp
8766 e600f124 2021-03-21 stsp printf("has become commit %s%s%s%s\n %s\n", new_id_str,
8767 e600f124 2021-03-21 stsp refs_str ? " (" : "", refs_str ? refs_str : "",
8768 e600f124 2021-03-21 stsp refs_str ? ")" : "", new_commit_brief_str);
8769 e600f124 2021-03-21 stsp if (yca_id && got_object_id_cmp(yca_id, new_commit_id) != 0 &&
8770 e600f124 2021-03-21 stsp got_object_id_cmp(yca_id, old_commit_id) != 0) {
8771 e600f124 2021-03-21 stsp free(refs_str);
8772 e600f124 2021-03-21 stsp refs_str = NULL;
8773 e600f124 2021-03-21 stsp
8774 e600f124 2021-03-21 stsp err = got_object_open_as_commit(&yca_commit, repo, yca_id);
8775 e600f124 2021-03-21 stsp if (err)
8776 e600f124 2021-03-21 stsp goto done;
8777 e600f124 2021-03-21 stsp
8778 e600f124 2021-03-21 stsp err = get_commit_brief_str(&yca_brief_str, yca_commit);
8779 e600f124 2021-03-21 stsp if (err)
8780 e600f124 2021-03-21 stsp goto done;
8781 e600f124 2021-03-21 stsp
8782 e600f124 2021-03-21 stsp err = got_object_id_str(&yca_id_str, yca_id);
8783 e600f124 2021-03-21 stsp if (err)
8784 e600f124 2021-03-21 stsp goto done;
8785 e600f124 2021-03-21 stsp
8786 e600f124 2021-03-21 stsp refs = got_reflist_object_id_map_lookup(refs_idmap, yca_id);
8787 e600f124 2021-03-21 stsp if (refs) {
8788 e600f124 2021-03-21 stsp err = build_refs_str(&refs_str, refs, yca_id, repo);
8789 e600f124 2021-03-21 stsp if (err)
8790 e600f124 2021-03-21 stsp goto done;
8791 e600f124 2021-03-21 stsp }
8792 e600f124 2021-03-21 stsp printf("history forked at %s%s%s%s\n %s\n",
8793 e600f124 2021-03-21 stsp yca_id_str,
8794 e600f124 2021-03-21 stsp refs_str ? " (" : "", refs_str ? refs_str : "",
8795 e600f124 2021-03-21 stsp refs_str ? ")" : "", yca_brief_str);
8796 e600f124 2021-03-21 stsp }
8797 e600f124 2021-03-21 stsp done:
8798 e600f124 2021-03-21 stsp free(custom_refs_str);
8799 e600f124 2021-03-21 stsp free(new_commit_id);
8800 e600f124 2021-03-21 stsp free(refs_str);
8801 e600f124 2021-03-21 stsp free(yca_id);
8802 e600f124 2021-03-21 stsp free(yca_id_str);
8803 e600f124 2021-03-21 stsp free(yca_brief_str);
8804 e600f124 2021-03-21 stsp if (new_commit)
8805 e600f124 2021-03-21 stsp got_object_commit_close(new_commit);
8806 e600f124 2021-03-21 stsp if (yca_commit)
8807 e600f124 2021-03-21 stsp got_object_commit_close(yca_commit);
8808 e600f124 2021-03-21 stsp
8809 e600f124 2021-03-21 stsp return NULL;
8810 af61c510 2019-07-19 stsp }
8811 af61c510 2019-07-19 stsp
8812 af61c510 2019-07-19 stsp static const struct got_error *
8813 643b85bc 2021-07-16 stsp process_backup_refs(const char *backup_ref_prefix, const char *wanted_branch_name,
8814 643b85bc 2021-07-16 stsp int delete, struct got_repository *repo)
8815 e600f124 2021-03-21 stsp {
8816 e600f124 2021-03-21 stsp const struct got_error *err;
8817 e600f124 2021-03-21 stsp struct got_reflist_head refs, backup_refs;
8818 e600f124 2021-03-21 stsp struct got_reflist_entry *re;
8819 e600f124 2021-03-21 stsp const size_t backup_ref_prefix_len = strlen(backup_ref_prefix);
8820 e600f124 2021-03-21 stsp struct got_object_id *old_commit_id = NULL;
8821 e600f124 2021-03-21 stsp char *branch_name = NULL;
8822 e600f124 2021-03-21 stsp struct got_commit_object *old_commit = NULL;
8823 e600f124 2021-03-21 stsp struct got_reflist_object_id_map *refs_idmap = NULL;
8824 9e822917 2021-03-23 stsp int wanted_branch_found = 0;
8825 e600f124 2021-03-21 stsp
8826 e600f124 2021-03-21 stsp TAILQ_INIT(&refs);
8827 e600f124 2021-03-21 stsp TAILQ_INIT(&backup_refs);
8828 e600f124 2021-03-21 stsp
8829 e600f124 2021-03-21 stsp err = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
8830 e600f124 2021-03-21 stsp if (err)
8831 e600f124 2021-03-21 stsp return err;
8832 e600f124 2021-03-21 stsp
8833 e600f124 2021-03-21 stsp err = got_reflist_object_id_map_create(&refs_idmap, &refs, repo);
8834 e600f124 2021-03-21 stsp if (err)
8835 e600f124 2021-03-21 stsp goto done;
8836 e600f124 2021-03-21 stsp
8837 e600f124 2021-03-21 stsp if (wanted_branch_name) {
8838 e600f124 2021-03-21 stsp if (strncmp(wanted_branch_name, "refs/heads/", 11) == 0)
8839 e600f124 2021-03-21 stsp wanted_branch_name += 11;
8840 e600f124 2021-03-21 stsp }
8841 e600f124 2021-03-21 stsp
8842 e600f124 2021-03-21 stsp err = got_ref_list(&backup_refs, repo, backup_ref_prefix,
8843 e600f124 2021-03-21 stsp got_ref_cmp_by_commit_timestamp_descending, repo);
8844 e600f124 2021-03-21 stsp if (err)
8845 e600f124 2021-03-21 stsp goto done;
8846 e600f124 2021-03-21 stsp
8847 e600f124 2021-03-21 stsp TAILQ_FOREACH(re, &backup_refs, entry) {
8848 e600f124 2021-03-21 stsp const char *refname = got_ref_get_name(re->ref);
8849 e600f124 2021-03-21 stsp char *slash;
8850 e600f124 2021-03-21 stsp
8851 643b85bc 2021-07-16 stsp err = check_cancelled(NULL);
8852 643b85bc 2021-07-16 stsp if (err)
8853 643b85bc 2021-07-16 stsp break;
8854 643b85bc 2021-07-16 stsp
8855 e600f124 2021-03-21 stsp err = got_ref_resolve(&old_commit_id, repo, re->ref);
8856 e600f124 2021-03-21 stsp if (err)
8857 e600f124 2021-03-21 stsp break;
8858 e600f124 2021-03-21 stsp
8859 e600f124 2021-03-21 stsp err = got_object_open_as_commit(&old_commit, repo,
8860 e600f124 2021-03-21 stsp old_commit_id);
8861 e600f124 2021-03-21 stsp if (err)
8862 e600f124 2021-03-21 stsp break;
8863 e600f124 2021-03-21 stsp
8864 e600f124 2021-03-21 stsp if (strncmp(backup_ref_prefix, refname,
8865 e600f124 2021-03-21 stsp backup_ref_prefix_len) == 0)
8866 e600f124 2021-03-21 stsp refname += backup_ref_prefix_len;
8867 e600f124 2021-03-21 stsp
8868 e600f124 2021-03-21 stsp while (refname[0] == '/')
8869 e600f124 2021-03-21 stsp refname++;
8870 e600f124 2021-03-21 stsp
8871 e600f124 2021-03-21 stsp branch_name = strdup(refname);
8872 e600f124 2021-03-21 stsp if (branch_name == NULL) {
8873 e600f124 2021-03-21 stsp err = got_error_from_errno("strdup");
8874 e600f124 2021-03-21 stsp break;
8875 e600f124 2021-03-21 stsp }
8876 e600f124 2021-03-21 stsp slash = strrchr(branch_name, '/');
8877 e600f124 2021-03-21 stsp if (slash) {
8878 e600f124 2021-03-21 stsp *slash = '\0';
8879 e600f124 2021-03-21 stsp refname += strlen(branch_name) + 1;
8880 e600f124 2021-03-21 stsp }
8881 e600f124 2021-03-21 stsp
8882 e600f124 2021-03-21 stsp if (wanted_branch_name == NULL ||
8883 e600f124 2021-03-21 stsp strcmp(wanted_branch_name, branch_name) == 0) {
8884 9e822917 2021-03-23 stsp wanted_branch_found = 1;
8885 643b85bc 2021-07-16 stsp if (delete) {
8886 643b85bc 2021-07-16 stsp err = delete_backup_ref(re->ref,
8887 643b85bc 2021-07-16 stsp old_commit_id, repo);
8888 643b85bc 2021-07-16 stsp } else {
8889 643b85bc 2021-07-16 stsp err = print_backup_ref(branch_name, refname,
8890 abc59930 2021-09-05 naddy old_commit_id, old_commit, refs_idmap,
8891 abc59930 2021-09-05 naddy repo);
8892 643b85bc 2021-07-16 stsp }
8893 e600f124 2021-03-21 stsp if (err)
8894 e600f124 2021-03-21 stsp break;
8895 e600f124 2021-03-21 stsp }
8896 e600f124 2021-03-21 stsp
8897 e600f124 2021-03-21 stsp free(old_commit_id);
8898 e600f124 2021-03-21 stsp old_commit_id = NULL;
8899 e600f124 2021-03-21 stsp free(branch_name);
8900 e600f124 2021-03-21 stsp branch_name = NULL;
8901 e600f124 2021-03-21 stsp got_object_commit_close(old_commit);
8902 e600f124 2021-03-21 stsp old_commit = NULL;
8903 e600f124 2021-03-21 stsp }
8904 9e822917 2021-03-23 stsp
8905 9e822917 2021-03-23 stsp if (wanted_branch_name && !wanted_branch_found) {
8906 9e822917 2021-03-23 stsp err = got_error_fmt(GOT_ERR_NOT_REF,
8907 9e822917 2021-03-23 stsp "%s/%s/", backup_ref_prefix, wanted_branch_name);
8908 9e822917 2021-03-23 stsp }
8909 e600f124 2021-03-21 stsp done:
8910 e600f124 2021-03-21 stsp if (refs_idmap)
8911 e600f124 2021-03-21 stsp got_reflist_object_id_map_free(refs_idmap);
8912 e600f124 2021-03-21 stsp got_ref_list_free(&refs);
8913 e600f124 2021-03-21 stsp got_ref_list_free(&backup_refs);
8914 e600f124 2021-03-21 stsp free(old_commit_id);
8915 e600f124 2021-03-21 stsp free(branch_name);
8916 e600f124 2021-03-21 stsp if (old_commit)
8917 e600f124 2021-03-21 stsp got_object_commit_close(old_commit);
8918 e600f124 2021-03-21 stsp return err;
8919 e600f124 2021-03-21 stsp }
8920 e600f124 2021-03-21 stsp
8921 e600f124 2021-03-21 stsp static const struct got_error *
8922 41f061b2 2021-10-05 stsp abort_progress(void *arg, unsigned char status, const char *path)
8923 41f061b2 2021-10-05 stsp {
8924 41f061b2 2021-10-05 stsp /*
8925 41f061b2 2021-10-05 stsp * Unversioned files should not clutter progress output when
8926 41f061b2 2021-10-05 stsp * an operation is aborted.
8927 41f061b2 2021-10-05 stsp */
8928 41f061b2 2021-10-05 stsp if (status == GOT_STATUS_UNVERSIONED)
8929 41f061b2 2021-10-05 stsp return NULL;
8930 41f061b2 2021-10-05 stsp
8931 41f061b2 2021-10-05 stsp return update_progress(arg, status, path);
8932 41f061b2 2021-10-05 stsp }
8933 41f061b2 2021-10-05 stsp
8934 41f061b2 2021-10-05 stsp static const struct got_error *
8935 818c7501 2019-07-11 stsp cmd_rebase(int argc, char *argv[])
8936 818c7501 2019-07-11 stsp {
8937 818c7501 2019-07-11 stsp const struct got_error *error = NULL;
8938 818c7501 2019-07-11 stsp struct got_worktree *worktree = NULL;
8939 818c7501 2019-07-11 stsp struct got_repository *repo = NULL;
8940 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
8941 818c7501 2019-07-11 stsp char *cwd = NULL;
8942 818c7501 2019-07-11 stsp struct got_reference *branch = NULL;
8943 818c7501 2019-07-11 stsp struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
8944 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL, *parent_id = NULL;
8945 818c7501 2019-07-11 stsp struct got_object_id *resume_commit_id = NULL;
8946 818c7501 2019-07-11 stsp struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
8947 818c7501 2019-07-11 stsp struct got_commit_object *commit = NULL;
8948 818c7501 2019-07-11 stsp int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
8949 f259c4c1 2021-09-24 stsp int histedit_in_progress = 0, merge_in_progress = 0;
8950 f259c4c1 2021-09-24 stsp int create_backup = 1, list_backups = 0, delete_backups = 0;
8951 818c7501 2019-07-11 stsp struct got_object_id_queue commits;
8952 01757395 2019-07-12 stsp struct got_pathlist_head merged_paths;
8953 818c7501 2019-07-11 stsp const struct got_object_id_queue *parent_ids;
8954 818c7501 2019-07-11 stsp struct got_object_qid *qid, *pid;
8955 1fa49072 2021-09-28 stsp struct got_update_progress_arg upa;
8956 818c7501 2019-07-11 stsp
8957 dbdddfee 2021-06-23 naddy STAILQ_INIT(&commits);
8958 01757395 2019-07-12 stsp TAILQ_INIT(&merged_paths);
8959 1fa49072 2021-09-28 stsp memset(&upa, 0, sizeof(upa));
8960 818c7501 2019-07-11 stsp
8961 643b85bc 2021-07-16 stsp while ((ch = getopt(argc, argv, "aclX")) != -1) {
8962 818c7501 2019-07-11 stsp switch (ch) {
8963 818c7501 2019-07-11 stsp case 'a':
8964 818c7501 2019-07-11 stsp abort_rebase = 1;
8965 818c7501 2019-07-11 stsp break;
8966 818c7501 2019-07-11 stsp case 'c':
8967 818c7501 2019-07-11 stsp continue_rebase = 1;
8968 818c7501 2019-07-11 stsp break;
8969 e600f124 2021-03-21 stsp case 'l':
8970 e600f124 2021-03-21 stsp list_backups = 1;
8971 e600f124 2021-03-21 stsp break;
8972 643b85bc 2021-07-16 stsp case 'X':
8973 643b85bc 2021-07-16 stsp delete_backups = 1;
8974 643b85bc 2021-07-16 stsp break;
8975 818c7501 2019-07-11 stsp default:
8976 818c7501 2019-07-11 stsp usage_rebase();
8977 818c7501 2019-07-11 stsp /* NOTREACHED */
8978 818c7501 2019-07-11 stsp }
8979 818c7501 2019-07-11 stsp }
8980 818c7501 2019-07-11 stsp
8981 818c7501 2019-07-11 stsp argc -= optind;
8982 818c7501 2019-07-11 stsp argv += optind;
8983 818c7501 2019-07-11 stsp
8984 43012d58 2019-07-14 stsp #ifndef PROFILE
8985 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
8986 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
8987 43012d58 2019-07-14 stsp err(1, "pledge");
8988 43012d58 2019-07-14 stsp #endif
8989 e600f124 2021-03-21 stsp if (list_backups) {
8990 e600f124 2021-03-21 stsp if (abort_rebase)
8991 e600f124 2021-03-21 stsp option_conflict('l', 'a');
8992 e600f124 2021-03-21 stsp if (continue_rebase)
8993 e600f124 2021-03-21 stsp option_conflict('l', 'c');
8994 643b85bc 2021-07-16 stsp if (delete_backups)
8995 643b85bc 2021-07-16 stsp option_conflict('l', 'X');
8996 643b85bc 2021-07-16 stsp if (argc != 0 && argc != 1)
8997 643b85bc 2021-07-16 stsp usage_rebase();
8998 643b85bc 2021-07-16 stsp } else if (delete_backups) {
8999 643b85bc 2021-07-16 stsp if (abort_rebase)
9000 643b85bc 2021-07-16 stsp option_conflict('X', 'a');
9001 643b85bc 2021-07-16 stsp if (continue_rebase)
9002 643b85bc 2021-07-16 stsp option_conflict('X', 'c');
9003 643b85bc 2021-07-16 stsp if (list_backups)
9004 643b85bc 2021-07-16 stsp option_conflict('l', 'X');
9005 e600f124 2021-03-21 stsp if (argc != 0 && argc != 1)
9006 818c7501 2019-07-11 stsp usage_rebase();
9007 e600f124 2021-03-21 stsp } else {
9008 e600f124 2021-03-21 stsp if (abort_rebase && continue_rebase)
9009 e600f124 2021-03-21 stsp usage_rebase();
9010 e600f124 2021-03-21 stsp else if (abort_rebase || continue_rebase) {
9011 e600f124 2021-03-21 stsp if (argc != 0)
9012 e600f124 2021-03-21 stsp usage_rebase();
9013 e600f124 2021-03-21 stsp } else if (argc != 1)
9014 e600f124 2021-03-21 stsp usage_rebase();
9015 e600f124 2021-03-21 stsp }
9016 818c7501 2019-07-11 stsp
9017 818c7501 2019-07-11 stsp cwd = getcwd(NULL, 0);
9018 818c7501 2019-07-11 stsp if (cwd == NULL) {
9019 818c7501 2019-07-11 stsp error = got_error_from_errno("getcwd");
9020 818c7501 2019-07-11 stsp goto done;
9021 818c7501 2019-07-11 stsp }
9022 818c7501 2019-07-11 stsp error = got_worktree_open(&worktree, cwd);
9023 fa51e947 2020-03-27 stsp if (error) {
9024 643b85bc 2021-07-16 stsp if (list_backups || delete_backups) {
9025 e600f124 2021-03-21 stsp if (error->code != GOT_ERR_NOT_WORKTREE)
9026 e600f124 2021-03-21 stsp goto done;
9027 e600f124 2021-03-21 stsp } else {
9028 e600f124 2021-03-21 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
9029 e600f124 2021-03-21 stsp error = wrap_not_worktree_error(error,
9030 e600f124 2021-03-21 stsp "rebase", cwd);
9031 e600f124 2021-03-21 stsp goto done;
9032 e600f124 2021-03-21 stsp }
9033 fa51e947 2020-03-27 stsp }
9034 818c7501 2019-07-11 stsp
9035 e600f124 2021-03-21 stsp error = got_repo_open(&repo,
9036 e600f124 2021-03-21 stsp worktree ? got_worktree_get_repo_path(worktree) : cwd, NULL);
9037 818c7501 2019-07-11 stsp if (error != NULL)
9038 818c7501 2019-07-11 stsp goto done;
9039 818c7501 2019-07-11 stsp
9040 818c7501 2019-07-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
9041 e600f124 2021-03-21 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
9042 7ef62c4e 2020-02-24 stsp if (error)
9043 7ef62c4e 2020-02-24 stsp goto done;
9044 7ef62c4e 2020-02-24 stsp
9045 643b85bc 2021-07-16 stsp if (list_backups || delete_backups) {
9046 643b85bc 2021-07-16 stsp error = process_backup_refs(
9047 643b85bc 2021-07-16 stsp GOT_WORKTREE_REBASE_BACKUP_REF_PREFIX,
9048 643b85bc 2021-07-16 stsp argc == 1 ? argv[0] : NULL, delete_backups, repo);
9049 e600f124 2021-03-21 stsp goto done; /* nothing else to do */
9050 e600f124 2021-03-21 stsp }
9051 e600f124 2021-03-21 stsp
9052 7ef62c4e 2020-02-24 stsp error = got_worktree_histedit_in_progress(&histedit_in_progress,
9053 7ef62c4e 2020-02-24 stsp worktree);
9054 818c7501 2019-07-11 stsp if (error)
9055 7ef62c4e 2020-02-24 stsp goto done;
9056 7ef62c4e 2020-02-24 stsp if (histedit_in_progress) {
9057 7ef62c4e 2020-02-24 stsp error = got_error(GOT_ERR_HISTEDIT_BUSY);
9058 f259c4c1 2021-09-24 stsp goto done;
9059 f259c4c1 2021-09-24 stsp }
9060 f259c4c1 2021-09-24 stsp
9061 f259c4c1 2021-09-24 stsp error = got_worktree_merge_in_progress(&merge_in_progress,
9062 f259c4c1 2021-09-24 stsp worktree, repo);
9063 f259c4c1 2021-09-24 stsp if (error)
9064 f259c4c1 2021-09-24 stsp goto done;
9065 f259c4c1 2021-09-24 stsp if (merge_in_progress) {
9066 f259c4c1 2021-09-24 stsp error = got_error(GOT_ERR_MERGE_BUSY);
9067 818c7501 2019-07-11 stsp goto done;
9068 7ef62c4e 2020-02-24 stsp }
9069 818c7501 2019-07-11 stsp
9070 818c7501 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
9071 818c7501 2019-07-11 stsp if (error)
9072 818c7501 2019-07-11 stsp goto done;
9073 818c7501 2019-07-11 stsp
9074 f6794adc 2019-07-23 stsp if (abort_rebase) {
9075 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
9076 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
9077 f6794adc 2019-07-23 stsp goto done;
9078 f6794adc 2019-07-23 stsp }
9079 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
9080 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
9081 3e3a69f1 2019-07-25 stsp worktree, repo);
9082 818c7501 2019-07-11 stsp if (error)
9083 818c7501 2019-07-11 stsp goto done;
9084 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n",
9085 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch));
9086 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_abort(worktree, fileindex, repo,
9087 41f061b2 2021-10-05 stsp new_base_branch, abort_progress, &upa);
9088 818c7501 2019-07-11 stsp if (error)
9089 818c7501 2019-07-11 stsp goto done;
9090 818c7501 2019-07-11 stsp printf("Rebase of %s aborted\n", got_ref_get_name(branch));
9091 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
9092 818c7501 2019-07-11 stsp goto done; /* nothing else to do */
9093 818c7501 2019-07-11 stsp }
9094 818c7501 2019-07-11 stsp
9095 818c7501 2019-07-11 stsp if (continue_rebase) {
9096 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
9097 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
9098 f6794adc 2019-07-23 stsp goto done;
9099 f6794adc 2019-07-23 stsp }
9100 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
9101 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
9102 3e3a69f1 2019-07-25 stsp worktree, repo);
9103 818c7501 2019-07-11 stsp if (error)
9104 818c7501 2019-07-11 stsp goto done;
9105 818c7501 2019-07-11 stsp
9106 3e3a69f1 2019-07-25 stsp error = rebase_commit(NULL, worktree, fileindex, tmp_branch,
9107 01757395 2019-07-12 stsp resume_commit_id, repo);
9108 818c7501 2019-07-11 stsp if (error)
9109 818c7501 2019-07-11 stsp goto done;
9110 818c7501 2019-07-11 stsp
9111 ff0d2220 2019-07-11 stsp yca_id = got_object_id_dup(resume_commit_id);
9112 ff0d2220 2019-07-11 stsp if (yca_id == NULL) {
9113 818c7501 2019-07-11 stsp error = got_error_from_errno("got_object_id_dup");
9114 818c7501 2019-07-11 stsp goto done;
9115 818c7501 2019-07-11 stsp }
9116 818c7501 2019-07-11 stsp } else {
9117 818c7501 2019-07-11 stsp error = got_ref_open(&branch, repo, argv[0], 0);
9118 818c7501 2019-07-11 stsp if (error != NULL)
9119 818c7501 2019-07-11 stsp goto done;
9120 ff0d2220 2019-07-11 stsp }
9121 818c7501 2019-07-11 stsp
9122 ff0d2220 2019-07-11 stsp error = got_ref_resolve(&branch_head_commit_id, repo, branch);
9123 ff0d2220 2019-07-11 stsp if (error)
9124 ff0d2220 2019-07-11 stsp goto done;
9125 ff0d2220 2019-07-11 stsp
9126 ff0d2220 2019-07-11 stsp if (!continue_rebase) {
9127 a51a74b3 2019-07-27 stsp struct got_object_id *base_commit_id;
9128 a51a74b3 2019-07-27 stsp
9129 a51a74b3 2019-07-27 stsp base_commit_id = got_worktree_get_base_commit_id(worktree);
9130 818c7501 2019-07-11 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
9131 4e91ef15 2021-09-26 stsp base_commit_id, branch_head_commit_id, 1, repo,
9132 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
9133 818c7501 2019-07-11 stsp if (error)
9134 818c7501 2019-07-11 stsp goto done;
9135 818c7501 2019-07-11 stsp if (yca_id == NULL) {
9136 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
9137 818c7501 2019-07-11 stsp "specified branch shares no common ancestry "
9138 818c7501 2019-07-11 stsp "with work tree's branch");
9139 818c7501 2019-07-11 stsp goto done;
9140 818c7501 2019-07-11 stsp }
9141 818c7501 2019-07-11 stsp
9142 a51a74b3 2019-07-27 stsp error = check_same_branch(base_commit_id, branch, yca_id, repo);
9143 a51a74b3 2019-07-27 stsp if (error) {
9144 a51a74b3 2019-07-27 stsp if (error->code != GOT_ERR_ANCESTRY)
9145 a51a74b3 2019-07-27 stsp goto done;
9146 a51a74b3 2019-07-27 stsp error = NULL;
9147 a51a74b3 2019-07-27 stsp } else {
9148 df3ed485 2021-01-31 stsp static char msg[128];
9149 df3ed485 2021-01-31 stsp snprintf(msg, sizeof(msg),
9150 df3ed485 2021-01-31 stsp "%s is already based on %s",
9151 df3ed485 2021-01-31 stsp got_ref_get_name(branch),
9152 df3ed485 2021-01-31 stsp got_worktree_get_head_ref_name(worktree));
9153 df3ed485 2021-01-31 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH, msg);
9154 a51a74b3 2019-07-27 stsp goto done;
9155 a51a74b3 2019-07-27 stsp }
9156 818c7501 2019-07-11 stsp error = got_worktree_rebase_prepare(&new_base_branch,
9157 3e3a69f1 2019-07-25 stsp &tmp_branch, &fileindex, worktree, branch, repo);
9158 818c7501 2019-07-11 stsp if (error)
9159 818c7501 2019-07-11 stsp goto done;
9160 818c7501 2019-07-11 stsp }
9161 818c7501 2019-07-11 stsp
9162 ff0d2220 2019-07-11 stsp commit_id = branch_head_commit_id;
9163 818c7501 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
9164 818c7501 2019-07-11 stsp if (error)
9165 818c7501 2019-07-11 stsp goto done;
9166 818c7501 2019-07-11 stsp
9167 818c7501 2019-07-11 stsp parent_ids = got_object_commit_get_parent_ids(commit);
9168 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
9169 fc66b545 2019-08-12 stsp if (pid == NULL) {
9170 fc66b545 2019-08-12 stsp if (!continue_rebase) {
9171 fc66b545 2019-08-12 stsp error = got_worktree_rebase_abort(worktree, fileindex,
9172 41f061b2 2021-10-05 stsp repo, new_base_branch, abort_progress, &upa);
9173 fc66b545 2019-08-12 stsp if (error)
9174 fc66b545 2019-08-12 stsp goto done;
9175 fc66b545 2019-08-12 stsp printf("Rebase of %s aborted\n",
9176 fc66b545 2019-08-12 stsp got_ref_get_name(branch));
9177 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
9178 9627c110 2020-04-18 stsp
9179 fc66b545 2019-08-12 stsp }
9180 fc66b545 2019-08-12 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
9181 fc66b545 2019-08-12 stsp goto done;
9182 fc66b545 2019-08-12 stsp }
9183 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, commit_id, pid->id,
9184 8ca9bd68 2019-07-25 stsp yca_id, got_worktree_get_path_prefix(worktree),
9185 8ca9bd68 2019-07-25 stsp GOT_ERR_REBASE_PATH, repo);
9186 818c7501 2019-07-11 stsp got_object_commit_close(commit);
9187 818c7501 2019-07-11 stsp commit = NULL;
9188 818c7501 2019-07-11 stsp if (error)
9189 818c7501 2019-07-11 stsp goto done;
9190 64c6d990 2019-07-11 stsp
9191 dbdddfee 2021-06-23 naddy if (STAILQ_EMPTY(&commits)) {
9192 38b0338b 2019-11-29 stsp if (continue_rebase) {
9193 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex,
9194 e600f124 2021-03-21 stsp branch, new_base_branch, tmp_branch, repo,
9195 e600f124 2021-03-21 stsp create_backup);
9196 38b0338b 2019-11-29 stsp goto done;
9197 38b0338b 2019-11-29 stsp } else {
9198 38b0338b 2019-11-29 stsp /* Fast-forward the reference of the branch. */
9199 38b0338b 2019-11-29 stsp struct got_object_id *new_head_commit_id;
9200 38b0338b 2019-11-29 stsp char *id_str;
9201 38b0338b 2019-11-29 stsp error = got_ref_resolve(&new_head_commit_id, repo,
9202 38b0338b 2019-11-29 stsp new_base_branch);
9203 38b0338b 2019-11-29 stsp if (error)
9204 38b0338b 2019-11-29 stsp goto done;
9205 38b0338b 2019-11-29 stsp error = got_object_id_str(&id_str, new_head_commit_id);
9206 38b0338b 2019-11-29 stsp printf("Forwarding %s to commit %s\n",
9207 38b0338b 2019-11-29 stsp got_ref_get_name(branch), id_str);
9208 38b0338b 2019-11-29 stsp free(id_str);
9209 38b0338b 2019-11-29 stsp error = got_ref_change_ref(branch,
9210 38b0338b 2019-11-29 stsp new_head_commit_id);
9211 38b0338b 2019-11-29 stsp if (error)
9212 38b0338b 2019-11-29 stsp goto done;
9213 e600f124 2021-03-21 stsp /* No backup needed since objects did not change. */
9214 e600f124 2021-03-21 stsp create_backup = 0;
9215 38b0338b 2019-11-29 stsp }
9216 818c7501 2019-07-11 stsp }
9217 818c7501 2019-07-11 stsp
9218 818c7501 2019-07-11 stsp pid = NULL;
9219 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, &commits, entry) {
9220 9627c110 2020-04-18 stsp
9221 818c7501 2019-07-11 stsp commit_id = qid->id;
9222 818c7501 2019-07-11 stsp parent_id = pid ? pid->id : yca_id;
9223 818c7501 2019-07-11 stsp pid = qid;
9224 818c7501 2019-07-11 stsp
9225 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
9226 01757395 2019-07-12 stsp error = got_worktree_rebase_merge_files(&merged_paths,
9227 3e3a69f1 2019-07-25 stsp worktree, fileindex, parent_id, commit_id, repo,
9228 9627c110 2020-04-18 stsp update_progress, &upa, check_cancelled, NULL);
9229 818c7501 2019-07-11 stsp if (error)
9230 818c7501 2019-07-11 stsp goto done;
9231 9627c110 2020-04-18 stsp
9232 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
9233 1fa49072 2021-09-28 stsp if (upa.conflicts > 0 || upa.missing > 0 ||
9234 1fa49072 2021-09-28 stsp upa.not_deleted > 0 || upa.unversioned > 0) {
9235 1fa49072 2021-09-28 stsp if (upa.conflicts > 0) {
9236 1fa49072 2021-09-28 stsp error = show_rebase_merge_conflict(qid->id,
9237 1fa49072 2021-09-28 stsp repo);
9238 1fa49072 2021-09-28 stsp if (error)
9239 1fa49072 2021-09-28 stsp goto done;
9240 1fa49072 2021-09-28 stsp }
9241 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
9242 818c7501 2019-07-11 stsp break;
9243 01757395 2019-07-12 stsp }
9244 818c7501 2019-07-11 stsp
9245 3e3a69f1 2019-07-25 stsp error = rebase_commit(&merged_paths, worktree, fileindex,
9246 3e3a69f1 2019-07-25 stsp tmp_branch, commit_id, repo);
9247 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
9248 818c7501 2019-07-11 stsp if (error)
9249 818c7501 2019-07-11 stsp goto done;
9250 818c7501 2019-07-11 stsp }
9251 818c7501 2019-07-11 stsp
9252 1fa49072 2021-09-28 stsp if (upa.conflicts > 0 || upa.missing > 0 ||
9253 1fa49072 2021-09-28 stsp upa.not_deleted > 0 || upa.unversioned > 0) {
9254 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_postpone(worktree, fileindex);
9255 818c7501 2019-07-11 stsp if (error)
9256 818c7501 2019-07-11 stsp goto done;
9257 1fa49072 2021-09-28 stsp if (upa.conflicts > 0 && upa.missing == 0 &&
9258 1fa49072 2021-09-28 stsp upa.not_deleted == 0 && upa.unversioned == 0) {
9259 1fa49072 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
9260 1fa49072 2021-09-28 stsp "conflicts must be resolved before rebasing "
9261 1fa49072 2021-09-28 stsp "can continue");
9262 1fa49072 2021-09-28 stsp } else if (upa.conflicts > 0) {
9263 1fa49072 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
9264 1fa49072 2021-09-28 stsp "conflicts must be resolved before rebasing "
9265 1fa49072 2021-09-28 stsp "can continue; changes destined for some "
9266 1fa49072 2021-09-28 stsp "files were not yet merged and should be "
9267 1fa49072 2021-09-28 stsp "merged manually if required before the "
9268 1fa49072 2021-09-28 stsp "rebase operation is continued");
9269 1fa49072 2021-09-28 stsp } else {
9270 1fa49072 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
9271 1fa49072 2021-09-28 stsp "changes destined for some files were not "
9272 1fa49072 2021-09-28 stsp "yet merged and should be merged manually "
9273 1fa49072 2021-09-28 stsp "if required before the rebase operation "
9274 1fa49072 2021-09-28 stsp "is continued");
9275 1fa49072 2021-09-28 stsp }
9276 818c7501 2019-07-11 stsp } else
9277 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex, branch,
9278 e600f124 2021-03-21 stsp new_base_branch, tmp_branch, repo, create_backup);
9279 818c7501 2019-07-11 stsp done:
9280 818c7501 2019-07-11 stsp got_object_id_queue_free(&commits);
9281 818c7501 2019-07-11 stsp free(branch_head_commit_id);
9282 818c7501 2019-07-11 stsp free(resume_commit_id);
9283 818c7501 2019-07-11 stsp free(yca_id);
9284 818c7501 2019-07-11 stsp if (commit)
9285 818c7501 2019-07-11 stsp got_object_commit_close(commit);
9286 818c7501 2019-07-11 stsp if (branch)
9287 818c7501 2019-07-11 stsp got_ref_close(branch);
9288 818c7501 2019-07-11 stsp if (new_base_branch)
9289 818c7501 2019-07-11 stsp got_ref_close(new_base_branch);
9290 818c7501 2019-07-11 stsp if (tmp_branch)
9291 818c7501 2019-07-11 stsp got_ref_close(tmp_branch);
9292 5ef14e63 2019-06-02 stsp if (worktree)
9293 5ef14e63 2019-06-02 stsp got_worktree_close(worktree);
9294 1d0f4054 2021-06-17 stsp if (repo) {
9295 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
9296 1d0f4054 2021-06-17 stsp if (error == NULL)
9297 1d0f4054 2021-06-17 stsp error = close_err;
9298 1d0f4054 2021-06-17 stsp }
9299 5ef14e63 2019-06-02 stsp return error;
9300 0ebf8283 2019-07-24 stsp }
9301 0ebf8283 2019-07-24 stsp
9302 0ebf8283 2019-07-24 stsp __dead static void
9303 0ebf8283 2019-07-24 stsp usage_histedit(void)
9304 0ebf8283 2019-07-24 stsp {
9305 b93c7142 2021-10-01 stsp fprintf(stderr, "usage: %s histedit [-a] [-c] [-e] [-f] "
9306 643b85bc 2021-07-16 stsp "[-F histedit-script] [-m] [-l] [-X] [branch]\n",
9307 643b85bc 2021-07-16 stsp getprogname());
9308 0ebf8283 2019-07-24 stsp exit(1);
9309 0ebf8283 2019-07-24 stsp }
9310 0ebf8283 2019-07-24 stsp
9311 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_PICK 'p'
9312 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_EDIT 'e'
9313 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_FOLD 'f'
9314 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_DROP 'd'
9315 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_MESG 'm'
9316 0ebf8283 2019-07-24 stsp
9317 0ebf8283 2019-07-24 stsp static struct got_histedit_cmd {
9318 0ebf8283 2019-07-24 stsp unsigned char code;
9319 0ebf8283 2019-07-24 stsp const char *name;
9320 0ebf8283 2019-07-24 stsp const char *desc;
9321 0ebf8283 2019-07-24 stsp } got_histedit_cmds[] = {
9322 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_PICK, "pick", "use commit" },
9323 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
9324 82997472 2020-01-29 stsp { GOT_HISTEDIT_FOLD, "fold", "combine with next commit that will "
9325 82997472 2020-01-29 stsp "be used" },
9326 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
9327 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_MESG, "mesg",
9328 0ebf8283 2019-07-24 stsp "single-line log message for commit above (open editor if empty)" },
9329 0ebf8283 2019-07-24 stsp };
9330 0ebf8283 2019-07-24 stsp
9331 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry {
9332 0ebf8283 2019-07-24 stsp TAILQ_ENTRY(got_histedit_list_entry) entry;
9333 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id;
9334 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
9335 0ebf8283 2019-07-24 stsp char *logmsg;
9336 0ebf8283 2019-07-24 stsp };
9337 0ebf8283 2019-07-24 stsp TAILQ_HEAD(got_histedit_list, got_histedit_list_entry);
9338 0ebf8283 2019-07-24 stsp
9339 0ebf8283 2019-07-24 stsp static const struct got_error *
9340 0ebf8283 2019-07-24 stsp histedit_write_commit(struct got_object_id *commit_id, const char *cmdname,
9341 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
9342 0ebf8283 2019-07-24 stsp {
9343 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9344 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *id_str = NULL;
9345 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
9346 8138f3e1 2019-08-11 stsp int n;
9347 0ebf8283 2019-07-24 stsp
9348 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
9349 0ebf8283 2019-07-24 stsp if (err)
9350 0ebf8283 2019-07-24 stsp goto done;
9351 0ebf8283 2019-07-24 stsp
9352 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 34, commit);
9353 0ebf8283 2019-07-24 stsp if (err)
9354 0ebf8283 2019-07-24 stsp goto done;
9355 0ebf8283 2019-07-24 stsp
9356 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, commit_id);
9357 0ebf8283 2019-07-24 stsp if (err)
9358 0ebf8283 2019-07-24 stsp goto done;
9359 0ebf8283 2019-07-24 stsp
9360 0ebf8283 2019-07-24 stsp n = fprintf(f, "%s %s %s\n", cmdname, id_str, logmsg);
9361 0ebf8283 2019-07-24 stsp if (n < 0)
9362 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
9363 0ebf8283 2019-07-24 stsp done:
9364 0ebf8283 2019-07-24 stsp if (commit)
9365 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
9366 0ebf8283 2019-07-24 stsp free(id_str);
9367 0ebf8283 2019-07-24 stsp free(logmsg);
9368 0ebf8283 2019-07-24 stsp return err;
9369 0ebf8283 2019-07-24 stsp }
9370 0ebf8283 2019-07-24 stsp
9371 0ebf8283 2019-07-24 stsp static const struct got_error *
9372 083957f4 2020-02-24 stsp histedit_write_commit_list(struct got_object_id_queue *commits,
9373 b93c7142 2021-10-01 stsp FILE *f, int edit_logmsg_only, int fold_only, int edit_only,
9374 b93c7142 2021-10-01 stsp struct got_repository *repo)
9375 0ebf8283 2019-07-24 stsp {
9376 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9377 0ebf8283 2019-07-24 stsp struct got_object_qid *qid;
9378 466785b9 2020-12-10 jrick const char *histedit_cmd = NULL;
9379 0ebf8283 2019-07-24 stsp
9380 dbdddfee 2021-06-23 naddy if (STAILQ_EMPTY(commits))
9381 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
9382 0ebf8283 2019-07-24 stsp
9383 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, commits, entry) {
9384 466785b9 2020-12-10 jrick histedit_cmd = got_histedit_cmds[0].name;
9385 b93c7142 2021-10-01 stsp if (edit_only)
9386 b93c7142 2021-10-01 stsp histedit_cmd = "edit";
9387 b93c7142 2021-10-01 stsp else if (fold_only && STAILQ_NEXT(qid, entry) != NULL)
9388 466785b9 2020-12-10 jrick histedit_cmd = "fold";
9389 466785b9 2020-12-10 jrick err = histedit_write_commit(qid->id, histedit_cmd, f, repo);
9390 0ebf8283 2019-07-24 stsp if (err)
9391 0ebf8283 2019-07-24 stsp break;
9392 083957f4 2020-02-24 stsp if (edit_logmsg_only) {
9393 083957f4 2020-02-24 stsp int n = fprintf(f, "%c\n", GOT_HISTEDIT_MESG);
9394 083957f4 2020-02-24 stsp if (n < 0) {
9395 083957f4 2020-02-24 stsp err = got_ferror(f, GOT_ERR_IO);
9396 083957f4 2020-02-24 stsp break;
9397 083957f4 2020-02-24 stsp }
9398 083957f4 2020-02-24 stsp }
9399 0ebf8283 2019-07-24 stsp }
9400 0ebf8283 2019-07-24 stsp
9401 0ebf8283 2019-07-24 stsp return err;
9402 0ebf8283 2019-07-24 stsp }
9403 0ebf8283 2019-07-24 stsp
9404 0ebf8283 2019-07-24 stsp static const struct got_error *
9405 514f2ffe 2020-01-29 stsp write_cmd_list(FILE *f, const char *branch_name,
9406 514f2ffe 2020-01-29 stsp struct got_object_id_queue *commits)
9407 0ebf8283 2019-07-24 stsp {
9408 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9409 6059809a 2020-12-17 stsp size_t i;
9410 6059809a 2020-12-17 stsp int n;
9411 514f2ffe 2020-01-29 stsp char *id_str;
9412 514f2ffe 2020-01-29 stsp struct got_object_qid *qid;
9413 514f2ffe 2020-01-29 stsp
9414 dbdddfee 2021-06-23 naddy qid = STAILQ_FIRST(commits);
9415 514f2ffe 2020-01-29 stsp err = got_object_id_str(&id_str, qid->id);
9416 514f2ffe 2020-01-29 stsp if (err)
9417 514f2ffe 2020-01-29 stsp return err;
9418 514f2ffe 2020-01-29 stsp
9419 514f2ffe 2020-01-29 stsp n = fprintf(f,
9420 514f2ffe 2020-01-29 stsp "# Editing the history of branch '%s' starting at\n"
9421 514f2ffe 2020-01-29 stsp "# commit %s\n"
9422 514f2ffe 2020-01-29 stsp "# Commits will be processed in order from top to "
9423 514f2ffe 2020-01-29 stsp "bottom of this file.\n", branch_name, id_str);
9424 514f2ffe 2020-01-29 stsp if (n < 0) {
9425 514f2ffe 2020-01-29 stsp err = got_ferror(f, GOT_ERR_IO);
9426 514f2ffe 2020-01-29 stsp goto done;
9427 514f2ffe 2020-01-29 stsp }
9428 0ebf8283 2019-07-24 stsp
9429 0ebf8283 2019-07-24 stsp n = fprintf(f, "# Available histedit commands:\n");
9430 514f2ffe 2020-01-29 stsp if (n < 0) {
9431 514f2ffe 2020-01-29 stsp err = got_ferror(f, GOT_ERR_IO);
9432 514f2ffe 2020-01-29 stsp goto done;
9433 514f2ffe 2020-01-29 stsp }
9434 0ebf8283 2019-07-24 stsp
9435 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
9436 0ebf8283 2019-07-24 stsp struct got_histedit_cmd *cmd = &got_histedit_cmds[i];
9437 0ebf8283 2019-07-24 stsp n = fprintf(f, "# %s (%c): %s\n", cmd->name, cmd->code,
9438 0ebf8283 2019-07-24 stsp cmd->desc);
9439 0ebf8283 2019-07-24 stsp if (n < 0) {
9440 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
9441 0ebf8283 2019-07-24 stsp break;
9442 0ebf8283 2019-07-24 stsp }
9443 0ebf8283 2019-07-24 stsp }
9444 514f2ffe 2020-01-29 stsp done:
9445 514f2ffe 2020-01-29 stsp free(id_str);
9446 0ebf8283 2019-07-24 stsp return err;
9447 0ebf8283 2019-07-24 stsp }
9448 0ebf8283 2019-07-24 stsp
9449 0ebf8283 2019-07-24 stsp static const struct got_error *
9450 0ebf8283 2019-07-24 stsp histedit_syntax_error(int lineno)
9451 0ebf8283 2019-07-24 stsp {
9452 0ebf8283 2019-07-24 stsp static char msg[42];
9453 0ebf8283 2019-07-24 stsp int ret;
9454 0ebf8283 2019-07-24 stsp
9455 0ebf8283 2019-07-24 stsp ret = snprintf(msg, sizeof(msg), "histedit syntax error on line %d",
9456 0ebf8283 2019-07-24 stsp lineno);
9457 0ebf8283 2019-07-24 stsp if (ret == -1 || ret >= sizeof(msg))
9458 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_SYNTAX);
9459 0ebf8283 2019-07-24 stsp
9460 0ebf8283 2019-07-24 stsp return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX, msg);
9461 0ebf8283 2019-07-24 stsp }
9462 0ebf8283 2019-07-24 stsp
9463 0ebf8283 2019-07-24 stsp static const struct got_error *
9464 0ebf8283 2019-07-24 stsp append_folded_commit_msg(char **new_msg, struct got_histedit_list_entry *hle,
9465 0ebf8283 2019-07-24 stsp char *logmsg, struct got_repository *repo)
9466 0ebf8283 2019-07-24 stsp {
9467 0ebf8283 2019-07-24 stsp const struct got_error *err;
9468 0ebf8283 2019-07-24 stsp struct got_commit_object *folded_commit = NULL;
9469 5943eee2 2019-08-13 stsp char *id_str, *folded_logmsg = NULL;
9470 0ebf8283 2019-07-24 stsp
9471 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
9472 0ebf8283 2019-07-24 stsp if (err)
9473 0ebf8283 2019-07-24 stsp return err;
9474 0ebf8283 2019-07-24 stsp
9475 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&folded_commit, repo, hle->commit_id);
9476 0ebf8283 2019-07-24 stsp if (err)
9477 0ebf8283 2019-07-24 stsp goto done;
9478 0ebf8283 2019-07-24 stsp
9479 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&folded_logmsg, folded_commit);
9480 5943eee2 2019-08-13 stsp if (err)
9481 5943eee2 2019-08-13 stsp goto done;
9482 0ebf8283 2019-07-24 stsp if (asprintf(new_msg, "%s%s# log message of folded commit %s: %s",
9483 0ebf8283 2019-07-24 stsp logmsg ? logmsg : "", logmsg ? "\n" : "", id_str,
9484 5943eee2 2019-08-13 stsp folded_logmsg) == -1) {
9485 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
9486 0ebf8283 2019-07-24 stsp }
9487 0ebf8283 2019-07-24 stsp done:
9488 0ebf8283 2019-07-24 stsp if (folded_commit)
9489 0ebf8283 2019-07-24 stsp got_object_commit_close(folded_commit);
9490 0ebf8283 2019-07-24 stsp free(id_str);
9491 5943eee2 2019-08-13 stsp free(folded_logmsg);
9492 0ebf8283 2019-07-24 stsp return err;
9493 0ebf8283 2019-07-24 stsp }
9494 0ebf8283 2019-07-24 stsp
9495 0ebf8283 2019-07-24 stsp static struct got_histedit_list_entry *
9496 0ebf8283 2019-07-24 stsp get_folded_commits(struct got_histedit_list_entry *hle)
9497 0ebf8283 2019-07-24 stsp {
9498 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *prev, *folded = NULL;
9499 0ebf8283 2019-07-24 stsp
9500 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(hle, got_histedit_list, entry);
9501 3f9de99f 2019-07-24 stsp while (prev && (prev->cmd->code == GOT_HISTEDIT_FOLD ||
9502 3f9de99f 2019-07-24 stsp prev->cmd->code == GOT_HISTEDIT_DROP)) {
9503 3f9de99f 2019-07-24 stsp if (prev->cmd->code == GOT_HISTEDIT_FOLD)
9504 3f9de99f 2019-07-24 stsp folded = prev;
9505 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(prev, got_histedit_list, entry);
9506 0ebf8283 2019-07-24 stsp }
9507 0ebf8283 2019-07-24 stsp
9508 0ebf8283 2019-07-24 stsp return folded;
9509 0ebf8283 2019-07-24 stsp }
9510 0ebf8283 2019-07-24 stsp
9511 0ebf8283 2019-07-24 stsp static const struct got_error *
9512 0ebf8283 2019-07-24 stsp histedit_edit_logmsg(struct got_histedit_list_entry *hle,
9513 0ebf8283 2019-07-24 stsp struct got_repository *repo)
9514 0ebf8283 2019-07-24 stsp {
9515 5943eee2 2019-08-13 stsp char *logmsg_path = NULL, *id_str = NULL, *orig_logmsg = NULL;
9516 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *new_msg = NULL, *editor = NULL;
9517 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9518 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
9519 1601cb9f 2020-09-11 naddy int logmsg_len;
9520 0ebf8283 2019-07-24 stsp int fd;
9521 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *folded = NULL;
9522 0ebf8283 2019-07-24 stsp
9523 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
9524 0ebf8283 2019-07-24 stsp if (err)
9525 0ebf8283 2019-07-24 stsp return err;
9526 0ebf8283 2019-07-24 stsp
9527 0ebf8283 2019-07-24 stsp folded = get_folded_commits(hle);
9528 0ebf8283 2019-07-24 stsp if (folded) {
9529 0ebf8283 2019-07-24 stsp while (folded != hle) {
9530 3f9de99f 2019-07-24 stsp if (folded->cmd->code == GOT_HISTEDIT_DROP) {
9531 3f9de99f 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
9532 3f9de99f 2019-07-24 stsp continue;
9533 3f9de99f 2019-07-24 stsp }
9534 0ebf8283 2019-07-24 stsp err = append_folded_commit_msg(&new_msg, folded,
9535 0ebf8283 2019-07-24 stsp logmsg, repo);
9536 0ebf8283 2019-07-24 stsp if (err)
9537 0ebf8283 2019-07-24 stsp goto done;
9538 0ebf8283 2019-07-24 stsp free(logmsg);
9539 0ebf8283 2019-07-24 stsp logmsg = new_msg;
9540 0ebf8283 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
9541 0ebf8283 2019-07-24 stsp }
9542 0ebf8283 2019-07-24 stsp }
9543 0ebf8283 2019-07-24 stsp
9544 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
9545 0ebf8283 2019-07-24 stsp if (err)
9546 0ebf8283 2019-07-24 stsp goto done;
9547 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&orig_logmsg, commit);
9548 5943eee2 2019-08-13 stsp if (err)
9549 5943eee2 2019-08-13 stsp goto done;
9550 1601cb9f 2020-09-11 naddy logmsg_len = asprintf(&new_msg,
9551 0ebf8283 2019-07-24 stsp "%s\n# original log message of commit %s: %s",
9552 1601cb9f 2020-09-11 naddy logmsg ? logmsg : "", id_str, orig_logmsg);
9553 1601cb9f 2020-09-11 naddy if (logmsg_len == -1) {
9554 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
9555 0ebf8283 2019-07-24 stsp goto done;
9556 0ebf8283 2019-07-24 stsp }
9557 0ebf8283 2019-07-24 stsp free(logmsg);
9558 0ebf8283 2019-07-24 stsp logmsg = new_msg;
9559 0ebf8283 2019-07-24 stsp
9560 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
9561 0ebf8283 2019-07-24 stsp if (err)
9562 0ebf8283 2019-07-24 stsp goto done;
9563 0ebf8283 2019-07-24 stsp
9564 bb63914a 2020-02-17 stsp err = got_opentemp_named_fd(&logmsg_path, &fd,
9565 bb63914a 2020-02-17 stsp GOT_TMPDIR_STR "/got-logmsg");
9566 0ebf8283 2019-07-24 stsp if (err)
9567 0ebf8283 2019-07-24 stsp goto done;
9568 0ebf8283 2019-07-24 stsp
9569 1601cb9f 2020-09-11 naddy write(fd, logmsg, logmsg_len);
9570 0ebf8283 2019-07-24 stsp close(fd);
9571 0ebf8283 2019-07-24 stsp
9572 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
9573 0ebf8283 2019-07-24 stsp if (err)
9574 0ebf8283 2019-07-24 stsp goto done;
9575 0ebf8283 2019-07-24 stsp
9576 bfa12d5e 2020-09-26 stsp err = edit_logmsg(&hle->logmsg, editor, logmsg_path, logmsg,
9577 0d5bb276 2020-12-15 stsp logmsg_len, 0);
9578 0ebf8283 2019-07-24 stsp if (err) {
9579 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY)
9580 0ebf8283 2019-07-24 stsp goto done;
9581 71392a05 2020-12-13 stsp err = NULL;
9582 71392a05 2020-12-13 stsp hle->logmsg = strdup(new_msg);
9583 71392a05 2020-12-13 stsp if (hle->logmsg == NULL)
9584 71392a05 2020-12-13 stsp err = got_error_from_errno("strdup");
9585 0ebf8283 2019-07-24 stsp }
9586 0ebf8283 2019-07-24 stsp done:
9587 0ebf8283 2019-07-24 stsp if (logmsg_path && unlink(logmsg_path) != 0 && err == NULL)
9588 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", logmsg_path);
9589 0ebf8283 2019-07-24 stsp free(logmsg_path);
9590 0ebf8283 2019-07-24 stsp free(logmsg);
9591 5943eee2 2019-08-13 stsp free(orig_logmsg);
9592 0ebf8283 2019-07-24 stsp free(editor);
9593 0ebf8283 2019-07-24 stsp if (commit)
9594 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
9595 0ebf8283 2019-07-24 stsp return err;
9596 5ef14e63 2019-06-02 stsp }
9597 0ebf8283 2019-07-24 stsp
9598 0ebf8283 2019-07-24 stsp static const struct got_error *
9599 0ebf8283 2019-07-24 stsp histedit_parse_list(struct got_histedit_list *histedit_cmds,
9600 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
9601 0ebf8283 2019-07-24 stsp {
9602 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9603 0ebf8283 2019-07-24 stsp char *line = NULL, *p, *end;
9604 6059809a 2020-12-17 stsp size_t i, size;
9605 0ebf8283 2019-07-24 stsp ssize_t len;
9606 6059809a 2020-12-17 stsp int lineno = 0;
9607 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
9608 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
9609 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle = NULL;
9610 0ebf8283 2019-07-24 stsp
9611 0ebf8283 2019-07-24 stsp for (;;) {
9612 0ebf8283 2019-07-24 stsp len = getline(&line, &size, f);
9613 0ebf8283 2019-07-24 stsp if (len == -1) {
9614 0ebf8283 2019-07-24 stsp const struct got_error *getline_err;
9615 0ebf8283 2019-07-24 stsp if (feof(f))
9616 0ebf8283 2019-07-24 stsp break;
9617 0ebf8283 2019-07-24 stsp getline_err = got_error_from_errno("getline");
9618 0ebf8283 2019-07-24 stsp err = got_ferror(f, getline_err->code);
9619 0ebf8283 2019-07-24 stsp break;
9620 0ebf8283 2019-07-24 stsp }
9621 0ebf8283 2019-07-24 stsp lineno++;
9622 0ebf8283 2019-07-24 stsp p = line;
9623 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
9624 0ebf8283 2019-07-24 stsp p++;
9625 0ebf8283 2019-07-24 stsp if (p[0] == '#' || p[0] == '\0') {
9626 0ebf8283 2019-07-24 stsp free(line);
9627 0ebf8283 2019-07-24 stsp line = NULL;
9628 0ebf8283 2019-07-24 stsp continue;
9629 0ebf8283 2019-07-24 stsp }
9630 0ebf8283 2019-07-24 stsp cmd = NULL;
9631 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
9632 0ebf8283 2019-07-24 stsp cmd = &got_histedit_cmds[i];
9633 0ebf8283 2019-07-24 stsp if (strncmp(cmd->name, p, strlen(cmd->name)) == 0 &&
9634 0ebf8283 2019-07-24 stsp isspace((unsigned char)p[strlen(cmd->name)])) {
9635 0ebf8283 2019-07-24 stsp p += strlen(cmd->name);
9636 0ebf8283 2019-07-24 stsp break;
9637 0ebf8283 2019-07-24 stsp }
9638 0ebf8283 2019-07-24 stsp if (p[0] == cmd->code && isspace((unsigned char)p[1])) {
9639 0ebf8283 2019-07-24 stsp p++;
9640 0ebf8283 2019-07-24 stsp break;
9641 0ebf8283 2019-07-24 stsp }
9642 0ebf8283 2019-07-24 stsp }
9643 6c1844f6 2019-07-25 stsp if (i == nitems(got_histedit_cmds)) {
9644 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
9645 0ebf8283 2019-07-24 stsp break;
9646 0ebf8283 2019-07-24 stsp }
9647 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
9648 0ebf8283 2019-07-24 stsp p++;
9649 0ebf8283 2019-07-24 stsp if (cmd->code == GOT_HISTEDIT_MESG) {
9650 0ebf8283 2019-07-24 stsp if (hle == NULL || hle->logmsg != NULL) {
9651 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CMD);
9652 0ebf8283 2019-07-24 stsp break;
9653 0ebf8283 2019-07-24 stsp }
9654 0ebf8283 2019-07-24 stsp if (p[0] == '\0') {
9655 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
9656 0ebf8283 2019-07-24 stsp if (err)
9657 0ebf8283 2019-07-24 stsp break;
9658 0ebf8283 2019-07-24 stsp } else {
9659 0ebf8283 2019-07-24 stsp hle->logmsg = strdup(p);
9660 0ebf8283 2019-07-24 stsp if (hle->logmsg == NULL) {
9661 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
9662 0ebf8283 2019-07-24 stsp break;
9663 0ebf8283 2019-07-24 stsp }
9664 0ebf8283 2019-07-24 stsp }
9665 0ebf8283 2019-07-24 stsp free(line);
9666 0ebf8283 2019-07-24 stsp line = NULL;
9667 0ebf8283 2019-07-24 stsp continue;
9668 0ebf8283 2019-07-24 stsp } else {
9669 0ebf8283 2019-07-24 stsp end = p;
9670 0ebf8283 2019-07-24 stsp while (end[0] && !isspace((unsigned char)end[0]))
9671 0ebf8283 2019-07-24 stsp end++;
9672 0ebf8283 2019-07-24 stsp *end = '\0';
9673 0ebf8283 2019-07-24 stsp
9674 0ebf8283 2019-07-24 stsp err = got_object_resolve_id_str(&commit_id, repo, p);
9675 0ebf8283 2019-07-24 stsp if (err) {
9676 0ebf8283 2019-07-24 stsp /* override error code */
9677 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
9678 0ebf8283 2019-07-24 stsp break;
9679 0ebf8283 2019-07-24 stsp }
9680 0ebf8283 2019-07-24 stsp }
9681 0ebf8283 2019-07-24 stsp hle = malloc(sizeof(*hle));
9682 0ebf8283 2019-07-24 stsp if (hle == NULL) {
9683 0ebf8283 2019-07-24 stsp err = got_error_from_errno("malloc");
9684 0ebf8283 2019-07-24 stsp break;
9685 0ebf8283 2019-07-24 stsp }
9686 0ebf8283 2019-07-24 stsp hle->cmd = cmd;
9687 0ebf8283 2019-07-24 stsp hle->commit_id = commit_id;
9688 0ebf8283 2019-07-24 stsp hle->logmsg = NULL;
9689 0ebf8283 2019-07-24 stsp commit_id = NULL;
9690 0ebf8283 2019-07-24 stsp free(line);
9691 0ebf8283 2019-07-24 stsp line = NULL;
9692 0ebf8283 2019-07-24 stsp TAILQ_INSERT_TAIL(histedit_cmds, hle, entry);
9693 0ebf8283 2019-07-24 stsp }
9694 0ebf8283 2019-07-24 stsp
9695 0ebf8283 2019-07-24 stsp free(line);
9696 0ebf8283 2019-07-24 stsp free(commit_id);
9697 0ebf8283 2019-07-24 stsp return err;
9698 0ebf8283 2019-07-24 stsp }
9699 0ebf8283 2019-07-24 stsp
9700 0ebf8283 2019-07-24 stsp static const struct got_error *
9701 bfce7f83 2019-07-27 stsp histedit_check_script(struct got_histedit_list *histedit_cmds,
9702 bfce7f83 2019-07-27 stsp struct got_object_id_queue *commits, struct got_repository *repo)
9703 bfce7f83 2019-07-27 stsp {
9704 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL;
9705 bfce7f83 2019-07-27 stsp struct got_object_qid *qid;
9706 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
9707 5b87815e 2020-03-05 stsp static char msg[92];
9708 bfce7f83 2019-07-27 stsp char *id_str;
9709 bfce7f83 2019-07-27 stsp
9710 bfce7f83 2019-07-27 stsp if (TAILQ_EMPTY(histedit_cmds))
9711 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_EMPTY_HISTEDIT,
9712 bfce7f83 2019-07-27 stsp "histedit script contains no commands");
9713 dbdddfee 2021-06-23 naddy if (STAILQ_EMPTY(commits))
9714 a0de39f3 2019-08-09 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
9715 5b87815e 2020-03-05 stsp
9716 5b87815e 2020-03-05 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
9717 5b87815e 2020-03-05 stsp struct got_histedit_list_entry *hle2;
9718 5b87815e 2020-03-05 stsp TAILQ_FOREACH(hle2, histedit_cmds, entry) {
9719 5b87815e 2020-03-05 stsp if (hle == hle2)
9720 5b87815e 2020-03-05 stsp continue;
9721 5b87815e 2020-03-05 stsp if (got_object_id_cmp(hle->commit_id,
9722 5b87815e 2020-03-05 stsp hle2->commit_id) != 0)
9723 5b87815e 2020-03-05 stsp continue;
9724 5b87815e 2020-03-05 stsp err = got_object_id_str(&id_str, hle->commit_id);
9725 5b87815e 2020-03-05 stsp if (err)
9726 5b87815e 2020-03-05 stsp return err;
9727 5b87815e 2020-03-05 stsp snprintf(msg, sizeof(msg), "commit %s is listed "
9728 5b87815e 2020-03-05 stsp "more than once in histedit script", id_str);
9729 5b87815e 2020-03-05 stsp free(id_str);
9730 5b87815e 2020-03-05 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
9731 5b87815e 2020-03-05 stsp }
9732 5b87815e 2020-03-05 stsp }
9733 bfce7f83 2019-07-27 stsp
9734 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, commits, entry) {
9735 bfce7f83 2019-07-27 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
9736 bfce7f83 2019-07-27 stsp if (got_object_id_cmp(qid->id, hle->commit_id) == 0)
9737 bfce7f83 2019-07-27 stsp break;
9738 bfce7f83 2019-07-27 stsp }
9739 bfce7f83 2019-07-27 stsp if (hle == NULL) {
9740 bfce7f83 2019-07-27 stsp err = got_object_id_str(&id_str, qid->id);
9741 bfce7f83 2019-07-27 stsp if (err)
9742 bfce7f83 2019-07-27 stsp return err;
9743 bfce7f83 2019-07-27 stsp snprintf(msg, sizeof(msg),
9744 bfce7f83 2019-07-27 stsp "commit %s missing from histedit script", id_str);
9745 bfce7f83 2019-07-27 stsp free(id_str);
9746 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
9747 bfce7f83 2019-07-27 stsp }
9748 bfce7f83 2019-07-27 stsp }
9749 bfce7f83 2019-07-27 stsp
9750 0def28b1 2019-08-17 stsp hle = TAILQ_LAST(histedit_cmds, got_histedit_list);
9751 0def28b1 2019-08-17 stsp if (hle && hle->cmd->code == GOT_HISTEDIT_FOLD)
9752 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD,
9753 bfce7f83 2019-07-27 stsp "last commit in histedit script cannot be folded");
9754 bfce7f83 2019-07-27 stsp
9755 bfce7f83 2019-07-27 stsp return NULL;
9756 bfce7f83 2019-07-27 stsp }
9757 bfce7f83 2019-07-27 stsp
9758 bfce7f83 2019-07-27 stsp static const struct got_error *
9759 0ebf8283 2019-07-24 stsp histedit_run_editor(struct got_histedit_list *histedit_cmds,
9760 bfce7f83 2019-07-27 stsp const char *path, struct got_object_id_queue *commits,
9761 bfce7f83 2019-07-27 stsp struct got_repository *repo)
9762 0ebf8283 2019-07-24 stsp {
9763 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9764 0ebf8283 2019-07-24 stsp char *editor;
9765 0ebf8283 2019-07-24 stsp FILE *f = NULL;
9766 0ebf8283 2019-07-24 stsp
9767 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
9768 0ebf8283 2019-07-24 stsp if (err)
9769 0ebf8283 2019-07-24 stsp return err;
9770 0ebf8283 2019-07-24 stsp
9771 0ebf8283 2019-07-24 stsp if (spawn_editor(editor, path) == -1) {
9772 0ebf8283 2019-07-24 stsp err = got_error_from_errno("failed spawning editor");
9773 0ebf8283 2019-07-24 stsp goto done;
9774 0ebf8283 2019-07-24 stsp }
9775 0ebf8283 2019-07-24 stsp
9776 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
9777 0ebf8283 2019-07-24 stsp if (f == NULL) {
9778 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fopen");
9779 0ebf8283 2019-07-24 stsp goto done;
9780 0ebf8283 2019-07-24 stsp }
9781 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
9782 bfce7f83 2019-07-27 stsp if (err)
9783 bfce7f83 2019-07-27 stsp goto done;
9784 bfce7f83 2019-07-27 stsp
9785 bfce7f83 2019-07-27 stsp err = histedit_check_script(histedit_cmds, commits, repo);
9786 0ebf8283 2019-07-24 stsp done:
9787 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && err == NULL)
9788 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
9789 0ebf8283 2019-07-24 stsp free(editor);
9790 0ebf8283 2019-07-24 stsp return err;
9791 0ebf8283 2019-07-24 stsp }
9792 0ebf8283 2019-07-24 stsp
9793 0ebf8283 2019-07-24 stsp static const struct got_error *
9794 bfce7f83 2019-07-27 stsp histedit_edit_list_retry(struct got_histedit_list *, const struct got_error *,
9795 514f2ffe 2020-01-29 stsp struct got_object_id_queue *, const char *, const char *,
9796 514f2ffe 2020-01-29 stsp struct got_repository *);
9797 0ebf8283 2019-07-24 stsp
9798 0ebf8283 2019-07-24 stsp static const struct got_error *
9799 0ebf8283 2019-07-24 stsp histedit_edit_script(struct got_histedit_list *histedit_cmds,
9800 514f2ffe 2020-01-29 stsp struct got_object_id_queue *commits, const char *branch_name,
9801 b93c7142 2021-10-01 stsp int edit_logmsg_only, int fold_only, int edit_only,
9802 b93c7142 2021-10-01 stsp struct got_repository *repo)
9803 0ebf8283 2019-07-24 stsp {
9804 0ebf8283 2019-07-24 stsp const struct got_error *err;
9805 0ebf8283 2019-07-24 stsp FILE *f = NULL;
9806 0ebf8283 2019-07-24 stsp char *path = NULL;
9807 0ebf8283 2019-07-24 stsp
9808 0ebf8283 2019-07-24 stsp err = got_opentemp_named(&path, &f, "got-histedit");
9809 0ebf8283 2019-07-24 stsp if (err)
9810 0ebf8283 2019-07-24 stsp return err;
9811 0ebf8283 2019-07-24 stsp
9812 514f2ffe 2020-01-29 stsp err = write_cmd_list(f, branch_name, commits);
9813 0ebf8283 2019-07-24 stsp if (err)
9814 0ebf8283 2019-07-24 stsp goto done;
9815 0ebf8283 2019-07-24 stsp
9816 466785b9 2020-12-10 jrick err = histedit_write_commit_list(commits, f, edit_logmsg_only,
9817 b93c7142 2021-10-01 stsp fold_only, edit_only, repo);
9818 0ebf8283 2019-07-24 stsp if (err)
9819 0ebf8283 2019-07-24 stsp goto done;
9820 0ebf8283 2019-07-24 stsp
9821 b93c7142 2021-10-01 stsp if (edit_logmsg_only || fold_only || edit_only) {
9822 083957f4 2020-02-24 stsp rewind(f);
9823 083957f4 2020-02-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
9824 083957f4 2020-02-24 stsp } else {
9825 56b63ca4 2021-01-22 stsp if (fclose(f) == EOF) {
9826 083957f4 2020-02-24 stsp err = got_error_from_errno("fclose");
9827 0ebf8283 2019-07-24 stsp goto done;
9828 083957f4 2020-02-24 stsp }
9829 083957f4 2020-02-24 stsp f = NULL;
9830 083957f4 2020-02-24 stsp err = histedit_run_editor(histedit_cmds, path, commits, repo);
9831 083957f4 2020-02-24 stsp if (err) {
9832 083957f4 2020-02-24 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
9833 083957f4 2020-02-24 stsp err->code != GOT_ERR_HISTEDIT_CMD)
9834 083957f4 2020-02-24 stsp goto done;
9835 083957f4 2020-02-24 stsp err = histedit_edit_list_retry(histedit_cmds, err,
9836 083957f4 2020-02-24 stsp commits, path, branch_name, repo);
9837 083957f4 2020-02-24 stsp }
9838 0ebf8283 2019-07-24 stsp }
9839 0ebf8283 2019-07-24 stsp done:
9840 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && err == NULL)
9841 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
9842 0ebf8283 2019-07-24 stsp if (path && unlink(path) != 0 && err == NULL)
9843 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", path);
9844 0ebf8283 2019-07-24 stsp free(path);
9845 0ebf8283 2019-07-24 stsp return err;
9846 0ebf8283 2019-07-24 stsp }
9847 0ebf8283 2019-07-24 stsp
9848 0ebf8283 2019-07-24 stsp static const struct got_error *
9849 0ebf8283 2019-07-24 stsp histedit_save_list(struct got_histedit_list *histedit_cmds,
9850 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
9851 0ebf8283 2019-07-24 stsp {
9852 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9853 0ebf8283 2019-07-24 stsp char *path = NULL;
9854 0ebf8283 2019-07-24 stsp FILE *f = NULL;
9855 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
9856 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
9857 0ebf8283 2019-07-24 stsp
9858 c3022ba5 2019-07-27 stsp err = got_worktree_get_histedit_script_path(&path, worktree);
9859 0ebf8283 2019-07-24 stsp if (err)
9860 0ebf8283 2019-07-24 stsp return err;
9861 0ebf8283 2019-07-24 stsp
9862 0ebf8283 2019-07-24 stsp f = fopen(path, "w");
9863 0ebf8283 2019-07-24 stsp if (f == NULL) {
9864 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
9865 0ebf8283 2019-07-24 stsp goto done;
9866 0ebf8283 2019-07-24 stsp }
9867 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
9868 0ebf8283 2019-07-24 stsp err = histedit_write_commit(hle->commit_id, hle->cmd->name, f,
9869 0ebf8283 2019-07-24 stsp repo);
9870 0ebf8283 2019-07-24 stsp if (err)
9871 0ebf8283 2019-07-24 stsp break;
9872 0ebf8283 2019-07-24 stsp
9873 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
9874 0ebf8283 2019-07-24 stsp int n = fprintf(f, "%c %s\n",
9875 0ebf8283 2019-07-24 stsp GOT_HISTEDIT_MESG, hle->logmsg);
9876 0ebf8283 2019-07-24 stsp if (n < 0) {
9877 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
9878 0ebf8283 2019-07-24 stsp break;
9879 0ebf8283 2019-07-24 stsp }
9880 0ebf8283 2019-07-24 stsp }
9881 0ebf8283 2019-07-24 stsp }
9882 0ebf8283 2019-07-24 stsp done:
9883 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && err == NULL)
9884 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
9885 0ebf8283 2019-07-24 stsp free(path);
9886 0ebf8283 2019-07-24 stsp if (commit)
9887 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
9888 0ebf8283 2019-07-24 stsp return err;
9889 0ebf8283 2019-07-24 stsp }
9890 0ebf8283 2019-07-24 stsp
9891 bfce7f83 2019-07-27 stsp void
9892 bfce7f83 2019-07-27 stsp histedit_free_list(struct got_histedit_list *histedit_cmds)
9893 bfce7f83 2019-07-27 stsp {
9894 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
9895 bfce7f83 2019-07-27 stsp
9896 bfce7f83 2019-07-27 stsp while ((hle = TAILQ_FIRST(histedit_cmds))) {
9897 bfce7f83 2019-07-27 stsp TAILQ_REMOVE(histedit_cmds, hle, entry);
9898 bfce7f83 2019-07-27 stsp free(hle);
9899 bfce7f83 2019-07-27 stsp }
9900 bfce7f83 2019-07-27 stsp }
9901 bfce7f83 2019-07-27 stsp
9902 0ebf8283 2019-07-24 stsp static const struct got_error *
9903 0ebf8283 2019-07-24 stsp histedit_load_list(struct got_histedit_list *histedit_cmds,
9904 0ebf8283 2019-07-24 stsp const char *path, struct got_repository *repo)
9905 0ebf8283 2019-07-24 stsp {
9906 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
9907 0ebf8283 2019-07-24 stsp FILE *f = NULL;
9908 0ebf8283 2019-07-24 stsp
9909 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
9910 0ebf8283 2019-07-24 stsp if (f == NULL) {
9911 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
9912 0ebf8283 2019-07-24 stsp goto done;
9913 0ebf8283 2019-07-24 stsp }
9914 0ebf8283 2019-07-24 stsp
9915 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
9916 0ebf8283 2019-07-24 stsp done:
9917 56b63ca4 2021-01-22 stsp if (f && fclose(f) == EOF && err == NULL)
9918 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
9919 0ebf8283 2019-07-24 stsp return err;
9920 0ebf8283 2019-07-24 stsp }
9921 0ebf8283 2019-07-24 stsp
9922 0ebf8283 2019-07-24 stsp static const struct got_error *
9923 0ebf8283 2019-07-24 stsp histedit_edit_list_retry(struct got_histedit_list *histedit_cmds,
9924 bfce7f83 2019-07-27 stsp const struct got_error *edit_err, struct got_object_id_queue *commits,
9925 514f2ffe 2020-01-29 stsp const char *path, const char *branch_name, struct got_repository *repo)
9926 0ebf8283 2019-07-24 stsp {
9927 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL, *prev_err = edit_err;
9928 0ebf8283 2019-07-24 stsp int resp = ' ';
9929 0ebf8283 2019-07-24 stsp
9930 b006047e 2019-07-25 stsp while (resp != 'c' && resp != 'r' && resp != 'a') {
9931 0ebf8283 2019-07-24 stsp printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
9932 bfce7f83 2019-07-27 stsp "or (a)bort: ", getprogname(), prev_err->msg);
9933 0ebf8283 2019-07-24 stsp resp = getchar();
9934 a61a4414 2019-08-07 stsp if (resp == '\n')
9935 a61a4414 2019-08-07 stsp resp = getchar();
9936 426ebf2e 2019-07-25 stsp if (resp == 'c') {
9937 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
9938 bfce7f83 2019-07-27 stsp err = histedit_run_editor(histedit_cmds, path, commits,
9939 bfce7f83 2019-07-27 stsp repo);
9940 426ebf2e 2019-07-25 stsp if (err) {
9941 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
9942 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
9943 426ebf2e 2019-07-25 stsp break;
9944 bfce7f83 2019-07-27 stsp prev_err = err;
9945 426ebf2e 2019-07-25 stsp resp = ' ';
9946 426ebf2e 2019-07-25 stsp continue;
9947 426ebf2e 2019-07-25 stsp }
9948 bfce7f83 2019-07-27 stsp break;
9949 426ebf2e 2019-07-25 stsp } else if (resp == 'r') {
9950 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
9951 0ebf8283 2019-07-24 stsp err = histedit_edit_script(histedit_cmds,
9952 b93c7142 2021-10-01 stsp commits, branch_name, 0, 0, 0, repo);
9953 426ebf2e 2019-07-25 stsp if (err) {
9954 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
9955 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
9956 426ebf2e 2019-07-25 stsp break;
9957 bfce7f83 2019-07-27 stsp prev_err = err;
9958 426ebf2e 2019-07-25 stsp resp = ' ';
9959 426ebf2e 2019-07-25 stsp continue;
9960 426ebf2e 2019-07-25 stsp }
9961 bfce7f83 2019-07-27 stsp break;
9962 426ebf2e 2019-07-25 stsp } else if (resp == 'a') {
9963 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CANCEL);
9964 0ebf8283 2019-07-24 stsp break;
9965 426ebf2e 2019-07-25 stsp } else
9966 0ebf8283 2019-07-24 stsp printf("invalid response '%c'\n", resp);
9967 0ebf8283 2019-07-24 stsp }
9968 0ebf8283 2019-07-24 stsp
9969 0ebf8283 2019-07-24 stsp return err;
9970 0ebf8283 2019-07-24 stsp }
9971 0ebf8283 2019-07-24 stsp
9972 0ebf8283 2019-07-24 stsp static const struct got_error *
9973 0ebf8283 2019-07-24 stsp histedit_complete(struct got_worktree *worktree,
9974 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
9975 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_repository *repo)
9976 0ebf8283 2019-07-24 stsp {
9977 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
9978 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
9979 3e3a69f1 2019-07-25 stsp return got_worktree_histedit_complete(worktree, fileindex, tmp_branch,
9980 3e3a69f1 2019-07-25 stsp branch, repo);
9981 0ebf8283 2019-07-24 stsp }
9982 0ebf8283 2019-07-24 stsp
9983 0ebf8283 2019-07-24 stsp static const struct got_error *
9984 0ebf8283 2019-07-24 stsp show_histedit_progress(struct got_commit_object *commit,
9985 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle, struct got_object_id *new_id)
9986 0ebf8283 2019-07-24 stsp {
9987 0ebf8283 2019-07-24 stsp const struct got_error *err;
9988 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
9989 0ebf8283 2019-07-24 stsp
9990 0ebf8283 2019-07-24 stsp err = got_object_id_str(&old_id_str, hle->commit_id);
9991 0ebf8283 2019-07-24 stsp if (err)
9992 0ebf8283 2019-07-24 stsp goto done;
9993 0ebf8283 2019-07-24 stsp
9994 0ebf8283 2019-07-24 stsp if (new_id) {
9995 0ebf8283 2019-07-24 stsp err = got_object_id_str(&new_id_str, new_id);
9996 0ebf8283 2019-07-24 stsp if (err)
9997 0ebf8283 2019-07-24 stsp goto done;
9998 0ebf8283 2019-07-24 stsp }
9999 0ebf8283 2019-07-24 stsp
10000 0ebf8283 2019-07-24 stsp old_id_str[12] = '\0';
10001 0ebf8283 2019-07-24 stsp if (new_id_str)
10002 0ebf8283 2019-07-24 stsp new_id_str[12] = '\0';
10003 0ebf8283 2019-07-24 stsp
10004 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
10005 0ebf8283 2019-07-24 stsp logmsg = strdup(hle->logmsg);
10006 0ebf8283 2019-07-24 stsp if (logmsg == NULL) {
10007 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
10008 0ebf8283 2019-07-24 stsp goto done;
10009 0ebf8283 2019-07-24 stsp }
10010 0ebf8283 2019-07-24 stsp trim_logmsg(logmsg, 42);
10011 0ebf8283 2019-07-24 stsp } else {
10012 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
10013 0ebf8283 2019-07-24 stsp if (err)
10014 0ebf8283 2019-07-24 stsp goto done;
10015 0ebf8283 2019-07-24 stsp }
10016 0ebf8283 2019-07-24 stsp
10017 0ebf8283 2019-07-24 stsp switch (hle->cmd->code) {
10018 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_PICK:
10019 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_EDIT:
10020 0ebf8283 2019-07-24 stsp printf("%s -> %s: %s\n", old_id_str,
10021 0ebf8283 2019-07-24 stsp new_id_str ? new_id_str : "no-op change", logmsg);
10022 0ebf8283 2019-07-24 stsp break;
10023 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_DROP:
10024 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_FOLD:
10025 0ebf8283 2019-07-24 stsp printf("%s -> %s commit: %s\n", old_id_str, hle->cmd->name,
10026 0ebf8283 2019-07-24 stsp logmsg);
10027 0ebf8283 2019-07-24 stsp break;
10028 0ebf8283 2019-07-24 stsp default:
10029 0ebf8283 2019-07-24 stsp break;
10030 0ebf8283 2019-07-24 stsp }
10031 0ebf8283 2019-07-24 stsp done:
10032 0ebf8283 2019-07-24 stsp free(old_id_str);
10033 0ebf8283 2019-07-24 stsp free(new_id_str);
10034 0ebf8283 2019-07-24 stsp return err;
10035 0ebf8283 2019-07-24 stsp }
10036 0ebf8283 2019-07-24 stsp
10037 0ebf8283 2019-07-24 stsp static const struct got_error *
10038 0ebf8283 2019-07-24 stsp histedit_commit(struct got_pathlist_head *merged_paths,
10039 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
10040 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_histedit_list_entry *hle,
10041 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
10042 0ebf8283 2019-07-24 stsp {
10043 0ebf8283 2019-07-24 stsp const struct got_error *err;
10044 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
10045 0ebf8283 2019-07-24 stsp struct got_object_id *new_commit_id;
10046 0ebf8283 2019-07-24 stsp
10047 0ebf8283 2019-07-24 stsp if ((hle->cmd->code == GOT_HISTEDIT_EDIT || get_folded_commits(hle))
10048 0ebf8283 2019-07-24 stsp && hle->logmsg == NULL) {
10049 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
10050 0ebf8283 2019-07-24 stsp if (err)
10051 0ebf8283 2019-07-24 stsp return err;
10052 0ebf8283 2019-07-24 stsp }
10053 0ebf8283 2019-07-24 stsp
10054 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
10055 0ebf8283 2019-07-24 stsp if (err)
10056 0ebf8283 2019-07-24 stsp return err;
10057 0ebf8283 2019-07-24 stsp
10058 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_commit(&new_commit_id, merged_paths,
10059 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, hle->commit_id,
10060 3e3a69f1 2019-07-25 stsp hle->logmsg, repo);
10061 0ebf8283 2019-07-24 stsp if (err) {
10062 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_NO_CHANGES)
10063 0ebf8283 2019-07-24 stsp goto done;
10064 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, NULL);
10065 0ebf8283 2019-07-24 stsp } else {
10066 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, new_commit_id);
10067 0ebf8283 2019-07-24 stsp free(new_commit_id);
10068 0ebf8283 2019-07-24 stsp }
10069 0ebf8283 2019-07-24 stsp done:
10070 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10071 0ebf8283 2019-07-24 stsp return err;
10072 0ebf8283 2019-07-24 stsp }
10073 0ebf8283 2019-07-24 stsp
10074 0ebf8283 2019-07-24 stsp static const struct got_error *
10075 0ebf8283 2019-07-24 stsp histedit_skip_commit(struct got_histedit_list_entry *hle,
10076 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
10077 0ebf8283 2019-07-24 stsp {
10078 0ebf8283 2019-07-24 stsp const struct got_error *error;
10079 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
10080 0ebf8283 2019-07-24 stsp
10081 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_skip_commit(worktree, hle->commit_id,
10082 0ebf8283 2019-07-24 stsp repo);
10083 0ebf8283 2019-07-24 stsp if (error)
10084 0ebf8283 2019-07-24 stsp return error;
10085 0ebf8283 2019-07-24 stsp
10086 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo, hle->commit_id);
10087 0ebf8283 2019-07-24 stsp if (error)
10088 0ebf8283 2019-07-24 stsp return error;
10089 0ebf8283 2019-07-24 stsp
10090 0ebf8283 2019-07-24 stsp error = show_histedit_progress(commit, hle, NULL);
10091 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10092 0ebf8283 2019-07-24 stsp return error;
10093 ab20a43a 2020-01-29 stsp }
10094 ab20a43a 2020-01-29 stsp
10095 ab20a43a 2020-01-29 stsp static const struct got_error *
10096 ab20a43a 2020-01-29 stsp check_local_changes(void *arg, unsigned char status,
10097 ab20a43a 2020-01-29 stsp unsigned char staged_status, const char *path,
10098 ab20a43a 2020-01-29 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
10099 ab20a43a 2020-01-29 stsp struct got_object_id *commit_id, int dirfd, const char *de_name)
10100 ab20a43a 2020-01-29 stsp {
10101 ab20a43a 2020-01-29 stsp int *have_local_changes = arg;
10102 ab20a43a 2020-01-29 stsp
10103 ab20a43a 2020-01-29 stsp switch (status) {
10104 ab20a43a 2020-01-29 stsp case GOT_STATUS_ADD:
10105 ab20a43a 2020-01-29 stsp case GOT_STATUS_DELETE:
10106 ab20a43a 2020-01-29 stsp case GOT_STATUS_MODIFY:
10107 ab20a43a 2020-01-29 stsp case GOT_STATUS_CONFLICT:
10108 ab20a43a 2020-01-29 stsp *have_local_changes = 1;
10109 ab20a43a 2020-01-29 stsp return got_error(GOT_ERR_CANCELLED);
10110 ab20a43a 2020-01-29 stsp default:
10111 ab20a43a 2020-01-29 stsp break;
10112 ab20a43a 2020-01-29 stsp }
10113 ab20a43a 2020-01-29 stsp
10114 ab20a43a 2020-01-29 stsp switch (staged_status) {
10115 ab20a43a 2020-01-29 stsp case GOT_STATUS_ADD:
10116 ab20a43a 2020-01-29 stsp case GOT_STATUS_DELETE:
10117 ab20a43a 2020-01-29 stsp case GOT_STATUS_MODIFY:
10118 ab20a43a 2020-01-29 stsp *have_local_changes = 1;
10119 ab20a43a 2020-01-29 stsp return got_error(GOT_ERR_CANCELLED);
10120 ab20a43a 2020-01-29 stsp default:
10121 ab20a43a 2020-01-29 stsp break;
10122 ab20a43a 2020-01-29 stsp }
10123 ab20a43a 2020-01-29 stsp
10124 ab20a43a 2020-01-29 stsp return NULL;
10125 0ebf8283 2019-07-24 stsp }
10126 0ebf8283 2019-07-24 stsp
10127 0ebf8283 2019-07-24 stsp static const struct got_error *
10128 0ebf8283 2019-07-24 stsp cmd_histedit(int argc, char *argv[])
10129 0ebf8283 2019-07-24 stsp {
10130 0ebf8283 2019-07-24 stsp const struct got_error *error = NULL;
10131 0ebf8283 2019-07-24 stsp struct got_worktree *worktree = NULL;
10132 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
10133 0ebf8283 2019-07-24 stsp struct got_repository *repo = NULL;
10134 0ebf8283 2019-07-24 stsp char *cwd = NULL;
10135 0ebf8283 2019-07-24 stsp struct got_reference *branch = NULL;
10136 0ebf8283 2019-07-24 stsp struct got_reference *tmp_branch = NULL;
10137 0ebf8283 2019-07-24 stsp struct got_object_id *resume_commit_id = NULL;
10138 0ebf8283 2019-07-24 stsp struct got_object_id *base_commit_id = NULL;
10139 0ebf8283 2019-07-24 stsp struct got_object_id *head_commit_id = NULL;
10140 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
10141 f259c4c1 2021-09-24 stsp int ch, rebase_in_progress = 0, merge_in_progress = 0;
10142 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
10143 0ebf8283 2019-07-24 stsp int edit_in_progress = 0, abort_edit = 0, continue_edit = 0;
10144 b93c7142 2021-10-01 stsp int edit_logmsg_only = 0, fold_only = 0, edit_only = 0;
10145 643b85bc 2021-07-16 stsp int list_backups = 0, delete_backups = 0;
10146 0ebf8283 2019-07-24 stsp const char *edit_script_path = NULL;
10147 0ebf8283 2019-07-24 stsp struct got_object_id_queue commits;
10148 0ebf8283 2019-07-24 stsp struct got_pathlist_head merged_paths;
10149 0ebf8283 2019-07-24 stsp const struct got_object_id_queue *parent_ids;
10150 0ebf8283 2019-07-24 stsp struct got_object_qid *pid;
10151 0ebf8283 2019-07-24 stsp struct got_histedit_list histedit_cmds;
10152 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
10153 0ebf8283 2019-07-24 stsp
10154 dbdddfee 2021-06-23 naddy STAILQ_INIT(&commits);
10155 0ebf8283 2019-07-24 stsp TAILQ_INIT(&histedit_cmds);
10156 0ebf8283 2019-07-24 stsp TAILQ_INIT(&merged_paths);
10157 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
10158 0ebf8283 2019-07-24 stsp
10159 b93c7142 2021-10-01 stsp while ((ch = getopt(argc, argv, "acefF:mlX")) != -1) {
10160 0ebf8283 2019-07-24 stsp switch (ch) {
10161 0ebf8283 2019-07-24 stsp case 'a':
10162 0ebf8283 2019-07-24 stsp abort_edit = 1;
10163 0ebf8283 2019-07-24 stsp break;
10164 0ebf8283 2019-07-24 stsp case 'c':
10165 0ebf8283 2019-07-24 stsp continue_edit = 1;
10166 0ebf8283 2019-07-24 stsp break;
10167 b93c7142 2021-10-01 stsp case 'e':
10168 b93c7142 2021-10-01 stsp edit_only = 1;
10169 b93c7142 2021-10-01 stsp break;
10170 466785b9 2020-12-10 jrick case 'f':
10171 466785b9 2020-12-10 jrick fold_only = 1;
10172 466785b9 2020-12-10 jrick break;
10173 0ebf8283 2019-07-24 stsp case 'F':
10174 0ebf8283 2019-07-24 stsp edit_script_path = optarg;
10175 0ebf8283 2019-07-24 stsp break;
10176 083957f4 2020-02-24 stsp case 'm':
10177 083957f4 2020-02-24 stsp edit_logmsg_only = 1;
10178 083957f4 2020-02-24 stsp break;
10179 e600f124 2021-03-21 stsp case 'l':
10180 e600f124 2021-03-21 stsp list_backups = 1;
10181 e600f124 2021-03-21 stsp break;
10182 643b85bc 2021-07-16 stsp case 'X':
10183 643b85bc 2021-07-16 stsp delete_backups = 1;
10184 643b85bc 2021-07-16 stsp break;
10185 0ebf8283 2019-07-24 stsp default:
10186 0ebf8283 2019-07-24 stsp usage_histedit();
10187 0ebf8283 2019-07-24 stsp /* NOTREACHED */
10188 0ebf8283 2019-07-24 stsp }
10189 0ebf8283 2019-07-24 stsp }
10190 0ebf8283 2019-07-24 stsp
10191 0ebf8283 2019-07-24 stsp argc -= optind;
10192 0ebf8283 2019-07-24 stsp argv += optind;
10193 0ebf8283 2019-07-24 stsp
10194 0ebf8283 2019-07-24 stsp #ifndef PROFILE
10195 0ebf8283 2019-07-24 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
10196 0ebf8283 2019-07-24 stsp "unveil", NULL) == -1)
10197 0ebf8283 2019-07-24 stsp err(1, "pledge");
10198 0ebf8283 2019-07-24 stsp #endif
10199 0ebf8283 2019-07-24 stsp if (abort_edit && continue_edit)
10200 ff69268e 2020-12-13 stsp option_conflict('a', 'c');
10201 083957f4 2020-02-24 stsp if (edit_script_path && edit_logmsg_only)
10202 ff69268e 2020-12-13 stsp option_conflict('F', 'm');
10203 083957f4 2020-02-24 stsp if (abort_edit && edit_logmsg_only)
10204 ff69268e 2020-12-13 stsp option_conflict('a', 'm');
10205 083957f4 2020-02-24 stsp if (continue_edit && edit_logmsg_only)
10206 ff69268e 2020-12-13 stsp option_conflict('c', 'm');
10207 466785b9 2020-12-10 jrick if (abort_edit && fold_only)
10208 ff69268e 2020-12-13 stsp option_conflict('a', 'f');
10209 ff69268e 2020-12-13 stsp if (continue_edit && fold_only)
10210 ff69268e 2020-12-13 stsp option_conflict('c', 'f');
10211 466785b9 2020-12-10 jrick if (fold_only && edit_logmsg_only)
10212 ff69268e 2020-12-13 stsp option_conflict('f', 'm');
10213 b3805337 2020-12-13 stsp if (edit_script_path && fold_only)
10214 b3805337 2020-12-13 stsp option_conflict('F', 'f');
10215 b93c7142 2021-10-01 stsp if (abort_edit && edit_only)
10216 b93c7142 2021-10-01 stsp option_conflict('a', 'e');
10217 b93c7142 2021-10-01 stsp if (continue_edit && edit_only)
10218 b93c7142 2021-10-01 stsp option_conflict('c', 'e');
10219 b93c7142 2021-10-01 stsp if (edit_only && edit_logmsg_only)
10220 b93c7142 2021-10-01 stsp option_conflict('e', 'm');
10221 b93c7142 2021-10-01 stsp if (edit_script_path && edit_only)
10222 b93c7142 2021-10-01 stsp option_conflict('F', 'e');
10223 e600f124 2021-03-21 stsp if (list_backups) {
10224 e600f124 2021-03-21 stsp if (abort_edit)
10225 e600f124 2021-03-21 stsp option_conflict('l', 'a');
10226 e600f124 2021-03-21 stsp if (continue_edit)
10227 e600f124 2021-03-21 stsp option_conflict('l', 'c');
10228 e600f124 2021-03-21 stsp if (edit_script_path)
10229 e600f124 2021-03-21 stsp option_conflict('l', 'F');
10230 e600f124 2021-03-21 stsp if (edit_logmsg_only)
10231 e600f124 2021-03-21 stsp option_conflict('l', 'm');
10232 e600f124 2021-03-21 stsp if (fold_only)
10233 e600f124 2021-03-21 stsp option_conflict('l', 'f');
10234 b93c7142 2021-10-01 stsp if (edit_only)
10235 b93c7142 2021-10-01 stsp option_conflict('l', 'e');
10236 643b85bc 2021-07-16 stsp if (delete_backups)
10237 643b85bc 2021-07-16 stsp option_conflict('l', 'X');
10238 e600f124 2021-03-21 stsp if (argc != 0 && argc != 1)
10239 e600f124 2021-03-21 stsp usage_histedit();
10240 643b85bc 2021-07-16 stsp } else if (delete_backups) {
10241 643b85bc 2021-07-16 stsp if (abort_edit)
10242 643b85bc 2021-07-16 stsp option_conflict('X', 'a');
10243 643b85bc 2021-07-16 stsp if (continue_edit)
10244 643b85bc 2021-07-16 stsp option_conflict('X', 'c');
10245 643b85bc 2021-07-16 stsp if (edit_script_path)
10246 643b85bc 2021-07-16 stsp option_conflict('X', 'F');
10247 643b85bc 2021-07-16 stsp if (edit_logmsg_only)
10248 643b85bc 2021-07-16 stsp option_conflict('X', 'm');
10249 643b85bc 2021-07-16 stsp if (fold_only)
10250 643b85bc 2021-07-16 stsp option_conflict('X', 'f');
10251 b93c7142 2021-10-01 stsp if (edit_only)
10252 b93c7142 2021-10-01 stsp option_conflict('X', 'e');
10253 643b85bc 2021-07-16 stsp if (list_backups)
10254 643b85bc 2021-07-16 stsp option_conflict('X', 'l');
10255 643b85bc 2021-07-16 stsp if (argc != 0 && argc != 1)
10256 643b85bc 2021-07-16 stsp usage_histedit();
10257 e600f124 2021-03-21 stsp } else if (argc != 0)
10258 0ebf8283 2019-07-24 stsp usage_histedit();
10259 0ebf8283 2019-07-24 stsp
10260 0ebf8283 2019-07-24 stsp /*
10261 0ebf8283 2019-07-24 stsp * This command cannot apply unveil(2) in all cases because the
10262 0ebf8283 2019-07-24 stsp * user may choose to run an editor to edit the histedit script
10263 0ebf8283 2019-07-24 stsp * and to edit individual commit log messages.
10264 0ebf8283 2019-07-24 stsp * unveil(2) traverses exec(2); if an editor is used we have to
10265 0ebf8283 2019-07-24 stsp * apply unveil after edit script and log messages have been written.
10266 0ebf8283 2019-07-24 stsp * XXX TODO: Make use of unveil(2) where possible.
10267 0ebf8283 2019-07-24 stsp */
10268 0ebf8283 2019-07-24 stsp
10269 0ebf8283 2019-07-24 stsp cwd = getcwd(NULL, 0);
10270 0ebf8283 2019-07-24 stsp if (cwd == NULL) {
10271 0ebf8283 2019-07-24 stsp error = got_error_from_errno("getcwd");
10272 0ebf8283 2019-07-24 stsp goto done;
10273 0ebf8283 2019-07-24 stsp }
10274 0ebf8283 2019-07-24 stsp error = got_worktree_open(&worktree, cwd);
10275 fa51e947 2020-03-27 stsp if (error) {
10276 643b85bc 2021-07-16 stsp if (list_backups || delete_backups) {
10277 e600f124 2021-03-21 stsp if (error->code != GOT_ERR_NOT_WORKTREE)
10278 e600f124 2021-03-21 stsp goto done;
10279 e600f124 2021-03-21 stsp } else {
10280 e600f124 2021-03-21 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
10281 e600f124 2021-03-21 stsp error = wrap_not_worktree_error(error,
10282 e600f124 2021-03-21 stsp "histedit", cwd);
10283 e600f124 2021-03-21 stsp goto done;
10284 e600f124 2021-03-21 stsp }
10285 e600f124 2021-03-21 stsp }
10286 e600f124 2021-03-21 stsp
10287 643b85bc 2021-07-16 stsp if (list_backups || delete_backups) {
10288 e600f124 2021-03-21 stsp error = got_repo_open(&repo,
10289 e600f124 2021-03-21 stsp worktree ? got_worktree_get_repo_path(worktree) : cwd,
10290 e600f124 2021-03-21 stsp NULL);
10291 e600f124 2021-03-21 stsp if (error != NULL)
10292 e600f124 2021-03-21 stsp goto done;
10293 e600f124 2021-03-21 stsp error = apply_unveil(got_repo_get_path(repo), 0,
10294 e600f124 2021-03-21 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
10295 e600f124 2021-03-21 stsp if (error)
10296 e600f124 2021-03-21 stsp goto done;
10297 643b85bc 2021-07-16 stsp error = process_backup_refs(
10298 e600f124 2021-03-21 stsp GOT_WORKTREE_HISTEDIT_BACKUP_REF_PREFIX,
10299 643b85bc 2021-07-16 stsp argc == 1 ? argv[0] : NULL, delete_backups, repo);
10300 e600f124 2021-03-21 stsp goto done; /* nothing else to do */
10301 fa51e947 2020-03-27 stsp }
10302 0ebf8283 2019-07-24 stsp
10303 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
10304 c9956ddf 2019-09-08 stsp NULL);
10305 0ebf8283 2019-07-24 stsp if (error != NULL)
10306 0ebf8283 2019-07-24 stsp goto done;
10307 0ebf8283 2019-07-24 stsp
10308 0ebf8283 2019-07-24 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
10309 0ebf8283 2019-07-24 stsp if (error)
10310 0ebf8283 2019-07-24 stsp goto done;
10311 0ebf8283 2019-07-24 stsp if (rebase_in_progress) {
10312 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_REBASING);
10313 f259c4c1 2021-09-24 stsp goto done;
10314 f259c4c1 2021-09-24 stsp }
10315 f259c4c1 2021-09-24 stsp
10316 f259c4c1 2021-09-24 stsp error = got_worktree_merge_in_progress(&merge_in_progress, worktree,
10317 f259c4c1 2021-09-24 stsp repo);
10318 f259c4c1 2021-09-24 stsp if (error)
10319 f259c4c1 2021-09-24 stsp goto done;
10320 f259c4c1 2021-09-24 stsp if (merge_in_progress) {
10321 f259c4c1 2021-09-24 stsp error = got_error(GOT_ERR_MERGE_BUSY);
10322 0ebf8283 2019-07-24 stsp goto done;
10323 0ebf8283 2019-07-24 stsp }
10324 0ebf8283 2019-07-24 stsp
10325 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_in_progress(&edit_in_progress, worktree);
10326 0ebf8283 2019-07-24 stsp if (error)
10327 0ebf8283 2019-07-24 stsp goto done;
10328 0ebf8283 2019-07-24 stsp
10329 083957f4 2020-02-24 stsp if (edit_in_progress && edit_logmsg_only) {
10330 083957f4 2020-02-24 stsp error = got_error_msg(GOT_ERR_HISTEDIT_BUSY,
10331 083957f4 2020-02-24 stsp "histedit operation is in progress in this "
10332 083957f4 2020-02-24 stsp "work tree and must be continued or aborted "
10333 083957f4 2020-02-24 stsp "before the -m option can be used");
10334 083957f4 2020-02-24 stsp goto done;
10335 083957f4 2020-02-24 stsp }
10336 466785b9 2020-12-10 jrick if (edit_in_progress && fold_only) {
10337 466785b9 2020-12-10 jrick error = got_error_msg(GOT_ERR_HISTEDIT_BUSY,
10338 466785b9 2020-12-10 jrick "histedit operation is in progress in this "
10339 466785b9 2020-12-10 jrick "work tree and must be continued or aborted "
10340 466785b9 2020-12-10 jrick "before the -f option can be used");
10341 466785b9 2020-12-10 jrick goto done;
10342 466785b9 2020-12-10 jrick }
10343 b93c7142 2021-10-01 stsp if (edit_in_progress && edit_only) {
10344 b93c7142 2021-10-01 stsp error = got_error_msg(GOT_ERR_HISTEDIT_BUSY,
10345 b93c7142 2021-10-01 stsp "histedit operation is in progress in this "
10346 b93c7142 2021-10-01 stsp "work tree and must be continued or aborted "
10347 b93c7142 2021-10-01 stsp "before the -e option can be used");
10348 b93c7142 2021-10-01 stsp goto done;
10349 b93c7142 2021-10-01 stsp }
10350 083957f4 2020-02-24 stsp
10351 0ebf8283 2019-07-24 stsp if (edit_in_progress && abort_edit) {
10352 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
10353 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
10354 3e3a69f1 2019-07-25 stsp worktree, repo);
10355 0ebf8283 2019-07-24 stsp if (error)
10356 0ebf8283 2019-07-24 stsp goto done;
10357 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
10358 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
10359 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_abort(worktree, fileindex, repo,
10360 41f061b2 2021-10-05 stsp branch, base_commit_id, abort_progress, &upa);
10361 0ebf8283 2019-07-24 stsp if (error)
10362 0ebf8283 2019-07-24 stsp goto done;
10363 0ebf8283 2019-07-24 stsp printf("Histedit of %s aborted\n",
10364 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
10365 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
10366 0ebf8283 2019-07-24 stsp goto done; /* nothing else to do */
10367 0ebf8283 2019-07-24 stsp } else if (abort_edit) {
10368 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
10369 0ebf8283 2019-07-24 stsp goto done;
10370 0ebf8283 2019-07-24 stsp }
10371 0ebf8283 2019-07-24 stsp
10372 0ebf8283 2019-07-24 stsp if (continue_edit) {
10373 0ebf8283 2019-07-24 stsp char *path;
10374 0ebf8283 2019-07-24 stsp
10375 0ebf8283 2019-07-24 stsp if (!edit_in_progress) {
10376 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
10377 0ebf8283 2019-07-24 stsp goto done;
10378 0ebf8283 2019-07-24 stsp }
10379 0ebf8283 2019-07-24 stsp
10380 c3022ba5 2019-07-27 stsp error = got_worktree_get_histedit_script_path(&path, worktree);
10381 0ebf8283 2019-07-24 stsp if (error)
10382 0ebf8283 2019-07-24 stsp goto done;
10383 0ebf8283 2019-07-24 stsp
10384 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds, path, repo);
10385 0ebf8283 2019-07-24 stsp free(path);
10386 0ebf8283 2019-07-24 stsp if (error)
10387 0ebf8283 2019-07-24 stsp goto done;
10388 0ebf8283 2019-07-24 stsp
10389 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
10390 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
10391 3e3a69f1 2019-07-25 stsp worktree, repo);
10392 0ebf8283 2019-07-24 stsp if (error)
10393 0ebf8283 2019-07-24 stsp goto done;
10394 0ebf8283 2019-07-24 stsp
10395 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
10396 0ebf8283 2019-07-24 stsp if (error)
10397 0ebf8283 2019-07-24 stsp goto done;
10398 0ebf8283 2019-07-24 stsp
10399 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
10400 0ebf8283 2019-07-24 stsp head_commit_id);
10401 0ebf8283 2019-07-24 stsp if (error)
10402 0ebf8283 2019-07-24 stsp goto done;
10403 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
10404 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
10405 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
10406 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
10407 3aac7cf7 2019-07-25 stsp goto done;
10408 3aac7cf7 2019-07-25 stsp }
10409 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
10410 8ca9bd68 2019-07-25 stsp base_commit_id, got_worktree_get_path_prefix(worktree),
10411 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
10412 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10413 0ebf8283 2019-07-24 stsp commit = NULL;
10414 0ebf8283 2019-07-24 stsp if (error)
10415 0ebf8283 2019-07-24 stsp goto done;
10416 0ebf8283 2019-07-24 stsp } else {
10417 0ebf8283 2019-07-24 stsp if (edit_in_progress) {
10418 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_HISTEDIT_BUSY);
10419 0ebf8283 2019-07-24 stsp goto done;
10420 0ebf8283 2019-07-24 stsp }
10421 0ebf8283 2019-07-24 stsp
10422 0ebf8283 2019-07-24 stsp error = got_ref_open(&branch, repo,
10423 0ebf8283 2019-07-24 stsp got_worktree_get_head_ref_name(worktree), 0);
10424 0ebf8283 2019-07-24 stsp if (error != NULL)
10425 0ebf8283 2019-07-24 stsp goto done;
10426 0ebf8283 2019-07-24 stsp
10427 c7d20a3f 2019-07-30 stsp if (strncmp(got_ref_get_name(branch), "refs/heads/", 11) != 0) {
10428 c7d20a3f 2019-07-30 stsp error = got_error_msg(GOT_ERR_COMMIT_BRANCH,
10429 c7d20a3f 2019-07-30 stsp "will not edit commit history of a branch outside "
10430 c7d20a3f 2019-07-30 stsp "the \"refs/heads/\" reference namespace");
10431 c7d20a3f 2019-07-30 stsp goto done;
10432 c7d20a3f 2019-07-30 stsp }
10433 c7d20a3f 2019-07-30 stsp
10434 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
10435 bfce7f83 2019-07-27 stsp got_ref_close(branch);
10436 bfce7f83 2019-07-27 stsp branch = NULL;
10437 0ebf8283 2019-07-24 stsp if (error)
10438 0ebf8283 2019-07-24 stsp goto done;
10439 0ebf8283 2019-07-24 stsp
10440 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
10441 0ebf8283 2019-07-24 stsp head_commit_id);
10442 0ebf8283 2019-07-24 stsp if (error)
10443 0ebf8283 2019-07-24 stsp goto done;
10444 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
10445 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
10446 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
10447 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
10448 3aac7cf7 2019-07-25 stsp goto done;
10449 3aac7cf7 2019-07-25 stsp }
10450 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
10451 8ca9bd68 2019-07-25 stsp got_worktree_get_base_commit_id(worktree),
10452 8ca9bd68 2019-07-25 stsp got_worktree_get_path_prefix(worktree),
10453 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
10454 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10455 0ebf8283 2019-07-24 stsp commit = NULL;
10456 0ebf8283 2019-07-24 stsp if (error)
10457 0ebf8283 2019-07-24 stsp goto done;
10458 0ebf8283 2019-07-24 stsp
10459 dbdddfee 2021-06-23 naddy if (STAILQ_EMPTY(&commits)) {
10460 c5996fff 2020-01-29 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
10461 c5996fff 2020-01-29 stsp goto done;
10462 c5996fff 2020-01-29 stsp }
10463 c5996fff 2020-01-29 stsp
10464 bfce7f83 2019-07-27 stsp error = got_worktree_histedit_prepare(&tmp_branch, &branch,
10465 bfce7f83 2019-07-27 stsp &base_commit_id, &fileindex, worktree, repo);
10466 bfce7f83 2019-07-27 stsp if (error)
10467 bfce7f83 2019-07-27 stsp goto done;
10468 bfce7f83 2019-07-27 stsp
10469 0ebf8283 2019-07-24 stsp if (edit_script_path) {
10470 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds,
10471 0ebf8283 2019-07-24 stsp edit_script_path, repo);
10472 6ba2bea2 2019-07-27 stsp if (error) {
10473 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
10474 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
10475 41f061b2 2021-10-05 stsp abort_progress, &upa);
10476 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
10477 0ebf8283 2019-07-24 stsp goto done;
10478 6ba2bea2 2019-07-27 stsp }
10479 0ebf8283 2019-07-24 stsp } else {
10480 514f2ffe 2020-01-29 stsp const char *branch_name;
10481 514f2ffe 2020-01-29 stsp branch_name = got_ref_get_symref_target(branch);
10482 514f2ffe 2020-01-29 stsp if (strncmp(branch_name, "refs/heads/", 11) == 0)
10483 514f2ffe 2020-01-29 stsp branch_name += 11;
10484 0ebf8283 2019-07-24 stsp error = histedit_edit_script(&histedit_cmds, &commits,
10485 b93c7142 2021-10-01 stsp branch_name, edit_logmsg_only, fold_only,
10486 b93c7142 2021-10-01 stsp edit_only, repo);
10487 6ba2bea2 2019-07-27 stsp if (error) {
10488 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
10489 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
10490 41f061b2 2021-10-05 stsp abort_progress, &upa);
10491 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
10492 0ebf8283 2019-07-24 stsp goto done;
10493 6ba2bea2 2019-07-27 stsp }
10494 0ebf8283 2019-07-24 stsp
10495 0ebf8283 2019-07-24 stsp }
10496 0ebf8283 2019-07-24 stsp
10497 0ebf8283 2019-07-24 stsp error = histedit_save_list(&histedit_cmds, worktree,
10498 0ebf8283 2019-07-24 stsp repo);
10499 6ba2bea2 2019-07-27 stsp if (error) {
10500 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
10501 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
10502 41f061b2 2021-10-05 stsp abort_progress, &upa);
10503 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
10504 0ebf8283 2019-07-24 stsp goto done;
10505 6ba2bea2 2019-07-27 stsp }
10506 0ebf8283 2019-07-24 stsp
10507 0ebf8283 2019-07-24 stsp }
10508 0ebf8283 2019-07-24 stsp
10509 4ec14e60 2019-08-28 hiltjo error = histedit_check_script(&histedit_cmds, &commits, repo);
10510 4ec14e60 2019-08-28 hiltjo if (error)
10511 0ebf8283 2019-07-24 stsp goto done;
10512 0ebf8283 2019-07-24 stsp
10513 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, &histedit_cmds, entry) {
10514 0ebf8283 2019-07-24 stsp if (resume_commit_id) {
10515 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(hle->commit_id,
10516 0ebf8283 2019-07-24 stsp resume_commit_id) != 0)
10517 0ebf8283 2019-07-24 stsp continue;
10518 0ebf8283 2019-07-24 stsp
10519 0ebf8283 2019-07-24 stsp resume_commit_id = NULL;
10520 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP ||
10521 0ebf8283 2019-07-24 stsp hle->cmd->code == GOT_HISTEDIT_FOLD) {
10522 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree,
10523 62d463ca 2020-10-20 naddy repo);
10524 ab20a43a 2020-01-29 stsp if (error)
10525 ab20a43a 2020-01-29 stsp goto done;
10526 0ebf8283 2019-07-24 stsp } else {
10527 ab20a43a 2020-01-29 stsp struct got_pathlist_head paths;
10528 ab20a43a 2020-01-29 stsp int have_changes = 0;
10529 ab20a43a 2020-01-29 stsp
10530 ab20a43a 2020-01-29 stsp TAILQ_INIT(&paths);
10531 ab20a43a 2020-01-29 stsp error = got_pathlist_append(&paths, "", NULL);
10532 ab20a43a 2020-01-29 stsp if (error)
10533 ab20a43a 2020-01-29 stsp goto done;
10534 ab20a43a 2020-01-29 stsp error = got_worktree_status(worktree, &paths,
10535 f6343036 2021-06-22 stsp repo, 0, check_local_changes, &have_changes,
10536 ab20a43a 2020-01-29 stsp check_cancelled, NULL);
10537 ab20a43a 2020-01-29 stsp got_pathlist_free(&paths);
10538 ab20a43a 2020-01-29 stsp if (error) {
10539 ab20a43a 2020-01-29 stsp if (error->code != GOT_ERR_CANCELLED)
10540 ab20a43a 2020-01-29 stsp goto done;
10541 ab20a43a 2020-01-29 stsp if (sigint_received || sigpipe_received)
10542 ab20a43a 2020-01-29 stsp goto done;
10543 ab20a43a 2020-01-29 stsp }
10544 ab20a43a 2020-01-29 stsp if (have_changes) {
10545 ab20a43a 2020-01-29 stsp error = histedit_commit(NULL, worktree,
10546 ab20a43a 2020-01-29 stsp fileindex, tmp_branch, hle, repo);
10547 ab20a43a 2020-01-29 stsp if (error)
10548 ab20a43a 2020-01-29 stsp goto done;
10549 ab20a43a 2020-01-29 stsp } else {
10550 ab20a43a 2020-01-29 stsp error = got_object_open_as_commit(
10551 ab20a43a 2020-01-29 stsp &commit, repo, hle->commit_id);
10552 ab20a43a 2020-01-29 stsp if (error)
10553 ab20a43a 2020-01-29 stsp goto done;
10554 ab20a43a 2020-01-29 stsp error = show_histedit_progress(commit,
10555 ab20a43a 2020-01-29 stsp hle, NULL);
10556 ab20a43a 2020-01-29 stsp got_object_commit_close(commit);
10557 ab20a43a 2020-01-29 stsp commit = NULL;
10558 ab20a43a 2020-01-29 stsp if (error)
10559 ab20a43a 2020-01-29 stsp goto done;
10560 ab20a43a 2020-01-29 stsp }
10561 0ebf8283 2019-07-24 stsp }
10562 0ebf8283 2019-07-24 stsp continue;
10563 0ebf8283 2019-07-24 stsp }
10564 0ebf8283 2019-07-24 stsp
10565 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP) {
10566 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
10567 0ebf8283 2019-07-24 stsp if (error)
10568 0ebf8283 2019-07-24 stsp goto done;
10569 0ebf8283 2019-07-24 stsp continue;
10570 0ebf8283 2019-07-24 stsp }
10571 0ebf8283 2019-07-24 stsp
10572 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
10573 0ebf8283 2019-07-24 stsp hle->commit_id);
10574 0ebf8283 2019-07-24 stsp if (error)
10575 0ebf8283 2019-07-24 stsp goto done;
10576 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
10577 dbdddfee 2021-06-23 naddy pid = STAILQ_FIRST(parent_ids);
10578 0ebf8283 2019-07-24 stsp
10579 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_merge_files(&merged_paths,
10580 3e3a69f1 2019-07-25 stsp worktree, fileindex, pid->id, hle->commit_id, repo,
10581 9627c110 2020-04-18 stsp update_progress, &upa, check_cancelled, NULL);
10582 0ebf8283 2019-07-24 stsp if (error)
10583 0ebf8283 2019-07-24 stsp goto done;
10584 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10585 0ebf8283 2019-07-24 stsp commit = NULL;
10586 0ebf8283 2019-07-24 stsp
10587 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
10588 cd33da48 2021-09-28 stsp if (upa.conflicts > 0 || upa.missing > 0 ||
10589 cd33da48 2021-09-28 stsp upa.not_deleted > 0 || upa.unversioned > 0) {
10590 cd33da48 2021-09-28 stsp if (upa.conflicts > 0) {
10591 cd33da48 2021-09-28 stsp error = show_rebase_merge_conflict(
10592 cd33da48 2021-09-28 stsp hle->commit_id, repo);
10593 cd33da48 2021-09-28 stsp if (error)
10594 cd33da48 2021-09-28 stsp goto done;
10595 cd33da48 2021-09-28 stsp }
10596 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
10597 0ebf8283 2019-07-24 stsp break;
10598 0ebf8283 2019-07-24 stsp }
10599 0ebf8283 2019-07-24 stsp
10600 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_EDIT) {
10601 0ebf8283 2019-07-24 stsp char *id_str;
10602 0ebf8283 2019-07-24 stsp error = got_object_id_str(&id_str, hle->commit_id);
10603 0ebf8283 2019-07-24 stsp if (error)
10604 0ebf8283 2019-07-24 stsp goto done;
10605 0ebf8283 2019-07-24 stsp printf("Stopping histedit for amending commit %s\n",
10606 0ebf8283 2019-07-24 stsp id_str);
10607 0ebf8283 2019-07-24 stsp free(id_str);
10608 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
10609 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree,
10610 3e3a69f1 2019-07-25 stsp fileindex);
10611 0ebf8283 2019-07-24 stsp goto done;
10612 0ebf8283 2019-07-24 stsp }
10613 0ebf8283 2019-07-24 stsp
10614 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_FOLD) {
10615 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
10616 0ebf8283 2019-07-24 stsp if (error)
10617 0ebf8283 2019-07-24 stsp goto done;
10618 0ebf8283 2019-07-24 stsp continue;
10619 0ebf8283 2019-07-24 stsp }
10620 0ebf8283 2019-07-24 stsp
10621 3e3a69f1 2019-07-25 stsp error = histedit_commit(&merged_paths, worktree, fileindex,
10622 3e3a69f1 2019-07-25 stsp tmp_branch, hle, repo);
10623 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
10624 0ebf8283 2019-07-24 stsp if (error)
10625 0ebf8283 2019-07-24 stsp goto done;
10626 0ebf8283 2019-07-24 stsp }
10627 0ebf8283 2019-07-24 stsp
10628 cd33da48 2021-09-28 stsp if (upa.conflicts > 0 || upa.missing > 0 ||
10629 cd33da48 2021-09-28 stsp upa.not_deleted > 0 || upa.unversioned > 0) {
10630 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree, fileindex);
10631 0ebf8283 2019-07-24 stsp if (error)
10632 0ebf8283 2019-07-24 stsp goto done;
10633 cd33da48 2021-09-28 stsp if (upa.conflicts > 0 && upa.missing == 0 &&
10634 cd33da48 2021-09-28 stsp upa.not_deleted == 0 && upa.unversioned == 0) {
10635 cd33da48 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
10636 cd33da48 2021-09-28 stsp "conflicts must be resolved before histedit "
10637 cd33da48 2021-09-28 stsp "can continue");
10638 cd33da48 2021-09-28 stsp } else if (upa.conflicts > 0) {
10639 cd33da48 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
10640 cd33da48 2021-09-28 stsp "conflicts must be resolved before histedit "
10641 cd33da48 2021-09-28 stsp "can continue; changes destined for some "
10642 cd33da48 2021-09-28 stsp "files were not yet merged and should be "
10643 cd33da48 2021-09-28 stsp "merged manually if required before the "
10644 cd33da48 2021-09-28 stsp "histedit operation is continued");
10645 cd33da48 2021-09-28 stsp } else {
10646 cd33da48 2021-09-28 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
10647 cd33da48 2021-09-28 stsp "changes destined for some files were not "
10648 cd33da48 2021-09-28 stsp "yet merged and should be merged manually "
10649 cd33da48 2021-09-28 stsp "if required before the histedit operation "
10650 cd33da48 2021-09-28 stsp "is continued");
10651 cd33da48 2021-09-28 stsp }
10652 0ebf8283 2019-07-24 stsp } else
10653 3e3a69f1 2019-07-25 stsp error = histedit_complete(worktree, fileindex, tmp_branch,
10654 3e3a69f1 2019-07-25 stsp branch, repo);
10655 0ebf8283 2019-07-24 stsp done:
10656 0ebf8283 2019-07-24 stsp got_object_id_queue_free(&commits);
10657 bfce7f83 2019-07-27 stsp histedit_free_list(&histedit_cmds);
10658 0ebf8283 2019-07-24 stsp free(head_commit_id);
10659 0ebf8283 2019-07-24 stsp free(base_commit_id);
10660 0ebf8283 2019-07-24 stsp free(resume_commit_id);
10661 0ebf8283 2019-07-24 stsp if (commit)
10662 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
10663 0ebf8283 2019-07-24 stsp if (branch)
10664 0ebf8283 2019-07-24 stsp got_ref_close(branch);
10665 0ebf8283 2019-07-24 stsp if (tmp_branch)
10666 0ebf8283 2019-07-24 stsp got_ref_close(tmp_branch);
10667 0ebf8283 2019-07-24 stsp if (worktree)
10668 0ebf8283 2019-07-24 stsp got_worktree_close(worktree);
10669 1d0f4054 2021-06-17 stsp if (repo) {
10670 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
10671 1d0f4054 2021-06-17 stsp if (error == NULL)
10672 1d0f4054 2021-06-17 stsp error = close_err;
10673 1d0f4054 2021-06-17 stsp }
10674 2822a352 2019-10-15 stsp return error;
10675 2822a352 2019-10-15 stsp }
10676 2822a352 2019-10-15 stsp
10677 2822a352 2019-10-15 stsp __dead static void
10678 2822a352 2019-10-15 stsp usage_integrate(void)
10679 2822a352 2019-10-15 stsp {
10680 2822a352 2019-10-15 stsp fprintf(stderr, "usage: %s integrate branch\n", getprogname());
10681 2822a352 2019-10-15 stsp exit(1);
10682 2822a352 2019-10-15 stsp }
10683 2822a352 2019-10-15 stsp
10684 2822a352 2019-10-15 stsp static const struct got_error *
10685 2822a352 2019-10-15 stsp cmd_integrate(int argc, char *argv[])
10686 2822a352 2019-10-15 stsp {
10687 2822a352 2019-10-15 stsp const struct got_error *error = NULL;
10688 2822a352 2019-10-15 stsp struct got_repository *repo = NULL;
10689 2822a352 2019-10-15 stsp struct got_worktree *worktree = NULL;
10690 2822a352 2019-10-15 stsp char *cwd = NULL, *refname = NULL, *base_refname = NULL;
10691 2822a352 2019-10-15 stsp const char *branch_arg = NULL;
10692 2822a352 2019-10-15 stsp struct got_reference *branch_ref = NULL, *base_branch_ref = NULL;
10693 2822a352 2019-10-15 stsp struct got_fileindex *fileindex = NULL;
10694 2822a352 2019-10-15 stsp struct got_object_id *commit_id = NULL, *base_commit_id = NULL;
10695 9627c110 2020-04-18 stsp int ch;
10696 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
10697 2822a352 2019-10-15 stsp
10698 2822a352 2019-10-15 stsp while ((ch = getopt(argc, argv, "")) != -1) {
10699 2822a352 2019-10-15 stsp switch (ch) {
10700 2822a352 2019-10-15 stsp default:
10701 2822a352 2019-10-15 stsp usage_integrate();
10702 2822a352 2019-10-15 stsp /* NOTREACHED */
10703 2822a352 2019-10-15 stsp }
10704 2822a352 2019-10-15 stsp }
10705 2822a352 2019-10-15 stsp
10706 2822a352 2019-10-15 stsp argc -= optind;
10707 2822a352 2019-10-15 stsp argv += optind;
10708 2822a352 2019-10-15 stsp
10709 2822a352 2019-10-15 stsp if (argc != 1)
10710 2822a352 2019-10-15 stsp usage_integrate();
10711 2822a352 2019-10-15 stsp branch_arg = argv[0];
10712 b08a0ccd 2020-09-24 stsp #ifndef PROFILE
10713 2822a352 2019-10-15 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
10714 2822a352 2019-10-15 stsp "unveil", NULL) == -1)
10715 2822a352 2019-10-15 stsp err(1, "pledge");
10716 b08a0ccd 2020-09-24 stsp #endif
10717 2822a352 2019-10-15 stsp cwd = getcwd(NULL, 0);
10718 2822a352 2019-10-15 stsp if (cwd == NULL) {
10719 2822a352 2019-10-15 stsp error = got_error_from_errno("getcwd");
10720 2822a352 2019-10-15 stsp goto done;
10721 2822a352 2019-10-15 stsp }
10722 2822a352 2019-10-15 stsp
10723 2822a352 2019-10-15 stsp error = got_worktree_open(&worktree, cwd);
10724 fa51e947 2020-03-27 stsp if (error) {
10725 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
10726 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "integrate",
10727 fa51e947 2020-03-27 stsp cwd);
10728 2822a352 2019-10-15 stsp goto done;
10729 fa51e947 2020-03-27 stsp }
10730 2822a352 2019-10-15 stsp
10731 2822a352 2019-10-15 stsp error = check_rebase_or_histedit_in_progress(worktree);
10732 2822a352 2019-10-15 stsp if (error)
10733 2822a352 2019-10-15 stsp goto done;
10734 2822a352 2019-10-15 stsp
10735 2822a352 2019-10-15 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
10736 2822a352 2019-10-15 stsp NULL);
10737 2822a352 2019-10-15 stsp if (error != NULL)
10738 2822a352 2019-10-15 stsp goto done;
10739 2822a352 2019-10-15 stsp
10740 2822a352 2019-10-15 stsp error = apply_unveil(got_repo_get_path(repo), 0,
10741 2822a352 2019-10-15 stsp got_worktree_get_root_path(worktree));
10742 2822a352 2019-10-15 stsp if (error)
10743 2822a352 2019-10-15 stsp goto done;
10744 2822a352 2019-10-15 stsp
10745 f259c4c1 2021-09-24 stsp error = check_merge_in_progress(worktree, repo);
10746 f259c4c1 2021-09-24 stsp if (error)
10747 f259c4c1 2021-09-24 stsp goto done;
10748 f259c4c1 2021-09-24 stsp
10749 2822a352 2019-10-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_arg) == -1) {
10750 2822a352 2019-10-15 stsp error = got_error_from_errno("asprintf");
10751 2822a352 2019-10-15 stsp goto done;
10752 2822a352 2019-10-15 stsp }
10753 2822a352 2019-10-15 stsp
10754 2822a352 2019-10-15 stsp error = got_worktree_integrate_prepare(&fileindex, &branch_ref,
10755 2822a352 2019-10-15 stsp &base_branch_ref, worktree, refname, repo);
10756 2822a352 2019-10-15 stsp if (error)
10757 2822a352 2019-10-15 stsp goto done;
10758 2822a352 2019-10-15 stsp
10759 2822a352 2019-10-15 stsp refname = strdup(got_ref_get_name(branch_ref));
10760 2822a352 2019-10-15 stsp if (refname == NULL) {
10761 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
10762 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
10763 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
10764 2822a352 2019-10-15 stsp goto done;
10765 2822a352 2019-10-15 stsp }
10766 2822a352 2019-10-15 stsp base_refname = strdup(got_ref_get_name(base_branch_ref));
10767 2822a352 2019-10-15 stsp if (base_refname == NULL) {
10768 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
10769 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
10770 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
10771 2822a352 2019-10-15 stsp goto done;
10772 2822a352 2019-10-15 stsp }
10773 2822a352 2019-10-15 stsp
10774 2822a352 2019-10-15 stsp error = got_ref_resolve(&commit_id, repo, branch_ref);
10775 2822a352 2019-10-15 stsp if (error)
10776 2822a352 2019-10-15 stsp goto done;
10777 2822a352 2019-10-15 stsp
10778 2822a352 2019-10-15 stsp error = got_ref_resolve(&base_commit_id, repo, base_branch_ref);
10779 2822a352 2019-10-15 stsp if (error)
10780 2822a352 2019-10-15 stsp goto done;
10781 2822a352 2019-10-15 stsp
10782 2822a352 2019-10-15 stsp if (got_object_id_cmp(commit_id, base_commit_id) == 0) {
10783 2822a352 2019-10-15 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
10784 2822a352 2019-10-15 stsp "specified branch has already been integrated");
10785 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
10786 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
10787 2822a352 2019-10-15 stsp goto done;
10788 2822a352 2019-10-15 stsp }
10789 2822a352 2019-10-15 stsp
10790 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, base_commit_id, 1, repo);
10791 2822a352 2019-10-15 stsp if (error) {
10792 2822a352 2019-10-15 stsp if (error->code == GOT_ERR_ANCESTRY)
10793 2822a352 2019-10-15 stsp error = got_error(GOT_ERR_REBASE_REQUIRED);
10794 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
10795 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
10796 2822a352 2019-10-15 stsp goto done;
10797 2822a352 2019-10-15 stsp }
10798 2822a352 2019-10-15 stsp
10799 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
10800 2822a352 2019-10-15 stsp error = got_worktree_integrate_continue(worktree, fileindex, repo,
10801 9627c110 2020-04-18 stsp branch_ref, base_branch_ref, update_progress, &upa,
10802 2822a352 2019-10-15 stsp check_cancelled, NULL);
10803 2822a352 2019-10-15 stsp if (error)
10804 2822a352 2019-10-15 stsp goto done;
10805 2822a352 2019-10-15 stsp
10806 2822a352 2019-10-15 stsp printf("Integrated %s into %s\n", refname, base_refname);
10807 9627c110 2020-04-18 stsp print_update_progress_stats(&upa);
10808 2822a352 2019-10-15 stsp done:
10809 1d0f4054 2021-06-17 stsp if (repo) {
10810 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
10811 1d0f4054 2021-06-17 stsp if (error == NULL)
10812 1d0f4054 2021-06-17 stsp error = close_err;
10813 1d0f4054 2021-06-17 stsp }
10814 2822a352 2019-10-15 stsp if (worktree)
10815 2822a352 2019-10-15 stsp got_worktree_close(worktree);
10816 2822a352 2019-10-15 stsp free(cwd);
10817 2822a352 2019-10-15 stsp free(base_commit_id);
10818 2822a352 2019-10-15 stsp free(commit_id);
10819 2822a352 2019-10-15 stsp free(refname);
10820 2822a352 2019-10-15 stsp free(base_refname);
10821 f259c4c1 2021-09-24 stsp return error;
10822 f259c4c1 2021-09-24 stsp }
10823 f259c4c1 2021-09-24 stsp
10824 f259c4c1 2021-09-24 stsp __dead static void
10825 f259c4c1 2021-09-24 stsp usage_merge(void)
10826 f259c4c1 2021-09-24 stsp {
10827 088449d3 2021-09-26 stsp fprintf(stderr, "usage: %s merge [-a] [-c] [-n] [branch]\n",
10828 f259c4c1 2021-09-24 stsp getprogname());
10829 f259c4c1 2021-09-24 stsp exit(1);
10830 f259c4c1 2021-09-24 stsp }
10831 f259c4c1 2021-09-24 stsp
10832 f259c4c1 2021-09-24 stsp static const struct got_error *
10833 f259c4c1 2021-09-24 stsp cmd_merge(int argc, char *argv[])
10834 f259c4c1 2021-09-24 stsp {
10835 f259c4c1 2021-09-24 stsp const struct got_error *error = NULL;
10836 f259c4c1 2021-09-24 stsp struct got_worktree *worktree = NULL;
10837 f259c4c1 2021-09-24 stsp struct got_repository *repo = NULL;
10838 f259c4c1 2021-09-24 stsp struct got_fileindex *fileindex = NULL;
10839 f259c4c1 2021-09-24 stsp char *cwd = NULL, *id_str = NULL, *author = NULL;
10840 f259c4c1 2021-09-24 stsp struct got_reference *branch = NULL, *wt_branch = NULL;
10841 f259c4c1 2021-09-24 stsp struct got_object_id *branch_tip = NULL, *yca_id = NULL;
10842 f259c4c1 2021-09-24 stsp struct got_object_id *wt_branch_tip = NULL;
10843 f259c4c1 2021-09-24 stsp int ch, merge_in_progress = 0, abort_merge = 0, continue_merge = 0;
10844 088449d3 2021-09-26 stsp int interrupt_merge = 0;
10845 f259c4c1 2021-09-24 stsp struct got_update_progress_arg upa;
10846 f259c4c1 2021-09-24 stsp struct got_object_id *merge_commit_id = NULL;
10847 f259c4c1 2021-09-24 stsp char *branch_name = NULL;
10848 f259c4c1 2021-09-24 stsp
10849 f259c4c1 2021-09-24 stsp memset(&upa, 0, sizeof(upa));
10850 f259c4c1 2021-09-24 stsp
10851 088449d3 2021-09-26 stsp while ((ch = getopt(argc, argv, "acn")) != -1) {
10852 f259c4c1 2021-09-24 stsp switch (ch) {
10853 f259c4c1 2021-09-24 stsp case 'a':
10854 f259c4c1 2021-09-24 stsp abort_merge = 1;
10855 f259c4c1 2021-09-24 stsp break;
10856 f259c4c1 2021-09-24 stsp case 'c':
10857 f259c4c1 2021-09-24 stsp continue_merge = 1;
10858 f259c4c1 2021-09-24 stsp break;
10859 088449d3 2021-09-26 stsp case 'n':
10860 088449d3 2021-09-26 stsp interrupt_merge = 1;
10861 088449d3 2021-09-26 stsp break;
10862 f259c4c1 2021-09-24 stsp default:
10863 f259c4c1 2021-09-24 stsp usage_rebase();
10864 f259c4c1 2021-09-24 stsp /* NOTREACHED */
10865 f259c4c1 2021-09-24 stsp }
10866 f259c4c1 2021-09-24 stsp }
10867 f259c4c1 2021-09-24 stsp
10868 f259c4c1 2021-09-24 stsp argc -= optind;
10869 f259c4c1 2021-09-24 stsp argv += optind;
10870 f259c4c1 2021-09-24 stsp
10871 f259c4c1 2021-09-24 stsp #ifndef PROFILE
10872 f259c4c1 2021-09-24 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
10873 f259c4c1 2021-09-24 stsp "unveil", NULL) == -1)
10874 f259c4c1 2021-09-24 stsp err(1, "pledge");
10875 f259c4c1 2021-09-24 stsp #endif
10876 f259c4c1 2021-09-24 stsp
10877 f259c4c1 2021-09-24 stsp if (abort_merge && continue_merge)
10878 f259c4c1 2021-09-24 stsp option_conflict('a', 'c');
10879 f259c4c1 2021-09-24 stsp if (abort_merge || continue_merge) {
10880 f259c4c1 2021-09-24 stsp if (argc != 0)
10881 f259c4c1 2021-09-24 stsp usage_merge();
10882 f259c4c1 2021-09-24 stsp } else if (argc != 1)
10883 f259c4c1 2021-09-24 stsp usage_merge();
10884 f259c4c1 2021-09-24 stsp
10885 f259c4c1 2021-09-24 stsp cwd = getcwd(NULL, 0);
10886 f259c4c1 2021-09-24 stsp if (cwd == NULL) {
10887 f259c4c1 2021-09-24 stsp error = got_error_from_errno("getcwd");
10888 f259c4c1 2021-09-24 stsp goto done;
10889 f259c4c1 2021-09-24 stsp }
10890 f259c4c1 2021-09-24 stsp
10891 f259c4c1 2021-09-24 stsp error = got_worktree_open(&worktree, cwd);
10892 f259c4c1 2021-09-24 stsp if (error) {
10893 f259c4c1 2021-09-24 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
10894 f259c4c1 2021-09-24 stsp error = wrap_not_worktree_error(error,
10895 f259c4c1 2021-09-24 stsp "merge", cwd);
10896 f259c4c1 2021-09-24 stsp goto done;
10897 f259c4c1 2021-09-24 stsp }
10898 f259c4c1 2021-09-24 stsp
10899 f259c4c1 2021-09-24 stsp error = got_repo_open(&repo,
10900 f259c4c1 2021-09-24 stsp worktree ? got_worktree_get_repo_path(worktree) : cwd, NULL);
10901 f259c4c1 2021-09-24 stsp if (error != NULL)
10902 f259c4c1 2021-09-24 stsp goto done;
10903 f259c4c1 2021-09-24 stsp
10904 f259c4c1 2021-09-24 stsp error = apply_unveil(got_repo_get_path(repo), 0,
10905 f259c4c1 2021-09-24 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
10906 f259c4c1 2021-09-24 stsp if (error)
10907 f259c4c1 2021-09-24 stsp goto done;
10908 f259c4c1 2021-09-24 stsp
10909 f259c4c1 2021-09-24 stsp error = check_rebase_or_histedit_in_progress(worktree);
10910 f259c4c1 2021-09-24 stsp if (error)
10911 f259c4c1 2021-09-24 stsp goto done;
10912 f259c4c1 2021-09-24 stsp
10913 f259c4c1 2021-09-24 stsp error = got_worktree_merge_in_progress(&merge_in_progress, worktree,
10914 f259c4c1 2021-09-24 stsp repo);
10915 f259c4c1 2021-09-24 stsp if (error)
10916 f259c4c1 2021-09-24 stsp goto done;
10917 f259c4c1 2021-09-24 stsp
10918 f259c4c1 2021-09-24 stsp if (abort_merge) {
10919 f259c4c1 2021-09-24 stsp if (!merge_in_progress) {
10920 f259c4c1 2021-09-24 stsp error = got_error(GOT_ERR_NOT_MERGING);
10921 f259c4c1 2021-09-24 stsp goto done;
10922 f259c4c1 2021-09-24 stsp }
10923 f259c4c1 2021-09-24 stsp error = got_worktree_merge_continue(&branch_name,
10924 f259c4c1 2021-09-24 stsp &branch_tip, &fileindex, worktree, repo);
10925 f259c4c1 2021-09-24 stsp if (error)
10926 f259c4c1 2021-09-24 stsp goto done;
10927 f259c4c1 2021-09-24 stsp error = got_worktree_merge_abort(worktree, fileindex, repo,
10928 41f061b2 2021-10-05 stsp abort_progress, &upa);
10929 f259c4c1 2021-09-24 stsp if (error)
10930 f259c4c1 2021-09-24 stsp goto done;
10931 f259c4c1 2021-09-24 stsp printf("Merge of %s aborted\n", branch_name);
10932 f259c4c1 2021-09-24 stsp goto done; /* nothing else to do */
10933 f259c4c1 2021-09-24 stsp }
10934 f259c4c1 2021-09-24 stsp
10935 f259c4c1 2021-09-24 stsp error = get_author(&author, repo, worktree);
10936 f259c4c1 2021-09-24 stsp if (error)
10937 f259c4c1 2021-09-24 stsp goto done;
10938 f259c4c1 2021-09-24 stsp
10939 f259c4c1 2021-09-24 stsp if (continue_merge) {
10940 f259c4c1 2021-09-24 stsp if (!merge_in_progress) {
10941 f259c4c1 2021-09-24 stsp error = got_error(GOT_ERR_NOT_MERGING);
10942 f259c4c1 2021-09-24 stsp goto done;
10943 f259c4c1 2021-09-24 stsp }
10944 f259c4c1 2021-09-24 stsp error = got_worktree_merge_continue(&branch_name,
10945 f259c4c1 2021-09-24 stsp &branch_tip, &fileindex, worktree, repo);
10946 f259c4c1 2021-09-24 stsp if (error)
10947 f259c4c1 2021-09-24 stsp goto done;
10948 f259c4c1 2021-09-24 stsp } else {
10949 f259c4c1 2021-09-24 stsp error = got_ref_open(&branch, repo, argv[0], 0);
10950 f259c4c1 2021-09-24 stsp if (error != NULL)
10951 f259c4c1 2021-09-24 stsp goto done;
10952 f259c4c1 2021-09-24 stsp branch_name = strdup(got_ref_get_name(branch));
10953 f259c4c1 2021-09-24 stsp if (branch_name == NULL) {
10954 f259c4c1 2021-09-24 stsp error = got_error_from_errno("strdup");
10955 f259c4c1 2021-09-24 stsp goto done;
10956 f259c4c1 2021-09-24 stsp }
10957 f259c4c1 2021-09-24 stsp error = got_ref_resolve(&branch_tip, repo, branch);
10958 f259c4c1 2021-09-24 stsp if (error)
10959 f259c4c1 2021-09-24 stsp goto done;
10960 f259c4c1 2021-09-24 stsp }
10961 f259c4c1 2021-09-24 stsp
10962 f259c4c1 2021-09-24 stsp error = got_ref_open(&wt_branch, repo,
10963 f259c4c1 2021-09-24 stsp got_worktree_get_head_ref_name(worktree), 0);
10964 f259c4c1 2021-09-24 stsp if (error)
10965 f259c4c1 2021-09-24 stsp goto done;
10966 f259c4c1 2021-09-24 stsp error = got_ref_resolve(&wt_branch_tip, repo, wt_branch);
10967 f259c4c1 2021-09-24 stsp if (error)
10968 f259c4c1 2021-09-24 stsp goto done;
10969 f259c4c1 2021-09-24 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
10970 4e91ef15 2021-09-26 stsp wt_branch_tip, branch_tip, 0, repo,
10971 f259c4c1 2021-09-24 stsp check_cancelled, NULL);
10972 4e91ef15 2021-09-26 stsp if (error && error->code != GOT_ERR_ANCESTRY)
10973 f259c4c1 2021-09-24 stsp goto done;
10974 f259c4c1 2021-09-24 stsp
10975 f259c4c1 2021-09-24 stsp if (!continue_merge) {
10976 f259c4c1 2021-09-24 stsp error = check_path_prefix(wt_branch_tip, branch_tip,
10977 f259c4c1 2021-09-24 stsp got_worktree_get_path_prefix(worktree),
10978 f259c4c1 2021-09-24 stsp GOT_ERR_MERGE_PATH, repo);
10979 f259c4c1 2021-09-24 stsp if (error)
10980 f259c4c1 2021-09-24 stsp goto done;
10981 4e91ef15 2021-09-26 stsp if (yca_id) {
10982 4e91ef15 2021-09-26 stsp error = check_same_branch(wt_branch_tip, branch,
10983 4e91ef15 2021-09-26 stsp yca_id, repo);
10984 4e91ef15 2021-09-26 stsp if (error) {
10985 4e91ef15 2021-09-26 stsp if (error->code != GOT_ERR_ANCESTRY)
10986 4e91ef15 2021-09-26 stsp goto done;
10987 4e91ef15 2021-09-26 stsp error = NULL;
10988 4e91ef15 2021-09-26 stsp } else {
10989 4e91ef15 2021-09-26 stsp static char msg[512];
10990 4e91ef15 2021-09-26 stsp snprintf(msg, sizeof(msg),
10991 4e91ef15 2021-09-26 stsp "cannot create a merge commit because "
10992 4e91ef15 2021-09-26 stsp "%s is based on %s; %s can be integrated "
10993 4e91ef15 2021-09-26 stsp "with 'got integrate' instead", branch_name,
10994 4e91ef15 2021-09-26 stsp got_worktree_get_head_ref_name(worktree),
10995 4e91ef15 2021-09-26 stsp branch_name);
10996 4e91ef15 2021-09-26 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH, msg);
10997 f259c4c1 2021-09-24 stsp goto done;
10998 4e91ef15 2021-09-26 stsp }
10999 f259c4c1 2021-09-24 stsp }
11000 f259c4c1 2021-09-24 stsp error = got_worktree_merge_prepare(&fileindex, worktree,
11001 f259c4c1 2021-09-24 stsp branch, repo);
11002 f259c4c1 2021-09-24 stsp if (error)
11003 f259c4c1 2021-09-24 stsp goto done;
11004 f259c4c1 2021-09-24 stsp
11005 f259c4c1 2021-09-24 stsp error = got_worktree_merge_branch(worktree, fileindex,
11006 f259c4c1 2021-09-24 stsp yca_id, branch_tip, repo, update_progress, &upa,
11007 f259c4c1 2021-09-24 stsp check_cancelled, NULL);
11008 f259c4c1 2021-09-24 stsp if (error)
11009 f259c4c1 2021-09-24 stsp goto done;
11010 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
11011 4e91ef15 2021-09-26 stsp if (!upa.did_something) {
11012 4e91ef15 2021-09-26 stsp error = got_worktree_merge_abort(worktree, fileindex,
11013 41f061b2 2021-10-05 stsp repo, abort_progress, &upa);
11014 4e91ef15 2021-09-26 stsp if (error)
11015 4e91ef15 2021-09-26 stsp goto done;
11016 4e91ef15 2021-09-26 stsp printf("Already up-to-date\n");
11017 4e91ef15 2021-09-26 stsp goto done;
11018 4e91ef15 2021-09-26 stsp }
11019 f259c4c1 2021-09-24 stsp }
11020 f259c4c1 2021-09-24 stsp
11021 088449d3 2021-09-26 stsp if (interrupt_merge) {
11022 f259c4c1 2021-09-24 stsp error = got_worktree_merge_postpone(worktree, fileindex);
11023 f259c4c1 2021-09-24 stsp if (error)
11024 f259c4c1 2021-09-24 stsp goto done;
11025 088449d3 2021-09-26 stsp printf("Merge of %s interrupted on request\n", branch_name);
11026 c1b05723 2021-09-28 stsp } else if (upa.conflicts > 0 || upa.missing > 0 ||
11027 c1b05723 2021-09-28 stsp upa.not_deleted > 0 || upa.unversioned > 0) {
11028 088449d3 2021-09-26 stsp error = got_worktree_merge_postpone(worktree, fileindex);
11029 088449d3 2021-09-26 stsp if (error)
11030 088449d3 2021-09-26 stsp goto done;
11031 c1b05723 2021-09-28 stsp if (upa.conflicts > 0 && upa.missing == 0 &&
11032 c1b05723 2021-09-28 stsp upa.not_deleted == 0 && upa.unversioned == 0) {
11033 f259c4c1 2021-09-24 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
11034 f259c4c1 2021-09-24 stsp "conflicts must be resolved before merging "
11035 f259c4c1 2021-09-24 stsp "can continue");
11036 f259c4c1 2021-09-24 stsp } else if (upa.conflicts > 0) {
11037 f259c4c1 2021-09-24 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
11038 f259c4c1 2021-09-24 stsp "conflicts must be resolved before merging "
11039 c1b05723 2021-09-28 stsp "can continue; changes destined for some "
11040 1acd48bc 2021-09-24 stsp "files were not yet merged and "
11041 f259c4c1 2021-09-24 stsp "should be merged manually if required before the "
11042 f259c4c1 2021-09-24 stsp "merge operation is continued");
11043 f259c4c1 2021-09-24 stsp } else {
11044 f259c4c1 2021-09-24 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
11045 c1b05723 2021-09-28 stsp "changes destined for some "
11046 f259c4c1 2021-09-24 stsp "files were not yet merged and should be "
11047 f259c4c1 2021-09-24 stsp "merged manually if required before the "
11048 f259c4c1 2021-09-24 stsp "merge operation is continued");
11049 f259c4c1 2021-09-24 stsp }
11050 f259c4c1 2021-09-24 stsp goto done;
11051 f259c4c1 2021-09-24 stsp } else {
11052 f259c4c1 2021-09-24 stsp error = got_worktree_merge_commit(&merge_commit_id, worktree,
11053 0ff8d236 2021-09-28 stsp fileindex, author, NULL, 1, branch_tip, branch_name,
11054 0ff8d236 2021-09-28 stsp repo, continue_merge ? print_status : NULL, NULL);
11055 f259c4c1 2021-09-24 stsp if (error)
11056 f259c4c1 2021-09-24 stsp goto done;
11057 f259c4c1 2021-09-24 stsp error = got_worktree_merge_complete(worktree, fileindex, repo);
11058 f259c4c1 2021-09-24 stsp if (error)
11059 f259c4c1 2021-09-24 stsp goto done;
11060 f259c4c1 2021-09-24 stsp error = got_object_id_str(&id_str, merge_commit_id);
11061 f259c4c1 2021-09-24 stsp if (error)
11062 f259c4c1 2021-09-24 stsp goto done;
11063 f259c4c1 2021-09-24 stsp printf("Merged %s into %s: %s\n", branch_name,
11064 f259c4c1 2021-09-24 stsp got_worktree_get_head_ref_name(worktree),
11065 f259c4c1 2021-09-24 stsp id_str);
11066 f259c4c1 2021-09-24 stsp
11067 f259c4c1 2021-09-24 stsp }
11068 f259c4c1 2021-09-24 stsp done:
11069 f259c4c1 2021-09-24 stsp free(id_str);
11070 f259c4c1 2021-09-24 stsp free(merge_commit_id);
11071 f259c4c1 2021-09-24 stsp free(author);
11072 f259c4c1 2021-09-24 stsp free(branch_tip);
11073 f259c4c1 2021-09-24 stsp free(branch_name);
11074 f259c4c1 2021-09-24 stsp free(yca_id);
11075 f259c4c1 2021-09-24 stsp if (branch)
11076 f259c4c1 2021-09-24 stsp got_ref_close(branch);
11077 f259c4c1 2021-09-24 stsp if (wt_branch)
11078 f259c4c1 2021-09-24 stsp got_ref_close(wt_branch);
11079 f259c4c1 2021-09-24 stsp if (worktree)
11080 f259c4c1 2021-09-24 stsp got_worktree_close(worktree);
11081 f259c4c1 2021-09-24 stsp if (repo) {
11082 f259c4c1 2021-09-24 stsp const struct got_error *close_err = got_repo_close(repo);
11083 f259c4c1 2021-09-24 stsp if (error == NULL)
11084 f259c4c1 2021-09-24 stsp error = close_err;
11085 f259c4c1 2021-09-24 stsp }
11086 715dc77e 2019-08-03 stsp return error;
11087 715dc77e 2019-08-03 stsp }
11088 715dc77e 2019-08-03 stsp
11089 715dc77e 2019-08-03 stsp __dead static void
11090 715dc77e 2019-08-03 stsp usage_stage(void)
11091 715dc77e 2019-08-03 stsp {
11092 f3055044 2019-08-07 stsp fprintf(stderr, "usage: %s stage [-l] | [-p] [-F response-script] "
11093 35213c7c 2020-07-23 stsp "[-S] [file-path ...]\n",
11094 715dc77e 2019-08-03 stsp getprogname());
11095 715dc77e 2019-08-03 stsp exit(1);
11096 715dc77e 2019-08-03 stsp }
11097 715dc77e 2019-08-03 stsp
11098 715dc77e 2019-08-03 stsp static const struct got_error *
11099 408b4ebc 2019-08-03 stsp print_stage(void *arg, unsigned char status, unsigned char staged_status,
11100 408b4ebc 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
11101 12463d8b 2019-12-13 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id,
11102 12463d8b 2019-12-13 stsp int dirfd, const char *de_name)
11103 408b4ebc 2019-08-03 stsp {
11104 408b4ebc 2019-08-03 stsp const struct got_error *err = NULL;
11105 408b4ebc 2019-08-03 stsp char *id_str = NULL;
11106 408b4ebc 2019-08-03 stsp
11107 408b4ebc 2019-08-03 stsp if (staged_status != GOT_STATUS_ADD &&
11108 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_MODIFY &&
11109 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
11110 408b4ebc 2019-08-03 stsp return NULL;
11111 408b4ebc 2019-08-03 stsp
11112 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
11113 408b4ebc 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY)
11114 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, staged_blob_id);
11115 408b4ebc 2019-08-03 stsp else
11116 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, blob_id);
11117 408b4ebc 2019-08-03 stsp if (err)
11118 408b4ebc 2019-08-03 stsp return err;
11119 408b4ebc 2019-08-03 stsp
11120 408b4ebc 2019-08-03 stsp printf("%s %c %s\n", id_str, staged_status, path);
11121 408b4ebc 2019-08-03 stsp free(id_str);
11122 dc424a06 2019-08-07 stsp return NULL;
11123 dc424a06 2019-08-07 stsp }
11124 2e1f37b0 2019-08-08 stsp
11125 dc424a06 2019-08-07 stsp static const struct got_error *
11126 715dc77e 2019-08-03 stsp cmd_stage(int argc, char *argv[])
11127 715dc77e 2019-08-03 stsp {
11128 715dc77e 2019-08-03 stsp const struct got_error *error = NULL;
11129 715dc77e 2019-08-03 stsp struct got_repository *repo = NULL;
11130 715dc77e 2019-08-03 stsp struct got_worktree *worktree = NULL;
11131 715dc77e 2019-08-03 stsp char *cwd = NULL;
11132 715dc77e 2019-08-03 stsp struct got_pathlist_head paths;
11133 715dc77e 2019-08-03 stsp struct got_pathlist_entry *pe;
11134 35213c7c 2020-07-23 stsp int ch, list_stage = 0, pflag = 0, allow_bad_symlinks = 0;
11135 dc424a06 2019-08-07 stsp FILE *patch_script_file = NULL;
11136 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
11137 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
11138 715dc77e 2019-08-03 stsp
11139 715dc77e 2019-08-03 stsp TAILQ_INIT(&paths);
11140 715dc77e 2019-08-03 stsp
11141 35213c7c 2020-07-23 stsp while ((ch = getopt(argc, argv, "lpF:S")) != -1) {
11142 715dc77e 2019-08-03 stsp switch (ch) {
11143 408b4ebc 2019-08-03 stsp case 'l':
11144 408b4ebc 2019-08-03 stsp list_stage = 1;
11145 408b4ebc 2019-08-03 stsp break;
11146 dc424a06 2019-08-07 stsp case 'p':
11147 dc424a06 2019-08-07 stsp pflag = 1;
11148 dc424a06 2019-08-07 stsp break;
11149 dc424a06 2019-08-07 stsp case 'F':
11150 dc424a06 2019-08-07 stsp patch_script_path = optarg;
11151 dc424a06 2019-08-07 stsp break;
11152 35213c7c 2020-07-23 stsp case 'S':
11153 35213c7c 2020-07-23 stsp allow_bad_symlinks = 1;
11154 35213c7c 2020-07-23 stsp break;
11155 715dc77e 2019-08-03 stsp default:
11156 715dc77e 2019-08-03 stsp usage_stage();
11157 715dc77e 2019-08-03 stsp /* NOTREACHED */
11158 715dc77e 2019-08-03 stsp }
11159 715dc77e 2019-08-03 stsp }
11160 715dc77e 2019-08-03 stsp
11161 715dc77e 2019-08-03 stsp argc -= optind;
11162 715dc77e 2019-08-03 stsp argv += optind;
11163 715dc77e 2019-08-03 stsp
11164 715dc77e 2019-08-03 stsp #ifndef PROFILE
11165 715dc77e 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
11166 715dc77e 2019-08-03 stsp "unveil", NULL) == -1)
11167 715dc77e 2019-08-03 stsp err(1, "pledge");
11168 715dc77e 2019-08-03 stsp #endif
11169 2db2652d 2019-08-07 stsp if (list_stage && (pflag || patch_script_path))
11170 2db2652d 2019-08-07 stsp errx(1, "-l option cannot be used with other options");
11171 dc424a06 2019-08-07 stsp if (patch_script_path && !pflag)
11172 dc424a06 2019-08-07 stsp errx(1, "-F option can only be used together with -p option");
11173 715dc77e 2019-08-03 stsp
11174 715dc77e 2019-08-03 stsp cwd = getcwd(NULL, 0);
11175 715dc77e 2019-08-03 stsp if (cwd == NULL) {
11176 715dc77e 2019-08-03 stsp error = got_error_from_errno("getcwd");
11177 715dc77e 2019-08-03 stsp goto done;
11178 715dc77e 2019-08-03 stsp }
11179 715dc77e 2019-08-03 stsp
11180 715dc77e 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
11181 fa51e947 2020-03-27 stsp if (error) {
11182 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
11183 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "stage", cwd);
11184 715dc77e 2019-08-03 stsp goto done;
11185 fa51e947 2020-03-27 stsp }
11186 715dc77e 2019-08-03 stsp
11187 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
11188 c9956ddf 2019-09-08 stsp NULL);
11189 715dc77e 2019-08-03 stsp if (error != NULL)
11190 715dc77e 2019-08-03 stsp goto done;
11191 715dc77e 2019-08-03 stsp
11192 dc424a06 2019-08-07 stsp if (patch_script_path) {
11193 dc424a06 2019-08-07 stsp patch_script_file = fopen(patch_script_path, "r");
11194 dc424a06 2019-08-07 stsp if (patch_script_file == NULL) {
11195 dc424a06 2019-08-07 stsp error = got_error_from_errno2("fopen",
11196 dc424a06 2019-08-07 stsp patch_script_path);
11197 dc424a06 2019-08-07 stsp goto done;
11198 dc424a06 2019-08-07 stsp }
11199 dc424a06 2019-08-07 stsp }
11200 9fd7cd22 2019-08-30 stsp error = apply_unveil(got_repo_get_path(repo), 0,
11201 715dc77e 2019-08-03 stsp got_worktree_get_root_path(worktree));
11202 715dc77e 2019-08-03 stsp if (error)
11203 715dc77e 2019-08-03 stsp goto done;
11204 715dc77e 2019-08-03 stsp
11205 f259c4c1 2021-09-24 stsp error = check_merge_in_progress(worktree, repo);
11206 f259c4c1 2021-09-24 stsp if (error)
11207 f259c4c1 2021-09-24 stsp goto done;
11208 f259c4c1 2021-09-24 stsp
11209 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
11210 6d022e97 2019-08-04 stsp if (error)
11211 6d022e97 2019-08-04 stsp goto done;
11212 715dc77e 2019-08-03 stsp
11213 6d022e97 2019-08-04 stsp if (list_stage)
11214 f6343036 2021-06-22 stsp error = got_worktree_status(worktree, &paths, repo, 0,
11215 408b4ebc 2019-08-03 stsp print_stage, NULL, check_cancelled, NULL);
11216 2e1f37b0 2019-08-08 stsp else {
11217 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
11218 2e1f37b0 2019-08-08 stsp cpa.action = "stage";
11219 dc424a06 2019-08-07 stsp error = got_worktree_stage(worktree, &paths,
11220 dc424a06 2019-08-07 stsp pflag ? NULL : print_status, NULL,
11221 35213c7c 2020-07-23 stsp pflag ? choose_patch : NULL, &cpa,
11222 35213c7c 2020-07-23 stsp allow_bad_symlinks, repo);
11223 2e1f37b0 2019-08-08 stsp }
11224 ad493afc 2019-08-03 stsp done:
11225 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
11226 2e1f37b0 2019-08-08 stsp error == NULL)
11227 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
11228 1d0f4054 2021-06-17 stsp if (repo) {
11229 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
11230 1d0f4054 2021-06-17 stsp if (error == NULL)
11231 1d0f4054 2021-06-17 stsp error = close_err;
11232 1d0f4054 2021-06-17 stsp }
11233 ad493afc 2019-08-03 stsp if (worktree)
11234 ad493afc 2019-08-03 stsp got_worktree_close(worktree);
11235 ad493afc 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
11236 ad493afc 2019-08-03 stsp free((char *)pe->path);
11237 ad493afc 2019-08-03 stsp got_pathlist_free(&paths);
11238 ad493afc 2019-08-03 stsp free(cwd);
11239 ad493afc 2019-08-03 stsp return error;
11240 ad493afc 2019-08-03 stsp }
11241 ad493afc 2019-08-03 stsp
11242 ad493afc 2019-08-03 stsp __dead static void
11243 ad493afc 2019-08-03 stsp usage_unstage(void)
11244 ad493afc 2019-08-03 stsp {
11245 2e1f37b0 2019-08-08 stsp fprintf(stderr, "usage: %s unstage [-p] [-F response-script] "
11246 2e1f37b0 2019-08-08 stsp "[file-path ...]\n",
11247 ad493afc 2019-08-03 stsp getprogname());
11248 ad493afc 2019-08-03 stsp exit(1);
11249 ad493afc 2019-08-03 stsp }
11250 ad493afc 2019-08-03 stsp
11251 ad493afc 2019-08-03 stsp
11252 ad493afc 2019-08-03 stsp static const struct got_error *
11253 ad493afc 2019-08-03 stsp cmd_unstage(int argc, char *argv[])
11254 ad493afc 2019-08-03 stsp {
11255 ad493afc 2019-08-03 stsp const struct got_error *error = NULL;
11256 ad493afc 2019-08-03 stsp struct got_repository *repo = NULL;
11257 ad493afc 2019-08-03 stsp struct got_worktree *worktree = NULL;
11258 ad493afc 2019-08-03 stsp char *cwd = NULL;
11259 ad493afc 2019-08-03 stsp struct got_pathlist_head paths;
11260 ad493afc 2019-08-03 stsp struct got_pathlist_entry *pe;
11261 9627c110 2020-04-18 stsp int ch, pflag = 0;
11262 9627c110 2020-04-18 stsp struct got_update_progress_arg upa;
11263 2e1f37b0 2019-08-08 stsp FILE *patch_script_file = NULL;
11264 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
11265 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
11266 ad493afc 2019-08-03 stsp
11267 ad493afc 2019-08-03 stsp TAILQ_INIT(&paths);
11268 ad493afc 2019-08-03 stsp
11269 2e1f37b0 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:")) != -1) {
11270 ad493afc 2019-08-03 stsp switch (ch) {
11271 2e1f37b0 2019-08-08 stsp case 'p':
11272 2e1f37b0 2019-08-08 stsp pflag = 1;
11273 2e1f37b0 2019-08-08 stsp break;
11274 2e1f37b0 2019-08-08 stsp case 'F':
11275 2e1f37b0 2019-08-08 stsp patch_script_path = optarg;
11276 2e1f37b0 2019-08-08 stsp break;
11277 ad493afc 2019-08-03 stsp default:
11278 ad493afc 2019-08-03 stsp usage_unstage();
11279 ad493afc 2019-08-03 stsp /* NOTREACHED */
11280 ad493afc 2019-08-03 stsp }
11281 ad493afc 2019-08-03 stsp }
11282 ad493afc 2019-08-03 stsp
11283 ad493afc 2019-08-03 stsp argc -= optind;
11284 ad493afc 2019-08-03 stsp argv += optind;
11285 ad493afc 2019-08-03 stsp
11286 ad493afc 2019-08-03 stsp #ifndef PROFILE
11287 ad493afc 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
11288 ad493afc 2019-08-03 stsp "unveil", NULL) == -1)
11289 ad493afc 2019-08-03 stsp err(1, "pledge");
11290 ad493afc 2019-08-03 stsp #endif
11291 2e1f37b0 2019-08-08 stsp if (patch_script_path && !pflag)
11292 2e1f37b0 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
11293 2e1f37b0 2019-08-08 stsp
11294 ad493afc 2019-08-03 stsp cwd = getcwd(NULL, 0);
11295 ad493afc 2019-08-03 stsp if (cwd == NULL) {
11296 ad493afc 2019-08-03 stsp error = got_error_from_errno("getcwd");
11297 ad493afc 2019-08-03 stsp goto done;
11298 ad493afc 2019-08-03 stsp }
11299 ad493afc 2019-08-03 stsp
11300 ad493afc 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
11301 fa51e947 2020-03-27 stsp if (error) {
11302 fa51e947 2020-03-27 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
11303 fa51e947 2020-03-27 stsp error = wrap_not_worktree_error(error, "unstage", cwd);
11304 ad493afc 2019-08-03 stsp goto done;
11305 fa51e947 2020-03-27 stsp }
11306 ad493afc 2019-08-03 stsp
11307 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
11308 c9956ddf 2019-09-08 stsp NULL);
11309 ad493afc 2019-08-03 stsp if (error != NULL)
11310 ad493afc 2019-08-03 stsp goto done;
11311 ad493afc 2019-08-03 stsp
11312 2e1f37b0 2019-08-08 stsp if (patch_script_path) {
11313 2e1f37b0 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
11314 2e1f37b0 2019-08-08 stsp if (patch_script_file == NULL) {
11315 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fopen",
11316 2e1f37b0 2019-08-08 stsp patch_script_path);
11317 2e1f37b0 2019-08-08 stsp goto done;
11318 2e1f37b0 2019-08-08 stsp }
11319 2e1f37b0 2019-08-08 stsp }
11320 2e1f37b0 2019-08-08 stsp
11321 00f36e47 2019-09-06 stsp error = apply_unveil(got_repo_get_path(repo), 0,
11322 ad493afc 2019-08-03 stsp got_worktree_get_root_path(worktree));
11323 ad493afc 2019-08-03 stsp if (error)
11324 ad493afc 2019-08-03 stsp goto done;
11325 ad493afc 2019-08-03 stsp
11326 ad493afc 2019-08-03 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
11327 ad493afc 2019-08-03 stsp if (error)
11328 ad493afc 2019-08-03 stsp goto done;
11329 ad493afc 2019-08-03 stsp
11330 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
11331 2e1f37b0 2019-08-08 stsp cpa.action = "unstage";
11332 9627c110 2020-04-18 stsp memset(&upa, 0, sizeof(upa));
11333 ad493afc 2019-08-03 stsp error = got_worktree_unstage(worktree, &paths, update_progress,
11334 9627c110 2020-04-18 stsp &upa, pflag ? choose_patch : NULL, &cpa, repo);
11335 9627c110 2020-04-18 stsp if (!error)
11336 35ca1db7 2021-09-28 stsp print_merge_progress_stats(&upa);
11337 715dc77e 2019-08-03 stsp done:
11338 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
11339 2e1f37b0 2019-08-08 stsp error == NULL)
11340 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
11341 1d0f4054 2021-06-17 stsp if (repo) {
11342 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
11343 1d0f4054 2021-06-17 stsp if (error == NULL)
11344 1d0f4054 2021-06-17 stsp error = close_err;
11345 1d0f4054 2021-06-17 stsp }
11346 715dc77e 2019-08-03 stsp if (worktree)
11347 715dc77e 2019-08-03 stsp got_worktree_close(worktree);
11348 715dc77e 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
11349 715dc77e 2019-08-03 stsp free((char *)pe->path);
11350 715dc77e 2019-08-03 stsp got_pathlist_free(&paths);
11351 715dc77e 2019-08-03 stsp free(cwd);
11352 01073a5d 2019-08-22 stsp return error;
11353 01073a5d 2019-08-22 stsp }
11354 01073a5d 2019-08-22 stsp
11355 01073a5d 2019-08-22 stsp __dead static void
11356 01073a5d 2019-08-22 stsp usage_cat(void)
11357 01073a5d 2019-08-22 stsp {
11358 896e9b6f 2019-08-26 stsp fprintf(stderr, "usage: %s cat [-r repository ] [ -c commit ] [ -P ] "
11359 896e9b6f 2019-08-26 stsp "arg1 [arg2 ...]\n", getprogname());
11360 01073a5d 2019-08-22 stsp exit(1);
11361 01073a5d 2019-08-22 stsp }
11362 01073a5d 2019-08-22 stsp
11363 01073a5d 2019-08-22 stsp static const struct got_error *
11364 01073a5d 2019-08-22 stsp cat_blob(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
11365 01073a5d 2019-08-22 stsp {
11366 01073a5d 2019-08-22 stsp const struct got_error *err;
11367 01073a5d 2019-08-22 stsp struct got_blob_object *blob;
11368 01073a5d 2019-08-22 stsp
11369 01073a5d 2019-08-22 stsp err = got_object_open_as_blob(&blob, repo, id, 8192);
11370 01073a5d 2019-08-22 stsp if (err)
11371 01073a5d 2019-08-22 stsp return err;
11372 01073a5d 2019-08-22 stsp
11373 01073a5d 2019-08-22 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, outfile, blob);
11374 01073a5d 2019-08-22 stsp got_object_blob_close(blob);
11375 01073a5d 2019-08-22 stsp return err;
11376 01073a5d 2019-08-22 stsp }
11377 01073a5d 2019-08-22 stsp
11378 01073a5d 2019-08-22 stsp static const struct got_error *
11379 01073a5d 2019-08-22 stsp cat_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
11380 01073a5d 2019-08-22 stsp {
11381 01073a5d 2019-08-22 stsp const struct got_error *err;
11382 01073a5d 2019-08-22 stsp struct got_tree_object *tree;
11383 56e0773d 2019-11-28 stsp int nentries, i;
11384 01073a5d 2019-08-22 stsp
11385 01073a5d 2019-08-22 stsp err = got_object_open_as_tree(&tree, repo, id);
11386 01073a5d 2019-08-22 stsp if (err)
11387 01073a5d 2019-08-22 stsp return err;
11388 01073a5d 2019-08-22 stsp
11389 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
11390 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
11391 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
11392 01073a5d 2019-08-22 stsp char *id_str;
11393 01073a5d 2019-08-22 stsp if (sigint_received || sigpipe_received)
11394 01073a5d 2019-08-22 stsp break;
11395 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
11396 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str, got_tree_entry_get_id(te));
11397 01073a5d 2019-08-22 stsp if (err)
11398 01073a5d 2019-08-22 stsp break;
11399 56e0773d 2019-11-28 stsp fprintf(outfile, "%s %.7o %s\n", id_str,
11400 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(te),
11401 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te));
11402 01073a5d 2019-08-22 stsp free(id_str);
11403 01073a5d 2019-08-22 stsp }
11404 01073a5d 2019-08-22 stsp
11405 01073a5d 2019-08-22 stsp got_object_tree_close(tree);
11406 01073a5d 2019-08-22 stsp return err;
11407 01073a5d 2019-08-22 stsp }
11408 01073a5d 2019-08-22 stsp
11409 01073a5d 2019-08-22 stsp static const struct got_error *
11410 01073a5d 2019-08-22 stsp cat_commit(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
11411 01073a5d 2019-08-22 stsp {
11412 01073a5d 2019-08-22 stsp const struct got_error *err;
11413 01073a5d 2019-08-22 stsp struct got_commit_object *commit;
11414 01073a5d 2019-08-22 stsp const struct got_object_id_queue *parent_ids;
11415 01073a5d 2019-08-22 stsp struct got_object_qid *pid;
11416 01073a5d 2019-08-22 stsp char *id_str = NULL;
11417 24ea5512 2019-08-22 stsp const char *logmsg = NULL;
11418 01073a5d 2019-08-22 stsp
11419 01073a5d 2019-08-22 stsp err = got_object_open_as_commit(&commit, repo, id);
11420 01073a5d 2019-08-22 stsp if (err)
11421 01073a5d 2019-08-22 stsp return err;
11422 01073a5d 2019-08-22 stsp
11423 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_commit_get_tree_id(commit));
11424 01073a5d 2019-08-22 stsp if (err)
11425 01073a5d 2019-08-22 stsp goto done;
11426 01073a5d 2019-08-22 stsp
11427 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str);
11428 01073a5d 2019-08-22 stsp parent_ids = got_object_commit_get_parent_ids(commit);
11429 8aa93786 2019-08-22 stsp fprintf(outfile, "numparents %d\n",
11430 01073a5d 2019-08-22 stsp got_object_commit_get_nparents(commit));
11431 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(pid, parent_ids, entry) {
11432 01073a5d 2019-08-22 stsp char *pid_str;
11433 01073a5d 2019-08-22 stsp err = got_object_id_str(&pid_str, pid->id);
11434 01073a5d 2019-08-22 stsp if (err)
11435 01073a5d 2019-08-22 stsp goto done;
11436 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_PARENT, pid_str);
11437 01073a5d 2019-08-22 stsp free(pid_str);
11438 01073a5d 2019-08-22 stsp }
11439 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
11440 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
11441 1367695b 2020-09-26 naddy (long long)got_object_commit_get_author_time(commit));
11442 01073a5d 2019-08-22 stsp
11443 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_COMMITTER,
11444 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
11445 1367695b 2020-09-26 naddy (long long)got_object_commit_get_committer_time(commit));
11446 01073a5d 2019-08-22 stsp
11447 24ea5512 2019-08-22 stsp logmsg = got_object_commit_get_logmsg_raw(commit);
11448 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
11449 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", logmsg);
11450 01073a5d 2019-08-22 stsp done:
11451 01073a5d 2019-08-22 stsp free(id_str);
11452 01073a5d 2019-08-22 stsp got_object_commit_close(commit);
11453 01073a5d 2019-08-22 stsp return err;
11454 01073a5d 2019-08-22 stsp }
11455 01073a5d 2019-08-22 stsp
11456 01073a5d 2019-08-22 stsp static const struct got_error *
11457 01073a5d 2019-08-22 stsp cat_tag(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
11458 01073a5d 2019-08-22 stsp {
11459 01073a5d 2019-08-22 stsp const struct got_error *err;
11460 01073a5d 2019-08-22 stsp struct got_tag_object *tag;
11461 01073a5d 2019-08-22 stsp char *id_str = NULL;
11462 01073a5d 2019-08-22 stsp const char *tagmsg = NULL;
11463 01073a5d 2019-08-22 stsp
11464 01073a5d 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
11465 01073a5d 2019-08-22 stsp if (err)
11466 01073a5d 2019-08-22 stsp return err;
11467 01073a5d 2019-08-22 stsp
11468 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_tag_get_object_id(tag));
11469 01073a5d 2019-08-22 stsp if (err)
11470 01073a5d 2019-08-22 stsp goto done;
11471 01073a5d 2019-08-22 stsp
11472 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str);
11473 e15d5241 2019-08-22 stsp
11474 01073a5d 2019-08-22 stsp switch (got_object_tag_get_object_type(tag)) {
11475 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
11476 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
11477 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_BLOB);
11478 01073a5d 2019-08-22 stsp break;
11479 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
11480 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
11481 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TREE);
11482 01073a5d 2019-08-22 stsp break;
11483 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
11484 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
11485 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_COMMIT);
11486 01073a5d 2019-08-22 stsp break;
11487 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
11488 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
11489 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TAG);
11490 01073a5d 2019-08-22 stsp break;
11491 01073a5d 2019-08-22 stsp default:
11492 01073a5d 2019-08-22 stsp break;
11493 01073a5d 2019-08-22 stsp }
11494 01073a5d 2019-08-22 stsp
11495 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TAG,
11496 e15d5241 2019-08-22 stsp got_object_tag_get_name(tag));
11497 e15d5241 2019-08-22 stsp
11498 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
11499 8aa93786 2019-08-22 stsp got_object_tag_get_tagger(tag),
11500 1367695b 2020-09-26 naddy (long long)got_object_tag_get_tagger_time(tag));
11501 01073a5d 2019-08-22 stsp
11502 01073a5d 2019-08-22 stsp tagmsg = got_object_tag_get_message(tag);
11503 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(tagmsg));
11504 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", tagmsg);
11505 01073a5d 2019-08-22 stsp done:
11506 01073a5d 2019-08-22 stsp free(id_str);
11507 01073a5d 2019-08-22 stsp got_object_tag_close(tag);
11508 01073a5d 2019-08-22 stsp return err;
11509 01073a5d 2019-08-22 stsp }
11510 01073a5d 2019-08-22 stsp
11511 01073a5d 2019-08-22 stsp static const struct got_error *
11512 01073a5d 2019-08-22 stsp cmd_cat(int argc, char *argv[])
11513 01073a5d 2019-08-22 stsp {
11514 01073a5d 2019-08-22 stsp const struct got_error *error;
11515 01073a5d 2019-08-22 stsp struct got_repository *repo = NULL;
11516 01073a5d 2019-08-22 stsp struct got_worktree *worktree = NULL;
11517 01073a5d 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *label = NULL;
11518 896e9b6f 2019-08-26 stsp const char *commit_id_str = NULL;
11519 896e9b6f 2019-08-26 stsp struct got_object_id *id = NULL, *commit_id = NULL;
11520 896e9b6f 2019-08-26 stsp int ch, obj_type, i, force_path = 0;
11521 84de9106 2020-12-26 stsp struct got_reflist_head refs;
11522 84de9106 2020-12-26 stsp
11523 d9dff0e5 2020-12-26 stsp TAILQ_INIT(&refs);
11524 01073a5d 2019-08-22 stsp
11525 01073a5d 2019-08-22 stsp #ifndef PROFILE
11526 01073a5d 2019-08-22 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
11527 01073a5d 2019-08-22 stsp NULL) == -1)
11528 01073a5d 2019-08-22 stsp err(1, "pledge");
11529 01073a5d 2019-08-22 stsp #endif
11530 01073a5d 2019-08-22 stsp
11531 896e9b6f 2019-08-26 stsp while ((ch = getopt(argc, argv, "c:r:P")) != -1) {
11532 01073a5d 2019-08-22 stsp switch (ch) {
11533 896e9b6f 2019-08-26 stsp case 'c':
11534 896e9b6f 2019-08-26 stsp commit_id_str = optarg;
11535 896e9b6f 2019-08-26 stsp break;
11536 01073a5d 2019-08-22 stsp case 'r':
11537 01073a5d 2019-08-22 stsp repo_path = realpath(optarg, NULL);
11538 01073a5d 2019-08-22 stsp if (repo_path == NULL)
11539 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
11540 9ba1d308 2019-10-21 stsp optarg);
11541 01073a5d 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
11542 01073a5d 2019-08-22 stsp break;
11543 896e9b6f 2019-08-26 stsp case 'P':
11544 896e9b6f 2019-08-26 stsp force_path = 1;
11545 896e9b6f 2019-08-26 stsp break;
11546 01073a5d 2019-08-22 stsp default:
11547 01073a5d 2019-08-22 stsp usage_cat();
11548 01073a5d 2019-08-22 stsp /* NOTREACHED */
11549 01073a5d 2019-08-22 stsp }
11550 01073a5d 2019-08-22 stsp }
11551 01073a5d 2019-08-22 stsp
11552 01073a5d 2019-08-22 stsp argc -= optind;
11553 01073a5d 2019-08-22 stsp argv += optind;
11554 01073a5d 2019-08-22 stsp
11555 01073a5d 2019-08-22 stsp cwd = getcwd(NULL, 0);
11556 01073a5d 2019-08-22 stsp if (cwd == NULL) {
11557 01073a5d 2019-08-22 stsp error = got_error_from_errno("getcwd");
11558 01073a5d 2019-08-22 stsp goto done;
11559 01073a5d 2019-08-22 stsp }
11560 01073a5d 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
11561 01073a5d 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
11562 01073a5d 2019-08-22 stsp goto done;
11563 01073a5d 2019-08-22 stsp if (worktree) {
11564 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
11565 01073a5d 2019-08-22 stsp repo_path = strdup(
11566 01073a5d 2019-08-22 stsp got_worktree_get_repo_path(worktree));
11567 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
11568 01073a5d 2019-08-22 stsp error = got_error_from_errno("strdup");
11569 01073a5d 2019-08-22 stsp goto done;
11570 01073a5d 2019-08-22 stsp }
11571 01073a5d 2019-08-22 stsp }
11572 01073a5d 2019-08-22 stsp }
11573 01073a5d 2019-08-22 stsp
11574 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
11575 01073a5d 2019-08-22 stsp repo_path = getcwd(NULL, 0);
11576 01073a5d 2019-08-22 stsp if (repo_path == NULL)
11577 01073a5d 2019-08-22 stsp return got_error_from_errno("getcwd");
11578 01073a5d 2019-08-22 stsp }
11579 01073a5d 2019-08-22 stsp
11580 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
11581 01073a5d 2019-08-22 stsp free(repo_path);
11582 01073a5d 2019-08-22 stsp if (error != NULL)
11583 01073a5d 2019-08-22 stsp goto done;
11584 01073a5d 2019-08-22 stsp
11585 01073a5d 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
11586 896e9b6f 2019-08-26 stsp if (error)
11587 896e9b6f 2019-08-26 stsp goto done;
11588 896e9b6f 2019-08-26 stsp
11589 84de9106 2020-12-26 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
11590 84de9106 2020-12-26 stsp if (error)
11591 84de9106 2020-12-26 stsp goto done;
11592 84de9106 2020-12-26 stsp
11593 896e9b6f 2019-08-26 stsp if (commit_id_str == NULL)
11594 896e9b6f 2019-08-26 stsp commit_id_str = GOT_REF_HEAD;
11595 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&commit_id, NULL,
11596 84de9106 2020-12-26 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, &refs, repo);
11597 01073a5d 2019-08-22 stsp if (error)
11598 01073a5d 2019-08-22 stsp goto done;
11599 01073a5d 2019-08-22 stsp
11600 01073a5d 2019-08-22 stsp for (i = 0; i < argc; i++) {
11601 896e9b6f 2019-08-26 stsp if (force_path) {
11602 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo, commit_id,
11603 896e9b6f 2019-08-26 stsp argv[i]);
11604 896e9b6f 2019-08-26 stsp if (error)
11605 896e9b6f 2019-08-26 stsp break;
11606 896e9b6f 2019-08-26 stsp } else {
11607 71a27632 2020-01-15 stsp error = got_repo_match_object_id(&id, &label, argv[i],
11608 84de9106 2020-12-26 stsp GOT_OBJ_TYPE_ANY, NULL /* do not resolve tags */,
11609 84de9106 2020-12-26 stsp repo);
11610 896e9b6f 2019-08-26 stsp if (error) {
11611 896e9b6f 2019-08-26 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR &&
11612 896e9b6f 2019-08-26 stsp error->code != GOT_ERR_NOT_REF)
11613 896e9b6f 2019-08-26 stsp break;
11614 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo,
11615 896e9b6f 2019-08-26 stsp commit_id, argv[i]);
11616 896e9b6f 2019-08-26 stsp if (error)
11617 896e9b6f 2019-08-26 stsp break;
11618 896e9b6f 2019-08-26 stsp }
11619 896e9b6f 2019-08-26 stsp }
11620 01073a5d 2019-08-22 stsp
11621 01073a5d 2019-08-22 stsp error = got_object_get_type(&obj_type, repo, id);
11622 01073a5d 2019-08-22 stsp if (error)
11623 01073a5d 2019-08-22 stsp break;
11624 01073a5d 2019-08-22 stsp
11625 01073a5d 2019-08-22 stsp switch (obj_type) {
11626 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
11627 01073a5d 2019-08-22 stsp error = cat_blob(id, repo, stdout);
11628 01073a5d 2019-08-22 stsp break;
11629 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
11630 01073a5d 2019-08-22 stsp error = cat_tree(id, repo, stdout);
11631 01073a5d 2019-08-22 stsp break;
11632 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
11633 01073a5d 2019-08-22 stsp error = cat_commit(id, repo, stdout);
11634 01073a5d 2019-08-22 stsp break;
11635 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
11636 01073a5d 2019-08-22 stsp error = cat_tag(id, repo, stdout);
11637 01073a5d 2019-08-22 stsp break;
11638 01073a5d 2019-08-22 stsp default:
11639 01073a5d 2019-08-22 stsp error = got_error(GOT_ERR_OBJ_TYPE);
11640 01073a5d 2019-08-22 stsp break;
11641 01073a5d 2019-08-22 stsp }
11642 01073a5d 2019-08-22 stsp if (error)
11643 01073a5d 2019-08-22 stsp break;
11644 01073a5d 2019-08-22 stsp free(label);
11645 01073a5d 2019-08-22 stsp label = NULL;
11646 01073a5d 2019-08-22 stsp free(id);
11647 01073a5d 2019-08-22 stsp id = NULL;
11648 01073a5d 2019-08-22 stsp }
11649 01073a5d 2019-08-22 stsp done:
11650 01073a5d 2019-08-22 stsp free(label);
11651 01073a5d 2019-08-22 stsp free(id);
11652 896e9b6f 2019-08-26 stsp free(commit_id);
11653 01073a5d 2019-08-22 stsp if (worktree)
11654 01073a5d 2019-08-22 stsp got_worktree_close(worktree);
11655 01073a5d 2019-08-22 stsp if (repo) {
11656 1d0f4054 2021-06-17 stsp const struct got_error *close_err = got_repo_close(repo);
11657 01073a5d 2019-08-22 stsp if (error == NULL)
11658 1d0f4054 2021-06-17 stsp error = close_err;
11659 b2118c49 2020-07-28 stsp }
11660 84de9106 2020-12-26 stsp got_ref_list_free(&refs);
11661 b2118c49 2020-07-28 stsp return error;
11662 b2118c49 2020-07-28 stsp }
11663 b2118c49 2020-07-28 stsp
11664 b2118c49 2020-07-28 stsp __dead static void
11665 b2118c49 2020-07-28 stsp usage_info(void)
11666 b2118c49 2020-07-28 stsp {
11667 b2118c49 2020-07-28 stsp fprintf(stderr, "usage: %s info [path ...]\n",
11668 b2118c49 2020-07-28 stsp getprogname());
11669 b2118c49 2020-07-28 stsp exit(1);
11670 b2118c49 2020-07-28 stsp }
11671 b2118c49 2020-07-28 stsp
11672 b2118c49 2020-07-28 stsp static const struct got_error *
11673 b2118c49 2020-07-28 stsp print_path_info(void *arg, const char *path, mode_t mode, time_t mtime,
11674 b2118c49 2020-07-28 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
11675 b2118c49 2020-07-28 stsp struct got_object_id *commit_id)
11676 b2118c49 2020-07-28 stsp {
11677 b2118c49 2020-07-28 stsp const struct got_error *err = NULL;
11678 b2118c49 2020-07-28 stsp char *id_str = NULL;
11679 b2118c49 2020-07-28 stsp char datebuf[128];
11680 b2118c49 2020-07-28 stsp struct tm mytm, *tm;
11681 b2118c49 2020-07-28 stsp struct got_pathlist_head *paths = arg;
11682 b2118c49 2020-07-28 stsp struct got_pathlist_entry *pe;
11683 b2118c49 2020-07-28 stsp
11684 b2118c49 2020-07-28 stsp /*
11685 b2118c49 2020-07-28 stsp * Clear error indication from any of the path arguments which
11686 b2118c49 2020-07-28 stsp * would cause this file index entry to be displayed.
11687 b2118c49 2020-07-28 stsp */
11688 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, paths, entry) {
11689 b2118c49 2020-07-28 stsp if (got_path_cmp(path, pe->path, strlen(path),
11690 b2118c49 2020-07-28 stsp pe->path_len) == 0 ||
11691 b2118c49 2020-07-28 stsp got_path_is_child(path, pe->path, pe->path_len))
11692 b2118c49 2020-07-28 stsp pe->data = NULL; /* no error */
11693 b2118c49 2020-07-28 stsp }
11694 b2118c49 2020-07-28 stsp
11695 b2118c49 2020-07-28 stsp printf(GOT_COMMIT_SEP_STR);
11696 b2118c49 2020-07-28 stsp if (S_ISLNK(mode))
11697 b2118c49 2020-07-28 stsp printf("symlink: %s\n", path);
11698 b2118c49 2020-07-28 stsp else if (S_ISREG(mode)) {
11699 b2118c49 2020-07-28 stsp printf("file: %s\n", path);
11700 b2118c49 2020-07-28 stsp printf("mode: %o\n", mode & (S_IRWXU | S_IRWXG | S_IRWXO));
11701 b2118c49 2020-07-28 stsp } else if (S_ISDIR(mode))
11702 b2118c49 2020-07-28 stsp printf("directory: %s\n", path);
11703 b2118c49 2020-07-28 stsp else
11704 b2118c49 2020-07-28 stsp printf("something: %s\n", path);
11705 b2118c49 2020-07-28 stsp
11706 b2118c49 2020-07-28 stsp tm = localtime_r(&mtime, &mytm);
11707 b2118c49 2020-07-28 stsp if (tm == NULL)
11708 b2118c49 2020-07-28 stsp return NULL;
11709 ec6d1a36 2021-03-21 jrick if (strftime(datebuf, sizeof(datebuf), "%c %Z", tm) == 0)
11710 b2118c49 2020-07-28 stsp return got_error(GOT_ERR_NO_SPACE);
11711 b2118c49 2020-07-28 stsp printf("timestamp: %s\n", datebuf);
11712 b2118c49 2020-07-28 stsp
11713 b2118c49 2020-07-28 stsp if (blob_id) {
11714 b2118c49 2020-07-28 stsp err = got_object_id_str(&id_str, blob_id);
11715 b2118c49 2020-07-28 stsp if (err)
11716 b2118c49 2020-07-28 stsp return err;
11717 b2118c49 2020-07-28 stsp printf("based on blob: %s\n", id_str);
11718 b2118c49 2020-07-28 stsp free(id_str);
11719 b2118c49 2020-07-28 stsp }
11720 b2118c49 2020-07-28 stsp
11721 b2118c49 2020-07-28 stsp if (staged_blob_id) {
11722 b2118c49 2020-07-28 stsp err = got_object_id_str(&id_str, staged_blob_id);
11723 b2118c49 2020-07-28 stsp if (err)
11724 b2118c49 2020-07-28 stsp return err;
11725 b2118c49 2020-07-28 stsp printf("based on staged blob: %s\n", id_str);
11726 b2118c49 2020-07-28 stsp free(id_str);
11727 b2118c49 2020-07-28 stsp }
11728 b2118c49 2020-07-28 stsp
11729 b2118c49 2020-07-28 stsp if (commit_id) {
11730 b2118c49 2020-07-28 stsp err = got_object_id_str(&id_str, commit_id);
11731 b2118c49 2020-07-28 stsp if (err)
11732 b2118c49 2020-07-28 stsp return err;
11733 b2118c49 2020-07-28 stsp printf("based on commit: %s\n", id_str);
11734 b2118c49 2020-07-28 stsp free(id_str);
11735 b2118c49 2020-07-28 stsp }
11736 b2118c49 2020-07-28 stsp
11737 b2118c49 2020-07-28 stsp return NULL;
11738 b2118c49 2020-07-28 stsp }
11739 b2118c49 2020-07-28 stsp
11740 b2118c49 2020-07-28 stsp static const struct got_error *
11741 b2118c49 2020-07-28 stsp cmd_info(int argc, char *argv[])
11742 b2118c49 2020-07-28 stsp {
11743 b2118c49 2020-07-28 stsp const struct got_error *error = NULL;
11744 b2118c49 2020-07-28 stsp struct got_worktree *worktree = NULL;
11745 b2118c49 2020-07-28 stsp char *cwd = NULL, *id_str = NULL;
11746 b2118c49 2020-07-28 stsp struct got_pathlist_head paths;
11747 b2118c49 2020-07-28 stsp struct got_pathlist_entry *pe;
11748 b2118c49 2020-07-28 stsp char *uuidstr = NULL;
11749 b2118c49 2020-07-28 stsp int ch, show_files = 0;
11750 b2118c49 2020-07-28 stsp
11751 b2118c49 2020-07-28 stsp TAILQ_INIT(&paths);
11752 b2118c49 2020-07-28 stsp
11753 b2118c49 2020-07-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
11754 b2118c49 2020-07-28 stsp switch (ch) {
11755 b2118c49 2020-07-28 stsp default:
11756 b2118c49 2020-07-28 stsp usage_info();
11757 b2118c49 2020-07-28 stsp /* NOTREACHED */
11758 b2118c49 2020-07-28 stsp }
11759 01073a5d 2019-08-22 stsp }
11760 b2118c49 2020-07-28 stsp
11761 b2118c49 2020-07-28 stsp argc -= optind;
11762 b2118c49 2020-07-28 stsp argv += optind;
11763 b2118c49 2020-07-28 stsp
11764 b2118c49 2020-07-28 stsp #ifndef PROFILE
11765 b2118c49 2020-07-28 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
11766 b2118c49 2020-07-28 stsp NULL) == -1)
11767 b2118c49 2020-07-28 stsp err(1, "pledge");
11768 b2118c49 2020-07-28 stsp #endif
11769 b2118c49 2020-07-28 stsp cwd = getcwd(NULL, 0);
11770 b2118c49 2020-07-28 stsp if (cwd == NULL) {
11771 b2118c49 2020-07-28 stsp error = got_error_from_errno("getcwd");
11772 b2118c49 2020-07-28 stsp goto done;
11773 b2118c49 2020-07-28 stsp }
11774 b2118c49 2020-07-28 stsp
11775 b2118c49 2020-07-28 stsp error = got_worktree_open(&worktree, cwd);
11776 b2118c49 2020-07-28 stsp if (error) {
11777 b2118c49 2020-07-28 stsp if (error->code == GOT_ERR_NOT_WORKTREE)
11778 8ea5c997 2021-02-07 naddy error = wrap_not_worktree_error(error, "info", cwd);
11779 b2118c49 2020-07-28 stsp goto done;
11780 b2118c49 2020-07-28 stsp }
11781 b2118c49 2020-07-28 stsp
11782 b2118c49 2020-07-28 stsp error = apply_unveil(NULL, 0, got_worktree_get_root_path(worktree));
11783 b2118c49 2020-07-28 stsp if (error)
11784 b2118c49 2020-07-28 stsp goto done;
11785 b2118c49 2020-07-28 stsp
11786 b2118c49 2020-07-28 stsp if (argc >= 1) {
11787 b2118c49 2020-07-28 stsp error = get_worktree_paths_from_argv(&paths, argc, argv,
11788 b2118c49 2020-07-28 stsp worktree);
11789 b2118c49 2020-07-28 stsp if (error)
11790 b2118c49 2020-07-28 stsp goto done;
11791 b2118c49 2020-07-28 stsp show_files = 1;
11792 b2118c49 2020-07-28 stsp }
11793 b2118c49 2020-07-28 stsp
11794 b2118c49 2020-07-28 stsp error = got_object_id_str(&id_str,
11795 b2118c49 2020-07-28 stsp got_worktree_get_base_commit_id(worktree));
11796 b2118c49 2020-07-28 stsp if (error)
11797 b2118c49 2020-07-28 stsp goto done;
11798 b2118c49 2020-07-28 stsp
11799 b2118c49 2020-07-28 stsp error = got_worktree_get_uuid(&uuidstr, worktree);
11800 b2118c49 2020-07-28 stsp if (error)
11801 b2118c49 2020-07-28 stsp goto done;
11802 b2118c49 2020-07-28 stsp
11803 b2118c49 2020-07-28 stsp printf("work tree: %s\n", got_worktree_get_root_path(worktree));
11804 b2118c49 2020-07-28 stsp printf("work tree base commit: %s\n", id_str);
11805 b2118c49 2020-07-28 stsp printf("work tree path prefix: %s\n",
11806 b2118c49 2020-07-28 stsp got_worktree_get_path_prefix(worktree));
11807 b2118c49 2020-07-28 stsp printf("work tree branch reference: %s\n",
11808 b2118c49 2020-07-28 stsp got_worktree_get_head_ref_name(worktree));
11809 b2118c49 2020-07-28 stsp printf("work tree UUID: %s\n", uuidstr);
11810 b2118c49 2020-07-28 stsp printf("repository: %s\n", got_worktree_get_repo_path(worktree));
11811 b2118c49 2020-07-28 stsp
11812 b2118c49 2020-07-28 stsp if (show_files) {
11813 b2118c49 2020-07-28 stsp struct got_pathlist_entry *pe;
11814 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, &paths, entry) {
11815 b2118c49 2020-07-28 stsp if (pe->path_len == 0)
11816 b2118c49 2020-07-28 stsp continue;
11817 b2118c49 2020-07-28 stsp /*
11818 b2118c49 2020-07-28 stsp * Assume this path will fail. This will be corrected
11819 b2118c49 2020-07-28 stsp * in print_path_info() in case the path does suceeed.
11820 b2118c49 2020-07-28 stsp */
11821 b2118c49 2020-07-28 stsp pe->data = (void *)got_error_path(pe->path,
11822 b2118c49 2020-07-28 stsp GOT_ERR_BAD_PATH);
11823 b2118c49 2020-07-28 stsp }
11824 b2118c49 2020-07-28 stsp error = got_worktree_path_info(worktree, &paths,
11825 b2118c49 2020-07-28 stsp print_path_info, &paths, check_cancelled, NULL);
11826 b2118c49 2020-07-28 stsp if (error)
11827 b2118c49 2020-07-28 stsp goto done;
11828 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, &paths, entry) {
11829 b2118c49 2020-07-28 stsp if (pe->data != NULL) {
11830 b2118c49 2020-07-28 stsp error = pe->data; /* bad path */
11831 b2118c49 2020-07-28 stsp break;
11832 b2118c49 2020-07-28 stsp }
11833 b2118c49 2020-07-28 stsp }
11834 b2118c49 2020-07-28 stsp }
11835 b2118c49 2020-07-28 stsp done:
11836 b2118c49 2020-07-28 stsp TAILQ_FOREACH(pe, &paths, entry)
11837 b2118c49 2020-07-28 stsp free((char *)pe->path);
11838 b2118c49 2020-07-28 stsp got_pathlist_free(&paths);
11839 b2118c49 2020-07-28 stsp free(cwd);
11840 b2118c49 2020-07-28 stsp free(id_str);
11841 b2118c49 2020-07-28 stsp free(uuidstr);
11842 0ebf8283 2019-07-24 stsp return error;
11843 0ebf8283 2019-07-24 stsp }