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