Blame


1 5c860e29 2018-03-12 stsp /*
2 f42b1b34 2018-03-12 stsp * Copyright (c) 2017 Martin Pieuchot <mpi@openbsd.org>
3 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
4 5c860e29 2018-03-12 stsp *
5 5c860e29 2018-03-12 stsp * Permission to use, copy, modify, and distribute this software for any
6 5c860e29 2018-03-12 stsp * purpose with or without fee is hereby granted, provided that the above
7 5c860e29 2018-03-12 stsp * copyright notice and this permission notice appear in all copies.
8 5c860e29 2018-03-12 stsp *
9 5c860e29 2018-03-12 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 5c860e29 2018-03-12 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 5c860e29 2018-03-12 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 5c860e29 2018-03-12 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 5c860e29 2018-03-12 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 5c860e29 2018-03-12 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 5c860e29 2018-03-12 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 5c860e29 2018-03-12 stsp */
17 5c860e29 2018-03-12 stsp
18 f42b1b34 2018-03-12 stsp #include <sys/queue.h>
19 64a96a6d 2018-04-01 stsp #include <sys/limits.h>
20 c0768b0f 2018-06-10 stsp #include <sys/types.h>
21 5de5890b 2018-10-18 stsp #include <sys/stat.h>
22 3c45a30a 2019-05-12 jcs #include <sys/param.h>
23 33ad4cbe 2019-05-12 jcs #include <sys/wait.h>
24 f42b1b34 2018-03-12 stsp
25 5c860e29 2018-03-12 stsp #include <err.h>
26 5c860e29 2018-03-12 stsp #include <errno.h>
27 5c860e29 2018-03-12 stsp #include <locale.h>
28 818c7501 2019-07-11 stsp #include <ctype.h>
29 99437157 2018-11-11 stsp #include <signal.h>
30 5c860e29 2018-03-12 stsp #include <stdio.h>
31 5c860e29 2018-03-12 stsp #include <stdlib.h>
32 5c860e29 2018-03-12 stsp #include <string.h>
33 5c860e29 2018-03-12 stsp #include <unistd.h>
34 c09a553d 2018-03-12 stsp #include <libgen.h>
35 c0768b0f 2018-06-10 stsp #include <time.h>
36 33ad4cbe 2019-05-12 jcs #include <paths.h>
37 5c860e29 2018-03-12 stsp
38 f42b1b34 2018-03-12 stsp #include "got_error.h"
39 f42b1b34 2018-03-12 stsp #include "got_object.h"
40 5261c201 2018-04-01 stsp #include "got_reference.h"
41 f42b1b34 2018-03-12 stsp #include "got_repository.h"
42 1dd54920 2019-05-11 stsp #include "got_path.h"
43 c09a553d 2018-03-12 stsp #include "got_worktree.h"
44 79109fed 2018-03-27 stsp #include "got_diff.h"
45 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
46 404c43c4 2018-06-21 stsp #include "got_blame.h"
47 63219cd2 2019-01-04 stsp #include "got_privsep.h"
48 793c30b5 2019-05-13 stsp #include "got_opentemp.h"
49 5c860e29 2018-03-12 stsp
50 5c860e29 2018-03-12 stsp #ifndef nitems
51 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
52 5c860e29 2018-03-12 stsp #endif
53 99437157 2018-11-11 stsp
54 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
55 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
56 99437157 2018-11-11 stsp
57 99437157 2018-11-11 stsp static void
58 99437157 2018-11-11 stsp catch_sigint(int signo)
59 99437157 2018-11-11 stsp {
60 99437157 2018-11-11 stsp sigint_received = 1;
61 99437157 2018-11-11 stsp }
62 99437157 2018-11-11 stsp
63 99437157 2018-11-11 stsp static void
64 99437157 2018-11-11 stsp catch_sigpipe(int signo)
65 99437157 2018-11-11 stsp {
66 99437157 2018-11-11 stsp sigpipe_received = 1;
67 99437157 2018-11-11 stsp }
68 5c860e29 2018-03-12 stsp
69 99437157 2018-11-11 stsp
70 8cfb4057 2019-07-09 stsp struct got_cmd {
71 5c860e29 2018-03-12 stsp const char *cmd_name;
72 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
73 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
74 97b3a7be 2019-07-09 stsp const char *cmd_alias;
75 5c860e29 2018-03-12 stsp };
76 5c860e29 2018-03-12 stsp
77 ce5b7c56 2019-07-09 stsp __dead static void usage(int);
78 2c7829a4 2019-06-17 stsp __dead static void usage_init(void);
79 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
80 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
81 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
82 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
83 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
84 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
85 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
86 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
87 4e759de4 2019-06-26 stsp __dead static void usage_branch(void);
88 d00136be 2019-03-26 stsp __dead static void usage_add(void);
89 648e4ef7 2019-07-09 stsp __dead static void usage_remove(void);
90 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
91 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
92 234035bc 2019-06-01 stsp __dead static void usage_cherrypick(void);
93 5ef14e63 2019-06-02 stsp __dead static void usage_backout(void);
94 818c7501 2019-07-11 stsp __dead static void usage_rebase(void);
95 5c860e29 2018-03-12 stsp
96 2c7829a4 2019-06-17 stsp static const struct got_error* cmd_init(int, char *[]);
97 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
98 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
99 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
100 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
101 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
102 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
103 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
104 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
105 4e759de4 2019-06-26 stsp static const struct got_error* cmd_branch(int, char *[]);
106 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
107 648e4ef7 2019-07-09 stsp static const struct got_error* cmd_remove(int, char *[]);
108 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
109 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
110 234035bc 2019-06-01 stsp static const struct got_error* cmd_cherrypick(int, char *[]);
111 5ef14e63 2019-06-02 stsp static const struct got_error* cmd_backout(int, char *[]);
112 818c7501 2019-07-11 stsp static const struct got_error* cmd_rebase(int, char *[]);
113 5c860e29 2018-03-12 stsp
114 8cfb4057 2019-07-09 stsp static struct got_cmd got_commands[] = {
115 97b3a7be 2019-07-09 stsp { "init", cmd_init, usage_init, "" },
116 97b3a7be 2019-07-09 stsp { "checkout", cmd_checkout, usage_checkout, "co" },
117 97b3a7be 2019-07-09 stsp { "update", cmd_update, usage_update, "up" },
118 97b3a7be 2019-07-09 stsp { "log", cmd_log, usage_log, "" },
119 97b3a7be 2019-07-09 stsp { "diff", cmd_diff, usage_diff, "" },
120 97b3a7be 2019-07-09 stsp { "blame", cmd_blame, usage_blame, "" },
121 97b3a7be 2019-07-09 stsp { "tree", cmd_tree, usage_tree, "" },
122 97b3a7be 2019-07-09 stsp { "status", cmd_status, usage_status, "st" },
123 97b3a7be 2019-07-09 stsp { "ref", cmd_ref, usage_ref, "" },
124 97b3a7be 2019-07-09 stsp { "branch", cmd_branch, usage_branch, "br" },
125 97b3a7be 2019-07-09 stsp { "add", cmd_add, usage_add, "" },
126 648e4ef7 2019-07-09 stsp { "remove", cmd_remove, usage_remove, "rm" },
127 97b3a7be 2019-07-09 stsp { "revert", cmd_revert, usage_revert, "rv" },
128 97b3a7be 2019-07-09 stsp { "commit", cmd_commit, usage_commit, "ci" },
129 016477fd 2019-07-09 stsp { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
130 97b3a7be 2019-07-09 stsp { "backout", cmd_backout, usage_backout, "bo" },
131 818c7501 2019-07-11 stsp { "rebase", cmd_rebase, usage_rebase, "rb" },
132 5c860e29 2018-03-12 stsp };
133 ce5b7c56 2019-07-09 stsp
134 ce5b7c56 2019-07-09 stsp static void
135 ce5b7c56 2019-07-09 stsp list_commands(void)
136 ce5b7c56 2019-07-09 stsp {
137 ce5b7c56 2019-07-09 stsp int i;
138 ce5b7c56 2019-07-09 stsp
139 ce5b7c56 2019-07-09 stsp fprintf(stderr, "commands:");
140 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(got_commands); i++) {
141 ce5b7c56 2019-07-09 stsp struct got_cmd *cmd = &got_commands[i];
142 ce5b7c56 2019-07-09 stsp fprintf(stderr, " %s", cmd->cmd_name);
143 ce5b7c56 2019-07-09 stsp }
144 ce5b7c56 2019-07-09 stsp fputc('\n', stderr);
145 ce5b7c56 2019-07-09 stsp }
146 5c860e29 2018-03-12 stsp
147 5c860e29 2018-03-12 stsp int
148 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
149 5c860e29 2018-03-12 stsp {
150 8cfb4057 2019-07-09 stsp struct got_cmd *cmd;
151 5c860e29 2018-03-12 stsp unsigned int i;
152 5c860e29 2018-03-12 stsp int ch;
153 1b6b95a8 2018-03-12 stsp int hflag = 0;
154 5c860e29 2018-03-12 stsp
155 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
156 5c860e29 2018-03-12 stsp
157 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
158 5c860e29 2018-03-12 stsp switch (ch) {
159 1b6b95a8 2018-03-12 stsp case 'h':
160 1b6b95a8 2018-03-12 stsp hflag = 1;
161 1b6b95a8 2018-03-12 stsp break;
162 5c860e29 2018-03-12 stsp default:
163 ce5b7c56 2019-07-09 stsp usage(hflag);
164 5c860e29 2018-03-12 stsp /* NOTREACHED */
165 5c860e29 2018-03-12 stsp }
166 5c860e29 2018-03-12 stsp }
167 5c860e29 2018-03-12 stsp
168 5c860e29 2018-03-12 stsp argc -= optind;
169 5c860e29 2018-03-12 stsp argv += optind;
170 1e70621d 2018-03-27 stsp optind = 0;
171 5c860e29 2018-03-12 stsp
172 5c860e29 2018-03-12 stsp if (argc <= 0)
173 ce5b7c56 2019-07-09 stsp usage(hflag);
174 5c860e29 2018-03-12 stsp
175 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
176 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
177 99437157 2018-11-11 stsp
178 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
179 d7d4f210 2018-03-12 stsp const struct got_error *error;
180 d7d4f210 2018-03-12 stsp
181 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
182 5c860e29 2018-03-12 stsp
183 97b3a7be 2019-07-09 stsp if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
184 97b3a7be 2019-07-09 stsp strcmp(cmd->cmd_alias, argv[0]) != 0)
185 5c860e29 2018-03-12 stsp continue;
186 5c860e29 2018-03-12 stsp
187 1b6b95a8 2018-03-12 stsp if (hflag)
188 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
189 1b6b95a8 2018-03-12 stsp
190 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
191 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
192 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
193 d7d4f210 2018-03-12 stsp return 1;
194 d7d4f210 2018-03-12 stsp }
195 d7d4f210 2018-03-12 stsp
196 d7d4f210 2018-03-12 stsp return 0;
197 5c860e29 2018-03-12 stsp }
198 5c860e29 2018-03-12 stsp
199 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
200 ce5b7c56 2019-07-09 stsp list_commands();
201 5c860e29 2018-03-12 stsp return 1;
202 5c860e29 2018-03-12 stsp }
203 5c860e29 2018-03-12 stsp
204 4ed7e80c 2018-05-20 stsp __dead static void
205 ce5b7c56 2019-07-09 stsp usage(int hflag)
206 5c860e29 2018-03-12 stsp {
207 5e070240 2019-06-22 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n", getprogname());
208 ce5b7c56 2019-07-09 stsp if (hflag)
209 ce5b7c56 2019-07-09 stsp list_commands();
210 5c860e29 2018-03-12 stsp exit(1);
211 5c860e29 2018-03-12 stsp }
212 5c860e29 2018-03-12 stsp
213 0266afb7 2019-01-04 stsp static const struct got_error *
214 0ee7065d 2019-05-13 stsp get_editor(char **abspath)
215 e2ba3d07 2019-05-13 stsp {
216 0ee7065d 2019-05-13 stsp const struct got_error *err = NULL;
217 e2ba3d07 2019-05-13 stsp const char *editor;
218 e2ba3d07 2019-05-13 stsp
219 e2ba3d07 2019-05-13 stsp editor = getenv("VISUAL");
220 e2ba3d07 2019-05-13 stsp if (editor == NULL)
221 e2ba3d07 2019-05-13 stsp editor = getenv("EDITOR");
222 e2ba3d07 2019-05-13 stsp
223 0ee7065d 2019-05-13 stsp if (editor) {
224 0ee7065d 2019-05-13 stsp err = got_path_find_prog(abspath, editor);
225 0ee7065d 2019-05-13 stsp if (err)
226 0ee7065d 2019-05-13 stsp return err;
227 0ee7065d 2019-05-13 stsp }
228 e2ba3d07 2019-05-13 stsp
229 0ee7065d 2019-05-13 stsp if (*abspath == NULL) {
230 0ee7065d 2019-05-13 stsp *abspath = strdup("/bin/ed");
231 0ee7065d 2019-05-13 stsp if (*abspath == NULL)
232 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
233 0ee7065d 2019-05-13 stsp }
234 0ee7065d 2019-05-13 stsp
235 e2ba3d07 2019-05-13 stsp return NULL;
236 e2ba3d07 2019-05-13 stsp }
237 e2ba3d07 2019-05-13 stsp
238 e2ba3d07 2019-05-13 stsp static const struct got_error *
239 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
240 314a6357 2019-05-13 stsp const char *worktree_path, int create_worktree)
241 0266afb7 2019-01-04 stsp {
242 163ce85a 2019-05-13 stsp const struct got_error *err;
243 0266afb7 2019-01-04 stsp
244 a0937847 2019-05-11 stsp if (create_worktree) {
245 a0937847 2019-05-11 stsp /* Pre-create work tree path to avoid unveiling its parents. */
246 163ce85a 2019-05-13 stsp err = got_path_mkdir(worktree_path);
247 3c45a30a 2019-05-12 jcs
248 3c45a30a 2019-05-12 jcs if (errno == EEXIST) {
249 280f921b 2019-05-12 stsp if (got_path_dir_is_empty(worktree_path)) {
250 3c45a30a 2019-05-12 jcs errno = 0;
251 163ce85a 2019-05-13 stsp err = NULL;
252 3c45a30a 2019-05-12 jcs } else {
253 df056ada 2019-05-15 stsp err = got_error_path(worktree_path,
254 df056ada 2019-05-15 stsp GOT_ERR_DIR_NOT_EMPTY);
255 3c45a30a 2019-05-12 jcs }
256 3c45a30a 2019-05-12 jcs }
257 3c45a30a 2019-05-12 jcs
258 163ce85a 2019-05-13 stsp if (err && (err->code != GOT_ERR_ERRNO || errno != EISDIR))
259 163ce85a 2019-05-13 stsp return err;
260 a0937847 2019-05-11 stsp }
261 a0937847 2019-05-11 stsp
262 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
263 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
264 0266afb7 2019-01-04 stsp
265 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
266 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
267 0266afb7 2019-01-04 stsp
268 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
269 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", "/tmp");
270 0266afb7 2019-01-04 stsp
271 163ce85a 2019-05-13 stsp err = got_privsep_unveil_exec_helpers();
272 163ce85a 2019-05-13 stsp if (err != NULL)
273 163ce85a 2019-05-13 stsp return err;
274 0266afb7 2019-01-04 stsp
275 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
276 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
277 0266afb7 2019-01-04 stsp
278 0266afb7 2019-01-04 stsp return NULL;
279 2c7829a4 2019-06-17 stsp }
280 2c7829a4 2019-06-17 stsp
281 2c7829a4 2019-06-17 stsp __dead static void
282 2c7829a4 2019-06-17 stsp usage_init(void)
283 2c7829a4 2019-06-17 stsp {
284 2c7829a4 2019-06-17 stsp fprintf(stderr, "usage: %s init path\n", getprogname());
285 2c7829a4 2019-06-17 stsp exit(1);
286 2c7829a4 2019-06-17 stsp }
287 2c7829a4 2019-06-17 stsp
288 2c7829a4 2019-06-17 stsp static const struct got_error *
289 2c7829a4 2019-06-17 stsp cmd_init(int argc, char *argv[])
290 2c7829a4 2019-06-17 stsp {
291 2c7829a4 2019-06-17 stsp const struct got_error *error = NULL;
292 2c7829a4 2019-06-17 stsp char *repo_path = NULL;
293 2c7829a4 2019-06-17 stsp int ch;
294 2c7829a4 2019-06-17 stsp
295 2c7829a4 2019-06-17 stsp while ((ch = getopt(argc, argv, "")) != -1) {
296 2c7829a4 2019-06-17 stsp switch (ch) {
297 2c7829a4 2019-06-17 stsp default:
298 2c7829a4 2019-06-17 stsp usage_init();
299 2c7829a4 2019-06-17 stsp /* NOTREACHED */
300 2c7829a4 2019-06-17 stsp }
301 2c7829a4 2019-06-17 stsp }
302 2c7829a4 2019-06-17 stsp
303 2c7829a4 2019-06-17 stsp argc -= optind;
304 2c7829a4 2019-06-17 stsp argv += optind;
305 2c7829a4 2019-06-17 stsp
306 2c7829a4 2019-06-17 stsp #ifndef PROFILE
307 2c7829a4 2019-06-17 stsp if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
308 2c7829a4 2019-06-17 stsp err(1, "pledge");
309 2c7829a4 2019-06-17 stsp #endif
310 2c7829a4 2019-06-17 stsp if (argc != 1)
311 bc20e173 2019-06-17 stsp usage_init();
312 2c7829a4 2019-06-17 stsp
313 2c7829a4 2019-06-17 stsp repo_path = strdup(argv[0]);
314 2c7829a4 2019-06-17 stsp if (repo_path == NULL)
315 2c7829a4 2019-06-17 stsp return got_error_from_errno("strdup");
316 2c7829a4 2019-06-17 stsp
317 2c7829a4 2019-06-17 stsp got_path_strip_trailing_slashes(repo_path);
318 2c7829a4 2019-06-17 stsp
319 2c7829a4 2019-06-17 stsp error = got_path_mkdir(repo_path);
320 2c7829a4 2019-06-17 stsp if (error &&
321 2c7829a4 2019-06-17 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
322 2c7829a4 2019-06-17 stsp goto done;
323 2c7829a4 2019-06-17 stsp
324 2c7829a4 2019-06-17 stsp error = apply_unveil(repo_path, 0, NULL, 0);
325 2c7829a4 2019-06-17 stsp if (error)
326 2c7829a4 2019-06-17 stsp goto done;
327 2c7829a4 2019-06-17 stsp
328 2c7829a4 2019-06-17 stsp error = got_repo_init(repo_path);
329 2c7829a4 2019-06-17 stsp if (error != NULL)
330 2c7829a4 2019-06-17 stsp goto done;
331 2c7829a4 2019-06-17 stsp
332 2c7829a4 2019-06-17 stsp done:
333 2c7829a4 2019-06-17 stsp free(repo_path);
334 2c7829a4 2019-06-17 stsp return error;
335 0266afb7 2019-01-04 stsp }
336 0266afb7 2019-01-04 stsp
337 4ed7e80c 2018-05-20 stsp __dead static void
338 c09a553d 2018-03-12 stsp usage_checkout(void)
339 c09a553d 2018-03-12 stsp {
340 08573d5b 2019-05-14 stsp fprintf(stderr, "usage: %s checkout [-b branch] [-c commit] "
341 08573d5b 2019-05-14 stsp "[-p prefix] repository-path [worktree-path]\n", getprogname());
342 c09a553d 2018-03-12 stsp exit(1);
343 92a684f4 2018-03-12 stsp }
344 92a684f4 2018-03-12 stsp
345 92a684f4 2018-03-12 stsp static void
346 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
347 92a684f4 2018-03-12 stsp {
348 92a684f4 2018-03-12 stsp char *worktree_path = arg;
349 a484d721 2019-06-10 stsp
350 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
351 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
352 a484d721 2019-06-10 stsp return;
353 92a684f4 2018-03-12 stsp
354 92a684f4 2018-03-12 stsp while (path[0] == '/')
355 92a684f4 2018-03-12 stsp path++;
356 92a684f4 2018-03-12 stsp
357 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
358 99437157 2018-11-11 stsp }
359 99437157 2018-11-11 stsp
360 99437157 2018-11-11 stsp static const struct got_error *
361 6bad629b 2019-02-04 stsp check_cancelled(void *arg)
362 99437157 2018-11-11 stsp {
363 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
364 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
365 99437157 2018-11-11 stsp return NULL;
366 8069f636 2019-01-12 stsp }
367 8069f636 2019-01-12 stsp
368 8069f636 2019-01-12 stsp static const struct got_error *
369 024e9686 2019-05-14 stsp check_linear_ancestry(struct got_object_id *commit_id,
370 024e9686 2019-05-14 stsp struct got_object_id *base_commit_id, struct got_repository *repo)
371 8069f636 2019-01-12 stsp {
372 d5bea539 2019-05-13 stsp const struct got_error *err = NULL;
373 024e9686 2019-05-14 stsp struct got_object_id *yca_id;
374 8069f636 2019-01-12 stsp
375 d5bea539 2019-05-13 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
376 d5bea539 2019-05-13 stsp commit_id, base_commit_id, repo);
377 36a38700 2019-05-10 stsp if (err)
378 36a38700 2019-05-10 stsp return err;
379 8069f636 2019-01-12 stsp
380 d5bea539 2019-05-13 stsp if (yca_id == NULL)
381 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
382 8069f636 2019-01-12 stsp
383 d5bea539 2019-05-13 stsp /*
384 d5bea539 2019-05-13 stsp * Require a straight line of history between the target commit
385 d5bea539 2019-05-13 stsp * and the work tree's base commit.
386 d5bea539 2019-05-13 stsp *
387 d5751d49 2019-05-14 stsp * Non-linear situations such as this require a rebase:
388 d5bea539 2019-05-13 stsp *
389 d5bea539 2019-05-13 stsp * (commit) D F (base_commit)
390 d5bea539 2019-05-13 stsp * \ /
391 d5bea539 2019-05-13 stsp * C E
392 d5bea539 2019-05-13 stsp * \ /
393 d5bea539 2019-05-13 stsp * B (yca)
394 d5bea539 2019-05-13 stsp * |
395 d5bea539 2019-05-13 stsp * A
396 d5bea539 2019-05-13 stsp *
397 d5bea539 2019-05-13 stsp * 'got update' only handles linear cases:
398 d5bea539 2019-05-13 stsp * Update forwards in time: A (base/yca) - B - C - D (commit)
399 efa2b6f7 2019-05-14 stsp * Update backwards in time: D (base) - C - B - A (commit/yca)
400 d5bea539 2019-05-13 stsp */
401 d5bea539 2019-05-13 stsp if (got_object_id_cmp(commit_id, yca_id) != 0 &&
402 d5bea539 2019-05-13 stsp got_object_id_cmp(base_commit_id, yca_id) != 0)
403 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
404 8069f636 2019-01-12 stsp
405 d5bea539 2019-05-13 stsp free(yca_id);
406 d5bea539 2019-05-13 stsp return NULL;
407 c09a553d 2018-03-12 stsp }
408 a367ff0f 2019-05-14 stsp
409 a367ff0f 2019-05-14 stsp static const struct got_error *
410 a367ff0f 2019-05-14 stsp check_same_branch(struct got_object_id *commit_id,
411 a367ff0f 2019-05-14 stsp struct got_reference *head_ref, struct got_repository *repo)
412 a367ff0f 2019-05-14 stsp {
413 a367ff0f 2019-05-14 stsp const struct got_error *err = NULL;
414 a367ff0f 2019-05-14 stsp struct got_commit_graph *graph = NULL;
415 a367ff0f 2019-05-14 stsp struct got_object_id *head_commit_id = NULL;
416 a367ff0f 2019-05-14 stsp int is_same_branch = 0;
417 a367ff0f 2019-05-14 stsp
418 a367ff0f 2019-05-14 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
419 a367ff0f 2019-05-14 stsp if (err)
420 a367ff0f 2019-05-14 stsp goto done;
421 a367ff0f 2019-05-14 stsp
422 a367ff0f 2019-05-14 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
423 a367ff0f 2019-05-14 stsp if (err)
424 a367ff0f 2019-05-14 stsp goto done;
425 a367ff0f 2019-05-14 stsp
426 a367ff0f 2019-05-14 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo);
427 a367ff0f 2019-05-14 stsp if (err)
428 a367ff0f 2019-05-14 stsp goto done;
429 a367ff0f 2019-05-14 stsp
430 a367ff0f 2019-05-14 stsp for (;;) {
431 a367ff0f 2019-05-14 stsp struct got_object_id *id;
432 a367ff0f 2019-05-14 stsp err = got_commit_graph_iter_next(&id, graph);
433 a367ff0f 2019-05-14 stsp if (err) {
434 a367ff0f 2019-05-14 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
435 a367ff0f 2019-05-14 stsp err = NULL;
436 a367ff0f 2019-05-14 stsp break;
437 a367ff0f 2019-05-14 stsp }
438 a367ff0f 2019-05-14 stsp else if (err->code != GOT_ERR_ITER_NEED_MORE)
439 a367ff0f 2019-05-14 stsp break;
440 a367ff0f 2019-05-14 stsp err = got_commit_graph_fetch_commits(graph, 1,
441 a367ff0f 2019-05-14 stsp repo);
442 a367ff0f 2019-05-14 stsp if (err)
443 a367ff0f 2019-05-14 stsp break;
444 a367ff0f 2019-05-14 stsp }
445 c09a553d 2018-03-12 stsp
446 a367ff0f 2019-05-14 stsp if (id) {
447 a367ff0f 2019-05-14 stsp if (got_object_id_cmp(id, commit_id) == 0) {
448 a367ff0f 2019-05-14 stsp is_same_branch = 1;
449 a367ff0f 2019-05-14 stsp break;
450 a367ff0f 2019-05-14 stsp }
451 a367ff0f 2019-05-14 stsp }
452 a367ff0f 2019-05-14 stsp }
453 a367ff0f 2019-05-14 stsp done:
454 a367ff0f 2019-05-14 stsp if (graph)
455 a367ff0f 2019-05-14 stsp got_commit_graph_close(graph);
456 a367ff0f 2019-05-14 stsp free(head_commit_id);
457 a367ff0f 2019-05-14 stsp if (!err && !is_same_branch)
458 a367ff0f 2019-05-14 stsp err = got_error(GOT_ERR_ANCESTRY);
459 a367ff0f 2019-05-14 stsp return err;
460 a367ff0f 2019-05-14 stsp }
461 8069f636 2019-01-12 stsp
462 4ed7e80c 2018-05-20 stsp static const struct got_error *
463 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
464 c09a553d 2018-03-12 stsp {
465 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
466 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
467 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
468 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
469 c09a553d 2018-03-12 stsp char *repo_path = NULL;
470 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
471 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
472 08573d5b 2019-05-14 stsp const char *branch_name = GOT_REF_HEAD;
473 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
474 72151b04 2019-05-11 stsp int ch, same_path_prefix;
475 c09a553d 2018-03-12 stsp
476 08573d5b 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:p:")) != -1) {
477 0bb8a95e 2018-03-12 stsp switch (ch) {
478 08573d5b 2019-05-14 stsp case 'b':
479 08573d5b 2019-05-14 stsp branch_name = optarg;
480 08573d5b 2019-05-14 stsp break;
481 8069f636 2019-01-12 stsp case 'c':
482 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
483 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
484 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
485 8069f636 2019-01-12 stsp break;
486 0bb8a95e 2018-03-12 stsp case 'p':
487 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
488 0bb8a95e 2018-03-12 stsp break;
489 0bb8a95e 2018-03-12 stsp default:
490 2deda0b9 2019-03-07 stsp usage_checkout();
491 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
492 0bb8a95e 2018-03-12 stsp }
493 0bb8a95e 2018-03-12 stsp }
494 0bb8a95e 2018-03-12 stsp
495 0bb8a95e 2018-03-12 stsp argc -= optind;
496 0bb8a95e 2018-03-12 stsp argv += optind;
497 0bb8a95e 2018-03-12 stsp
498 6715a751 2018-03-16 stsp #ifndef PROFILE
499 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
500 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
501 c09a553d 2018-03-12 stsp err(1, "pledge");
502 6715a751 2018-03-16 stsp #endif
503 0bb8a95e 2018-03-12 stsp if (argc == 1) {
504 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
505 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
506 76089277 2018-04-01 stsp if (repo_path == NULL)
507 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
508 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
509 76089277 2018-04-01 stsp if (cwd == NULL) {
510 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
511 76089277 2018-04-01 stsp goto done;
512 76089277 2018-04-01 stsp }
513 230a42bd 2019-05-11 jcs if (path_prefix[0]) {
514 230a42bd 2019-05-11 jcs base = basename(path_prefix);
515 230a42bd 2019-05-11 jcs if (base == NULL) {
516 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
517 230a42bd 2019-05-11 jcs path_prefix);
518 230a42bd 2019-05-11 jcs goto done;
519 230a42bd 2019-05-11 jcs }
520 230a42bd 2019-05-11 jcs } else {
521 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
522 230a42bd 2019-05-11 jcs if (base == NULL) {
523 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
524 230a42bd 2019-05-11 jcs repo_path);
525 230a42bd 2019-05-11 jcs goto done;
526 230a42bd 2019-05-11 jcs }
527 76089277 2018-04-01 stsp }
528 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
529 c09a553d 2018-03-12 stsp if (dotgit)
530 c09a553d 2018-03-12 stsp *dotgit = '\0';
531 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
532 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
533 c09a553d 2018-03-12 stsp free(cwd);
534 76089277 2018-04-01 stsp goto done;
535 c09a553d 2018-03-12 stsp }
536 c09a553d 2018-03-12 stsp free(cwd);
537 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
538 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
539 76089277 2018-04-01 stsp if (repo_path == NULL) {
540 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
541 76089277 2018-04-01 stsp goto done;
542 76089277 2018-04-01 stsp }
543 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
544 76089277 2018-04-01 stsp if (worktree_path == NULL) {
545 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[1]);
546 76089277 2018-04-01 stsp goto done;
547 76089277 2018-04-01 stsp }
548 c09a553d 2018-03-12 stsp } else
549 c09a553d 2018-03-12 stsp usage_checkout();
550 c09a553d 2018-03-12 stsp
551 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
552 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(worktree_path);
553 13bfb272 2019-05-10 jcs
554 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
555 c09a553d 2018-03-12 stsp if (error != NULL)
556 c02c541e 2019-03-29 stsp goto done;
557 c02c541e 2019-03-29 stsp
558 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path, 1);
559 c02c541e 2019-03-29 stsp if (error)
560 c09a553d 2018-03-12 stsp goto done;
561 8069f636 2019-01-12 stsp
562 08573d5b 2019-05-14 stsp error = got_ref_open(&head_ref, repo, branch_name, 0);
563 c09a553d 2018-03-12 stsp if (error != NULL)
564 c09a553d 2018-03-12 stsp goto done;
565 c09a553d 2018-03-12 stsp
566 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
567 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
568 c09a553d 2018-03-12 stsp goto done;
569 c09a553d 2018-03-12 stsp
570 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
571 c09a553d 2018-03-12 stsp if (error != NULL)
572 c09a553d 2018-03-12 stsp goto done;
573 c09a553d 2018-03-12 stsp
574 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
575 e5dc7198 2018-12-29 stsp path_prefix);
576 e5dc7198 2018-12-29 stsp if (error != NULL)
577 e5dc7198 2018-12-29 stsp goto done;
578 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
579 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
580 49520a32 2018-12-29 stsp goto done;
581 49520a32 2018-12-29 stsp }
582 49520a32 2018-12-29 stsp
583 8069f636 2019-01-12 stsp if (commit_id_str) {
584 8069f636 2019-01-12 stsp struct got_object_id *commit_id;
585 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&commit_id,
586 dd88155e 2019-06-29 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
587 8069f636 2019-01-12 stsp if (error != NULL)
588 8069f636 2019-01-12 stsp goto done;
589 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
590 024e9686 2019-05-14 stsp got_worktree_get_base_commit_id(worktree), repo);
591 8069f636 2019-01-12 stsp if (error != NULL) {
592 8069f636 2019-01-12 stsp free(commit_id);
593 8069f636 2019-01-12 stsp goto done;
594 8069f636 2019-01-12 stsp }
595 45d344f6 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
596 45d344f6 2019-05-14 stsp if (error)
597 45d344f6 2019-05-14 stsp goto done;
598 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
599 8069f636 2019-01-12 stsp commit_id);
600 8069f636 2019-01-12 stsp free(commit_id);
601 8069f636 2019-01-12 stsp if (error)
602 8069f636 2019-01-12 stsp goto done;
603 8069f636 2019-01-12 stsp }
604 8069f636 2019-01-12 stsp
605 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, "", repo,
606 6bad629b 2019-02-04 stsp checkout_progress, worktree_path, check_cancelled, NULL);
607 c09a553d 2018-03-12 stsp if (error != NULL)
608 c09a553d 2018-03-12 stsp goto done;
609 c09a553d 2018-03-12 stsp
610 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
611 c09a553d 2018-03-12 stsp
612 c09a553d 2018-03-12 stsp done:
613 8069f636 2019-01-12 stsp free(commit_id_str);
614 76089277 2018-04-01 stsp free(repo_path);
615 507dc3bb 2018-12-29 stsp free(worktree_path);
616 507dc3bb 2018-12-29 stsp return error;
617 507dc3bb 2018-12-29 stsp }
618 507dc3bb 2018-12-29 stsp
619 507dc3bb 2018-12-29 stsp __dead static void
620 507dc3bb 2018-12-29 stsp usage_update(void)
621 507dc3bb 2018-12-29 stsp {
622 024e9686 2019-05-14 stsp fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path]\n",
623 507dc3bb 2018-12-29 stsp getprogname());
624 507dc3bb 2018-12-29 stsp exit(1);
625 507dc3bb 2018-12-29 stsp }
626 507dc3bb 2018-12-29 stsp
627 507dc3bb 2018-12-29 stsp static void
628 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
629 507dc3bb 2018-12-29 stsp {
630 784955db 2019-01-12 stsp int *did_something = arg;
631 784955db 2019-01-12 stsp
632 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
633 507dc3bb 2018-12-29 stsp return;
634 507dc3bb 2018-12-29 stsp
635 1545c615 2019-02-10 stsp *did_something = 1;
636 a484d721 2019-06-10 stsp
637 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
638 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
639 a484d721 2019-06-10 stsp return;
640 a484d721 2019-06-10 stsp
641 507dc3bb 2018-12-29 stsp while (path[0] == '/')
642 507dc3bb 2018-12-29 stsp path++;
643 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
644 be7061eb 2018-12-30 stsp }
645 be7061eb 2018-12-30 stsp
646 be7061eb 2018-12-30 stsp static const struct got_error *
647 a1fb16d8 2019-05-24 stsp switch_head_ref(struct got_reference *head_ref,
648 a1fb16d8 2019-05-24 stsp struct got_object_id *commit_id, struct got_worktree *worktree,
649 a1fb16d8 2019-05-24 stsp struct got_repository *repo)
650 a1fb16d8 2019-05-24 stsp {
651 a1fb16d8 2019-05-24 stsp const struct got_error *err = NULL;
652 a1fb16d8 2019-05-24 stsp char *base_id_str;
653 a1fb16d8 2019-05-24 stsp int ref_has_moved = 0;
654 a1fb16d8 2019-05-24 stsp
655 a1fb16d8 2019-05-24 stsp /* Trivial case: switching between two different references. */
656 a1fb16d8 2019-05-24 stsp if (strcmp(got_ref_get_name(head_ref),
657 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree)) != 0) {
658 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n",
659 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree),
660 a1fb16d8 2019-05-24 stsp got_ref_get_name(head_ref));
661 a1fb16d8 2019-05-24 stsp return got_worktree_set_head_ref(worktree, head_ref);
662 a1fb16d8 2019-05-24 stsp }
663 a1fb16d8 2019-05-24 stsp
664 a1fb16d8 2019-05-24 stsp err = check_linear_ancestry(commit_id,
665 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree), repo);
666 a1fb16d8 2019-05-24 stsp if (err) {
667 a1fb16d8 2019-05-24 stsp if (err->code != GOT_ERR_ANCESTRY)
668 a1fb16d8 2019-05-24 stsp return err;
669 a1fb16d8 2019-05-24 stsp ref_has_moved = 1;
670 a1fb16d8 2019-05-24 stsp }
671 a1fb16d8 2019-05-24 stsp if (!ref_has_moved)
672 a1fb16d8 2019-05-24 stsp return NULL;
673 a1fb16d8 2019-05-24 stsp
674 a1fb16d8 2019-05-24 stsp /* Switching to a rebased branch with the same reference name. */
675 a1fb16d8 2019-05-24 stsp err = got_object_id_str(&base_id_str,
676 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree));
677 a1fb16d8 2019-05-24 stsp if (err)
678 a1fb16d8 2019-05-24 stsp return err;
679 a1fb16d8 2019-05-24 stsp printf("Reference %s now points at a different branch\n",
680 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
681 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n", base_id_str,
682 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
683 a1fb16d8 2019-05-24 stsp return NULL;
684 a1fb16d8 2019-05-24 stsp }
685 a1fb16d8 2019-05-24 stsp
686 a1fb16d8 2019-05-24 stsp static const struct got_error *
687 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
688 507dc3bb 2018-12-29 stsp {
689 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
690 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
691 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
692 c4cdcb68 2019-04-03 stsp char *worktree_path = NULL, *path = NULL;
693 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
694 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
695 024e9686 2019-05-14 stsp const char *branch_name = NULL;
696 024e9686 2019-05-14 stsp struct got_reference *head_ref = NULL;
697 7d5807f4 2019-07-11 stsp int ch, did_something = 0, rebase_in_progress;
698 507dc3bb 2018-12-29 stsp
699 024e9686 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:")) != -1) {
700 507dc3bb 2018-12-29 stsp switch (ch) {
701 024e9686 2019-05-14 stsp case 'b':
702 024e9686 2019-05-14 stsp branch_name = optarg;
703 024e9686 2019-05-14 stsp break;
704 507dc3bb 2018-12-29 stsp case 'c':
705 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
706 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
707 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
708 507dc3bb 2018-12-29 stsp break;
709 507dc3bb 2018-12-29 stsp default:
710 2deda0b9 2019-03-07 stsp usage_update();
711 507dc3bb 2018-12-29 stsp /* NOTREACHED */
712 507dc3bb 2018-12-29 stsp }
713 507dc3bb 2018-12-29 stsp }
714 507dc3bb 2018-12-29 stsp
715 507dc3bb 2018-12-29 stsp argc -= optind;
716 507dc3bb 2018-12-29 stsp argv += optind;
717 507dc3bb 2018-12-29 stsp
718 507dc3bb 2018-12-29 stsp #ifndef PROFILE
719 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
720 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
721 507dc3bb 2018-12-29 stsp err(1, "pledge");
722 507dc3bb 2018-12-29 stsp #endif
723 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
724 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
725 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
726 c4cdcb68 2019-04-03 stsp goto done;
727 c4cdcb68 2019-04-03 stsp }
728 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
729 7d5807f4 2019-07-11 stsp if (error)
730 7d5807f4 2019-07-11 stsp goto done;
731 7d5807f4 2019-07-11 stsp
732 7d5807f4 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
733 c4cdcb68 2019-04-03 stsp if (error)
734 c4cdcb68 2019-04-03 stsp goto done;
735 7d5807f4 2019-07-11 stsp if (rebase_in_progress) {
736 7d5807f4 2019-07-11 stsp error = got_error(GOT_ERR_REBASING);
737 7d5807f4 2019-07-11 stsp goto done;
738 7d5807f4 2019-07-11 stsp }
739 c4cdcb68 2019-04-03 stsp
740 507dc3bb 2018-12-29 stsp if (argc == 0) {
741 c4cdcb68 2019-04-03 stsp path = strdup("");
742 c4cdcb68 2019-04-03 stsp if (path == NULL) {
743 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
744 507dc3bb 2018-12-29 stsp goto done;
745 507dc3bb 2018-12-29 stsp }
746 507dc3bb 2018-12-29 stsp } else if (argc == 1) {
747 c4cdcb68 2019-04-03 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
748 c4cdcb68 2019-04-03 stsp if (error)
749 507dc3bb 2018-12-29 stsp goto done;
750 507dc3bb 2018-12-29 stsp } else
751 507dc3bb 2018-12-29 stsp usage_update();
752 507dc3bb 2018-12-29 stsp
753 507dc3bb 2018-12-29 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
754 507dc3bb 2018-12-29 stsp if (error != NULL)
755 507dc3bb 2018-12-29 stsp goto done;
756 507dc3bb 2018-12-29 stsp
757 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
758 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
759 0266afb7 2019-01-04 stsp if (error)
760 0266afb7 2019-01-04 stsp goto done;
761 0266afb7 2019-01-04 stsp
762 a1fb16d8 2019-05-24 stsp error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
763 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree), 0);
764 024e9686 2019-05-14 stsp if (error != NULL)
765 024e9686 2019-05-14 stsp goto done;
766 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
767 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
768 9c4b8182 2019-01-02 stsp if (error != NULL)
769 9c4b8182 2019-01-02 stsp goto done;
770 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
771 507dc3bb 2018-12-29 stsp if (error != NULL)
772 507dc3bb 2018-12-29 stsp goto done;
773 507dc3bb 2018-12-29 stsp } else {
774 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&commit_id,
775 dd88155e 2019-06-29 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
776 507dc3bb 2018-12-29 stsp if (error != NULL)
777 507dc3bb 2018-12-29 stsp goto done;
778 507dc3bb 2018-12-29 stsp }
779 35c965b2 2018-12-29 stsp
780 a1fb16d8 2019-05-24 stsp if (branch_name) {
781 024e9686 2019-05-14 stsp struct got_object_id *head_commit_id;
782 024e9686 2019-05-14 stsp if (strlen(path) != 0) {
783 a1fb16d8 2019-05-24 stsp fprintf(stderr, "%s: switching between branches "
784 a1fb16d8 2019-05-24 stsp "requires that the entire work tree "
785 024e9686 2019-05-14 stsp "gets updated, not just '%s'\n",
786 024e9686 2019-05-14 stsp getprogname(), path);
787 024e9686 2019-05-14 stsp error = got_error(GOT_ERR_BAD_PATH);
788 024e9686 2019-05-14 stsp goto done;
789 024e9686 2019-05-14 stsp }
790 024e9686 2019-05-14 stsp error = got_ref_resolve(&head_commit_id, repo, head_ref);
791 024e9686 2019-05-14 stsp if (error)
792 024e9686 2019-05-14 stsp goto done;
793 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id, head_commit_id, repo);
794 a367ff0f 2019-05-14 stsp free(head_commit_id);
795 024e9686 2019-05-14 stsp if (error != NULL)
796 024e9686 2019-05-14 stsp goto done;
797 a367ff0f 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
798 a367ff0f 2019-05-14 stsp if (error)
799 a367ff0f 2019-05-14 stsp goto done;
800 a1fb16d8 2019-05-24 stsp error = switch_head_ref(head_ref, commit_id, worktree, repo);
801 024e9686 2019-05-14 stsp if (error)
802 024e9686 2019-05-14 stsp goto done;
803 024e9686 2019-05-14 stsp } else {
804 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
805 024e9686 2019-05-14 stsp got_worktree_get_base_commit_id(worktree), repo);
806 a367ff0f 2019-05-14 stsp if (error != NULL) {
807 a367ff0f 2019-05-14 stsp if (error->code == GOT_ERR_ANCESTRY)
808 a367ff0f 2019-05-14 stsp error = got_error(GOT_ERR_BRANCH_MOVED);
809 024e9686 2019-05-14 stsp goto done;
810 a367ff0f 2019-05-14 stsp }
811 a367ff0f 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
812 a367ff0f 2019-05-14 stsp if (error)
813 a367ff0f 2019-05-14 stsp goto done;
814 024e9686 2019-05-14 stsp }
815 507dc3bb 2018-12-29 stsp
816 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
817 507dc3bb 2018-12-29 stsp commit_id) != 0) {
818 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
819 507dc3bb 2018-12-29 stsp commit_id);
820 507dc3bb 2018-12-29 stsp if (error)
821 507dc3bb 2018-12-29 stsp goto done;
822 507dc3bb 2018-12-29 stsp }
823 507dc3bb 2018-12-29 stsp
824 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, path, repo,
825 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
826 507dc3bb 2018-12-29 stsp if (error != NULL)
827 507dc3bb 2018-12-29 stsp goto done;
828 9c4b8182 2019-01-02 stsp
829 784955db 2019-01-12 stsp if (did_something)
830 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
831 784955db 2019-01-12 stsp else
832 784955db 2019-01-12 stsp printf("Already up-to-date\n");
833 507dc3bb 2018-12-29 stsp done:
834 c09a553d 2018-03-12 stsp free(worktree_path);
835 c4cdcb68 2019-04-03 stsp free(path);
836 507dc3bb 2018-12-29 stsp free(commit_id);
837 9c4b8182 2019-01-02 stsp free(commit_id_str);
838 c09a553d 2018-03-12 stsp return error;
839 c09a553d 2018-03-12 stsp }
840 c09a553d 2018-03-12 stsp
841 f42b1b34 2018-03-12 stsp static const struct got_error *
842 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
843 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
844 5c860e29 2018-03-12 stsp {
845 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
846 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
847 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
848 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
849 aaa13589 2019-06-01 stsp struct got_diff_blob_output_unidiff_arg arg;
850 79109fed 2018-03-27 stsp
851 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
852 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
853 79109fed 2018-03-27 stsp if (err)
854 79109fed 2018-03-27 stsp return err;
855 79109fed 2018-03-27 stsp
856 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
857 79f35eb3 2018-06-11 stsp if (qid != NULL) {
858 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
859 79109fed 2018-03-27 stsp
860 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
861 79109fed 2018-03-27 stsp if (err)
862 79109fed 2018-03-27 stsp return err;
863 79109fed 2018-03-27 stsp
864 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
865 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
866 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
867 0f2b3dca 2018-12-22 stsp if (err)
868 0f2b3dca 2018-12-22 stsp return err;
869 0f2b3dca 2018-12-22 stsp
870 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
871 79109fed 2018-03-27 stsp if (err)
872 79109fed 2018-03-27 stsp return err;
873 79109fed 2018-03-27 stsp }
874 79109fed 2018-03-27 stsp
875 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
876 0f2b3dca 2018-12-22 stsp if (err)
877 0f2b3dca 2018-12-22 stsp goto done;
878 0f2b3dca 2018-12-22 stsp
879 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
880 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
881 aaa13589 2019-06-01 stsp arg.outfile = stdout;
882 aaa13589 2019-06-01 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
883 aaa13589 2019-06-01 stsp got_diff_blob_output_unidiff, &arg);
884 0f2b3dca 2018-12-22 stsp done:
885 79109fed 2018-03-27 stsp if (tree1)
886 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
887 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
888 0f2b3dca 2018-12-22 stsp free(id_str1);
889 0f2b3dca 2018-12-22 stsp free(id_str2);
890 79109fed 2018-03-27 stsp return err;
891 79109fed 2018-03-27 stsp }
892 79109fed 2018-03-27 stsp
893 4bb494d5 2018-06-16 stsp static char *
894 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
895 6c281f94 2018-06-11 stsp {
896 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
897 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
898 6c281f94 2018-06-11 stsp if (p)
899 6c281f94 2018-06-11 stsp *p = '\0';
900 6c281f94 2018-06-11 stsp return s;
901 6c281f94 2018-06-11 stsp }
902 6c281f94 2018-06-11 stsp
903 79109fed 2018-03-27 stsp static const struct got_error *
904 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
905 199a4027 2019-02-02 stsp struct got_repository *repo, int show_patch, int diff_context,
906 199a4027 2019-02-02 stsp struct got_reflist_head *refs)
907 79109fed 2018-03-27 stsp {
908 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
909 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
910 6c281f94 2018-06-11 stsp char datebuf[26];
911 45d799e2 2018-12-23 stsp time_t committer_time;
912 45d799e2 2018-12-23 stsp const char *author, *committer;
913 199a4027 2019-02-02 stsp char *refs_str = NULL;
914 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
915 5c860e29 2018-03-12 stsp
916 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
917 199a4027 2019-02-02 stsp char *s;
918 199a4027 2019-02-02 stsp const char *name;
919 199a4027 2019-02-02 stsp if (got_object_id_cmp(re->id, id) != 0)
920 199a4027 2019-02-02 stsp continue;
921 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
922 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
923 d9498b20 2019-02-05 stsp continue;
924 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
925 199a4027 2019-02-02 stsp name += 5;
926 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
927 7143d404 2019-03-12 stsp continue;
928 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
929 e34f9ed6 2019-02-02 stsp name += 6;
930 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
931 141c2bff 2019-02-04 stsp name += 8;
932 199a4027 2019-02-02 stsp s = refs_str;
933 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
934 199a4027 2019-02-02 stsp name) == -1) {
935 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
936 199a4027 2019-02-02 stsp free(s);
937 199a4027 2019-02-02 stsp break;
938 199a4027 2019-02-02 stsp }
939 199a4027 2019-02-02 stsp free(s);
940 199a4027 2019-02-02 stsp }
941 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
942 8bf5b3c9 2018-03-17 stsp if (err)
943 8bf5b3c9 2018-03-17 stsp return err;
944 788c352e 2018-06-16 stsp
945 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
946 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
947 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
948 832c249c 2018-06-10 stsp free(id_str);
949 d3d493d7 2019-02-21 stsp id_str = NULL;
950 d3d493d7 2019-02-21 stsp free(refs_str);
951 d3d493d7 2019-02-21 stsp refs_str = NULL;
952 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
953 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
954 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
955 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
956 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
957 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
958 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
959 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
960 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
961 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
962 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
963 3fe1abad 2018-06-10 stsp int n = 1;
964 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
965 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
966 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
967 a0603db2 2018-06-10 stsp if (err)
968 a0603db2 2018-06-10 stsp return err;
969 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
970 a0603db2 2018-06-10 stsp free(id_str);
971 a0603db2 2018-06-10 stsp }
972 a0603db2 2018-06-10 stsp }
973 832c249c 2018-06-10 stsp
974 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
975 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
976 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
977 8bf5b3c9 2018-03-17 stsp
978 621015ac 2018-07-23 stsp logmsg = logmsg0;
979 832c249c 2018-06-10 stsp do {
980 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
981 832c249c 2018-06-10 stsp if (line)
982 832c249c 2018-06-10 stsp printf(" %s\n", line);
983 832c249c 2018-06-10 stsp } while (line);
984 621015ac 2018-07-23 stsp free(logmsg0);
985 832c249c 2018-06-10 stsp
986 971751ac 2018-03-27 stsp if (show_patch) {
987 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
988 971751ac 2018-03-27 stsp if (err == 0)
989 971751ac 2018-03-27 stsp printf("\n");
990 971751ac 2018-03-27 stsp }
991 07862c20 2018-09-15 stsp
992 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
993 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
994 07862c20 2018-09-15 stsp return err;
995 f42b1b34 2018-03-12 stsp }
996 5c860e29 2018-03-12 stsp
997 f42b1b34 2018-03-12 stsp static const struct got_error *
998 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
999 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
1000 199a4027 2019-02-02 stsp int first_parent_traversal, struct got_reflist_head *refs)
1001 f42b1b34 2018-03-12 stsp {
1002 f42b1b34 2018-03-12 stsp const struct got_error *err;
1003 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
1004 372ccdbb 2018-06-10 stsp
1005 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
1006 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
1007 f42b1b34 2018-03-12 stsp if (err)
1008 f42b1b34 2018-03-12 stsp return err;
1009 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
1010 372ccdbb 2018-06-10 stsp if (err)
1011 fcc85cad 2018-07-22 stsp goto done;
1012 656b1f76 2019-05-11 jcs for (;;) {
1013 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
1014 372ccdbb 2018-06-10 stsp struct got_object_id *id;
1015 8bf5b3c9 2018-03-17 stsp
1016 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1017 84453469 2018-11-11 stsp break;
1018 84453469 2018-11-11 stsp
1019 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
1020 372ccdbb 2018-06-10 stsp if (err) {
1021 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
1022 9ba79e04 2018-06-11 stsp err = NULL;
1023 9ba79e04 2018-06-11 stsp break;
1024 9ba79e04 2018-06-11 stsp }
1025 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
1026 372ccdbb 2018-06-10 stsp break;
1027 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
1028 372ccdbb 2018-06-10 stsp if (err)
1029 372ccdbb 2018-06-10 stsp break;
1030 372ccdbb 2018-06-10 stsp else
1031 372ccdbb 2018-06-10 stsp continue;
1032 7e665116 2018-04-02 stsp }
1033 b43fbaa0 2018-06-11 stsp if (id == NULL)
1034 7e665116 2018-04-02 stsp break;
1035 b43fbaa0 2018-06-11 stsp
1036 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
1037 b43fbaa0 2018-06-11 stsp if (err)
1038 fcc85cad 2018-07-22 stsp break;
1039 199a4027 2019-02-02 stsp err = print_commit(commit, id, repo, show_patch, diff_context,
1040 199a4027 2019-02-02 stsp refs);
1041 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
1042 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
1043 7e665116 2018-04-02 stsp break;
1044 31cedeaf 2018-09-15 stsp }
1045 fcc85cad 2018-07-22 stsp done:
1046 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
1047 f42b1b34 2018-03-12 stsp return err;
1048 f42b1b34 2018-03-12 stsp }
1049 5c860e29 2018-03-12 stsp
1050 4ed7e80c 2018-05-20 stsp __dead static void
1051 6f3d1eb0 2018-03-12 stsp usage_log(void)
1052 6f3d1eb0 2018-03-12 stsp {
1053 499d7ecc 2019-05-22 stsp fprintf(stderr, "usage: %s log [-b] [-c commit] [-C number] [ -l N ] [-p] "
1054 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
1055 6f3d1eb0 2018-03-12 stsp exit(1);
1056 6f3d1eb0 2018-03-12 stsp }
1057 6f3d1eb0 2018-03-12 stsp
1058 4ed7e80c 2018-05-20 stsp static const struct got_error *
1059 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
1060 f42b1b34 2018-03-12 stsp {
1061 f42b1b34 2018-03-12 stsp const struct got_error *error;
1062 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
1063 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
1064 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
1065 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
1066 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
1067 d142fc45 2018-04-01 stsp char *start_commit = NULL;
1068 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1069 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
1070 64a96a6d 2018-04-01 stsp const char *errstr;
1071 199a4027 2019-02-02 stsp struct got_reflist_head refs;
1072 1b3893a2 2019-03-18 stsp
1073 1b3893a2 2019-03-18 stsp SIMPLEQ_INIT(&refs);
1074 5c860e29 2018-03-12 stsp
1075 6715a751 2018-03-16 stsp #ifndef PROFILE
1076 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1077 6098196c 2019-01-04 stsp NULL)
1078 ad242220 2018-09-08 stsp == -1)
1079 f42b1b34 2018-03-12 stsp err(1, "pledge");
1080 6715a751 2018-03-16 stsp #endif
1081 79109fed 2018-03-27 stsp
1082 499d7ecc 2019-05-22 stsp while ((ch = getopt(argc, argv, "bpc:C:l:r:")) != -1) {
1083 79109fed 2018-03-27 stsp switch (ch) {
1084 499d7ecc 2019-05-22 stsp case 'b':
1085 499d7ecc 2019-05-22 stsp first_parent_traversal = 1;
1086 499d7ecc 2019-05-22 stsp break;
1087 79109fed 2018-03-27 stsp case 'p':
1088 79109fed 2018-03-27 stsp show_patch = 1;
1089 d142fc45 2018-04-01 stsp break;
1090 d142fc45 2018-04-01 stsp case 'c':
1091 d142fc45 2018-04-01 stsp start_commit = optarg;
1092 64a96a6d 2018-04-01 stsp break;
1093 c0cc5c62 2018-10-18 stsp case 'C':
1094 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
1095 4a8520aa 2018-10-18 stsp &errstr);
1096 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1097 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1098 c0cc5c62 2018-10-18 stsp break;
1099 64a96a6d 2018-04-01 stsp case 'l':
1100 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
1101 64a96a6d 2018-04-01 stsp if (errstr != NULL)
1102 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
1103 a0603db2 2018-06-10 stsp break;
1104 04ca23f4 2018-07-16 stsp case 'r':
1105 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
1106 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
1107 04ca23f4 2018-07-16 stsp err(1, "-r option");
1108 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1109 04ca23f4 2018-07-16 stsp break;
1110 79109fed 2018-03-27 stsp default:
1111 2deda0b9 2019-03-07 stsp usage_log();
1112 79109fed 2018-03-27 stsp /* NOTREACHED */
1113 79109fed 2018-03-27 stsp }
1114 79109fed 2018-03-27 stsp }
1115 79109fed 2018-03-27 stsp
1116 79109fed 2018-03-27 stsp argc -= optind;
1117 79109fed 2018-03-27 stsp argv += optind;
1118 f42b1b34 2018-03-12 stsp
1119 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
1120 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
1121 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1122 04ca23f4 2018-07-16 stsp goto done;
1123 04ca23f4 2018-07-16 stsp }
1124 cffc0aa4 2019-02-05 stsp
1125 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1126 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1127 cffc0aa4 2019-02-05 stsp goto done;
1128 cffc0aa4 2019-02-05 stsp error = NULL;
1129 cffc0aa4 2019-02-05 stsp
1130 e7301579 2019-03-18 stsp if (argc == 0) {
1131 cbd1af7a 2019-03-18 stsp path = strdup("");
1132 e7301579 2019-03-18 stsp if (path == NULL) {
1133 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1134 cbd1af7a 2019-03-18 stsp goto done;
1135 e7301579 2019-03-18 stsp }
1136 e7301579 2019-03-18 stsp } else if (argc == 1) {
1137 e7301579 2019-03-18 stsp if (worktree) {
1138 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1139 e7301579 2019-03-18 stsp argv[0]);
1140 e7301579 2019-03-18 stsp if (error)
1141 e7301579 2019-03-18 stsp goto done;
1142 e7301579 2019-03-18 stsp } else {
1143 e7301579 2019-03-18 stsp path = strdup(argv[0]);
1144 e7301579 2019-03-18 stsp if (path == NULL) {
1145 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1146 e7301579 2019-03-18 stsp goto done;
1147 e7301579 2019-03-18 stsp }
1148 e7301579 2019-03-18 stsp }
1149 cbd1af7a 2019-03-18 stsp } else
1150 cbd1af7a 2019-03-18 stsp usage_log();
1151 cbd1af7a 2019-03-18 stsp
1152 5486daa2 2019-05-11 stsp if (repo_path == NULL) {
1153 5486daa2 2019-05-11 stsp repo_path = worktree ?
1154 5486daa2 2019-05-11 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
1155 5486daa2 2019-05-11 stsp }
1156 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
1157 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1158 cffc0aa4 2019-02-05 stsp goto done;
1159 04ca23f4 2018-07-16 stsp }
1160 6098196c 2019-01-04 stsp
1161 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
1162 d7d4f210 2018-03-12 stsp if (error != NULL)
1163 04ca23f4 2018-07-16 stsp goto done;
1164 f42b1b34 2018-03-12 stsp
1165 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1166 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
1167 c02c541e 2019-03-29 stsp if (error)
1168 c02c541e 2019-03-29 stsp goto done;
1169 c02c541e 2019-03-29 stsp
1170 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
1171 3235492e 2018-04-01 stsp struct got_reference *head_ref;
1172 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
1173 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
1174 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
1175 3235492e 2018-04-01 stsp if (error != NULL)
1176 3235492e 2018-04-01 stsp return error;
1177 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
1178 3235492e 2018-04-01 stsp got_ref_close(head_ref);
1179 3235492e 2018-04-01 stsp if (error != NULL)
1180 3235492e 2018-04-01 stsp return error;
1181 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1182 3235492e 2018-04-01 stsp } else {
1183 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
1184 2f17228e 2019-05-12 stsp error = got_ref_open(&ref, repo, start_commit, 0);
1185 3235492e 2018-04-01 stsp if (error == NULL) {
1186 1caad61b 2019-02-01 stsp int obj_type;
1187 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
1188 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
1189 d1f2edc9 2018-06-13 stsp if (error != NULL)
1190 1caad61b 2019-02-01 stsp goto done;
1191 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
1192 1caad61b 2019-02-01 stsp if (error != NULL)
1193 1caad61b 2019-02-01 stsp goto done;
1194 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
1195 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
1196 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
1197 1caad61b 2019-02-01 stsp if (error != NULL)
1198 1caad61b 2019-02-01 stsp goto done;
1199 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
1200 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
1201 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1202 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1203 1caad61b 2019-02-01 stsp goto done;
1204 1caad61b 2019-02-01 stsp }
1205 1caad61b 2019-02-01 stsp free(id);
1206 1caad61b 2019-02-01 stsp id = got_object_id_dup(
1207 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
1208 1caad61b 2019-02-01 stsp if (id == NULL)
1209 638f9024 2019-05-13 stsp error = got_error_from_errno(
1210 230a42bd 2019-05-11 jcs "got_object_id_dup");
1211 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1212 1caad61b 2019-02-01 stsp if (error)
1213 1caad61b 2019-02-01 stsp goto done;
1214 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1215 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1216 1caad61b 2019-02-01 stsp goto done;
1217 1caad61b 2019-02-01 stsp }
1218 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1219 d1f2edc9 2018-06-13 stsp if (error != NULL)
1220 1caad61b 2019-02-01 stsp goto done;
1221 d1f2edc9 2018-06-13 stsp }
1222 15a94983 2018-12-23 stsp if (commit == NULL) {
1223 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&id,
1224 dd88155e 2019-06-29 stsp start_commit, GOT_OBJ_TYPE_COMMIT, repo);
1225 d1f2edc9 2018-06-13 stsp if (error != NULL)
1226 d1f2edc9 2018-06-13 stsp return error;
1227 3235492e 2018-04-01 stsp }
1228 3235492e 2018-04-01 stsp }
1229 d7d4f210 2018-03-12 stsp if (error != NULL)
1230 04ca23f4 2018-07-16 stsp goto done;
1231 04ca23f4 2018-07-16 stsp
1232 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1233 04ca23f4 2018-07-16 stsp if (error != NULL)
1234 04ca23f4 2018-07-16 stsp goto done;
1235 04ca23f4 2018-07-16 stsp if (in_repo_path) {
1236 04ca23f4 2018-07-16 stsp free(path);
1237 04ca23f4 2018-07-16 stsp path = in_repo_path;
1238 04ca23f4 2018-07-16 stsp }
1239 199a4027 2019-02-02 stsp
1240 199a4027 2019-02-02 stsp error = got_ref_list(&refs, repo);
1241 199a4027 2019-02-02 stsp if (error)
1242 199a4027 2019-02-02 stsp goto done;
1243 04ca23f4 2018-07-16 stsp
1244 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
1245 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
1246 04ca23f4 2018-07-16 stsp done:
1247 04ca23f4 2018-07-16 stsp free(path);
1248 04ca23f4 2018-07-16 stsp free(repo_path);
1249 04ca23f4 2018-07-16 stsp free(cwd);
1250 f42b1b34 2018-03-12 stsp free(id);
1251 cffc0aa4 2019-02-05 stsp if (worktree)
1252 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
1253 ad242220 2018-09-08 stsp if (repo) {
1254 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1255 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1256 ad242220 2018-09-08 stsp if (error == NULL)
1257 ad242220 2018-09-08 stsp error = repo_error;
1258 ad242220 2018-09-08 stsp }
1259 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1260 8bf5b3c9 2018-03-17 stsp return error;
1261 5c860e29 2018-03-12 stsp }
1262 5c860e29 2018-03-12 stsp
1263 4ed7e80c 2018-05-20 stsp __dead static void
1264 3f8b7d6a 2018-04-01 stsp usage_diff(void)
1265 3f8b7d6a 2018-04-01 stsp {
1266 b72f483a 2019-02-05 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] "
1267 927df6b7 2019-02-10 stsp "[object1 object2 | path]\n", getprogname());
1268 3f8b7d6a 2018-04-01 stsp exit(1);
1269 b00d56cd 2018-04-01 stsp }
1270 b00d56cd 2018-04-01 stsp
1271 b72f483a 2019-02-05 stsp struct print_diff_arg {
1272 b72f483a 2019-02-05 stsp struct got_repository *repo;
1273 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
1274 b72f483a 2019-02-05 stsp int diff_context;
1275 3fc0c068 2019-02-10 stsp const char *id_str;
1276 3fc0c068 2019-02-10 stsp int header_shown;
1277 b72f483a 2019-02-05 stsp };
1278 b72f483a 2019-02-05 stsp
1279 4ed7e80c 2018-05-20 stsp static const struct got_error *
1280 b72f483a 2019-02-05 stsp print_diff(void *arg, unsigned char status, const char *path,
1281 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1282 b72f483a 2019-02-05 stsp {
1283 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
1284 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1285 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
1286 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
1287 b72f483a 2019-02-05 stsp char *abspath = NULL;
1288 b72f483a 2019-02-05 stsp struct stat sb;
1289 b72f483a 2019-02-05 stsp
1290 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
1291 7154f6ce 2019-03-27 stsp status != GOT_STATUS_DELETE && status != GOT_STATUS_CONFLICT)
1292 b72f483a 2019-02-05 stsp return NULL;
1293 3fc0c068 2019-02-10 stsp
1294 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
1295 3fc0c068 2019-02-10 stsp printf("diff %s %s\n", a->id_str,
1296 3fc0c068 2019-02-10 stsp got_worktree_get_root_path(a->worktree));
1297 3fc0c068 2019-02-10 stsp a->header_shown = 1;
1298 3fc0c068 2019-02-10 stsp }
1299 b72f483a 2019-02-05 stsp
1300 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_ADD) {
1301 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
1302 d00136be 2019-03-26 stsp if (err)
1303 d00136be 2019-03-26 stsp goto done;
1304 b72f483a 2019-02-05 stsp
1305 d00136be 2019-03-26 stsp }
1306 d00136be 2019-03-26 stsp
1307 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
1308 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
1309 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
1310 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1311 2ec1f75b 2019-03-26 stsp goto done;
1312 2ec1f75b 2019-03-26 stsp }
1313 b72f483a 2019-02-05 stsp
1314 2ec1f75b 2019-03-26 stsp f2 = fopen(abspath, "r");
1315 2ec1f75b 2019-03-26 stsp if (f2 == NULL) {
1316 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
1317 2ec1f75b 2019-03-26 stsp goto done;
1318 2ec1f75b 2019-03-26 stsp }
1319 2ec1f75b 2019-03-26 stsp if (lstat(abspath, &sb) == -1) {
1320 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
1321 2ec1f75b 2019-03-26 stsp goto done;
1322 2ec1f75b 2019-03-26 stsp }
1323 2ec1f75b 2019-03-26 stsp } else
1324 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
1325 b72f483a 2019-02-05 stsp
1326 b72f483a 2019-02-05 stsp err = got_diff_blob_file(blob1, f2, sb.st_size, path, a->diff_context,
1327 b72f483a 2019-02-05 stsp stdout);
1328 b72f483a 2019-02-05 stsp done:
1329 b72f483a 2019-02-05 stsp if (blob1)
1330 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
1331 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
1332 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1333 b72f483a 2019-02-05 stsp free(abspath);
1334 927df6b7 2019-02-10 stsp return err;
1335 927df6b7 2019-02-10 stsp }
1336 927df6b7 2019-02-10 stsp
1337 927df6b7 2019-02-10 stsp static const struct got_error *
1338 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
1339 b00d56cd 2018-04-01 stsp {
1340 b00d56cd 2018-04-01 stsp const struct got_error *error;
1341 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
1342 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
1343 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
1344 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1345 cd628e99 2019-05-28 stsp const char *id_str1 = NULL, *id_str2 = NULL;
1346 5e70831e 2019-05-28 stsp char *label1 = NULL, *label2 = NULL;
1347 15a94983 2018-12-23 stsp int type1, type2;
1348 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1349 c0cc5c62 2018-10-18 stsp const char *errstr;
1350 927df6b7 2019-02-10 stsp char *path = NULL;
1351 b00d56cd 2018-04-01 stsp
1352 b00d56cd 2018-04-01 stsp #ifndef PROFILE
1353 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1354 25eccc22 2019-01-04 stsp NULL) == -1)
1355 b00d56cd 2018-04-01 stsp err(1, "pledge");
1356 b00d56cd 2018-04-01 stsp #endif
1357 b00d56cd 2018-04-01 stsp
1358 b72f483a 2019-02-05 stsp while ((ch = getopt(argc, argv, "C:r:")) != -1) {
1359 b00d56cd 2018-04-01 stsp switch (ch) {
1360 c0cc5c62 2018-10-18 stsp case 'C':
1361 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
1362 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1363 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1364 c0cc5c62 2018-10-18 stsp break;
1365 b72f483a 2019-02-05 stsp case 'r':
1366 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
1367 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1368 b72f483a 2019-02-05 stsp err(1, "-r option");
1369 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1370 b72f483a 2019-02-05 stsp break;
1371 b00d56cd 2018-04-01 stsp default:
1372 2deda0b9 2019-03-07 stsp usage_diff();
1373 b00d56cd 2018-04-01 stsp /* NOTREACHED */
1374 b00d56cd 2018-04-01 stsp }
1375 b00d56cd 2018-04-01 stsp }
1376 b00d56cd 2018-04-01 stsp
1377 b00d56cd 2018-04-01 stsp argc -= optind;
1378 b00d56cd 2018-04-01 stsp argv += optind;
1379 b00d56cd 2018-04-01 stsp
1380 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
1381 b72f483a 2019-02-05 stsp if (cwd == NULL) {
1382 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1383 b72f483a 2019-02-05 stsp goto done;
1384 b72f483a 2019-02-05 stsp }
1385 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1386 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1387 927df6b7 2019-02-10 stsp goto done;
1388 927df6b7 2019-02-10 stsp if (argc <= 1) {
1389 927df6b7 2019-02-10 stsp if (worktree == NULL) {
1390 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
1391 927df6b7 2019-02-10 stsp goto done;
1392 927df6b7 2019-02-10 stsp }
1393 b72f483a 2019-02-05 stsp if (repo_path)
1394 b72f483a 2019-02-05 stsp errx(1,
1395 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
1396 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
1397 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
1398 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1399 927df6b7 2019-02-10 stsp goto done;
1400 927df6b7 2019-02-10 stsp }
1401 927df6b7 2019-02-10 stsp if (argc == 1) {
1402 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1403 cbd1af7a 2019-03-18 stsp argv[0]);
1404 927df6b7 2019-02-10 stsp if (error)
1405 927df6b7 2019-02-10 stsp goto done;
1406 927df6b7 2019-02-10 stsp } else {
1407 927df6b7 2019-02-10 stsp path = strdup("");
1408 927df6b7 2019-02-10 stsp if (path == NULL) {
1409 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1410 927df6b7 2019-02-10 stsp goto done;
1411 927df6b7 2019-02-10 stsp }
1412 927df6b7 2019-02-10 stsp }
1413 b72f483a 2019-02-05 stsp } else if (argc == 2) {
1414 15a94983 2018-12-23 stsp id_str1 = argv[0];
1415 15a94983 2018-12-23 stsp id_str2 = argv[1];
1416 30db809c 2019-06-05 stsp if (worktree && repo_path == NULL) {
1417 30db809c 2019-06-05 stsp repo_path =
1418 30db809c 2019-06-05 stsp strdup(got_worktree_get_repo_path(worktree));
1419 30db809c 2019-06-05 stsp if (repo_path == NULL) {
1420 30db809c 2019-06-05 stsp error = got_error_from_errno("strdup");
1421 30db809c 2019-06-05 stsp goto done;
1422 30db809c 2019-06-05 stsp }
1423 30db809c 2019-06-05 stsp }
1424 b00d56cd 2018-04-01 stsp } else
1425 b00d56cd 2018-04-01 stsp usage_diff();
1426 25eccc22 2019-01-04 stsp
1427 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
1428 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
1429 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1430 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
1431 b72f483a 2019-02-05 stsp }
1432 b00d56cd 2018-04-01 stsp
1433 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
1434 76089277 2018-04-01 stsp free(repo_path);
1435 b00d56cd 2018-04-01 stsp if (error != NULL)
1436 b00d56cd 2018-04-01 stsp goto done;
1437 b00d56cd 2018-04-01 stsp
1438 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1439 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
1440 c02c541e 2019-03-29 stsp if (error)
1441 c02c541e 2019-03-29 stsp goto done;
1442 c02c541e 2019-03-29 stsp
1443 30db809c 2019-06-05 stsp if (argc <= 1) {
1444 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
1445 b72f483a 2019-02-05 stsp char *id_str;
1446 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
1447 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
1448 b72f483a 2019-02-05 stsp if (error)
1449 b72f483a 2019-02-05 stsp goto done;
1450 b72f483a 2019-02-05 stsp arg.repo = repo;
1451 b72f483a 2019-02-05 stsp arg.worktree = worktree;
1452 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
1453 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
1454 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
1455 b72f483a 2019-02-05 stsp
1456 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_diff,
1457 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
1458 b72f483a 2019-02-05 stsp free(id_str);
1459 b72f483a 2019-02-05 stsp goto done;
1460 b72f483a 2019-02-05 stsp }
1461 b72f483a 2019-02-05 stsp
1462 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id1, id_str1,
1463 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
1464 e02e74af 2019-05-28 stsp if (error) {
1465 e02e74af 2019-05-28 stsp struct got_reference *ref;
1466 e02e74af 2019-05-28 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
1467 e02e74af 2019-05-28 stsp goto done;
1468 e02e74af 2019-05-28 stsp error = got_ref_open(&ref, repo, id_str1, 0);
1469 e02e74af 2019-05-28 stsp if (error != NULL)
1470 e02e74af 2019-05-28 stsp goto done;
1471 5e70831e 2019-05-28 stsp label1 = strdup(got_ref_get_name(ref));
1472 5e70831e 2019-05-28 stsp if (label1 == NULL) {
1473 5e70831e 2019-05-28 stsp error = got_error_from_errno("strdup");
1474 5e70831e 2019-05-28 stsp goto done;
1475 5e70831e 2019-05-28 stsp }
1476 e02e74af 2019-05-28 stsp error = got_ref_resolve(&id1, repo, ref);
1477 e02e74af 2019-05-28 stsp got_ref_close(ref);
1478 e02e74af 2019-05-28 stsp if (error != NULL)
1479 5e70831e 2019-05-28 stsp goto done;
1480 5e70831e 2019-05-28 stsp } else {
1481 5e70831e 2019-05-28 stsp label1 = strdup(id_str1);
1482 5e70831e 2019-05-28 stsp if (label1 == NULL) {
1483 5e70831e 2019-05-28 stsp error = got_error_from_errno("strdup");
1484 e02e74af 2019-05-28 stsp goto done;
1485 5e70831e 2019-05-28 stsp }
1486 e02e74af 2019-05-28 stsp }
1487 b00d56cd 2018-04-01 stsp
1488 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&id2, id_str2,
1489 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_ANY, repo);
1490 e02e74af 2019-05-28 stsp if (error) {
1491 e02e74af 2019-05-28 stsp struct got_reference *ref;
1492 e02e74af 2019-05-28 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
1493 e02e74af 2019-05-28 stsp goto done;
1494 e02e74af 2019-05-28 stsp error = got_ref_open(&ref, repo, id_str2, 0);
1495 e02e74af 2019-05-28 stsp if (error != NULL)
1496 5e70831e 2019-05-28 stsp goto done;
1497 5e70831e 2019-05-28 stsp label2 = strdup(got_ref_get_name(ref));
1498 5e70831e 2019-05-28 stsp if (label2 == NULL) {
1499 5e70831e 2019-05-28 stsp error = got_error_from_errno("strdup");
1500 e02e74af 2019-05-28 stsp goto done;
1501 5e70831e 2019-05-28 stsp }
1502 e02e74af 2019-05-28 stsp error = got_ref_resolve(&id2, repo, ref);
1503 e02e74af 2019-05-28 stsp got_ref_close(ref);
1504 e02e74af 2019-05-28 stsp if (error != NULL)
1505 e02e74af 2019-05-28 stsp goto done;
1506 5e70831e 2019-05-28 stsp } else {
1507 5e70831e 2019-05-28 stsp label2 = strdup(id_str2);
1508 5e70831e 2019-05-28 stsp if (label2 == NULL) {
1509 5e70831e 2019-05-28 stsp error = got_error_from_errno("strdup");
1510 5e70831e 2019-05-28 stsp goto done;
1511 5e70831e 2019-05-28 stsp }
1512 e02e74af 2019-05-28 stsp }
1513 b00d56cd 2018-04-01 stsp
1514 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
1515 15a94983 2018-12-23 stsp if (error)
1516 15a94983 2018-12-23 stsp goto done;
1517 15a94983 2018-12-23 stsp
1518 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
1519 15a94983 2018-12-23 stsp if (error)
1520 15a94983 2018-12-23 stsp goto done;
1521 15a94983 2018-12-23 stsp
1522 15a94983 2018-12-23 stsp if (type1 != type2) {
1523 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1524 b00d56cd 2018-04-01 stsp goto done;
1525 b00d56cd 2018-04-01 stsp }
1526 b00d56cd 2018-04-01 stsp
1527 15a94983 2018-12-23 stsp switch (type1) {
1528 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
1529 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
1530 54156555 2018-12-24 stsp diff_context, repo, stdout);
1531 b00d56cd 2018-04-01 stsp break;
1532 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
1533 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
1534 54156555 2018-12-24 stsp diff_context, repo, stdout);
1535 b00d56cd 2018-04-01 stsp break;
1536 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
1537 5e70831e 2019-05-28 stsp printf("diff %s %s\n", label1, label2);
1538 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
1539 c0cc5c62 2018-10-18 stsp repo, stdout);
1540 b00d56cd 2018-04-01 stsp break;
1541 b00d56cd 2018-04-01 stsp default:
1542 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1543 b00d56cd 2018-04-01 stsp }
1544 b00d56cd 2018-04-01 stsp
1545 b00d56cd 2018-04-01 stsp done:
1546 5e70831e 2019-05-28 stsp free(label1);
1547 5e70831e 2019-05-28 stsp free(label2);
1548 15a94983 2018-12-23 stsp free(id1);
1549 15a94983 2018-12-23 stsp free(id2);
1550 927df6b7 2019-02-10 stsp free(path);
1551 b72f483a 2019-02-05 stsp if (worktree)
1552 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
1553 ad242220 2018-09-08 stsp if (repo) {
1554 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1555 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1556 ad242220 2018-09-08 stsp if (error == NULL)
1557 ad242220 2018-09-08 stsp error = repo_error;
1558 ad242220 2018-09-08 stsp }
1559 b00d56cd 2018-04-01 stsp return error;
1560 404c43c4 2018-06-21 stsp }
1561 404c43c4 2018-06-21 stsp
1562 404c43c4 2018-06-21 stsp __dead static void
1563 404c43c4 2018-06-21 stsp usage_blame(void)
1564 404c43c4 2018-06-21 stsp {
1565 9270e621 2019-02-05 stsp fprintf(stderr,
1566 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
1567 404c43c4 2018-06-21 stsp getprogname());
1568 404c43c4 2018-06-21 stsp exit(1);
1569 b00d56cd 2018-04-01 stsp }
1570 b00d56cd 2018-04-01 stsp
1571 404c43c4 2018-06-21 stsp static const struct got_error *
1572 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
1573 404c43c4 2018-06-21 stsp {
1574 404c43c4 2018-06-21 stsp const struct got_error *error;
1575 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
1576 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
1577 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1578 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
1579 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
1580 404c43c4 2018-06-21 stsp int ch;
1581 404c43c4 2018-06-21 stsp
1582 404c43c4 2018-06-21 stsp #ifndef PROFILE
1583 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1584 36e2fb66 2019-01-04 stsp NULL) == -1)
1585 404c43c4 2018-06-21 stsp err(1, "pledge");
1586 404c43c4 2018-06-21 stsp #endif
1587 404c43c4 2018-06-21 stsp
1588 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1589 404c43c4 2018-06-21 stsp switch (ch) {
1590 404c43c4 2018-06-21 stsp case 'c':
1591 404c43c4 2018-06-21 stsp commit_id_str = optarg;
1592 404c43c4 2018-06-21 stsp break;
1593 66bea077 2018-08-02 stsp case 'r':
1594 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
1595 66bea077 2018-08-02 stsp if (repo_path == NULL)
1596 66bea077 2018-08-02 stsp err(1, "-r option");
1597 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1598 66bea077 2018-08-02 stsp break;
1599 404c43c4 2018-06-21 stsp default:
1600 2deda0b9 2019-03-07 stsp usage_blame();
1601 404c43c4 2018-06-21 stsp /* NOTREACHED */
1602 404c43c4 2018-06-21 stsp }
1603 404c43c4 2018-06-21 stsp }
1604 404c43c4 2018-06-21 stsp
1605 404c43c4 2018-06-21 stsp argc -= optind;
1606 404c43c4 2018-06-21 stsp argv += optind;
1607 404c43c4 2018-06-21 stsp
1608 a39318fd 2018-08-02 stsp if (argc == 1)
1609 404c43c4 2018-06-21 stsp path = argv[0];
1610 a39318fd 2018-08-02 stsp else
1611 404c43c4 2018-06-21 stsp usage_blame();
1612 404c43c4 2018-06-21 stsp
1613 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
1614 66bea077 2018-08-02 stsp if (cwd == NULL) {
1615 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1616 66bea077 2018-08-02 stsp goto done;
1617 66bea077 2018-08-02 stsp }
1618 66bea077 2018-08-02 stsp if (repo_path == NULL) {
1619 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1620 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1621 66bea077 2018-08-02 stsp goto done;
1622 0c06baac 2019-02-05 stsp else
1623 0c06baac 2019-02-05 stsp error = NULL;
1624 0c06baac 2019-02-05 stsp if (worktree) {
1625 0c06baac 2019-02-05 stsp repo_path =
1626 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1627 0c06baac 2019-02-05 stsp if (repo_path == NULL)
1628 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1629 0c06baac 2019-02-05 stsp if (error)
1630 0c06baac 2019-02-05 stsp goto done;
1631 0c06baac 2019-02-05 stsp } else {
1632 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
1633 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
1634 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1635 0c06baac 2019-02-05 stsp goto done;
1636 0c06baac 2019-02-05 stsp }
1637 66bea077 2018-08-02 stsp }
1638 66bea077 2018-08-02 stsp }
1639 36e2fb66 2019-01-04 stsp
1640 c02c541e 2019-03-29 stsp error = got_repo_open(&repo, repo_path);
1641 c02c541e 2019-03-29 stsp if (error != NULL)
1642 36e2fb66 2019-01-04 stsp goto done;
1643 66bea077 2018-08-02 stsp
1644 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1645 c02c541e 2019-03-29 stsp if (error)
1646 404c43c4 2018-06-21 stsp goto done;
1647 404c43c4 2018-06-21 stsp
1648 0c06baac 2019-02-05 stsp if (worktree) {
1649 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1650 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1651 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1652 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
1653 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
1654 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
1655 6efaaa2d 2019-02-05 stsp path) == -1) {
1656 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1657 0c06baac 2019-02-05 stsp goto done;
1658 0c06baac 2019-02-05 stsp }
1659 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
1660 0c06baac 2019-02-05 stsp free(p);
1661 0c06baac 2019-02-05 stsp } else {
1662 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1663 0c06baac 2019-02-05 stsp }
1664 0c06baac 2019-02-05 stsp if (error)
1665 66bea077 2018-08-02 stsp goto done;
1666 66bea077 2018-08-02 stsp
1667 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
1668 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
1669 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1670 404c43c4 2018-06-21 stsp if (error != NULL)
1671 66bea077 2018-08-02 stsp goto done;
1672 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1673 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
1674 404c43c4 2018-06-21 stsp if (error != NULL)
1675 66bea077 2018-08-02 stsp goto done;
1676 404c43c4 2018-06-21 stsp } else {
1677 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&commit_id,
1678 dd88155e 2019-06-29 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
1679 404c43c4 2018-06-21 stsp if (error != NULL)
1680 66bea077 2018-08-02 stsp goto done;
1681 404c43c4 2018-06-21 stsp }
1682 404c43c4 2018-06-21 stsp
1683 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
1684 404c43c4 2018-06-21 stsp done:
1685 66bea077 2018-08-02 stsp free(in_repo_path);
1686 66bea077 2018-08-02 stsp free(repo_path);
1687 66bea077 2018-08-02 stsp free(cwd);
1688 404c43c4 2018-06-21 stsp free(commit_id);
1689 0c06baac 2019-02-05 stsp if (worktree)
1690 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
1691 ad242220 2018-09-08 stsp if (repo) {
1692 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1693 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1694 ad242220 2018-09-08 stsp if (error == NULL)
1695 ad242220 2018-09-08 stsp error = repo_error;
1696 ad242220 2018-09-08 stsp }
1697 404c43c4 2018-06-21 stsp return error;
1698 5de5890b 2018-10-18 stsp }
1699 5de5890b 2018-10-18 stsp
1700 5de5890b 2018-10-18 stsp __dead static void
1701 5de5890b 2018-10-18 stsp usage_tree(void)
1702 5de5890b 2018-10-18 stsp {
1703 c1669e2e 2019-01-09 stsp fprintf(stderr,
1704 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
1705 5de5890b 2018-10-18 stsp getprogname());
1706 5de5890b 2018-10-18 stsp exit(1);
1707 5de5890b 2018-10-18 stsp }
1708 5de5890b 2018-10-18 stsp
1709 c1669e2e 2019-01-09 stsp static void
1710 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
1711 c1669e2e 2019-01-09 stsp const char *root_path)
1712 c1669e2e 2019-01-09 stsp {
1713 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
1714 5de5890b 2018-10-18 stsp
1715 c1669e2e 2019-01-09 stsp path += strlen(root_path);
1716 c1669e2e 2019-01-09 stsp while (path[0] == '/')
1717 c1669e2e 2019-01-09 stsp path++;
1718 c1669e2e 2019-01-09 stsp
1719 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
1720 d6e648b4 2019-02-10 stsp is_root_path ? "" : "/", te->name,
1721 d6e648b4 2019-02-10 stsp S_ISDIR(te->mode) ? "/" : ((te->mode & S_IXUSR) ? "*" : ""));
1722 c1669e2e 2019-01-09 stsp }
1723 c1669e2e 2019-01-09 stsp
1724 5de5890b 2018-10-18 stsp static const struct got_error *
1725 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1726 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
1727 c1669e2e 2019-01-09 stsp struct got_repository *repo)
1728 5de5890b 2018-10-18 stsp {
1729 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1730 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1731 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1732 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1733 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1734 5de5890b 2018-10-18 stsp
1735 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1736 5de5890b 2018-10-18 stsp if (err)
1737 5de5890b 2018-10-18 stsp goto done;
1738 5de5890b 2018-10-18 stsp
1739 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1740 5de5890b 2018-10-18 stsp if (err)
1741 5de5890b 2018-10-18 stsp goto done;
1742 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1743 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1744 5de5890b 2018-10-18 stsp while (te) {
1745 5de5890b 2018-10-18 stsp char *id = NULL;
1746 84453469 2018-11-11 stsp
1747 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1748 84453469 2018-11-11 stsp break;
1749 84453469 2018-11-11 stsp
1750 5de5890b 2018-10-18 stsp if (show_ids) {
1751 5de5890b 2018-10-18 stsp char *id_str;
1752 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1753 5de5890b 2018-10-18 stsp if (err)
1754 5de5890b 2018-10-18 stsp goto done;
1755 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1756 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1757 5de5890b 2018-10-18 stsp free(id_str);
1758 5de5890b 2018-10-18 stsp goto done;
1759 5de5890b 2018-10-18 stsp }
1760 5de5890b 2018-10-18 stsp free(id_str);
1761 5de5890b 2018-10-18 stsp }
1762 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
1763 5de5890b 2018-10-18 stsp free(id);
1764 c1669e2e 2019-01-09 stsp
1765 c1669e2e 2019-01-09 stsp if (recurse && S_ISDIR(te->mode)) {
1766 c1669e2e 2019-01-09 stsp char *child_path;
1767 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
1768 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
1769 c1669e2e 2019-01-09 stsp te->name) == -1) {
1770 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1771 c1669e2e 2019-01-09 stsp goto done;
1772 c1669e2e 2019-01-09 stsp }
1773 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
1774 c1669e2e 2019-01-09 stsp root_path, repo);
1775 c1669e2e 2019-01-09 stsp free(child_path);
1776 c1669e2e 2019-01-09 stsp if (err)
1777 c1669e2e 2019-01-09 stsp goto done;
1778 c1669e2e 2019-01-09 stsp }
1779 c1669e2e 2019-01-09 stsp
1780 c1669e2e 2019-01-09 stsp te = SIMPLEQ_NEXT(te, entry);
1781 5de5890b 2018-10-18 stsp }
1782 5de5890b 2018-10-18 stsp done:
1783 5de5890b 2018-10-18 stsp if (tree)
1784 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1785 5de5890b 2018-10-18 stsp free(tree_id);
1786 5de5890b 2018-10-18 stsp return err;
1787 404c43c4 2018-06-21 stsp }
1788 404c43c4 2018-06-21 stsp
1789 5de5890b 2018-10-18 stsp static const struct got_error *
1790 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1791 5de5890b 2018-10-18 stsp {
1792 5de5890b 2018-10-18 stsp const struct got_error *error;
1793 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1794 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
1795 7a2c19d6 2019-02-05 stsp const char *path;
1796 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1797 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1798 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1799 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
1800 5de5890b 2018-10-18 stsp int ch;
1801 5de5890b 2018-10-18 stsp
1802 5de5890b 2018-10-18 stsp #ifndef PROFILE
1803 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1804 0f8d269b 2019-01-04 stsp NULL) == -1)
1805 5de5890b 2018-10-18 stsp err(1, "pledge");
1806 5de5890b 2018-10-18 stsp #endif
1807 5de5890b 2018-10-18 stsp
1808 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
1809 5de5890b 2018-10-18 stsp switch (ch) {
1810 5de5890b 2018-10-18 stsp case 'c':
1811 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1812 5de5890b 2018-10-18 stsp break;
1813 5de5890b 2018-10-18 stsp case 'r':
1814 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1815 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1816 5de5890b 2018-10-18 stsp err(1, "-r option");
1817 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1818 5de5890b 2018-10-18 stsp break;
1819 5de5890b 2018-10-18 stsp case 'i':
1820 5de5890b 2018-10-18 stsp show_ids = 1;
1821 5de5890b 2018-10-18 stsp break;
1822 c1669e2e 2019-01-09 stsp case 'R':
1823 c1669e2e 2019-01-09 stsp recurse = 1;
1824 c1669e2e 2019-01-09 stsp break;
1825 5de5890b 2018-10-18 stsp default:
1826 2deda0b9 2019-03-07 stsp usage_tree();
1827 5de5890b 2018-10-18 stsp /* NOTREACHED */
1828 5de5890b 2018-10-18 stsp }
1829 5de5890b 2018-10-18 stsp }
1830 5de5890b 2018-10-18 stsp
1831 5de5890b 2018-10-18 stsp argc -= optind;
1832 5de5890b 2018-10-18 stsp argv += optind;
1833 5de5890b 2018-10-18 stsp
1834 5de5890b 2018-10-18 stsp if (argc == 1)
1835 5de5890b 2018-10-18 stsp path = argv[0];
1836 5de5890b 2018-10-18 stsp else if (argc > 1)
1837 5de5890b 2018-10-18 stsp usage_tree();
1838 5de5890b 2018-10-18 stsp else
1839 7a2c19d6 2019-02-05 stsp path = NULL;
1840 7a2c19d6 2019-02-05 stsp
1841 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
1842 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
1843 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1844 9bf7a39b 2019-02-05 stsp goto done;
1845 9bf7a39b 2019-02-05 stsp }
1846 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1847 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1848 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1849 7a2c19d6 2019-02-05 stsp goto done;
1850 7a2c19d6 2019-02-05 stsp else
1851 7a2c19d6 2019-02-05 stsp error = NULL;
1852 7a2c19d6 2019-02-05 stsp if (worktree) {
1853 7a2c19d6 2019-02-05 stsp repo_path =
1854 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1855 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
1856 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1857 7a2c19d6 2019-02-05 stsp if (error)
1858 7a2c19d6 2019-02-05 stsp goto done;
1859 7a2c19d6 2019-02-05 stsp } else {
1860 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
1861 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
1862 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1863 7a2c19d6 2019-02-05 stsp goto done;
1864 7a2c19d6 2019-02-05 stsp }
1865 5de5890b 2018-10-18 stsp }
1866 5de5890b 2018-10-18 stsp }
1867 5de5890b 2018-10-18 stsp
1868 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1869 5de5890b 2018-10-18 stsp if (error != NULL)
1870 c02c541e 2019-03-29 stsp goto done;
1871 c02c541e 2019-03-29 stsp
1872 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1873 c02c541e 2019-03-29 stsp if (error)
1874 5de5890b 2018-10-18 stsp goto done;
1875 5de5890b 2018-10-18 stsp
1876 9bf7a39b 2019-02-05 stsp if (path == NULL) {
1877 9bf7a39b 2019-02-05 stsp if (worktree) {
1878 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1879 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1880 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
1881 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
1882 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
1883 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1884 9bf7a39b 2019-02-05 stsp goto done;
1885 9bf7a39b 2019-02-05 stsp }
1886 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1887 9bf7a39b 2019-02-05 stsp free(p);
1888 9bf7a39b 2019-02-05 stsp if (error)
1889 9bf7a39b 2019-02-05 stsp goto done;
1890 9bf7a39b 2019-02-05 stsp } else
1891 9bf7a39b 2019-02-05 stsp path = "/";
1892 9bf7a39b 2019-02-05 stsp }
1893 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
1894 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1895 9bf7a39b 2019-02-05 stsp if (error != NULL)
1896 9bf7a39b 2019-02-05 stsp goto done;
1897 9bf7a39b 2019-02-05 stsp }
1898 5de5890b 2018-10-18 stsp
1899 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1900 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1901 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1902 5de5890b 2018-10-18 stsp if (error != NULL)
1903 5de5890b 2018-10-18 stsp goto done;
1904 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1905 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1906 5de5890b 2018-10-18 stsp if (error != NULL)
1907 5de5890b 2018-10-18 stsp goto done;
1908 5de5890b 2018-10-18 stsp } else {
1909 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&commit_id,
1910 dd88155e 2019-06-29 stsp commit_id_str, GOT_OBJ_TYPE_COMMIT, repo);
1911 5de5890b 2018-10-18 stsp if (error != NULL)
1912 5de5890b 2018-10-18 stsp goto done;
1913 5de5890b 2018-10-18 stsp }
1914 5de5890b 2018-10-18 stsp
1915 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
1916 c1669e2e 2019-01-09 stsp in_repo_path, repo);
1917 5de5890b 2018-10-18 stsp done:
1918 5de5890b 2018-10-18 stsp free(in_repo_path);
1919 5de5890b 2018-10-18 stsp free(repo_path);
1920 5de5890b 2018-10-18 stsp free(cwd);
1921 5de5890b 2018-10-18 stsp free(commit_id);
1922 7a2c19d6 2019-02-05 stsp if (worktree)
1923 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
1924 5de5890b 2018-10-18 stsp if (repo) {
1925 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1926 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1927 5de5890b 2018-10-18 stsp if (error == NULL)
1928 5de5890b 2018-10-18 stsp error = repo_error;
1929 5de5890b 2018-10-18 stsp }
1930 5de5890b 2018-10-18 stsp return error;
1931 5de5890b 2018-10-18 stsp }
1932 5de5890b 2018-10-18 stsp
1933 6bad629b 2019-02-04 stsp __dead static void
1934 6bad629b 2019-02-04 stsp usage_status(void)
1935 6bad629b 2019-02-04 stsp {
1936 927df6b7 2019-02-10 stsp fprintf(stderr, "usage: %s status [path]\n", getprogname());
1937 6bad629b 2019-02-04 stsp exit(1);
1938 6bad629b 2019-02-04 stsp }
1939 5c860e29 2018-03-12 stsp
1940 b72f483a 2019-02-05 stsp static const struct got_error *
1941 b72f483a 2019-02-05 stsp print_status(void *arg, unsigned char status, const char *path,
1942 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1943 6bad629b 2019-02-04 stsp {
1944 6bad629b 2019-02-04 stsp printf("%c %s\n", status, path);
1945 b72f483a 2019-02-05 stsp return NULL;
1946 6bad629b 2019-02-04 stsp }
1947 5c860e29 2018-03-12 stsp
1948 6bad629b 2019-02-04 stsp static const struct got_error *
1949 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
1950 6bad629b 2019-02-04 stsp {
1951 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
1952 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
1953 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
1954 927df6b7 2019-02-10 stsp char *cwd = NULL, *path = NULL;
1955 6bad629b 2019-02-04 stsp int ch;
1956 5c860e29 2018-03-12 stsp
1957 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1958 6bad629b 2019-02-04 stsp switch (ch) {
1959 5c860e29 2018-03-12 stsp default:
1960 2deda0b9 2019-03-07 stsp usage_status();
1961 6bad629b 2019-02-04 stsp /* NOTREACHED */
1962 5c860e29 2018-03-12 stsp }
1963 5c860e29 2018-03-12 stsp }
1964 5c860e29 2018-03-12 stsp
1965 6bad629b 2019-02-04 stsp argc -= optind;
1966 6bad629b 2019-02-04 stsp argv += optind;
1967 5c860e29 2018-03-12 stsp
1968 6bad629b 2019-02-04 stsp #ifndef PROFILE
1969 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1970 6bad629b 2019-02-04 stsp NULL) == -1)
1971 6bad629b 2019-02-04 stsp err(1, "pledge");
1972 f42b1b34 2018-03-12 stsp #endif
1973 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
1974 927df6b7 2019-02-10 stsp if (cwd == NULL) {
1975 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1976 927df6b7 2019-02-10 stsp goto done;
1977 927df6b7 2019-02-10 stsp }
1978 927df6b7 2019-02-10 stsp
1979 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1980 927df6b7 2019-02-10 stsp if (error != NULL)
1981 927df6b7 2019-02-10 stsp goto done;
1982 927df6b7 2019-02-10 stsp
1983 6bad629b 2019-02-04 stsp if (argc == 0) {
1984 927df6b7 2019-02-10 stsp path = strdup("");
1985 927df6b7 2019-02-10 stsp if (path == NULL) {
1986 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1987 6bad629b 2019-02-04 stsp goto done;
1988 6bad629b 2019-02-04 stsp }
1989 6bad629b 2019-02-04 stsp } else if (argc == 1) {
1990 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
1991 927df6b7 2019-02-10 stsp if (error)
1992 6bad629b 2019-02-04 stsp goto done;
1993 6bad629b 2019-02-04 stsp } else
1994 6bad629b 2019-02-04 stsp usage_status();
1995 6bad629b 2019-02-04 stsp
1996 6bad629b 2019-02-04 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1997 6bad629b 2019-02-04 stsp if (error != NULL)
1998 6bad629b 2019-02-04 stsp goto done;
1999 6bad629b 2019-02-04 stsp
2000 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2001 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2002 6bad629b 2019-02-04 stsp if (error)
2003 6bad629b 2019-02-04 stsp goto done;
2004 6bad629b 2019-02-04 stsp
2005 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_status, NULL,
2006 6bad629b 2019-02-04 stsp check_cancelled, NULL);
2007 6bad629b 2019-02-04 stsp done:
2008 927df6b7 2019-02-10 stsp free(cwd);
2009 927df6b7 2019-02-10 stsp free(path);
2010 d0eebce4 2019-03-11 stsp return error;
2011 d0eebce4 2019-03-11 stsp }
2012 d0eebce4 2019-03-11 stsp
2013 d0eebce4 2019-03-11 stsp __dead static void
2014 d0eebce4 2019-03-11 stsp usage_ref(void)
2015 d0eebce4 2019-03-11 stsp {
2016 d0eebce4 2019-03-11 stsp fprintf(stderr,
2017 d83d9d5c 2019-05-13 stsp "usage: %s ref [-r repository] -l | -d name | name target\n",
2018 d0eebce4 2019-03-11 stsp getprogname());
2019 d0eebce4 2019-03-11 stsp exit(1);
2020 d0eebce4 2019-03-11 stsp }
2021 d0eebce4 2019-03-11 stsp
2022 d0eebce4 2019-03-11 stsp static const struct got_error *
2023 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
2024 d0eebce4 2019-03-11 stsp {
2025 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
2026 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
2027 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
2028 d0eebce4 2019-03-11 stsp
2029 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
2030 d0eebce4 2019-03-11 stsp err = got_ref_list(&refs, repo);
2031 d0eebce4 2019-03-11 stsp if (err)
2032 d0eebce4 2019-03-11 stsp return err;
2033 d0eebce4 2019-03-11 stsp
2034 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
2035 d0eebce4 2019-03-11 stsp char *refstr;
2036 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
2037 d0eebce4 2019-03-11 stsp if (refstr == NULL)
2038 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
2039 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
2040 d0eebce4 2019-03-11 stsp free(refstr);
2041 d0eebce4 2019-03-11 stsp }
2042 d0eebce4 2019-03-11 stsp
2043 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2044 d0eebce4 2019-03-11 stsp return NULL;
2045 d0eebce4 2019-03-11 stsp }
2046 d0eebce4 2019-03-11 stsp
2047 d0eebce4 2019-03-11 stsp static const struct got_error *
2048 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
2049 d0eebce4 2019-03-11 stsp {
2050 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
2051 d0eebce4 2019-03-11 stsp struct got_reference *ref;
2052 d0eebce4 2019-03-11 stsp
2053 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
2054 d0eebce4 2019-03-11 stsp if (err)
2055 d0eebce4 2019-03-11 stsp return err;
2056 d0eebce4 2019-03-11 stsp
2057 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
2058 d0eebce4 2019-03-11 stsp got_ref_close(ref);
2059 d0eebce4 2019-03-11 stsp return err;
2060 d0eebce4 2019-03-11 stsp }
2061 d0eebce4 2019-03-11 stsp
2062 d0eebce4 2019-03-11 stsp static const struct got_error *
2063 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
2064 d0eebce4 2019-03-11 stsp {
2065 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
2066 d0eebce4 2019-03-11 stsp struct got_object_id *id;
2067 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
2068 d0eebce4 2019-03-11 stsp
2069 dd88155e 2019-06-29 stsp err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
2070 dd88155e 2019-06-29 stsp repo);
2071 d83d9d5c 2019-05-13 stsp if (err) {
2072 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
2073 d0eebce4 2019-03-11 stsp
2074 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
2075 d83d9d5c 2019-05-13 stsp return err;
2076 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
2077 d83d9d5c 2019-05-13 stsp if (err)
2078 d83d9d5c 2019-05-13 stsp return err;
2079 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
2080 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
2081 d83d9d5c 2019-05-13 stsp if (err)
2082 d83d9d5c 2019-05-13 stsp return err;
2083 d83d9d5c 2019-05-13 stsp }
2084 d83d9d5c 2019-05-13 stsp
2085 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
2086 d0eebce4 2019-03-11 stsp if (err)
2087 d0eebce4 2019-03-11 stsp goto done;
2088 d0eebce4 2019-03-11 stsp
2089 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
2090 d0eebce4 2019-03-11 stsp done:
2091 d0eebce4 2019-03-11 stsp if (ref)
2092 d0eebce4 2019-03-11 stsp got_ref_close(ref);
2093 d0eebce4 2019-03-11 stsp free(id);
2094 d0eebce4 2019-03-11 stsp return err;
2095 d0eebce4 2019-03-11 stsp }
2096 d0eebce4 2019-03-11 stsp
2097 d0eebce4 2019-03-11 stsp static const struct got_error *
2098 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
2099 d0eebce4 2019-03-11 stsp {
2100 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
2101 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
2102 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
2103 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
2104 d0eebce4 2019-03-11 stsp int ch, do_list = 0;
2105 d0eebce4 2019-03-11 stsp const char *delref = NULL;
2106 d0eebce4 2019-03-11 stsp
2107 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
2108 d0eebce4 2019-03-11 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
2109 d0eebce4 2019-03-11 stsp switch (ch) {
2110 d0eebce4 2019-03-11 stsp case 'd':
2111 d0eebce4 2019-03-11 stsp delref = optarg;
2112 d0eebce4 2019-03-11 stsp break;
2113 d0eebce4 2019-03-11 stsp case 'r':
2114 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
2115 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
2116 d0eebce4 2019-03-11 stsp err(1, "-r option");
2117 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2118 d0eebce4 2019-03-11 stsp break;
2119 d0eebce4 2019-03-11 stsp case 'l':
2120 d0eebce4 2019-03-11 stsp do_list = 1;
2121 d0eebce4 2019-03-11 stsp break;
2122 d0eebce4 2019-03-11 stsp default:
2123 d0eebce4 2019-03-11 stsp usage_ref();
2124 d0eebce4 2019-03-11 stsp /* NOTREACHED */
2125 d0eebce4 2019-03-11 stsp }
2126 d0eebce4 2019-03-11 stsp }
2127 d0eebce4 2019-03-11 stsp
2128 d0eebce4 2019-03-11 stsp if (do_list && delref)
2129 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
2130 d0eebce4 2019-03-11 stsp
2131 d0eebce4 2019-03-11 stsp argc -= optind;
2132 d0eebce4 2019-03-11 stsp argv += optind;
2133 d0eebce4 2019-03-11 stsp
2134 d0eebce4 2019-03-11 stsp if (do_list || delref) {
2135 d0eebce4 2019-03-11 stsp if (argc > 0)
2136 d0eebce4 2019-03-11 stsp usage_ref();
2137 d0eebce4 2019-03-11 stsp } else if (argc != 2)
2138 d0eebce4 2019-03-11 stsp usage_ref();
2139 d0eebce4 2019-03-11 stsp
2140 d0eebce4 2019-03-11 stsp #ifndef PROFILE
2141 e0b57350 2019-03-12 stsp if (do_list) {
2142 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
2143 e0b57350 2019-03-12 stsp NULL) == -1)
2144 e0b57350 2019-03-12 stsp err(1, "pledge");
2145 e0b57350 2019-03-12 stsp } else {
2146 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2147 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
2148 e0b57350 2019-03-12 stsp err(1, "pledge");
2149 e0b57350 2019-03-12 stsp }
2150 d0eebce4 2019-03-11 stsp #endif
2151 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
2152 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
2153 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2154 d0eebce4 2019-03-11 stsp goto done;
2155 d0eebce4 2019-03-11 stsp }
2156 d0eebce4 2019-03-11 stsp
2157 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
2158 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
2159 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2160 d0eebce4 2019-03-11 stsp goto done;
2161 d0eebce4 2019-03-11 stsp else
2162 d0eebce4 2019-03-11 stsp error = NULL;
2163 d0eebce4 2019-03-11 stsp if (worktree) {
2164 d0eebce4 2019-03-11 stsp repo_path =
2165 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
2166 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
2167 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2168 d0eebce4 2019-03-11 stsp if (error)
2169 d0eebce4 2019-03-11 stsp goto done;
2170 d0eebce4 2019-03-11 stsp } else {
2171 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
2172 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
2173 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2174 d0eebce4 2019-03-11 stsp goto done;
2175 d0eebce4 2019-03-11 stsp }
2176 d0eebce4 2019-03-11 stsp }
2177 d0eebce4 2019-03-11 stsp }
2178 d0eebce4 2019-03-11 stsp
2179 d0eebce4 2019-03-11 stsp error = got_repo_open(&repo, repo_path);
2180 d0eebce4 2019-03-11 stsp if (error != NULL)
2181 d0eebce4 2019-03-11 stsp goto done;
2182 d0eebce4 2019-03-11 stsp
2183 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
2184 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
2185 c02c541e 2019-03-29 stsp if (error)
2186 c02c541e 2019-03-29 stsp goto done;
2187 c02c541e 2019-03-29 stsp
2188 d0eebce4 2019-03-11 stsp if (do_list)
2189 d0eebce4 2019-03-11 stsp error = list_refs(repo);
2190 d0eebce4 2019-03-11 stsp else if (delref)
2191 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
2192 d0eebce4 2019-03-11 stsp else
2193 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
2194 4e759de4 2019-06-26 stsp done:
2195 4e759de4 2019-06-26 stsp if (repo)
2196 4e759de4 2019-06-26 stsp got_repo_close(repo);
2197 4e759de4 2019-06-26 stsp if (worktree)
2198 4e759de4 2019-06-26 stsp got_worktree_close(worktree);
2199 4e759de4 2019-06-26 stsp free(cwd);
2200 4e759de4 2019-06-26 stsp free(repo_path);
2201 4e759de4 2019-06-26 stsp return error;
2202 4e759de4 2019-06-26 stsp }
2203 4e759de4 2019-06-26 stsp
2204 4e759de4 2019-06-26 stsp __dead static void
2205 4e759de4 2019-06-26 stsp usage_branch(void)
2206 4e759de4 2019-06-26 stsp {
2207 4e759de4 2019-06-26 stsp fprintf(stderr,
2208 4e759de4 2019-06-26 stsp "usage: %s branch [-r repository] -l | -d name | "
2209 4e759de4 2019-06-26 stsp "name [base-branch]\n", getprogname());
2210 4e759de4 2019-06-26 stsp exit(1);
2211 4e759de4 2019-06-26 stsp }
2212 4e759de4 2019-06-26 stsp
2213 4e759de4 2019-06-26 stsp static const struct got_error *
2214 ba882ee3 2019-07-11 stsp list_branches(struct got_repository *repo, struct got_worktree *worktree)
2215 4e759de4 2019-06-26 stsp {
2216 4e759de4 2019-06-26 stsp static const struct got_error *err = NULL;
2217 4e759de4 2019-06-26 stsp struct got_reflist_head refs;
2218 4e759de4 2019-06-26 stsp struct got_reflist_entry *re;
2219 4e759de4 2019-06-26 stsp
2220 4e759de4 2019-06-26 stsp SIMPLEQ_INIT(&refs);
2221 ba882ee3 2019-07-11 stsp
2222 4e759de4 2019-06-26 stsp err = got_ref_list(&refs, repo);
2223 4e759de4 2019-06-26 stsp if (err)
2224 4e759de4 2019-06-26 stsp return err;
2225 4e759de4 2019-06-26 stsp
2226 4e759de4 2019-06-26 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
2227 ba882ee3 2019-07-11 stsp const char *refname, *marker = " ";
2228 4e759de4 2019-06-26 stsp char *refstr;
2229 4e759de4 2019-06-26 stsp refname = got_ref_get_name(re->ref);
2230 4e759de4 2019-06-26 stsp if (strncmp(refname, "refs/heads/", 11) != 0)
2231 4e759de4 2019-06-26 stsp continue;
2232 ba882ee3 2019-07-11 stsp if (worktree && strcmp(refname,
2233 ba882ee3 2019-07-11 stsp got_worktree_get_head_ref_name(worktree)) == 0) {
2234 ba882ee3 2019-07-11 stsp struct got_object_id *id = NULL;
2235 ba882ee3 2019-07-11 stsp err = got_ref_resolve(&id, repo, re->ref);
2236 ba882ee3 2019-07-11 stsp if (err)
2237 ba882ee3 2019-07-11 stsp return err;
2238 ba882ee3 2019-07-11 stsp if (got_object_id_cmp(id,
2239 ba882ee3 2019-07-11 stsp got_worktree_get_base_commit_id(worktree)) == 0)
2240 ba882ee3 2019-07-11 stsp marker = "* ";
2241 ba882ee3 2019-07-11 stsp else
2242 ba882ee3 2019-07-11 stsp marker = "~ ";
2243 ba882ee3 2019-07-11 stsp free(id);
2244 ba882ee3 2019-07-11 stsp }
2245 4e759de4 2019-06-26 stsp refname += 11;
2246 4e759de4 2019-06-26 stsp refstr = got_ref_to_str(re->ref);
2247 4e759de4 2019-06-26 stsp if (refstr == NULL)
2248 4e759de4 2019-06-26 stsp return got_error_from_errno("got_ref_to_str");
2249 ba882ee3 2019-07-11 stsp printf("%s%s: %s\n", marker, refname, refstr);
2250 4e759de4 2019-06-26 stsp free(refstr);
2251 4e759de4 2019-06-26 stsp }
2252 4e759de4 2019-06-26 stsp
2253 4e759de4 2019-06-26 stsp got_ref_list_free(&refs);
2254 4e759de4 2019-06-26 stsp return NULL;
2255 4e759de4 2019-06-26 stsp }
2256 4e759de4 2019-06-26 stsp
2257 4e759de4 2019-06-26 stsp static const struct got_error *
2258 4e759de4 2019-06-26 stsp delete_branch(struct got_repository *repo, const char *branch_name)
2259 4e759de4 2019-06-26 stsp {
2260 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
2261 4e759de4 2019-06-26 stsp struct got_reference *ref;
2262 4e759de4 2019-06-26 stsp char *refname;
2263 4e759de4 2019-06-26 stsp
2264 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
2265 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
2266 4e759de4 2019-06-26 stsp
2267 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
2268 4e759de4 2019-06-26 stsp if (err)
2269 4e759de4 2019-06-26 stsp goto done;
2270 4e759de4 2019-06-26 stsp
2271 4e759de4 2019-06-26 stsp err = got_ref_delete(ref, repo);
2272 4e759de4 2019-06-26 stsp got_ref_close(ref);
2273 4e759de4 2019-06-26 stsp done:
2274 4e759de4 2019-06-26 stsp free(refname);
2275 4e759de4 2019-06-26 stsp return err;
2276 4e759de4 2019-06-26 stsp }
2277 4e759de4 2019-06-26 stsp
2278 4e759de4 2019-06-26 stsp static const struct got_error *
2279 4e759de4 2019-06-26 stsp add_branch(struct got_repository *repo, const char *branch_name,
2280 4e759de4 2019-06-26 stsp const char *base_branch)
2281 4e759de4 2019-06-26 stsp {
2282 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
2283 4e759de4 2019-06-26 stsp struct got_object_id *id = NULL;
2284 4e759de4 2019-06-26 stsp struct got_reference *ref = NULL;
2285 4e759de4 2019-06-26 stsp char *base_refname = NULL, *refname = NULL;
2286 4e759de4 2019-06-26 stsp struct got_reference *base_ref;
2287 d3f84d51 2019-07-11 stsp
2288 d3f84d51 2019-07-11 stsp /*
2289 d3f84d51 2019-07-11 stsp * Don't let the user create a branch named '-'.
2290 d3f84d51 2019-07-11 stsp * While technically a valid reference name, this case is usually
2291 d3f84d51 2019-07-11 stsp * an unintended typo.
2292 d3f84d51 2019-07-11 stsp */
2293 d3f84d51 2019-07-11 stsp if (branch_name[0] == '-' && branch_name[1] == '\0')
2294 d3f84d51 2019-07-11 stsp return got_error(GOT_ERR_BAD_REF_NAME);
2295 4e759de4 2019-06-26 stsp
2296 4e759de4 2019-06-26 stsp if (strcmp(GOT_REF_HEAD, base_branch) == 0) {
2297 4e759de4 2019-06-26 stsp base_refname = strdup(GOT_REF_HEAD);
2298 4e759de4 2019-06-26 stsp if (base_refname == NULL)
2299 4e759de4 2019-06-26 stsp return got_error_from_errno("strdup");
2300 4e759de4 2019-06-26 stsp } else if (asprintf(&base_refname, "refs/heads/%s", base_branch) == -1)
2301 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
2302 4e759de4 2019-06-26 stsp
2303 4e759de4 2019-06-26 stsp err = got_ref_open(&base_ref, repo, base_refname, 0);
2304 4e759de4 2019-06-26 stsp if (err)
2305 4e759de4 2019-06-26 stsp goto done;
2306 4e759de4 2019-06-26 stsp err = got_ref_resolve(&id, repo, base_ref);
2307 4e759de4 2019-06-26 stsp got_ref_close(base_ref);
2308 4e759de4 2019-06-26 stsp if (err)
2309 4e759de4 2019-06-26 stsp goto done;
2310 4e759de4 2019-06-26 stsp
2311 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
2312 4e759de4 2019-06-26 stsp err = got_error_from_errno("asprintf");
2313 4e759de4 2019-06-26 stsp goto done;
2314 4e759de4 2019-06-26 stsp }
2315 4e759de4 2019-06-26 stsp
2316 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
2317 4e759de4 2019-06-26 stsp if (err == NULL) {
2318 4e759de4 2019-06-26 stsp err = got_error(GOT_ERR_BRANCH_EXISTS);
2319 4e759de4 2019-06-26 stsp goto done;
2320 4e759de4 2019-06-26 stsp } else if (err->code != GOT_ERR_NOT_REF)
2321 4e759de4 2019-06-26 stsp goto done;
2322 4e759de4 2019-06-26 stsp
2323 4e759de4 2019-06-26 stsp err = got_ref_alloc(&ref, refname, id);
2324 4e759de4 2019-06-26 stsp if (err)
2325 4e759de4 2019-06-26 stsp goto done;
2326 4e759de4 2019-06-26 stsp
2327 4e759de4 2019-06-26 stsp err = got_ref_write(ref, repo);
2328 d0eebce4 2019-03-11 stsp done:
2329 4e759de4 2019-06-26 stsp if (ref)
2330 4e759de4 2019-06-26 stsp got_ref_close(ref);
2331 4e759de4 2019-06-26 stsp free(id);
2332 4e759de4 2019-06-26 stsp free(base_refname);
2333 4e759de4 2019-06-26 stsp free(refname);
2334 4e759de4 2019-06-26 stsp return err;
2335 4e759de4 2019-06-26 stsp }
2336 4e759de4 2019-06-26 stsp
2337 4e759de4 2019-06-26 stsp static const struct got_error *
2338 4e759de4 2019-06-26 stsp cmd_branch(int argc, char *argv[])
2339 4e759de4 2019-06-26 stsp {
2340 4e759de4 2019-06-26 stsp const struct got_error *error = NULL;
2341 4e759de4 2019-06-26 stsp struct got_repository *repo = NULL;
2342 4e759de4 2019-06-26 stsp struct got_worktree *worktree = NULL;
2343 4e759de4 2019-06-26 stsp char *cwd = NULL, *repo_path = NULL;
2344 4e759de4 2019-06-26 stsp int ch, do_list = 0;
2345 4e759de4 2019-06-26 stsp const char *delref = NULL;
2346 4e759de4 2019-06-26 stsp
2347 4e759de4 2019-06-26 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
2348 4e759de4 2019-06-26 stsp switch (ch) {
2349 4e759de4 2019-06-26 stsp case 'd':
2350 4e759de4 2019-06-26 stsp delref = optarg;
2351 4e759de4 2019-06-26 stsp break;
2352 4e759de4 2019-06-26 stsp case 'r':
2353 4e759de4 2019-06-26 stsp repo_path = realpath(optarg, NULL);
2354 4e759de4 2019-06-26 stsp if (repo_path == NULL)
2355 4e759de4 2019-06-26 stsp err(1, "-r option");
2356 4e759de4 2019-06-26 stsp got_path_strip_trailing_slashes(repo_path);
2357 4e759de4 2019-06-26 stsp break;
2358 4e759de4 2019-06-26 stsp case 'l':
2359 4e759de4 2019-06-26 stsp do_list = 1;
2360 4e759de4 2019-06-26 stsp break;
2361 4e759de4 2019-06-26 stsp default:
2362 4e759de4 2019-06-26 stsp usage_branch();
2363 4e759de4 2019-06-26 stsp /* NOTREACHED */
2364 4e759de4 2019-06-26 stsp }
2365 4e759de4 2019-06-26 stsp }
2366 4e759de4 2019-06-26 stsp
2367 4e759de4 2019-06-26 stsp if (do_list && delref)
2368 4e759de4 2019-06-26 stsp errx(1, "-l and -d options are mutually exclusive\n");
2369 4e759de4 2019-06-26 stsp
2370 4e759de4 2019-06-26 stsp argc -= optind;
2371 4e759de4 2019-06-26 stsp argv += optind;
2372 4e759de4 2019-06-26 stsp
2373 4e759de4 2019-06-26 stsp if (do_list || delref) {
2374 4e759de4 2019-06-26 stsp if (argc > 0)
2375 4e759de4 2019-06-26 stsp usage_branch();
2376 4e759de4 2019-06-26 stsp } else if (argc < 1 || argc > 2)
2377 4e759de4 2019-06-26 stsp usage_branch();
2378 4e759de4 2019-06-26 stsp
2379 4e759de4 2019-06-26 stsp #ifndef PROFILE
2380 4e759de4 2019-06-26 stsp if (do_list) {
2381 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
2382 4e759de4 2019-06-26 stsp NULL) == -1)
2383 4e759de4 2019-06-26 stsp err(1, "pledge");
2384 4e759de4 2019-06-26 stsp } else {
2385 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2386 4e759de4 2019-06-26 stsp "sendfd unveil", NULL) == -1)
2387 4e759de4 2019-06-26 stsp err(1, "pledge");
2388 4e759de4 2019-06-26 stsp }
2389 4e759de4 2019-06-26 stsp #endif
2390 4e759de4 2019-06-26 stsp cwd = getcwd(NULL, 0);
2391 4e759de4 2019-06-26 stsp if (cwd == NULL) {
2392 4e759de4 2019-06-26 stsp error = got_error_from_errno("getcwd");
2393 4e759de4 2019-06-26 stsp goto done;
2394 4e759de4 2019-06-26 stsp }
2395 4e759de4 2019-06-26 stsp
2396 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
2397 4e759de4 2019-06-26 stsp error = got_worktree_open(&worktree, cwd);
2398 4e759de4 2019-06-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2399 4e759de4 2019-06-26 stsp goto done;
2400 4e759de4 2019-06-26 stsp else
2401 4e759de4 2019-06-26 stsp error = NULL;
2402 4e759de4 2019-06-26 stsp if (worktree) {
2403 4e759de4 2019-06-26 stsp repo_path =
2404 4e759de4 2019-06-26 stsp strdup(got_worktree_get_repo_path(worktree));
2405 4e759de4 2019-06-26 stsp if (repo_path == NULL)
2406 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
2407 4e759de4 2019-06-26 stsp if (error)
2408 4e759de4 2019-06-26 stsp goto done;
2409 4e759de4 2019-06-26 stsp } else {
2410 4e759de4 2019-06-26 stsp repo_path = strdup(cwd);
2411 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
2412 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
2413 4e759de4 2019-06-26 stsp goto done;
2414 4e759de4 2019-06-26 stsp }
2415 4e759de4 2019-06-26 stsp }
2416 4e759de4 2019-06-26 stsp }
2417 4e759de4 2019-06-26 stsp
2418 4e759de4 2019-06-26 stsp error = got_repo_open(&repo, repo_path);
2419 4e759de4 2019-06-26 stsp if (error != NULL)
2420 4e759de4 2019-06-26 stsp goto done;
2421 4e759de4 2019-06-26 stsp
2422 4e759de4 2019-06-26 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
2423 4e759de4 2019-06-26 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
2424 4e759de4 2019-06-26 stsp if (error)
2425 4e759de4 2019-06-26 stsp goto done;
2426 4e759de4 2019-06-26 stsp
2427 4e759de4 2019-06-26 stsp if (do_list)
2428 ba882ee3 2019-07-11 stsp error = list_branches(repo, worktree);
2429 4e759de4 2019-06-26 stsp else if (delref)
2430 4e759de4 2019-06-26 stsp error = delete_branch(repo, delref);
2431 4e759de4 2019-06-26 stsp else {
2432 4e759de4 2019-06-26 stsp const char *base_branch;
2433 4e759de4 2019-06-26 stsp if (argc == 1) {
2434 4e759de4 2019-06-26 stsp base_branch = worktree ?
2435 4e759de4 2019-06-26 stsp got_worktree_get_head_ref_name(worktree) :
2436 4e759de4 2019-06-26 stsp GOT_REF_HEAD;
2437 4e759de4 2019-06-26 stsp } else
2438 4e759de4 2019-06-26 stsp base_branch = argv[1];
2439 4e759de4 2019-06-26 stsp error = add_branch(repo, argv[0], base_branch);
2440 4e759de4 2019-06-26 stsp }
2441 4e759de4 2019-06-26 stsp done:
2442 d0eebce4 2019-03-11 stsp if (repo)
2443 d0eebce4 2019-03-11 stsp got_repo_close(repo);
2444 d0eebce4 2019-03-11 stsp if (worktree)
2445 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
2446 d0eebce4 2019-03-11 stsp free(cwd);
2447 d0eebce4 2019-03-11 stsp free(repo_path);
2448 d00136be 2019-03-26 stsp return error;
2449 d00136be 2019-03-26 stsp }
2450 d00136be 2019-03-26 stsp
2451 d00136be 2019-03-26 stsp __dead static void
2452 d00136be 2019-03-26 stsp usage_add(void)
2453 d00136be 2019-03-26 stsp {
2454 fbb7e5c7 2019-05-11 stsp fprintf(stderr, "usage: %s add file-path ...\n", getprogname());
2455 d00136be 2019-03-26 stsp exit(1);
2456 d00136be 2019-03-26 stsp }
2457 d00136be 2019-03-26 stsp
2458 d00136be 2019-03-26 stsp static const struct got_error *
2459 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
2460 d00136be 2019-03-26 stsp {
2461 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
2462 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
2463 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
2464 1dd54920 2019-05-11 stsp char *cwd = NULL;
2465 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
2466 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2467 723c305c 2019-05-11 jcs int ch, x;
2468 1dd54920 2019-05-11 stsp
2469 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
2470 d00136be 2019-03-26 stsp
2471 d00136be 2019-03-26 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2472 d00136be 2019-03-26 stsp switch (ch) {
2473 d00136be 2019-03-26 stsp default:
2474 d00136be 2019-03-26 stsp usage_add();
2475 d00136be 2019-03-26 stsp /* NOTREACHED */
2476 d00136be 2019-03-26 stsp }
2477 d00136be 2019-03-26 stsp }
2478 d00136be 2019-03-26 stsp
2479 d00136be 2019-03-26 stsp argc -= optind;
2480 d00136be 2019-03-26 stsp argv += optind;
2481 d00136be 2019-03-26 stsp
2482 723c305c 2019-05-11 jcs if (argc < 1)
2483 d00136be 2019-03-26 stsp usage_add();
2484 d00136be 2019-03-26 stsp
2485 723c305c 2019-05-11 jcs /* make sure each file exists before doing anything halfway */
2486 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2487 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2488 723c305c 2019-05-11 jcs if (path == NULL) {
2489 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2490 723c305c 2019-05-11 jcs goto done;
2491 723c305c 2019-05-11 jcs }
2492 1dd54920 2019-05-11 stsp free(path);
2493 d00136be 2019-03-26 stsp }
2494 d00136be 2019-03-26 stsp
2495 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
2496 d00136be 2019-03-26 stsp if (cwd == NULL) {
2497 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2498 d00136be 2019-03-26 stsp goto done;
2499 d00136be 2019-03-26 stsp }
2500 723c305c 2019-05-11 jcs
2501 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2502 d00136be 2019-03-26 stsp if (error)
2503 d00136be 2019-03-26 stsp goto done;
2504 d00136be 2019-03-26 stsp
2505 031a5338 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2506 031a5338 2019-03-26 stsp if (error != NULL)
2507 031a5338 2019-03-26 stsp goto done;
2508 031a5338 2019-03-26 stsp
2509 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2510 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2511 d00136be 2019-03-26 stsp if (error)
2512 d00136be 2019-03-26 stsp goto done;
2513 d00136be 2019-03-26 stsp
2514 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2515 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2516 723c305c 2019-05-11 jcs if (path == NULL) {
2517 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2518 723c305c 2019-05-11 jcs goto done;
2519 723c305c 2019-05-11 jcs }
2520 723c305c 2019-05-11 jcs
2521 723c305c 2019-05-11 jcs got_path_strip_trailing_slashes(path);
2522 1dd54920 2019-05-11 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2523 1dd54920 2019-05-11 stsp if (error) {
2524 1dd54920 2019-05-11 stsp free(path);
2525 723c305c 2019-05-11 jcs goto done;
2526 1dd54920 2019-05-11 stsp }
2527 723c305c 2019-05-11 jcs }
2528 1dd54920 2019-05-11 stsp error = got_worktree_schedule_add(worktree, &paths, print_status,
2529 1dd54920 2019-05-11 stsp NULL, repo);
2530 d00136be 2019-03-26 stsp done:
2531 031a5338 2019-03-26 stsp if (repo)
2532 031a5338 2019-03-26 stsp got_repo_close(repo);
2533 d00136be 2019-03-26 stsp if (worktree)
2534 d00136be 2019-03-26 stsp got_worktree_close(worktree);
2535 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
2536 1dd54920 2019-05-11 stsp free((char *)pe->path);
2537 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
2538 2ec1f75b 2019-03-26 stsp free(cwd);
2539 2ec1f75b 2019-03-26 stsp return error;
2540 2ec1f75b 2019-03-26 stsp }
2541 2ec1f75b 2019-03-26 stsp
2542 2ec1f75b 2019-03-26 stsp __dead static void
2543 648e4ef7 2019-07-09 stsp usage_remove(void)
2544 2ec1f75b 2019-03-26 stsp {
2545 648e4ef7 2019-07-09 stsp fprintf(stderr, "usage: %s remove [-f] file-path ...\n", getprogname());
2546 2ec1f75b 2019-03-26 stsp exit(1);
2547 2ec1f75b 2019-03-26 stsp }
2548 2ec1f75b 2019-03-26 stsp
2549 2ec1f75b 2019-03-26 stsp static const struct got_error *
2550 648e4ef7 2019-07-09 stsp cmd_remove(int argc, char *argv[])
2551 2ec1f75b 2019-03-26 stsp {
2552 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
2553 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
2554 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
2555 17ed4618 2019-06-02 stsp char *cwd = NULL;
2556 17ed4618 2019-06-02 stsp struct got_pathlist_head paths;
2557 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
2558 17ed4618 2019-06-02 stsp int ch, i, delete_local_mods = 0;
2559 2ec1f75b 2019-03-26 stsp
2560 17ed4618 2019-06-02 stsp TAILQ_INIT(&paths);
2561 17ed4618 2019-06-02 stsp
2562 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
2563 2ec1f75b 2019-03-26 stsp switch (ch) {
2564 2ec1f75b 2019-03-26 stsp case 'f':
2565 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
2566 2ec1f75b 2019-03-26 stsp break;
2567 2ec1f75b 2019-03-26 stsp default:
2568 2ec1f75b 2019-03-26 stsp usage_add();
2569 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
2570 2ec1f75b 2019-03-26 stsp }
2571 2ec1f75b 2019-03-26 stsp }
2572 2ec1f75b 2019-03-26 stsp
2573 2ec1f75b 2019-03-26 stsp argc -= optind;
2574 2ec1f75b 2019-03-26 stsp argv += optind;
2575 2ec1f75b 2019-03-26 stsp
2576 17ed4618 2019-06-02 stsp if (argc < 1)
2577 648e4ef7 2019-07-09 stsp usage_remove();
2578 2ec1f75b 2019-03-26 stsp
2579 17ed4618 2019-06-02 stsp /* make sure each file exists before doing anything halfway */
2580 17ed4618 2019-06-02 stsp for (i = 0; i < argc; i++) {
2581 17ed4618 2019-06-02 stsp char *path = realpath(argv[i], NULL);
2582 17ed4618 2019-06-02 stsp if (path == NULL) {
2583 17ed4618 2019-06-02 stsp error = got_error_from_errno2("realpath", argv[i]);
2584 17ed4618 2019-06-02 stsp goto done;
2585 17ed4618 2019-06-02 stsp }
2586 17ed4618 2019-06-02 stsp free(path);
2587 2ec1f75b 2019-03-26 stsp }
2588 2ec1f75b 2019-03-26 stsp
2589 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
2590 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
2591 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2592 2ec1f75b 2019-03-26 stsp goto done;
2593 2ec1f75b 2019-03-26 stsp }
2594 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2595 2ec1f75b 2019-03-26 stsp if (error)
2596 2ec1f75b 2019-03-26 stsp goto done;
2597 2ec1f75b 2019-03-26 stsp
2598 2ec1f75b 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2599 2af4a041 2019-05-11 jcs if (error)
2600 2ec1f75b 2019-03-26 stsp goto done;
2601 2ec1f75b 2019-03-26 stsp
2602 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2603 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2604 2ec1f75b 2019-03-26 stsp if (error)
2605 2ec1f75b 2019-03-26 stsp goto done;
2606 2ec1f75b 2019-03-26 stsp
2607 17ed4618 2019-06-02 stsp for (i = 0; i < argc; i++) {
2608 17ed4618 2019-06-02 stsp char *path = realpath(argv[i], NULL);
2609 17ed4618 2019-06-02 stsp if (path == NULL) {
2610 17ed4618 2019-06-02 stsp error = got_error_from_errno2("realpath", argv[i]);
2611 17ed4618 2019-06-02 stsp goto done;
2612 17ed4618 2019-06-02 stsp }
2613 17ed4618 2019-06-02 stsp
2614 17ed4618 2019-06-02 stsp got_path_strip_trailing_slashes(path);
2615 17ed4618 2019-06-02 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2616 17ed4618 2019-06-02 stsp if (error) {
2617 17ed4618 2019-06-02 stsp free(path);
2618 17ed4618 2019-06-02 stsp goto done;
2619 17ed4618 2019-06-02 stsp }
2620 17ed4618 2019-06-02 stsp }
2621 17ed4618 2019-06-02 stsp error = got_worktree_schedule_delete(worktree, &paths,
2622 17ed4618 2019-06-02 stsp delete_local_mods, print_status, NULL, repo);
2623 a129376b 2019-03-28 stsp if (error)
2624 a129376b 2019-03-28 stsp goto done;
2625 a129376b 2019-03-28 stsp done:
2626 a129376b 2019-03-28 stsp if (repo)
2627 a129376b 2019-03-28 stsp got_repo_close(repo);
2628 a129376b 2019-03-28 stsp if (worktree)
2629 a129376b 2019-03-28 stsp got_worktree_close(worktree);
2630 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, &paths, entry)
2631 17ed4618 2019-06-02 stsp free((char *)pe->path);
2632 17ed4618 2019-06-02 stsp got_pathlist_free(&paths);
2633 a129376b 2019-03-28 stsp free(cwd);
2634 a129376b 2019-03-28 stsp return error;
2635 a129376b 2019-03-28 stsp }
2636 a129376b 2019-03-28 stsp
2637 a129376b 2019-03-28 stsp __dead static void
2638 a129376b 2019-03-28 stsp usage_revert(void)
2639 a129376b 2019-03-28 stsp {
2640 e20a8b6f 2019-06-04 stsp fprintf(stderr, "usage: %s revert file-path ...\n", getprogname());
2641 a129376b 2019-03-28 stsp exit(1);
2642 a129376b 2019-03-28 stsp }
2643 a129376b 2019-03-28 stsp
2644 a129376b 2019-03-28 stsp static void
2645 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
2646 a129376b 2019-03-28 stsp {
2647 a129376b 2019-03-28 stsp while (path[0] == '/')
2648 a129376b 2019-03-28 stsp path++;
2649 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
2650 a129376b 2019-03-28 stsp }
2651 a129376b 2019-03-28 stsp
2652 a129376b 2019-03-28 stsp static const struct got_error *
2653 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
2654 a129376b 2019-03-28 stsp {
2655 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
2656 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
2657 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
2658 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
2659 e20a8b6f 2019-06-04 stsp struct got_pathlist_head paths;
2660 e20a8b6f 2019-06-04 stsp struct got_pathlist_entry *pe;
2661 e20a8b6f 2019-06-04 stsp int ch, i;
2662 a129376b 2019-03-28 stsp
2663 e20a8b6f 2019-06-04 stsp TAILQ_INIT(&paths);
2664 e20a8b6f 2019-06-04 stsp
2665 a129376b 2019-03-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2666 a129376b 2019-03-28 stsp switch (ch) {
2667 a129376b 2019-03-28 stsp default:
2668 a129376b 2019-03-28 stsp usage_revert();
2669 a129376b 2019-03-28 stsp /* NOTREACHED */
2670 a129376b 2019-03-28 stsp }
2671 a129376b 2019-03-28 stsp }
2672 a129376b 2019-03-28 stsp
2673 a129376b 2019-03-28 stsp argc -= optind;
2674 a129376b 2019-03-28 stsp argv += optind;
2675 a129376b 2019-03-28 stsp
2676 e20a8b6f 2019-06-04 stsp if (argc < 1)
2677 a129376b 2019-03-28 stsp usage_revert();
2678 a129376b 2019-03-28 stsp
2679 e20a8b6f 2019-06-04 stsp for (i = 0; i < argc; i++) {
2680 e20a8b6f 2019-06-04 stsp char *path = realpath(argv[i], NULL);
2681 e20a8b6f 2019-06-04 stsp if (path == NULL) {
2682 e20a8b6f 2019-06-04 stsp error = got_error_from_errno2("realpath", argv[i]);
2683 e20a8b6f 2019-06-04 stsp goto done;
2684 e20a8b6f 2019-06-04 stsp }
2685 e20a8b6f 2019-06-04 stsp
2686 e20a8b6f 2019-06-04 stsp got_path_strip_trailing_slashes(path);
2687 e20a8b6f 2019-06-04 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2688 e20a8b6f 2019-06-04 stsp if (error) {
2689 e20a8b6f 2019-06-04 stsp free(path);
2690 e20a8b6f 2019-06-04 stsp goto done;
2691 e20a8b6f 2019-06-04 stsp }
2692 a129376b 2019-03-28 stsp }
2693 a129376b 2019-03-28 stsp
2694 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
2695 a129376b 2019-03-28 stsp if (cwd == NULL) {
2696 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2697 a129376b 2019-03-28 stsp goto done;
2698 a129376b 2019-03-28 stsp }
2699 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
2700 2ec1f75b 2019-03-26 stsp if (error)
2701 2ec1f75b 2019-03-26 stsp goto done;
2702 a129376b 2019-03-28 stsp
2703 a129376b 2019-03-28 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2704 a129376b 2019-03-28 stsp if (error != NULL)
2705 a129376b 2019-03-28 stsp goto done;
2706 a129376b 2019-03-28 stsp
2707 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2708 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2709 a129376b 2019-03-28 stsp if (error)
2710 a129376b 2019-03-28 stsp goto done;
2711 a129376b 2019-03-28 stsp
2712 e20a8b6f 2019-06-04 stsp error = got_worktree_revert(worktree, &paths,
2713 a129376b 2019-03-28 stsp revert_progress, NULL, repo);
2714 a129376b 2019-03-28 stsp if (error)
2715 a129376b 2019-03-28 stsp goto done;
2716 2ec1f75b 2019-03-26 stsp done:
2717 2ec1f75b 2019-03-26 stsp if (repo)
2718 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
2719 2ec1f75b 2019-03-26 stsp if (worktree)
2720 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
2721 2ec1f75b 2019-03-26 stsp free(path);
2722 d00136be 2019-03-26 stsp free(cwd);
2723 6bad629b 2019-02-04 stsp return error;
2724 c4296144 2019-05-09 stsp }
2725 c4296144 2019-05-09 stsp
2726 c4296144 2019-05-09 stsp __dead static void
2727 c4296144 2019-05-09 stsp usage_commit(void)
2728 c4296144 2019-05-09 stsp {
2729 c6fc0acd 2019-05-09 stsp fprintf(stderr, "usage: %s commit [-m msg] file-path\n", getprogname());
2730 c4296144 2019-05-09 stsp exit(1);
2731 33ad4cbe 2019-05-12 jcs }
2732 33ad4cbe 2019-05-12 jcs
2733 33ad4cbe 2019-05-12 jcs int
2734 e2ba3d07 2019-05-13 stsp spawn_editor(const char *editor, const char *file)
2735 33ad4cbe 2019-05-12 jcs {
2736 33ad4cbe 2019-05-12 jcs pid_t pid;
2737 33ad4cbe 2019-05-12 jcs sig_t sighup, sigint, sigquit;
2738 33ad4cbe 2019-05-12 jcs int st = -1;
2739 33ad4cbe 2019-05-12 jcs
2740 33ad4cbe 2019-05-12 jcs sighup = signal(SIGHUP, SIG_IGN);
2741 33ad4cbe 2019-05-12 jcs sigint = signal(SIGINT, SIG_IGN);
2742 33ad4cbe 2019-05-12 jcs sigquit = signal(SIGQUIT, SIG_IGN);
2743 33ad4cbe 2019-05-12 jcs
2744 33ad4cbe 2019-05-12 jcs switch (pid = fork()) {
2745 33ad4cbe 2019-05-12 jcs case -1:
2746 33ad4cbe 2019-05-12 jcs goto doneediting;
2747 33ad4cbe 2019-05-12 jcs case 0:
2748 e2ba3d07 2019-05-13 stsp execl(editor, editor, file, (char *)NULL);
2749 33ad4cbe 2019-05-12 jcs _exit(127);
2750 33ad4cbe 2019-05-12 jcs }
2751 33ad4cbe 2019-05-12 jcs
2752 33ad4cbe 2019-05-12 jcs while (waitpid(pid, &st, 0) == -1)
2753 33ad4cbe 2019-05-12 jcs if (errno != EINTR)
2754 33ad4cbe 2019-05-12 jcs break;
2755 33ad4cbe 2019-05-12 jcs
2756 33ad4cbe 2019-05-12 jcs doneediting:
2757 33ad4cbe 2019-05-12 jcs (void)signal(SIGHUP, sighup);
2758 33ad4cbe 2019-05-12 jcs (void)signal(SIGINT, sigint);
2759 33ad4cbe 2019-05-12 jcs (void)signal(SIGQUIT, sigquit);
2760 33ad4cbe 2019-05-12 jcs
2761 33ad4cbe 2019-05-12 jcs if (!WIFEXITED(st)) {
2762 33ad4cbe 2019-05-12 jcs errno = EINTR;
2763 33ad4cbe 2019-05-12 jcs return -1;
2764 33ad4cbe 2019-05-12 jcs }
2765 33ad4cbe 2019-05-12 jcs
2766 33ad4cbe 2019-05-12 jcs return WEXITSTATUS(st);
2767 33ad4cbe 2019-05-12 jcs }
2768 33ad4cbe 2019-05-12 jcs
2769 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
2770 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
2771 e2ba3d07 2019-05-13 stsp const char *editor;
2772 e0870e44 2019-05-13 stsp const char *worktree_path;
2773 76d98825 2019-06-03 stsp const char *branch_name;
2774 314a6357 2019-05-13 stsp const char *repo_path;
2775 e0870e44 2019-05-13 stsp char *logmsg_path;
2776 e2ba3d07 2019-05-13 stsp
2777 e2ba3d07 2019-05-13 stsp };
2778 e0870e44 2019-05-13 stsp
2779 33ad4cbe 2019-05-12 jcs static const struct got_error *
2780 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
2781 33ad4cbe 2019-05-12 jcs void *arg)
2782 33ad4cbe 2019-05-12 jcs {
2783 76d98825 2019-06-03 stsp char *initial_content = NULL;
2784 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
2785 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
2786 e0870e44 2019-05-13 stsp char *template = NULL;
2787 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
2788 33ad4cbe 2019-05-12 jcs char buf[1024];
2789 33ad4cbe 2019-05-12 jcs struct stat st, st2;
2790 33ad4cbe 2019-05-12 jcs FILE *fp;
2791 33ad4cbe 2019-05-12 jcs size_t len;
2792 e0870e44 2019-05-13 stsp int fd, content_changed = 0;
2793 33ad4cbe 2019-05-12 jcs
2794 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
2795 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
2796 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
2797 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
2798 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
2799 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
2800 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
2801 33ad4cbe 2019-05-12 jcs return NULL;
2802 33ad4cbe 2019-05-12 jcs }
2803 33ad4cbe 2019-05-12 jcs
2804 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
2805 76d98825 2019-06-03 stsp return got_error_from_errno("asprintf");
2806 76d98825 2019-06-03 stsp
2807 76d98825 2019-06-03 stsp if (asprintf(&initial_content,
2808 76d98825 2019-06-03 stsp "\n# changes to be committed on branch %s:\n",
2809 76d98825 2019-06-03 stsp a->branch_name) == -1)
2810 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2811 e0870e44 2019-05-13 stsp
2812 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
2813 793c30b5 2019-05-13 stsp if (err)
2814 e0870e44 2019-05-13 stsp goto done;
2815 33ad4cbe 2019-05-12 jcs
2816 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
2817 33ad4cbe 2019-05-12 jcs
2818 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
2819 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2820 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
2821 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
2822 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
2823 33ad4cbe 2019-05-12 jcs }
2824 33ad4cbe 2019-05-12 jcs close(fd);
2825 33ad4cbe 2019-05-12 jcs
2826 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st) == -1) {
2827 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", a->logmsg_path);
2828 33ad4cbe 2019-05-12 jcs goto done;
2829 33ad4cbe 2019-05-12 jcs }
2830 33ad4cbe 2019-05-12 jcs
2831 e0870e44 2019-05-13 stsp if (spawn_editor(a->editor, a->logmsg_path) == -1) {
2832 638f9024 2019-05-13 stsp err = got_error_from_errno("failed spawning editor");
2833 33ad4cbe 2019-05-12 jcs goto done;
2834 33ad4cbe 2019-05-12 jcs }
2835 33ad4cbe 2019-05-12 jcs
2836 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st2) == -1) {
2837 638f9024 2019-05-13 stsp err = got_error_from_errno("stat");
2838 33ad4cbe 2019-05-12 jcs goto done;
2839 33ad4cbe 2019-05-12 jcs }
2840 33ad4cbe 2019-05-12 jcs
2841 33ad4cbe 2019-05-12 jcs if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size) {
2842 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2843 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2844 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2845 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2846 33ad4cbe 2019-05-12 jcs "no changes made to commit message, aborting");
2847 33ad4cbe 2019-05-12 jcs goto done;
2848 33ad4cbe 2019-05-12 jcs }
2849 33ad4cbe 2019-05-12 jcs
2850 33ad4cbe 2019-05-12 jcs *logmsg = malloc(st2.st_size + 1);
2851 fcde04d9 2019-05-13 stsp if (*logmsg == NULL) {
2852 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
2853 fcde04d9 2019-05-13 stsp goto done;
2854 fcde04d9 2019-05-13 stsp }
2855 cc79381d 2019-05-22 stsp (*logmsg)[0] = '\0';
2856 33ad4cbe 2019-05-12 jcs len = 0;
2857 33ad4cbe 2019-05-12 jcs
2858 e0870e44 2019-05-13 stsp fp = fopen(a->logmsg_path, "r");
2859 d4592c7c 2019-05-22 stsp if (fp == NULL) {
2860 d4592c7c 2019-05-22 stsp err = got_error_from_errno("fopen");
2861 d4592c7c 2019-05-22 stsp goto done;
2862 d4592c7c 2019-05-22 stsp }
2863 33ad4cbe 2019-05-12 jcs while (fgets(buf, sizeof(buf), fp) != NULL) {
2864 e0870e44 2019-05-13 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
2865 e0870e44 2019-05-13 stsp content_changed = 1;
2866 33ad4cbe 2019-05-12 jcs if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
2867 78527a0a 2019-05-22 stsp continue; /* remove comments and leading empty lines */
2868 33ad4cbe 2019-05-12 jcs len = strlcat(*logmsg, buf, st2.st_size);
2869 33ad4cbe 2019-05-12 jcs }
2870 33ad4cbe 2019-05-12 jcs fclose(fp);
2871 33ad4cbe 2019-05-12 jcs
2872 33ad4cbe 2019-05-12 jcs while (len > 0 && (*logmsg)[len - 1] == '\n') {
2873 33ad4cbe 2019-05-12 jcs (*logmsg)[len - 1] = '\0';
2874 33ad4cbe 2019-05-12 jcs len--;
2875 33ad4cbe 2019-05-12 jcs }
2876 33ad4cbe 2019-05-12 jcs
2877 e0870e44 2019-05-13 stsp if (len == 0 || !content_changed) {
2878 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2879 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2880 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2881 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2882 33ad4cbe 2019-05-12 jcs "commit message cannot be empty, aborting");
2883 33ad4cbe 2019-05-12 jcs goto done;
2884 33ad4cbe 2019-05-12 jcs }
2885 33ad4cbe 2019-05-12 jcs done:
2886 76d98825 2019-06-03 stsp free(initial_content);
2887 e0870e44 2019-05-13 stsp free(template);
2888 314a6357 2019-05-13 stsp
2889 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
2890 314a6357 2019-05-13 stsp if (err == NULL)
2891 314a6357 2019-05-13 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path, 0);
2892 33ad4cbe 2019-05-12 jcs return err;
2893 6bad629b 2019-02-04 stsp }
2894 c4296144 2019-05-09 stsp
2895 c4296144 2019-05-09 stsp static const struct got_error *
2896 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
2897 c4296144 2019-05-09 stsp {
2898 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
2899 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
2900 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
2901 c4296144 2019-05-09 stsp char *cwd = NULL, *path = NULL, *id_str = NULL;
2902 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
2903 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
2904 35bd8fed 2019-05-09 stsp const char *got_author = getenv("GOT_AUTHOR");
2905 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg cl_arg;
2906 e2ba3d07 2019-05-13 stsp char *editor = NULL;
2907 7d5807f4 2019-07-11 stsp int ch, rebase_in_progress;
2908 c4296144 2019-05-09 stsp
2909 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
2910 c4296144 2019-05-09 stsp switch (ch) {
2911 c4296144 2019-05-09 stsp case 'm':
2912 c4296144 2019-05-09 stsp logmsg = optarg;
2913 c4296144 2019-05-09 stsp break;
2914 c4296144 2019-05-09 stsp default:
2915 c4296144 2019-05-09 stsp usage_commit();
2916 c4296144 2019-05-09 stsp /* NOTREACHED */
2917 c4296144 2019-05-09 stsp }
2918 c4296144 2019-05-09 stsp }
2919 c4296144 2019-05-09 stsp
2920 c4296144 2019-05-09 stsp argc -= optind;
2921 c4296144 2019-05-09 stsp argv += optind;
2922 c4296144 2019-05-09 stsp
2923 c4296144 2019-05-09 stsp if (argc == 1) {
2924 c4296144 2019-05-09 stsp path = realpath(argv[0], NULL);
2925 c4296144 2019-05-09 stsp if (path == NULL) {
2926 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2927 c4296144 2019-05-09 stsp goto done;
2928 c4296144 2019-05-09 stsp }
2929 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2930 c4296144 2019-05-09 stsp } else if (argc != 0)
2931 c4296144 2019-05-09 stsp usage_commit();
2932 c4296144 2019-05-09 stsp
2933 35bd8fed 2019-05-09 stsp if (got_author == NULL) {
2934 35bd8fed 2019-05-09 stsp /* TODO: Look current user up in password database */
2935 35bd8fed 2019-05-09 stsp error = got_error(GOT_ERR_COMMIT_NO_AUTHOR);
2936 35bd8fed 2019-05-09 stsp goto done;
2937 35bd8fed 2019-05-09 stsp }
2938 c4296144 2019-05-09 stsp
2939 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
2940 c4296144 2019-05-09 stsp if (cwd == NULL) {
2941 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2942 c4296144 2019-05-09 stsp goto done;
2943 c4296144 2019-05-09 stsp }
2944 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
2945 7d5807f4 2019-07-11 stsp if (error)
2946 7d5807f4 2019-07-11 stsp goto done;
2947 7d5807f4 2019-07-11 stsp
2948 7d5807f4 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
2949 c4296144 2019-05-09 stsp if (error)
2950 7d5807f4 2019-07-11 stsp goto done;
2951 7d5807f4 2019-07-11 stsp if (rebase_in_progress) {
2952 7d5807f4 2019-07-11 stsp error = got_error(GOT_ERR_REBASING);
2953 c4296144 2019-05-09 stsp goto done;
2954 7d5807f4 2019-07-11 stsp }
2955 c4296144 2019-05-09 stsp
2956 c4296144 2019-05-09 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2957 c4296144 2019-05-09 stsp if (error != NULL)
2958 c4296144 2019-05-09 stsp goto done;
2959 c4296144 2019-05-09 stsp
2960 314a6357 2019-05-13 stsp /*
2961 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
2962 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
2963 314a6357 2019-05-13 stsp */
2964 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
2965 314a6357 2019-05-13 stsp error = get_editor(&editor);
2966 314a6357 2019-05-13 stsp else
2967 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2968 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2969 c4296144 2019-05-09 stsp if (error)
2970 c4296144 2019-05-09 stsp goto done;
2971 c4296144 2019-05-09 stsp
2972 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
2973 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
2974 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
2975 76d98825 2019-06-03 stsp cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
2976 76d98825 2019-06-03 stsp if (strncmp(cl_arg.branch_name, "refs/", 5) == 0)
2977 76d98825 2019-06-03 stsp cl_arg.branch_name += 5;
2978 76d98825 2019-06-03 stsp if (strncmp(cl_arg.branch_name, "heads/", 6) == 0)
2979 76d98825 2019-06-03 stsp cl_arg.branch_name += 6;
2980 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
2981 e0870e44 2019-05-13 stsp cl_arg.logmsg_path = NULL;
2982 35bd8fed 2019-05-09 stsp error = got_worktree_commit(&id, worktree, path, got_author, NULL,
2983 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
2984 e0870e44 2019-05-13 stsp if (error) {
2985 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2986 e0870e44 2019-05-13 stsp fprintf(stderr, "%s: log message preserved in %s\n",
2987 e0870e44 2019-05-13 stsp getprogname(), cl_arg.logmsg_path);
2988 c4296144 2019-05-09 stsp goto done;
2989 e0870e44 2019-05-13 stsp }
2990 c4296144 2019-05-09 stsp
2991 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2992 e0870e44 2019-05-13 stsp unlink(cl_arg.logmsg_path);
2993 e0870e44 2019-05-13 stsp
2994 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
2995 c4296144 2019-05-09 stsp if (error)
2996 c4296144 2019-05-09 stsp goto done;
2997 a7648d7a 2019-06-02 stsp printf("Created commit %s\n", id_str);
2998 c4296144 2019-05-09 stsp done:
2999 c4296144 2019-05-09 stsp if (repo)
3000 c4296144 2019-05-09 stsp got_repo_close(repo);
3001 c4296144 2019-05-09 stsp if (worktree)
3002 c4296144 2019-05-09 stsp got_worktree_close(worktree);
3003 c4296144 2019-05-09 stsp free(path);
3004 c4296144 2019-05-09 stsp free(cwd);
3005 c4296144 2019-05-09 stsp free(id_str);
3006 e2ba3d07 2019-05-13 stsp free(editor);
3007 234035bc 2019-06-01 stsp return error;
3008 234035bc 2019-06-01 stsp }
3009 234035bc 2019-06-01 stsp
3010 234035bc 2019-06-01 stsp __dead static void
3011 234035bc 2019-06-01 stsp usage_cherrypick(void)
3012 234035bc 2019-06-01 stsp {
3013 234035bc 2019-06-01 stsp fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
3014 234035bc 2019-06-01 stsp exit(1);
3015 234035bc 2019-06-01 stsp }
3016 234035bc 2019-06-01 stsp
3017 234035bc 2019-06-01 stsp static const struct got_error *
3018 234035bc 2019-06-01 stsp cmd_cherrypick(int argc, char *argv[])
3019 234035bc 2019-06-01 stsp {
3020 234035bc 2019-06-01 stsp const struct got_error *error = NULL;
3021 234035bc 2019-06-01 stsp struct got_worktree *worktree = NULL;
3022 234035bc 2019-06-01 stsp struct got_repository *repo = NULL;
3023 234035bc 2019-06-01 stsp char *cwd = NULL, *commit_id_str = NULL;
3024 234035bc 2019-06-01 stsp struct got_object_id *commit_id = NULL;
3025 234035bc 2019-06-01 stsp struct got_commit_object *commit = NULL;
3026 234035bc 2019-06-01 stsp struct got_object_qid *pid;
3027 234035bc 2019-06-01 stsp struct got_reference *head_ref = NULL;
3028 234035bc 2019-06-01 stsp int ch, did_something = 0;
3029 234035bc 2019-06-01 stsp
3030 234035bc 2019-06-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
3031 234035bc 2019-06-01 stsp switch (ch) {
3032 234035bc 2019-06-01 stsp default:
3033 234035bc 2019-06-01 stsp usage_cherrypick();
3034 234035bc 2019-06-01 stsp /* NOTREACHED */
3035 234035bc 2019-06-01 stsp }
3036 234035bc 2019-06-01 stsp }
3037 234035bc 2019-06-01 stsp
3038 234035bc 2019-06-01 stsp argc -= optind;
3039 234035bc 2019-06-01 stsp argv += optind;
3040 234035bc 2019-06-01 stsp
3041 234035bc 2019-06-01 stsp if (argc != 1)
3042 234035bc 2019-06-01 stsp usage_cherrypick();
3043 234035bc 2019-06-01 stsp
3044 234035bc 2019-06-01 stsp cwd = getcwd(NULL, 0);
3045 234035bc 2019-06-01 stsp if (cwd == NULL) {
3046 234035bc 2019-06-01 stsp error = got_error_from_errno("getcwd");
3047 234035bc 2019-06-01 stsp goto done;
3048 234035bc 2019-06-01 stsp }
3049 234035bc 2019-06-01 stsp error = got_worktree_open(&worktree, cwd);
3050 234035bc 2019-06-01 stsp if (error)
3051 234035bc 2019-06-01 stsp goto done;
3052 234035bc 2019-06-01 stsp
3053 234035bc 2019-06-01 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3054 234035bc 2019-06-01 stsp if (error != NULL)
3055 234035bc 2019-06-01 stsp goto done;
3056 234035bc 2019-06-01 stsp
3057 234035bc 2019-06-01 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3058 234035bc 2019-06-01 stsp got_worktree_get_root_path(worktree), 0);
3059 234035bc 2019-06-01 stsp if (error)
3060 234035bc 2019-06-01 stsp goto done;
3061 234035bc 2019-06-01 stsp
3062 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
3063 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
3064 234035bc 2019-06-01 stsp if (error != NULL) {
3065 234035bc 2019-06-01 stsp struct got_reference *ref;
3066 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
3067 234035bc 2019-06-01 stsp goto done;
3068 234035bc 2019-06-01 stsp error = got_ref_open(&ref, repo, argv[0], 0);
3069 234035bc 2019-06-01 stsp if (error != NULL)
3070 234035bc 2019-06-01 stsp goto done;
3071 234035bc 2019-06-01 stsp error = got_ref_resolve(&commit_id, repo, ref);
3072 234035bc 2019-06-01 stsp got_ref_close(ref);
3073 234035bc 2019-06-01 stsp if (error != NULL)
3074 234035bc 2019-06-01 stsp goto done;
3075 234035bc 2019-06-01 stsp }
3076 234035bc 2019-06-01 stsp error = got_object_id_str(&commit_id_str, commit_id);
3077 234035bc 2019-06-01 stsp if (error)
3078 234035bc 2019-06-01 stsp goto done;
3079 234035bc 2019-06-01 stsp
3080 234035bc 2019-06-01 stsp error = got_ref_open(&head_ref, repo,
3081 234035bc 2019-06-01 stsp got_worktree_get_head_ref_name(worktree), 0);
3082 234035bc 2019-06-01 stsp if (error != NULL)
3083 234035bc 2019-06-01 stsp goto done;
3084 234035bc 2019-06-01 stsp
3085 234035bc 2019-06-01 stsp error = check_same_branch(commit_id, head_ref, repo);
3086 234035bc 2019-06-01 stsp if (error) {
3087 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_ANCESTRY)
3088 234035bc 2019-06-01 stsp goto done;
3089 234035bc 2019-06-01 stsp error = NULL;
3090 234035bc 2019-06-01 stsp } else {
3091 234035bc 2019-06-01 stsp error = got_error(GOT_ERR_SAME_BRANCH);
3092 234035bc 2019-06-01 stsp goto done;
3093 234035bc 2019-06-01 stsp }
3094 234035bc 2019-06-01 stsp
3095 234035bc 2019-06-01 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3096 234035bc 2019-06-01 stsp if (error)
3097 234035bc 2019-06-01 stsp goto done;
3098 234035bc 2019-06-01 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3099 03415a1a 2019-06-02 stsp error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
3100 03415a1a 2019-06-02 stsp commit_id, repo, update_progress, &did_something, check_cancelled,
3101 03415a1a 2019-06-02 stsp NULL);
3102 234035bc 2019-06-01 stsp if (error != NULL)
3103 234035bc 2019-06-01 stsp goto done;
3104 234035bc 2019-06-01 stsp
3105 234035bc 2019-06-01 stsp if (did_something)
3106 a7648d7a 2019-06-02 stsp printf("Merged commit %s\n", commit_id_str);
3107 234035bc 2019-06-01 stsp done:
3108 234035bc 2019-06-01 stsp if (commit)
3109 234035bc 2019-06-01 stsp got_object_commit_close(commit);
3110 234035bc 2019-06-01 stsp free(commit_id_str);
3111 234035bc 2019-06-01 stsp if (head_ref)
3112 234035bc 2019-06-01 stsp got_ref_close(head_ref);
3113 234035bc 2019-06-01 stsp if (worktree)
3114 234035bc 2019-06-01 stsp got_worktree_close(worktree);
3115 234035bc 2019-06-01 stsp if (repo)
3116 234035bc 2019-06-01 stsp got_repo_close(repo);
3117 c4296144 2019-05-09 stsp return error;
3118 c4296144 2019-05-09 stsp }
3119 5ef14e63 2019-06-02 stsp
3120 5ef14e63 2019-06-02 stsp __dead static void
3121 5ef14e63 2019-06-02 stsp usage_backout(void)
3122 5ef14e63 2019-06-02 stsp {
3123 5ef14e63 2019-06-02 stsp fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
3124 5ef14e63 2019-06-02 stsp exit(1);
3125 5ef14e63 2019-06-02 stsp }
3126 5ef14e63 2019-06-02 stsp
3127 5ef14e63 2019-06-02 stsp static const struct got_error *
3128 5ef14e63 2019-06-02 stsp cmd_backout(int argc, char *argv[])
3129 5ef14e63 2019-06-02 stsp {
3130 5ef14e63 2019-06-02 stsp const struct got_error *error = NULL;
3131 5ef14e63 2019-06-02 stsp struct got_worktree *worktree = NULL;
3132 5ef14e63 2019-06-02 stsp struct got_repository *repo = NULL;
3133 5ef14e63 2019-06-02 stsp char *cwd = NULL, *commit_id_str = NULL;
3134 5ef14e63 2019-06-02 stsp struct got_object_id *commit_id = NULL;
3135 5ef14e63 2019-06-02 stsp struct got_commit_object *commit = NULL;
3136 5ef14e63 2019-06-02 stsp struct got_object_qid *pid;
3137 5ef14e63 2019-06-02 stsp struct got_reference *head_ref = NULL;
3138 5ef14e63 2019-06-02 stsp int ch, did_something = 0;
3139 5ef14e63 2019-06-02 stsp
3140 5ef14e63 2019-06-02 stsp while ((ch = getopt(argc, argv, "")) != -1) {
3141 5ef14e63 2019-06-02 stsp switch (ch) {
3142 5ef14e63 2019-06-02 stsp default:
3143 5ef14e63 2019-06-02 stsp usage_backout();
3144 5ef14e63 2019-06-02 stsp /* NOTREACHED */
3145 5ef14e63 2019-06-02 stsp }
3146 5ef14e63 2019-06-02 stsp }
3147 5ef14e63 2019-06-02 stsp
3148 5ef14e63 2019-06-02 stsp argc -= optind;
3149 5ef14e63 2019-06-02 stsp argv += optind;
3150 5ef14e63 2019-06-02 stsp
3151 5ef14e63 2019-06-02 stsp if (argc != 1)
3152 5ef14e63 2019-06-02 stsp usage_backout();
3153 5ef14e63 2019-06-02 stsp
3154 5ef14e63 2019-06-02 stsp cwd = getcwd(NULL, 0);
3155 5ef14e63 2019-06-02 stsp if (cwd == NULL) {
3156 5ef14e63 2019-06-02 stsp error = got_error_from_errno("getcwd");
3157 5ef14e63 2019-06-02 stsp goto done;
3158 5ef14e63 2019-06-02 stsp }
3159 5ef14e63 2019-06-02 stsp error = got_worktree_open(&worktree, cwd);
3160 5ef14e63 2019-06-02 stsp if (error)
3161 5ef14e63 2019-06-02 stsp goto done;
3162 5ef14e63 2019-06-02 stsp
3163 5ef14e63 2019-06-02 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3164 5ef14e63 2019-06-02 stsp if (error != NULL)
3165 5ef14e63 2019-06-02 stsp goto done;
3166 5ef14e63 2019-06-02 stsp
3167 5ef14e63 2019-06-02 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3168 5ef14e63 2019-06-02 stsp got_worktree_get_root_path(worktree), 0);
3169 5ef14e63 2019-06-02 stsp if (error)
3170 5ef14e63 2019-06-02 stsp goto done;
3171 5ef14e63 2019-06-02 stsp
3172 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
3173 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
3174 5ef14e63 2019-06-02 stsp if (error != NULL) {
3175 5ef14e63 2019-06-02 stsp struct got_reference *ref;
3176 5ef14e63 2019-06-02 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
3177 5ef14e63 2019-06-02 stsp goto done;
3178 5ef14e63 2019-06-02 stsp error = got_ref_open(&ref, repo, argv[0], 0);
3179 5ef14e63 2019-06-02 stsp if (error != NULL)
3180 5ef14e63 2019-06-02 stsp goto done;
3181 5ef14e63 2019-06-02 stsp error = got_ref_resolve(&commit_id, repo, ref);
3182 5ef14e63 2019-06-02 stsp got_ref_close(ref);
3183 5ef14e63 2019-06-02 stsp if (error != NULL)
3184 5ef14e63 2019-06-02 stsp goto done;
3185 5ef14e63 2019-06-02 stsp }
3186 5ef14e63 2019-06-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
3187 5ef14e63 2019-06-02 stsp if (error)
3188 5ef14e63 2019-06-02 stsp goto done;
3189 5ef14e63 2019-06-02 stsp
3190 5ef14e63 2019-06-02 stsp error = got_ref_open(&head_ref, repo,
3191 5ef14e63 2019-06-02 stsp got_worktree_get_head_ref_name(worktree), 0);
3192 5ef14e63 2019-06-02 stsp if (error != NULL)
3193 5ef14e63 2019-06-02 stsp goto done;
3194 5ef14e63 2019-06-02 stsp
3195 5ef14e63 2019-06-02 stsp error = check_same_branch(commit_id, head_ref, repo);
3196 5ef14e63 2019-06-02 stsp if (error)
3197 5ef14e63 2019-06-02 stsp goto done;
3198 5ef14e63 2019-06-02 stsp
3199 5ef14e63 2019-06-02 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3200 5ef14e63 2019-06-02 stsp if (error)
3201 5ef14e63 2019-06-02 stsp goto done;
3202 5ef14e63 2019-06-02 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3203 5ef14e63 2019-06-02 stsp if (pid == NULL) {
3204 5ef14e63 2019-06-02 stsp error = got_error(GOT_ERR_ROOT_COMMIT);
3205 5ef14e63 2019-06-02 stsp goto done;
3206 5ef14e63 2019-06-02 stsp }
3207 5ef14e63 2019-06-02 stsp
3208 5ef14e63 2019-06-02 stsp error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
3209 5ef14e63 2019-06-02 stsp update_progress, &did_something, check_cancelled, NULL);
3210 5ef14e63 2019-06-02 stsp if (error != NULL)
3211 5ef14e63 2019-06-02 stsp goto done;
3212 5ef14e63 2019-06-02 stsp
3213 5ef14e63 2019-06-02 stsp if (did_something)
3214 a7648d7a 2019-06-02 stsp printf("Backed out commit %s\n", commit_id_str);
3215 5ef14e63 2019-06-02 stsp done:
3216 5ef14e63 2019-06-02 stsp if (commit)
3217 5ef14e63 2019-06-02 stsp got_object_commit_close(commit);
3218 5ef14e63 2019-06-02 stsp free(commit_id_str);
3219 5ef14e63 2019-06-02 stsp if (head_ref)
3220 5ef14e63 2019-06-02 stsp got_ref_close(head_ref);
3221 818c7501 2019-07-11 stsp if (worktree)
3222 818c7501 2019-07-11 stsp got_worktree_close(worktree);
3223 818c7501 2019-07-11 stsp if (repo)
3224 818c7501 2019-07-11 stsp got_repo_close(repo);
3225 818c7501 2019-07-11 stsp return error;
3226 818c7501 2019-07-11 stsp }
3227 818c7501 2019-07-11 stsp
3228 818c7501 2019-07-11 stsp __dead static void
3229 818c7501 2019-07-11 stsp usage_rebase(void)
3230 818c7501 2019-07-11 stsp {
3231 af54c8f8 2019-07-11 stsp fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
3232 af54c8f8 2019-07-11 stsp getprogname());
3233 818c7501 2019-07-11 stsp exit(1);
3234 818c7501 2019-07-11 stsp }
3235 818c7501 2019-07-11 stsp
3236 818c7501 2019-07-11 stsp static const struct got_error *
3237 818c7501 2019-07-11 stsp show_rebase_progress(struct got_commit_object *commit,
3238 818c7501 2019-07-11 stsp struct got_object_id *old_id, struct got_object_id *new_id)
3239 818c7501 2019-07-11 stsp {
3240 818c7501 2019-07-11 stsp const struct got_error *err;
3241 818c7501 2019-07-11 stsp char *old_id_str = NULL, *new_id_str = NULL;
3242 818c7501 2019-07-11 stsp char *logmsg0 = NULL, *logmsg, *nl;
3243 818c7501 2019-07-11 stsp size_t len;
3244 818c7501 2019-07-11 stsp
3245 818c7501 2019-07-11 stsp err = got_object_id_str(&old_id_str, old_id);
3246 818c7501 2019-07-11 stsp if (err)
3247 818c7501 2019-07-11 stsp goto done;
3248 818c7501 2019-07-11 stsp
3249 ff0d2220 2019-07-11 stsp if (new_id) {
3250 ff0d2220 2019-07-11 stsp err = got_object_id_str(&new_id_str, new_id);
3251 ff0d2220 2019-07-11 stsp if (err)
3252 ff0d2220 2019-07-11 stsp goto done;
3253 ff0d2220 2019-07-11 stsp }
3254 818c7501 2019-07-11 stsp
3255 818c7501 2019-07-11 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
3256 818c7501 2019-07-11 stsp if (logmsg0 == NULL) {
3257 818c7501 2019-07-11 stsp err = got_error_from_errno("strdup");
3258 818c7501 2019-07-11 stsp goto done;
3259 818c7501 2019-07-11 stsp }
3260 818c7501 2019-07-11 stsp logmsg = logmsg0;
3261 818c7501 2019-07-11 stsp
3262 818c7501 2019-07-11 stsp while (isspace(logmsg[0]))
3263 818c7501 2019-07-11 stsp logmsg++;
3264 818c7501 2019-07-11 stsp
3265 818c7501 2019-07-11 stsp old_id_str[12] = '\0';
3266 ff0d2220 2019-07-11 stsp if (new_id_str)
3267 ff0d2220 2019-07-11 stsp new_id_str[12] = '\0';
3268 818c7501 2019-07-11 stsp len = strlen(logmsg);
3269 818c7501 2019-07-11 stsp if (len > 42)
3270 818c7501 2019-07-11 stsp len = 42;
3271 818c7501 2019-07-11 stsp logmsg[len] = '\0';
3272 818c7501 2019-07-11 stsp nl = strchr(logmsg, '\n');
3273 818c7501 2019-07-11 stsp if (nl)
3274 818c7501 2019-07-11 stsp *nl = '\0';
3275 ff0d2220 2019-07-11 stsp printf("%s -> %s: %s\n", old_id_str,
3276 ff0d2220 2019-07-11 stsp new_id_str ? new_id_str : "no-op change", logmsg);
3277 818c7501 2019-07-11 stsp done:
3278 818c7501 2019-07-11 stsp free(old_id_str);
3279 818c7501 2019-07-11 stsp free(new_id_str);
3280 818c7501 2019-07-11 stsp free(logmsg0);
3281 818c7501 2019-07-11 stsp return err;
3282 818c7501 2019-07-11 stsp }
3283 818c7501 2019-07-11 stsp
3284 818c7501 2019-07-11 stsp static void
3285 818c7501 2019-07-11 stsp rebase_progress(void *arg, unsigned char status, const char *path)
3286 818c7501 2019-07-11 stsp {
3287 818c7501 2019-07-11 stsp unsigned char *rebase_status = arg;
3288 818c7501 2019-07-11 stsp
3289 818c7501 2019-07-11 stsp while (path[0] == '/')
3290 818c7501 2019-07-11 stsp path++;
3291 818c7501 2019-07-11 stsp printf("%c %s\n", status, path);
3292 818c7501 2019-07-11 stsp
3293 818c7501 2019-07-11 stsp if (*rebase_status == GOT_STATUS_CONFLICT)
3294 818c7501 2019-07-11 stsp return;
3295 818c7501 2019-07-11 stsp if (status == GOT_STATUS_CONFLICT || status == GOT_STATUS_MERGE)
3296 818c7501 2019-07-11 stsp *rebase_status = status;
3297 818c7501 2019-07-11 stsp }
3298 818c7501 2019-07-11 stsp
3299 818c7501 2019-07-11 stsp static const struct got_error *
3300 818c7501 2019-07-11 stsp rebase_complete(struct got_worktree *worktree, struct got_reference *branch,
3301 818c7501 2019-07-11 stsp struct got_reference *new_base_branch, struct got_reference *tmp_branch,
3302 818c7501 2019-07-11 stsp struct got_repository *repo)
3303 818c7501 2019-07-11 stsp {
3304 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n", got_ref_get_name(branch));
3305 818c7501 2019-07-11 stsp return got_worktree_rebase_complete(worktree,
3306 818c7501 2019-07-11 stsp new_base_branch, tmp_branch, branch, repo);
3307 818c7501 2019-07-11 stsp }
3308 818c7501 2019-07-11 stsp
3309 818c7501 2019-07-11 stsp static const struct got_error *
3310 ff0d2220 2019-07-11 stsp rebase_commit(struct got_worktree *worktree, struct got_reference *tmp_branch,
3311 ff0d2220 2019-07-11 stsp struct got_object_id *commit_id, struct got_repository *repo)
3312 ff0d2220 2019-07-11 stsp {
3313 ff0d2220 2019-07-11 stsp const struct got_error *error;
3314 ff0d2220 2019-07-11 stsp struct got_commit_object *commit;
3315 ff0d2220 2019-07-11 stsp struct got_object_id *new_commit_id;
3316 ff0d2220 2019-07-11 stsp
3317 ff0d2220 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3318 ff0d2220 2019-07-11 stsp if (error)
3319 ff0d2220 2019-07-11 stsp return error;
3320 ff0d2220 2019-07-11 stsp
3321 ff0d2220 2019-07-11 stsp error = got_worktree_rebase_commit(&new_commit_id, worktree,
3322 ff0d2220 2019-07-11 stsp tmp_branch, commit, commit_id, repo);
3323 ff0d2220 2019-07-11 stsp if (error) {
3324 ff0d2220 2019-07-11 stsp if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
3325 ff0d2220 2019-07-11 stsp goto done;
3326 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, NULL);
3327 ff0d2220 2019-07-11 stsp } else {
3328 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, new_commit_id);
3329 ff0d2220 2019-07-11 stsp free(new_commit_id);
3330 ff0d2220 2019-07-11 stsp }
3331 ff0d2220 2019-07-11 stsp done:
3332 ff0d2220 2019-07-11 stsp got_object_commit_close(commit);
3333 ff0d2220 2019-07-11 stsp return error;
3334 64c6d990 2019-07-11 stsp }
3335 64c6d990 2019-07-11 stsp
3336 64c6d990 2019-07-11 stsp struct check_path_prefix_arg {
3337 64c6d990 2019-07-11 stsp const char *path_prefix;
3338 64c6d990 2019-07-11 stsp size_t len;
3339 64c6d990 2019-07-11 stsp };
3340 64c6d990 2019-07-11 stsp
3341 64c6d990 2019-07-11 stsp static const struct got_error *
3342 64c6d990 2019-07-11 stsp check_path_prefix(void *arg, struct got_blob_object *blob1,
3343 64c6d990 2019-07-11 stsp struct got_blob_object *blob2, struct got_object_id *id1,
3344 64c6d990 2019-07-11 stsp struct got_object_id *id2, const char *path1, const char *path2,
3345 64c6d990 2019-07-11 stsp struct got_repository *repo)
3346 64c6d990 2019-07-11 stsp {
3347 64c6d990 2019-07-11 stsp struct check_path_prefix_arg *a = arg;
3348 64c6d990 2019-07-11 stsp
3349 64c6d990 2019-07-11 stsp if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
3350 64c6d990 2019-07-11 stsp (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
3351 64c6d990 2019-07-11 stsp return got_error(GOT_ERR_REBASE_PATH);
3352 64c6d990 2019-07-11 stsp
3353 64c6d990 2019-07-11 stsp return NULL;
3354 64c6d990 2019-07-11 stsp }
3355 64c6d990 2019-07-11 stsp
3356 64c6d990 2019-07-11 stsp static const struct got_error *
3357 64c6d990 2019-07-11 stsp rebase_check_path_prefix(struct got_object_id *parent_id,
3358 64c6d990 2019-07-11 stsp struct got_object_id *commit_id, const char *path_prefix,
3359 64c6d990 2019-07-11 stsp struct got_repository *repo)
3360 64c6d990 2019-07-11 stsp {
3361 64c6d990 2019-07-11 stsp const struct got_error *err;
3362 64c6d990 2019-07-11 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
3363 64c6d990 2019-07-11 stsp struct got_commit_object *commit = NULL, *parent_commit = NULL;
3364 64c6d990 2019-07-11 stsp struct check_path_prefix_arg cpp_arg;
3365 64c6d990 2019-07-11 stsp
3366 64c6d990 2019-07-11 stsp if (got_path_is_root_dir(path_prefix))
3367 64c6d990 2019-07-11 stsp return NULL;
3368 64c6d990 2019-07-11 stsp
3369 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
3370 64c6d990 2019-07-11 stsp if (err)
3371 64c6d990 2019-07-11 stsp goto done;
3372 64c6d990 2019-07-11 stsp
3373 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&parent_commit, repo, parent_id);
3374 64c6d990 2019-07-11 stsp if (err)
3375 64c6d990 2019-07-11 stsp goto done;
3376 64c6d990 2019-07-11 stsp
3377 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree1, repo,
3378 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(parent_commit));
3379 64c6d990 2019-07-11 stsp if (err)
3380 64c6d990 2019-07-11 stsp goto done;
3381 64c6d990 2019-07-11 stsp
3382 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree2, repo,
3383 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(commit));
3384 64c6d990 2019-07-11 stsp if (err)
3385 64c6d990 2019-07-11 stsp goto done;
3386 64c6d990 2019-07-11 stsp
3387 64c6d990 2019-07-11 stsp cpp_arg.path_prefix = path_prefix;
3388 64c6d990 2019-07-11 stsp cpp_arg.len = strlen(path_prefix);
3389 64c6d990 2019-07-11 stsp err = got_diff_tree(tree1, tree2, "", "", repo, check_path_prefix,
3390 64c6d990 2019-07-11 stsp &cpp_arg);
3391 64c6d990 2019-07-11 stsp done:
3392 64c6d990 2019-07-11 stsp if (tree1)
3393 64c6d990 2019-07-11 stsp got_object_tree_close(tree1);
3394 64c6d990 2019-07-11 stsp if (tree2)
3395 64c6d990 2019-07-11 stsp got_object_tree_close(tree2);
3396 64c6d990 2019-07-11 stsp if (commit)
3397 64c6d990 2019-07-11 stsp got_object_commit_close(commit);
3398 64c6d990 2019-07-11 stsp if (parent_commit)
3399 64c6d990 2019-07-11 stsp got_object_commit_close(parent_commit);
3400 64c6d990 2019-07-11 stsp return err;
3401 ff0d2220 2019-07-11 stsp }
3402 ff0d2220 2019-07-11 stsp
3403 ff0d2220 2019-07-11 stsp static const struct got_error *
3404 818c7501 2019-07-11 stsp cmd_rebase(int argc, char *argv[])
3405 818c7501 2019-07-11 stsp {
3406 818c7501 2019-07-11 stsp const struct got_error *error = NULL;
3407 818c7501 2019-07-11 stsp struct got_worktree *worktree = NULL;
3408 818c7501 2019-07-11 stsp struct got_repository *repo = NULL;
3409 818c7501 2019-07-11 stsp char *cwd = NULL;
3410 818c7501 2019-07-11 stsp struct got_reference *branch = NULL;
3411 818c7501 2019-07-11 stsp struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
3412 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL, *parent_id = NULL;
3413 818c7501 2019-07-11 stsp struct got_object_id *resume_commit_id = NULL;
3414 818c7501 2019-07-11 stsp struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
3415 818c7501 2019-07-11 stsp struct got_commit_graph *graph = NULL;
3416 818c7501 2019-07-11 stsp struct got_commit_object *commit = NULL;
3417 818c7501 2019-07-11 stsp int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
3418 818c7501 2019-07-11 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
3419 818c7501 2019-07-11 stsp struct got_object_id_queue commits;
3420 818c7501 2019-07-11 stsp const struct got_object_id_queue *parent_ids;
3421 818c7501 2019-07-11 stsp struct got_object_qid *qid, *pid;
3422 818c7501 2019-07-11 stsp
3423 818c7501 2019-07-11 stsp SIMPLEQ_INIT(&commits);
3424 818c7501 2019-07-11 stsp
3425 818c7501 2019-07-11 stsp while ((ch = getopt(argc, argv, "ac")) != -1) {
3426 818c7501 2019-07-11 stsp switch (ch) {
3427 818c7501 2019-07-11 stsp case 'a':
3428 818c7501 2019-07-11 stsp abort_rebase = 1;
3429 818c7501 2019-07-11 stsp break;
3430 818c7501 2019-07-11 stsp case 'c':
3431 818c7501 2019-07-11 stsp continue_rebase = 1;
3432 818c7501 2019-07-11 stsp break;
3433 818c7501 2019-07-11 stsp default:
3434 818c7501 2019-07-11 stsp usage_rebase();
3435 818c7501 2019-07-11 stsp /* NOTREACHED */
3436 818c7501 2019-07-11 stsp }
3437 818c7501 2019-07-11 stsp }
3438 818c7501 2019-07-11 stsp
3439 818c7501 2019-07-11 stsp argc -= optind;
3440 818c7501 2019-07-11 stsp argv += optind;
3441 818c7501 2019-07-11 stsp
3442 818c7501 2019-07-11 stsp if (abort_rebase && continue_rebase)
3443 818c7501 2019-07-11 stsp usage_rebase();
3444 818c7501 2019-07-11 stsp else if (abort_rebase || continue_rebase) {
3445 818c7501 2019-07-11 stsp if (argc != 0)
3446 818c7501 2019-07-11 stsp usage_rebase();
3447 818c7501 2019-07-11 stsp } else if (argc != 1)
3448 818c7501 2019-07-11 stsp usage_rebase();
3449 818c7501 2019-07-11 stsp
3450 818c7501 2019-07-11 stsp cwd = getcwd(NULL, 0);
3451 818c7501 2019-07-11 stsp if (cwd == NULL) {
3452 818c7501 2019-07-11 stsp error = got_error_from_errno("getcwd");
3453 818c7501 2019-07-11 stsp goto done;
3454 818c7501 2019-07-11 stsp }
3455 818c7501 2019-07-11 stsp error = got_worktree_open(&worktree, cwd);
3456 818c7501 2019-07-11 stsp if (error)
3457 818c7501 2019-07-11 stsp goto done;
3458 818c7501 2019-07-11 stsp
3459 818c7501 2019-07-11 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3460 818c7501 2019-07-11 stsp if (error != NULL)
3461 818c7501 2019-07-11 stsp goto done;
3462 818c7501 2019-07-11 stsp
3463 818c7501 2019-07-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3464 818c7501 2019-07-11 stsp got_worktree_get_root_path(worktree), 0);
3465 818c7501 2019-07-11 stsp if (error)
3466 818c7501 2019-07-11 stsp goto done;
3467 818c7501 2019-07-11 stsp
3468 818c7501 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
3469 818c7501 2019-07-11 stsp if (error)
3470 818c7501 2019-07-11 stsp goto done;
3471 818c7501 2019-07-11 stsp
3472 818c7501 2019-07-11 stsp if (rebase_in_progress && abort_rebase) {
3473 818c7501 2019-07-11 stsp int did_something;
3474 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
3475 818c7501 2019-07-11 stsp &new_base_branch, &tmp_branch, &branch, worktree, repo);
3476 818c7501 2019-07-11 stsp if (error)
3477 818c7501 2019-07-11 stsp goto done;
3478 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n",
3479 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch));
3480 818c7501 2019-07-11 stsp error = got_worktree_rebase_abort(worktree, repo,
3481 818c7501 2019-07-11 stsp new_base_branch, update_progress, &did_something);
3482 818c7501 2019-07-11 stsp if (error)
3483 818c7501 2019-07-11 stsp goto done;
3484 818c7501 2019-07-11 stsp printf("Rebase of %s aborted\n", got_ref_get_name(branch));
3485 818c7501 2019-07-11 stsp goto done; /* nothing else to do */
3486 818c7501 2019-07-11 stsp } else if (abort_rebase) {
3487 818c7501 2019-07-11 stsp error = got_error(GOT_ERR_NOT_REBASING);
3488 818c7501 2019-07-11 stsp goto done;
3489 818c7501 2019-07-11 stsp }
3490 818c7501 2019-07-11 stsp
3491 818c7501 2019-07-11 stsp if (continue_rebase) {
3492 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
3493 818c7501 2019-07-11 stsp &new_base_branch, &tmp_branch, &branch, worktree, repo);
3494 818c7501 2019-07-11 stsp if (error)
3495 818c7501 2019-07-11 stsp goto done;
3496 818c7501 2019-07-11 stsp
3497 ff0d2220 2019-07-11 stsp error = rebase_commit(worktree, tmp_branch, resume_commit_id,
3498 ff0d2220 2019-07-11 stsp repo);
3499 818c7501 2019-07-11 stsp if (error)
3500 818c7501 2019-07-11 stsp goto done;
3501 818c7501 2019-07-11 stsp
3502 ff0d2220 2019-07-11 stsp yca_id = got_object_id_dup(resume_commit_id);
3503 ff0d2220 2019-07-11 stsp if (yca_id == NULL) {
3504 818c7501 2019-07-11 stsp error = got_error_from_errno("got_object_id_dup");
3505 818c7501 2019-07-11 stsp goto done;
3506 818c7501 2019-07-11 stsp }
3507 818c7501 2019-07-11 stsp } else {
3508 818c7501 2019-07-11 stsp error = got_ref_open(&branch, repo, argv[0], 0);
3509 818c7501 2019-07-11 stsp if (error != NULL)
3510 818c7501 2019-07-11 stsp goto done;
3511 818c7501 2019-07-11 stsp
3512 818c7501 2019-07-11 stsp error = check_same_branch(
3513 818c7501 2019-07-11 stsp got_worktree_get_base_commit_id(worktree), branch, repo);
3514 818c7501 2019-07-11 stsp if (error) {
3515 818c7501 2019-07-11 stsp if (error->code != GOT_ERR_ANCESTRY)
3516 818c7501 2019-07-11 stsp goto done;
3517 818c7501 2019-07-11 stsp error = NULL;
3518 818c7501 2019-07-11 stsp } else {
3519 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
3520 818c7501 2019-07-11 stsp "specified branch resolves to a commit which "
3521 818c7501 2019-07-11 stsp "is already contained in work tree's branch");
3522 818c7501 2019-07-11 stsp goto done;
3523 818c7501 2019-07-11 stsp }
3524 ff0d2220 2019-07-11 stsp }
3525 818c7501 2019-07-11 stsp
3526 ff0d2220 2019-07-11 stsp error = got_ref_resolve(&branch_head_commit_id, repo, branch);
3527 ff0d2220 2019-07-11 stsp if (error)
3528 ff0d2220 2019-07-11 stsp goto done;
3529 ff0d2220 2019-07-11 stsp
3530 ff0d2220 2019-07-11 stsp if (!continue_rebase) {
3531 818c7501 2019-07-11 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
3532 818c7501 2019-07-11 stsp got_worktree_get_base_commit_id(worktree),
3533 818c7501 2019-07-11 stsp branch_head_commit_id, repo);
3534 818c7501 2019-07-11 stsp if (error)
3535 818c7501 2019-07-11 stsp goto done;
3536 818c7501 2019-07-11 stsp if (yca_id == NULL) {
3537 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
3538 818c7501 2019-07-11 stsp "specified branch shares no common ancestry "
3539 818c7501 2019-07-11 stsp "with work tree's branch");
3540 818c7501 2019-07-11 stsp goto done;
3541 818c7501 2019-07-11 stsp }
3542 818c7501 2019-07-11 stsp
3543 818c7501 2019-07-11 stsp error = got_worktree_rebase_prepare(&new_base_branch,
3544 818c7501 2019-07-11 stsp &tmp_branch, worktree, branch, repo);
3545 818c7501 2019-07-11 stsp if (error)
3546 818c7501 2019-07-11 stsp goto done;
3547 818c7501 2019-07-11 stsp }
3548 818c7501 2019-07-11 stsp
3549 ff0d2220 2019-07-11 stsp commit_id = branch_head_commit_id;
3550 818c7501 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3551 818c7501 2019-07-11 stsp if (error)
3552 818c7501 2019-07-11 stsp goto done;
3553 818c7501 2019-07-11 stsp
3554 818c7501 2019-07-11 stsp error = got_commit_graph_open(&graph, commit_id, "/", 1, repo);
3555 818c7501 2019-07-11 stsp if (error)
3556 818c7501 2019-07-11 stsp goto done;
3557 818c7501 2019-07-11 stsp parent_ids = got_object_commit_get_parent_ids(commit);
3558 818c7501 2019-07-11 stsp pid = SIMPLEQ_FIRST(parent_ids);
3559 818c7501 2019-07-11 stsp error = got_commit_graph_iter_start(graph, pid->id, repo);
3560 818c7501 2019-07-11 stsp got_object_commit_close(commit);
3561 818c7501 2019-07-11 stsp commit = NULL;
3562 818c7501 2019-07-11 stsp if (error)
3563 818c7501 2019-07-11 stsp goto done;
3564 818c7501 2019-07-11 stsp while (got_object_id_cmp(commit_id, yca_id) != 0) {
3565 818c7501 2019-07-11 stsp error = got_commit_graph_iter_next(&parent_id, graph);
3566 818c7501 2019-07-11 stsp if (error) {
3567 818c7501 2019-07-11 stsp if (error->code == GOT_ERR_ITER_COMPLETED) {
3568 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
3569 818c7501 2019-07-11 stsp "ran out of commits to rebase before "
3570 818c7501 2019-07-11 stsp "youngest common ancestor commit has "
3571 818c7501 2019-07-11 stsp "been reached?!?");
3572 818c7501 2019-07-11 stsp goto done;
3573 818c7501 2019-07-11 stsp } else if (error->code != GOT_ERR_ITER_NEED_MORE)
3574 818c7501 2019-07-11 stsp goto done;
3575 818c7501 2019-07-11 stsp error = got_commit_graph_fetch_commits(graph, 1, repo);
3576 818c7501 2019-07-11 stsp if (error)
3577 818c7501 2019-07-11 stsp goto done;
3578 818c7501 2019-07-11 stsp } else {
3579 64c6d990 2019-07-11 stsp error = rebase_check_path_prefix(parent_id, commit_id,
3580 64c6d990 2019-07-11 stsp got_worktree_get_path_prefix(worktree), repo);
3581 64c6d990 2019-07-11 stsp if (error)
3582 64c6d990 2019-07-11 stsp goto done;
3583 64c6d990 2019-07-11 stsp
3584 818c7501 2019-07-11 stsp error = got_object_qid_alloc(&qid, commit_id);
3585 818c7501 2019-07-11 stsp if (error)
3586 818c7501 2019-07-11 stsp goto done;
3587 818c7501 2019-07-11 stsp SIMPLEQ_INSERT_HEAD(&commits, qid, entry);
3588 818c7501 2019-07-11 stsp commit_id = parent_id;
3589 818c7501 2019-07-11 stsp }
3590 818c7501 2019-07-11 stsp }
3591 818c7501 2019-07-11 stsp
3592 818c7501 2019-07-11 stsp if (SIMPLEQ_EMPTY(&commits)) {
3593 ff0d2220 2019-07-11 stsp if (continue_rebase)
3594 ff0d2220 2019-07-11 stsp error = rebase_complete(worktree, branch,
3595 ff0d2220 2019-07-11 stsp new_base_branch, tmp_branch, repo);
3596 ff0d2220 2019-07-11 stsp else
3597 ff0d2220 2019-07-11 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
3598 818c7501 2019-07-11 stsp goto done;
3599 818c7501 2019-07-11 stsp }
3600 818c7501 2019-07-11 stsp
3601 818c7501 2019-07-11 stsp pid = NULL;
3602 818c7501 2019-07-11 stsp SIMPLEQ_FOREACH(qid, &commits, entry) {
3603 818c7501 2019-07-11 stsp commit_id = qid->id;
3604 818c7501 2019-07-11 stsp parent_id = pid ? pid->id : yca_id;
3605 818c7501 2019-07-11 stsp pid = qid;
3606 818c7501 2019-07-11 stsp
3607 818c7501 2019-07-11 stsp error = got_worktree_rebase_merge_files(worktree, parent_id,
3608 818c7501 2019-07-11 stsp commit_id, repo, rebase_progress, &rebase_status,
3609 818c7501 2019-07-11 stsp check_cancelled, NULL);
3610 818c7501 2019-07-11 stsp if (error)
3611 818c7501 2019-07-11 stsp goto done;
3612 818c7501 2019-07-11 stsp
3613 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT)
3614 818c7501 2019-07-11 stsp break;
3615 818c7501 2019-07-11 stsp
3616 ff0d2220 2019-07-11 stsp error = rebase_commit(worktree, tmp_branch, commit_id, repo);
3617 818c7501 2019-07-11 stsp if (error)
3618 818c7501 2019-07-11 stsp goto done;
3619 818c7501 2019-07-11 stsp }
3620 818c7501 2019-07-11 stsp
3621 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
3622 818c7501 2019-07-11 stsp error = got_worktree_rebase_postpone(worktree);
3623 818c7501 2019-07-11 stsp if (error)
3624 818c7501 2019-07-11 stsp goto done;
3625 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
3626 818c7501 2019-07-11 stsp "conflicts must be resolved before rebase can be resumed");
3627 818c7501 2019-07-11 stsp } else
3628 818c7501 2019-07-11 stsp error = rebase_complete(worktree, branch, new_base_branch,
3629 818c7501 2019-07-11 stsp tmp_branch, repo);
3630 818c7501 2019-07-11 stsp done:
3631 818c7501 2019-07-11 stsp got_object_id_queue_free(&commits);
3632 818c7501 2019-07-11 stsp free(branch_head_commit_id);
3633 818c7501 2019-07-11 stsp free(resume_commit_id);
3634 818c7501 2019-07-11 stsp free(yca_id);
3635 818c7501 2019-07-11 stsp if (graph)
3636 818c7501 2019-07-11 stsp got_commit_graph_close(graph);
3637 818c7501 2019-07-11 stsp if (commit)
3638 818c7501 2019-07-11 stsp got_object_commit_close(commit);
3639 818c7501 2019-07-11 stsp if (branch)
3640 818c7501 2019-07-11 stsp got_ref_close(branch);
3641 818c7501 2019-07-11 stsp if (new_base_branch)
3642 818c7501 2019-07-11 stsp got_ref_close(new_base_branch);
3643 818c7501 2019-07-11 stsp if (tmp_branch)
3644 818c7501 2019-07-11 stsp got_ref_close(tmp_branch);
3645 5ef14e63 2019-06-02 stsp if (worktree)
3646 5ef14e63 2019-06-02 stsp got_worktree_close(worktree);
3647 5ef14e63 2019-06-02 stsp if (repo)
3648 5ef14e63 2019-06-02 stsp got_repo_close(repo);
3649 5ef14e63 2019-06-02 stsp return error;
3650 5ef14e63 2019-06-02 stsp }