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 99437157 2018-11-11 stsp #include <signal.h>
29 5c860e29 2018-03-12 stsp #include <stdio.h>
30 5c860e29 2018-03-12 stsp #include <stdlib.h>
31 5c860e29 2018-03-12 stsp #include <string.h>
32 5c860e29 2018-03-12 stsp #include <unistd.h>
33 c09a553d 2018-03-12 stsp #include <libgen.h>
34 c0768b0f 2018-06-10 stsp #include <time.h>
35 33ad4cbe 2019-05-12 jcs #include <paths.h>
36 5c860e29 2018-03-12 stsp
37 f42b1b34 2018-03-12 stsp #include "got_error.h"
38 f42b1b34 2018-03-12 stsp #include "got_object.h"
39 5261c201 2018-04-01 stsp #include "got_reference.h"
40 f42b1b34 2018-03-12 stsp #include "got_repository.h"
41 1dd54920 2019-05-11 stsp #include "got_path.h"
42 c09a553d 2018-03-12 stsp #include "got_worktree.h"
43 79109fed 2018-03-27 stsp #include "got_diff.h"
44 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
45 404c43c4 2018-06-21 stsp #include "got_blame.h"
46 63219cd2 2019-01-04 stsp #include "got_privsep.h"
47 793c30b5 2019-05-13 stsp #include "got_opentemp.h"
48 5c860e29 2018-03-12 stsp
49 5c860e29 2018-03-12 stsp #ifndef nitems
50 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
51 5c860e29 2018-03-12 stsp #endif
52 99437157 2018-11-11 stsp
53 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
54 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
55 99437157 2018-11-11 stsp
56 99437157 2018-11-11 stsp static void
57 99437157 2018-11-11 stsp catch_sigint(int signo)
58 99437157 2018-11-11 stsp {
59 99437157 2018-11-11 stsp sigint_received = 1;
60 99437157 2018-11-11 stsp }
61 99437157 2018-11-11 stsp
62 99437157 2018-11-11 stsp static void
63 99437157 2018-11-11 stsp catch_sigpipe(int signo)
64 99437157 2018-11-11 stsp {
65 99437157 2018-11-11 stsp sigpipe_received = 1;
66 99437157 2018-11-11 stsp }
67 5c860e29 2018-03-12 stsp
68 99437157 2018-11-11 stsp
69 5c860e29 2018-03-12 stsp struct cmd {
70 5c860e29 2018-03-12 stsp const char *cmd_name;
71 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
72 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
73 46a0db7d 2018-03-12 stsp const char *cmd_descr;
74 5c860e29 2018-03-12 stsp };
75 5c860e29 2018-03-12 stsp
76 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
77 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
78 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
79 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
80 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
81 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
82 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
83 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
84 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
85 d00136be 2019-03-26 stsp __dead static void usage_add(void);
86 2ec1f75b 2019-03-26 stsp __dead static void usage_rm(void);
87 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
88 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
89 5c860e29 2018-03-12 stsp
90 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
91 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
92 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
93 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
94 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
95 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
96 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
97 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
98 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
99 2ec1f75b 2019-03-26 stsp static const struct got_error* cmd_rm(int, char *[]);
100 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
101 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
102 5c860e29 2018-03-12 stsp
103 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
104 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
105 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
106 507dc3bb 2018-12-29 stsp { "update", cmd_update, usage_update,
107 507dc3bb 2018-12-29 stsp "update a work tree to a different commit" },
108 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
109 1b6b95a8 2018-03-12 stsp "show repository history" },
110 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
111 b00d56cd 2018-04-01 stsp "compare files and directories" },
112 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
113 a67e2392 2019-03-26 stsp "show when lines in a file were changed" },
114 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
115 a67e2392 2019-03-26 stsp "list files and directories in repository" },
116 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
117 1b6b95a8 2018-03-12 stsp "show modification status of files" },
118 d0eebce4 2019-03-11 stsp { "ref", cmd_ref, usage_ref,
119 d0eebce4 2019-03-11 stsp "manage references in repository" },
120 d00136be 2019-03-26 stsp { "add", cmd_add, usage_add,
121 bd14628f 2019-05-12 stsp "add new files to version control" },
122 2ec1f75b 2019-03-26 stsp { "rm", cmd_rm, usage_rm,
123 2ec1f75b 2019-03-26 stsp "remove a versioned file" },
124 a129376b 2019-03-28 stsp { "revert", cmd_revert, usage_revert,
125 a129376b 2019-03-28 stsp "revert uncommitted changes" },
126 c4296144 2019-05-09 stsp { "commit", cmd_commit, usage_commit,
127 5501382f 2019-05-10 stsp "write changes from work tree to repository" },
128 5c860e29 2018-03-12 stsp };
129 5c860e29 2018-03-12 stsp
130 5c860e29 2018-03-12 stsp int
131 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
132 5c860e29 2018-03-12 stsp {
133 5c860e29 2018-03-12 stsp struct cmd *cmd;
134 5c860e29 2018-03-12 stsp unsigned int i;
135 5c860e29 2018-03-12 stsp int ch;
136 1b6b95a8 2018-03-12 stsp int hflag = 0;
137 5c860e29 2018-03-12 stsp
138 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
139 5c860e29 2018-03-12 stsp
140 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
141 5c860e29 2018-03-12 stsp switch (ch) {
142 1b6b95a8 2018-03-12 stsp case 'h':
143 1b6b95a8 2018-03-12 stsp hflag = 1;
144 1b6b95a8 2018-03-12 stsp break;
145 5c860e29 2018-03-12 stsp default:
146 5c860e29 2018-03-12 stsp usage();
147 5c860e29 2018-03-12 stsp /* NOTREACHED */
148 5c860e29 2018-03-12 stsp }
149 5c860e29 2018-03-12 stsp }
150 5c860e29 2018-03-12 stsp
151 5c860e29 2018-03-12 stsp argc -= optind;
152 5c860e29 2018-03-12 stsp argv += optind;
153 1e70621d 2018-03-27 stsp optind = 0;
154 5c860e29 2018-03-12 stsp
155 5c860e29 2018-03-12 stsp if (argc <= 0)
156 5c860e29 2018-03-12 stsp usage();
157 5c860e29 2018-03-12 stsp
158 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
159 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
160 99437157 2018-11-11 stsp
161 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
162 d7d4f210 2018-03-12 stsp const struct got_error *error;
163 d7d4f210 2018-03-12 stsp
164 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
165 5c860e29 2018-03-12 stsp
166 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
167 5c860e29 2018-03-12 stsp continue;
168 5c860e29 2018-03-12 stsp
169 1b6b95a8 2018-03-12 stsp if (hflag)
170 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
171 1b6b95a8 2018-03-12 stsp
172 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
173 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
174 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
175 d7d4f210 2018-03-12 stsp return 1;
176 d7d4f210 2018-03-12 stsp }
177 d7d4f210 2018-03-12 stsp
178 d7d4f210 2018-03-12 stsp return 0;
179 5c860e29 2018-03-12 stsp }
180 5c860e29 2018-03-12 stsp
181 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
182 5c860e29 2018-03-12 stsp return 1;
183 5c860e29 2018-03-12 stsp }
184 5c860e29 2018-03-12 stsp
185 4ed7e80c 2018-05-20 stsp __dead static void
186 5c860e29 2018-03-12 stsp usage(void)
187 5c860e29 2018-03-12 stsp {
188 46a0db7d 2018-03-12 stsp int i;
189 46a0db7d 2018-03-12 stsp
190 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
191 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
192 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
193 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
194 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
195 46a0db7d 2018-03-12 stsp }
196 5c860e29 2018-03-12 stsp exit(1);
197 5c860e29 2018-03-12 stsp }
198 5c860e29 2018-03-12 stsp
199 0266afb7 2019-01-04 stsp static const struct got_error *
200 0ee7065d 2019-05-13 stsp get_editor(char **abspath)
201 e2ba3d07 2019-05-13 stsp {
202 0ee7065d 2019-05-13 stsp const struct got_error *err = NULL;
203 e2ba3d07 2019-05-13 stsp const char *editor;
204 e2ba3d07 2019-05-13 stsp
205 e2ba3d07 2019-05-13 stsp editor = getenv("VISUAL");
206 e2ba3d07 2019-05-13 stsp if (editor == NULL)
207 e2ba3d07 2019-05-13 stsp editor = getenv("EDITOR");
208 e2ba3d07 2019-05-13 stsp
209 0ee7065d 2019-05-13 stsp if (editor) {
210 0ee7065d 2019-05-13 stsp err = got_path_find_prog(abspath, editor);
211 0ee7065d 2019-05-13 stsp if (err)
212 0ee7065d 2019-05-13 stsp return err;
213 0ee7065d 2019-05-13 stsp }
214 e2ba3d07 2019-05-13 stsp
215 0ee7065d 2019-05-13 stsp if (*abspath == NULL) {
216 0ee7065d 2019-05-13 stsp *abspath = strdup("/bin/ed");
217 0ee7065d 2019-05-13 stsp if (*abspath == NULL)
218 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
219 0ee7065d 2019-05-13 stsp }
220 0ee7065d 2019-05-13 stsp
221 e2ba3d07 2019-05-13 stsp return NULL;
222 e2ba3d07 2019-05-13 stsp }
223 e2ba3d07 2019-05-13 stsp
224 e2ba3d07 2019-05-13 stsp static const struct got_error *
225 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
226 314a6357 2019-05-13 stsp const char *worktree_path, int create_worktree)
227 0266afb7 2019-01-04 stsp {
228 163ce85a 2019-05-13 stsp const struct got_error *err;
229 0266afb7 2019-01-04 stsp
230 a0937847 2019-05-11 stsp if (create_worktree) {
231 a0937847 2019-05-11 stsp /* Pre-create work tree path to avoid unveiling its parents. */
232 163ce85a 2019-05-13 stsp err = got_path_mkdir(worktree_path);
233 3c45a30a 2019-05-12 jcs
234 3c45a30a 2019-05-12 jcs if (errno == EEXIST) {
235 280f921b 2019-05-12 stsp if (got_path_dir_is_empty(worktree_path)) {
236 3c45a30a 2019-05-12 jcs errno = 0;
237 163ce85a 2019-05-13 stsp err = NULL;
238 3c45a30a 2019-05-12 jcs } else {
239 df056ada 2019-05-15 stsp err = got_error_path(worktree_path,
240 df056ada 2019-05-15 stsp GOT_ERR_DIR_NOT_EMPTY);
241 3c45a30a 2019-05-12 jcs }
242 3c45a30a 2019-05-12 jcs }
243 3c45a30a 2019-05-12 jcs
244 163ce85a 2019-05-13 stsp if (err && (err->code != GOT_ERR_ERRNO || errno != EISDIR))
245 163ce85a 2019-05-13 stsp return err;
246 a0937847 2019-05-11 stsp }
247 a0937847 2019-05-11 stsp
248 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
249 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
250 0266afb7 2019-01-04 stsp
251 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
252 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
253 0266afb7 2019-01-04 stsp
254 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
255 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", "/tmp");
256 0266afb7 2019-01-04 stsp
257 163ce85a 2019-05-13 stsp err = got_privsep_unveil_exec_helpers();
258 163ce85a 2019-05-13 stsp if (err != NULL)
259 163ce85a 2019-05-13 stsp return err;
260 0266afb7 2019-01-04 stsp
261 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
262 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
263 0266afb7 2019-01-04 stsp
264 0266afb7 2019-01-04 stsp return NULL;
265 0266afb7 2019-01-04 stsp }
266 0266afb7 2019-01-04 stsp
267 4ed7e80c 2018-05-20 stsp __dead static void
268 c09a553d 2018-03-12 stsp usage_checkout(void)
269 c09a553d 2018-03-12 stsp {
270 08573d5b 2019-05-14 stsp fprintf(stderr, "usage: %s checkout [-b branch] [-c commit] "
271 08573d5b 2019-05-14 stsp "[-p prefix] repository-path [worktree-path]\n", getprogname());
272 c09a553d 2018-03-12 stsp exit(1);
273 92a684f4 2018-03-12 stsp }
274 92a684f4 2018-03-12 stsp
275 92a684f4 2018-03-12 stsp static void
276 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
277 92a684f4 2018-03-12 stsp {
278 92a684f4 2018-03-12 stsp char *worktree_path = arg;
279 92a684f4 2018-03-12 stsp
280 92a684f4 2018-03-12 stsp while (path[0] == '/')
281 92a684f4 2018-03-12 stsp path++;
282 92a684f4 2018-03-12 stsp
283 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
284 99437157 2018-11-11 stsp }
285 99437157 2018-11-11 stsp
286 99437157 2018-11-11 stsp static const struct got_error *
287 6bad629b 2019-02-04 stsp check_cancelled(void *arg)
288 99437157 2018-11-11 stsp {
289 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
290 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
291 99437157 2018-11-11 stsp return NULL;
292 8069f636 2019-01-12 stsp }
293 8069f636 2019-01-12 stsp
294 8069f636 2019-01-12 stsp static const struct got_error *
295 024e9686 2019-05-14 stsp check_linear_ancestry(struct got_object_id *commit_id,
296 024e9686 2019-05-14 stsp struct got_object_id *base_commit_id, struct got_repository *repo)
297 8069f636 2019-01-12 stsp {
298 d5bea539 2019-05-13 stsp const struct got_error *err = NULL;
299 024e9686 2019-05-14 stsp struct got_object_id *yca_id;
300 8069f636 2019-01-12 stsp
301 d5bea539 2019-05-13 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
302 d5bea539 2019-05-13 stsp commit_id, base_commit_id, repo);
303 36a38700 2019-05-10 stsp if (err)
304 36a38700 2019-05-10 stsp return err;
305 8069f636 2019-01-12 stsp
306 d5bea539 2019-05-13 stsp if (yca_id == NULL)
307 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
308 8069f636 2019-01-12 stsp
309 d5bea539 2019-05-13 stsp /*
310 d5bea539 2019-05-13 stsp * Require a straight line of history between the target commit
311 d5bea539 2019-05-13 stsp * and the work tree's base commit.
312 d5bea539 2019-05-13 stsp *
313 d5751d49 2019-05-14 stsp * Non-linear situations such as this require a rebase:
314 d5bea539 2019-05-13 stsp *
315 d5bea539 2019-05-13 stsp * (commit) D F (base_commit)
316 d5bea539 2019-05-13 stsp * \ /
317 d5bea539 2019-05-13 stsp * C E
318 d5bea539 2019-05-13 stsp * \ /
319 d5bea539 2019-05-13 stsp * B (yca)
320 d5bea539 2019-05-13 stsp * |
321 d5bea539 2019-05-13 stsp * A
322 d5bea539 2019-05-13 stsp *
323 d5bea539 2019-05-13 stsp * 'got update' only handles linear cases:
324 d5bea539 2019-05-13 stsp * Update forwards in time: A (base/yca) - B - C - D (commit)
325 efa2b6f7 2019-05-14 stsp * Update backwards in time: D (base) - C - B - A (commit/yca)
326 d5bea539 2019-05-13 stsp */
327 d5bea539 2019-05-13 stsp if (got_object_id_cmp(commit_id, yca_id) != 0 &&
328 d5bea539 2019-05-13 stsp got_object_id_cmp(base_commit_id, yca_id) != 0)
329 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
330 8069f636 2019-01-12 stsp
331 d5bea539 2019-05-13 stsp free(yca_id);
332 d5bea539 2019-05-13 stsp return NULL;
333 c09a553d 2018-03-12 stsp }
334 a367ff0f 2019-05-14 stsp
335 a367ff0f 2019-05-14 stsp static const struct got_error *
336 a367ff0f 2019-05-14 stsp check_same_branch(struct got_object_id *commit_id,
337 a367ff0f 2019-05-14 stsp struct got_reference *head_ref, struct got_repository *repo)
338 a367ff0f 2019-05-14 stsp {
339 a367ff0f 2019-05-14 stsp const struct got_error *err = NULL;
340 a367ff0f 2019-05-14 stsp struct got_commit_graph *graph = NULL;
341 a367ff0f 2019-05-14 stsp struct got_object_id *head_commit_id = NULL;
342 a367ff0f 2019-05-14 stsp int is_same_branch = 0;
343 a367ff0f 2019-05-14 stsp
344 a367ff0f 2019-05-14 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
345 a367ff0f 2019-05-14 stsp if (err)
346 a367ff0f 2019-05-14 stsp goto done;
347 a367ff0f 2019-05-14 stsp
348 a367ff0f 2019-05-14 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
349 a367ff0f 2019-05-14 stsp if (err)
350 a367ff0f 2019-05-14 stsp goto done;
351 a367ff0f 2019-05-14 stsp
352 a367ff0f 2019-05-14 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo);
353 a367ff0f 2019-05-14 stsp if (err)
354 a367ff0f 2019-05-14 stsp goto done;
355 a367ff0f 2019-05-14 stsp
356 a367ff0f 2019-05-14 stsp for (;;) {
357 a367ff0f 2019-05-14 stsp struct got_object_id *id;
358 a367ff0f 2019-05-14 stsp err = got_commit_graph_iter_next(&id, graph);
359 a367ff0f 2019-05-14 stsp if (err) {
360 a367ff0f 2019-05-14 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
361 a367ff0f 2019-05-14 stsp err = NULL;
362 a367ff0f 2019-05-14 stsp break;
363 a367ff0f 2019-05-14 stsp }
364 a367ff0f 2019-05-14 stsp else if (err->code != GOT_ERR_ITER_NEED_MORE)
365 a367ff0f 2019-05-14 stsp break;
366 a367ff0f 2019-05-14 stsp err = got_commit_graph_fetch_commits(graph, 1,
367 a367ff0f 2019-05-14 stsp repo);
368 a367ff0f 2019-05-14 stsp if (err)
369 a367ff0f 2019-05-14 stsp break;
370 a367ff0f 2019-05-14 stsp }
371 c09a553d 2018-03-12 stsp
372 a367ff0f 2019-05-14 stsp if (id) {
373 a367ff0f 2019-05-14 stsp if (got_object_id_cmp(id, commit_id) == 0) {
374 a367ff0f 2019-05-14 stsp is_same_branch = 1;
375 a367ff0f 2019-05-14 stsp break;
376 a367ff0f 2019-05-14 stsp }
377 a367ff0f 2019-05-14 stsp }
378 a367ff0f 2019-05-14 stsp }
379 a367ff0f 2019-05-14 stsp done:
380 a367ff0f 2019-05-14 stsp if (graph)
381 a367ff0f 2019-05-14 stsp got_commit_graph_close(graph);
382 a367ff0f 2019-05-14 stsp free(head_commit_id);
383 a367ff0f 2019-05-14 stsp if (!err && !is_same_branch)
384 a367ff0f 2019-05-14 stsp err = got_error(GOT_ERR_ANCESTRY);
385 a367ff0f 2019-05-14 stsp return err;
386 a367ff0f 2019-05-14 stsp }
387 8069f636 2019-01-12 stsp
388 4ed7e80c 2018-05-20 stsp static const struct got_error *
389 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
390 c09a553d 2018-03-12 stsp {
391 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
392 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
393 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
394 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
395 c09a553d 2018-03-12 stsp char *repo_path = NULL;
396 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
397 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
398 08573d5b 2019-05-14 stsp const char *branch_name = GOT_REF_HEAD;
399 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
400 72151b04 2019-05-11 stsp int ch, same_path_prefix;
401 c09a553d 2018-03-12 stsp
402 08573d5b 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:p:")) != -1) {
403 0bb8a95e 2018-03-12 stsp switch (ch) {
404 08573d5b 2019-05-14 stsp case 'b':
405 08573d5b 2019-05-14 stsp branch_name = optarg;
406 08573d5b 2019-05-14 stsp break;
407 8069f636 2019-01-12 stsp case 'c':
408 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
409 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
410 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
411 8069f636 2019-01-12 stsp break;
412 0bb8a95e 2018-03-12 stsp case 'p':
413 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
414 0bb8a95e 2018-03-12 stsp break;
415 0bb8a95e 2018-03-12 stsp default:
416 2deda0b9 2019-03-07 stsp usage_checkout();
417 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
418 0bb8a95e 2018-03-12 stsp }
419 0bb8a95e 2018-03-12 stsp }
420 0bb8a95e 2018-03-12 stsp
421 0bb8a95e 2018-03-12 stsp argc -= optind;
422 0bb8a95e 2018-03-12 stsp argv += optind;
423 0bb8a95e 2018-03-12 stsp
424 6715a751 2018-03-16 stsp #ifndef PROFILE
425 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
426 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
427 c09a553d 2018-03-12 stsp err(1, "pledge");
428 6715a751 2018-03-16 stsp #endif
429 0bb8a95e 2018-03-12 stsp if (argc == 1) {
430 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
431 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
432 76089277 2018-04-01 stsp if (repo_path == NULL)
433 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
434 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
435 76089277 2018-04-01 stsp if (cwd == NULL) {
436 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
437 76089277 2018-04-01 stsp goto done;
438 76089277 2018-04-01 stsp }
439 230a42bd 2019-05-11 jcs if (path_prefix[0]) {
440 230a42bd 2019-05-11 jcs base = basename(path_prefix);
441 230a42bd 2019-05-11 jcs if (base == NULL) {
442 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
443 230a42bd 2019-05-11 jcs path_prefix);
444 230a42bd 2019-05-11 jcs goto done;
445 230a42bd 2019-05-11 jcs }
446 230a42bd 2019-05-11 jcs } else {
447 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
448 230a42bd 2019-05-11 jcs if (base == NULL) {
449 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
450 230a42bd 2019-05-11 jcs repo_path);
451 230a42bd 2019-05-11 jcs goto done;
452 230a42bd 2019-05-11 jcs }
453 76089277 2018-04-01 stsp }
454 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
455 c09a553d 2018-03-12 stsp if (dotgit)
456 c09a553d 2018-03-12 stsp *dotgit = '\0';
457 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
458 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
459 c09a553d 2018-03-12 stsp free(cwd);
460 76089277 2018-04-01 stsp goto done;
461 c09a553d 2018-03-12 stsp }
462 c09a553d 2018-03-12 stsp free(cwd);
463 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
464 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
465 76089277 2018-04-01 stsp if (repo_path == NULL) {
466 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
467 76089277 2018-04-01 stsp goto done;
468 76089277 2018-04-01 stsp }
469 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
470 76089277 2018-04-01 stsp if (worktree_path == NULL) {
471 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[1]);
472 76089277 2018-04-01 stsp goto done;
473 76089277 2018-04-01 stsp }
474 c09a553d 2018-03-12 stsp } else
475 c09a553d 2018-03-12 stsp usage_checkout();
476 c09a553d 2018-03-12 stsp
477 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
478 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(worktree_path);
479 13bfb272 2019-05-10 jcs
480 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
481 c09a553d 2018-03-12 stsp if (error != NULL)
482 c02c541e 2019-03-29 stsp goto done;
483 c02c541e 2019-03-29 stsp
484 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path, 1);
485 c02c541e 2019-03-29 stsp if (error)
486 c09a553d 2018-03-12 stsp goto done;
487 8069f636 2019-01-12 stsp
488 08573d5b 2019-05-14 stsp error = got_ref_open(&head_ref, repo, branch_name, 0);
489 c09a553d 2018-03-12 stsp if (error != NULL)
490 c09a553d 2018-03-12 stsp goto done;
491 c09a553d 2018-03-12 stsp
492 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
493 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
494 c09a553d 2018-03-12 stsp goto done;
495 c09a553d 2018-03-12 stsp
496 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
497 c09a553d 2018-03-12 stsp if (error != NULL)
498 c09a553d 2018-03-12 stsp goto done;
499 c09a553d 2018-03-12 stsp
500 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
501 e5dc7198 2018-12-29 stsp path_prefix);
502 e5dc7198 2018-12-29 stsp if (error != NULL)
503 e5dc7198 2018-12-29 stsp goto done;
504 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
505 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
506 49520a32 2018-12-29 stsp goto done;
507 49520a32 2018-12-29 stsp }
508 49520a32 2018-12-29 stsp
509 8069f636 2019-01-12 stsp if (commit_id_str) {
510 8069f636 2019-01-12 stsp struct got_object_id *commit_id;
511 8069f636 2019-01-12 stsp error = got_object_resolve_id_str(&commit_id, repo,
512 8069f636 2019-01-12 stsp commit_id_str);
513 8069f636 2019-01-12 stsp if (error != NULL)
514 8069f636 2019-01-12 stsp goto done;
515 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
516 024e9686 2019-05-14 stsp got_worktree_get_base_commit_id(worktree), repo);
517 8069f636 2019-01-12 stsp if (error != NULL) {
518 8069f636 2019-01-12 stsp free(commit_id);
519 8069f636 2019-01-12 stsp goto done;
520 8069f636 2019-01-12 stsp }
521 45d344f6 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
522 45d344f6 2019-05-14 stsp if (error)
523 45d344f6 2019-05-14 stsp goto done;
524 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
525 8069f636 2019-01-12 stsp commit_id);
526 8069f636 2019-01-12 stsp free(commit_id);
527 8069f636 2019-01-12 stsp if (error)
528 8069f636 2019-01-12 stsp goto done;
529 8069f636 2019-01-12 stsp }
530 8069f636 2019-01-12 stsp
531 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, "", repo,
532 6bad629b 2019-02-04 stsp checkout_progress, worktree_path, check_cancelled, NULL);
533 c09a553d 2018-03-12 stsp if (error != NULL)
534 c09a553d 2018-03-12 stsp goto done;
535 c09a553d 2018-03-12 stsp
536 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
537 c09a553d 2018-03-12 stsp
538 c09a553d 2018-03-12 stsp done:
539 8069f636 2019-01-12 stsp free(commit_id_str);
540 76089277 2018-04-01 stsp free(repo_path);
541 507dc3bb 2018-12-29 stsp free(worktree_path);
542 507dc3bb 2018-12-29 stsp return error;
543 507dc3bb 2018-12-29 stsp }
544 507dc3bb 2018-12-29 stsp
545 507dc3bb 2018-12-29 stsp __dead static void
546 507dc3bb 2018-12-29 stsp usage_update(void)
547 507dc3bb 2018-12-29 stsp {
548 024e9686 2019-05-14 stsp fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path]\n",
549 507dc3bb 2018-12-29 stsp getprogname());
550 507dc3bb 2018-12-29 stsp exit(1);
551 507dc3bb 2018-12-29 stsp }
552 507dc3bb 2018-12-29 stsp
553 507dc3bb 2018-12-29 stsp static void
554 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
555 507dc3bb 2018-12-29 stsp {
556 784955db 2019-01-12 stsp int *did_something = arg;
557 784955db 2019-01-12 stsp
558 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
559 507dc3bb 2018-12-29 stsp return;
560 507dc3bb 2018-12-29 stsp
561 1545c615 2019-02-10 stsp *did_something = 1;
562 507dc3bb 2018-12-29 stsp while (path[0] == '/')
563 507dc3bb 2018-12-29 stsp path++;
564 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
565 be7061eb 2018-12-30 stsp }
566 be7061eb 2018-12-30 stsp
567 be7061eb 2018-12-30 stsp static const struct got_error *
568 a1fb16d8 2019-05-24 stsp switch_head_ref(struct got_reference *head_ref,
569 a1fb16d8 2019-05-24 stsp struct got_object_id *commit_id, struct got_worktree *worktree,
570 a1fb16d8 2019-05-24 stsp struct got_repository *repo)
571 a1fb16d8 2019-05-24 stsp {
572 a1fb16d8 2019-05-24 stsp const struct got_error *err = NULL;
573 a1fb16d8 2019-05-24 stsp char *base_id_str;
574 a1fb16d8 2019-05-24 stsp int ref_has_moved = 0;
575 a1fb16d8 2019-05-24 stsp
576 a1fb16d8 2019-05-24 stsp /* Trivial case: switching between two different references. */
577 a1fb16d8 2019-05-24 stsp if (strcmp(got_ref_get_name(head_ref),
578 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree)) != 0) {
579 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n",
580 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree),
581 a1fb16d8 2019-05-24 stsp got_ref_get_name(head_ref));
582 a1fb16d8 2019-05-24 stsp return got_worktree_set_head_ref(worktree, head_ref);
583 a1fb16d8 2019-05-24 stsp }
584 a1fb16d8 2019-05-24 stsp
585 a1fb16d8 2019-05-24 stsp err = check_linear_ancestry(commit_id,
586 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree), repo);
587 a1fb16d8 2019-05-24 stsp if (err) {
588 a1fb16d8 2019-05-24 stsp if (err->code != GOT_ERR_ANCESTRY)
589 a1fb16d8 2019-05-24 stsp return err;
590 a1fb16d8 2019-05-24 stsp ref_has_moved = 1;
591 a1fb16d8 2019-05-24 stsp }
592 a1fb16d8 2019-05-24 stsp if (!ref_has_moved)
593 a1fb16d8 2019-05-24 stsp return NULL;
594 a1fb16d8 2019-05-24 stsp
595 a1fb16d8 2019-05-24 stsp /* Switching to a rebased branch with the same reference name. */
596 a1fb16d8 2019-05-24 stsp err = got_object_id_str(&base_id_str,
597 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree));
598 a1fb16d8 2019-05-24 stsp if (err)
599 a1fb16d8 2019-05-24 stsp return err;
600 a1fb16d8 2019-05-24 stsp printf("Reference %s now points at a different branch\n",
601 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
602 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n", base_id_str,
603 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
604 a1fb16d8 2019-05-24 stsp return NULL;
605 a1fb16d8 2019-05-24 stsp }
606 a1fb16d8 2019-05-24 stsp
607 a1fb16d8 2019-05-24 stsp static const struct got_error *
608 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
609 507dc3bb 2018-12-29 stsp {
610 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
611 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
612 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
613 c4cdcb68 2019-04-03 stsp char *worktree_path = NULL, *path = NULL;
614 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
615 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
616 024e9686 2019-05-14 stsp const char *branch_name = NULL;
617 024e9686 2019-05-14 stsp struct got_reference *head_ref = NULL;
618 784955db 2019-01-12 stsp int ch, did_something = 0;
619 507dc3bb 2018-12-29 stsp
620 024e9686 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:")) != -1) {
621 507dc3bb 2018-12-29 stsp switch (ch) {
622 024e9686 2019-05-14 stsp case 'b':
623 024e9686 2019-05-14 stsp branch_name = optarg;
624 024e9686 2019-05-14 stsp break;
625 507dc3bb 2018-12-29 stsp case 'c':
626 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
627 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
628 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
629 507dc3bb 2018-12-29 stsp break;
630 507dc3bb 2018-12-29 stsp default:
631 2deda0b9 2019-03-07 stsp usage_update();
632 507dc3bb 2018-12-29 stsp /* NOTREACHED */
633 507dc3bb 2018-12-29 stsp }
634 507dc3bb 2018-12-29 stsp }
635 507dc3bb 2018-12-29 stsp
636 507dc3bb 2018-12-29 stsp argc -= optind;
637 507dc3bb 2018-12-29 stsp argv += optind;
638 507dc3bb 2018-12-29 stsp
639 507dc3bb 2018-12-29 stsp #ifndef PROFILE
640 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
641 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
642 507dc3bb 2018-12-29 stsp err(1, "pledge");
643 507dc3bb 2018-12-29 stsp #endif
644 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
645 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
646 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
647 c4cdcb68 2019-04-03 stsp goto done;
648 c4cdcb68 2019-04-03 stsp }
649 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
650 c4cdcb68 2019-04-03 stsp if (error)
651 c4cdcb68 2019-04-03 stsp goto done;
652 c4cdcb68 2019-04-03 stsp
653 507dc3bb 2018-12-29 stsp if (argc == 0) {
654 c4cdcb68 2019-04-03 stsp path = strdup("");
655 c4cdcb68 2019-04-03 stsp if (path == NULL) {
656 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
657 507dc3bb 2018-12-29 stsp goto done;
658 507dc3bb 2018-12-29 stsp }
659 507dc3bb 2018-12-29 stsp } else if (argc == 1) {
660 c4cdcb68 2019-04-03 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
661 c4cdcb68 2019-04-03 stsp if (error)
662 507dc3bb 2018-12-29 stsp goto done;
663 507dc3bb 2018-12-29 stsp } else
664 507dc3bb 2018-12-29 stsp usage_update();
665 507dc3bb 2018-12-29 stsp
666 507dc3bb 2018-12-29 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
667 507dc3bb 2018-12-29 stsp if (error != NULL)
668 507dc3bb 2018-12-29 stsp goto done;
669 507dc3bb 2018-12-29 stsp
670 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
671 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
672 0266afb7 2019-01-04 stsp if (error)
673 0266afb7 2019-01-04 stsp goto done;
674 0266afb7 2019-01-04 stsp
675 a1fb16d8 2019-05-24 stsp error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
676 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree), 0);
677 024e9686 2019-05-14 stsp if (error != NULL)
678 024e9686 2019-05-14 stsp goto done;
679 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
680 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
681 9c4b8182 2019-01-02 stsp if (error != NULL)
682 9c4b8182 2019-01-02 stsp goto done;
683 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
684 507dc3bb 2018-12-29 stsp if (error != NULL)
685 507dc3bb 2018-12-29 stsp goto done;
686 507dc3bb 2018-12-29 stsp } else {
687 507dc3bb 2018-12-29 stsp error = got_object_resolve_id_str(&commit_id, repo,
688 507dc3bb 2018-12-29 stsp commit_id_str);
689 507dc3bb 2018-12-29 stsp if (error != NULL)
690 507dc3bb 2018-12-29 stsp goto done;
691 507dc3bb 2018-12-29 stsp }
692 35c965b2 2018-12-29 stsp
693 a1fb16d8 2019-05-24 stsp if (branch_name) {
694 024e9686 2019-05-14 stsp struct got_object_id *head_commit_id;
695 024e9686 2019-05-14 stsp if (strlen(path) != 0) {
696 a1fb16d8 2019-05-24 stsp fprintf(stderr, "%s: switching between branches "
697 a1fb16d8 2019-05-24 stsp "requires that the entire work tree "
698 024e9686 2019-05-14 stsp "gets updated, not just '%s'\n",
699 024e9686 2019-05-14 stsp getprogname(), path);
700 024e9686 2019-05-14 stsp error = got_error(GOT_ERR_BAD_PATH);
701 024e9686 2019-05-14 stsp goto done;
702 024e9686 2019-05-14 stsp }
703 024e9686 2019-05-14 stsp error = got_ref_resolve(&head_commit_id, repo, head_ref);
704 024e9686 2019-05-14 stsp if (error)
705 024e9686 2019-05-14 stsp goto done;
706 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id, head_commit_id, repo);
707 a367ff0f 2019-05-14 stsp free(head_commit_id);
708 024e9686 2019-05-14 stsp if (error != NULL)
709 024e9686 2019-05-14 stsp goto done;
710 a367ff0f 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
711 a367ff0f 2019-05-14 stsp if (error)
712 a367ff0f 2019-05-14 stsp goto done;
713 a1fb16d8 2019-05-24 stsp error = switch_head_ref(head_ref, commit_id, worktree, repo);
714 024e9686 2019-05-14 stsp if (error)
715 024e9686 2019-05-14 stsp goto done;
716 024e9686 2019-05-14 stsp } else {
717 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
718 024e9686 2019-05-14 stsp got_worktree_get_base_commit_id(worktree), repo);
719 a367ff0f 2019-05-14 stsp if (error != NULL) {
720 a367ff0f 2019-05-14 stsp if (error->code == GOT_ERR_ANCESTRY)
721 a367ff0f 2019-05-14 stsp error = got_error(GOT_ERR_BRANCH_MOVED);
722 024e9686 2019-05-14 stsp goto done;
723 a367ff0f 2019-05-14 stsp }
724 a367ff0f 2019-05-14 stsp error = check_same_branch(commit_id, head_ref, repo);
725 a367ff0f 2019-05-14 stsp if (error)
726 a367ff0f 2019-05-14 stsp goto done;
727 024e9686 2019-05-14 stsp }
728 507dc3bb 2018-12-29 stsp
729 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
730 507dc3bb 2018-12-29 stsp commit_id) != 0) {
731 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
732 507dc3bb 2018-12-29 stsp commit_id);
733 507dc3bb 2018-12-29 stsp if (error)
734 507dc3bb 2018-12-29 stsp goto done;
735 507dc3bb 2018-12-29 stsp }
736 507dc3bb 2018-12-29 stsp
737 c4cdcb68 2019-04-03 stsp error = got_worktree_checkout_files(worktree, path, repo,
738 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
739 507dc3bb 2018-12-29 stsp if (error != NULL)
740 507dc3bb 2018-12-29 stsp goto done;
741 9c4b8182 2019-01-02 stsp
742 784955db 2019-01-12 stsp if (did_something)
743 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
744 784955db 2019-01-12 stsp else
745 784955db 2019-01-12 stsp printf("Already up-to-date\n");
746 507dc3bb 2018-12-29 stsp done:
747 c09a553d 2018-03-12 stsp free(worktree_path);
748 c4cdcb68 2019-04-03 stsp free(path);
749 507dc3bb 2018-12-29 stsp free(commit_id);
750 9c4b8182 2019-01-02 stsp free(commit_id_str);
751 c09a553d 2018-03-12 stsp return error;
752 c09a553d 2018-03-12 stsp }
753 c09a553d 2018-03-12 stsp
754 f42b1b34 2018-03-12 stsp static const struct got_error *
755 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
756 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
757 5c860e29 2018-03-12 stsp {
758 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
759 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
760 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
761 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
762 79109fed 2018-03-27 stsp
763 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
764 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
765 79109fed 2018-03-27 stsp if (err)
766 79109fed 2018-03-27 stsp return err;
767 79109fed 2018-03-27 stsp
768 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
769 79f35eb3 2018-06-11 stsp if (qid != NULL) {
770 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
771 79109fed 2018-03-27 stsp
772 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
773 79109fed 2018-03-27 stsp if (err)
774 79109fed 2018-03-27 stsp return err;
775 79109fed 2018-03-27 stsp
776 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
777 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
778 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
779 0f2b3dca 2018-12-22 stsp if (err)
780 0f2b3dca 2018-12-22 stsp return err;
781 0f2b3dca 2018-12-22 stsp
782 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
783 79109fed 2018-03-27 stsp if (err)
784 79109fed 2018-03-27 stsp return err;
785 79109fed 2018-03-27 stsp }
786 79109fed 2018-03-27 stsp
787 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
788 0f2b3dca 2018-12-22 stsp if (err)
789 0f2b3dca 2018-12-22 stsp goto done;
790 0f2b3dca 2018-12-22 stsp
791 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
792 54156555 2018-12-24 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
793 0f2b3dca 2018-12-22 stsp done:
794 79109fed 2018-03-27 stsp if (tree1)
795 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
796 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
797 0f2b3dca 2018-12-22 stsp free(id_str1);
798 0f2b3dca 2018-12-22 stsp free(id_str2);
799 79109fed 2018-03-27 stsp return err;
800 79109fed 2018-03-27 stsp }
801 79109fed 2018-03-27 stsp
802 4bb494d5 2018-06-16 stsp static char *
803 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
804 6c281f94 2018-06-11 stsp {
805 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
806 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
807 6c281f94 2018-06-11 stsp if (p)
808 6c281f94 2018-06-11 stsp *p = '\0';
809 6c281f94 2018-06-11 stsp return s;
810 6c281f94 2018-06-11 stsp }
811 6c281f94 2018-06-11 stsp
812 79109fed 2018-03-27 stsp static const struct got_error *
813 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
814 199a4027 2019-02-02 stsp struct got_repository *repo, int show_patch, int diff_context,
815 199a4027 2019-02-02 stsp struct got_reflist_head *refs)
816 79109fed 2018-03-27 stsp {
817 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
818 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
819 6c281f94 2018-06-11 stsp char datebuf[26];
820 45d799e2 2018-12-23 stsp time_t committer_time;
821 45d799e2 2018-12-23 stsp const char *author, *committer;
822 199a4027 2019-02-02 stsp char *refs_str = NULL;
823 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
824 5c860e29 2018-03-12 stsp
825 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
826 199a4027 2019-02-02 stsp char *s;
827 199a4027 2019-02-02 stsp const char *name;
828 199a4027 2019-02-02 stsp if (got_object_id_cmp(re->id, id) != 0)
829 199a4027 2019-02-02 stsp continue;
830 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
831 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
832 d9498b20 2019-02-05 stsp continue;
833 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
834 199a4027 2019-02-02 stsp name += 5;
835 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
836 7143d404 2019-03-12 stsp continue;
837 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
838 e34f9ed6 2019-02-02 stsp name += 6;
839 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
840 141c2bff 2019-02-04 stsp name += 8;
841 199a4027 2019-02-02 stsp s = refs_str;
842 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
843 199a4027 2019-02-02 stsp name) == -1) {
844 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
845 199a4027 2019-02-02 stsp free(s);
846 199a4027 2019-02-02 stsp break;
847 199a4027 2019-02-02 stsp }
848 199a4027 2019-02-02 stsp free(s);
849 199a4027 2019-02-02 stsp }
850 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
851 8bf5b3c9 2018-03-17 stsp if (err)
852 8bf5b3c9 2018-03-17 stsp return err;
853 788c352e 2018-06-16 stsp
854 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
855 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
856 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
857 832c249c 2018-06-10 stsp free(id_str);
858 d3d493d7 2019-02-21 stsp id_str = NULL;
859 d3d493d7 2019-02-21 stsp free(refs_str);
860 d3d493d7 2019-02-21 stsp refs_str = NULL;
861 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
862 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
863 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
864 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
865 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
866 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
867 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
868 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
869 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
870 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
871 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
872 3fe1abad 2018-06-10 stsp int n = 1;
873 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
874 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
875 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
876 a0603db2 2018-06-10 stsp if (err)
877 a0603db2 2018-06-10 stsp return err;
878 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
879 a0603db2 2018-06-10 stsp free(id_str);
880 a0603db2 2018-06-10 stsp }
881 a0603db2 2018-06-10 stsp }
882 832c249c 2018-06-10 stsp
883 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
884 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
885 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
886 8bf5b3c9 2018-03-17 stsp
887 621015ac 2018-07-23 stsp logmsg = logmsg0;
888 832c249c 2018-06-10 stsp do {
889 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
890 832c249c 2018-06-10 stsp if (line)
891 832c249c 2018-06-10 stsp printf(" %s\n", line);
892 832c249c 2018-06-10 stsp } while (line);
893 621015ac 2018-07-23 stsp free(logmsg0);
894 832c249c 2018-06-10 stsp
895 971751ac 2018-03-27 stsp if (show_patch) {
896 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
897 971751ac 2018-03-27 stsp if (err == 0)
898 971751ac 2018-03-27 stsp printf("\n");
899 971751ac 2018-03-27 stsp }
900 07862c20 2018-09-15 stsp
901 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
902 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
903 07862c20 2018-09-15 stsp return err;
904 f42b1b34 2018-03-12 stsp }
905 5c860e29 2018-03-12 stsp
906 f42b1b34 2018-03-12 stsp static const struct got_error *
907 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
908 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
909 199a4027 2019-02-02 stsp int first_parent_traversal, struct got_reflist_head *refs)
910 f42b1b34 2018-03-12 stsp {
911 f42b1b34 2018-03-12 stsp const struct got_error *err;
912 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
913 372ccdbb 2018-06-10 stsp
914 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
915 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
916 f42b1b34 2018-03-12 stsp if (err)
917 f42b1b34 2018-03-12 stsp return err;
918 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
919 372ccdbb 2018-06-10 stsp if (err)
920 fcc85cad 2018-07-22 stsp goto done;
921 656b1f76 2019-05-11 jcs for (;;) {
922 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
923 372ccdbb 2018-06-10 stsp struct got_object_id *id;
924 8bf5b3c9 2018-03-17 stsp
925 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
926 84453469 2018-11-11 stsp break;
927 84453469 2018-11-11 stsp
928 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
929 372ccdbb 2018-06-10 stsp if (err) {
930 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
931 9ba79e04 2018-06-11 stsp err = NULL;
932 9ba79e04 2018-06-11 stsp break;
933 9ba79e04 2018-06-11 stsp }
934 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
935 372ccdbb 2018-06-10 stsp break;
936 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
937 372ccdbb 2018-06-10 stsp if (err)
938 372ccdbb 2018-06-10 stsp break;
939 372ccdbb 2018-06-10 stsp else
940 372ccdbb 2018-06-10 stsp continue;
941 7e665116 2018-04-02 stsp }
942 b43fbaa0 2018-06-11 stsp if (id == NULL)
943 7e665116 2018-04-02 stsp break;
944 b43fbaa0 2018-06-11 stsp
945 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
946 b43fbaa0 2018-06-11 stsp if (err)
947 fcc85cad 2018-07-22 stsp break;
948 199a4027 2019-02-02 stsp err = print_commit(commit, id, repo, show_patch, diff_context,
949 199a4027 2019-02-02 stsp refs);
950 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
951 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
952 7e665116 2018-04-02 stsp break;
953 31cedeaf 2018-09-15 stsp }
954 fcc85cad 2018-07-22 stsp done:
955 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
956 f42b1b34 2018-03-12 stsp return err;
957 f42b1b34 2018-03-12 stsp }
958 5c860e29 2018-03-12 stsp
959 4ed7e80c 2018-05-20 stsp __dead static void
960 6f3d1eb0 2018-03-12 stsp usage_log(void)
961 6f3d1eb0 2018-03-12 stsp {
962 499d7ecc 2019-05-22 stsp fprintf(stderr, "usage: %s log [-b] [-c commit] [-C number] [ -l N ] [-p] "
963 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
964 6f3d1eb0 2018-03-12 stsp exit(1);
965 6f3d1eb0 2018-03-12 stsp }
966 6f3d1eb0 2018-03-12 stsp
967 4ed7e80c 2018-05-20 stsp static const struct got_error *
968 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
969 f42b1b34 2018-03-12 stsp {
970 f42b1b34 2018-03-12 stsp const struct got_error *error;
971 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
972 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
973 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
974 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
975 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
976 d142fc45 2018-04-01 stsp char *start_commit = NULL;
977 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
978 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
979 64a96a6d 2018-04-01 stsp const char *errstr;
980 199a4027 2019-02-02 stsp struct got_reflist_head refs;
981 1b3893a2 2019-03-18 stsp
982 1b3893a2 2019-03-18 stsp SIMPLEQ_INIT(&refs);
983 5c860e29 2018-03-12 stsp
984 6715a751 2018-03-16 stsp #ifndef PROFILE
985 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
986 6098196c 2019-01-04 stsp NULL)
987 ad242220 2018-09-08 stsp == -1)
988 f42b1b34 2018-03-12 stsp err(1, "pledge");
989 6715a751 2018-03-16 stsp #endif
990 79109fed 2018-03-27 stsp
991 499d7ecc 2019-05-22 stsp while ((ch = getopt(argc, argv, "bpc:C:l:r:")) != -1) {
992 79109fed 2018-03-27 stsp switch (ch) {
993 499d7ecc 2019-05-22 stsp case 'b':
994 499d7ecc 2019-05-22 stsp first_parent_traversal = 1;
995 499d7ecc 2019-05-22 stsp break;
996 79109fed 2018-03-27 stsp case 'p':
997 79109fed 2018-03-27 stsp show_patch = 1;
998 d142fc45 2018-04-01 stsp break;
999 d142fc45 2018-04-01 stsp case 'c':
1000 d142fc45 2018-04-01 stsp start_commit = optarg;
1001 64a96a6d 2018-04-01 stsp break;
1002 c0cc5c62 2018-10-18 stsp case 'C':
1003 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
1004 4a8520aa 2018-10-18 stsp &errstr);
1005 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1006 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1007 c0cc5c62 2018-10-18 stsp break;
1008 64a96a6d 2018-04-01 stsp case 'l':
1009 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
1010 64a96a6d 2018-04-01 stsp if (errstr != NULL)
1011 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
1012 a0603db2 2018-06-10 stsp break;
1013 04ca23f4 2018-07-16 stsp case 'r':
1014 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
1015 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
1016 04ca23f4 2018-07-16 stsp err(1, "-r option");
1017 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1018 04ca23f4 2018-07-16 stsp break;
1019 79109fed 2018-03-27 stsp default:
1020 2deda0b9 2019-03-07 stsp usage_log();
1021 79109fed 2018-03-27 stsp /* NOTREACHED */
1022 79109fed 2018-03-27 stsp }
1023 79109fed 2018-03-27 stsp }
1024 79109fed 2018-03-27 stsp
1025 79109fed 2018-03-27 stsp argc -= optind;
1026 79109fed 2018-03-27 stsp argv += optind;
1027 f42b1b34 2018-03-12 stsp
1028 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
1029 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
1030 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1031 04ca23f4 2018-07-16 stsp goto done;
1032 04ca23f4 2018-07-16 stsp }
1033 cffc0aa4 2019-02-05 stsp
1034 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1035 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1036 cffc0aa4 2019-02-05 stsp goto done;
1037 cffc0aa4 2019-02-05 stsp error = NULL;
1038 cffc0aa4 2019-02-05 stsp
1039 e7301579 2019-03-18 stsp if (argc == 0) {
1040 cbd1af7a 2019-03-18 stsp path = strdup("");
1041 e7301579 2019-03-18 stsp if (path == NULL) {
1042 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1043 cbd1af7a 2019-03-18 stsp goto done;
1044 e7301579 2019-03-18 stsp }
1045 e7301579 2019-03-18 stsp } else if (argc == 1) {
1046 e7301579 2019-03-18 stsp if (worktree) {
1047 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1048 e7301579 2019-03-18 stsp argv[0]);
1049 e7301579 2019-03-18 stsp if (error)
1050 e7301579 2019-03-18 stsp goto done;
1051 e7301579 2019-03-18 stsp } else {
1052 e7301579 2019-03-18 stsp path = strdup(argv[0]);
1053 e7301579 2019-03-18 stsp if (path == NULL) {
1054 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1055 e7301579 2019-03-18 stsp goto done;
1056 e7301579 2019-03-18 stsp }
1057 e7301579 2019-03-18 stsp }
1058 cbd1af7a 2019-03-18 stsp } else
1059 cbd1af7a 2019-03-18 stsp usage_log();
1060 cbd1af7a 2019-03-18 stsp
1061 5486daa2 2019-05-11 stsp if (repo_path == NULL) {
1062 5486daa2 2019-05-11 stsp repo_path = worktree ?
1063 5486daa2 2019-05-11 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
1064 5486daa2 2019-05-11 stsp }
1065 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
1066 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1067 cffc0aa4 2019-02-05 stsp goto done;
1068 04ca23f4 2018-07-16 stsp }
1069 6098196c 2019-01-04 stsp
1070 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
1071 d7d4f210 2018-03-12 stsp if (error != NULL)
1072 04ca23f4 2018-07-16 stsp goto done;
1073 f42b1b34 2018-03-12 stsp
1074 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1075 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
1076 c02c541e 2019-03-29 stsp if (error)
1077 c02c541e 2019-03-29 stsp goto done;
1078 c02c541e 2019-03-29 stsp
1079 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
1080 3235492e 2018-04-01 stsp struct got_reference *head_ref;
1081 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
1082 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
1083 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
1084 3235492e 2018-04-01 stsp if (error != NULL)
1085 3235492e 2018-04-01 stsp return error;
1086 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
1087 3235492e 2018-04-01 stsp got_ref_close(head_ref);
1088 3235492e 2018-04-01 stsp if (error != NULL)
1089 3235492e 2018-04-01 stsp return error;
1090 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1091 3235492e 2018-04-01 stsp } else {
1092 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
1093 2f17228e 2019-05-12 stsp error = got_ref_open(&ref, repo, start_commit, 0);
1094 3235492e 2018-04-01 stsp if (error == NULL) {
1095 1caad61b 2019-02-01 stsp int obj_type;
1096 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
1097 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
1098 d1f2edc9 2018-06-13 stsp if (error != NULL)
1099 1caad61b 2019-02-01 stsp goto done;
1100 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
1101 1caad61b 2019-02-01 stsp if (error != NULL)
1102 1caad61b 2019-02-01 stsp goto done;
1103 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
1104 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
1105 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
1106 1caad61b 2019-02-01 stsp if (error != NULL)
1107 1caad61b 2019-02-01 stsp goto done;
1108 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
1109 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
1110 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1111 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1112 1caad61b 2019-02-01 stsp goto done;
1113 1caad61b 2019-02-01 stsp }
1114 1caad61b 2019-02-01 stsp free(id);
1115 1caad61b 2019-02-01 stsp id = got_object_id_dup(
1116 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
1117 1caad61b 2019-02-01 stsp if (id == NULL)
1118 638f9024 2019-05-13 stsp error = got_error_from_errno(
1119 230a42bd 2019-05-11 jcs "got_object_id_dup");
1120 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1121 1caad61b 2019-02-01 stsp if (error)
1122 1caad61b 2019-02-01 stsp goto done;
1123 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1124 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1125 1caad61b 2019-02-01 stsp goto done;
1126 1caad61b 2019-02-01 stsp }
1127 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1128 d1f2edc9 2018-06-13 stsp if (error != NULL)
1129 1caad61b 2019-02-01 stsp goto done;
1130 d1f2edc9 2018-06-13 stsp }
1131 15a94983 2018-12-23 stsp if (commit == NULL) {
1132 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
1133 d1f2edc9 2018-06-13 stsp start_commit);
1134 d1f2edc9 2018-06-13 stsp if (error != NULL)
1135 d1f2edc9 2018-06-13 stsp return error;
1136 3235492e 2018-04-01 stsp }
1137 3235492e 2018-04-01 stsp }
1138 d7d4f210 2018-03-12 stsp if (error != NULL)
1139 04ca23f4 2018-07-16 stsp goto done;
1140 04ca23f4 2018-07-16 stsp
1141 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1142 04ca23f4 2018-07-16 stsp if (error != NULL)
1143 04ca23f4 2018-07-16 stsp goto done;
1144 04ca23f4 2018-07-16 stsp if (in_repo_path) {
1145 04ca23f4 2018-07-16 stsp free(path);
1146 04ca23f4 2018-07-16 stsp path = in_repo_path;
1147 04ca23f4 2018-07-16 stsp }
1148 199a4027 2019-02-02 stsp
1149 199a4027 2019-02-02 stsp error = got_ref_list(&refs, repo);
1150 199a4027 2019-02-02 stsp if (error)
1151 199a4027 2019-02-02 stsp goto done;
1152 04ca23f4 2018-07-16 stsp
1153 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
1154 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
1155 04ca23f4 2018-07-16 stsp done:
1156 04ca23f4 2018-07-16 stsp free(path);
1157 04ca23f4 2018-07-16 stsp free(repo_path);
1158 04ca23f4 2018-07-16 stsp free(cwd);
1159 f42b1b34 2018-03-12 stsp free(id);
1160 cffc0aa4 2019-02-05 stsp if (worktree)
1161 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
1162 ad242220 2018-09-08 stsp if (repo) {
1163 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1164 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1165 ad242220 2018-09-08 stsp if (error == NULL)
1166 ad242220 2018-09-08 stsp error = repo_error;
1167 ad242220 2018-09-08 stsp }
1168 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1169 8bf5b3c9 2018-03-17 stsp return error;
1170 5c860e29 2018-03-12 stsp }
1171 5c860e29 2018-03-12 stsp
1172 4ed7e80c 2018-05-20 stsp __dead static void
1173 3f8b7d6a 2018-04-01 stsp usage_diff(void)
1174 3f8b7d6a 2018-04-01 stsp {
1175 b72f483a 2019-02-05 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] "
1176 927df6b7 2019-02-10 stsp "[object1 object2 | path]\n", getprogname());
1177 3f8b7d6a 2018-04-01 stsp exit(1);
1178 b00d56cd 2018-04-01 stsp }
1179 b00d56cd 2018-04-01 stsp
1180 b72f483a 2019-02-05 stsp struct print_diff_arg {
1181 b72f483a 2019-02-05 stsp struct got_repository *repo;
1182 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
1183 b72f483a 2019-02-05 stsp int diff_context;
1184 3fc0c068 2019-02-10 stsp const char *id_str;
1185 3fc0c068 2019-02-10 stsp int header_shown;
1186 b72f483a 2019-02-05 stsp };
1187 b72f483a 2019-02-05 stsp
1188 4ed7e80c 2018-05-20 stsp static const struct got_error *
1189 b72f483a 2019-02-05 stsp print_diff(void *arg, unsigned char status, const char *path,
1190 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1191 b72f483a 2019-02-05 stsp {
1192 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
1193 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1194 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
1195 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
1196 b72f483a 2019-02-05 stsp char *abspath = NULL;
1197 b72f483a 2019-02-05 stsp struct stat sb;
1198 b72f483a 2019-02-05 stsp
1199 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
1200 7154f6ce 2019-03-27 stsp status != GOT_STATUS_DELETE && status != GOT_STATUS_CONFLICT)
1201 b72f483a 2019-02-05 stsp return NULL;
1202 3fc0c068 2019-02-10 stsp
1203 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
1204 3fc0c068 2019-02-10 stsp printf("diff %s %s\n", a->id_str,
1205 3fc0c068 2019-02-10 stsp got_worktree_get_root_path(a->worktree));
1206 3fc0c068 2019-02-10 stsp a->header_shown = 1;
1207 3fc0c068 2019-02-10 stsp }
1208 b72f483a 2019-02-05 stsp
1209 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_ADD) {
1210 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
1211 d00136be 2019-03-26 stsp if (err)
1212 d00136be 2019-03-26 stsp goto done;
1213 b72f483a 2019-02-05 stsp
1214 d00136be 2019-03-26 stsp }
1215 d00136be 2019-03-26 stsp
1216 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
1217 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
1218 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
1219 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1220 2ec1f75b 2019-03-26 stsp goto done;
1221 2ec1f75b 2019-03-26 stsp }
1222 b72f483a 2019-02-05 stsp
1223 2ec1f75b 2019-03-26 stsp f2 = fopen(abspath, "r");
1224 2ec1f75b 2019-03-26 stsp if (f2 == NULL) {
1225 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
1226 2ec1f75b 2019-03-26 stsp goto done;
1227 2ec1f75b 2019-03-26 stsp }
1228 2ec1f75b 2019-03-26 stsp if (lstat(abspath, &sb) == -1) {
1229 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
1230 2ec1f75b 2019-03-26 stsp goto done;
1231 2ec1f75b 2019-03-26 stsp }
1232 2ec1f75b 2019-03-26 stsp } else
1233 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
1234 b72f483a 2019-02-05 stsp
1235 b72f483a 2019-02-05 stsp err = got_diff_blob_file(blob1, f2, sb.st_size, path, a->diff_context,
1236 b72f483a 2019-02-05 stsp stdout);
1237 b72f483a 2019-02-05 stsp done:
1238 b72f483a 2019-02-05 stsp if (blob1)
1239 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
1240 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
1241 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1242 b72f483a 2019-02-05 stsp free(abspath);
1243 927df6b7 2019-02-10 stsp return err;
1244 927df6b7 2019-02-10 stsp }
1245 927df6b7 2019-02-10 stsp
1246 927df6b7 2019-02-10 stsp static const struct got_error *
1247 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
1248 b00d56cd 2018-04-01 stsp {
1249 b00d56cd 2018-04-01 stsp const struct got_error *error;
1250 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
1251 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
1252 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
1253 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1254 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
1255 15a94983 2018-12-23 stsp int type1, type2;
1256 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1257 c0cc5c62 2018-10-18 stsp const char *errstr;
1258 927df6b7 2019-02-10 stsp char *path = NULL;
1259 b00d56cd 2018-04-01 stsp
1260 b00d56cd 2018-04-01 stsp #ifndef PROFILE
1261 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1262 25eccc22 2019-01-04 stsp NULL) == -1)
1263 b00d56cd 2018-04-01 stsp err(1, "pledge");
1264 b00d56cd 2018-04-01 stsp #endif
1265 b00d56cd 2018-04-01 stsp
1266 b72f483a 2019-02-05 stsp while ((ch = getopt(argc, argv, "C:r:")) != -1) {
1267 b00d56cd 2018-04-01 stsp switch (ch) {
1268 c0cc5c62 2018-10-18 stsp case 'C':
1269 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
1270 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1271 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1272 c0cc5c62 2018-10-18 stsp break;
1273 b72f483a 2019-02-05 stsp case 'r':
1274 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
1275 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1276 b72f483a 2019-02-05 stsp err(1, "-r option");
1277 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1278 b72f483a 2019-02-05 stsp break;
1279 b00d56cd 2018-04-01 stsp default:
1280 2deda0b9 2019-03-07 stsp usage_diff();
1281 b00d56cd 2018-04-01 stsp /* NOTREACHED */
1282 b00d56cd 2018-04-01 stsp }
1283 b00d56cd 2018-04-01 stsp }
1284 b00d56cd 2018-04-01 stsp
1285 b00d56cd 2018-04-01 stsp argc -= optind;
1286 b00d56cd 2018-04-01 stsp argv += optind;
1287 b00d56cd 2018-04-01 stsp
1288 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
1289 b72f483a 2019-02-05 stsp if (cwd == NULL) {
1290 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1291 b72f483a 2019-02-05 stsp goto done;
1292 b72f483a 2019-02-05 stsp }
1293 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1294 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1295 927df6b7 2019-02-10 stsp goto done;
1296 927df6b7 2019-02-10 stsp if (argc <= 1) {
1297 927df6b7 2019-02-10 stsp if (worktree == NULL) {
1298 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
1299 927df6b7 2019-02-10 stsp goto done;
1300 927df6b7 2019-02-10 stsp }
1301 b72f483a 2019-02-05 stsp if (repo_path)
1302 b72f483a 2019-02-05 stsp errx(1,
1303 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
1304 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
1305 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
1306 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1307 927df6b7 2019-02-10 stsp goto done;
1308 927df6b7 2019-02-10 stsp }
1309 927df6b7 2019-02-10 stsp if (argc == 1) {
1310 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1311 cbd1af7a 2019-03-18 stsp argv[0]);
1312 927df6b7 2019-02-10 stsp if (error)
1313 927df6b7 2019-02-10 stsp goto done;
1314 927df6b7 2019-02-10 stsp } else {
1315 927df6b7 2019-02-10 stsp path = strdup("");
1316 927df6b7 2019-02-10 stsp if (path == NULL) {
1317 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1318 927df6b7 2019-02-10 stsp goto done;
1319 927df6b7 2019-02-10 stsp }
1320 927df6b7 2019-02-10 stsp }
1321 b72f483a 2019-02-05 stsp } else if (argc == 2) {
1322 15a94983 2018-12-23 stsp id_str1 = argv[0];
1323 15a94983 2018-12-23 stsp id_str2 = argv[1];
1324 b00d56cd 2018-04-01 stsp } else
1325 b00d56cd 2018-04-01 stsp usage_diff();
1326 25eccc22 2019-01-04 stsp
1327 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
1328 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
1329 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1330 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
1331 b72f483a 2019-02-05 stsp }
1332 b00d56cd 2018-04-01 stsp
1333 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
1334 76089277 2018-04-01 stsp free(repo_path);
1335 b00d56cd 2018-04-01 stsp if (error != NULL)
1336 b00d56cd 2018-04-01 stsp goto done;
1337 b00d56cd 2018-04-01 stsp
1338 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1339 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
1340 c02c541e 2019-03-29 stsp if (error)
1341 c02c541e 2019-03-29 stsp goto done;
1342 c02c541e 2019-03-29 stsp
1343 b72f483a 2019-02-05 stsp if (worktree) {
1344 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
1345 b72f483a 2019-02-05 stsp char *id_str;
1346 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
1347 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
1348 b72f483a 2019-02-05 stsp if (error)
1349 b72f483a 2019-02-05 stsp goto done;
1350 b72f483a 2019-02-05 stsp arg.repo = repo;
1351 b72f483a 2019-02-05 stsp arg.worktree = worktree;
1352 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
1353 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
1354 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
1355 b72f483a 2019-02-05 stsp
1356 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_diff,
1357 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
1358 b72f483a 2019-02-05 stsp free(id_str);
1359 b72f483a 2019-02-05 stsp goto done;
1360 b72f483a 2019-02-05 stsp }
1361 b72f483a 2019-02-05 stsp
1362 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
1363 6402fb3c 2018-09-15 stsp if (error)
1364 b00d56cd 2018-04-01 stsp goto done;
1365 b00d56cd 2018-04-01 stsp
1366 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
1367 6402fb3c 2018-09-15 stsp if (error)
1368 b00d56cd 2018-04-01 stsp goto done;
1369 b00d56cd 2018-04-01 stsp
1370 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
1371 15a94983 2018-12-23 stsp if (error)
1372 15a94983 2018-12-23 stsp goto done;
1373 15a94983 2018-12-23 stsp
1374 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
1375 15a94983 2018-12-23 stsp if (error)
1376 15a94983 2018-12-23 stsp goto done;
1377 15a94983 2018-12-23 stsp
1378 15a94983 2018-12-23 stsp if (type1 != type2) {
1379 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1380 b00d56cd 2018-04-01 stsp goto done;
1381 b00d56cd 2018-04-01 stsp }
1382 b00d56cd 2018-04-01 stsp
1383 15a94983 2018-12-23 stsp switch (type1) {
1384 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
1385 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
1386 54156555 2018-12-24 stsp diff_context, repo, stdout);
1387 b00d56cd 2018-04-01 stsp break;
1388 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
1389 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
1390 54156555 2018-12-24 stsp diff_context, repo, stdout);
1391 b00d56cd 2018-04-01 stsp break;
1392 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
1393 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
1394 15a94983 2018-12-23 stsp id_str2);
1395 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
1396 c0cc5c62 2018-10-18 stsp repo, stdout);
1397 b00d56cd 2018-04-01 stsp break;
1398 b00d56cd 2018-04-01 stsp default:
1399 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1400 b00d56cd 2018-04-01 stsp }
1401 b00d56cd 2018-04-01 stsp
1402 b00d56cd 2018-04-01 stsp done:
1403 15a94983 2018-12-23 stsp free(id1);
1404 15a94983 2018-12-23 stsp free(id2);
1405 927df6b7 2019-02-10 stsp free(path);
1406 b72f483a 2019-02-05 stsp if (worktree)
1407 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
1408 ad242220 2018-09-08 stsp if (repo) {
1409 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1410 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1411 ad242220 2018-09-08 stsp if (error == NULL)
1412 ad242220 2018-09-08 stsp error = repo_error;
1413 ad242220 2018-09-08 stsp }
1414 b00d56cd 2018-04-01 stsp return error;
1415 404c43c4 2018-06-21 stsp }
1416 404c43c4 2018-06-21 stsp
1417 404c43c4 2018-06-21 stsp __dead static void
1418 404c43c4 2018-06-21 stsp usage_blame(void)
1419 404c43c4 2018-06-21 stsp {
1420 9270e621 2019-02-05 stsp fprintf(stderr,
1421 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
1422 404c43c4 2018-06-21 stsp getprogname());
1423 404c43c4 2018-06-21 stsp exit(1);
1424 b00d56cd 2018-04-01 stsp }
1425 b00d56cd 2018-04-01 stsp
1426 404c43c4 2018-06-21 stsp static const struct got_error *
1427 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
1428 404c43c4 2018-06-21 stsp {
1429 404c43c4 2018-06-21 stsp const struct got_error *error;
1430 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
1431 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
1432 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1433 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
1434 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
1435 404c43c4 2018-06-21 stsp int ch;
1436 404c43c4 2018-06-21 stsp
1437 404c43c4 2018-06-21 stsp #ifndef PROFILE
1438 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1439 36e2fb66 2019-01-04 stsp NULL) == -1)
1440 404c43c4 2018-06-21 stsp err(1, "pledge");
1441 404c43c4 2018-06-21 stsp #endif
1442 404c43c4 2018-06-21 stsp
1443 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1444 404c43c4 2018-06-21 stsp switch (ch) {
1445 404c43c4 2018-06-21 stsp case 'c':
1446 404c43c4 2018-06-21 stsp commit_id_str = optarg;
1447 404c43c4 2018-06-21 stsp break;
1448 66bea077 2018-08-02 stsp case 'r':
1449 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
1450 66bea077 2018-08-02 stsp if (repo_path == NULL)
1451 66bea077 2018-08-02 stsp err(1, "-r option");
1452 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1453 66bea077 2018-08-02 stsp break;
1454 404c43c4 2018-06-21 stsp default:
1455 2deda0b9 2019-03-07 stsp usage_blame();
1456 404c43c4 2018-06-21 stsp /* NOTREACHED */
1457 404c43c4 2018-06-21 stsp }
1458 404c43c4 2018-06-21 stsp }
1459 404c43c4 2018-06-21 stsp
1460 404c43c4 2018-06-21 stsp argc -= optind;
1461 404c43c4 2018-06-21 stsp argv += optind;
1462 404c43c4 2018-06-21 stsp
1463 a39318fd 2018-08-02 stsp if (argc == 1)
1464 404c43c4 2018-06-21 stsp path = argv[0];
1465 a39318fd 2018-08-02 stsp else
1466 404c43c4 2018-06-21 stsp usage_blame();
1467 404c43c4 2018-06-21 stsp
1468 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
1469 66bea077 2018-08-02 stsp if (cwd == NULL) {
1470 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1471 66bea077 2018-08-02 stsp goto done;
1472 66bea077 2018-08-02 stsp }
1473 66bea077 2018-08-02 stsp if (repo_path == NULL) {
1474 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1475 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1476 66bea077 2018-08-02 stsp goto done;
1477 0c06baac 2019-02-05 stsp else
1478 0c06baac 2019-02-05 stsp error = NULL;
1479 0c06baac 2019-02-05 stsp if (worktree) {
1480 0c06baac 2019-02-05 stsp repo_path =
1481 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1482 0c06baac 2019-02-05 stsp if (repo_path == NULL)
1483 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1484 0c06baac 2019-02-05 stsp if (error)
1485 0c06baac 2019-02-05 stsp goto done;
1486 0c06baac 2019-02-05 stsp } else {
1487 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
1488 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
1489 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1490 0c06baac 2019-02-05 stsp goto done;
1491 0c06baac 2019-02-05 stsp }
1492 66bea077 2018-08-02 stsp }
1493 66bea077 2018-08-02 stsp }
1494 36e2fb66 2019-01-04 stsp
1495 c02c541e 2019-03-29 stsp error = got_repo_open(&repo, repo_path);
1496 c02c541e 2019-03-29 stsp if (error != NULL)
1497 36e2fb66 2019-01-04 stsp goto done;
1498 66bea077 2018-08-02 stsp
1499 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1500 c02c541e 2019-03-29 stsp if (error)
1501 404c43c4 2018-06-21 stsp goto done;
1502 404c43c4 2018-06-21 stsp
1503 0c06baac 2019-02-05 stsp if (worktree) {
1504 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1505 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1506 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1507 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
1508 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
1509 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
1510 6efaaa2d 2019-02-05 stsp path) == -1) {
1511 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1512 0c06baac 2019-02-05 stsp goto done;
1513 0c06baac 2019-02-05 stsp }
1514 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
1515 0c06baac 2019-02-05 stsp free(p);
1516 0c06baac 2019-02-05 stsp } else {
1517 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1518 0c06baac 2019-02-05 stsp }
1519 0c06baac 2019-02-05 stsp if (error)
1520 66bea077 2018-08-02 stsp goto done;
1521 66bea077 2018-08-02 stsp
1522 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
1523 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
1524 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1525 404c43c4 2018-06-21 stsp if (error != NULL)
1526 66bea077 2018-08-02 stsp goto done;
1527 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1528 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
1529 404c43c4 2018-06-21 stsp if (error != NULL)
1530 66bea077 2018-08-02 stsp goto done;
1531 404c43c4 2018-06-21 stsp } else {
1532 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1533 15a94983 2018-12-23 stsp commit_id_str);
1534 404c43c4 2018-06-21 stsp if (error != NULL)
1535 66bea077 2018-08-02 stsp goto done;
1536 404c43c4 2018-06-21 stsp }
1537 404c43c4 2018-06-21 stsp
1538 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
1539 404c43c4 2018-06-21 stsp done:
1540 66bea077 2018-08-02 stsp free(in_repo_path);
1541 66bea077 2018-08-02 stsp free(repo_path);
1542 66bea077 2018-08-02 stsp free(cwd);
1543 404c43c4 2018-06-21 stsp free(commit_id);
1544 0c06baac 2019-02-05 stsp if (worktree)
1545 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
1546 ad242220 2018-09-08 stsp if (repo) {
1547 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1548 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1549 ad242220 2018-09-08 stsp if (error == NULL)
1550 ad242220 2018-09-08 stsp error = repo_error;
1551 ad242220 2018-09-08 stsp }
1552 404c43c4 2018-06-21 stsp return error;
1553 5de5890b 2018-10-18 stsp }
1554 5de5890b 2018-10-18 stsp
1555 5de5890b 2018-10-18 stsp __dead static void
1556 5de5890b 2018-10-18 stsp usage_tree(void)
1557 5de5890b 2018-10-18 stsp {
1558 c1669e2e 2019-01-09 stsp fprintf(stderr,
1559 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
1560 5de5890b 2018-10-18 stsp getprogname());
1561 5de5890b 2018-10-18 stsp exit(1);
1562 5de5890b 2018-10-18 stsp }
1563 5de5890b 2018-10-18 stsp
1564 c1669e2e 2019-01-09 stsp static void
1565 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
1566 c1669e2e 2019-01-09 stsp const char *root_path)
1567 c1669e2e 2019-01-09 stsp {
1568 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
1569 5de5890b 2018-10-18 stsp
1570 c1669e2e 2019-01-09 stsp path += strlen(root_path);
1571 c1669e2e 2019-01-09 stsp while (path[0] == '/')
1572 c1669e2e 2019-01-09 stsp path++;
1573 c1669e2e 2019-01-09 stsp
1574 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
1575 d6e648b4 2019-02-10 stsp is_root_path ? "" : "/", te->name,
1576 d6e648b4 2019-02-10 stsp S_ISDIR(te->mode) ? "/" : ((te->mode & S_IXUSR) ? "*" : ""));
1577 c1669e2e 2019-01-09 stsp }
1578 c1669e2e 2019-01-09 stsp
1579 5de5890b 2018-10-18 stsp static const struct got_error *
1580 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1581 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
1582 c1669e2e 2019-01-09 stsp struct got_repository *repo)
1583 5de5890b 2018-10-18 stsp {
1584 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1585 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1586 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1587 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1588 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1589 5de5890b 2018-10-18 stsp
1590 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1591 5de5890b 2018-10-18 stsp if (err)
1592 5de5890b 2018-10-18 stsp goto done;
1593 5de5890b 2018-10-18 stsp
1594 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1595 5de5890b 2018-10-18 stsp if (err)
1596 5de5890b 2018-10-18 stsp goto done;
1597 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1598 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1599 5de5890b 2018-10-18 stsp while (te) {
1600 5de5890b 2018-10-18 stsp char *id = NULL;
1601 84453469 2018-11-11 stsp
1602 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1603 84453469 2018-11-11 stsp break;
1604 84453469 2018-11-11 stsp
1605 5de5890b 2018-10-18 stsp if (show_ids) {
1606 5de5890b 2018-10-18 stsp char *id_str;
1607 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1608 5de5890b 2018-10-18 stsp if (err)
1609 5de5890b 2018-10-18 stsp goto done;
1610 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1611 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1612 5de5890b 2018-10-18 stsp free(id_str);
1613 5de5890b 2018-10-18 stsp goto done;
1614 5de5890b 2018-10-18 stsp }
1615 5de5890b 2018-10-18 stsp free(id_str);
1616 5de5890b 2018-10-18 stsp }
1617 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
1618 5de5890b 2018-10-18 stsp free(id);
1619 c1669e2e 2019-01-09 stsp
1620 c1669e2e 2019-01-09 stsp if (recurse && S_ISDIR(te->mode)) {
1621 c1669e2e 2019-01-09 stsp char *child_path;
1622 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
1623 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
1624 c1669e2e 2019-01-09 stsp te->name) == -1) {
1625 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1626 c1669e2e 2019-01-09 stsp goto done;
1627 c1669e2e 2019-01-09 stsp }
1628 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
1629 c1669e2e 2019-01-09 stsp root_path, repo);
1630 c1669e2e 2019-01-09 stsp free(child_path);
1631 c1669e2e 2019-01-09 stsp if (err)
1632 c1669e2e 2019-01-09 stsp goto done;
1633 c1669e2e 2019-01-09 stsp }
1634 c1669e2e 2019-01-09 stsp
1635 c1669e2e 2019-01-09 stsp te = SIMPLEQ_NEXT(te, entry);
1636 5de5890b 2018-10-18 stsp }
1637 5de5890b 2018-10-18 stsp done:
1638 5de5890b 2018-10-18 stsp if (tree)
1639 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1640 5de5890b 2018-10-18 stsp free(tree_id);
1641 5de5890b 2018-10-18 stsp return err;
1642 404c43c4 2018-06-21 stsp }
1643 404c43c4 2018-06-21 stsp
1644 5de5890b 2018-10-18 stsp static const struct got_error *
1645 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1646 5de5890b 2018-10-18 stsp {
1647 5de5890b 2018-10-18 stsp const struct got_error *error;
1648 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1649 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
1650 7a2c19d6 2019-02-05 stsp const char *path;
1651 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1652 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1653 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1654 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
1655 5de5890b 2018-10-18 stsp int ch;
1656 5de5890b 2018-10-18 stsp
1657 5de5890b 2018-10-18 stsp #ifndef PROFILE
1658 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1659 0f8d269b 2019-01-04 stsp NULL) == -1)
1660 5de5890b 2018-10-18 stsp err(1, "pledge");
1661 5de5890b 2018-10-18 stsp #endif
1662 5de5890b 2018-10-18 stsp
1663 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
1664 5de5890b 2018-10-18 stsp switch (ch) {
1665 5de5890b 2018-10-18 stsp case 'c':
1666 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1667 5de5890b 2018-10-18 stsp break;
1668 5de5890b 2018-10-18 stsp case 'r':
1669 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1670 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1671 5de5890b 2018-10-18 stsp err(1, "-r option");
1672 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1673 5de5890b 2018-10-18 stsp break;
1674 5de5890b 2018-10-18 stsp case 'i':
1675 5de5890b 2018-10-18 stsp show_ids = 1;
1676 5de5890b 2018-10-18 stsp break;
1677 c1669e2e 2019-01-09 stsp case 'R':
1678 c1669e2e 2019-01-09 stsp recurse = 1;
1679 c1669e2e 2019-01-09 stsp break;
1680 5de5890b 2018-10-18 stsp default:
1681 2deda0b9 2019-03-07 stsp usage_tree();
1682 5de5890b 2018-10-18 stsp /* NOTREACHED */
1683 5de5890b 2018-10-18 stsp }
1684 5de5890b 2018-10-18 stsp }
1685 5de5890b 2018-10-18 stsp
1686 5de5890b 2018-10-18 stsp argc -= optind;
1687 5de5890b 2018-10-18 stsp argv += optind;
1688 5de5890b 2018-10-18 stsp
1689 5de5890b 2018-10-18 stsp if (argc == 1)
1690 5de5890b 2018-10-18 stsp path = argv[0];
1691 5de5890b 2018-10-18 stsp else if (argc > 1)
1692 5de5890b 2018-10-18 stsp usage_tree();
1693 5de5890b 2018-10-18 stsp else
1694 7a2c19d6 2019-02-05 stsp path = NULL;
1695 7a2c19d6 2019-02-05 stsp
1696 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
1697 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
1698 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1699 9bf7a39b 2019-02-05 stsp goto done;
1700 9bf7a39b 2019-02-05 stsp }
1701 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1702 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1703 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1704 7a2c19d6 2019-02-05 stsp goto done;
1705 7a2c19d6 2019-02-05 stsp else
1706 7a2c19d6 2019-02-05 stsp error = NULL;
1707 7a2c19d6 2019-02-05 stsp if (worktree) {
1708 7a2c19d6 2019-02-05 stsp repo_path =
1709 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1710 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
1711 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1712 7a2c19d6 2019-02-05 stsp if (error)
1713 7a2c19d6 2019-02-05 stsp goto done;
1714 7a2c19d6 2019-02-05 stsp } else {
1715 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
1716 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
1717 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1718 7a2c19d6 2019-02-05 stsp goto done;
1719 7a2c19d6 2019-02-05 stsp }
1720 5de5890b 2018-10-18 stsp }
1721 5de5890b 2018-10-18 stsp }
1722 5de5890b 2018-10-18 stsp
1723 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1724 5de5890b 2018-10-18 stsp if (error != NULL)
1725 c02c541e 2019-03-29 stsp goto done;
1726 c02c541e 2019-03-29 stsp
1727 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1728 c02c541e 2019-03-29 stsp if (error)
1729 5de5890b 2018-10-18 stsp goto done;
1730 5de5890b 2018-10-18 stsp
1731 9bf7a39b 2019-02-05 stsp if (path == NULL) {
1732 9bf7a39b 2019-02-05 stsp if (worktree) {
1733 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1734 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1735 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
1736 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
1737 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
1738 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1739 9bf7a39b 2019-02-05 stsp goto done;
1740 9bf7a39b 2019-02-05 stsp }
1741 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1742 9bf7a39b 2019-02-05 stsp free(p);
1743 9bf7a39b 2019-02-05 stsp if (error)
1744 9bf7a39b 2019-02-05 stsp goto done;
1745 9bf7a39b 2019-02-05 stsp } else
1746 9bf7a39b 2019-02-05 stsp path = "/";
1747 9bf7a39b 2019-02-05 stsp }
1748 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
1749 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1750 9bf7a39b 2019-02-05 stsp if (error != NULL)
1751 9bf7a39b 2019-02-05 stsp goto done;
1752 9bf7a39b 2019-02-05 stsp }
1753 5de5890b 2018-10-18 stsp
1754 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1755 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1756 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1757 5de5890b 2018-10-18 stsp if (error != NULL)
1758 5de5890b 2018-10-18 stsp goto done;
1759 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1760 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1761 5de5890b 2018-10-18 stsp if (error != NULL)
1762 5de5890b 2018-10-18 stsp goto done;
1763 5de5890b 2018-10-18 stsp } else {
1764 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1765 15a94983 2018-12-23 stsp commit_id_str);
1766 5de5890b 2018-10-18 stsp if (error != NULL)
1767 5de5890b 2018-10-18 stsp goto done;
1768 5de5890b 2018-10-18 stsp }
1769 5de5890b 2018-10-18 stsp
1770 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
1771 c1669e2e 2019-01-09 stsp in_repo_path, repo);
1772 5de5890b 2018-10-18 stsp done:
1773 5de5890b 2018-10-18 stsp free(in_repo_path);
1774 5de5890b 2018-10-18 stsp free(repo_path);
1775 5de5890b 2018-10-18 stsp free(cwd);
1776 5de5890b 2018-10-18 stsp free(commit_id);
1777 7a2c19d6 2019-02-05 stsp if (worktree)
1778 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
1779 5de5890b 2018-10-18 stsp if (repo) {
1780 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1781 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1782 5de5890b 2018-10-18 stsp if (error == NULL)
1783 5de5890b 2018-10-18 stsp error = repo_error;
1784 5de5890b 2018-10-18 stsp }
1785 5de5890b 2018-10-18 stsp return error;
1786 5de5890b 2018-10-18 stsp }
1787 5de5890b 2018-10-18 stsp
1788 6bad629b 2019-02-04 stsp __dead static void
1789 6bad629b 2019-02-04 stsp usage_status(void)
1790 6bad629b 2019-02-04 stsp {
1791 927df6b7 2019-02-10 stsp fprintf(stderr, "usage: %s status [path]\n", getprogname());
1792 6bad629b 2019-02-04 stsp exit(1);
1793 6bad629b 2019-02-04 stsp }
1794 5c860e29 2018-03-12 stsp
1795 b72f483a 2019-02-05 stsp static const struct got_error *
1796 b72f483a 2019-02-05 stsp print_status(void *arg, unsigned char status, const char *path,
1797 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1798 6bad629b 2019-02-04 stsp {
1799 6bad629b 2019-02-04 stsp printf("%c %s\n", status, path);
1800 b72f483a 2019-02-05 stsp return NULL;
1801 6bad629b 2019-02-04 stsp }
1802 5c860e29 2018-03-12 stsp
1803 6bad629b 2019-02-04 stsp static const struct got_error *
1804 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
1805 6bad629b 2019-02-04 stsp {
1806 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
1807 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
1808 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
1809 927df6b7 2019-02-10 stsp char *cwd = NULL, *path = NULL;
1810 6bad629b 2019-02-04 stsp int ch;
1811 5c860e29 2018-03-12 stsp
1812 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1813 6bad629b 2019-02-04 stsp switch (ch) {
1814 5c860e29 2018-03-12 stsp default:
1815 2deda0b9 2019-03-07 stsp usage_status();
1816 6bad629b 2019-02-04 stsp /* NOTREACHED */
1817 5c860e29 2018-03-12 stsp }
1818 5c860e29 2018-03-12 stsp }
1819 5c860e29 2018-03-12 stsp
1820 6bad629b 2019-02-04 stsp argc -= optind;
1821 6bad629b 2019-02-04 stsp argv += optind;
1822 5c860e29 2018-03-12 stsp
1823 6bad629b 2019-02-04 stsp #ifndef PROFILE
1824 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1825 6bad629b 2019-02-04 stsp NULL) == -1)
1826 6bad629b 2019-02-04 stsp err(1, "pledge");
1827 f42b1b34 2018-03-12 stsp #endif
1828 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
1829 927df6b7 2019-02-10 stsp if (cwd == NULL) {
1830 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1831 927df6b7 2019-02-10 stsp goto done;
1832 927df6b7 2019-02-10 stsp }
1833 927df6b7 2019-02-10 stsp
1834 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1835 927df6b7 2019-02-10 stsp if (error != NULL)
1836 927df6b7 2019-02-10 stsp goto done;
1837 927df6b7 2019-02-10 stsp
1838 6bad629b 2019-02-04 stsp if (argc == 0) {
1839 927df6b7 2019-02-10 stsp path = strdup("");
1840 927df6b7 2019-02-10 stsp if (path == NULL) {
1841 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1842 6bad629b 2019-02-04 stsp goto done;
1843 6bad629b 2019-02-04 stsp }
1844 6bad629b 2019-02-04 stsp } else if (argc == 1) {
1845 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
1846 927df6b7 2019-02-10 stsp if (error)
1847 6bad629b 2019-02-04 stsp goto done;
1848 6bad629b 2019-02-04 stsp } else
1849 6bad629b 2019-02-04 stsp usage_status();
1850 6bad629b 2019-02-04 stsp
1851 6bad629b 2019-02-04 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1852 6bad629b 2019-02-04 stsp if (error != NULL)
1853 6bad629b 2019-02-04 stsp goto done;
1854 6bad629b 2019-02-04 stsp
1855 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1856 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
1857 6bad629b 2019-02-04 stsp if (error)
1858 6bad629b 2019-02-04 stsp goto done;
1859 6bad629b 2019-02-04 stsp
1860 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_status, NULL,
1861 6bad629b 2019-02-04 stsp check_cancelled, NULL);
1862 6bad629b 2019-02-04 stsp done:
1863 927df6b7 2019-02-10 stsp free(cwd);
1864 927df6b7 2019-02-10 stsp free(path);
1865 d0eebce4 2019-03-11 stsp return error;
1866 d0eebce4 2019-03-11 stsp }
1867 d0eebce4 2019-03-11 stsp
1868 d0eebce4 2019-03-11 stsp __dead static void
1869 d0eebce4 2019-03-11 stsp usage_ref(void)
1870 d0eebce4 2019-03-11 stsp {
1871 d0eebce4 2019-03-11 stsp fprintf(stderr,
1872 d83d9d5c 2019-05-13 stsp "usage: %s ref [-r repository] -l | -d name | name target\n",
1873 d0eebce4 2019-03-11 stsp getprogname());
1874 d0eebce4 2019-03-11 stsp exit(1);
1875 d0eebce4 2019-03-11 stsp }
1876 d0eebce4 2019-03-11 stsp
1877 d0eebce4 2019-03-11 stsp static const struct got_error *
1878 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
1879 d0eebce4 2019-03-11 stsp {
1880 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
1881 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
1882 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
1883 d0eebce4 2019-03-11 stsp
1884 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
1885 d0eebce4 2019-03-11 stsp err = got_ref_list(&refs, repo);
1886 d0eebce4 2019-03-11 stsp if (err)
1887 d0eebce4 2019-03-11 stsp return err;
1888 d0eebce4 2019-03-11 stsp
1889 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1890 d0eebce4 2019-03-11 stsp char *refstr;
1891 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
1892 d0eebce4 2019-03-11 stsp if (refstr == NULL)
1893 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
1894 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
1895 d0eebce4 2019-03-11 stsp free(refstr);
1896 d0eebce4 2019-03-11 stsp }
1897 d0eebce4 2019-03-11 stsp
1898 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1899 d0eebce4 2019-03-11 stsp return NULL;
1900 d0eebce4 2019-03-11 stsp }
1901 d0eebce4 2019-03-11 stsp
1902 d0eebce4 2019-03-11 stsp static const struct got_error *
1903 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
1904 d0eebce4 2019-03-11 stsp {
1905 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1906 d0eebce4 2019-03-11 stsp struct got_reference *ref;
1907 d0eebce4 2019-03-11 stsp
1908 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
1909 d0eebce4 2019-03-11 stsp if (err)
1910 d0eebce4 2019-03-11 stsp return err;
1911 d0eebce4 2019-03-11 stsp
1912 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
1913 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1914 d0eebce4 2019-03-11 stsp return err;
1915 d0eebce4 2019-03-11 stsp }
1916 d0eebce4 2019-03-11 stsp
1917 d0eebce4 2019-03-11 stsp static const struct got_error *
1918 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
1919 d0eebce4 2019-03-11 stsp {
1920 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1921 d0eebce4 2019-03-11 stsp struct got_object_id *id;
1922 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
1923 d0eebce4 2019-03-11 stsp
1924 d83d9d5c 2019-05-13 stsp err = got_object_resolve_id_str(&id, repo, target);
1925 d83d9d5c 2019-05-13 stsp if (err) {
1926 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
1927 d0eebce4 2019-03-11 stsp
1928 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
1929 d83d9d5c 2019-05-13 stsp return err;
1930 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
1931 d83d9d5c 2019-05-13 stsp if (err)
1932 d83d9d5c 2019-05-13 stsp return err;
1933 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
1934 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
1935 d83d9d5c 2019-05-13 stsp if (err)
1936 d83d9d5c 2019-05-13 stsp return err;
1937 d83d9d5c 2019-05-13 stsp }
1938 d83d9d5c 2019-05-13 stsp
1939 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
1940 d0eebce4 2019-03-11 stsp if (err)
1941 d0eebce4 2019-03-11 stsp goto done;
1942 d0eebce4 2019-03-11 stsp
1943 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
1944 d0eebce4 2019-03-11 stsp done:
1945 d0eebce4 2019-03-11 stsp if (ref)
1946 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1947 d0eebce4 2019-03-11 stsp free(id);
1948 d0eebce4 2019-03-11 stsp return err;
1949 d0eebce4 2019-03-11 stsp }
1950 d0eebce4 2019-03-11 stsp
1951 d0eebce4 2019-03-11 stsp static const struct got_error *
1952 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
1953 d0eebce4 2019-03-11 stsp {
1954 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
1955 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
1956 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
1957 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
1958 d0eebce4 2019-03-11 stsp int ch, do_list = 0;
1959 d0eebce4 2019-03-11 stsp const char *delref = NULL;
1960 d0eebce4 2019-03-11 stsp
1961 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
1962 d0eebce4 2019-03-11 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
1963 d0eebce4 2019-03-11 stsp switch (ch) {
1964 d0eebce4 2019-03-11 stsp case 'd':
1965 d0eebce4 2019-03-11 stsp delref = optarg;
1966 d0eebce4 2019-03-11 stsp break;
1967 d0eebce4 2019-03-11 stsp case 'r':
1968 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
1969 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1970 d0eebce4 2019-03-11 stsp err(1, "-r option");
1971 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1972 d0eebce4 2019-03-11 stsp break;
1973 d0eebce4 2019-03-11 stsp case 'l':
1974 d0eebce4 2019-03-11 stsp do_list = 1;
1975 d0eebce4 2019-03-11 stsp break;
1976 d0eebce4 2019-03-11 stsp default:
1977 d0eebce4 2019-03-11 stsp usage_ref();
1978 d0eebce4 2019-03-11 stsp /* NOTREACHED */
1979 d0eebce4 2019-03-11 stsp }
1980 d0eebce4 2019-03-11 stsp }
1981 d0eebce4 2019-03-11 stsp
1982 d0eebce4 2019-03-11 stsp if (do_list && delref)
1983 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
1984 d0eebce4 2019-03-11 stsp
1985 d0eebce4 2019-03-11 stsp argc -= optind;
1986 d0eebce4 2019-03-11 stsp argv += optind;
1987 d0eebce4 2019-03-11 stsp
1988 d0eebce4 2019-03-11 stsp if (do_list || delref) {
1989 d0eebce4 2019-03-11 stsp if (argc > 0)
1990 d0eebce4 2019-03-11 stsp usage_ref();
1991 d0eebce4 2019-03-11 stsp } else if (argc != 2)
1992 d0eebce4 2019-03-11 stsp usage_ref();
1993 d0eebce4 2019-03-11 stsp
1994 d0eebce4 2019-03-11 stsp #ifndef PROFILE
1995 e0b57350 2019-03-12 stsp if (do_list) {
1996 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
1997 e0b57350 2019-03-12 stsp NULL) == -1)
1998 e0b57350 2019-03-12 stsp err(1, "pledge");
1999 e0b57350 2019-03-12 stsp } else {
2000 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
2001 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
2002 e0b57350 2019-03-12 stsp err(1, "pledge");
2003 e0b57350 2019-03-12 stsp }
2004 d0eebce4 2019-03-11 stsp #endif
2005 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
2006 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
2007 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2008 d0eebce4 2019-03-11 stsp goto done;
2009 d0eebce4 2019-03-11 stsp }
2010 d0eebce4 2019-03-11 stsp
2011 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
2012 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
2013 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2014 d0eebce4 2019-03-11 stsp goto done;
2015 d0eebce4 2019-03-11 stsp else
2016 d0eebce4 2019-03-11 stsp error = NULL;
2017 d0eebce4 2019-03-11 stsp if (worktree) {
2018 d0eebce4 2019-03-11 stsp repo_path =
2019 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
2020 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
2021 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2022 d0eebce4 2019-03-11 stsp if (error)
2023 d0eebce4 2019-03-11 stsp goto done;
2024 d0eebce4 2019-03-11 stsp } else {
2025 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
2026 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
2027 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2028 d0eebce4 2019-03-11 stsp goto done;
2029 d0eebce4 2019-03-11 stsp }
2030 d0eebce4 2019-03-11 stsp }
2031 d0eebce4 2019-03-11 stsp }
2032 d0eebce4 2019-03-11 stsp
2033 d0eebce4 2019-03-11 stsp error = got_repo_open(&repo, repo_path);
2034 d0eebce4 2019-03-11 stsp if (error != NULL)
2035 d0eebce4 2019-03-11 stsp goto done;
2036 d0eebce4 2019-03-11 stsp
2037 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
2038 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
2039 c02c541e 2019-03-29 stsp if (error)
2040 c02c541e 2019-03-29 stsp goto done;
2041 c02c541e 2019-03-29 stsp
2042 d0eebce4 2019-03-11 stsp if (do_list)
2043 d0eebce4 2019-03-11 stsp error = list_refs(repo);
2044 d0eebce4 2019-03-11 stsp else if (delref)
2045 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
2046 d0eebce4 2019-03-11 stsp else
2047 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
2048 d0eebce4 2019-03-11 stsp done:
2049 d0eebce4 2019-03-11 stsp if (repo)
2050 d0eebce4 2019-03-11 stsp got_repo_close(repo);
2051 d0eebce4 2019-03-11 stsp if (worktree)
2052 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
2053 d0eebce4 2019-03-11 stsp free(cwd);
2054 d0eebce4 2019-03-11 stsp free(repo_path);
2055 d00136be 2019-03-26 stsp return error;
2056 d00136be 2019-03-26 stsp }
2057 d00136be 2019-03-26 stsp
2058 d00136be 2019-03-26 stsp __dead static void
2059 d00136be 2019-03-26 stsp usage_add(void)
2060 d00136be 2019-03-26 stsp {
2061 fbb7e5c7 2019-05-11 stsp fprintf(stderr, "usage: %s add file-path ...\n", getprogname());
2062 d00136be 2019-03-26 stsp exit(1);
2063 d00136be 2019-03-26 stsp }
2064 d00136be 2019-03-26 stsp
2065 d00136be 2019-03-26 stsp static const struct got_error *
2066 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
2067 d00136be 2019-03-26 stsp {
2068 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
2069 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
2070 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
2071 1dd54920 2019-05-11 stsp char *cwd = NULL;
2072 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
2073 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2074 723c305c 2019-05-11 jcs int ch, x;
2075 1dd54920 2019-05-11 stsp
2076 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
2077 d00136be 2019-03-26 stsp
2078 d00136be 2019-03-26 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2079 d00136be 2019-03-26 stsp switch (ch) {
2080 d00136be 2019-03-26 stsp default:
2081 d00136be 2019-03-26 stsp usage_add();
2082 d00136be 2019-03-26 stsp /* NOTREACHED */
2083 d00136be 2019-03-26 stsp }
2084 d00136be 2019-03-26 stsp }
2085 d00136be 2019-03-26 stsp
2086 d00136be 2019-03-26 stsp argc -= optind;
2087 d00136be 2019-03-26 stsp argv += optind;
2088 d00136be 2019-03-26 stsp
2089 723c305c 2019-05-11 jcs if (argc < 1)
2090 d00136be 2019-03-26 stsp usage_add();
2091 d00136be 2019-03-26 stsp
2092 723c305c 2019-05-11 jcs /* make sure each file exists before doing anything halfway */
2093 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2094 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2095 723c305c 2019-05-11 jcs if (path == NULL) {
2096 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2097 723c305c 2019-05-11 jcs goto done;
2098 723c305c 2019-05-11 jcs }
2099 1dd54920 2019-05-11 stsp free(path);
2100 d00136be 2019-03-26 stsp }
2101 d00136be 2019-03-26 stsp
2102 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
2103 d00136be 2019-03-26 stsp if (cwd == NULL) {
2104 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2105 d00136be 2019-03-26 stsp goto done;
2106 d00136be 2019-03-26 stsp }
2107 723c305c 2019-05-11 jcs
2108 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2109 d00136be 2019-03-26 stsp if (error)
2110 d00136be 2019-03-26 stsp goto done;
2111 d00136be 2019-03-26 stsp
2112 031a5338 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2113 031a5338 2019-03-26 stsp if (error != NULL)
2114 031a5338 2019-03-26 stsp goto done;
2115 031a5338 2019-03-26 stsp
2116 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2117 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2118 d00136be 2019-03-26 stsp if (error)
2119 d00136be 2019-03-26 stsp goto done;
2120 d00136be 2019-03-26 stsp
2121 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2122 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2123 723c305c 2019-05-11 jcs if (path == NULL) {
2124 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2125 723c305c 2019-05-11 jcs goto done;
2126 723c305c 2019-05-11 jcs }
2127 723c305c 2019-05-11 jcs
2128 723c305c 2019-05-11 jcs got_path_strip_trailing_slashes(path);
2129 1dd54920 2019-05-11 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2130 1dd54920 2019-05-11 stsp if (error) {
2131 1dd54920 2019-05-11 stsp free(path);
2132 723c305c 2019-05-11 jcs goto done;
2133 1dd54920 2019-05-11 stsp }
2134 723c305c 2019-05-11 jcs }
2135 1dd54920 2019-05-11 stsp error = got_worktree_schedule_add(worktree, &paths, print_status,
2136 1dd54920 2019-05-11 stsp NULL, repo);
2137 d00136be 2019-03-26 stsp done:
2138 031a5338 2019-03-26 stsp if (repo)
2139 031a5338 2019-03-26 stsp got_repo_close(repo);
2140 d00136be 2019-03-26 stsp if (worktree)
2141 d00136be 2019-03-26 stsp got_worktree_close(worktree);
2142 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
2143 1dd54920 2019-05-11 stsp free((char *)pe->path);
2144 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
2145 2ec1f75b 2019-03-26 stsp free(cwd);
2146 2ec1f75b 2019-03-26 stsp return error;
2147 2ec1f75b 2019-03-26 stsp }
2148 2ec1f75b 2019-03-26 stsp
2149 2ec1f75b 2019-03-26 stsp __dead static void
2150 2ec1f75b 2019-03-26 stsp usage_rm(void)
2151 2ec1f75b 2019-03-26 stsp {
2152 2ec1f75b 2019-03-26 stsp fprintf(stderr, "usage: %s rm [-f] file-path\n", getprogname());
2153 2ec1f75b 2019-03-26 stsp exit(1);
2154 2ec1f75b 2019-03-26 stsp }
2155 2ec1f75b 2019-03-26 stsp
2156 2ec1f75b 2019-03-26 stsp static const struct got_error *
2157 2ec1f75b 2019-03-26 stsp cmd_rm(int argc, char *argv[])
2158 2ec1f75b 2019-03-26 stsp {
2159 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
2160 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
2161 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
2162 2ec1f75b 2019-03-26 stsp char *cwd = NULL, *path = NULL;
2163 2ec1f75b 2019-03-26 stsp int ch, delete_local_mods = 0;
2164 2ec1f75b 2019-03-26 stsp
2165 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
2166 2ec1f75b 2019-03-26 stsp switch (ch) {
2167 2ec1f75b 2019-03-26 stsp case 'f':
2168 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
2169 2ec1f75b 2019-03-26 stsp break;
2170 2ec1f75b 2019-03-26 stsp default:
2171 2ec1f75b 2019-03-26 stsp usage_add();
2172 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
2173 2ec1f75b 2019-03-26 stsp }
2174 2ec1f75b 2019-03-26 stsp }
2175 2ec1f75b 2019-03-26 stsp
2176 2ec1f75b 2019-03-26 stsp argc -= optind;
2177 2ec1f75b 2019-03-26 stsp argv += optind;
2178 2ec1f75b 2019-03-26 stsp
2179 2ec1f75b 2019-03-26 stsp if (argc != 1)
2180 2ec1f75b 2019-03-26 stsp usage_rm();
2181 2ec1f75b 2019-03-26 stsp
2182 2ec1f75b 2019-03-26 stsp path = realpath(argv[0], NULL);
2183 2ec1f75b 2019-03-26 stsp if (path == NULL) {
2184 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2185 2ec1f75b 2019-03-26 stsp goto done;
2186 2ec1f75b 2019-03-26 stsp }
2187 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2188 2ec1f75b 2019-03-26 stsp
2189 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
2190 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
2191 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2192 2ec1f75b 2019-03-26 stsp goto done;
2193 2ec1f75b 2019-03-26 stsp }
2194 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2195 2ec1f75b 2019-03-26 stsp if (error)
2196 2ec1f75b 2019-03-26 stsp goto done;
2197 2ec1f75b 2019-03-26 stsp
2198 2ec1f75b 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2199 2af4a041 2019-05-11 jcs if (error)
2200 2ec1f75b 2019-03-26 stsp goto done;
2201 2ec1f75b 2019-03-26 stsp
2202 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2203 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2204 2ec1f75b 2019-03-26 stsp if (error)
2205 2ec1f75b 2019-03-26 stsp goto done;
2206 2ec1f75b 2019-03-26 stsp
2207 2ec1f75b 2019-03-26 stsp error = got_worktree_schedule_delete(worktree, path, delete_local_mods,
2208 2ec1f75b 2019-03-26 stsp print_status, NULL, repo);
2209 a129376b 2019-03-28 stsp if (error)
2210 a129376b 2019-03-28 stsp goto done;
2211 a129376b 2019-03-28 stsp done:
2212 a129376b 2019-03-28 stsp if (repo)
2213 a129376b 2019-03-28 stsp got_repo_close(repo);
2214 a129376b 2019-03-28 stsp if (worktree)
2215 a129376b 2019-03-28 stsp got_worktree_close(worktree);
2216 a129376b 2019-03-28 stsp free(path);
2217 a129376b 2019-03-28 stsp free(cwd);
2218 a129376b 2019-03-28 stsp return error;
2219 a129376b 2019-03-28 stsp }
2220 a129376b 2019-03-28 stsp
2221 a129376b 2019-03-28 stsp __dead static void
2222 a129376b 2019-03-28 stsp usage_revert(void)
2223 a129376b 2019-03-28 stsp {
2224 a129376b 2019-03-28 stsp fprintf(stderr, "usage: %s revert file-path\n", getprogname());
2225 a129376b 2019-03-28 stsp exit(1);
2226 a129376b 2019-03-28 stsp }
2227 a129376b 2019-03-28 stsp
2228 a129376b 2019-03-28 stsp static void
2229 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
2230 a129376b 2019-03-28 stsp {
2231 a129376b 2019-03-28 stsp while (path[0] == '/')
2232 a129376b 2019-03-28 stsp path++;
2233 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
2234 a129376b 2019-03-28 stsp }
2235 a129376b 2019-03-28 stsp
2236 a129376b 2019-03-28 stsp static const struct got_error *
2237 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
2238 a129376b 2019-03-28 stsp {
2239 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
2240 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
2241 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
2242 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
2243 a129376b 2019-03-28 stsp int ch;
2244 a129376b 2019-03-28 stsp
2245 a129376b 2019-03-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2246 a129376b 2019-03-28 stsp switch (ch) {
2247 a129376b 2019-03-28 stsp default:
2248 a129376b 2019-03-28 stsp usage_revert();
2249 a129376b 2019-03-28 stsp /* NOTREACHED */
2250 a129376b 2019-03-28 stsp }
2251 a129376b 2019-03-28 stsp }
2252 a129376b 2019-03-28 stsp
2253 a129376b 2019-03-28 stsp argc -= optind;
2254 a129376b 2019-03-28 stsp argv += optind;
2255 a129376b 2019-03-28 stsp
2256 a129376b 2019-03-28 stsp if (argc != 1)
2257 a129376b 2019-03-28 stsp usage_revert();
2258 a129376b 2019-03-28 stsp
2259 a129376b 2019-03-28 stsp path = realpath(argv[0], NULL);
2260 a129376b 2019-03-28 stsp if (path == NULL) {
2261 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2262 a129376b 2019-03-28 stsp goto done;
2263 a129376b 2019-03-28 stsp }
2264 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2265 a129376b 2019-03-28 stsp
2266 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
2267 a129376b 2019-03-28 stsp if (cwd == NULL) {
2268 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2269 a129376b 2019-03-28 stsp goto done;
2270 a129376b 2019-03-28 stsp }
2271 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
2272 2ec1f75b 2019-03-26 stsp if (error)
2273 2ec1f75b 2019-03-26 stsp goto done;
2274 a129376b 2019-03-28 stsp
2275 a129376b 2019-03-28 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2276 a129376b 2019-03-28 stsp if (error != NULL)
2277 a129376b 2019-03-28 stsp goto done;
2278 a129376b 2019-03-28 stsp
2279 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2280 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2281 a129376b 2019-03-28 stsp if (error)
2282 a129376b 2019-03-28 stsp goto done;
2283 a129376b 2019-03-28 stsp
2284 a129376b 2019-03-28 stsp error = got_worktree_revert(worktree, path,
2285 a129376b 2019-03-28 stsp revert_progress, NULL, repo);
2286 a129376b 2019-03-28 stsp if (error)
2287 a129376b 2019-03-28 stsp goto done;
2288 2ec1f75b 2019-03-26 stsp done:
2289 2ec1f75b 2019-03-26 stsp if (repo)
2290 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
2291 2ec1f75b 2019-03-26 stsp if (worktree)
2292 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
2293 2ec1f75b 2019-03-26 stsp free(path);
2294 d00136be 2019-03-26 stsp free(cwd);
2295 6bad629b 2019-02-04 stsp return error;
2296 c4296144 2019-05-09 stsp }
2297 c4296144 2019-05-09 stsp
2298 c4296144 2019-05-09 stsp __dead static void
2299 c4296144 2019-05-09 stsp usage_commit(void)
2300 c4296144 2019-05-09 stsp {
2301 c6fc0acd 2019-05-09 stsp fprintf(stderr, "usage: %s commit [-m msg] file-path\n", getprogname());
2302 c4296144 2019-05-09 stsp exit(1);
2303 33ad4cbe 2019-05-12 jcs }
2304 33ad4cbe 2019-05-12 jcs
2305 33ad4cbe 2019-05-12 jcs int
2306 e2ba3d07 2019-05-13 stsp spawn_editor(const char *editor, const char *file)
2307 33ad4cbe 2019-05-12 jcs {
2308 33ad4cbe 2019-05-12 jcs pid_t pid;
2309 33ad4cbe 2019-05-12 jcs sig_t sighup, sigint, sigquit;
2310 33ad4cbe 2019-05-12 jcs int st = -1;
2311 33ad4cbe 2019-05-12 jcs
2312 33ad4cbe 2019-05-12 jcs sighup = signal(SIGHUP, SIG_IGN);
2313 33ad4cbe 2019-05-12 jcs sigint = signal(SIGINT, SIG_IGN);
2314 33ad4cbe 2019-05-12 jcs sigquit = signal(SIGQUIT, SIG_IGN);
2315 33ad4cbe 2019-05-12 jcs
2316 33ad4cbe 2019-05-12 jcs switch (pid = fork()) {
2317 33ad4cbe 2019-05-12 jcs case -1:
2318 33ad4cbe 2019-05-12 jcs goto doneediting;
2319 33ad4cbe 2019-05-12 jcs case 0:
2320 e2ba3d07 2019-05-13 stsp execl(editor, editor, file, (char *)NULL);
2321 33ad4cbe 2019-05-12 jcs _exit(127);
2322 33ad4cbe 2019-05-12 jcs }
2323 33ad4cbe 2019-05-12 jcs
2324 33ad4cbe 2019-05-12 jcs while (waitpid(pid, &st, 0) == -1)
2325 33ad4cbe 2019-05-12 jcs if (errno != EINTR)
2326 33ad4cbe 2019-05-12 jcs break;
2327 33ad4cbe 2019-05-12 jcs
2328 33ad4cbe 2019-05-12 jcs doneediting:
2329 33ad4cbe 2019-05-12 jcs (void)signal(SIGHUP, sighup);
2330 33ad4cbe 2019-05-12 jcs (void)signal(SIGINT, sigint);
2331 33ad4cbe 2019-05-12 jcs (void)signal(SIGQUIT, sigquit);
2332 33ad4cbe 2019-05-12 jcs
2333 33ad4cbe 2019-05-12 jcs if (!WIFEXITED(st)) {
2334 33ad4cbe 2019-05-12 jcs errno = EINTR;
2335 33ad4cbe 2019-05-12 jcs return -1;
2336 33ad4cbe 2019-05-12 jcs }
2337 33ad4cbe 2019-05-12 jcs
2338 33ad4cbe 2019-05-12 jcs return WEXITSTATUS(st);
2339 33ad4cbe 2019-05-12 jcs }
2340 33ad4cbe 2019-05-12 jcs
2341 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
2342 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
2343 e2ba3d07 2019-05-13 stsp const char *editor;
2344 e0870e44 2019-05-13 stsp const char *worktree_path;
2345 314a6357 2019-05-13 stsp const char *repo_path;
2346 e0870e44 2019-05-13 stsp char *logmsg_path;
2347 e2ba3d07 2019-05-13 stsp
2348 e2ba3d07 2019-05-13 stsp };
2349 e0870e44 2019-05-13 stsp
2350 33ad4cbe 2019-05-12 jcs static const struct got_error *
2351 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
2352 33ad4cbe 2019-05-12 jcs void *arg)
2353 33ad4cbe 2019-05-12 jcs {
2354 e0870e44 2019-05-13 stsp const char *initial_content = "\n# changes to be committed:\n";
2355 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
2356 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
2357 e0870e44 2019-05-13 stsp char *template = NULL;
2358 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
2359 33ad4cbe 2019-05-12 jcs char buf[1024];
2360 33ad4cbe 2019-05-12 jcs struct stat st, st2;
2361 33ad4cbe 2019-05-12 jcs FILE *fp;
2362 33ad4cbe 2019-05-12 jcs size_t len;
2363 e0870e44 2019-05-13 stsp int fd, content_changed = 0;
2364 33ad4cbe 2019-05-12 jcs
2365 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
2366 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
2367 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
2368 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
2369 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
2370 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
2371 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
2372 33ad4cbe 2019-05-12 jcs return NULL;
2373 33ad4cbe 2019-05-12 jcs }
2374 33ad4cbe 2019-05-12 jcs
2375 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
2376 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2377 e0870e44 2019-05-13 stsp
2378 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
2379 793c30b5 2019-05-13 stsp if (err)
2380 e0870e44 2019-05-13 stsp goto done;
2381 33ad4cbe 2019-05-12 jcs
2382 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
2383 33ad4cbe 2019-05-12 jcs
2384 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
2385 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2386 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
2387 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
2388 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
2389 33ad4cbe 2019-05-12 jcs }
2390 33ad4cbe 2019-05-12 jcs close(fd);
2391 33ad4cbe 2019-05-12 jcs
2392 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st) == -1) {
2393 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", a->logmsg_path);
2394 33ad4cbe 2019-05-12 jcs goto done;
2395 33ad4cbe 2019-05-12 jcs }
2396 33ad4cbe 2019-05-12 jcs
2397 e0870e44 2019-05-13 stsp if (spawn_editor(a->editor, a->logmsg_path) == -1) {
2398 638f9024 2019-05-13 stsp err = got_error_from_errno("failed spawning editor");
2399 33ad4cbe 2019-05-12 jcs goto done;
2400 33ad4cbe 2019-05-12 jcs }
2401 33ad4cbe 2019-05-12 jcs
2402 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st2) == -1) {
2403 638f9024 2019-05-13 stsp err = got_error_from_errno("stat");
2404 33ad4cbe 2019-05-12 jcs goto done;
2405 33ad4cbe 2019-05-12 jcs }
2406 33ad4cbe 2019-05-12 jcs
2407 33ad4cbe 2019-05-12 jcs if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size) {
2408 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2409 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2410 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2411 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2412 33ad4cbe 2019-05-12 jcs "no changes made to commit message, aborting");
2413 33ad4cbe 2019-05-12 jcs goto done;
2414 33ad4cbe 2019-05-12 jcs }
2415 33ad4cbe 2019-05-12 jcs
2416 33ad4cbe 2019-05-12 jcs *logmsg = malloc(st2.st_size + 1);
2417 fcde04d9 2019-05-13 stsp if (*logmsg == NULL) {
2418 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
2419 fcde04d9 2019-05-13 stsp goto done;
2420 fcde04d9 2019-05-13 stsp }
2421 cc79381d 2019-05-22 stsp (*logmsg)[0] = '\0';
2422 33ad4cbe 2019-05-12 jcs len = 0;
2423 33ad4cbe 2019-05-12 jcs
2424 e0870e44 2019-05-13 stsp fp = fopen(a->logmsg_path, "r");
2425 d4592c7c 2019-05-22 stsp if (fp == NULL) {
2426 d4592c7c 2019-05-22 stsp err = got_error_from_errno("fopen");
2427 d4592c7c 2019-05-22 stsp goto done;
2428 d4592c7c 2019-05-22 stsp }
2429 33ad4cbe 2019-05-12 jcs while (fgets(buf, sizeof(buf), fp) != NULL) {
2430 e0870e44 2019-05-13 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
2431 e0870e44 2019-05-13 stsp content_changed = 1;
2432 33ad4cbe 2019-05-12 jcs if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
2433 78527a0a 2019-05-22 stsp continue; /* remove comments and leading empty lines */
2434 33ad4cbe 2019-05-12 jcs len = strlcat(*logmsg, buf, st2.st_size);
2435 33ad4cbe 2019-05-12 jcs }
2436 33ad4cbe 2019-05-12 jcs fclose(fp);
2437 33ad4cbe 2019-05-12 jcs
2438 33ad4cbe 2019-05-12 jcs while (len > 0 && (*logmsg)[len - 1] == '\n') {
2439 33ad4cbe 2019-05-12 jcs (*logmsg)[len - 1] = '\0';
2440 33ad4cbe 2019-05-12 jcs len--;
2441 33ad4cbe 2019-05-12 jcs }
2442 33ad4cbe 2019-05-12 jcs
2443 e0870e44 2019-05-13 stsp if (len == 0 || !content_changed) {
2444 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2445 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2446 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2447 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2448 33ad4cbe 2019-05-12 jcs "commit message cannot be empty, aborting");
2449 33ad4cbe 2019-05-12 jcs goto done;
2450 33ad4cbe 2019-05-12 jcs }
2451 33ad4cbe 2019-05-12 jcs done:
2452 e0870e44 2019-05-13 stsp free(template);
2453 314a6357 2019-05-13 stsp
2454 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
2455 314a6357 2019-05-13 stsp if (err == NULL)
2456 314a6357 2019-05-13 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path, 0);
2457 33ad4cbe 2019-05-12 jcs return err;
2458 6bad629b 2019-02-04 stsp }
2459 c4296144 2019-05-09 stsp
2460 c4296144 2019-05-09 stsp static const struct got_error *
2461 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
2462 c4296144 2019-05-09 stsp {
2463 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
2464 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
2465 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
2466 c4296144 2019-05-09 stsp char *cwd = NULL, *path = NULL, *id_str = NULL;
2467 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
2468 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
2469 35bd8fed 2019-05-09 stsp const char *got_author = getenv("GOT_AUTHOR");
2470 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg cl_arg;
2471 e2ba3d07 2019-05-13 stsp char *editor = NULL;
2472 c4296144 2019-05-09 stsp int ch;
2473 c4296144 2019-05-09 stsp
2474 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
2475 c4296144 2019-05-09 stsp switch (ch) {
2476 c4296144 2019-05-09 stsp case 'm':
2477 c4296144 2019-05-09 stsp logmsg = optarg;
2478 c4296144 2019-05-09 stsp break;
2479 c4296144 2019-05-09 stsp default:
2480 c4296144 2019-05-09 stsp usage_commit();
2481 c4296144 2019-05-09 stsp /* NOTREACHED */
2482 c4296144 2019-05-09 stsp }
2483 c4296144 2019-05-09 stsp }
2484 c4296144 2019-05-09 stsp
2485 c4296144 2019-05-09 stsp argc -= optind;
2486 c4296144 2019-05-09 stsp argv += optind;
2487 c4296144 2019-05-09 stsp
2488 c4296144 2019-05-09 stsp if (argc == 1) {
2489 c4296144 2019-05-09 stsp path = realpath(argv[0], NULL);
2490 c4296144 2019-05-09 stsp if (path == NULL) {
2491 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2492 c4296144 2019-05-09 stsp goto done;
2493 c4296144 2019-05-09 stsp }
2494 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2495 c4296144 2019-05-09 stsp } else if (argc != 0)
2496 c4296144 2019-05-09 stsp usage_commit();
2497 c4296144 2019-05-09 stsp
2498 35bd8fed 2019-05-09 stsp if (got_author == NULL) {
2499 35bd8fed 2019-05-09 stsp /* TODO: Look current user up in password database */
2500 35bd8fed 2019-05-09 stsp error = got_error(GOT_ERR_COMMIT_NO_AUTHOR);
2501 35bd8fed 2019-05-09 stsp goto done;
2502 35bd8fed 2019-05-09 stsp }
2503 c4296144 2019-05-09 stsp
2504 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
2505 c4296144 2019-05-09 stsp if (cwd == NULL) {
2506 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2507 c4296144 2019-05-09 stsp goto done;
2508 c4296144 2019-05-09 stsp }
2509 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
2510 c4296144 2019-05-09 stsp if (error)
2511 c4296144 2019-05-09 stsp goto done;
2512 c4296144 2019-05-09 stsp
2513 c4296144 2019-05-09 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2514 c4296144 2019-05-09 stsp if (error != NULL)
2515 c4296144 2019-05-09 stsp goto done;
2516 c4296144 2019-05-09 stsp
2517 314a6357 2019-05-13 stsp /*
2518 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
2519 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
2520 314a6357 2019-05-13 stsp */
2521 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
2522 314a6357 2019-05-13 stsp error = get_editor(&editor);
2523 314a6357 2019-05-13 stsp else
2524 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2525 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2526 c4296144 2019-05-09 stsp if (error)
2527 c4296144 2019-05-09 stsp goto done;
2528 c4296144 2019-05-09 stsp
2529 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
2530 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
2531 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
2532 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
2533 e0870e44 2019-05-13 stsp cl_arg.logmsg_path = NULL;
2534 35bd8fed 2019-05-09 stsp error = got_worktree_commit(&id, worktree, path, got_author, NULL,
2535 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
2536 e0870e44 2019-05-13 stsp if (error) {
2537 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2538 e0870e44 2019-05-13 stsp fprintf(stderr, "%s: log message preserved in %s\n",
2539 e0870e44 2019-05-13 stsp getprogname(), cl_arg.logmsg_path);
2540 c4296144 2019-05-09 stsp goto done;
2541 e0870e44 2019-05-13 stsp }
2542 c4296144 2019-05-09 stsp
2543 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2544 e0870e44 2019-05-13 stsp unlink(cl_arg.logmsg_path);
2545 e0870e44 2019-05-13 stsp
2546 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
2547 c4296144 2019-05-09 stsp if (error)
2548 c4296144 2019-05-09 stsp goto done;
2549 c4296144 2019-05-09 stsp printf("created commit %s\n", id_str);
2550 c4296144 2019-05-09 stsp done:
2551 c4296144 2019-05-09 stsp if (repo)
2552 c4296144 2019-05-09 stsp got_repo_close(repo);
2553 c4296144 2019-05-09 stsp if (worktree)
2554 c4296144 2019-05-09 stsp got_worktree_close(worktree);
2555 c4296144 2019-05-09 stsp free(path);
2556 c4296144 2019-05-09 stsp free(cwd);
2557 c4296144 2019-05-09 stsp free(id_str);
2558 e2ba3d07 2019-05-13 stsp free(editor);
2559 c4296144 2019-05-09 stsp return error;
2560 c4296144 2019-05-09 stsp }