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 f42b1b34 2018-03-12 stsp
23 5c860e29 2018-03-12 stsp #include <err.h>
24 5c860e29 2018-03-12 stsp #include <errno.h>
25 5c860e29 2018-03-12 stsp #include <locale.h>
26 99437157 2018-11-11 stsp #include <signal.h>
27 5c860e29 2018-03-12 stsp #include <stdio.h>
28 5c860e29 2018-03-12 stsp #include <stdlib.h>
29 5c860e29 2018-03-12 stsp #include <string.h>
30 5c860e29 2018-03-12 stsp #include <unistd.h>
31 c09a553d 2018-03-12 stsp #include <libgen.h>
32 c0768b0f 2018-06-10 stsp #include <time.h>
33 5c860e29 2018-03-12 stsp
34 f42b1b34 2018-03-12 stsp #include "got_error.h"
35 f42b1b34 2018-03-12 stsp #include "got_object.h"
36 5261c201 2018-04-01 stsp #include "got_reference.h"
37 f42b1b34 2018-03-12 stsp #include "got_repository.h"
38 c09a553d 2018-03-12 stsp #include "got_worktree.h"
39 79109fed 2018-03-27 stsp #include "got_diff.h"
40 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
41 404c43c4 2018-06-21 stsp #include "got_blame.h"
42 63219cd2 2019-01-04 stsp #include "got_privsep.h"
43 5c860e29 2018-03-12 stsp
44 5c860e29 2018-03-12 stsp #ifndef nitems
45 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
46 5c860e29 2018-03-12 stsp #endif
47 99437157 2018-11-11 stsp
48 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
49 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
50 99437157 2018-11-11 stsp
51 99437157 2018-11-11 stsp static void
52 99437157 2018-11-11 stsp catch_sigint(int signo)
53 99437157 2018-11-11 stsp {
54 99437157 2018-11-11 stsp sigint_received = 1;
55 99437157 2018-11-11 stsp }
56 99437157 2018-11-11 stsp
57 99437157 2018-11-11 stsp static void
58 99437157 2018-11-11 stsp catch_sigpipe(int signo)
59 99437157 2018-11-11 stsp {
60 99437157 2018-11-11 stsp sigpipe_received = 1;
61 99437157 2018-11-11 stsp }
62 5c860e29 2018-03-12 stsp
63 99437157 2018-11-11 stsp
64 5c860e29 2018-03-12 stsp struct cmd {
65 5c860e29 2018-03-12 stsp const char *cmd_name;
66 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
67 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
68 46a0db7d 2018-03-12 stsp const char *cmd_descr;
69 5c860e29 2018-03-12 stsp };
70 5c860e29 2018-03-12 stsp
71 4ed7e80c 2018-05-20 stsp __dead static void usage(void);
72 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
73 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
74 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
75 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
76 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
77 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
78 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
79 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
80 5c860e29 2018-03-12 stsp
81 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
82 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
83 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
84 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
85 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
86 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
87 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
88 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
89 5c860e29 2018-03-12 stsp
90 4ed7e80c 2018-05-20 stsp static struct cmd got_commands[] = {
91 c09a553d 2018-03-12 stsp { "checkout", cmd_checkout, usage_checkout,
92 0bb8a95e 2018-03-12 stsp "check out a new work tree from a repository" },
93 507dc3bb 2018-12-29 stsp { "update", cmd_update, usage_update,
94 507dc3bb 2018-12-29 stsp "update a work tree to a different commit" },
95 1b6b95a8 2018-03-12 stsp { "log", cmd_log, usage_log,
96 1b6b95a8 2018-03-12 stsp "show repository history" },
97 b00d56cd 2018-04-01 stsp { "diff", cmd_diff, usage_diff,
98 b00d56cd 2018-04-01 stsp "compare files and directories" },
99 404c43c4 2018-06-21 stsp { "blame", cmd_blame, usage_blame,
100 404c43c4 2018-06-21 stsp " show when lines in a file were changed" },
101 5de5890b 2018-10-18 stsp { "tree", cmd_tree, usage_tree,
102 5de5890b 2018-10-18 stsp " list files and directories in repository" },
103 1b6b95a8 2018-03-12 stsp { "status", cmd_status, usage_status,
104 1b6b95a8 2018-03-12 stsp "show modification status of files" },
105 d0eebce4 2019-03-11 stsp { "ref", cmd_ref, usage_ref,
106 d0eebce4 2019-03-11 stsp "manage references in repository" },
107 5c860e29 2018-03-12 stsp };
108 5c860e29 2018-03-12 stsp
109 5c860e29 2018-03-12 stsp int
110 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
111 5c860e29 2018-03-12 stsp {
112 5c860e29 2018-03-12 stsp struct cmd *cmd;
113 5c860e29 2018-03-12 stsp unsigned int i;
114 5c860e29 2018-03-12 stsp int ch;
115 1b6b95a8 2018-03-12 stsp int hflag = 0;
116 5c860e29 2018-03-12 stsp
117 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
118 5c860e29 2018-03-12 stsp
119 1b6b95a8 2018-03-12 stsp while ((ch = getopt(argc, argv, "h")) != -1) {
120 5c860e29 2018-03-12 stsp switch (ch) {
121 1b6b95a8 2018-03-12 stsp case 'h':
122 1b6b95a8 2018-03-12 stsp hflag = 1;
123 1b6b95a8 2018-03-12 stsp break;
124 5c860e29 2018-03-12 stsp default:
125 5c860e29 2018-03-12 stsp usage();
126 5c860e29 2018-03-12 stsp /* NOTREACHED */
127 5c860e29 2018-03-12 stsp }
128 5c860e29 2018-03-12 stsp }
129 5c860e29 2018-03-12 stsp
130 5c860e29 2018-03-12 stsp argc -= optind;
131 5c860e29 2018-03-12 stsp argv += optind;
132 1e70621d 2018-03-27 stsp optind = 0;
133 5c860e29 2018-03-12 stsp
134 5c860e29 2018-03-12 stsp if (argc <= 0)
135 5c860e29 2018-03-12 stsp usage();
136 5c860e29 2018-03-12 stsp
137 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
138 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
139 99437157 2018-11-11 stsp
140 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
141 d7d4f210 2018-03-12 stsp const struct got_error *error;
142 d7d4f210 2018-03-12 stsp
143 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
144 5c860e29 2018-03-12 stsp
145 5c860e29 2018-03-12 stsp if (strncmp(cmd->cmd_name, argv[0], strlen(argv[0])))
146 5c860e29 2018-03-12 stsp continue;
147 5c860e29 2018-03-12 stsp
148 1b6b95a8 2018-03-12 stsp if (hflag)
149 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
150 1b6b95a8 2018-03-12 stsp
151 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
152 80d5f134 2018-11-11 stsp if (error && !(sigint_received || sigpipe_received)) {
153 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
154 d7d4f210 2018-03-12 stsp return 1;
155 d7d4f210 2018-03-12 stsp }
156 d7d4f210 2018-03-12 stsp
157 d7d4f210 2018-03-12 stsp return 0;
158 5c860e29 2018-03-12 stsp }
159 5c860e29 2018-03-12 stsp
160 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
161 5c860e29 2018-03-12 stsp return 1;
162 5c860e29 2018-03-12 stsp }
163 5c860e29 2018-03-12 stsp
164 4ed7e80c 2018-05-20 stsp __dead static void
165 5c860e29 2018-03-12 stsp usage(void)
166 5c860e29 2018-03-12 stsp {
167 46a0db7d 2018-03-12 stsp int i;
168 46a0db7d 2018-03-12 stsp
169 987e94ba 2018-03-12 stsp fprintf(stderr, "usage: %s [-h] command [arg ...]\n\n"
170 987e94ba 2018-03-12 stsp "Available commands:\n", getprogname());
171 46a0db7d 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
172 46a0db7d 2018-03-12 stsp struct cmd *cmd = &got_commands[i];
173 46a0db7d 2018-03-12 stsp fprintf(stderr, " %s: %s\n", cmd->cmd_name, cmd->cmd_descr);
174 46a0db7d 2018-03-12 stsp }
175 5c860e29 2018-03-12 stsp exit(1);
176 5c860e29 2018-03-12 stsp }
177 5c860e29 2018-03-12 stsp
178 0266afb7 2019-01-04 stsp static const struct got_error *
179 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
180 d0eebce4 2019-03-11 stsp const char *worktree_path)
181 0266afb7 2019-01-04 stsp {
182 0266afb7 2019-01-04 stsp const struct got_error *error;
183 0266afb7 2019-01-04 stsp
184 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
185 0266afb7 2019-01-04 stsp return got_error_from_errno();
186 0266afb7 2019-01-04 stsp
187 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
188 0266afb7 2019-01-04 stsp return got_error_from_errno();
189 0266afb7 2019-01-04 stsp
190 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
191 0266afb7 2019-01-04 stsp return got_error_from_errno();
192 0266afb7 2019-01-04 stsp
193 0266afb7 2019-01-04 stsp error = got_privsep_unveil_exec_helpers();
194 0266afb7 2019-01-04 stsp if (error != NULL)
195 0266afb7 2019-01-04 stsp return error;
196 0266afb7 2019-01-04 stsp
197 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
198 0266afb7 2019-01-04 stsp return got_error_from_errno();
199 0266afb7 2019-01-04 stsp
200 0266afb7 2019-01-04 stsp return NULL;
201 0266afb7 2019-01-04 stsp }
202 0266afb7 2019-01-04 stsp
203 4ed7e80c 2018-05-20 stsp __dead static void
204 c09a553d 2018-03-12 stsp usage_checkout(void)
205 c09a553d 2018-03-12 stsp {
206 0bb8a95e 2018-03-12 stsp fprintf(stderr, "usage: %s checkout [-p prefix] repository-path "
207 0bb8a95e 2018-03-12 stsp "[worktree-path]\n", getprogname());
208 c09a553d 2018-03-12 stsp exit(1);
209 92a684f4 2018-03-12 stsp }
210 92a684f4 2018-03-12 stsp
211 92a684f4 2018-03-12 stsp static void
212 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
213 92a684f4 2018-03-12 stsp {
214 92a684f4 2018-03-12 stsp char *worktree_path = arg;
215 92a684f4 2018-03-12 stsp
216 92a684f4 2018-03-12 stsp while (path[0] == '/')
217 92a684f4 2018-03-12 stsp path++;
218 92a684f4 2018-03-12 stsp
219 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
220 99437157 2018-11-11 stsp }
221 99437157 2018-11-11 stsp
222 99437157 2018-11-11 stsp static const struct got_error *
223 6bad629b 2019-02-04 stsp check_cancelled(void *arg)
224 99437157 2018-11-11 stsp {
225 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
226 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
227 99437157 2018-11-11 stsp return NULL;
228 8069f636 2019-01-12 stsp }
229 8069f636 2019-01-12 stsp
230 8069f636 2019-01-12 stsp static const struct got_error *
231 8069f636 2019-01-12 stsp check_ancestry(struct got_worktree *worktree, struct got_object_id *commit_id,
232 8069f636 2019-01-12 stsp struct got_repository *repo)
233 8069f636 2019-01-12 stsp {
234 8069f636 2019-01-12 stsp const struct got_error *err;
235 8069f636 2019-01-12 stsp struct got_reference *head_ref = NULL;
236 8069f636 2019-01-12 stsp struct got_object_id *head_commit_id = NULL;
237 8069f636 2019-01-12 stsp struct got_commit_graph *graph = NULL;
238 8069f636 2019-01-12 stsp
239 8069f636 2019-01-12 stsp head_ref = got_worktree_get_head_ref(worktree);
240 8069f636 2019-01-12 stsp if (head_ref == NULL)
241 8069f636 2019-01-12 stsp return got_error_from_errno();
242 8069f636 2019-01-12 stsp
243 8069f636 2019-01-12 stsp /* TODO: Check the reflog. The head ref may have been rebased. */
244 8069f636 2019-01-12 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
245 8069f636 2019-01-12 stsp if (err)
246 8069f636 2019-01-12 stsp goto done;
247 8069f636 2019-01-12 stsp
248 8069f636 2019-01-12 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
249 8069f636 2019-01-12 stsp if (err)
250 8069f636 2019-01-12 stsp goto done;
251 8069f636 2019-01-12 stsp
252 8069f636 2019-01-12 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo);
253 8069f636 2019-01-12 stsp if (err)
254 8069f636 2019-01-12 stsp goto done;
255 8069f636 2019-01-12 stsp while (1) {
256 8069f636 2019-01-12 stsp struct got_object_id *id;
257 8069f636 2019-01-12 stsp
258 8069f636 2019-01-12 stsp if (sigint_received || sigpipe_received)
259 8069f636 2019-01-12 stsp break;
260 8069f636 2019-01-12 stsp
261 8069f636 2019-01-12 stsp err = got_commit_graph_iter_next(&id, graph);
262 8069f636 2019-01-12 stsp if (err) {
263 8069f636 2019-01-12 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
264 8069f636 2019-01-12 stsp err = got_error(GOT_ERR_ANCESTRY);
265 8069f636 2019-01-12 stsp break;
266 8069f636 2019-01-12 stsp }
267 8069f636 2019-01-12 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
268 8069f636 2019-01-12 stsp break;
269 8069f636 2019-01-12 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
270 8069f636 2019-01-12 stsp if (err)
271 8069f636 2019-01-12 stsp break;
272 8069f636 2019-01-12 stsp else
273 8069f636 2019-01-12 stsp continue;
274 8069f636 2019-01-12 stsp }
275 8069f636 2019-01-12 stsp if (id == NULL)
276 8069f636 2019-01-12 stsp break;
277 8069f636 2019-01-12 stsp if (got_object_id_cmp(id, commit_id) == 0)
278 8069f636 2019-01-12 stsp break;
279 8069f636 2019-01-12 stsp }
280 8069f636 2019-01-12 stsp done:
281 8069f636 2019-01-12 stsp if (head_ref)
282 8069f636 2019-01-12 stsp got_ref_close(head_ref);
283 8069f636 2019-01-12 stsp if (graph)
284 8069f636 2019-01-12 stsp got_commit_graph_close(graph);
285 8069f636 2019-01-12 stsp return err;
286 c09a553d 2018-03-12 stsp }
287 c09a553d 2018-03-12 stsp
288 8069f636 2019-01-12 stsp
289 4ed7e80c 2018-05-20 stsp static const struct got_error *
290 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
291 c09a553d 2018-03-12 stsp {
292 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
293 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
294 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
295 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
296 c09a553d 2018-03-12 stsp char *repo_path = NULL;
297 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
298 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
299 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
300 e5dc7198 2018-12-29 stsp int ch, same_path_prefix;
301 c09a553d 2018-03-12 stsp
302 8069f636 2019-01-12 stsp while ((ch = getopt(argc, argv, "c:p:")) != -1) {
303 0bb8a95e 2018-03-12 stsp switch (ch) {
304 8069f636 2019-01-12 stsp case 'c':
305 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
306 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
307 8069f636 2019-01-12 stsp return got_error_from_errno();
308 8069f636 2019-01-12 stsp break;
309 0bb8a95e 2018-03-12 stsp case 'p':
310 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
311 0bb8a95e 2018-03-12 stsp break;
312 0bb8a95e 2018-03-12 stsp default:
313 2deda0b9 2019-03-07 stsp usage_checkout();
314 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
315 0bb8a95e 2018-03-12 stsp }
316 0bb8a95e 2018-03-12 stsp }
317 0bb8a95e 2018-03-12 stsp
318 0bb8a95e 2018-03-12 stsp argc -= optind;
319 0bb8a95e 2018-03-12 stsp argv += optind;
320 0bb8a95e 2018-03-12 stsp
321 6715a751 2018-03-16 stsp #ifndef PROFILE
322 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
323 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
324 c09a553d 2018-03-12 stsp err(1, "pledge");
325 6715a751 2018-03-16 stsp #endif
326 0bb8a95e 2018-03-12 stsp if (argc == 1) {
327 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
328 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
329 76089277 2018-04-01 stsp if (repo_path == NULL)
330 76089277 2018-04-01 stsp return got_error_from_errno();
331 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
332 76089277 2018-04-01 stsp if (cwd == NULL) {
333 76089277 2018-04-01 stsp error = got_error_from_errno();
334 76089277 2018-04-01 stsp goto done;
335 76089277 2018-04-01 stsp }
336 5d7c1dab 2018-04-01 stsp if (path_prefix[0])
337 5d7c1dab 2018-04-01 stsp base = basename(path_prefix);
338 5d7c1dab 2018-04-01 stsp else
339 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
340 76089277 2018-04-01 stsp if (base == NULL) {
341 76089277 2018-04-01 stsp error = got_error_from_errno();
342 76089277 2018-04-01 stsp goto done;
343 76089277 2018-04-01 stsp }
344 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
345 c09a553d 2018-03-12 stsp if (dotgit)
346 c09a553d 2018-03-12 stsp *dotgit = '\0';
347 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
348 0a585a0d 2018-03-17 stsp error = got_error_from_errno();
349 c09a553d 2018-03-12 stsp free(cwd);
350 76089277 2018-04-01 stsp goto done;
351 c09a553d 2018-03-12 stsp }
352 c09a553d 2018-03-12 stsp free(cwd);
353 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
354 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
355 76089277 2018-04-01 stsp if (repo_path == NULL) {
356 76089277 2018-04-01 stsp error = got_error_from_errno();
357 76089277 2018-04-01 stsp goto done;
358 76089277 2018-04-01 stsp }
359 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
360 76089277 2018-04-01 stsp if (worktree_path == NULL) {
361 76089277 2018-04-01 stsp error = got_error_from_errno();
362 76089277 2018-04-01 stsp goto done;
363 76089277 2018-04-01 stsp }
364 c09a553d 2018-03-12 stsp } else
365 c09a553d 2018-03-12 stsp usage_checkout();
366 63219cd2 2019-01-04 stsp
367 0cd1c46a 2019-03-11 stsp error = apply_unveil(repo_path, 0, worktree_path);
368 0266afb7 2019-01-04 stsp if (error)
369 63219cd2 2019-01-04 stsp goto done;
370 c09a553d 2018-03-12 stsp
371 c09a553d 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
372 c09a553d 2018-03-12 stsp if (error != NULL)
373 c09a553d 2018-03-12 stsp goto done;
374 8069f636 2019-01-12 stsp
375 c09a553d 2018-03-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
376 c09a553d 2018-03-12 stsp if (error != NULL)
377 c09a553d 2018-03-12 stsp goto done;
378 c09a553d 2018-03-12 stsp
379 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
380 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
381 c09a553d 2018-03-12 stsp goto done;
382 c09a553d 2018-03-12 stsp
383 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
384 c09a553d 2018-03-12 stsp if (error != NULL)
385 c09a553d 2018-03-12 stsp goto done;
386 c09a553d 2018-03-12 stsp
387 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
388 e5dc7198 2018-12-29 stsp path_prefix);
389 e5dc7198 2018-12-29 stsp if (error != NULL)
390 e5dc7198 2018-12-29 stsp goto done;
391 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
392 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
393 49520a32 2018-12-29 stsp goto done;
394 49520a32 2018-12-29 stsp }
395 49520a32 2018-12-29 stsp
396 8069f636 2019-01-12 stsp if (commit_id_str) {
397 8069f636 2019-01-12 stsp struct got_object_id *commit_id;
398 8069f636 2019-01-12 stsp error = got_object_resolve_id_str(&commit_id, repo,
399 8069f636 2019-01-12 stsp commit_id_str);
400 8069f636 2019-01-12 stsp if (error != NULL)
401 8069f636 2019-01-12 stsp goto done;
402 8069f636 2019-01-12 stsp error = check_ancestry(worktree, commit_id, repo);
403 8069f636 2019-01-12 stsp if (error != NULL) {
404 8069f636 2019-01-12 stsp free(commit_id);
405 8069f636 2019-01-12 stsp goto done;
406 8069f636 2019-01-12 stsp }
407 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
408 8069f636 2019-01-12 stsp commit_id);
409 8069f636 2019-01-12 stsp free(commit_id);
410 8069f636 2019-01-12 stsp if (error)
411 8069f636 2019-01-12 stsp goto done;
412 8069f636 2019-01-12 stsp }
413 8069f636 2019-01-12 stsp
414 93a30277 2018-12-24 stsp error = got_worktree_checkout_files(worktree, repo,
415 6bad629b 2019-02-04 stsp checkout_progress, worktree_path, check_cancelled, NULL);
416 c09a553d 2018-03-12 stsp if (error != NULL)
417 c09a553d 2018-03-12 stsp goto done;
418 c09a553d 2018-03-12 stsp
419 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
420 c09a553d 2018-03-12 stsp
421 c09a553d 2018-03-12 stsp done:
422 8069f636 2019-01-12 stsp free(commit_id_str);
423 76089277 2018-04-01 stsp free(repo_path);
424 507dc3bb 2018-12-29 stsp free(worktree_path);
425 507dc3bb 2018-12-29 stsp return error;
426 507dc3bb 2018-12-29 stsp }
427 507dc3bb 2018-12-29 stsp
428 507dc3bb 2018-12-29 stsp __dead static void
429 507dc3bb 2018-12-29 stsp usage_update(void)
430 507dc3bb 2018-12-29 stsp {
431 507dc3bb 2018-12-29 stsp fprintf(stderr, "usage: %s update [-c commit] [worktree-path]\n",
432 507dc3bb 2018-12-29 stsp getprogname());
433 507dc3bb 2018-12-29 stsp exit(1);
434 507dc3bb 2018-12-29 stsp }
435 507dc3bb 2018-12-29 stsp
436 507dc3bb 2018-12-29 stsp static void
437 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
438 507dc3bb 2018-12-29 stsp {
439 784955db 2019-01-12 stsp int *did_something = arg;
440 784955db 2019-01-12 stsp
441 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
442 507dc3bb 2018-12-29 stsp return;
443 507dc3bb 2018-12-29 stsp
444 1545c615 2019-02-10 stsp *did_something = 1;
445 507dc3bb 2018-12-29 stsp while (path[0] == '/')
446 507dc3bb 2018-12-29 stsp path++;
447 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
448 be7061eb 2018-12-30 stsp }
449 be7061eb 2018-12-30 stsp
450 be7061eb 2018-12-30 stsp static const struct got_error *
451 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
452 507dc3bb 2018-12-29 stsp {
453 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
454 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
455 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
456 507dc3bb 2018-12-29 stsp char *worktree_path = NULL;
457 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
458 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
459 784955db 2019-01-12 stsp int ch, did_something = 0;
460 507dc3bb 2018-12-29 stsp
461 507dc3bb 2018-12-29 stsp while ((ch = getopt(argc, argv, "c:")) != -1) {
462 507dc3bb 2018-12-29 stsp switch (ch) {
463 507dc3bb 2018-12-29 stsp case 'c':
464 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
465 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
466 9c4b8182 2019-01-02 stsp return got_error_from_errno();
467 507dc3bb 2018-12-29 stsp break;
468 507dc3bb 2018-12-29 stsp default:
469 2deda0b9 2019-03-07 stsp usage_update();
470 507dc3bb 2018-12-29 stsp /* NOTREACHED */
471 507dc3bb 2018-12-29 stsp }
472 507dc3bb 2018-12-29 stsp }
473 507dc3bb 2018-12-29 stsp
474 507dc3bb 2018-12-29 stsp argc -= optind;
475 507dc3bb 2018-12-29 stsp argv += optind;
476 507dc3bb 2018-12-29 stsp
477 507dc3bb 2018-12-29 stsp #ifndef PROFILE
478 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
479 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
480 507dc3bb 2018-12-29 stsp err(1, "pledge");
481 507dc3bb 2018-12-29 stsp #endif
482 507dc3bb 2018-12-29 stsp if (argc == 0) {
483 507dc3bb 2018-12-29 stsp worktree_path = getcwd(NULL, 0);
484 507dc3bb 2018-12-29 stsp if (worktree_path == NULL) {
485 507dc3bb 2018-12-29 stsp error = got_error_from_errno();
486 507dc3bb 2018-12-29 stsp goto done;
487 507dc3bb 2018-12-29 stsp }
488 507dc3bb 2018-12-29 stsp } else if (argc == 1) {
489 507dc3bb 2018-12-29 stsp worktree_path = realpath(argv[0], NULL);
490 507dc3bb 2018-12-29 stsp if (worktree_path == NULL) {
491 507dc3bb 2018-12-29 stsp error = got_error_from_errno();
492 507dc3bb 2018-12-29 stsp goto done;
493 507dc3bb 2018-12-29 stsp }
494 507dc3bb 2018-12-29 stsp } else
495 507dc3bb 2018-12-29 stsp usage_update();
496 507dc3bb 2018-12-29 stsp
497 507dc3bb 2018-12-29 stsp error = got_worktree_open(&worktree, worktree_path);
498 507dc3bb 2018-12-29 stsp if (error != NULL)
499 507dc3bb 2018-12-29 stsp goto done;
500 507dc3bb 2018-12-29 stsp
501 507dc3bb 2018-12-29 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
502 507dc3bb 2018-12-29 stsp if (error != NULL)
503 507dc3bb 2018-12-29 stsp goto done;
504 507dc3bb 2018-12-29 stsp
505 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
506 8c02d095 2019-02-05 stsp got_worktree_get_root_path(worktree));
507 0266afb7 2019-01-04 stsp if (error)
508 0266afb7 2019-01-04 stsp goto done;
509 0266afb7 2019-01-04 stsp
510 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
511 507dc3bb 2018-12-29 stsp struct got_reference *head_ref;
512 507dc3bb 2018-12-29 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
513 507dc3bb 2018-12-29 stsp if (error != NULL)
514 507dc3bb 2018-12-29 stsp goto done;
515 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
516 9c4b8182 2019-01-02 stsp if (error != NULL)
517 9c4b8182 2019-01-02 stsp goto done;
518 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
519 507dc3bb 2018-12-29 stsp if (error != NULL)
520 507dc3bb 2018-12-29 stsp goto done;
521 507dc3bb 2018-12-29 stsp } else {
522 507dc3bb 2018-12-29 stsp error = got_object_resolve_id_str(&commit_id, repo,
523 507dc3bb 2018-12-29 stsp commit_id_str);
524 507dc3bb 2018-12-29 stsp if (error != NULL)
525 507dc3bb 2018-12-29 stsp goto done;
526 507dc3bb 2018-12-29 stsp }
527 35c965b2 2018-12-29 stsp
528 be7061eb 2018-12-30 stsp error = check_ancestry(worktree, commit_id, repo);
529 be7061eb 2018-12-30 stsp if (error != NULL)
530 be7061eb 2018-12-30 stsp goto done;
531 507dc3bb 2018-12-29 stsp
532 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
533 507dc3bb 2018-12-29 stsp commit_id) != 0) {
534 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
535 507dc3bb 2018-12-29 stsp commit_id);
536 507dc3bb 2018-12-29 stsp if (error)
537 507dc3bb 2018-12-29 stsp goto done;
538 507dc3bb 2018-12-29 stsp }
539 507dc3bb 2018-12-29 stsp
540 507dc3bb 2018-12-29 stsp error = got_worktree_checkout_files(worktree, repo,
541 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
542 507dc3bb 2018-12-29 stsp if (error != NULL)
543 507dc3bb 2018-12-29 stsp goto done;
544 9c4b8182 2019-01-02 stsp
545 784955db 2019-01-12 stsp if (did_something)
546 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
547 784955db 2019-01-12 stsp else
548 784955db 2019-01-12 stsp printf("Already up-to-date\n");
549 507dc3bb 2018-12-29 stsp done:
550 c09a553d 2018-03-12 stsp free(worktree_path);
551 507dc3bb 2018-12-29 stsp free(commit_id);
552 9c4b8182 2019-01-02 stsp free(commit_id_str);
553 c09a553d 2018-03-12 stsp return error;
554 c09a553d 2018-03-12 stsp }
555 c09a553d 2018-03-12 stsp
556 f42b1b34 2018-03-12 stsp static const struct got_error *
557 79109fed 2018-03-27 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
558 c0cc5c62 2018-10-18 stsp int diff_context, struct got_repository *repo)
559 5c860e29 2018-03-12 stsp {
560 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
561 79109fed 2018-03-27 stsp struct got_tree_object *tree1 = NULL, *tree2;
562 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
563 0f2b3dca 2018-12-22 stsp char *id_str1 = NULL, *id_str2;
564 79109fed 2018-03-27 stsp
565 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree2, repo,
566 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(commit));
567 79109fed 2018-03-27 stsp if (err)
568 79109fed 2018-03-27 stsp return err;
569 79109fed 2018-03-27 stsp
570 45d799e2 2018-12-23 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
571 79f35eb3 2018-06-11 stsp if (qid != NULL) {
572 79109fed 2018-03-27 stsp struct got_commit_object *pcommit;
573 79109fed 2018-03-27 stsp
574 117e771c 2018-07-23 stsp err = got_object_open_as_commit(&pcommit, repo, qid->id);
575 79109fed 2018-03-27 stsp if (err)
576 79109fed 2018-03-27 stsp return err;
577 79109fed 2018-03-27 stsp
578 45d799e2 2018-12-23 stsp err = got_object_open_as_tree(&tree1, repo,
579 45d799e2 2018-12-23 stsp got_object_commit_get_tree_id(pcommit));
580 79109fed 2018-03-27 stsp got_object_commit_close(pcommit);
581 0f2b3dca 2018-12-22 stsp if (err)
582 0f2b3dca 2018-12-22 stsp return err;
583 0f2b3dca 2018-12-22 stsp
584 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str1, qid->id);
585 79109fed 2018-03-27 stsp if (err)
586 79109fed 2018-03-27 stsp return err;
587 79109fed 2018-03-27 stsp }
588 79109fed 2018-03-27 stsp
589 0f2b3dca 2018-12-22 stsp err = got_object_id_str(&id_str2, id);
590 0f2b3dca 2018-12-22 stsp if (err)
591 0f2b3dca 2018-12-22 stsp goto done;
592 0f2b3dca 2018-12-22 stsp
593 56765ebb 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
594 54156555 2018-12-24 stsp err = got_diff_tree(tree1, tree2, "", "", diff_context, repo, stdout);
595 0f2b3dca 2018-12-22 stsp done:
596 79109fed 2018-03-27 stsp if (tree1)
597 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
598 79109fed 2018-03-27 stsp got_object_tree_close(tree2);
599 0f2b3dca 2018-12-22 stsp free(id_str1);
600 0f2b3dca 2018-12-22 stsp free(id_str2);
601 79109fed 2018-03-27 stsp return err;
602 79109fed 2018-03-27 stsp }
603 79109fed 2018-03-27 stsp
604 4bb494d5 2018-06-16 stsp static char *
605 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
606 6c281f94 2018-06-11 stsp {
607 6c281f94 2018-06-11 stsp char *p, *s = ctime_r(time, datebuf);
608 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
609 6c281f94 2018-06-11 stsp if (p)
610 6c281f94 2018-06-11 stsp *p = '\0';
611 6c281f94 2018-06-11 stsp return s;
612 6c281f94 2018-06-11 stsp }
613 6c281f94 2018-06-11 stsp
614 79109fed 2018-03-27 stsp static const struct got_error *
615 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
616 199a4027 2019-02-02 stsp struct got_repository *repo, int show_patch, int diff_context,
617 199a4027 2019-02-02 stsp struct got_reflist_head *refs)
618 79109fed 2018-03-27 stsp {
619 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
620 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
621 6c281f94 2018-06-11 stsp char datebuf[26];
622 45d799e2 2018-12-23 stsp time_t committer_time;
623 45d799e2 2018-12-23 stsp const char *author, *committer;
624 199a4027 2019-02-02 stsp char *refs_str = NULL;
625 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
626 5c860e29 2018-03-12 stsp
627 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
628 199a4027 2019-02-02 stsp char *s;
629 199a4027 2019-02-02 stsp const char *name;
630 199a4027 2019-02-02 stsp if (got_object_id_cmp(re->id, id) != 0)
631 199a4027 2019-02-02 stsp continue;
632 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
633 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
634 d9498b20 2019-02-05 stsp continue;
635 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
636 199a4027 2019-02-02 stsp name += 5;
637 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
638 7143d404 2019-03-12 stsp continue;
639 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
640 e34f9ed6 2019-02-02 stsp name += 6;
641 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
642 141c2bff 2019-02-04 stsp name += 8;
643 199a4027 2019-02-02 stsp s = refs_str;
644 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
645 199a4027 2019-02-02 stsp name) == -1) {
646 199a4027 2019-02-02 stsp err = got_error_from_errno();
647 199a4027 2019-02-02 stsp free(s);
648 199a4027 2019-02-02 stsp break;
649 199a4027 2019-02-02 stsp }
650 199a4027 2019-02-02 stsp free(s);
651 199a4027 2019-02-02 stsp }
652 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
653 8bf5b3c9 2018-03-17 stsp if (err)
654 8bf5b3c9 2018-03-17 stsp return err;
655 788c352e 2018-06-16 stsp
656 33d869be 2018-12-22 stsp printf("-----------------------------------------------\n");
657 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
658 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
659 832c249c 2018-06-10 stsp free(id_str);
660 d3d493d7 2019-02-21 stsp id_str = NULL;
661 d3d493d7 2019-02-21 stsp free(refs_str);
662 d3d493d7 2019-02-21 stsp refs_str = NULL;
663 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
664 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
665 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
666 dab5fe87 2018-09-14 stsp printf("date: %s UTC\n", datestr);
667 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
668 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
669 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
670 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
671 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
672 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
673 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
674 3fe1abad 2018-06-10 stsp int n = 1;
675 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
676 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
677 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
678 a0603db2 2018-06-10 stsp if (err)
679 a0603db2 2018-06-10 stsp return err;
680 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
681 a0603db2 2018-06-10 stsp free(id_str);
682 a0603db2 2018-06-10 stsp }
683 a0603db2 2018-06-10 stsp }
684 832c249c 2018-06-10 stsp
685 45d799e2 2018-12-23 stsp logmsg0 = strdup(got_object_commit_get_logmsg(commit));
686 621015ac 2018-07-23 stsp if (logmsg0 == NULL)
687 832c249c 2018-06-10 stsp return got_error_from_errno();
688 8bf5b3c9 2018-03-17 stsp
689 621015ac 2018-07-23 stsp logmsg = logmsg0;
690 832c249c 2018-06-10 stsp do {
691 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
692 832c249c 2018-06-10 stsp if (line)
693 832c249c 2018-06-10 stsp printf(" %s\n", line);
694 832c249c 2018-06-10 stsp } while (line);
695 621015ac 2018-07-23 stsp free(logmsg0);
696 832c249c 2018-06-10 stsp
697 971751ac 2018-03-27 stsp if (show_patch) {
698 c0cc5c62 2018-10-18 stsp err = print_patch(commit, id, diff_context, repo);
699 971751ac 2018-03-27 stsp if (err == 0)
700 971751ac 2018-03-27 stsp printf("\n");
701 971751ac 2018-03-27 stsp }
702 07862c20 2018-09-15 stsp
703 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
704 cbe7f848 2019-02-11 stsp err = got_error_from_errno();
705 07862c20 2018-09-15 stsp return err;
706 f42b1b34 2018-03-12 stsp }
707 5c860e29 2018-03-12 stsp
708 f42b1b34 2018-03-12 stsp static const struct got_error *
709 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
710 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
711 199a4027 2019-02-02 stsp int first_parent_traversal, struct got_reflist_head *refs)
712 f42b1b34 2018-03-12 stsp {
713 f42b1b34 2018-03-12 stsp const struct got_error *err;
714 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
715 372ccdbb 2018-06-10 stsp
716 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
717 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
718 f42b1b34 2018-03-12 stsp if (err)
719 f42b1b34 2018-03-12 stsp return err;
720 31cedeaf 2018-09-15 stsp err = got_commit_graph_iter_start(graph, root_id, repo);
721 372ccdbb 2018-06-10 stsp if (err)
722 fcc85cad 2018-07-22 stsp goto done;
723 31cedeaf 2018-09-15 stsp while (1) {
724 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
725 372ccdbb 2018-06-10 stsp struct got_object_id *id;
726 8bf5b3c9 2018-03-17 stsp
727 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
728 84453469 2018-11-11 stsp break;
729 84453469 2018-11-11 stsp
730 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
731 372ccdbb 2018-06-10 stsp if (err) {
732 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
733 9ba79e04 2018-06-11 stsp err = NULL;
734 9ba79e04 2018-06-11 stsp break;
735 9ba79e04 2018-06-11 stsp }
736 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
737 372ccdbb 2018-06-10 stsp break;
738 31cedeaf 2018-09-15 stsp err = got_commit_graph_fetch_commits(graph, 1, repo);
739 372ccdbb 2018-06-10 stsp if (err)
740 372ccdbb 2018-06-10 stsp break;
741 372ccdbb 2018-06-10 stsp else
742 372ccdbb 2018-06-10 stsp continue;
743 7e665116 2018-04-02 stsp }
744 b43fbaa0 2018-06-11 stsp if (id == NULL)
745 7e665116 2018-04-02 stsp break;
746 b43fbaa0 2018-06-11 stsp
747 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
748 b43fbaa0 2018-06-11 stsp if (err)
749 fcc85cad 2018-07-22 stsp break;
750 199a4027 2019-02-02 stsp err = print_commit(commit, id, repo, show_patch, diff_context,
751 199a4027 2019-02-02 stsp refs);
752 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
753 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
754 7e665116 2018-04-02 stsp break;
755 31cedeaf 2018-09-15 stsp }
756 fcc85cad 2018-07-22 stsp done:
757 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
758 f42b1b34 2018-03-12 stsp return err;
759 f42b1b34 2018-03-12 stsp }
760 5c860e29 2018-03-12 stsp
761 4ed7e80c 2018-05-20 stsp __dead static void
762 6f3d1eb0 2018-03-12 stsp usage_log(void)
763 6f3d1eb0 2018-03-12 stsp {
764 c0cc5c62 2018-10-18 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
765 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
766 6f3d1eb0 2018-03-12 stsp exit(1);
767 6f3d1eb0 2018-03-12 stsp }
768 6f3d1eb0 2018-03-12 stsp
769 4ed7e80c 2018-05-20 stsp static const struct got_error *
770 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
771 f42b1b34 2018-03-12 stsp {
772 f42b1b34 2018-03-12 stsp const struct got_error *error;
773 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
774 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
775 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
776 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
777 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
778 d142fc45 2018-04-01 stsp char *start_commit = NULL;
779 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
780 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
781 64a96a6d 2018-04-01 stsp const char *errstr;
782 199a4027 2019-02-02 stsp struct got_reflist_head refs;
783 5c860e29 2018-03-12 stsp
784 6715a751 2018-03-16 stsp #ifndef PROFILE
785 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
786 6098196c 2019-01-04 stsp NULL)
787 ad242220 2018-09-08 stsp == -1)
788 f42b1b34 2018-03-12 stsp err(1, "pledge");
789 6715a751 2018-03-16 stsp #endif
790 79109fed 2018-03-27 stsp
791 c0cc5c62 2018-10-18 stsp while ((ch = getopt(argc, argv, "pc:C:l:fr:")) != -1) {
792 79109fed 2018-03-27 stsp switch (ch) {
793 79109fed 2018-03-27 stsp case 'p':
794 79109fed 2018-03-27 stsp show_patch = 1;
795 d142fc45 2018-04-01 stsp break;
796 d142fc45 2018-04-01 stsp case 'c':
797 d142fc45 2018-04-01 stsp start_commit = optarg;
798 64a96a6d 2018-04-01 stsp break;
799 c0cc5c62 2018-10-18 stsp case 'C':
800 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
801 4a8520aa 2018-10-18 stsp &errstr);
802 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
803 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
804 c0cc5c62 2018-10-18 stsp break;
805 64a96a6d 2018-04-01 stsp case 'l':
806 64a96a6d 2018-04-01 stsp limit = strtonum(optarg, 1, INT_MAX, &errstr);
807 64a96a6d 2018-04-01 stsp if (errstr != NULL)
808 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
809 79109fed 2018-03-27 stsp break;
810 0ed6ed4c 2018-06-13 stsp case 'f':
811 0ed6ed4c 2018-06-13 stsp first_parent_traversal = 1;
812 a0603db2 2018-06-10 stsp break;
813 04ca23f4 2018-07-16 stsp case 'r':
814 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
815 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
816 04ca23f4 2018-07-16 stsp err(1, "-r option");
817 04ca23f4 2018-07-16 stsp break;
818 79109fed 2018-03-27 stsp default:
819 2deda0b9 2019-03-07 stsp usage_log();
820 79109fed 2018-03-27 stsp /* NOTREACHED */
821 79109fed 2018-03-27 stsp }
822 79109fed 2018-03-27 stsp }
823 79109fed 2018-03-27 stsp
824 79109fed 2018-03-27 stsp argc -= optind;
825 79109fed 2018-03-27 stsp argv += optind;
826 f42b1b34 2018-03-12 stsp
827 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
828 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
829 04ca23f4 2018-07-16 stsp error = got_error_from_errno();
830 04ca23f4 2018-07-16 stsp goto done;
831 04ca23f4 2018-07-16 stsp }
832 cffc0aa4 2019-02-05 stsp
833 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
834 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
835 cffc0aa4 2019-02-05 stsp goto done;
836 cffc0aa4 2019-02-05 stsp error = NULL;
837 cffc0aa4 2019-02-05 stsp
838 cbd1af7a 2019-03-18 stsp if (argc == 0)
839 cbd1af7a 2019-03-18 stsp path = strdup("");
840 cbd1af7a 2019-03-18 stsp else if (argc == 1) {
841 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
842 cbd1af7a 2019-03-18 stsp if (error)
843 cbd1af7a 2019-03-18 stsp goto done;
844 cbd1af7a 2019-03-18 stsp } else
845 cbd1af7a 2019-03-18 stsp usage_log();
846 cbd1af7a 2019-03-18 stsp if (path == NULL)
847 cbd1af7a 2019-03-18 stsp goto done;
848 cbd1af7a 2019-03-18 stsp
849 cffc0aa4 2019-02-05 stsp repo_path = worktree ?
850 cffc0aa4 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
851 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
852 cffc0aa4 2019-02-05 stsp error = got_error_from_errno();
853 cffc0aa4 2019-02-05 stsp goto done;
854 04ca23f4 2018-07-16 stsp }
855 04ca23f4 2018-07-16 stsp
856 d0eebce4 2019-03-11 stsp error = apply_unveil(repo_path, 1,
857 efcae1c6 2019-03-07 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
858 6098196c 2019-01-04 stsp if (error)
859 6098196c 2019-01-04 stsp goto done;
860 6098196c 2019-01-04 stsp
861 f42b1b34 2018-03-12 stsp error = got_repo_open(&repo, repo_path);
862 d7d4f210 2018-03-12 stsp if (error != NULL)
863 04ca23f4 2018-07-16 stsp goto done;
864 f42b1b34 2018-03-12 stsp
865 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
866 3235492e 2018-04-01 stsp struct got_reference *head_ref;
867 3235492e 2018-04-01 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
868 3235492e 2018-04-01 stsp if (error != NULL)
869 3235492e 2018-04-01 stsp return error;
870 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
871 3235492e 2018-04-01 stsp got_ref_close(head_ref);
872 3235492e 2018-04-01 stsp if (error != NULL)
873 3235492e 2018-04-01 stsp return error;
874 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
875 3235492e 2018-04-01 stsp } else {
876 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
877 d1f2edc9 2018-06-13 stsp error = got_ref_open(&ref, repo, start_commit);
878 3235492e 2018-04-01 stsp if (error == NULL) {
879 1caad61b 2019-02-01 stsp int obj_type;
880 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
881 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
882 d1f2edc9 2018-06-13 stsp if (error != NULL)
883 1caad61b 2019-02-01 stsp goto done;
884 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
885 1caad61b 2019-02-01 stsp if (error != NULL)
886 1caad61b 2019-02-01 stsp goto done;
887 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
888 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
889 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
890 1caad61b 2019-02-01 stsp if (error != NULL)
891 1caad61b 2019-02-01 stsp goto done;
892 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
893 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
894 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
895 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
896 1caad61b 2019-02-01 stsp goto done;
897 1caad61b 2019-02-01 stsp }
898 1caad61b 2019-02-01 stsp free(id);
899 1caad61b 2019-02-01 stsp id = got_object_id_dup(
900 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
901 1caad61b 2019-02-01 stsp if (id == NULL)
902 1caad61b 2019-02-01 stsp error = got_error_from_errno();
903 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
904 1caad61b 2019-02-01 stsp if (error)
905 1caad61b 2019-02-01 stsp goto done;
906 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
907 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
908 1caad61b 2019-02-01 stsp goto done;
909 1caad61b 2019-02-01 stsp }
910 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
911 d1f2edc9 2018-06-13 stsp if (error != NULL)
912 1caad61b 2019-02-01 stsp goto done;
913 d1f2edc9 2018-06-13 stsp }
914 15a94983 2018-12-23 stsp if (commit == NULL) {
915 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
916 d1f2edc9 2018-06-13 stsp start_commit);
917 d1f2edc9 2018-06-13 stsp if (error != NULL)
918 d1f2edc9 2018-06-13 stsp return error;
919 3235492e 2018-04-01 stsp }
920 3235492e 2018-04-01 stsp }
921 d7d4f210 2018-03-12 stsp if (error != NULL)
922 04ca23f4 2018-07-16 stsp goto done;
923 04ca23f4 2018-07-16 stsp
924 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
925 04ca23f4 2018-07-16 stsp if (error != NULL)
926 04ca23f4 2018-07-16 stsp goto done;
927 04ca23f4 2018-07-16 stsp if (in_repo_path) {
928 04ca23f4 2018-07-16 stsp free(path);
929 04ca23f4 2018-07-16 stsp path = in_repo_path;
930 04ca23f4 2018-07-16 stsp }
931 199a4027 2019-02-02 stsp
932 199a4027 2019-02-02 stsp SIMPLEQ_INIT(&refs);
933 199a4027 2019-02-02 stsp error = got_ref_list(&refs, repo);
934 199a4027 2019-02-02 stsp if (error)
935 199a4027 2019-02-02 stsp goto done;
936 04ca23f4 2018-07-16 stsp
937 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
938 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
939 04ca23f4 2018-07-16 stsp done:
940 04ca23f4 2018-07-16 stsp free(path);
941 04ca23f4 2018-07-16 stsp free(repo_path);
942 04ca23f4 2018-07-16 stsp free(cwd);
943 f42b1b34 2018-03-12 stsp free(id);
944 cffc0aa4 2019-02-05 stsp if (worktree)
945 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
946 ad242220 2018-09-08 stsp if (repo) {
947 ad242220 2018-09-08 stsp const struct got_error *repo_error;
948 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
949 ad242220 2018-09-08 stsp if (error == NULL)
950 ad242220 2018-09-08 stsp error = repo_error;
951 ad242220 2018-09-08 stsp }
952 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
953 8bf5b3c9 2018-03-17 stsp return error;
954 5c860e29 2018-03-12 stsp }
955 5c860e29 2018-03-12 stsp
956 4ed7e80c 2018-05-20 stsp __dead static void
957 3f8b7d6a 2018-04-01 stsp usage_diff(void)
958 3f8b7d6a 2018-04-01 stsp {
959 b72f483a 2019-02-05 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] "
960 927df6b7 2019-02-10 stsp "[object1 object2 | path]\n", getprogname());
961 3f8b7d6a 2018-04-01 stsp exit(1);
962 b00d56cd 2018-04-01 stsp }
963 b00d56cd 2018-04-01 stsp
964 b72f483a 2019-02-05 stsp struct print_diff_arg {
965 b72f483a 2019-02-05 stsp struct got_repository *repo;
966 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
967 b72f483a 2019-02-05 stsp int diff_context;
968 3fc0c068 2019-02-10 stsp const char *id_str;
969 3fc0c068 2019-02-10 stsp int header_shown;
970 b72f483a 2019-02-05 stsp };
971 b72f483a 2019-02-05 stsp
972 4ed7e80c 2018-05-20 stsp static const struct got_error *
973 b72f483a 2019-02-05 stsp print_diff(void *arg, unsigned char status, const char *path,
974 b72f483a 2019-02-05 stsp struct got_object_id *id)
975 b72f483a 2019-02-05 stsp {
976 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
977 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
978 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
979 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
980 b72f483a 2019-02-05 stsp char *abspath = NULL;
981 b72f483a 2019-02-05 stsp struct stat sb;
982 b72f483a 2019-02-05 stsp
983 276262e8 2019-02-08 stsp if (status != GOT_STATUS_MODIFY)
984 b72f483a 2019-02-05 stsp return NULL;
985 3fc0c068 2019-02-10 stsp
986 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
987 3fc0c068 2019-02-10 stsp printf("diff %s %s\n", a->id_str,
988 3fc0c068 2019-02-10 stsp got_worktree_get_root_path(a->worktree));
989 3fc0c068 2019-02-10 stsp a->header_shown = 1;
990 3fc0c068 2019-02-10 stsp }
991 b72f483a 2019-02-05 stsp
992 b72f483a 2019-02-05 stsp err = got_object_open_as_blob(&blob1, a->repo, id, 8192);
993 b72f483a 2019-02-05 stsp if (err)
994 b72f483a 2019-02-05 stsp goto done;
995 b72f483a 2019-02-05 stsp
996 b72f483a 2019-02-05 stsp if (asprintf(&abspath, "%s/%s",
997 b72f483a 2019-02-05 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
998 b72f483a 2019-02-05 stsp err = got_error_from_errno();
999 b72f483a 2019-02-05 stsp goto done;
1000 b72f483a 2019-02-05 stsp }
1001 b72f483a 2019-02-05 stsp
1002 b72f483a 2019-02-05 stsp f2 = fopen(abspath, "r");
1003 b72f483a 2019-02-05 stsp if (f2 == NULL) {
1004 b72f483a 2019-02-05 stsp err = got_error_from_errno();
1005 b72f483a 2019-02-05 stsp goto done;
1006 b72f483a 2019-02-05 stsp }
1007 b72f483a 2019-02-05 stsp if (lstat(abspath, &sb) == -1) {
1008 b72f483a 2019-02-05 stsp err = got_error_from_errno();
1009 b72f483a 2019-02-05 stsp goto done;
1010 b72f483a 2019-02-05 stsp }
1011 b72f483a 2019-02-05 stsp
1012 b72f483a 2019-02-05 stsp err = got_diff_blob_file(blob1, f2, sb.st_size, path, a->diff_context,
1013 b72f483a 2019-02-05 stsp stdout);
1014 b72f483a 2019-02-05 stsp done:
1015 b72f483a 2019-02-05 stsp if (blob1)
1016 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
1017 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
1018 fb43ecf1 2019-02-11 stsp err = got_error_from_errno();
1019 b72f483a 2019-02-05 stsp free(abspath);
1020 927df6b7 2019-02-10 stsp return err;
1021 927df6b7 2019-02-10 stsp }
1022 927df6b7 2019-02-10 stsp
1023 927df6b7 2019-02-10 stsp static const struct got_error *
1024 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
1025 b00d56cd 2018-04-01 stsp {
1026 b00d56cd 2018-04-01 stsp const struct got_error *error;
1027 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
1028 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
1029 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
1030 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1031 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
1032 15a94983 2018-12-23 stsp int type1, type2;
1033 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1034 c0cc5c62 2018-10-18 stsp const char *errstr;
1035 927df6b7 2019-02-10 stsp char *path = NULL;
1036 b00d56cd 2018-04-01 stsp
1037 b00d56cd 2018-04-01 stsp #ifndef PROFILE
1038 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1039 25eccc22 2019-01-04 stsp NULL) == -1)
1040 b00d56cd 2018-04-01 stsp err(1, "pledge");
1041 b00d56cd 2018-04-01 stsp #endif
1042 b00d56cd 2018-04-01 stsp
1043 b72f483a 2019-02-05 stsp while ((ch = getopt(argc, argv, "C:r:")) != -1) {
1044 b00d56cd 2018-04-01 stsp switch (ch) {
1045 c0cc5c62 2018-10-18 stsp case 'C':
1046 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
1047 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1048 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1049 c0cc5c62 2018-10-18 stsp break;
1050 b72f483a 2019-02-05 stsp case 'r':
1051 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
1052 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1053 b72f483a 2019-02-05 stsp err(1, "-r option");
1054 b72f483a 2019-02-05 stsp break;
1055 b00d56cd 2018-04-01 stsp default:
1056 2deda0b9 2019-03-07 stsp usage_diff();
1057 b00d56cd 2018-04-01 stsp /* NOTREACHED */
1058 b00d56cd 2018-04-01 stsp }
1059 b00d56cd 2018-04-01 stsp }
1060 b00d56cd 2018-04-01 stsp
1061 b00d56cd 2018-04-01 stsp argc -= optind;
1062 b00d56cd 2018-04-01 stsp argv += optind;
1063 b00d56cd 2018-04-01 stsp
1064 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
1065 b72f483a 2019-02-05 stsp if (cwd == NULL) {
1066 b72f483a 2019-02-05 stsp error = got_error_from_errno();
1067 b72f483a 2019-02-05 stsp goto done;
1068 b72f483a 2019-02-05 stsp }
1069 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1070 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1071 927df6b7 2019-02-10 stsp goto done;
1072 927df6b7 2019-02-10 stsp if (argc <= 1) {
1073 927df6b7 2019-02-10 stsp if (worktree == NULL) {
1074 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
1075 927df6b7 2019-02-10 stsp goto done;
1076 927df6b7 2019-02-10 stsp }
1077 b72f483a 2019-02-05 stsp if (repo_path)
1078 b72f483a 2019-02-05 stsp errx(1,
1079 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
1080 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
1081 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
1082 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1083 927df6b7 2019-02-10 stsp goto done;
1084 927df6b7 2019-02-10 stsp }
1085 927df6b7 2019-02-10 stsp if (argc == 1) {
1086 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1087 cbd1af7a 2019-03-18 stsp argv[0]);
1088 927df6b7 2019-02-10 stsp if (error)
1089 927df6b7 2019-02-10 stsp goto done;
1090 927df6b7 2019-02-10 stsp } else {
1091 927df6b7 2019-02-10 stsp path = strdup("");
1092 927df6b7 2019-02-10 stsp if (path == NULL) {
1093 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1094 927df6b7 2019-02-10 stsp goto done;
1095 927df6b7 2019-02-10 stsp }
1096 927df6b7 2019-02-10 stsp }
1097 b72f483a 2019-02-05 stsp } else if (argc == 2) {
1098 15a94983 2018-12-23 stsp id_str1 = argv[0];
1099 15a94983 2018-12-23 stsp id_str2 = argv[1];
1100 b00d56cd 2018-04-01 stsp } else
1101 b00d56cd 2018-04-01 stsp usage_diff();
1102 25eccc22 2019-01-04 stsp
1103 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
1104 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
1105 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1106 b72f483a 2019-02-05 stsp return got_error_from_errno();
1107 b72f483a 2019-02-05 stsp }
1108 b72f483a 2019-02-05 stsp
1109 d0eebce4 2019-03-11 stsp error = apply_unveil(repo_path, 1,
1110 b72f483a 2019-02-05 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
1111 25eccc22 2019-01-04 stsp if (error)
1112 25eccc22 2019-01-04 stsp goto done;
1113 b00d56cd 2018-04-01 stsp
1114 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
1115 76089277 2018-04-01 stsp free(repo_path);
1116 b00d56cd 2018-04-01 stsp if (error != NULL)
1117 b00d56cd 2018-04-01 stsp goto done;
1118 b00d56cd 2018-04-01 stsp
1119 b72f483a 2019-02-05 stsp if (worktree) {
1120 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
1121 b72f483a 2019-02-05 stsp char *id_str;
1122 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
1123 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
1124 b72f483a 2019-02-05 stsp if (error)
1125 b72f483a 2019-02-05 stsp goto done;
1126 b72f483a 2019-02-05 stsp arg.repo = repo;
1127 b72f483a 2019-02-05 stsp arg.worktree = worktree;
1128 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
1129 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
1130 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
1131 b72f483a 2019-02-05 stsp
1132 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_diff,
1133 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
1134 b72f483a 2019-02-05 stsp free(id_str);
1135 b72f483a 2019-02-05 stsp goto done;
1136 b72f483a 2019-02-05 stsp }
1137 b72f483a 2019-02-05 stsp
1138 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
1139 6402fb3c 2018-09-15 stsp if (error)
1140 b00d56cd 2018-04-01 stsp goto done;
1141 b00d56cd 2018-04-01 stsp
1142 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
1143 6402fb3c 2018-09-15 stsp if (error)
1144 b00d56cd 2018-04-01 stsp goto done;
1145 b00d56cd 2018-04-01 stsp
1146 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
1147 15a94983 2018-12-23 stsp if (error)
1148 15a94983 2018-12-23 stsp goto done;
1149 15a94983 2018-12-23 stsp
1150 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
1151 15a94983 2018-12-23 stsp if (error)
1152 15a94983 2018-12-23 stsp goto done;
1153 15a94983 2018-12-23 stsp
1154 15a94983 2018-12-23 stsp if (type1 != type2) {
1155 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1156 b00d56cd 2018-04-01 stsp goto done;
1157 b00d56cd 2018-04-01 stsp }
1158 b00d56cd 2018-04-01 stsp
1159 15a94983 2018-12-23 stsp switch (type1) {
1160 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
1161 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
1162 54156555 2018-12-24 stsp diff_context, repo, stdout);
1163 b00d56cd 2018-04-01 stsp break;
1164 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
1165 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
1166 54156555 2018-12-24 stsp diff_context, repo, stdout);
1167 b00d56cd 2018-04-01 stsp break;
1168 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
1169 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
1170 15a94983 2018-12-23 stsp id_str2);
1171 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
1172 c0cc5c62 2018-10-18 stsp repo, stdout);
1173 b00d56cd 2018-04-01 stsp break;
1174 b00d56cd 2018-04-01 stsp default:
1175 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1176 b00d56cd 2018-04-01 stsp }
1177 b00d56cd 2018-04-01 stsp
1178 b00d56cd 2018-04-01 stsp done:
1179 15a94983 2018-12-23 stsp free(id1);
1180 15a94983 2018-12-23 stsp free(id2);
1181 927df6b7 2019-02-10 stsp free(path);
1182 b72f483a 2019-02-05 stsp if (worktree)
1183 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
1184 ad242220 2018-09-08 stsp if (repo) {
1185 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1186 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1187 ad242220 2018-09-08 stsp if (error == NULL)
1188 ad242220 2018-09-08 stsp error = repo_error;
1189 ad242220 2018-09-08 stsp }
1190 b00d56cd 2018-04-01 stsp return error;
1191 404c43c4 2018-06-21 stsp }
1192 404c43c4 2018-06-21 stsp
1193 404c43c4 2018-06-21 stsp __dead static void
1194 404c43c4 2018-06-21 stsp usage_blame(void)
1195 404c43c4 2018-06-21 stsp {
1196 9270e621 2019-02-05 stsp fprintf(stderr,
1197 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
1198 404c43c4 2018-06-21 stsp getprogname());
1199 404c43c4 2018-06-21 stsp exit(1);
1200 b00d56cd 2018-04-01 stsp }
1201 b00d56cd 2018-04-01 stsp
1202 404c43c4 2018-06-21 stsp static const struct got_error *
1203 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
1204 404c43c4 2018-06-21 stsp {
1205 404c43c4 2018-06-21 stsp const struct got_error *error;
1206 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
1207 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
1208 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1209 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
1210 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
1211 404c43c4 2018-06-21 stsp int ch;
1212 404c43c4 2018-06-21 stsp
1213 404c43c4 2018-06-21 stsp #ifndef PROFILE
1214 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1215 36e2fb66 2019-01-04 stsp NULL) == -1)
1216 404c43c4 2018-06-21 stsp err(1, "pledge");
1217 404c43c4 2018-06-21 stsp #endif
1218 404c43c4 2018-06-21 stsp
1219 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1220 404c43c4 2018-06-21 stsp switch (ch) {
1221 404c43c4 2018-06-21 stsp case 'c':
1222 404c43c4 2018-06-21 stsp commit_id_str = optarg;
1223 404c43c4 2018-06-21 stsp break;
1224 66bea077 2018-08-02 stsp case 'r':
1225 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
1226 66bea077 2018-08-02 stsp if (repo_path == NULL)
1227 66bea077 2018-08-02 stsp err(1, "-r option");
1228 66bea077 2018-08-02 stsp break;
1229 404c43c4 2018-06-21 stsp default:
1230 2deda0b9 2019-03-07 stsp usage_blame();
1231 404c43c4 2018-06-21 stsp /* NOTREACHED */
1232 404c43c4 2018-06-21 stsp }
1233 404c43c4 2018-06-21 stsp }
1234 404c43c4 2018-06-21 stsp
1235 404c43c4 2018-06-21 stsp argc -= optind;
1236 404c43c4 2018-06-21 stsp argv += optind;
1237 404c43c4 2018-06-21 stsp
1238 a39318fd 2018-08-02 stsp if (argc == 1)
1239 404c43c4 2018-06-21 stsp path = argv[0];
1240 a39318fd 2018-08-02 stsp else
1241 404c43c4 2018-06-21 stsp usage_blame();
1242 404c43c4 2018-06-21 stsp
1243 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
1244 66bea077 2018-08-02 stsp if (cwd == NULL) {
1245 66bea077 2018-08-02 stsp error = got_error_from_errno();
1246 66bea077 2018-08-02 stsp goto done;
1247 66bea077 2018-08-02 stsp }
1248 66bea077 2018-08-02 stsp if (repo_path == NULL) {
1249 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1250 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1251 66bea077 2018-08-02 stsp goto done;
1252 0c06baac 2019-02-05 stsp else
1253 0c06baac 2019-02-05 stsp error = NULL;
1254 0c06baac 2019-02-05 stsp if (worktree) {
1255 0c06baac 2019-02-05 stsp repo_path =
1256 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1257 0c06baac 2019-02-05 stsp if (repo_path == NULL)
1258 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1259 0c06baac 2019-02-05 stsp if (error)
1260 0c06baac 2019-02-05 stsp goto done;
1261 0c06baac 2019-02-05 stsp } else {
1262 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
1263 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
1264 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1265 0c06baac 2019-02-05 stsp goto done;
1266 0c06baac 2019-02-05 stsp }
1267 66bea077 2018-08-02 stsp }
1268 66bea077 2018-08-02 stsp }
1269 36e2fb66 2019-01-04 stsp
1270 d0eebce4 2019-03-11 stsp error = apply_unveil(repo_path, 1, NULL);
1271 36e2fb66 2019-01-04 stsp if (error)
1272 36e2fb66 2019-01-04 stsp goto done;
1273 66bea077 2018-08-02 stsp
1274 404c43c4 2018-06-21 stsp error = got_repo_open(&repo, repo_path);
1275 404c43c4 2018-06-21 stsp if (error != NULL)
1276 404c43c4 2018-06-21 stsp goto done;
1277 404c43c4 2018-06-21 stsp
1278 0c06baac 2019-02-05 stsp if (worktree) {
1279 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1280 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1281 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1282 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
1283 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
1284 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
1285 6efaaa2d 2019-02-05 stsp path) == -1) {
1286 0c06baac 2019-02-05 stsp error = got_error_from_errno();
1287 0c06baac 2019-02-05 stsp goto done;
1288 0c06baac 2019-02-05 stsp }
1289 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
1290 0c06baac 2019-02-05 stsp free(p);
1291 0c06baac 2019-02-05 stsp } else {
1292 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1293 0c06baac 2019-02-05 stsp }
1294 0c06baac 2019-02-05 stsp if (error)
1295 66bea077 2018-08-02 stsp goto done;
1296 66bea077 2018-08-02 stsp
1297 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
1298 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
1299 404c43c4 2018-06-21 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1300 404c43c4 2018-06-21 stsp if (error != NULL)
1301 66bea077 2018-08-02 stsp goto done;
1302 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1303 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
1304 404c43c4 2018-06-21 stsp if (error != NULL)
1305 66bea077 2018-08-02 stsp goto done;
1306 404c43c4 2018-06-21 stsp } else {
1307 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1308 15a94983 2018-12-23 stsp commit_id_str);
1309 404c43c4 2018-06-21 stsp if (error != NULL)
1310 66bea077 2018-08-02 stsp goto done;
1311 404c43c4 2018-06-21 stsp }
1312 404c43c4 2018-06-21 stsp
1313 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
1314 404c43c4 2018-06-21 stsp done:
1315 66bea077 2018-08-02 stsp free(in_repo_path);
1316 66bea077 2018-08-02 stsp free(repo_path);
1317 66bea077 2018-08-02 stsp free(cwd);
1318 404c43c4 2018-06-21 stsp free(commit_id);
1319 0c06baac 2019-02-05 stsp if (worktree)
1320 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
1321 ad242220 2018-09-08 stsp if (repo) {
1322 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1323 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1324 ad242220 2018-09-08 stsp if (error == NULL)
1325 ad242220 2018-09-08 stsp error = repo_error;
1326 ad242220 2018-09-08 stsp }
1327 404c43c4 2018-06-21 stsp return error;
1328 5de5890b 2018-10-18 stsp }
1329 5de5890b 2018-10-18 stsp
1330 5de5890b 2018-10-18 stsp __dead static void
1331 5de5890b 2018-10-18 stsp usage_tree(void)
1332 5de5890b 2018-10-18 stsp {
1333 c1669e2e 2019-01-09 stsp fprintf(stderr,
1334 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
1335 5de5890b 2018-10-18 stsp getprogname());
1336 5de5890b 2018-10-18 stsp exit(1);
1337 5de5890b 2018-10-18 stsp }
1338 5de5890b 2018-10-18 stsp
1339 c1669e2e 2019-01-09 stsp static void
1340 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
1341 c1669e2e 2019-01-09 stsp const char *root_path)
1342 c1669e2e 2019-01-09 stsp {
1343 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
1344 5de5890b 2018-10-18 stsp
1345 c1669e2e 2019-01-09 stsp path += strlen(root_path);
1346 c1669e2e 2019-01-09 stsp while (path[0] == '/')
1347 c1669e2e 2019-01-09 stsp path++;
1348 c1669e2e 2019-01-09 stsp
1349 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
1350 d6e648b4 2019-02-10 stsp is_root_path ? "" : "/", te->name,
1351 d6e648b4 2019-02-10 stsp S_ISDIR(te->mode) ? "/" : ((te->mode & S_IXUSR) ? "*" : ""));
1352 c1669e2e 2019-01-09 stsp }
1353 c1669e2e 2019-01-09 stsp
1354 5de5890b 2018-10-18 stsp static const struct got_error *
1355 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1356 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
1357 c1669e2e 2019-01-09 stsp struct got_repository *repo)
1358 5de5890b 2018-10-18 stsp {
1359 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1360 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1361 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1362 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1363 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1364 5de5890b 2018-10-18 stsp
1365 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1366 5de5890b 2018-10-18 stsp if (err)
1367 5de5890b 2018-10-18 stsp goto done;
1368 5de5890b 2018-10-18 stsp
1369 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1370 5de5890b 2018-10-18 stsp if (err)
1371 5de5890b 2018-10-18 stsp goto done;
1372 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1373 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1374 5de5890b 2018-10-18 stsp while (te) {
1375 5de5890b 2018-10-18 stsp char *id = NULL;
1376 84453469 2018-11-11 stsp
1377 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1378 84453469 2018-11-11 stsp break;
1379 84453469 2018-11-11 stsp
1380 5de5890b 2018-10-18 stsp if (show_ids) {
1381 5de5890b 2018-10-18 stsp char *id_str;
1382 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1383 5de5890b 2018-10-18 stsp if (err)
1384 5de5890b 2018-10-18 stsp goto done;
1385 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1386 5de5890b 2018-10-18 stsp err = got_error_from_errno();
1387 5de5890b 2018-10-18 stsp free(id_str);
1388 5de5890b 2018-10-18 stsp goto done;
1389 5de5890b 2018-10-18 stsp }
1390 5de5890b 2018-10-18 stsp free(id_str);
1391 5de5890b 2018-10-18 stsp }
1392 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
1393 5de5890b 2018-10-18 stsp free(id);
1394 c1669e2e 2019-01-09 stsp
1395 c1669e2e 2019-01-09 stsp if (recurse && S_ISDIR(te->mode)) {
1396 c1669e2e 2019-01-09 stsp char *child_path;
1397 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
1398 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
1399 c1669e2e 2019-01-09 stsp te->name) == -1) {
1400 c1669e2e 2019-01-09 stsp err = got_error_from_errno();
1401 c1669e2e 2019-01-09 stsp goto done;
1402 c1669e2e 2019-01-09 stsp }
1403 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
1404 c1669e2e 2019-01-09 stsp root_path, repo);
1405 c1669e2e 2019-01-09 stsp free(child_path);
1406 c1669e2e 2019-01-09 stsp if (err)
1407 c1669e2e 2019-01-09 stsp goto done;
1408 c1669e2e 2019-01-09 stsp }
1409 c1669e2e 2019-01-09 stsp
1410 c1669e2e 2019-01-09 stsp te = SIMPLEQ_NEXT(te, entry);
1411 5de5890b 2018-10-18 stsp }
1412 5de5890b 2018-10-18 stsp done:
1413 5de5890b 2018-10-18 stsp if (tree)
1414 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1415 5de5890b 2018-10-18 stsp free(tree_id);
1416 5de5890b 2018-10-18 stsp return err;
1417 404c43c4 2018-06-21 stsp }
1418 404c43c4 2018-06-21 stsp
1419 5de5890b 2018-10-18 stsp static const struct got_error *
1420 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1421 5de5890b 2018-10-18 stsp {
1422 5de5890b 2018-10-18 stsp const struct got_error *error;
1423 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1424 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
1425 7a2c19d6 2019-02-05 stsp const char *path;
1426 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1427 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1428 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1429 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
1430 5de5890b 2018-10-18 stsp int ch;
1431 5de5890b 2018-10-18 stsp
1432 5de5890b 2018-10-18 stsp #ifndef PROFILE
1433 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1434 0f8d269b 2019-01-04 stsp NULL) == -1)
1435 5de5890b 2018-10-18 stsp err(1, "pledge");
1436 5de5890b 2018-10-18 stsp #endif
1437 5de5890b 2018-10-18 stsp
1438 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
1439 5de5890b 2018-10-18 stsp switch (ch) {
1440 5de5890b 2018-10-18 stsp case 'c':
1441 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1442 5de5890b 2018-10-18 stsp break;
1443 5de5890b 2018-10-18 stsp case 'r':
1444 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1445 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1446 5de5890b 2018-10-18 stsp err(1, "-r option");
1447 5de5890b 2018-10-18 stsp break;
1448 5de5890b 2018-10-18 stsp case 'i':
1449 5de5890b 2018-10-18 stsp show_ids = 1;
1450 5de5890b 2018-10-18 stsp break;
1451 c1669e2e 2019-01-09 stsp case 'R':
1452 c1669e2e 2019-01-09 stsp recurse = 1;
1453 c1669e2e 2019-01-09 stsp break;
1454 5de5890b 2018-10-18 stsp default:
1455 2deda0b9 2019-03-07 stsp usage_tree();
1456 5de5890b 2018-10-18 stsp /* NOTREACHED */
1457 5de5890b 2018-10-18 stsp }
1458 5de5890b 2018-10-18 stsp }
1459 5de5890b 2018-10-18 stsp
1460 5de5890b 2018-10-18 stsp argc -= optind;
1461 5de5890b 2018-10-18 stsp argv += optind;
1462 5de5890b 2018-10-18 stsp
1463 5de5890b 2018-10-18 stsp if (argc == 1)
1464 5de5890b 2018-10-18 stsp path = argv[0];
1465 5de5890b 2018-10-18 stsp else if (argc > 1)
1466 5de5890b 2018-10-18 stsp usage_tree();
1467 5de5890b 2018-10-18 stsp else
1468 7a2c19d6 2019-02-05 stsp path = NULL;
1469 7a2c19d6 2019-02-05 stsp
1470 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
1471 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
1472 9bf7a39b 2019-02-05 stsp error = got_error_from_errno();
1473 9bf7a39b 2019-02-05 stsp goto done;
1474 9bf7a39b 2019-02-05 stsp }
1475 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1476 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1477 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1478 7a2c19d6 2019-02-05 stsp goto done;
1479 7a2c19d6 2019-02-05 stsp else
1480 7a2c19d6 2019-02-05 stsp error = NULL;
1481 7a2c19d6 2019-02-05 stsp if (worktree) {
1482 7a2c19d6 2019-02-05 stsp repo_path =
1483 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1484 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
1485 7a2c19d6 2019-02-05 stsp error = got_error_from_errno();
1486 7a2c19d6 2019-02-05 stsp if (error)
1487 7a2c19d6 2019-02-05 stsp goto done;
1488 7a2c19d6 2019-02-05 stsp } else {
1489 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
1490 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
1491 7a2c19d6 2019-02-05 stsp error = got_error_from_errno();
1492 7a2c19d6 2019-02-05 stsp goto done;
1493 7a2c19d6 2019-02-05 stsp }
1494 5de5890b 2018-10-18 stsp }
1495 5de5890b 2018-10-18 stsp }
1496 5de5890b 2018-10-18 stsp
1497 d0eebce4 2019-03-11 stsp error = apply_unveil(repo_path, 1, NULL);
1498 0f8d269b 2019-01-04 stsp if (error)
1499 0f8d269b 2019-01-04 stsp goto done;
1500 0f8d269b 2019-01-04 stsp
1501 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1502 5de5890b 2018-10-18 stsp if (error != NULL)
1503 5de5890b 2018-10-18 stsp goto done;
1504 5de5890b 2018-10-18 stsp
1505 9bf7a39b 2019-02-05 stsp if (path == NULL) {
1506 9bf7a39b 2019-02-05 stsp if (worktree) {
1507 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1508 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1509 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
1510 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
1511 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
1512 9bf7a39b 2019-02-05 stsp error = got_error_from_errno();
1513 9bf7a39b 2019-02-05 stsp goto done;
1514 9bf7a39b 2019-02-05 stsp }
1515 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1516 9bf7a39b 2019-02-05 stsp free(p);
1517 9bf7a39b 2019-02-05 stsp if (error)
1518 9bf7a39b 2019-02-05 stsp goto done;
1519 9bf7a39b 2019-02-05 stsp } else
1520 9bf7a39b 2019-02-05 stsp path = "/";
1521 9bf7a39b 2019-02-05 stsp }
1522 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
1523 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1524 9bf7a39b 2019-02-05 stsp if (error != NULL)
1525 9bf7a39b 2019-02-05 stsp goto done;
1526 9bf7a39b 2019-02-05 stsp }
1527 5de5890b 2018-10-18 stsp
1528 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1529 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1530 5de5890b 2018-10-18 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD);
1531 5de5890b 2018-10-18 stsp if (error != NULL)
1532 5de5890b 2018-10-18 stsp goto done;
1533 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1534 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1535 5de5890b 2018-10-18 stsp if (error != NULL)
1536 5de5890b 2018-10-18 stsp goto done;
1537 5de5890b 2018-10-18 stsp } else {
1538 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1539 15a94983 2018-12-23 stsp commit_id_str);
1540 5de5890b 2018-10-18 stsp if (error != NULL)
1541 5de5890b 2018-10-18 stsp goto done;
1542 5de5890b 2018-10-18 stsp }
1543 5de5890b 2018-10-18 stsp
1544 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
1545 c1669e2e 2019-01-09 stsp in_repo_path, repo);
1546 5de5890b 2018-10-18 stsp done:
1547 5de5890b 2018-10-18 stsp free(in_repo_path);
1548 5de5890b 2018-10-18 stsp free(repo_path);
1549 5de5890b 2018-10-18 stsp free(cwd);
1550 5de5890b 2018-10-18 stsp free(commit_id);
1551 7a2c19d6 2019-02-05 stsp if (worktree)
1552 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
1553 5de5890b 2018-10-18 stsp if (repo) {
1554 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1555 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1556 5de5890b 2018-10-18 stsp if (error == NULL)
1557 5de5890b 2018-10-18 stsp error = repo_error;
1558 5de5890b 2018-10-18 stsp }
1559 5de5890b 2018-10-18 stsp return error;
1560 5de5890b 2018-10-18 stsp }
1561 5de5890b 2018-10-18 stsp
1562 6bad629b 2019-02-04 stsp __dead static void
1563 6bad629b 2019-02-04 stsp usage_status(void)
1564 6bad629b 2019-02-04 stsp {
1565 927df6b7 2019-02-10 stsp fprintf(stderr, "usage: %s status [path]\n", getprogname());
1566 6bad629b 2019-02-04 stsp exit(1);
1567 6bad629b 2019-02-04 stsp }
1568 5c860e29 2018-03-12 stsp
1569 b72f483a 2019-02-05 stsp static const struct got_error *
1570 b72f483a 2019-02-05 stsp print_status(void *arg, unsigned char status, const char *path,
1571 b72f483a 2019-02-05 stsp struct got_object_id *id)
1572 6bad629b 2019-02-04 stsp {
1573 6bad629b 2019-02-04 stsp printf("%c %s\n", status, path);
1574 b72f483a 2019-02-05 stsp return NULL;
1575 6bad629b 2019-02-04 stsp }
1576 5c860e29 2018-03-12 stsp
1577 6bad629b 2019-02-04 stsp static const struct got_error *
1578 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
1579 6bad629b 2019-02-04 stsp {
1580 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
1581 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
1582 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
1583 927df6b7 2019-02-10 stsp char *cwd = NULL, *path = NULL;
1584 6bad629b 2019-02-04 stsp int ch;
1585 5c860e29 2018-03-12 stsp
1586 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1587 6bad629b 2019-02-04 stsp switch (ch) {
1588 5c860e29 2018-03-12 stsp default:
1589 2deda0b9 2019-03-07 stsp usage_status();
1590 6bad629b 2019-02-04 stsp /* NOTREACHED */
1591 5c860e29 2018-03-12 stsp }
1592 5c860e29 2018-03-12 stsp }
1593 5c860e29 2018-03-12 stsp
1594 6bad629b 2019-02-04 stsp argc -= optind;
1595 6bad629b 2019-02-04 stsp argv += optind;
1596 5c860e29 2018-03-12 stsp
1597 6bad629b 2019-02-04 stsp #ifndef PROFILE
1598 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1599 6bad629b 2019-02-04 stsp NULL) == -1)
1600 6bad629b 2019-02-04 stsp err(1, "pledge");
1601 f42b1b34 2018-03-12 stsp #endif
1602 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
1603 927df6b7 2019-02-10 stsp if (cwd == NULL) {
1604 927df6b7 2019-02-10 stsp error = got_error_from_errno();
1605 927df6b7 2019-02-10 stsp goto done;
1606 927df6b7 2019-02-10 stsp }
1607 927df6b7 2019-02-10 stsp
1608 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1609 927df6b7 2019-02-10 stsp if (error != NULL)
1610 927df6b7 2019-02-10 stsp goto done;
1611 927df6b7 2019-02-10 stsp
1612 6bad629b 2019-02-04 stsp if (argc == 0) {
1613 927df6b7 2019-02-10 stsp path = strdup("");
1614 927df6b7 2019-02-10 stsp if (path == NULL) {
1615 6bad629b 2019-02-04 stsp error = got_error_from_errno();
1616 6bad629b 2019-02-04 stsp goto done;
1617 6bad629b 2019-02-04 stsp }
1618 6bad629b 2019-02-04 stsp } else if (argc == 1) {
1619 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
1620 927df6b7 2019-02-10 stsp if (error)
1621 6bad629b 2019-02-04 stsp goto done;
1622 6bad629b 2019-02-04 stsp } else
1623 6bad629b 2019-02-04 stsp usage_status();
1624 6bad629b 2019-02-04 stsp
1625 6bad629b 2019-02-04 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1626 6bad629b 2019-02-04 stsp if (error != NULL)
1627 6bad629b 2019-02-04 stsp goto done;
1628 6bad629b 2019-02-04 stsp
1629 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1630 c7f4312f 2019-02-05 stsp got_worktree_get_root_path(worktree));
1631 6bad629b 2019-02-04 stsp if (error)
1632 6bad629b 2019-02-04 stsp goto done;
1633 6bad629b 2019-02-04 stsp
1634 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_status, NULL,
1635 6bad629b 2019-02-04 stsp check_cancelled, NULL);
1636 6bad629b 2019-02-04 stsp done:
1637 927df6b7 2019-02-10 stsp free(cwd);
1638 927df6b7 2019-02-10 stsp free(path);
1639 d0eebce4 2019-03-11 stsp return error;
1640 d0eebce4 2019-03-11 stsp }
1641 d0eebce4 2019-03-11 stsp
1642 d0eebce4 2019-03-11 stsp __dead static void
1643 d0eebce4 2019-03-11 stsp usage_ref(void)
1644 d0eebce4 2019-03-11 stsp {
1645 d0eebce4 2019-03-11 stsp fprintf(stderr,
1646 d0eebce4 2019-03-11 stsp "usage: %s ref [-r repository] -l | -d name | name object\n",
1647 d0eebce4 2019-03-11 stsp getprogname());
1648 d0eebce4 2019-03-11 stsp exit(1);
1649 d0eebce4 2019-03-11 stsp }
1650 d0eebce4 2019-03-11 stsp
1651 d0eebce4 2019-03-11 stsp static const struct got_error *
1652 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
1653 d0eebce4 2019-03-11 stsp {
1654 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
1655 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
1656 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
1657 d0eebce4 2019-03-11 stsp
1658 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
1659 d0eebce4 2019-03-11 stsp err = got_ref_list(&refs, repo);
1660 d0eebce4 2019-03-11 stsp if (err)
1661 d0eebce4 2019-03-11 stsp return err;
1662 d0eebce4 2019-03-11 stsp
1663 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1664 d0eebce4 2019-03-11 stsp char *refstr;
1665 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
1666 d0eebce4 2019-03-11 stsp if (refstr == NULL)
1667 d0eebce4 2019-03-11 stsp return got_error_from_errno();
1668 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
1669 d0eebce4 2019-03-11 stsp free(refstr);
1670 d0eebce4 2019-03-11 stsp }
1671 d0eebce4 2019-03-11 stsp
1672 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1673 d0eebce4 2019-03-11 stsp return NULL;
1674 d0eebce4 2019-03-11 stsp }
1675 d0eebce4 2019-03-11 stsp
1676 d0eebce4 2019-03-11 stsp static const struct got_error *
1677 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
1678 d0eebce4 2019-03-11 stsp {
1679 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1680 d0eebce4 2019-03-11 stsp struct got_reference *ref;
1681 d0eebce4 2019-03-11 stsp
1682 d0eebce4 2019-03-11 stsp err = got_ref_open(&ref, repo, refname);
1683 d0eebce4 2019-03-11 stsp if (err)
1684 d0eebce4 2019-03-11 stsp return err;
1685 d0eebce4 2019-03-11 stsp
1686 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
1687 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1688 d0eebce4 2019-03-11 stsp return err;
1689 d0eebce4 2019-03-11 stsp }
1690 d0eebce4 2019-03-11 stsp
1691 d0eebce4 2019-03-11 stsp static const struct got_error *
1692 d0eebce4 2019-03-11 stsp add_ref(struct got_repository *repo, const char *refname, const char *id_str)
1693 d0eebce4 2019-03-11 stsp {
1694 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1695 d0eebce4 2019-03-11 stsp struct got_object_id *id;
1696 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
1697 d0eebce4 2019-03-11 stsp
1698 d0eebce4 2019-03-11 stsp err = got_object_resolve_id_str(&id, repo, id_str);
1699 d0eebce4 2019-03-11 stsp if (err)
1700 d0eebce4 2019-03-11 stsp return err;
1701 d0eebce4 2019-03-11 stsp
1702 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
1703 d0eebce4 2019-03-11 stsp if (err)
1704 d0eebce4 2019-03-11 stsp goto done;
1705 d0eebce4 2019-03-11 stsp
1706 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
1707 d0eebce4 2019-03-11 stsp done:
1708 d0eebce4 2019-03-11 stsp if (ref)
1709 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1710 d0eebce4 2019-03-11 stsp free(id);
1711 d0eebce4 2019-03-11 stsp return err;
1712 d0eebce4 2019-03-11 stsp }
1713 d0eebce4 2019-03-11 stsp
1714 d0eebce4 2019-03-11 stsp static const struct got_error *
1715 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
1716 d0eebce4 2019-03-11 stsp {
1717 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
1718 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
1719 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
1720 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
1721 d0eebce4 2019-03-11 stsp int ch, do_list = 0;
1722 d0eebce4 2019-03-11 stsp const char *delref = NULL;
1723 d0eebce4 2019-03-11 stsp
1724 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
1725 d0eebce4 2019-03-11 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
1726 d0eebce4 2019-03-11 stsp switch (ch) {
1727 d0eebce4 2019-03-11 stsp case 'd':
1728 d0eebce4 2019-03-11 stsp delref = optarg;
1729 d0eebce4 2019-03-11 stsp break;
1730 d0eebce4 2019-03-11 stsp case 'r':
1731 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
1732 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1733 d0eebce4 2019-03-11 stsp err(1, "-r option");
1734 d0eebce4 2019-03-11 stsp break;
1735 d0eebce4 2019-03-11 stsp case 'l':
1736 d0eebce4 2019-03-11 stsp do_list = 1;
1737 d0eebce4 2019-03-11 stsp break;
1738 d0eebce4 2019-03-11 stsp default:
1739 d0eebce4 2019-03-11 stsp usage_ref();
1740 d0eebce4 2019-03-11 stsp /* NOTREACHED */
1741 d0eebce4 2019-03-11 stsp }
1742 d0eebce4 2019-03-11 stsp }
1743 d0eebce4 2019-03-11 stsp
1744 d0eebce4 2019-03-11 stsp if (do_list && delref)
1745 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
1746 d0eebce4 2019-03-11 stsp
1747 d0eebce4 2019-03-11 stsp argc -= optind;
1748 d0eebce4 2019-03-11 stsp argv += optind;
1749 d0eebce4 2019-03-11 stsp
1750 d0eebce4 2019-03-11 stsp if (do_list || delref) {
1751 d0eebce4 2019-03-11 stsp if (argc > 0)
1752 d0eebce4 2019-03-11 stsp usage_ref();
1753 d0eebce4 2019-03-11 stsp } else if (argc != 2)
1754 d0eebce4 2019-03-11 stsp usage_ref();
1755 d0eebce4 2019-03-11 stsp
1756 d0eebce4 2019-03-11 stsp #ifndef PROFILE
1757 e0b57350 2019-03-12 stsp if (do_list) {
1758 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
1759 e0b57350 2019-03-12 stsp NULL) == -1)
1760 e0b57350 2019-03-12 stsp err(1, "pledge");
1761 e0b57350 2019-03-12 stsp } else {
1762 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1763 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
1764 e0b57350 2019-03-12 stsp err(1, "pledge");
1765 e0b57350 2019-03-12 stsp }
1766 d0eebce4 2019-03-11 stsp #endif
1767 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
1768 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
1769 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1770 d0eebce4 2019-03-11 stsp goto done;
1771 d0eebce4 2019-03-11 stsp }
1772 d0eebce4 2019-03-11 stsp
1773 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1774 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
1775 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1776 d0eebce4 2019-03-11 stsp goto done;
1777 d0eebce4 2019-03-11 stsp else
1778 d0eebce4 2019-03-11 stsp error = NULL;
1779 d0eebce4 2019-03-11 stsp if (worktree) {
1780 d0eebce4 2019-03-11 stsp repo_path =
1781 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
1782 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1783 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1784 d0eebce4 2019-03-11 stsp if (error)
1785 d0eebce4 2019-03-11 stsp goto done;
1786 d0eebce4 2019-03-11 stsp } else {
1787 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
1788 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1789 d0eebce4 2019-03-11 stsp error = got_error_from_errno();
1790 d0eebce4 2019-03-11 stsp goto done;
1791 d0eebce4 2019-03-11 stsp }
1792 d0eebce4 2019-03-11 stsp }
1793 d0eebce4 2019-03-11 stsp }
1794 d0eebce4 2019-03-11 stsp
1795 d0eebce4 2019-03-11 stsp error = apply_unveil(repo_path, do_list,
1796 d0eebce4 2019-03-11 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
1797 d0eebce4 2019-03-11 stsp if (error)
1798 d0eebce4 2019-03-11 stsp goto done;
1799 d0eebce4 2019-03-11 stsp
1800 d0eebce4 2019-03-11 stsp error = got_repo_open(&repo, repo_path);
1801 d0eebce4 2019-03-11 stsp if (error != NULL)
1802 d0eebce4 2019-03-11 stsp goto done;
1803 d0eebce4 2019-03-11 stsp
1804 d0eebce4 2019-03-11 stsp if (do_list)
1805 d0eebce4 2019-03-11 stsp error = list_refs(repo);
1806 d0eebce4 2019-03-11 stsp else if (delref)
1807 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
1808 d0eebce4 2019-03-11 stsp else
1809 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
1810 d0eebce4 2019-03-11 stsp done:
1811 d0eebce4 2019-03-11 stsp if (repo)
1812 d0eebce4 2019-03-11 stsp got_repo_close(repo);
1813 d0eebce4 2019-03-11 stsp if (worktree)
1814 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
1815 d0eebce4 2019-03-11 stsp free(cwd);
1816 d0eebce4 2019-03-11 stsp free(repo_path);
1817 6bad629b 2019-02-04 stsp return error;
1818 6bad629b 2019-02-04 stsp }