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 4e759de4 2019-06-26 stsp list_branches(struct got_repository *repo)
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 4e759de4 2019-06-26 stsp err = got_ref_list(&refs, repo);
2222 4e759de4 2019-06-26 stsp if (err)
2223 4e759de4 2019-06-26 stsp return err;
2224 4e759de4 2019-06-26 stsp
2225 4e759de4 2019-06-26 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
2226 4e759de4 2019-06-26 stsp const char *refname;
2227 4e759de4 2019-06-26 stsp char *refstr;
2228 4e759de4 2019-06-26 stsp refname = got_ref_get_name(re->ref);
2229 4e759de4 2019-06-26 stsp if (strncmp(refname, "refs/heads/", 11) != 0)
2230 4e759de4 2019-06-26 stsp continue;
2231 4e759de4 2019-06-26 stsp refname += 11;
2232 4e759de4 2019-06-26 stsp refstr = got_ref_to_str(re->ref);
2233 4e759de4 2019-06-26 stsp if (refstr == NULL)
2234 4e759de4 2019-06-26 stsp return got_error_from_errno("got_ref_to_str");
2235 4e759de4 2019-06-26 stsp printf("%s: %s\n", refname, refstr);
2236 4e759de4 2019-06-26 stsp free(refstr);
2237 4e759de4 2019-06-26 stsp }
2238 4e759de4 2019-06-26 stsp
2239 4e759de4 2019-06-26 stsp got_ref_list_free(&refs);
2240 4e759de4 2019-06-26 stsp return NULL;
2241 4e759de4 2019-06-26 stsp }
2242 4e759de4 2019-06-26 stsp
2243 4e759de4 2019-06-26 stsp static const struct got_error *
2244 4e759de4 2019-06-26 stsp delete_branch(struct got_repository *repo, const char *branch_name)
2245 4e759de4 2019-06-26 stsp {
2246 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
2247 4e759de4 2019-06-26 stsp struct got_reference *ref;
2248 4e759de4 2019-06-26 stsp char *refname;
2249 4e759de4 2019-06-26 stsp
2250 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
2251 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
2252 4e759de4 2019-06-26 stsp
2253 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
2254 4e759de4 2019-06-26 stsp if (err)
2255 4e759de4 2019-06-26 stsp goto done;
2256 4e759de4 2019-06-26 stsp
2257 4e759de4 2019-06-26 stsp err = got_ref_delete(ref, repo);
2258 4e759de4 2019-06-26 stsp got_ref_close(ref);
2259 4e759de4 2019-06-26 stsp done:
2260 4e759de4 2019-06-26 stsp free(refname);
2261 4e759de4 2019-06-26 stsp return err;
2262 4e759de4 2019-06-26 stsp }
2263 4e759de4 2019-06-26 stsp
2264 4e759de4 2019-06-26 stsp static const struct got_error *
2265 4e759de4 2019-06-26 stsp add_branch(struct got_repository *repo, const char *branch_name,
2266 4e759de4 2019-06-26 stsp const char *base_branch)
2267 4e759de4 2019-06-26 stsp {
2268 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
2269 4e759de4 2019-06-26 stsp struct got_object_id *id = NULL;
2270 4e759de4 2019-06-26 stsp struct got_reference *ref = NULL;
2271 4e759de4 2019-06-26 stsp char *base_refname = NULL, *refname = NULL;
2272 4e759de4 2019-06-26 stsp struct got_reference *base_ref;
2273 4e759de4 2019-06-26 stsp
2274 4e759de4 2019-06-26 stsp if (strcmp(GOT_REF_HEAD, base_branch) == 0) {
2275 4e759de4 2019-06-26 stsp base_refname = strdup(GOT_REF_HEAD);
2276 4e759de4 2019-06-26 stsp if (base_refname == NULL)
2277 4e759de4 2019-06-26 stsp return got_error_from_errno("strdup");
2278 4e759de4 2019-06-26 stsp } else if (asprintf(&base_refname, "refs/heads/%s", base_branch) == -1)
2279 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
2280 4e759de4 2019-06-26 stsp
2281 4e759de4 2019-06-26 stsp err = got_ref_open(&base_ref, repo, base_refname, 0);
2282 4e759de4 2019-06-26 stsp if (err)
2283 4e759de4 2019-06-26 stsp goto done;
2284 4e759de4 2019-06-26 stsp err = got_ref_resolve(&id, repo, base_ref);
2285 4e759de4 2019-06-26 stsp got_ref_close(base_ref);
2286 4e759de4 2019-06-26 stsp if (err)
2287 4e759de4 2019-06-26 stsp goto done;
2288 4e759de4 2019-06-26 stsp
2289 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
2290 4e759de4 2019-06-26 stsp err = got_error_from_errno("asprintf");
2291 4e759de4 2019-06-26 stsp goto done;
2292 4e759de4 2019-06-26 stsp }
2293 4e759de4 2019-06-26 stsp
2294 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
2295 4e759de4 2019-06-26 stsp if (err == NULL) {
2296 4e759de4 2019-06-26 stsp err = got_error(GOT_ERR_BRANCH_EXISTS);
2297 4e759de4 2019-06-26 stsp goto done;
2298 4e759de4 2019-06-26 stsp } else if (err->code != GOT_ERR_NOT_REF)
2299 4e759de4 2019-06-26 stsp goto done;
2300 4e759de4 2019-06-26 stsp
2301 4e759de4 2019-06-26 stsp err = got_ref_alloc(&ref, refname, id);
2302 4e759de4 2019-06-26 stsp if (err)
2303 4e759de4 2019-06-26 stsp goto done;
2304 4e759de4 2019-06-26 stsp
2305 4e759de4 2019-06-26 stsp err = got_ref_write(ref, repo);
2306 d0eebce4 2019-03-11 stsp done:
2307 4e759de4 2019-06-26 stsp if (ref)
2308 4e759de4 2019-06-26 stsp got_ref_close(ref);
2309 4e759de4 2019-06-26 stsp free(id);
2310 4e759de4 2019-06-26 stsp free(base_refname);
2311 4e759de4 2019-06-26 stsp free(refname);
2312 4e759de4 2019-06-26 stsp return err;
2313 4e759de4 2019-06-26 stsp }
2314 4e759de4 2019-06-26 stsp
2315 4e759de4 2019-06-26 stsp static const struct got_error *
2316 4e759de4 2019-06-26 stsp cmd_branch(int argc, char *argv[])
2317 4e759de4 2019-06-26 stsp {
2318 4e759de4 2019-06-26 stsp const struct got_error *error = NULL;
2319 4e759de4 2019-06-26 stsp struct got_repository *repo = NULL;
2320 4e759de4 2019-06-26 stsp struct got_worktree *worktree = NULL;
2321 4e759de4 2019-06-26 stsp char *cwd = NULL, *repo_path = NULL;
2322 4e759de4 2019-06-26 stsp int ch, do_list = 0;
2323 4e759de4 2019-06-26 stsp const char *delref = NULL;
2324 4e759de4 2019-06-26 stsp
2325 4e759de4 2019-06-26 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
2326 4e759de4 2019-06-26 stsp switch (ch) {
2327 4e759de4 2019-06-26 stsp case 'd':
2328 4e759de4 2019-06-26 stsp delref = optarg;
2329 4e759de4 2019-06-26 stsp break;
2330 4e759de4 2019-06-26 stsp case 'r':
2331 4e759de4 2019-06-26 stsp repo_path = realpath(optarg, NULL);
2332 4e759de4 2019-06-26 stsp if (repo_path == NULL)
2333 4e759de4 2019-06-26 stsp err(1, "-r option");
2334 4e759de4 2019-06-26 stsp got_path_strip_trailing_slashes(repo_path);
2335 4e759de4 2019-06-26 stsp break;
2336 4e759de4 2019-06-26 stsp case 'l':
2337 4e759de4 2019-06-26 stsp do_list = 1;
2338 4e759de4 2019-06-26 stsp break;
2339 4e759de4 2019-06-26 stsp default:
2340 4e759de4 2019-06-26 stsp usage_branch();
2341 4e759de4 2019-06-26 stsp /* NOTREACHED */
2342 4e759de4 2019-06-26 stsp }
2343 4e759de4 2019-06-26 stsp }
2344 4e759de4 2019-06-26 stsp
2345 4e759de4 2019-06-26 stsp if (do_list && delref)
2346 4e759de4 2019-06-26 stsp errx(1, "-l and -d options are mutually exclusive\n");
2347 4e759de4 2019-06-26 stsp
2348 4e759de4 2019-06-26 stsp argc -= optind;
2349 4e759de4 2019-06-26 stsp argv += optind;
2350 4e759de4 2019-06-26 stsp
2351 4e759de4 2019-06-26 stsp if (do_list || delref) {
2352 4e759de4 2019-06-26 stsp if (argc > 0)
2353 4e759de4 2019-06-26 stsp usage_branch();
2354 4e759de4 2019-06-26 stsp } else if (argc < 1 || argc > 2)
2355 4e759de4 2019-06-26 stsp usage_branch();
2356 4e759de4 2019-06-26 stsp
2357 4e759de4 2019-06-26 stsp #ifndef PROFILE
2358 4e759de4 2019-06-26 stsp if (do_list) {
2359 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
2360 4e759de4 2019-06-26 stsp NULL) == -1)
2361 4e759de4 2019-06-26 stsp err(1, "pledge");
2362 4e759de4 2019-06-26 stsp } else {
2363 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2364 4e759de4 2019-06-26 stsp "sendfd unveil", NULL) == -1)
2365 4e759de4 2019-06-26 stsp err(1, "pledge");
2366 4e759de4 2019-06-26 stsp }
2367 4e759de4 2019-06-26 stsp #endif
2368 4e759de4 2019-06-26 stsp cwd = getcwd(NULL, 0);
2369 4e759de4 2019-06-26 stsp if (cwd == NULL) {
2370 4e759de4 2019-06-26 stsp error = got_error_from_errno("getcwd");
2371 4e759de4 2019-06-26 stsp goto done;
2372 4e759de4 2019-06-26 stsp }
2373 4e759de4 2019-06-26 stsp
2374 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
2375 4e759de4 2019-06-26 stsp error = got_worktree_open(&worktree, cwd);
2376 4e759de4 2019-06-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2377 4e759de4 2019-06-26 stsp goto done;
2378 4e759de4 2019-06-26 stsp else
2379 4e759de4 2019-06-26 stsp error = NULL;
2380 4e759de4 2019-06-26 stsp if (worktree) {
2381 4e759de4 2019-06-26 stsp repo_path =
2382 4e759de4 2019-06-26 stsp strdup(got_worktree_get_repo_path(worktree));
2383 4e759de4 2019-06-26 stsp if (repo_path == NULL)
2384 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
2385 4e759de4 2019-06-26 stsp if (error)
2386 4e759de4 2019-06-26 stsp goto done;
2387 4e759de4 2019-06-26 stsp } else {
2388 4e759de4 2019-06-26 stsp repo_path = strdup(cwd);
2389 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
2390 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
2391 4e759de4 2019-06-26 stsp goto done;
2392 4e759de4 2019-06-26 stsp }
2393 4e759de4 2019-06-26 stsp }
2394 4e759de4 2019-06-26 stsp }
2395 4e759de4 2019-06-26 stsp
2396 4e759de4 2019-06-26 stsp error = got_repo_open(&repo, repo_path);
2397 4e759de4 2019-06-26 stsp if (error != NULL)
2398 4e759de4 2019-06-26 stsp goto done;
2399 4e759de4 2019-06-26 stsp
2400 4e759de4 2019-06-26 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
2401 4e759de4 2019-06-26 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
2402 4e759de4 2019-06-26 stsp if (error)
2403 4e759de4 2019-06-26 stsp goto done;
2404 4e759de4 2019-06-26 stsp
2405 4e759de4 2019-06-26 stsp if (do_list)
2406 4e759de4 2019-06-26 stsp error = list_branches(repo);
2407 4e759de4 2019-06-26 stsp else if (delref)
2408 4e759de4 2019-06-26 stsp error = delete_branch(repo, delref);
2409 4e759de4 2019-06-26 stsp else {
2410 4e759de4 2019-06-26 stsp const char *base_branch;
2411 4e759de4 2019-06-26 stsp if (argc == 1) {
2412 4e759de4 2019-06-26 stsp base_branch = worktree ?
2413 4e759de4 2019-06-26 stsp got_worktree_get_head_ref_name(worktree) :
2414 4e759de4 2019-06-26 stsp GOT_REF_HEAD;
2415 4e759de4 2019-06-26 stsp } else
2416 4e759de4 2019-06-26 stsp base_branch = argv[1];
2417 4e759de4 2019-06-26 stsp error = add_branch(repo, argv[0], base_branch);
2418 4e759de4 2019-06-26 stsp }
2419 4e759de4 2019-06-26 stsp done:
2420 d0eebce4 2019-03-11 stsp if (repo)
2421 d0eebce4 2019-03-11 stsp got_repo_close(repo);
2422 d0eebce4 2019-03-11 stsp if (worktree)
2423 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
2424 d0eebce4 2019-03-11 stsp free(cwd);
2425 d0eebce4 2019-03-11 stsp free(repo_path);
2426 d00136be 2019-03-26 stsp return error;
2427 d00136be 2019-03-26 stsp }
2428 d00136be 2019-03-26 stsp
2429 d00136be 2019-03-26 stsp __dead static void
2430 d00136be 2019-03-26 stsp usage_add(void)
2431 d00136be 2019-03-26 stsp {
2432 fbb7e5c7 2019-05-11 stsp fprintf(stderr, "usage: %s add file-path ...\n", getprogname());
2433 d00136be 2019-03-26 stsp exit(1);
2434 d00136be 2019-03-26 stsp }
2435 d00136be 2019-03-26 stsp
2436 d00136be 2019-03-26 stsp static const struct got_error *
2437 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
2438 d00136be 2019-03-26 stsp {
2439 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
2440 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
2441 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
2442 1dd54920 2019-05-11 stsp char *cwd = NULL;
2443 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
2444 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2445 723c305c 2019-05-11 jcs int ch, x;
2446 1dd54920 2019-05-11 stsp
2447 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
2448 d00136be 2019-03-26 stsp
2449 d00136be 2019-03-26 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2450 d00136be 2019-03-26 stsp switch (ch) {
2451 d00136be 2019-03-26 stsp default:
2452 d00136be 2019-03-26 stsp usage_add();
2453 d00136be 2019-03-26 stsp /* NOTREACHED */
2454 d00136be 2019-03-26 stsp }
2455 d00136be 2019-03-26 stsp }
2456 d00136be 2019-03-26 stsp
2457 d00136be 2019-03-26 stsp argc -= optind;
2458 d00136be 2019-03-26 stsp argv += optind;
2459 d00136be 2019-03-26 stsp
2460 723c305c 2019-05-11 jcs if (argc < 1)
2461 d00136be 2019-03-26 stsp usage_add();
2462 d00136be 2019-03-26 stsp
2463 723c305c 2019-05-11 jcs /* make sure each file exists before doing anything halfway */
2464 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2465 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2466 723c305c 2019-05-11 jcs if (path == NULL) {
2467 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2468 723c305c 2019-05-11 jcs goto done;
2469 723c305c 2019-05-11 jcs }
2470 1dd54920 2019-05-11 stsp free(path);
2471 d00136be 2019-03-26 stsp }
2472 d00136be 2019-03-26 stsp
2473 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
2474 d00136be 2019-03-26 stsp if (cwd == NULL) {
2475 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2476 d00136be 2019-03-26 stsp goto done;
2477 d00136be 2019-03-26 stsp }
2478 723c305c 2019-05-11 jcs
2479 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2480 d00136be 2019-03-26 stsp if (error)
2481 d00136be 2019-03-26 stsp goto done;
2482 d00136be 2019-03-26 stsp
2483 031a5338 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2484 031a5338 2019-03-26 stsp if (error != NULL)
2485 031a5338 2019-03-26 stsp goto done;
2486 031a5338 2019-03-26 stsp
2487 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2488 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2489 d00136be 2019-03-26 stsp if (error)
2490 d00136be 2019-03-26 stsp goto done;
2491 d00136be 2019-03-26 stsp
2492 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2493 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2494 723c305c 2019-05-11 jcs if (path == NULL) {
2495 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2496 723c305c 2019-05-11 jcs goto done;
2497 723c305c 2019-05-11 jcs }
2498 723c305c 2019-05-11 jcs
2499 723c305c 2019-05-11 jcs got_path_strip_trailing_slashes(path);
2500 1dd54920 2019-05-11 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2501 1dd54920 2019-05-11 stsp if (error) {
2502 1dd54920 2019-05-11 stsp free(path);
2503 723c305c 2019-05-11 jcs goto done;
2504 1dd54920 2019-05-11 stsp }
2505 723c305c 2019-05-11 jcs }
2506 1dd54920 2019-05-11 stsp error = got_worktree_schedule_add(worktree, &paths, print_status,
2507 1dd54920 2019-05-11 stsp NULL, repo);
2508 d00136be 2019-03-26 stsp done:
2509 031a5338 2019-03-26 stsp if (repo)
2510 031a5338 2019-03-26 stsp got_repo_close(repo);
2511 d00136be 2019-03-26 stsp if (worktree)
2512 d00136be 2019-03-26 stsp got_worktree_close(worktree);
2513 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
2514 1dd54920 2019-05-11 stsp free((char *)pe->path);
2515 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
2516 2ec1f75b 2019-03-26 stsp free(cwd);
2517 2ec1f75b 2019-03-26 stsp return error;
2518 2ec1f75b 2019-03-26 stsp }
2519 2ec1f75b 2019-03-26 stsp
2520 2ec1f75b 2019-03-26 stsp __dead static void
2521 648e4ef7 2019-07-09 stsp usage_remove(void)
2522 2ec1f75b 2019-03-26 stsp {
2523 648e4ef7 2019-07-09 stsp fprintf(stderr, "usage: %s remove [-f] file-path ...\n", getprogname());
2524 2ec1f75b 2019-03-26 stsp exit(1);
2525 2ec1f75b 2019-03-26 stsp }
2526 2ec1f75b 2019-03-26 stsp
2527 2ec1f75b 2019-03-26 stsp static const struct got_error *
2528 648e4ef7 2019-07-09 stsp cmd_remove(int argc, char *argv[])
2529 2ec1f75b 2019-03-26 stsp {
2530 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
2531 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
2532 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
2533 17ed4618 2019-06-02 stsp char *cwd = NULL;
2534 17ed4618 2019-06-02 stsp struct got_pathlist_head paths;
2535 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
2536 17ed4618 2019-06-02 stsp int ch, i, delete_local_mods = 0;
2537 2ec1f75b 2019-03-26 stsp
2538 17ed4618 2019-06-02 stsp TAILQ_INIT(&paths);
2539 17ed4618 2019-06-02 stsp
2540 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
2541 2ec1f75b 2019-03-26 stsp switch (ch) {
2542 2ec1f75b 2019-03-26 stsp case 'f':
2543 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
2544 2ec1f75b 2019-03-26 stsp break;
2545 2ec1f75b 2019-03-26 stsp default:
2546 2ec1f75b 2019-03-26 stsp usage_add();
2547 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
2548 2ec1f75b 2019-03-26 stsp }
2549 2ec1f75b 2019-03-26 stsp }
2550 2ec1f75b 2019-03-26 stsp
2551 2ec1f75b 2019-03-26 stsp argc -= optind;
2552 2ec1f75b 2019-03-26 stsp argv += optind;
2553 2ec1f75b 2019-03-26 stsp
2554 17ed4618 2019-06-02 stsp if (argc < 1)
2555 648e4ef7 2019-07-09 stsp usage_remove();
2556 2ec1f75b 2019-03-26 stsp
2557 17ed4618 2019-06-02 stsp /* make sure each file exists before doing anything halfway */
2558 17ed4618 2019-06-02 stsp for (i = 0; i < argc; i++) {
2559 17ed4618 2019-06-02 stsp char *path = realpath(argv[i], NULL);
2560 17ed4618 2019-06-02 stsp if (path == NULL) {
2561 17ed4618 2019-06-02 stsp error = got_error_from_errno2("realpath", argv[i]);
2562 17ed4618 2019-06-02 stsp goto done;
2563 17ed4618 2019-06-02 stsp }
2564 17ed4618 2019-06-02 stsp free(path);
2565 2ec1f75b 2019-03-26 stsp }
2566 2ec1f75b 2019-03-26 stsp
2567 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
2568 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
2569 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2570 2ec1f75b 2019-03-26 stsp goto done;
2571 2ec1f75b 2019-03-26 stsp }
2572 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2573 2ec1f75b 2019-03-26 stsp if (error)
2574 2ec1f75b 2019-03-26 stsp goto done;
2575 2ec1f75b 2019-03-26 stsp
2576 2ec1f75b 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2577 2af4a041 2019-05-11 jcs if (error)
2578 2ec1f75b 2019-03-26 stsp goto done;
2579 2ec1f75b 2019-03-26 stsp
2580 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2581 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2582 2ec1f75b 2019-03-26 stsp if (error)
2583 2ec1f75b 2019-03-26 stsp goto done;
2584 2ec1f75b 2019-03-26 stsp
2585 17ed4618 2019-06-02 stsp for (i = 0; i < argc; i++) {
2586 17ed4618 2019-06-02 stsp char *path = realpath(argv[i], NULL);
2587 17ed4618 2019-06-02 stsp if (path == NULL) {
2588 17ed4618 2019-06-02 stsp error = got_error_from_errno2("realpath", argv[i]);
2589 17ed4618 2019-06-02 stsp goto done;
2590 17ed4618 2019-06-02 stsp }
2591 17ed4618 2019-06-02 stsp
2592 17ed4618 2019-06-02 stsp got_path_strip_trailing_slashes(path);
2593 17ed4618 2019-06-02 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2594 17ed4618 2019-06-02 stsp if (error) {
2595 17ed4618 2019-06-02 stsp free(path);
2596 17ed4618 2019-06-02 stsp goto done;
2597 17ed4618 2019-06-02 stsp }
2598 17ed4618 2019-06-02 stsp }
2599 17ed4618 2019-06-02 stsp error = got_worktree_schedule_delete(worktree, &paths,
2600 17ed4618 2019-06-02 stsp delete_local_mods, print_status, NULL, repo);
2601 a129376b 2019-03-28 stsp if (error)
2602 a129376b 2019-03-28 stsp goto done;
2603 a129376b 2019-03-28 stsp done:
2604 a129376b 2019-03-28 stsp if (repo)
2605 a129376b 2019-03-28 stsp got_repo_close(repo);
2606 a129376b 2019-03-28 stsp if (worktree)
2607 a129376b 2019-03-28 stsp got_worktree_close(worktree);
2608 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, &paths, entry)
2609 17ed4618 2019-06-02 stsp free((char *)pe->path);
2610 17ed4618 2019-06-02 stsp got_pathlist_free(&paths);
2611 a129376b 2019-03-28 stsp free(cwd);
2612 a129376b 2019-03-28 stsp return error;
2613 a129376b 2019-03-28 stsp }
2614 a129376b 2019-03-28 stsp
2615 a129376b 2019-03-28 stsp __dead static void
2616 a129376b 2019-03-28 stsp usage_revert(void)
2617 a129376b 2019-03-28 stsp {
2618 e20a8b6f 2019-06-04 stsp fprintf(stderr, "usage: %s revert file-path ...\n", getprogname());
2619 a129376b 2019-03-28 stsp exit(1);
2620 a129376b 2019-03-28 stsp }
2621 a129376b 2019-03-28 stsp
2622 a129376b 2019-03-28 stsp static void
2623 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
2624 a129376b 2019-03-28 stsp {
2625 a129376b 2019-03-28 stsp while (path[0] == '/')
2626 a129376b 2019-03-28 stsp path++;
2627 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
2628 a129376b 2019-03-28 stsp }
2629 a129376b 2019-03-28 stsp
2630 a129376b 2019-03-28 stsp static const struct got_error *
2631 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
2632 a129376b 2019-03-28 stsp {
2633 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
2634 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
2635 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
2636 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
2637 e20a8b6f 2019-06-04 stsp struct got_pathlist_head paths;
2638 e20a8b6f 2019-06-04 stsp struct got_pathlist_entry *pe;
2639 e20a8b6f 2019-06-04 stsp int ch, i;
2640 a129376b 2019-03-28 stsp
2641 e20a8b6f 2019-06-04 stsp TAILQ_INIT(&paths);
2642 e20a8b6f 2019-06-04 stsp
2643 a129376b 2019-03-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2644 a129376b 2019-03-28 stsp switch (ch) {
2645 a129376b 2019-03-28 stsp default:
2646 a129376b 2019-03-28 stsp usage_revert();
2647 a129376b 2019-03-28 stsp /* NOTREACHED */
2648 a129376b 2019-03-28 stsp }
2649 a129376b 2019-03-28 stsp }
2650 a129376b 2019-03-28 stsp
2651 a129376b 2019-03-28 stsp argc -= optind;
2652 a129376b 2019-03-28 stsp argv += optind;
2653 a129376b 2019-03-28 stsp
2654 e20a8b6f 2019-06-04 stsp if (argc < 1)
2655 a129376b 2019-03-28 stsp usage_revert();
2656 a129376b 2019-03-28 stsp
2657 e20a8b6f 2019-06-04 stsp for (i = 0; i < argc; i++) {
2658 e20a8b6f 2019-06-04 stsp char *path = realpath(argv[i], NULL);
2659 e20a8b6f 2019-06-04 stsp if (path == NULL) {
2660 e20a8b6f 2019-06-04 stsp error = got_error_from_errno2("realpath", argv[i]);
2661 e20a8b6f 2019-06-04 stsp goto done;
2662 e20a8b6f 2019-06-04 stsp }
2663 e20a8b6f 2019-06-04 stsp
2664 e20a8b6f 2019-06-04 stsp got_path_strip_trailing_slashes(path);
2665 e20a8b6f 2019-06-04 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2666 e20a8b6f 2019-06-04 stsp if (error) {
2667 e20a8b6f 2019-06-04 stsp free(path);
2668 e20a8b6f 2019-06-04 stsp goto done;
2669 e20a8b6f 2019-06-04 stsp }
2670 a129376b 2019-03-28 stsp }
2671 a129376b 2019-03-28 stsp
2672 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
2673 a129376b 2019-03-28 stsp if (cwd == NULL) {
2674 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2675 a129376b 2019-03-28 stsp goto done;
2676 a129376b 2019-03-28 stsp }
2677 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
2678 2ec1f75b 2019-03-26 stsp if (error)
2679 2ec1f75b 2019-03-26 stsp goto done;
2680 a129376b 2019-03-28 stsp
2681 a129376b 2019-03-28 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2682 a129376b 2019-03-28 stsp if (error != NULL)
2683 a129376b 2019-03-28 stsp goto done;
2684 a129376b 2019-03-28 stsp
2685 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2686 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2687 a129376b 2019-03-28 stsp if (error)
2688 a129376b 2019-03-28 stsp goto done;
2689 a129376b 2019-03-28 stsp
2690 e20a8b6f 2019-06-04 stsp error = got_worktree_revert(worktree, &paths,
2691 a129376b 2019-03-28 stsp revert_progress, NULL, repo);
2692 a129376b 2019-03-28 stsp if (error)
2693 a129376b 2019-03-28 stsp goto done;
2694 2ec1f75b 2019-03-26 stsp done:
2695 2ec1f75b 2019-03-26 stsp if (repo)
2696 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
2697 2ec1f75b 2019-03-26 stsp if (worktree)
2698 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
2699 2ec1f75b 2019-03-26 stsp free(path);
2700 d00136be 2019-03-26 stsp free(cwd);
2701 6bad629b 2019-02-04 stsp return error;
2702 c4296144 2019-05-09 stsp }
2703 c4296144 2019-05-09 stsp
2704 c4296144 2019-05-09 stsp __dead static void
2705 c4296144 2019-05-09 stsp usage_commit(void)
2706 c4296144 2019-05-09 stsp {
2707 c6fc0acd 2019-05-09 stsp fprintf(stderr, "usage: %s commit [-m msg] file-path\n", getprogname());
2708 c4296144 2019-05-09 stsp exit(1);
2709 33ad4cbe 2019-05-12 jcs }
2710 33ad4cbe 2019-05-12 jcs
2711 33ad4cbe 2019-05-12 jcs int
2712 e2ba3d07 2019-05-13 stsp spawn_editor(const char *editor, const char *file)
2713 33ad4cbe 2019-05-12 jcs {
2714 33ad4cbe 2019-05-12 jcs pid_t pid;
2715 33ad4cbe 2019-05-12 jcs sig_t sighup, sigint, sigquit;
2716 33ad4cbe 2019-05-12 jcs int st = -1;
2717 33ad4cbe 2019-05-12 jcs
2718 33ad4cbe 2019-05-12 jcs sighup = signal(SIGHUP, SIG_IGN);
2719 33ad4cbe 2019-05-12 jcs sigint = signal(SIGINT, SIG_IGN);
2720 33ad4cbe 2019-05-12 jcs sigquit = signal(SIGQUIT, SIG_IGN);
2721 33ad4cbe 2019-05-12 jcs
2722 33ad4cbe 2019-05-12 jcs switch (pid = fork()) {
2723 33ad4cbe 2019-05-12 jcs case -1:
2724 33ad4cbe 2019-05-12 jcs goto doneediting;
2725 33ad4cbe 2019-05-12 jcs case 0:
2726 e2ba3d07 2019-05-13 stsp execl(editor, editor, file, (char *)NULL);
2727 33ad4cbe 2019-05-12 jcs _exit(127);
2728 33ad4cbe 2019-05-12 jcs }
2729 33ad4cbe 2019-05-12 jcs
2730 33ad4cbe 2019-05-12 jcs while (waitpid(pid, &st, 0) == -1)
2731 33ad4cbe 2019-05-12 jcs if (errno != EINTR)
2732 33ad4cbe 2019-05-12 jcs break;
2733 33ad4cbe 2019-05-12 jcs
2734 33ad4cbe 2019-05-12 jcs doneediting:
2735 33ad4cbe 2019-05-12 jcs (void)signal(SIGHUP, sighup);
2736 33ad4cbe 2019-05-12 jcs (void)signal(SIGINT, sigint);
2737 33ad4cbe 2019-05-12 jcs (void)signal(SIGQUIT, sigquit);
2738 33ad4cbe 2019-05-12 jcs
2739 33ad4cbe 2019-05-12 jcs if (!WIFEXITED(st)) {
2740 33ad4cbe 2019-05-12 jcs errno = EINTR;
2741 33ad4cbe 2019-05-12 jcs return -1;
2742 33ad4cbe 2019-05-12 jcs }
2743 33ad4cbe 2019-05-12 jcs
2744 33ad4cbe 2019-05-12 jcs return WEXITSTATUS(st);
2745 33ad4cbe 2019-05-12 jcs }
2746 33ad4cbe 2019-05-12 jcs
2747 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
2748 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
2749 e2ba3d07 2019-05-13 stsp const char *editor;
2750 e0870e44 2019-05-13 stsp const char *worktree_path;
2751 76d98825 2019-06-03 stsp const char *branch_name;
2752 314a6357 2019-05-13 stsp const char *repo_path;
2753 e0870e44 2019-05-13 stsp char *logmsg_path;
2754 e2ba3d07 2019-05-13 stsp
2755 e2ba3d07 2019-05-13 stsp };
2756 e0870e44 2019-05-13 stsp
2757 33ad4cbe 2019-05-12 jcs static const struct got_error *
2758 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
2759 33ad4cbe 2019-05-12 jcs void *arg)
2760 33ad4cbe 2019-05-12 jcs {
2761 76d98825 2019-06-03 stsp char *initial_content = NULL;
2762 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
2763 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
2764 e0870e44 2019-05-13 stsp char *template = NULL;
2765 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
2766 33ad4cbe 2019-05-12 jcs char buf[1024];
2767 33ad4cbe 2019-05-12 jcs struct stat st, st2;
2768 33ad4cbe 2019-05-12 jcs FILE *fp;
2769 33ad4cbe 2019-05-12 jcs size_t len;
2770 e0870e44 2019-05-13 stsp int fd, content_changed = 0;
2771 33ad4cbe 2019-05-12 jcs
2772 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
2773 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
2774 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
2775 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
2776 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
2777 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
2778 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
2779 33ad4cbe 2019-05-12 jcs return NULL;
2780 33ad4cbe 2019-05-12 jcs }
2781 33ad4cbe 2019-05-12 jcs
2782 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
2783 76d98825 2019-06-03 stsp return got_error_from_errno("asprintf");
2784 76d98825 2019-06-03 stsp
2785 76d98825 2019-06-03 stsp if (asprintf(&initial_content,
2786 76d98825 2019-06-03 stsp "\n# changes to be committed on branch %s:\n",
2787 76d98825 2019-06-03 stsp a->branch_name) == -1)
2788 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2789 e0870e44 2019-05-13 stsp
2790 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
2791 793c30b5 2019-05-13 stsp if (err)
2792 e0870e44 2019-05-13 stsp goto done;
2793 33ad4cbe 2019-05-12 jcs
2794 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
2795 33ad4cbe 2019-05-12 jcs
2796 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
2797 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2798 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
2799 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
2800 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
2801 33ad4cbe 2019-05-12 jcs }
2802 33ad4cbe 2019-05-12 jcs close(fd);
2803 33ad4cbe 2019-05-12 jcs
2804 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st) == -1) {
2805 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", a->logmsg_path);
2806 33ad4cbe 2019-05-12 jcs goto done;
2807 33ad4cbe 2019-05-12 jcs }
2808 33ad4cbe 2019-05-12 jcs
2809 e0870e44 2019-05-13 stsp if (spawn_editor(a->editor, a->logmsg_path) == -1) {
2810 638f9024 2019-05-13 stsp err = got_error_from_errno("failed spawning editor");
2811 33ad4cbe 2019-05-12 jcs goto done;
2812 33ad4cbe 2019-05-12 jcs }
2813 33ad4cbe 2019-05-12 jcs
2814 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st2) == -1) {
2815 638f9024 2019-05-13 stsp err = got_error_from_errno("stat");
2816 33ad4cbe 2019-05-12 jcs goto done;
2817 33ad4cbe 2019-05-12 jcs }
2818 33ad4cbe 2019-05-12 jcs
2819 33ad4cbe 2019-05-12 jcs if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size) {
2820 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2821 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2822 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2823 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2824 33ad4cbe 2019-05-12 jcs "no changes made to commit message, aborting");
2825 33ad4cbe 2019-05-12 jcs goto done;
2826 33ad4cbe 2019-05-12 jcs }
2827 33ad4cbe 2019-05-12 jcs
2828 33ad4cbe 2019-05-12 jcs *logmsg = malloc(st2.st_size + 1);
2829 fcde04d9 2019-05-13 stsp if (*logmsg == NULL) {
2830 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
2831 fcde04d9 2019-05-13 stsp goto done;
2832 fcde04d9 2019-05-13 stsp }
2833 cc79381d 2019-05-22 stsp (*logmsg)[0] = '\0';
2834 33ad4cbe 2019-05-12 jcs len = 0;
2835 33ad4cbe 2019-05-12 jcs
2836 e0870e44 2019-05-13 stsp fp = fopen(a->logmsg_path, "r");
2837 d4592c7c 2019-05-22 stsp if (fp == NULL) {
2838 d4592c7c 2019-05-22 stsp err = got_error_from_errno("fopen");
2839 d4592c7c 2019-05-22 stsp goto done;
2840 d4592c7c 2019-05-22 stsp }
2841 33ad4cbe 2019-05-12 jcs while (fgets(buf, sizeof(buf), fp) != NULL) {
2842 e0870e44 2019-05-13 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
2843 e0870e44 2019-05-13 stsp content_changed = 1;
2844 33ad4cbe 2019-05-12 jcs if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
2845 78527a0a 2019-05-22 stsp continue; /* remove comments and leading empty lines */
2846 33ad4cbe 2019-05-12 jcs len = strlcat(*logmsg, buf, st2.st_size);
2847 33ad4cbe 2019-05-12 jcs }
2848 33ad4cbe 2019-05-12 jcs fclose(fp);
2849 33ad4cbe 2019-05-12 jcs
2850 33ad4cbe 2019-05-12 jcs while (len > 0 && (*logmsg)[len - 1] == '\n') {
2851 33ad4cbe 2019-05-12 jcs (*logmsg)[len - 1] = '\0';
2852 33ad4cbe 2019-05-12 jcs len--;
2853 33ad4cbe 2019-05-12 jcs }
2854 33ad4cbe 2019-05-12 jcs
2855 e0870e44 2019-05-13 stsp if (len == 0 || !content_changed) {
2856 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2857 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2858 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2859 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2860 33ad4cbe 2019-05-12 jcs "commit message cannot be empty, aborting");
2861 33ad4cbe 2019-05-12 jcs goto done;
2862 33ad4cbe 2019-05-12 jcs }
2863 33ad4cbe 2019-05-12 jcs done:
2864 76d98825 2019-06-03 stsp free(initial_content);
2865 e0870e44 2019-05-13 stsp free(template);
2866 314a6357 2019-05-13 stsp
2867 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
2868 314a6357 2019-05-13 stsp if (err == NULL)
2869 314a6357 2019-05-13 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path, 0);
2870 33ad4cbe 2019-05-12 jcs return err;
2871 6bad629b 2019-02-04 stsp }
2872 c4296144 2019-05-09 stsp
2873 c4296144 2019-05-09 stsp static const struct got_error *
2874 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
2875 c4296144 2019-05-09 stsp {
2876 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
2877 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
2878 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
2879 c4296144 2019-05-09 stsp char *cwd = NULL, *path = NULL, *id_str = NULL;
2880 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
2881 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
2882 35bd8fed 2019-05-09 stsp const char *got_author = getenv("GOT_AUTHOR");
2883 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg cl_arg;
2884 e2ba3d07 2019-05-13 stsp char *editor = NULL;
2885 7d5807f4 2019-07-11 stsp int ch, rebase_in_progress;
2886 c4296144 2019-05-09 stsp
2887 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
2888 c4296144 2019-05-09 stsp switch (ch) {
2889 c4296144 2019-05-09 stsp case 'm':
2890 c4296144 2019-05-09 stsp logmsg = optarg;
2891 c4296144 2019-05-09 stsp break;
2892 c4296144 2019-05-09 stsp default:
2893 c4296144 2019-05-09 stsp usage_commit();
2894 c4296144 2019-05-09 stsp /* NOTREACHED */
2895 c4296144 2019-05-09 stsp }
2896 c4296144 2019-05-09 stsp }
2897 c4296144 2019-05-09 stsp
2898 c4296144 2019-05-09 stsp argc -= optind;
2899 c4296144 2019-05-09 stsp argv += optind;
2900 c4296144 2019-05-09 stsp
2901 c4296144 2019-05-09 stsp if (argc == 1) {
2902 c4296144 2019-05-09 stsp path = realpath(argv[0], NULL);
2903 c4296144 2019-05-09 stsp if (path == NULL) {
2904 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2905 c4296144 2019-05-09 stsp goto done;
2906 c4296144 2019-05-09 stsp }
2907 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2908 c4296144 2019-05-09 stsp } else if (argc != 0)
2909 c4296144 2019-05-09 stsp usage_commit();
2910 c4296144 2019-05-09 stsp
2911 35bd8fed 2019-05-09 stsp if (got_author == NULL) {
2912 35bd8fed 2019-05-09 stsp /* TODO: Look current user up in password database */
2913 35bd8fed 2019-05-09 stsp error = got_error(GOT_ERR_COMMIT_NO_AUTHOR);
2914 35bd8fed 2019-05-09 stsp goto done;
2915 35bd8fed 2019-05-09 stsp }
2916 c4296144 2019-05-09 stsp
2917 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
2918 c4296144 2019-05-09 stsp if (cwd == NULL) {
2919 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2920 c4296144 2019-05-09 stsp goto done;
2921 c4296144 2019-05-09 stsp }
2922 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
2923 7d5807f4 2019-07-11 stsp if (error)
2924 7d5807f4 2019-07-11 stsp goto done;
2925 7d5807f4 2019-07-11 stsp
2926 7d5807f4 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
2927 c4296144 2019-05-09 stsp if (error)
2928 7d5807f4 2019-07-11 stsp goto done;
2929 7d5807f4 2019-07-11 stsp if (rebase_in_progress) {
2930 7d5807f4 2019-07-11 stsp error = got_error(GOT_ERR_REBASING);
2931 c4296144 2019-05-09 stsp goto done;
2932 7d5807f4 2019-07-11 stsp }
2933 c4296144 2019-05-09 stsp
2934 c4296144 2019-05-09 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2935 c4296144 2019-05-09 stsp if (error != NULL)
2936 c4296144 2019-05-09 stsp goto done;
2937 c4296144 2019-05-09 stsp
2938 314a6357 2019-05-13 stsp /*
2939 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
2940 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
2941 314a6357 2019-05-13 stsp */
2942 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
2943 314a6357 2019-05-13 stsp error = get_editor(&editor);
2944 314a6357 2019-05-13 stsp else
2945 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2946 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2947 c4296144 2019-05-09 stsp if (error)
2948 c4296144 2019-05-09 stsp goto done;
2949 c4296144 2019-05-09 stsp
2950 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
2951 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
2952 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
2953 76d98825 2019-06-03 stsp cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
2954 76d98825 2019-06-03 stsp if (strncmp(cl_arg.branch_name, "refs/", 5) == 0)
2955 76d98825 2019-06-03 stsp cl_arg.branch_name += 5;
2956 76d98825 2019-06-03 stsp if (strncmp(cl_arg.branch_name, "heads/", 6) == 0)
2957 76d98825 2019-06-03 stsp cl_arg.branch_name += 6;
2958 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
2959 e0870e44 2019-05-13 stsp cl_arg.logmsg_path = NULL;
2960 35bd8fed 2019-05-09 stsp error = got_worktree_commit(&id, worktree, path, got_author, NULL,
2961 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
2962 e0870e44 2019-05-13 stsp if (error) {
2963 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2964 e0870e44 2019-05-13 stsp fprintf(stderr, "%s: log message preserved in %s\n",
2965 e0870e44 2019-05-13 stsp getprogname(), cl_arg.logmsg_path);
2966 c4296144 2019-05-09 stsp goto done;
2967 e0870e44 2019-05-13 stsp }
2968 c4296144 2019-05-09 stsp
2969 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2970 e0870e44 2019-05-13 stsp unlink(cl_arg.logmsg_path);
2971 e0870e44 2019-05-13 stsp
2972 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
2973 c4296144 2019-05-09 stsp if (error)
2974 c4296144 2019-05-09 stsp goto done;
2975 a7648d7a 2019-06-02 stsp printf("Created commit %s\n", id_str);
2976 c4296144 2019-05-09 stsp done:
2977 c4296144 2019-05-09 stsp if (repo)
2978 c4296144 2019-05-09 stsp got_repo_close(repo);
2979 c4296144 2019-05-09 stsp if (worktree)
2980 c4296144 2019-05-09 stsp got_worktree_close(worktree);
2981 c4296144 2019-05-09 stsp free(path);
2982 c4296144 2019-05-09 stsp free(cwd);
2983 c4296144 2019-05-09 stsp free(id_str);
2984 e2ba3d07 2019-05-13 stsp free(editor);
2985 234035bc 2019-06-01 stsp return error;
2986 234035bc 2019-06-01 stsp }
2987 234035bc 2019-06-01 stsp
2988 234035bc 2019-06-01 stsp __dead static void
2989 234035bc 2019-06-01 stsp usage_cherrypick(void)
2990 234035bc 2019-06-01 stsp {
2991 234035bc 2019-06-01 stsp fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
2992 234035bc 2019-06-01 stsp exit(1);
2993 234035bc 2019-06-01 stsp }
2994 234035bc 2019-06-01 stsp
2995 234035bc 2019-06-01 stsp static const struct got_error *
2996 234035bc 2019-06-01 stsp cmd_cherrypick(int argc, char *argv[])
2997 234035bc 2019-06-01 stsp {
2998 234035bc 2019-06-01 stsp const struct got_error *error = NULL;
2999 234035bc 2019-06-01 stsp struct got_worktree *worktree = NULL;
3000 234035bc 2019-06-01 stsp struct got_repository *repo = NULL;
3001 234035bc 2019-06-01 stsp char *cwd = NULL, *commit_id_str = NULL;
3002 234035bc 2019-06-01 stsp struct got_object_id *commit_id = NULL;
3003 234035bc 2019-06-01 stsp struct got_commit_object *commit = NULL;
3004 234035bc 2019-06-01 stsp struct got_object_qid *pid;
3005 234035bc 2019-06-01 stsp struct got_reference *head_ref = NULL;
3006 234035bc 2019-06-01 stsp int ch, did_something = 0;
3007 234035bc 2019-06-01 stsp
3008 234035bc 2019-06-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
3009 234035bc 2019-06-01 stsp switch (ch) {
3010 234035bc 2019-06-01 stsp default:
3011 234035bc 2019-06-01 stsp usage_cherrypick();
3012 234035bc 2019-06-01 stsp /* NOTREACHED */
3013 234035bc 2019-06-01 stsp }
3014 234035bc 2019-06-01 stsp }
3015 234035bc 2019-06-01 stsp
3016 234035bc 2019-06-01 stsp argc -= optind;
3017 234035bc 2019-06-01 stsp argv += optind;
3018 234035bc 2019-06-01 stsp
3019 234035bc 2019-06-01 stsp if (argc != 1)
3020 234035bc 2019-06-01 stsp usage_cherrypick();
3021 234035bc 2019-06-01 stsp
3022 234035bc 2019-06-01 stsp cwd = getcwd(NULL, 0);
3023 234035bc 2019-06-01 stsp if (cwd == NULL) {
3024 234035bc 2019-06-01 stsp error = got_error_from_errno("getcwd");
3025 234035bc 2019-06-01 stsp goto done;
3026 234035bc 2019-06-01 stsp }
3027 234035bc 2019-06-01 stsp error = got_worktree_open(&worktree, cwd);
3028 234035bc 2019-06-01 stsp if (error)
3029 234035bc 2019-06-01 stsp goto done;
3030 234035bc 2019-06-01 stsp
3031 234035bc 2019-06-01 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3032 234035bc 2019-06-01 stsp if (error != NULL)
3033 234035bc 2019-06-01 stsp goto done;
3034 234035bc 2019-06-01 stsp
3035 234035bc 2019-06-01 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3036 234035bc 2019-06-01 stsp got_worktree_get_root_path(worktree), 0);
3037 234035bc 2019-06-01 stsp if (error)
3038 234035bc 2019-06-01 stsp goto done;
3039 234035bc 2019-06-01 stsp
3040 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
3041 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
3042 234035bc 2019-06-01 stsp if (error != NULL) {
3043 234035bc 2019-06-01 stsp struct got_reference *ref;
3044 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
3045 234035bc 2019-06-01 stsp goto done;
3046 234035bc 2019-06-01 stsp error = got_ref_open(&ref, repo, argv[0], 0);
3047 234035bc 2019-06-01 stsp if (error != NULL)
3048 234035bc 2019-06-01 stsp goto done;
3049 234035bc 2019-06-01 stsp error = got_ref_resolve(&commit_id, repo, ref);
3050 234035bc 2019-06-01 stsp got_ref_close(ref);
3051 234035bc 2019-06-01 stsp if (error != NULL)
3052 234035bc 2019-06-01 stsp goto done;
3053 234035bc 2019-06-01 stsp }
3054 234035bc 2019-06-01 stsp error = got_object_id_str(&commit_id_str, commit_id);
3055 234035bc 2019-06-01 stsp if (error)
3056 234035bc 2019-06-01 stsp goto done;
3057 234035bc 2019-06-01 stsp
3058 234035bc 2019-06-01 stsp error = got_ref_open(&head_ref, repo,
3059 234035bc 2019-06-01 stsp got_worktree_get_head_ref_name(worktree), 0);
3060 234035bc 2019-06-01 stsp if (error != NULL)
3061 234035bc 2019-06-01 stsp goto done;
3062 234035bc 2019-06-01 stsp
3063 234035bc 2019-06-01 stsp error = check_same_branch(commit_id, head_ref, repo);
3064 234035bc 2019-06-01 stsp if (error) {
3065 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_ANCESTRY)
3066 234035bc 2019-06-01 stsp goto done;
3067 234035bc 2019-06-01 stsp error = NULL;
3068 234035bc 2019-06-01 stsp } else {
3069 234035bc 2019-06-01 stsp error = got_error(GOT_ERR_SAME_BRANCH);
3070 234035bc 2019-06-01 stsp goto done;
3071 234035bc 2019-06-01 stsp }
3072 234035bc 2019-06-01 stsp
3073 234035bc 2019-06-01 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3074 234035bc 2019-06-01 stsp if (error)
3075 234035bc 2019-06-01 stsp goto done;
3076 234035bc 2019-06-01 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3077 03415a1a 2019-06-02 stsp error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
3078 03415a1a 2019-06-02 stsp commit_id, repo, update_progress, &did_something, check_cancelled,
3079 03415a1a 2019-06-02 stsp NULL);
3080 234035bc 2019-06-01 stsp if (error != NULL)
3081 234035bc 2019-06-01 stsp goto done;
3082 234035bc 2019-06-01 stsp
3083 234035bc 2019-06-01 stsp if (did_something)
3084 a7648d7a 2019-06-02 stsp printf("Merged commit %s\n", commit_id_str);
3085 234035bc 2019-06-01 stsp done:
3086 234035bc 2019-06-01 stsp if (commit)
3087 234035bc 2019-06-01 stsp got_object_commit_close(commit);
3088 234035bc 2019-06-01 stsp free(commit_id_str);
3089 234035bc 2019-06-01 stsp if (head_ref)
3090 234035bc 2019-06-01 stsp got_ref_close(head_ref);
3091 234035bc 2019-06-01 stsp if (worktree)
3092 234035bc 2019-06-01 stsp got_worktree_close(worktree);
3093 234035bc 2019-06-01 stsp if (repo)
3094 234035bc 2019-06-01 stsp got_repo_close(repo);
3095 c4296144 2019-05-09 stsp return error;
3096 c4296144 2019-05-09 stsp }
3097 5ef14e63 2019-06-02 stsp
3098 5ef14e63 2019-06-02 stsp __dead static void
3099 5ef14e63 2019-06-02 stsp usage_backout(void)
3100 5ef14e63 2019-06-02 stsp {
3101 5ef14e63 2019-06-02 stsp fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
3102 5ef14e63 2019-06-02 stsp exit(1);
3103 5ef14e63 2019-06-02 stsp }
3104 5ef14e63 2019-06-02 stsp
3105 5ef14e63 2019-06-02 stsp static const struct got_error *
3106 5ef14e63 2019-06-02 stsp cmd_backout(int argc, char *argv[])
3107 5ef14e63 2019-06-02 stsp {
3108 5ef14e63 2019-06-02 stsp const struct got_error *error = NULL;
3109 5ef14e63 2019-06-02 stsp struct got_worktree *worktree = NULL;
3110 5ef14e63 2019-06-02 stsp struct got_repository *repo = NULL;
3111 5ef14e63 2019-06-02 stsp char *cwd = NULL, *commit_id_str = NULL;
3112 5ef14e63 2019-06-02 stsp struct got_object_id *commit_id = NULL;
3113 5ef14e63 2019-06-02 stsp struct got_commit_object *commit = NULL;
3114 5ef14e63 2019-06-02 stsp struct got_object_qid *pid;
3115 5ef14e63 2019-06-02 stsp struct got_reference *head_ref = NULL;
3116 5ef14e63 2019-06-02 stsp int ch, did_something = 0;
3117 5ef14e63 2019-06-02 stsp
3118 5ef14e63 2019-06-02 stsp while ((ch = getopt(argc, argv, "")) != -1) {
3119 5ef14e63 2019-06-02 stsp switch (ch) {
3120 5ef14e63 2019-06-02 stsp default:
3121 5ef14e63 2019-06-02 stsp usage_backout();
3122 5ef14e63 2019-06-02 stsp /* NOTREACHED */
3123 5ef14e63 2019-06-02 stsp }
3124 5ef14e63 2019-06-02 stsp }
3125 5ef14e63 2019-06-02 stsp
3126 5ef14e63 2019-06-02 stsp argc -= optind;
3127 5ef14e63 2019-06-02 stsp argv += optind;
3128 5ef14e63 2019-06-02 stsp
3129 5ef14e63 2019-06-02 stsp if (argc != 1)
3130 5ef14e63 2019-06-02 stsp usage_backout();
3131 5ef14e63 2019-06-02 stsp
3132 5ef14e63 2019-06-02 stsp cwd = getcwd(NULL, 0);
3133 5ef14e63 2019-06-02 stsp if (cwd == NULL) {
3134 5ef14e63 2019-06-02 stsp error = got_error_from_errno("getcwd");
3135 5ef14e63 2019-06-02 stsp goto done;
3136 5ef14e63 2019-06-02 stsp }
3137 5ef14e63 2019-06-02 stsp error = got_worktree_open(&worktree, cwd);
3138 5ef14e63 2019-06-02 stsp if (error)
3139 5ef14e63 2019-06-02 stsp goto done;
3140 5ef14e63 2019-06-02 stsp
3141 5ef14e63 2019-06-02 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3142 5ef14e63 2019-06-02 stsp if (error != NULL)
3143 5ef14e63 2019-06-02 stsp goto done;
3144 5ef14e63 2019-06-02 stsp
3145 5ef14e63 2019-06-02 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3146 5ef14e63 2019-06-02 stsp got_worktree_get_root_path(worktree), 0);
3147 5ef14e63 2019-06-02 stsp if (error)
3148 5ef14e63 2019-06-02 stsp goto done;
3149 5ef14e63 2019-06-02 stsp
3150 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
3151 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
3152 5ef14e63 2019-06-02 stsp if (error != NULL) {
3153 5ef14e63 2019-06-02 stsp struct got_reference *ref;
3154 5ef14e63 2019-06-02 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
3155 5ef14e63 2019-06-02 stsp goto done;
3156 5ef14e63 2019-06-02 stsp error = got_ref_open(&ref, repo, argv[0], 0);
3157 5ef14e63 2019-06-02 stsp if (error != NULL)
3158 5ef14e63 2019-06-02 stsp goto done;
3159 5ef14e63 2019-06-02 stsp error = got_ref_resolve(&commit_id, repo, ref);
3160 5ef14e63 2019-06-02 stsp got_ref_close(ref);
3161 5ef14e63 2019-06-02 stsp if (error != NULL)
3162 5ef14e63 2019-06-02 stsp goto done;
3163 5ef14e63 2019-06-02 stsp }
3164 5ef14e63 2019-06-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
3165 5ef14e63 2019-06-02 stsp if (error)
3166 5ef14e63 2019-06-02 stsp goto done;
3167 5ef14e63 2019-06-02 stsp
3168 5ef14e63 2019-06-02 stsp error = got_ref_open(&head_ref, repo,
3169 5ef14e63 2019-06-02 stsp got_worktree_get_head_ref_name(worktree), 0);
3170 5ef14e63 2019-06-02 stsp if (error != NULL)
3171 5ef14e63 2019-06-02 stsp goto done;
3172 5ef14e63 2019-06-02 stsp
3173 5ef14e63 2019-06-02 stsp error = check_same_branch(commit_id, head_ref, repo);
3174 5ef14e63 2019-06-02 stsp if (error)
3175 5ef14e63 2019-06-02 stsp goto done;
3176 5ef14e63 2019-06-02 stsp
3177 5ef14e63 2019-06-02 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3178 5ef14e63 2019-06-02 stsp if (error)
3179 5ef14e63 2019-06-02 stsp goto done;
3180 5ef14e63 2019-06-02 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
3181 5ef14e63 2019-06-02 stsp if (pid == NULL) {
3182 5ef14e63 2019-06-02 stsp error = got_error(GOT_ERR_ROOT_COMMIT);
3183 5ef14e63 2019-06-02 stsp goto done;
3184 5ef14e63 2019-06-02 stsp }
3185 5ef14e63 2019-06-02 stsp
3186 5ef14e63 2019-06-02 stsp error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
3187 5ef14e63 2019-06-02 stsp update_progress, &did_something, check_cancelled, NULL);
3188 5ef14e63 2019-06-02 stsp if (error != NULL)
3189 5ef14e63 2019-06-02 stsp goto done;
3190 5ef14e63 2019-06-02 stsp
3191 5ef14e63 2019-06-02 stsp if (did_something)
3192 a7648d7a 2019-06-02 stsp printf("Backed out commit %s\n", commit_id_str);
3193 5ef14e63 2019-06-02 stsp done:
3194 5ef14e63 2019-06-02 stsp if (commit)
3195 5ef14e63 2019-06-02 stsp got_object_commit_close(commit);
3196 5ef14e63 2019-06-02 stsp free(commit_id_str);
3197 5ef14e63 2019-06-02 stsp if (head_ref)
3198 5ef14e63 2019-06-02 stsp got_ref_close(head_ref);
3199 818c7501 2019-07-11 stsp if (worktree)
3200 818c7501 2019-07-11 stsp got_worktree_close(worktree);
3201 818c7501 2019-07-11 stsp if (repo)
3202 818c7501 2019-07-11 stsp got_repo_close(repo);
3203 818c7501 2019-07-11 stsp return error;
3204 818c7501 2019-07-11 stsp }
3205 818c7501 2019-07-11 stsp
3206 818c7501 2019-07-11 stsp __dead static void
3207 818c7501 2019-07-11 stsp usage_rebase(void)
3208 818c7501 2019-07-11 stsp {
3209 af54c8f8 2019-07-11 stsp fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
3210 af54c8f8 2019-07-11 stsp getprogname());
3211 818c7501 2019-07-11 stsp exit(1);
3212 818c7501 2019-07-11 stsp }
3213 818c7501 2019-07-11 stsp
3214 818c7501 2019-07-11 stsp static const struct got_error *
3215 818c7501 2019-07-11 stsp show_rebase_progress(struct got_commit_object *commit,
3216 818c7501 2019-07-11 stsp struct got_object_id *old_id, struct got_object_id *new_id)
3217 818c7501 2019-07-11 stsp {
3218 818c7501 2019-07-11 stsp const struct got_error *err;
3219 818c7501 2019-07-11 stsp char *old_id_str = NULL, *new_id_str = NULL;
3220 818c7501 2019-07-11 stsp char *logmsg0 = NULL, *logmsg, *nl;
3221 818c7501 2019-07-11 stsp size_t len;
3222 818c7501 2019-07-11 stsp
3223 818c7501 2019-07-11 stsp err = got_object_id_str(&old_id_str, old_id);
3224 818c7501 2019-07-11 stsp if (err)
3225 818c7501 2019-07-11 stsp goto done;
3226 818c7501 2019-07-11 stsp
3227 ff0d2220 2019-07-11 stsp if (new_id) {
3228 ff0d2220 2019-07-11 stsp err = got_object_id_str(&new_id_str, new_id);
3229 ff0d2220 2019-07-11 stsp if (err)
3230 ff0d2220 2019-07-11 stsp goto done;
3231 ff0d2220 2019-07-11 stsp }
3232 818c7501 2019-07-11 stsp
3233 818c7501 2019-07-11 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
3234 818c7501 2019-07-11 stsp if (logmsg0 == NULL) {
3235 818c7501 2019-07-11 stsp err = got_error_from_errno("strdup");
3236 818c7501 2019-07-11 stsp goto done;
3237 818c7501 2019-07-11 stsp }
3238 818c7501 2019-07-11 stsp logmsg = logmsg0;
3239 818c7501 2019-07-11 stsp
3240 818c7501 2019-07-11 stsp while (isspace(logmsg[0]))
3241 818c7501 2019-07-11 stsp logmsg++;
3242 818c7501 2019-07-11 stsp
3243 818c7501 2019-07-11 stsp old_id_str[12] = '\0';
3244 ff0d2220 2019-07-11 stsp if (new_id_str)
3245 ff0d2220 2019-07-11 stsp new_id_str[12] = '\0';
3246 818c7501 2019-07-11 stsp len = strlen(logmsg);
3247 818c7501 2019-07-11 stsp if (len > 42)
3248 818c7501 2019-07-11 stsp len = 42;
3249 818c7501 2019-07-11 stsp logmsg[len] = '\0';
3250 818c7501 2019-07-11 stsp nl = strchr(logmsg, '\n');
3251 818c7501 2019-07-11 stsp if (nl)
3252 818c7501 2019-07-11 stsp *nl = '\0';
3253 ff0d2220 2019-07-11 stsp printf("%s -> %s: %s\n", old_id_str,
3254 ff0d2220 2019-07-11 stsp new_id_str ? new_id_str : "no-op change", logmsg);
3255 818c7501 2019-07-11 stsp done:
3256 818c7501 2019-07-11 stsp free(old_id_str);
3257 818c7501 2019-07-11 stsp free(new_id_str);
3258 818c7501 2019-07-11 stsp free(logmsg0);
3259 818c7501 2019-07-11 stsp return err;
3260 818c7501 2019-07-11 stsp }
3261 818c7501 2019-07-11 stsp
3262 818c7501 2019-07-11 stsp static void
3263 818c7501 2019-07-11 stsp rebase_progress(void *arg, unsigned char status, const char *path)
3264 818c7501 2019-07-11 stsp {
3265 818c7501 2019-07-11 stsp unsigned char *rebase_status = arg;
3266 818c7501 2019-07-11 stsp
3267 818c7501 2019-07-11 stsp while (path[0] == '/')
3268 818c7501 2019-07-11 stsp path++;
3269 818c7501 2019-07-11 stsp printf("%c %s\n", status, path);
3270 818c7501 2019-07-11 stsp
3271 818c7501 2019-07-11 stsp if (*rebase_status == GOT_STATUS_CONFLICT)
3272 818c7501 2019-07-11 stsp return;
3273 818c7501 2019-07-11 stsp if (status == GOT_STATUS_CONFLICT || status == GOT_STATUS_MERGE)
3274 818c7501 2019-07-11 stsp *rebase_status = status;
3275 818c7501 2019-07-11 stsp }
3276 818c7501 2019-07-11 stsp
3277 818c7501 2019-07-11 stsp static const struct got_error *
3278 818c7501 2019-07-11 stsp rebase_complete(struct got_worktree *worktree, struct got_reference *branch,
3279 818c7501 2019-07-11 stsp struct got_reference *new_base_branch, struct got_reference *tmp_branch,
3280 818c7501 2019-07-11 stsp struct got_repository *repo)
3281 818c7501 2019-07-11 stsp {
3282 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n", got_ref_get_name(branch));
3283 818c7501 2019-07-11 stsp return got_worktree_rebase_complete(worktree,
3284 818c7501 2019-07-11 stsp new_base_branch, tmp_branch, branch, repo);
3285 818c7501 2019-07-11 stsp }
3286 818c7501 2019-07-11 stsp
3287 818c7501 2019-07-11 stsp static const struct got_error *
3288 ff0d2220 2019-07-11 stsp rebase_commit(struct got_worktree *worktree, struct got_reference *tmp_branch,
3289 ff0d2220 2019-07-11 stsp struct got_object_id *commit_id, struct got_repository *repo)
3290 ff0d2220 2019-07-11 stsp {
3291 ff0d2220 2019-07-11 stsp const struct got_error *error;
3292 ff0d2220 2019-07-11 stsp struct got_commit_object *commit;
3293 ff0d2220 2019-07-11 stsp struct got_object_id *new_commit_id;
3294 ff0d2220 2019-07-11 stsp
3295 ff0d2220 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3296 ff0d2220 2019-07-11 stsp if (error)
3297 ff0d2220 2019-07-11 stsp return error;
3298 ff0d2220 2019-07-11 stsp
3299 ff0d2220 2019-07-11 stsp error = got_worktree_rebase_commit(&new_commit_id, worktree,
3300 ff0d2220 2019-07-11 stsp tmp_branch, commit, commit_id, repo);
3301 ff0d2220 2019-07-11 stsp if (error) {
3302 ff0d2220 2019-07-11 stsp if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
3303 ff0d2220 2019-07-11 stsp goto done;
3304 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, NULL);
3305 ff0d2220 2019-07-11 stsp } else {
3306 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, new_commit_id);
3307 ff0d2220 2019-07-11 stsp free(new_commit_id);
3308 ff0d2220 2019-07-11 stsp }
3309 ff0d2220 2019-07-11 stsp done:
3310 ff0d2220 2019-07-11 stsp got_object_commit_close(commit);
3311 ff0d2220 2019-07-11 stsp return error;
3312 ff0d2220 2019-07-11 stsp }
3313 ff0d2220 2019-07-11 stsp
3314 ff0d2220 2019-07-11 stsp static const struct got_error *
3315 818c7501 2019-07-11 stsp cmd_rebase(int argc, char *argv[])
3316 818c7501 2019-07-11 stsp {
3317 818c7501 2019-07-11 stsp const struct got_error *error = NULL;
3318 818c7501 2019-07-11 stsp struct got_worktree *worktree = NULL;
3319 818c7501 2019-07-11 stsp struct got_repository *repo = NULL;
3320 818c7501 2019-07-11 stsp char *cwd = NULL;
3321 818c7501 2019-07-11 stsp struct got_reference *branch = NULL;
3322 818c7501 2019-07-11 stsp struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
3323 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL, *parent_id = NULL;
3324 818c7501 2019-07-11 stsp struct got_object_id *resume_commit_id = NULL;
3325 818c7501 2019-07-11 stsp struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
3326 818c7501 2019-07-11 stsp struct got_commit_graph *graph = NULL;
3327 818c7501 2019-07-11 stsp struct got_commit_object *commit = NULL;
3328 818c7501 2019-07-11 stsp int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
3329 818c7501 2019-07-11 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
3330 818c7501 2019-07-11 stsp struct got_object_id_queue commits;
3331 818c7501 2019-07-11 stsp const struct got_object_id_queue *parent_ids;
3332 818c7501 2019-07-11 stsp struct got_object_qid *qid, *pid;
3333 818c7501 2019-07-11 stsp
3334 818c7501 2019-07-11 stsp SIMPLEQ_INIT(&commits);
3335 818c7501 2019-07-11 stsp
3336 818c7501 2019-07-11 stsp while ((ch = getopt(argc, argv, "ac")) != -1) {
3337 818c7501 2019-07-11 stsp switch (ch) {
3338 818c7501 2019-07-11 stsp case 'a':
3339 818c7501 2019-07-11 stsp abort_rebase = 1;
3340 818c7501 2019-07-11 stsp break;
3341 818c7501 2019-07-11 stsp case 'c':
3342 818c7501 2019-07-11 stsp continue_rebase = 1;
3343 818c7501 2019-07-11 stsp break;
3344 818c7501 2019-07-11 stsp default:
3345 818c7501 2019-07-11 stsp usage_rebase();
3346 818c7501 2019-07-11 stsp /* NOTREACHED */
3347 818c7501 2019-07-11 stsp }
3348 818c7501 2019-07-11 stsp }
3349 818c7501 2019-07-11 stsp
3350 818c7501 2019-07-11 stsp argc -= optind;
3351 818c7501 2019-07-11 stsp argv += optind;
3352 818c7501 2019-07-11 stsp
3353 818c7501 2019-07-11 stsp if (abort_rebase && continue_rebase)
3354 818c7501 2019-07-11 stsp usage_rebase();
3355 818c7501 2019-07-11 stsp else if (abort_rebase || continue_rebase) {
3356 818c7501 2019-07-11 stsp if (argc != 0)
3357 818c7501 2019-07-11 stsp usage_rebase();
3358 818c7501 2019-07-11 stsp } else if (argc != 1)
3359 818c7501 2019-07-11 stsp usage_rebase();
3360 818c7501 2019-07-11 stsp
3361 818c7501 2019-07-11 stsp cwd = getcwd(NULL, 0);
3362 818c7501 2019-07-11 stsp if (cwd == NULL) {
3363 818c7501 2019-07-11 stsp error = got_error_from_errno("getcwd");
3364 818c7501 2019-07-11 stsp goto done;
3365 818c7501 2019-07-11 stsp }
3366 818c7501 2019-07-11 stsp error = got_worktree_open(&worktree, cwd);
3367 818c7501 2019-07-11 stsp if (error)
3368 818c7501 2019-07-11 stsp goto done;
3369 818c7501 2019-07-11 stsp
3370 818c7501 2019-07-11 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
3371 818c7501 2019-07-11 stsp if (error != NULL)
3372 818c7501 2019-07-11 stsp goto done;
3373 818c7501 2019-07-11 stsp
3374 818c7501 2019-07-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
3375 818c7501 2019-07-11 stsp got_worktree_get_root_path(worktree), 0);
3376 818c7501 2019-07-11 stsp if (error)
3377 818c7501 2019-07-11 stsp goto done;
3378 818c7501 2019-07-11 stsp
3379 818c7501 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
3380 818c7501 2019-07-11 stsp if (error)
3381 818c7501 2019-07-11 stsp goto done;
3382 818c7501 2019-07-11 stsp
3383 818c7501 2019-07-11 stsp if (rebase_in_progress && abort_rebase) {
3384 818c7501 2019-07-11 stsp int did_something;
3385 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
3386 818c7501 2019-07-11 stsp &new_base_branch, &tmp_branch, &branch, worktree, repo);
3387 818c7501 2019-07-11 stsp if (error)
3388 818c7501 2019-07-11 stsp goto done;
3389 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n",
3390 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch));
3391 818c7501 2019-07-11 stsp error = got_worktree_rebase_abort(worktree, repo,
3392 818c7501 2019-07-11 stsp new_base_branch, update_progress, &did_something);
3393 818c7501 2019-07-11 stsp if (error)
3394 818c7501 2019-07-11 stsp goto done;
3395 818c7501 2019-07-11 stsp printf("Rebase of %s aborted\n", got_ref_get_name(branch));
3396 818c7501 2019-07-11 stsp goto done; /* nothing else to do */
3397 818c7501 2019-07-11 stsp } else if (abort_rebase) {
3398 818c7501 2019-07-11 stsp error = got_error(GOT_ERR_NOT_REBASING);
3399 818c7501 2019-07-11 stsp goto done;
3400 818c7501 2019-07-11 stsp }
3401 818c7501 2019-07-11 stsp
3402 818c7501 2019-07-11 stsp if (continue_rebase) {
3403 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
3404 818c7501 2019-07-11 stsp &new_base_branch, &tmp_branch, &branch, worktree, repo);
3405 818c7501 2019-07-11 stsp if (error)
3406 818c7501 2019-07-11 stsp goto done;
3407 818c7501 2019-07-11 stsp
3408 ff0d2220 2019-07-11 stsp error = rebase_commit(worktree, tmp_branch, resume_commit_id,
3409 ff0d2220 2019-07-11 stsp repo);
3410 818c7501 2019-07-11 stsp if (error)
3411 818c7501 2019-07-11 stsp goto done;
3412 818c7501 2019-07-11 stsp
3413 ff0d2220 2019-07-11 stsp yca_id = got_object_id_dup(resume_commit_id);
3414 ff0d2220 2019-07-11 stsp if (yca_id == NULL) {
3415 818c7501 2019-07-11 stsp error = got_error_from_errno("got_object_id_dup");
3416 818c7501 2019-07-11 stsp goto done;
3417 818c7501 2019-07-11 stsp }
3418 818c7501 2019-07-11 stsp } else {
3419 818c7501 2019-07-11 stsp error = got_ref_open(&branch, repo, argv[0], 0);
3420 818c7501 2019-07-11 stsp if (error != NULL)
3421 818c7501 2019-07-11 stsp goto done;
3422 818c7501 2019-07-11 stsp
3423 818c7501 2019-07-11 stsp error = check_same_branch(
3424 818c7501 2019-07-11 stsp got_worktree_get_base_commit_id(worktree), branch, repo);
3425 818c7501 2019-07-11 stsp if (error) {
3426 818c7501 2019-07-11 stsp if (error->code != GOT_ERR_ANCESTRY)
3427 818c7501 2019-07-11 stsp goto done;
3428 818c7501 2019-07-11 stsp error = NULL;
3429 818c7501 2019-07-11 stsp } else {
3430 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
3431 818c7501 2019-07-11 stsp "specified branch resolves to a commit which "
3432 818c7501 2019-07-11 stsp "is already contained in work tree's branch");
3433 818c7501 2019-07-11 stsp goto done;
3434 818c7501 2019-07-11 stsp }
3435 ff0d2220 2019-07-11 stsp }
3436 818c7501 2019-07-11 stsp
3437 ff0d2220 2019-07-11 stsp error = got_ref_resolve(&branch_head_commit_id, repo, branch);
3438 ff0d2220 2019-07-11 stsp if (error)
3439 ff0d2220 2019-07-11 stsp goto done;
3440 ff0d2220 2019-07-11 stsp
3441 ff0d2220 2019-07-11 stsp if (!continue_rebase) {
3442 818c7501 2019-07-11 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
3443 818c7501 2019-07-11 stsp got_worktree_get_base_commit_id(worktree),
3444 818c7501 2019-07-11 stsp branch_head_commit_id, repo);
3445 818c7501 2019-07-11 stsp if (error)
3446 818c7501 2019-07-11 stsp goto done;
3447 818c7501 2019-07-11 stsp if (yca_id == NULL) {
3448 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
3449 818c7501 2019-07-11 stsp "specified branch shares no common ancestry "
3450 818c7501 2019-07-11 stsp "with work tree's branch");
3451 818c7501 2019-07-11 stsp goto done;
3452 818c7501 2019-07-11 stsp }
3453 818c7501 2019-07-11 stsp
3454 818c7501 2019-07-11 stsp error = got_worktree_rebase_prepare(&new_base_branch,
3455 818c7501 2019-07-11 stsp &tmp_branch, worktree, branch, repo);
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
3460 ff0d2220 2019-07-11 stsp commit_id = branch_head_commit_id;
3461 818c7501 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
3462 818c7501 2019-07-11 stsp if (error)
3463 818c7501 2019-07-11 stsp goto done;
3464 818c7501 2019-07-11 stsp
3465 818c7501 2019-07-11 stsp error = got_commit_graph_open(&graph, commit_id, "/", 1, repo);
3466 818c7501 2019-07-11 stsp if (error)
3467 818c7501 2019-07-11 stsp goto done;
3468 818c7501 2019-07-11 stsp parent_ids = got_object_commit_get_parent_ids(commit);
3469 818c7501 2019-07-11 stsp pid = SIMPLEQ_FIRST(parent_ids);
3470 818c7501 2019-07-11 stsp error = got_commit_graph_iter_start(graph, pid->id, repo);
3471 818c7501 2019-07-11 stsp got_object_commit_close(commit);
3472 818c7501 2019-07-11 stsp commit = NULL;
3473 818c7501 2019-07-11 stsp if (error)
3474 818c7501 2019-07-11 stsp goto done;
3475 818c7501 2019-07-11 stsp while (got_object_id_cmp(commit_id, yca_id) != 0) {
3476 818c7501 2019-07-11 stsp error = got_commit_graph_iter_next(&parent_id, graph);
3477 818c7501 2019-07-11 stsp if (error) {
3478 818c7501 2019-07-11 stsp if (error->code == GOT_ERR_ITER_COMPLETED) {
3479 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
3480 818c7501 2019-07-11 stsp "ran out of commits to rebase before "
3481 818c7501 2019-07-11 stsp "youngest common ancestor commit has "
3482 818c7501 2019-07-11 stsp "been reached?!?");
3483 818c7501 2019-07-11 stsp goto done;
3484 818c7501 2019-07-11 stsp } else if (error->code != GOT_ERR_ITER_NEED_MORE)
3485 818c7501 2019-07-11 stsp goto done;
3486 818c7501 2019-07-11 stsp error = got_commit_graph_fetch_commits(graph, 1, repo);
3487 818c7501 2019-07-11 stsp if (error)
3488 818c7501 2019-07-11 stsp goto done;
3489 818c7501 2019-07-11 stsp } else {
3490 818c7501 2019-07-11 stsp error = got_object_qid_alloc(&qid, commit_id);
3491 818c7501 2019-07-11 stsp if (error)
3492 818c7501 2019-07-11 stsp goto done;
3493 818c7501 2019-07-11 stsp SIMPLEQ_INSERT_HEAD(&commits, qid, entry);
3494 818c7501 2019-07-11 stsp commit_id = parent_id;
3495 818c7501 2019-07-11 stsp }
3496 818c7501 2019-07-11 stsp }
3497 818c7501 2019-07-11 stsp
3498 818c7501 2019-07-11 stsp if (SIMPLEQ_EMPTY(&commits)) {
3499 ff0d2220 2019-07-11 stsp if (continue_rebase)
3500 ff0d2220 2019-07-11 stsp error = rebase_complete(worktree, branch,
3501 ff0d2220 2019-07-11 stsp new_base_branch, tmp_branch, repo);
3502 ff0d2220 2019-07-11 stsp else
3503 ff0d2220 2019-07-11 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
3504 818c7501 2019-07-11 stsp goto done;
3505 818c7501 2019-07-11 stsp }
3506 818c7501 2019-07-11 stsp
3507 818c7501 2019-07-11 stsp pid = NULL;
3508 818c7501 2019-07-11 stsp SIMPLEQ_FOREACH(qid, &commits, entry) {
3509 818c7501 2019-07-11 stsp commit_id = qid->id;
3510 818c7501 2019-07-11 stsp parent_id = pid ? pid->id : yca_id;
3511 818c7501 2019-07-11 stsp pid = qid;
3512 818c7501 2019-07-11 stsp
3513 818c7501 2019-07-11 stsp error = got_worktree_rebase_merge_files(worktree, parent_id,
3514 818c7501 2019-07-11 stsp commit_id, repo, rebase_progress, &rebase_status,
3515 818c7501 2019-07-11 stsp check_cancelled, NULL);
3516 818c7501 2019-07-11 stsp if (error)
3517 818c7501 2019-07-11 stsp goto done;
3518 818c7501 2019-07-11 stsp
3519 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT)
3520 818c7501 2019-07-11 stsp break;
3521 818c7501 2019-07-11 stsp
3522 ff0d2220 2019-07-11 stsp error = rebase_commit(worktree, tmp_branch, commit_id, repo);
3523 818c7501 2019-07-11 stsp if (error)
3524 818c7501 2019-07-11 stsp goto done;
3525 818c7501 2019-07-11 stsp }
3526 818c7501 2019-07-11 stsp
3527 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
3528 818c7501 2019-07-11 stsp error = got_worktree_rebase_postpone(worktree);
3529 818c7501 2019-07-11 stsp if (error)
3530 818c7501 2019-07-11 stsp goto done;
3531 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
3532 818c7501 2019-07-11 stsp "conflicts must be resolved before rebase can be resumed");
3533 818c7501 2019-07-11 stsp } else
3534 818c7501 2019-07-11 stsp error = rebase_complete(worktree, branch, new_base_branch,
3535 818c7501 2019-07-11 stsp tmp_branch, repo);
3536 818c7501 2019-07-11 stsp done:
3537 818c7501 2019-07-11 stsp got_object_id_queue_free(&commits);
3538 818c7501 2019-07-11 stsp free(branch_head_commit_id);
3539 818c7501 2019-07-11 stsp free(resume_commit_id);
3540 818c7501 2019-07-11 stsp free(yca_id);
3541 818c7501 2019-07-11 stsp if (graph)
3542 818c7501 2019-07-11 stsp got_commit_graph_close(graph);
3543 818c7501 2019-07-11 stsp if (commit)
3544 818c7501 2019-07-11 stsp got_object_commit_close(commit);
3545 818c7501 2019-07-11 stsp if (branch)
3546 818c7501 2019-07-11 stsp got_ref_close(branch);
3547 818c7501 2019-07-11 stsp if (new_base_branch)
3548 818c7501 2019-07-11 stsp got_ref_close(new_base_branch);
3549 818c7501 2019-07-11 stsp if (tmp_branch)
3550 818c7501 2019-07-11 stsp got_ref_close(tmp_branch);
3551 5ef14e63 2019-06-02 stsp if (worktree)
3552 5ef14e63 2019-06-02 stsp got_worktree_close(worktree);
3553 5ef14e63 2019-06-02 stsp if (repo)
3554 5ef14e63 2019-06-02 stsp got_repo_close(repo);
3555 5ef14e63 2019-06-02 stsp return error;
3556 5ef14e63 2019-06-02 stsp }