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 1cc14b9f 2019-05-14 stsp while ((ch = getopt(argc, argv, "b: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 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
1048 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
1049 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
1050 3235492e 2018-04-01 stsp if (error != NULL)
1051 3235492e 2018-04-01 stsp return error;
1052 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
1053 3235492e 2018-04-01 stsp got_ref_close(head_ref);
1054 3235492e 2018-04-01 stsp if (error != NULL)
1055 3235492e 2018-04-01 stsp return error;
1056 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1057 3235492e 2018-04-01 stsp } else {
1058 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
1059 2f17228e 2019-05-12 stsp error = got_ref_open(&ref, repo, start_commit, 0);
1060 3235492e 2018-04-01 stsp if (error == NULL) {
1061 1caad61b 2019-02-01 stsp int obj_type;
1062 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
1063 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
1064 d1f2edc9 2018-06-13 stsp if (error != NULL)
1065 1caad61b 2019-02-01 stsp goto done;
1066 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
1067 1caad61b 2019-02-01 stsp if (error != NULL)
1068 1caad61b 2019-02-01 stsp goto done;
1069 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
1070 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
1071 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
1072 1caad61b 2019-02-01 stsp if (error != NULL)
1073 1caad61b 2019-02-01 stsp goto done;
1074 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
1075 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
1076 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1077 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1078 1caad61b 2019-02-01 stsp goto done;
1079 1caad61b 2019-02-01 stsp }
1080 1caad61b 2019-02-01 stsp free(id);
1081 1caad61b 2019-02-01 stsp id = got_object_id_dup(
1082 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
1083 1caad61b 2019-02-01 stsp if (id == NULL)
1084 638f9024 2019-05-13 stsp error = got_error_from_errno(
1085 230a42bd 2019-05-11 jcs "got_object_id_dup");
1086 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1087 1caad61b 2019-02-01 stsp if (error)
1088 1caad61b 2019-02-01 stsp goto done;
1089 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1090 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1091 1caad61b 2019-02-01 stsp goto done;
1092 1caad61b 2019-02-01 stsp }
1093 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1094 d1f2edc9 2018-06-13 stsp if (error != NULL)
1095 1caad61b 2019-02-01 stsp goto done;
1096 d1f2edc9 2018-06-13 stsp }
1097 15a94983 2018-12-23 stsp if (commit == NULL) {
1098 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id, repo,
1099 d1f2edc9 2018-06-13 stsp start_commit);
1100 d1f2edc9 2018-06-13 stsp if (error != NULL)
1101 d1f2edc9 2018-06-13 stsp return error;
1102 3235492e 2018-04-01 stsp }
1103 3235492e 2018-04-01 stsp }
1104 d7d4f210 2018-03-12 stsp if (error != NULL)
1105 04ca23f4 2018-07-16 stsp goto done;
1106 04ca23f4 2018-07-16 stsp
1107 23721109 2018-10-22 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1108 04ca23f4 2018-07-16 stsp if (error != NULL)
1109 04ca23f4 2018-07-16 stsp goto done;
1110 04ca23f4 2018-07-16 stsp if (in_repo_path) {
1111 04ca23f4 2018-07-16 stsp free(path);
1112 04ca23f4 2018-07-16 stsp path = in_repo_path;
1113 04ca23f4 2018-07-16 stsp }
1114 199a4027 2019-02-02 stsp
1115 199a4027 2019-02-02 stsp error = got_ref_list(&refs, repo);
1116 199a4027 2019-02-02 stsp if (error)
1117 199a4027 2019-02-02 stsp goto done;
1118 04ca23f4 2018-07-16 stsp
1119 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
1120 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
1121 04ca23f4 2018-07-16 stsp done:
1122 04ca23f4 2018-07-16 stsp free(path);
1123 04ca23f4 2018-07-16 stsp free(repo_path);
1124 04ca23f4 2018-07-16 stsp free(cwd);
1125 f42b1b34 2018-03-12 stsp free(id);
1126 cffc0aa4 2019-02-05 stsp if (worktree)
1127 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
1128 ad242220 2018-09-08 stsp if (repo) {
1129 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1130 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1131 ad242220 2018-09-08 stsp if (error == NULL)
1132 ad242220 2018-09-08 stsp error = repo_error;
1133 ad242220 2018-09-08 stsp }
1134 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1135 8bf5b3c9 2018-03-17 stsp return error;
1136 5c860e29 2018-03-12 stsp }
1137 5c860e29 2018-03-12 stsp
1138 4ed7e80c 2018-05-20 stsp __dead static void
1139 3f8b7d6a 2018-04-01 stsp usage_diff(void)
1140 3f8b7d6a 2018-04-01 stsp {
1141 b72f483a 2019-02-05 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] "
1142 927df6b7 2019-02-10 stsp "[object1 object2 | path]\n", getprogname());
1143 3f8b7d6a 2018-04-01 stsp exit(1);
1144 b00d56cd 2018-04-01 stsp }
1145 b00d56cd 2018-04-01 stsp
1146 b72f483a 2019-02-05 stsp struct print_diff_arg {
1147 b72f483a 2019-02-05 stsp struct got_repository *repo;
1148 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
1149 b72f483a 2019-02-05 stsp int diff_context;
1150 3fc0c068 2019-02-10 stsp const char *id_str;
1151 3fc0c068 2019-02-10 stsp int header_shown;
1152 b72f483a 2019-02-05 stsp };
1153 b72f483a 2019-02-05 stsp
1154 4ed7e80c 2018-05-20 stsp static const struct got_error *
1155 b72f483a 2019-02-05 stsp print_diff(void *arg, unsigned char status, const char *path,
1156 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1157 b72f483a 2019-02-05 stsp {
1158 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
1159 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
1160 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
1161 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
1162 b72f483a 2019-02-05 stsp char *abspath = NULL;
1163 b72f483a 2019-02-05 stsp struct stat sb;
1164 b72f483a 2019-02-05 stsp
1165 2ec1f75b 2019-03-26 stsp if (status != GOT_STATUS_MODIFY && status != GOT_STATUS_ADD &&
1166 7154f6ce 2019-03-27 stsp status != GOT_STATUS_DELETE && status != GOT_STATUS_CONFLICT)
1167 b72f483a 2019-02-05 stsp return NULL;
1168 3fc0c068 2019-02-10 stsp
1169 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
1170 3fc0c068 2019-02-10 stsp printf("diff %s %s\n", a->id_str,
1171 3fc0c068 2019-02-10 stsp got_worktree_get_root_path(a->worktree));
1172 3fc0c068 2019-02-10 stsp a->header_shown = 1;
1173 3fc0c068 2019-02-10 stsp }
1174 b72f483a 2019-02-05 stsp
1175 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_ADD) {
1176 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
1177 d00136be 2019-03-26 stsp if (err)
1178 d00136be 2019-03-26 stsp goto done;
1179 b72f483a 2019-02-05 stsp
1180 d00136be 2019-03-26 stsp }
1181 d00136be 2019-03-26 stsp
1182 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
1183 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
1184 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
1185 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1186 2ec1f75b 2019-03-26 stsp goto done;
1187 2ec1f75b 2019-03-26 stsp }
1188 b72f483a 2019-02-05 stsp
1189 2ec1f75b 2019-03-26 stsp f2 = fopen(abspath, "r");
1190 2ec1f75b 2019-03-26 stsp if (f2 == NULL) {
1191 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
1192 2ec1f75b 2019-03-26 stsp goto done;
1193 2ec1f75b 2019-03-26 stsp }
1194 2ec1f75b 2019-03-26 stsp if (lstat(abspath, &sb) == -1) {
1195 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
1196 2ec1f75b 2019-03-26 stsp goto done;
1197 2ec1f75b 2019-03-26 stsp }
1198 2ec1f75b 2019-03-26 stsp } else
1199 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
1200 b72f483a 2019-02-05 stsp
1201 b72f483a 2019-02-05 stsp err = got_diff_blob_file(blob1, f2, sb.st_size, path, a->diff_context,
1202 b72f483a 2019-02-05 stsp stdout);
1203 b72f483a 2019-02-05 stsp done:
1204 b72f483a 2019-02-05 stsp if (blob1)
1205 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
1206 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
1207 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
1208 b72f483a 2019-02-05 stsp free(abspath);
1209 927df6b7 2019-02-10 stsp return err;
1210 927df6b7 2019-02-10 stsp }
1211 927df6b7 2019-02-10 stsp
1212 927df6b7 2019-02-10 stsp static const struct got_error *
1213 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
1214 b00d56cd 2018-04-01 stsp {
1215 b00d56cd 2018-04-01 stsp const struct got_error *error;
1216 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
1217 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
1218 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
1219 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
1220 15a94983 2018-12-23 stsp char *id_str1 = NULL, *id_str2 = NULL;
1221 15a94983 2018-12-23 stsp int type1, type2;
1222 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1223 c0cc5c62 2018-10-18 stsp const char *errstr;
1224 927df6b7 2019-02-10 stsp char *path = NULL;
1225 b00d56cd 2018-04-01 stsp
1226 b00d56cd 2018-04-01 stsp #ifndef PROFILE
1227 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1228 25eccc22 2019-01-04 stsp NULL) == -1)
1229 b00d56cd 2018-04-01 stsp err(1, "pledge");
1230 b00d56cd 2018-04-01 stsp #endif
1231 b00d56cd 2018-04-01 stsp
1232 b72f483a 2019-02-05 stsp while ((ch = getopt(argc, argv, "C:r:")) != -1) {
1233 b00d56cd 2018-04-01 stsp switch (ch) {
1234 c0cc5c62 2018-10-18 stsp case 'C':
1235 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
1236 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1237 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1238 c0cc5c62 2018-10-18 stsp break;
1239 b72f483a 2019-02-05 stsp case 'r':
1240 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
1241 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1242 b72f483a 2019-02-05 stsp err(1, "-r option");
1243 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1244 b72f483a 2019-02-05 stsp break;
1245 b00d56cd 2018-04-01 stsp default:
1246 2deda0b9 2019-03-07 stsp usage_diff();
1247 b00d56cd 2018-04-01 stsp /* NOTREACHED */
1248 b00d56cd 2018-04-01 stsp }
1249 b00d56cd 2018-04-01 stsp }
1250 b00d56cd 2018-04-01 stsp
1251 b00d56cd 2018-04-01 stsp argc -= optind;
1252 b00d56cd 2018-04-01 stsp argv += optind;
1253 b00d56cd 2018-04-01 stsp
1254 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
1255 b72f483a 2019-02-05 stsp if (cwd == NULL) {
1256 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1257 b72f483a 2019-02-05 stsp goto done;
1258 b72f483a 2019-02-05 stsp }
1259 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1260 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1261 927df6b7 2019-02-10 stsp goto done;
1262 927df6b7 2019-02-10 stsp if (argc <= 1) {
1263 927df6b7 2019-02-10 stsp if (worktree == NULL) {
1264 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
1265 927df6b7 2019-02-10 stsp goto done;
1266 927df6b7 2019-02-10 stsp }
1267 b72f483a 2019-02-05 stsp if (repo_path)
1268 b72f483a 2019-02-05 stsp errx(1,
1269 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
1270 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
1271 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
1272 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1273 927df6b7 2019-02-10 stsp goto done;
1274 927df6b7 2019-02-10 stsp }
1275 927df6b7 2019-02-10 stsp if (argc == 1) {
1276 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1277 cbd1af7a 2019-03-18 stsp argv[0]);
1278 927df6b7 2019-02-10 stsp if (error)
1279 927df6b7 2019-02-10 stsp goto done;
1280 927df6b7 2019-02-10 stsp } else {
1281 927df6b7 2019-02-10 stsp path = strdup("");
1282 927df6b7 2019-02-10 stsp if (path == NULL) {
1283 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1284 927df6b7 2019-02-10 stsp goto done;
1285 927df6b7 2019-02-10 stsp }
1286 927df6b7 2019-02-10 stsp }
1287 b72f483a 2019-02-05 stsp } else if (argc == 2) {
1288 15a94983 2018-12-23 stsp id_str1 = argv[0];
1289 15a94983 2018-12-23 stsp id_str2 = argv[1];
1290 b00d56cd 2018-04-01 stsp } else
1291 b00d56cd 2018-04-01 stsp usage_diff();
1292 25eccc22 2019-01-04 stsp
1293 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
1294 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
1295 b72f483a 2019-02-05 stsp if (repo_path == NULL)
1296 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
1297 b72f483a 2019-02-05 stsp }
1298 b00d56cd 2018-04-01 stsp
1299 b00d56cd 2018-04-01 stsp error = got_repo_open(&repo, repo_path);
1300 76089277 2018-04-01 stsp free(repo_path);
1301 b00d56cd 2018-04-01 stsp if (error != NULL)
1302 b00d56cd 2018-04-01 stsp goto done;
1303 b00d56cd 2018-04-01 stsp
1304 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1305 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
1306 c02c541e 2019-03-29 stsp if (error)
1307 c02c541e 2019-03-29 stsp goto done;
1308 c02c541e 2019-03-29 stsp
1309 b72f483a 2019-02-05 stsp if (worktree) {
1310 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
1311 b72f483a 2019-02-05 stsp char *id_str;
1312 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
1313 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
1314 b72f483a 2019-02-05 stsp if (error)
1315 b72f483a 2019-02-05 stsp goto done;
1316 b72f483a 2019-02-05 stsp arg.repo = repo;
1317 b72f483a 2019-02-05 stsp arg.worktree = worktree;
1318 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
1319 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
1320 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
1321 b72f483a 2019-02-05 stsp
1322 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_diff,
1323 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
1324 b72f483a 2019-02-05 stsp free(id_str);
1325 b72f483a 2019-02-05 stsp goto done;
1326 b72f483a 2019-02-05 stsp }
1327 b72f483a 2019-02-05 stsp
1328 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id1, repo, id_str1);
1329 6402fb3c 2018-09-15 stsp if (error)
1330 b00d56cd 2018-04-01 stsp goto done;
1331 b00d56cd 2018-04-01 stsp
1332 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&id2, repo, id_str2);
1333 6402fb3c 2018-09-15 stsp if (error)
1334 b00d56cd 2018-04-01 stsp goto done;
1335 b00d56cd 2018-04-01 stsp
1336 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
1337 15a94983 2018-12-23 stsp if (error)
1338 15a94983 2018-12-23 stsp goto done;
1339 15a94983 2018-12-23 stsp
1340 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
1341 15a94983 2018-12-23 stsp if (error)
1342 15a94983 2018-12-23 stsp goto done;
1343 15a94983 2018-12-23 stsp
1344 15a94983 2018-12-23 stsp if (type1 != type2) {
1345 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1346 b00d56cd 2018-04-01 stsp goto done;
1347 b00d56cd 2018-04-01 stsp }
1348 b00d56cd 2018-04-01 stsp
1349 15a94983 2018-12-23 stsp switch (type1) {
1350 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
1351 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
1352 54156555 2018-12-24 stsp diff_context, repo, stdout);
1353 b00d56cd 2018-04-01 stsp break;
1354 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
1355 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
1356 54156555 2018-12-24 stsp diff_context, repo, stdout);
1357 b00d56cd 2018-04-01 stsp break;
1358 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
1359 15a94983 2018-12-23 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null",
1360 15a94983 2018-12-23 stsp id_str2);
1361 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
1362 c0cc5c62 2018-10-18 stsp repo, stdout);
1363 b00d56cd 2018-04-01 stsp break;
1364 b00d56cd 2018-04-01 stsp default:
1365 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1366 b00d56cd 2018-04-01 stsp }
1367 b00d56cd 2018-04-01 stsp
1368 b00d56cd 2018-04-01 stsp done:
1369 15a94983 2018-12-23 stsp free(id1);
1370 15a94983 2018-12-23 stsp free(id2);
1371 927df6b7 2019-02-10 stsp free(path);
1372 b72f483a 2019-02-05 stsp if (worktree)
1373 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
1374 ad242220 2018-09-08 stsp if (repo) {
1375 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1376 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1377 ad242220 2018-09-08 stsp if (error == NULL)
1378 ad242220 2018-09-08 stsp error = repo_error;
1379 ad242220 2018-09-08 stsp }
1380 b00d56cd 2018-04-01 stsp return error;
1381 404c43c4 2018-06-21 stsp }
1382 404c43c4 2018-06-21 stsp
1383 404c43c4 2018-06-21 stsp __dead static void
1384 404c43c4 2018-06-21 stsp usage_blame(void)
1385 404c43c4 2018-06-21 stsp {
1386 9270e621 2019-02-05 stsp fprintf(stderr,
1387 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
1388 404c43c4 2018-06-21 stsp getprogname());
1389 404c43c4 2018-06-21 stsp exit(1);
1390 b00d56cd 2018-04-01 stsp }
1391 b00d56cd 2018-04-01 stsp
1392 404c43c4 2018-06-21 stsp static const struct got_error *
1393 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
1394 404c43c4 2018-06-21 stsp {
1395 404c43c4 2018-06-21 stsp const struct got_error *error;
1396 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
1397 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
1398 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1399 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
1400 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
1401 404c43c4 2018-06-21 stsp int ch;
1402 404c43c4 2018-06-21 stsp
1403 404c43c4 2018-06-21 stsp #ifndef PROFILE
1404 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1405 36e2fb66 2019-01-04 stsp NULL) == -1)
1406 404c43c4 2018-06-21 stsp err(1, "pledge");
1407 404c43c4 2018-06-21 stsp #endif
1408 404c43c4 2018-06-21 stsp
1409 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
1410 404c43c4 2018-06-21 stsp switch (ch) {
1411 404c43c4 2018-06-21 stsp case 'c':
1412 404c43c4 2018-06-21 stsp commit_id_str = optarg;
1413 404c43c4 2018-06-21 stsp break;
1414 66bea077 2018-08-02 stsp case 'r':
1415 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
1416 66bea077 2018-08-02 stsp if (repo_path == NULL)
1417 66bea077 2018-08-02 stsp err(1, "-r option");
1418 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1419 66bea077 2018-08-02 stsp break;
1420 404c43c4 2018-06-21 stsp default:
1421 2deda0b9 2019-03-07 stsp usage_blame();
1422 404c43c4 2018-06-21 stsp /* NOTREACHED */
1423 404c43c4 2018-06-21 stsp }
1424 404c43c4 2018-06-21 stsp }
1425 404c43c4 2018-06-21 stsp
1426 404c43c4 2018-06-21 stsp argc -= optind;
1427 404c43c4 2018-06-21 stsp argv += optind;
1428 404c43c4 2018-06-21 stsp
1429 a39318fd 2018-08-02 stsp if (argc == 1)
1430 404c43c4 2018-06-21 stsp path = argv[0];
1431 a39318fd 2018-08-02 stsp else
1432 404c43c4 2018-06-21 stsp usage_blame();
1433 404c43c4 2018-06-21 stsp
1434 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
1435 66bea077 2018-08-02 stsp if (cwd == NULL) {
1436 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1437 66bea077 2018-08-02 stsp goto done;
1438 66bea077 2018-08-02 stsp }
1439 66bea077 2018-08-02 stsp if (repo_path == NULL) {
1440 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1441 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1442 66bea077 2018-08-02 stsp goto done;
1443 0c06baac 2019-02-05 stsp else
1444 0c06baac 2019-02-05 stsp error = NULL;
1445 0c06baac 2019-02-05 stsp if (worktree) {
1446 0c06baac 2019-02-05 stsp repo_path =
1447 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1448 0c06baac 2019-02-05 stsp if (repo_path == NULL)
1449 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1450 0c06baac 2019-02-05 stsp if (error)
1451 0c06baac 2019-02-05 stsp goto done;
1452 0c06baac 2019-02-05 stsp } else {
1453 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
1454 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
1455 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1456 0c06baac 2019-02-05 stsp goto done;
1457 0c06baac 2019-02-05 stsp }
1458 66bea077 2018-08-02 stsp }
1459 66bea077 2018-08-02 stsp }
1460 36e2fb66 2019-01-04 stsp
1461 c02c541e 2019-03-29 stsp error = got_repo_open(&repo, repo_path);
1462 c02c541e 2019-03-29 stsp if (error != NULL)
1463 36e2fb66 2019-01-04 stsp goto done;
1464 66bea077 2018-08-02 stsp
1465 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1466 c02c541e 2019-03-29 stsp if (error)
1467 404c43c4 2018-06-21 stsp goto done;
1468 404c43c4 2018-06-21 stsp
1469 0c06baac 2019-02-05 stsp if (worktree) {
1470 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1471 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1472 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1473 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
1474 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
1475 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
1476 6efaaa2d 2019-02-05 stsp path) == -1) {
1477 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1478 0c06baac 2019-02-05 stsp goto done;
1479 0c06baac 2019-02-05 stsp }
1480 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
1481 0c06baac 2019-02-05 stsp free(p);
1482 0c06baac 2019-02-05 stsp } else {
1483 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1484 0c06baac 2019-02-05 stsp }
1485 0c06baac 2019-02-05 stsp if (error)
1486 66bea077 2018-08-02 stsp goto done;
1487 66bea077 2018-08-02 stsp
1488 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
1489 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
1490 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1491 404c43c4 2018-06-21 stsp if (error != NULL)
1492 66bea077 2018-08-02 stsp goto done;
1493 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1494 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
1495 404c43c4 2018-06-21 stsp if (error != NULL)
1496 66bea077 2018-08-02 stsp goto done;
1497 404c43c4 2018-06-21 stsp } else {
1498 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1499 15a94983 2018-12-23 stsp commit_id_str);
1500 404c43c4 2018-06-21 stsp if (error != NULL)
1501 66bea077 2018-08-02 stsp goto done;
1502 404c43c4 2018-06-21 stsp }
1503 404c43c4 2018-06-21 stsp
1504 66bea077 2018-08-02 stsp error = got_blame(in_repo_path, commit_id, repo, stdout);
1505 404c43c4 2018-06-21 stsp done:
1506 66bea077 2018-08-02 stsp free(in_repo_path);
1507 66bea077 2018-08-02 stsp free(repo_path);
1508 66bea077 2018-08-02 stsp free(cwd);
1509 404c43c4 2018-06-21 stsp free(commit_id);
1510 0c06baac 2019-02-05 stsp if (worktree)
1511 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
1512 ad242220 2018-09-08 stsp if (repo) {
1513 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1514 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1515 ad242220 2018-09-08 stsp if (error == NULL)
1516 ad242220 2018-09-08 stsp error = repo_error;
1517 ad242220 2018-09-08 stsp }
1518 404c43c4 2018-06-21 stsp return error;
1519 5de5890b 2018-10-18 stsp }
1520 5de5890b 2018-10-18 stsp
1521 5de5890b 2018-10-18 stsp __dead static void
1522 5de5890b 2018-10-18 stsp usage_tree(void)
1523 5de5890b 2018-10-18 stsp {
1524 c1669e2e 2019-01-09 stsp fprintf(stderr,
1525 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
1526 5de5890b 2018-10-18 stsp getprogname());
1527 5de5890b 2018-10-18 stsp exit(1);
1528 5de5890b 2018-10-18 stsp }
1529 5de5890b 2018-10-18 stsp
1530 c1669e2e 2019-01-09 stsp static void
1531 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
1532 c1669e2e 2019-01-09 stsp const char *root_path)
1533 c1669e2e 2019-01-09 stsp {
1534 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
1535 5de5890b 2018-10-18 stsp
1536 c1669e2e 2019-01-09 stsp path += strlen(root_path);
1537 c1669e2e 2019-01-09 stsp while (path[0] == '/')
1538 c1669e2e 2019-01-09 stsp path++;
1539 c1669e2e 2019-01-09 stsp
1540 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
1541 d6e648b4 2019-02-10 stsp is_root_path ? "" : "/", te->name,
1542 d6e648b4 2019-02-10 stsp S_ISDIR(te->mode) ? "/" : ((te->mode & S_IXUSR) ? "*" : ""));
1543 c1669e2e 2019-01-09 stsp }
1544 c1669e2e 2019-01-09 stsp
1545 5de5890b 2018-10-18 stsp static const struct got_error *
1546 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
1547 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
1548 c1669e2e 2019-01-09 stsp struct got_repository *repo)
1549 5de5890b 2018-10-18 stsp {
1550 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
1551 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
1552 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
1553 5de5890b 2018-10-18 stsp const struct got_tree_entries *entries;
1554 5de5890b 2018-10-18 stsp struct got_tree_entry *te;
1555 5de5890b 2018-10-18 stsp
1556 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
1557 5de5890b 2018-10-18 stsp if (err)
1558 5de5890b 2018-10-18 stsp goto done;
1559 5de5890b 2018-10-18 stsp
1560 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
1561 5de5890b 2018-10-18 stsp if (err)
1562 5de5890b 2018-10-18 stsp goto done;
1563 5de5890b 2018-10-18 stsp entries = got_object_tree_get_entries(tree);
1564 5de5890b 2018-10-18 stsp te = SIMPLEQ_FIRST(&entries->head);
1565 5de5890b 2018-10-18 stsp while (te) {
1566 5de5890b 2018-10-18 stsp char *id = NULL;
1567 84453469 2018-11-11 stsp
1568 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1569 84453469 2018-11-11 stsp break;
1570 84453469 2018-11-11 stsp
1571 5de5890b 2018-10-18 stsp if (show_ids) {
1572 5de5890b 2018-10-18 stsp char *id_str;
1573 5de5890b 2018-10-18 stsp err = got_object_id_str(&id_str, te->id);
1574 5de5890b 2018-10-18 stsp if (err)
1575 5de5890b 2018-10-18 stsp goto done;
1576 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
1577 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1578 5de5890b 2018-10-18 stsp free(id_str);
1579 5de5890b 2018-10-18 stsp goto done;
1580 5de5890b 2018-10-18 stsp }
1581 5de5890b 2018-10-18 stsp free(id_str);
1582 5de5890b 2018-10-18 stsp }
1583 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
1584 5de5890b 2018-10-18 stsp free(id);
1585 c1669e2e 2019-01-09 stsp
1586 c1669e2e 2019-01-09 stsp if (recurse && S_ISDIR(te->mode)) {
1587 c1669e2e 2019-01-09 stsp char *child_path;
1588 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
1589 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
1590 c1669e2e 2019-01-09 stsp te->name) == -1) {
1591 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1592 c1669e2e 2019-01-09 stsp goto done;
1593 c1669e2e 2019-01-09 stsp }
1594 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
1595 c1669e2e 2019-01-09 stsp root_path, repo);
1596 c1669e2e 2019-01-09 stsp free(child_path);
1597 c1669e2e 2019-01-09 stsp if (err)
1598 c1669e2e 2019-01-09 stsp goto done;
1599 c1669e2e 2019-01-09 stsp }
1600 c1669e2e 2019-01-09 stsp
1601 c1669e2e 2019-01-09 stsp te = SIMPLEQ_NEXT(te, entry);
1602 5de5890b 2018-10-18 stsp }
1603 5de5890b 2018-10-18 stsp done:
1604 5de5890b 2018-10-18 stsp if (tree)
1605 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
1606 5de5890b 2018-10-18 stsp free(tree_id);
1607 5de5890b 2018-10-18 stsp return err;
1608 404c43c4 2018-06-21 stsp }
1609 404c43c4 2018-06-21 stsp
1610 5de5890b 2018-10-18 stsp static const struct got_error *
1611 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
1612 5de5890b 2018-10-18 stsp {
1613 5de5890b 2018-10-18 stsp const struct got_error *error;
1614 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
1615 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
1616 7a2c19d6 2019-02-05 stsp const char *path;
1617 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
1618 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
1619 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
1620 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
1621 5de5890b 2018-10-18 stsp int ch;
1622 5de5890b 2018-10-18 stsp
1623 5de5890b 2018-10-18 stsp #ifndef PROFILE
1624 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1625 0f8d269b 2019-01-04 stsp NULL) == -1)
1626 5de5890b 2018-10-18 stsp err(1, "pledge");
1627 5de5890b 2018-10-18 stsp #endif
1628 5de5890b 2018-10-18 stsp
1629 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
1630 5de5890b 2018-10-18 stsp switch (ch) {
1631 5de5890b 2018-10-18 stsp case 'c':
1632 5de5890b 2018-10-18 stsp commit_id_str = optarg;
1633 5de5890b 2018-10-18 stsp break;
1634 5de5890b 2018-10-18 stsp case 'r':
1635 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
1636 5de5890b 2018-10-18 stsp if (repo_path == NULL)
1637 5de5890b 2018-10-18 stsp err(1, "-r option");
1638 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1639 5de5890b 2018-10-18 stsp break;
1640 5de5890b 2018-10-18 stsp case 'i':
1641 5de5890b 2018-10-18 stsp show_ids = 1;
1642 5de5890b 2018-10-18 stsp break;
1643 c1669e2e 2019-01-09 stsp case 'R':
1644 c1669e2e 2019-01-09 stsp recurse = 1;
1645 c1669e2e 2019-01-09 stsp break;
1646 5de5890b 2018-10-18 stsp default:
1647 2deda0b9 2019-03-07 stsp usage_tree();
1648 5de5890b 2018-10-18 stsp /* NOTREACHED */
1649 5de5890b 2018-10-18 stsp }
1650 5de5890b 2018-10-18 stsp }
1651 5de5890b 2018-10-18 stsp
1652 5de5890b 2018-10-18 stsp argc -= optind;
1653 5de5890b 2018-10-18 stsp argv += optind;
1654 5de5890b 2018-10-18 stsp
1655 5de5890b 2018-10-18 stsp if (argc == 1)
1656 5de5890b 2018-10-18 stsp path = argv[0];
1657 5de5890b 2018-10-18 stsp else if (argc > 1)
1658 5de5890b 2018-10-18 stsp usage_tree();
1659 5de5890b 2018-10-18 stsp else
1660 7a2c19d6 2019-02-05 stsp path = NULL;
1661 7a2c19d6 2019-02-05 stsp
1662 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
1663 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
1664 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1665 9bf7a39b 2019-02-05 stsp goto done;
1666 9bf7a39b 2019-02-05 stsp }
1667 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
1668 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1669 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1670 7a2c19d6 2019-02-05 stsp goto done;
1671 7a2c19d6 2019-02-05 stsp else
1672 7a2c19d6 2019-02-05 stsp error = NULL;
1673 7a2c19d6 2019-02-05 stsp if (worktree) {
1674 7a2c19d6 2019-02-05 stsp repo_path =
1675 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
1676 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
1677 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1678 7a2c19d6 2019-02-05 stsp if (error)
1679 7a2c19d6 2019-02-05 stsp goto done;
1680 7a2c19d6 2019-02-05 stsp } else {
1681 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
1682 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
1683 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1684 7a2c19d6 2019-02-05 stsp goto done;
1685 7a2c19d6 2019-02-05 stsp }
1686 5de5890b 2018-10-18 stsp }
1687 5de5890b 2018-10-18 stsp }
1688 5de5890b 2018-10-18 stsp
1689 5de5890b 2018-10-18 stsp error = got_repo_open(&repo, repo_path);
1690 5de5890b 2018-10-18 stsp if (error != NULL)
1691 c02c541e 2019-03-29 stsp goto done;
1692 c02c541e 2019-03-29 stsp
1693 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL, 0);
1694 c02c541e 2019-03-29 stsp if (error)
1695 5de5890b 2018-10-18 stsp goto done;
1696 5de5890b 2018-10-18 stsp
1697 9bf7a39b 2019-02-05 stsp if (path == NULL) {
1698 9bf7a39b 2019-02-05 stsp if (worktree) {
1699 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
1700 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
1701 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
1702 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
1703 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
1704 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1705 9bf7a39b 2019-02-05 stsp goto done;
1706 9bf7a39b 2019-02-05 stsp }
1707 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1708 9bf7a39b 2019-02-05 stsp free(p);
1709 9bf7a39b 2019-02-05 stsp if (error)
1710 9bf7a39b 2019-02-05 stsp goto done;
1711 9bf7a39b 2019-02-05 stsp } else
1712 9bf7a39b 2019-02-05 stsp path = "/";
1713 9bf7a39b 2019-02-05 stsp }
1714 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
1715 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1716 9bf7a39b 2019-02-05 stsp if (error != NULL)
1717 9bf7a39b 2019-02-05 stsp goto done;
1718 9bf7a39b 2019-02-05 stsp }
1719 5de5890b 2018-10-18 stsp
1720 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
1721 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
1722 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
1723 5de5890b 2018-10-18 stsp if (error != NULL)
1724 5de5890b 2018-10-18 stsp goto done;
1725 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1726 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
1727 5de5890b 2018-10-18 stsp if (error != NULL)
1728 5de5890b 2018-10-18 stsp goto done;
1729 5de5890b 2018-10-18 stsp } else {
1730 15a94983 2018-12-23 stsp error = got_object_resolve_id_str(&commit_id, repo,
1731 15a94983 2018-12-23 stsp commit_id_str);
1732 5de5890b 2018-10-18 stsp if (error != NULL)
1733 5de5890b 2018-10-18 stsp goto done;
1734 5de5890b 2018-10-18 stsp }
1735 5de5890b 2018-10-18 stsp
1736 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
1737 c1669e2e 2019-01-09 stsp in_repo_path, repo);
1738 5de5890b 2018-10-18 stsp done:
1739 5de5890b 2018-10-18 stsp free(in_repo_path);
1740 5de5890b 2018-10-18 stsp free(repo_path);
1741 5de5890b 2018-10-18 stsp free(cwd);
1742 5de5890b 2018-10-18 stsp free(commit_id);
1743 7a2c19d6 2019-02-05 stsp if (worktree)
1744 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
1745 5de5890b 2018-10-18 stsp if (repo) {
1746 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
1747 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
1748 5de5890b 2018-10-18 stsp if (error == NULL)
1749 5de5890b 2018-10-18 stsp error = repo_error;
1750 5de5890b 2018-10-18 stsp }
1751 5de5890b 2018-10-18 stsp return error;
1752 5de5890b 2018-10-18 stsp }
1753 5de5890b 2018-10-18 stsp
1754 6bad629b 2019-02-04 stsp __dead static void
1755 6bad629b 2019-02-04 stsp usage_status(void)
1756 6bad629b 2019-02-04 stsp {
1757 927df6b7 2019-02-10 stsp fprintf(stderr, "usage: %s status [path]\n", getprogname());
1758 6bad629b 2019-02-04 stsp exit(1);
1759 6bad629b 2019-02-04 stsp }
1760 5c860e29 2018-03-12 stsp
1761 b72f483a 2019-02-05 stsp static const struct got_error *
1762 b72f483a 2019-02-05 stsp print_status(void *arg, unsigned char status, const char *path,
1763 016a88dd 2019-05-13 stsp struct got_object_id *blob_id, struct got_object_id *commit_id)
1764 6bad629b 2019-02-04 stsp {
1765 6bad629b 2019-02-04 stsp printf("%c %s\n", status, path);
1766 b72f483a 2019-02-05 stsp return NULL;
1767 6bad629b 2019-02-04 stsp }
1768 5c860e29 2018-03-12 stsp
1769 6bad629b 2019-02-04 stsp static const struct got_error *
1770 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
1771 6bad629b 2019-02-04 stsp {
1772 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
1773 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
1774 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
1775 927df6b7 2019-02-10 stsp char *cwd = NULL, *path = NULL;
1776 6bad629b 2019-02-04 stsp int ch;
1777 5c860e29 2018-03-12 stsp
1778 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
1779 6bad629b 2019-02-04 stsp switch (ch) {
1780 5c860e29 2018-03-12 stsp default:
1781 2deda0b9 2019-03-07 stsp usage_status();
1782 6bad629b 2019-02-04 stsp /* NOTREACHED */
1783 5c860e29 2018-03-12 stsp }
1784 5c860e29 2018-03-12 stsp }
1785 5c860e29 2018-03-12 stsp
1786 6bad629b 2019-02-04 stsp argc -= optind;
1787 6bad629b 2019-02-04 stsp argv += optind;
1788 5c860e29 2018-03-12 stsp
1789 6bad629b 2019-02-04 stsp #ifndef PROFILE
1790 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1791 6bad629b 2019-02-04 stsp NULL) == -1)
1792 6bad629b 2019-02-04 stsp err(1, "pledge");
1793 f42b1b34 2018-03-12 stsp #endif
1794 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
1795 927df6b7 2019-02-10 stsp if (cwd == NULL) {
1796 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1797 927df6b7 2019-02-10 stsp goto done;
1798 927df6b7 2019-02-10 stsp }
1799 927df6b7 2019-02-10 stsp
1800 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
1801 927df6b7 2019-02-10 stsp if (error != NULL)
1802 927df6b7 2019-02-10 stsp goto done;
1803 927df6b7 2019-02-10 stsp
1804 6bad629b 2019-02-04 stsp if (argc == 0) {
1805 927df6b7 2019-02-10 stsp path = strdup("");
1806 927df6b7 2019-02-10 stsp if (path == NULL) {
1807 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1808 6bad629b 2019-02-04 stsp goto done;
1809 6bad629b 2019-02-04 stsp }
1810 6bad629b 2019-02-04 stsp } else if (argc == 1) {
1811 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree, argv[0]);
1812 927df6b7 2019-02-10 stsp if (error)
1813 6bad629b 2019-02-04 stsp goto done;
1814 6bad629b 2019-02-04 stsp } else
1815 6bad629b 2019-02-04 stsp usage_status();
1816 6bad629b 2019-02-04 stsp
1817 6bad629b 2019-02-04 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
1818 6bad629b 2019-02-04 stsp if (error != NULL)
1819 6bad629b 2019-02-04 stsp goto done;
1820 6bad629b 2019-02-04 stsp
1821 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1822 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
1823 6bad629b 2019-02-04 stsp if (error)
1824 6bad629b 2019-02-04 stsp goto done;
1825 6bad629b 2019-02-04 stsp
1826 927df6b7 2019-02-10 stsp error = got_worktree_status(worktree, path, repo, print_status, NULL,
1827 6bad629b 2019-02-04 stsp check_cancelled, NULL);
1828 6bad629b 2019-02-04 stsp done:
1829 927df6b7 2019-02-10 stsp free(cwd);
1830 927df6b7 2019-02-10 stsp free(path);
1831 d0eebce4 2019-03-11 stsp return error;
1832 d0eebce4 2019-03-11 stsp }
1833 d0eebce4 2019-03-11 stsp
1834 d0eebce4 2019-03-11 stsp __dead static void
1835 d0eebce4 2019-03-11 stsp usage_ref(void)
1836 d0eebce4 2019-03-11 stsp {
1837 d0eebce4 2019-03-11 stsp fprintf(stderr,
1838 d83d9d5c 2019-05-13 stsp "usage: %s ref [-r repository] -l | -d name | name target\n",
1839 d0eebce4 2019-03-11 stsp getprogname());
1840 d0eebce4 2019-03-11 stsp exit(1);
1841 d0eebce4 2019-03-11 stsp }
1842 d0eebce4 2019-03-11 stsp
1843 d0eebce4 2019-03-11 stsp static const struct got_error *
1844 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
1845 d0eebce4 2019-03-11 stsp {
1846 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
1847 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
1848 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
1849 d0eebce4 2019-03-11 stsp
1850 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
1851 d0eebce4 2019-03-11 stsp err = got_ref_list(&refs, repo);
1852 d0eebce4 2019-03-11 stsp if (err)
1853 d0eebce4 2019-03-11 stsp return err;
1854 d0eebce4 2019-03-11 stsp
1855 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
1856 d0eebce4 2019-03-11 stsp char *refstr;
1857 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
1858 d0eebce4 2019-03-11 stsp if (refstr == NULL)
1859 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
1860 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
1861 d0eebce4 2019-03-11 stsp free(refstr);
1862 d0eebce4 2019-03-11 stsp }
1863 d0eebce4 2019-03-11 stsp
1864 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
1865 d0eebce4 2019-03-11 stsp return NULL;
1866 d0eebce4 2019-03-11 stsp }
1867 d0eebce4 2019-03-11 stsp
1868 d0eebce4 2019-03-11 stsp static const struct got_error *
1869 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
1870 d0eebce4 2019-03-11 stsp {
1871 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1872 d0eebce4 2019-03-11 stsp struct got_reference *ref;
1873 d0eebce4 2019-03-11 stsp
1874 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
1875 d0eebce4 2019-03-11 stsp if (err)
1876 d0eebce4 2019-03-11 stsp return err;
1877 d0eebce4 2019-03-11 stsp
1878 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
1879 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1880 d0eebce4 2019-03-11 stsp return err;
1881 d0eebce4 2019-03-11 stsp }
1882 d0eebce4 2019-03-11 stsp
1883 d0eebce4 2019-03-11 stsp static const struct got_error *
1884 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
1885 d0eebce4 2019-03-11 stsp {
1886 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
1887 d0eebce4 2019-03-11 stsp struct got_object_id *id;
1888 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
1889 d0eebce4 2019-03-11 stsp
1890 d83d9d5c 2019-05-13 stsp err = got_object_resolve_id_str(&id, repo, target);
1891 d83d9d5c 2019-05-13 stsp if (err) {
1892 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
1893 d0eebce4 2019-03-11 stsp
1894 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
1895 d83d9d5c 2019-05-13 stsp return err;
1896 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
1897 d83d9d5c 2019-05-13 stsp if (err)
1898 d83d9d5c 2019-05-13 stsp return err;
1899 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
1900 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
1901 d83d9d5c 2019-05-13 stsp if (err)
1902 d83d9d5c 2019-05-13 stsp return err;
1903 d83d9d5c 2019-05-13 stsp }
1904 d83d9d5c 2019-05-13 stsp
1905 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
1906 d0eebce4 2019-03-11 stsp if (err)
1907 d0eebce4 2019-03-11 stsp goto done;
1908 d0eebce4 2019-03-11 stsp
1909 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
1910 d0eebce4 2019-03-11 stsp done:
1911 d0eebce4 2019-03-11 stsp if (ref)
1912 d0eebce4 2019-03-11 stsp got_ref_close(ref);
1913 d0eebce4 2019-03-11 stsp free(id);
1914 d0eebce4 2019-03-11 stsp return err;
1915 d0eebce4 2019-03-11 stsp }
1916 d0eebce4 2019-03-11 stsp
1917 d0eebce4 2019-03-11 stsp static const struct got_error *
1918 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
1919 d0eebce4 2019-03-11 stsp {
1920 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
1921 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
1922 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
1923 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
1924 d0eebce4 2019-03-11 stsp int ch, do_list = 0;
1925 d0eebce4 2019-03-11 stsp const char *delref = NULL;
1926 d0eebce4 2019-03-11 stsp
1927 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
1928 d0eebce4 2019-03-11 stsp while ((ch = getopt(argc, argv, "d:r:l")) != -1) {
1929 d0eebce4 2019-03-11 stsp switch (ch) {
1930 d0eebce4 2019-03-11 stsp case 'd':
1931 d0eebce4 2019-03-11 stsp delref = optarg;
1932 d0eebce4 2019-03-11 stsp break;
1933 d0eebce4 2019-03-11 stsp case 'r':
1934 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
1935 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1936 d0eebce4 2019-03-11 stsp err(1, "-r option");
1937 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1938 d0eebce4 2019-03-11 stsp break;
1939 d0eebce4 2019-03-11 stsp case 'l':
1940 d0eebce4 2019-03-11 stsp do_list = 1;
1941 d0eebce4 2019-03-11 stsp break;
1942 d0eebce4 2019-03-11 stsp default:
1943 d0eebce4 2019-03-11 stsp usage_ref();
1944 d0eebce4 2019-03-11 stsp /* NOTREACHED */
1945 d0eebce4 2019-03-11 stsp }
1946 d0eebce4 2019-03-11 stsp }
1947 d0eebce4 2019-03-11 stsp
1948 d0eebce4 2019-03-11 stsp if (do_list && delref)
1949 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
1950 d0eebce4 2019-03-11 stsp
1951 d0eebce4 2019-03-11 stsp argc -= optind;
1952 d0eebce4 2019-03-11 stsp argv += optind;
1953 d0eebce4 2019-03-11 stsp
1954 d0eebce4 2019-03-11 stsp if (do_list || delref) {
1955 d0eebce4 2019-03-11 stsp if (argc > 0)
1956 d0eebce4 2019-03-11 stsp usage_ref();
1957 d0eebce4 2019-03-11 stsp } else if (argc != 2)
1958 d0eebce4 2019-03-11 stsp usage_ref();
1959 d0eebce4 2019-03-11 stsp
1960 d0eebce4 2019-03-11 stsp #ifndef PROFILE
1961 e0b57350 2019-03-12 stsp if (do_list) {
1962 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
1963 e0b57350 2019-03-12 stsp NULL) == -1)
1964 e0b57350 2019-03-12 stsp err(1, "pledge");
1965 e0b57350 2019-03-12 stsp } else {
1966 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
1967 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
1968 e0b57350 2019-03-12 stsp err(1, "pledge");
1969 e0b57350 2019-03-12 stsp }
1970 d0eebce4 2019-03-11 stsp #endif
1971 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
1972 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
1973 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1974 d0eebce4 2019-03-11 stsp goto done;
1975 d0eebce4 2019-03-11 stsp }
1976 d0eebce4 2019-03-11 stsp
1977 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1978 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
1979 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1980 d0eebce4 2019-03-11 stsp goto done;
1981 d0eebce4 2019-03-11 stsp else
1982 d0eebce4 2019-03-11 stsp error = NULL;
1983 d0eebce4 2019-03-11 stsp if (worktree) {
1984 d0eebce4 2019-03-11 stsp repo_path =
1985 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
1986 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
1987 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1988 d0eebce4 2019-03-11 stsp if (error)
1989 d0eebce4 2019-03-11 stsp goto done;
1990 d0eebce4 2019-03-11 stsp } else {
1991 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
1992 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
1993 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1994 d0eebce4 2019-03-11 stsp goto done;
1995 d0eebce4 2019-03-11 stsp }
1996 d0eebce4 2019-03-11 stsp }
1997 d0eebce4 2019-03-11 stsp }
1998 d0eebce4 2019-03-11 stsp
1999 d0eebce4 2019-03-11 stsp error = got_repo_open(&repo, repo_path);
2000 d0eebce4 2019-03-11 stsp if (error != NULL)
2001 d0eebce4 2019-03-11 stsp goto done;
2002 d0eebce4 2019-03-11 stsp
2003 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
2004 314a6357 2019-05-13 stsp worktree ? got_worktree_get_root_path(worktree) : NULL, 0);
2005 c02c541e 2019-03-29 stsp if (error)
2006 c02c541e 2019-03-29 stsp goto done;
2007 c02c541e 2019-03-29 stsp
2008 d0eebce4 2019-03-11 stsp if (do_list)
2009 d0eebce4 2019-03-11 stsp error = list_refs(repo);
2010 d0eebce4 2019-03-11 stsp else if (delref)
2011 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
2012 d0eebce4 2019-03-11 stsp else
2013 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
2014 d0eebce4 2019-03-11 stsp done:
2015 d0eebce4 2019-03-11 stsp if (repo)
2016 d0eebce4 2019-03-11 stsp got_repo_close(repo);
2017 d0eebce4 2019-03-11 stsp if (worktree)
2018 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
2019 d0eebce4 2019-03-11 stsp free(cwd);
2020 d0eebce4 2019-03-11 stsp free(repo_path);
2021 d00136be 2019-03-26 stsp return error;
2022 d00136be 2019-03-26 stsp }
2023 d00136be 2019-03-26 stsp
2024 d00136be 2019-03-26 stsp __dead static void
2025 d00136be 2019-03-26 stsp usage_add(void)
2026 d00136be 2019-03-26 stsp {
2027 fbb7e5c7 2019-05-11 stsp fprintf(stderr, "usage: %s add file-path ...\n", getprogname());
2028 d00136be 2019-03-26 stsp exit(1);
2029 d00136be 2019-03-26 stsp }
2030 d00136be 2019-03-26 stsp
2031 d00136be 2019-03-26 stsp static const struct got_error *
2032 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
2033 d00136be 2019-03-26 stsp {
2034 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
2035 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
2036 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
2037 1dd54920 2019-05-11 stsp char *cwd = NULL;
2038 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
2039 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
2040 723c305c 2019-05-11 jcs int ch, x;
2041 1dd54920 2019-05-11 stsp
2042 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
2043 d00136be 2019-03-26 stsp
2044 d00136be 2019-03-26 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2045 d00136be 2019-03-26 stsp switch (ch) {
2046 d00136be 2019-03-26 stsp default:
2047 d00136be 2019-03-26 stsp usage_add();
2048 d00136be 2019-03-26 stsp /* NOTREACHED */
2049 d00136be 2019-03-26 stsp }
2050 d00136be 2019-03-26 stsp }
2051 d00136be 2019-03-26 stsp
2052 d00136be 2019-03-26 stsp argc -= optind;
2053 d00136be 2019-03-26 stsp argv += optind;
2054 d00136be 2019-03-26 stsp
2055 723c305c 2019-05-11 jcs if (argc < 1)
2056 d00136be 2019-03-26 stsp usage_add();
2057 d00136be 2019-03-26 stsp
2058 723c305c 2019-05-11 jcs /* make sure each file exists before doing anything halfway */
2059 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2060 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2061 723c305c 2019-05-11 jcs if (path == NULL) {
2062 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2063 723c305c 2019-05-11 jcs goto done;
2064 723c305c 2019-05-11 jcs }
2065 1dd54920 2019-05-11 stsp free(path);
2066 d00136be 2019-03-26 stsp }
2067 d00136be 2019-03-26 stsp
2068 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
2069 d00136be 2019-03-26 stsp if (cwd == NULL) {
2070 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2071 d00136be 2019-03-26 stsp goto done;
2072 d00136be 2019-03-26 stsp }
2073 723c305c 2019-05-11 jcs
2074 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2075 d00136be 2019-03-26 stsp if (error)
2076 d00136be 2019-03-26 stsp goto done;
2077 d00136be 2019-03-26 stsp
2078 031a5338 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2079 031a5338 2019-03-26 stsp if (error != NULL)
2080 031a5338 2019-03-26 stsp goto done;
2081 031a5338 2019-03-26 stsp
2082 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2083 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2084 d00136be 2019-03-26 stsp if (error)
2085 d00136be 2019-03-26 stsp goto done;
2086 d00136be 2019-03-26 stsp
2087 723c305c 2019-05-11 jcs for (x = 0; x < argc; x++) {
2088 1dd54920 2019-05-11 stsp char *path = realpath(argv[x], NULL);
2089 723c305c 2019-05-11 jcs if (path == NULL) {
2090 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[x]);
2091 723c305c 2019-05-11 jcs goto done;
2092 723c305c 2019-05-11 jcs }
2093 723c305c 2019-05-11 jcs
2094 723c305c 2019-05-11 jcs got_path_strip_trailing_slashes(path);
2095 1dd54920 2019-05-11 stsp error = got_pathlist_insert(&pe, &paths, path, NULL);
2096 1dd54920 2019-05-11 stsp if (error) {
2097 1dd54920 2019-05-11 stsp free(path);
2098 723c305c 2019-05-11 jcs goto done;
2099 1dd54920 2019-05-11 stsp }
2100 723c305c 2019-05-11 jcs }
2101 1dd54920 2019-05-11 stsp error = got_worktree_schedule_add(worktree, &paths, print_status,
2102 1dd54920 2019-05-11 stsp NULL, repo);
2103 d00136be 2019-03-26 stsp done:
2104 031a5338 2019-03-26 stsp if (repo)
2105 031a5338 2019-03-26 stsp got_repo_close(repo);
2106 d00136be 2019-03-26 stsp if (worktree)
2107 d00136be 2019-03-26 stsp got_worktree_close(worktree);
2108 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
2109 1dd54920 2019-05-11 stsp free((char *)pe->path);
2110 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
2111 2ec1f75b 2019-03-26 stsp free(cwd);
2112 2ec1f75b 2019-03-26 stsp return error;
2113 2ec1f75b 2019-03-26 stsp }
2114 2ec1f75b 2019-03-26 stsp
2115 2ec1f75b 2019-03-26 stsp __dead static void
2116 2ec1f75b 2019-03-26 stsp usage_rm(void)
2117 2ec1f75b 2019-03-26 stsp {
2118 2ec1f75b 2019-03-26 stsp fprintf(stderr, "usage: %s rm [-f] file-path\n", getprogname());
2119 2ec1f75b 2019-03-26 stsp exit(1);
2120 2ec1f75b 2019-03-26 stsp }
2121 2ec1f75b 2019-03-26 stsp
2122 2ec1f75b 2019-03-26 stsp static const struct got_error *
2123 2ec1f75b 2019-03-26 stsp cmd_rm(int argc, char *argv[])
2124 2ec1f75b 2019-03-26 stsp {
2125 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
2126 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
2127 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
2128 2ec1f75b 2019-03-26 stsp char *cwd = NULL, *path = NULL;
2129 2ec1f75b 2019-03-26 stsp int ch, delete_local_mods = 0;
2130 2ec1f75b 2019-03-26 stsp
2131 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
2132 2ec1f75b 2019-03-26 stsp switch (ch) {
2133 2ec1f75b 2019-03-26 stsp case 'f':
2134 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
2135 2ec1f75b 2019-03-26 stsp break;
2136 2ec1f75b 2019-03-26 stsp default:
2137 2ec1f75b 2019-03-26 stsp usage_add();
2138 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
2139 2ec1f75b 2019-03-26 stsp }
2140 2ec1f75b 2019-03-26 stsp }
2141 2ec1f75b 2019-03-26 stsp
2142 2ec1f75b 2019-03-26 stsp argc -= optind;
2143 2ec1f75b 2019-03-26 stsp argv += optind;
2144 2ec1f75b 2019-03-26 stsp
2145 2ec1f75b 2019-03-26 stsp if (argc != 1)
2146 2ec1f75b 2019-03-26 stsp usage_rm();
2147 2ec1f75b 2019-03-26 stsp
2148 2ec1f75b 2019-03-26 stsp path = realpath(argv[0], NULL);
2149 2ec1f75b 2019-03-26 stsp if (path == NULL) {
2150 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2151 2ec1f75b 2019-03-26 stsp goto done;
2152 2ec1f75b 2019-03-26 stsp }
2153 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2154 2ec1f75b 2019-03-26 stsp
2155 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
2156 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
2157 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2158 2ec1f75b 2019-03-26 stsp goto done;
2159 2ec1f75b 2019-03-26 stsp }
2160 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
2161 2ec1f75b 2019-03-26 stsp if (error)
2162 2ec1f75b 2019-03-26 stsp goto done;
2163 2ec1f75b 2019-03-26 stsp
2164 2ec1f75b 2019-03-26 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2165 2af4a041 2019-05-11 jcs if (error)
2166 2ec1f75b 2019-03-26 stsp goto done;
2167 2ec1f75b 2019-03-26 stsp
2168 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2169 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2170 2ec1f75b 2019-03-26 stsp if (error)
2171 2ec1f75b 2019-03-26 stsp goto done;
2172 2ec1f75b 2019-03-26 stsp
2173 2ec1f75b 2019-03-26 stsp error = got_worktree_schedule_delete(worktree, path, delete_local_mods,
2174 2ec1f75b 2019-03-26 stsp print_status, NULL, repo);
2175 a129376b 2019-03-28 stsp if (error)
2176 a129376b 2019-03-28 stsp goto done;
2177 a129376b 2019-03-28 stsp done:
2178 a129376b 2019-03-28 stsp if (repo)
2179 a129376b 2019-03-28 stsp got_repo_close(repo);
2180 a129376b 2019-03-28 stsp if (worktree)
2181 a129376b 2019-03-28 stsp got_worktree_close(worktree);
2182 a129376b 2019-03-28 stsp free(path);
2183 a129376b 2019-03-28 stsp free(cwd);
2184 a129376b 2019-03-28 stsp return error;
2185 a129376b 2019-03-28 stsp }
2186 a129376b 2019-03-28 stsp
2187 a129376b 2019-03-28 stsp __dead static void
2188 a129376b 2019-03-28 stsp usage_revert(void)
2189 a129376b 2019-03-28 stsp {
2190 a129376b 2019-03-28 stsp fprintf(stderr, "usage: %s revert file-path\n", getprogname());
2191 a129376b 2019-03-28 stsp exit(1);
2192 a129376b 2019-03-28 stsp }
2193 a129376b 2019-03-28 stsp
2194 a129376b 2019-03-28 stsp static void
2195 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
2196 a129376b 2019-03-28 stsp {
2197 a129376b 2019-03-28 stsp while (path[0] == '/')
2198 a129376b 2019-03-28 stsp path++;
2199 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
2200 a129376b 2019-03-28 stsp }
2201 a129376b 2019-03-28 stsp
2202 a129376b 2019-03-28 stsp static const struct got_error *
2203 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
2204 a129376b 2019-03-28 stsp {
2205 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
2206 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
2207 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
2208 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
2209 a129376b 2019-03-28 stsp int ch;
2210 a129376b 2019-03-28 stsp
2211 a129376b 2019-03-28 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2212 a129376b 2019-03-28 stsp switch (ch) {
2213 a129376b 2019-03-28 stsp default:
2214 a129376b 2019-03-28 stsp usage_revert();
2215 a129376b 2019-03-28 stsp /* NOTREACHED */
2216 a129376b 2019-03-28 stsp }
2217 a129376b 2019-03-28 stsp }
2218 a129376b 2019-03-28 stsp
2219 a129376b 2019-03-28 stsp argc -= optind;
2220 a129376b 2019-03-28 stsp argv += optind;
2221 a129376b 2019-03-28 stsp
2222 a129376b 2019-03-28 stsp if (argc != 1)
2223 a129376b 2019-03-28 stsp usage_revert();
2224 a129376b 2019-03-28 stsp
2225 a129376b 2019-03-28 stsp path = realpath(argv[0], NULL);
2226 a129376b 2019-03-28 stsp if (path == NULL) {
2227 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2228 a129376b 2019-03-28 stsp goto done;
2229 a129376b 2019-03-28 stsp }
2230 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2231 a129376b 2019-03-28 stsp
2232 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
2233 a129376b 2019-03-28 stsp if (cwd == NULL) {
2234 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2235 a129376b 2019-03-28 stsp goto done;
2236 a129376b 2019-03-28 stsp }
2237 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
2238 2ec1f75b 2019-03-26 stsp if (error)
2239 2ec1f75b 2019-03-26 stsp goto done;
2240 a129376b 2019-03-28 stsp
2241 a129376b 2019-03-28 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2242 a129376b 2019-03-28 stsp if (error != NULL)
2243 a129376b 2019-03-28 stsp goto done;
2244 a129376b 2019-03-28 stsp
2245 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2246 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2247 a129376b 2019-03-28 stsp if (error)
2248 a129376b 2019-03-28 stsp goto done;
2249 a129376b 2019-03-28 stsp
2250 a129376b 2019-03-28 stsp error = got_worktree_revert(worktree, path,
2251 a129376b 2019-03-28 stsp revert_progress, NULL, repo);
2252 a129376b 2019-03-28 stsp if (error)
2253 a129376b 2019-03-28 stsp goto done;
2254 2ec1f75b 2019-03-26 stsp done:
2255 2ec1f75b 2019-03-26 stsp if (repo)
2256 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
2257 2ec1f75b 2019-03-26 stsp if (worktree)
2258 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
2259 2ec1f75b 2019-03-26 stsp free(path);
2260 d00136be 2019-03-26 stsp free(cwd);
2261 6bad629b 2019-02-04 stsp return error;
2262 c4296144 2019-05-09 stsp }
2263 c4296144 2019-05-09 stsp
2264 c4296144 2019-05-09 stsp __dead static void
2265 c4296144 2019-05-09 stsp usage_commit(void)
2266 c4296144 2019-05-09 stsp {
2267 c6fc0acd 2019-05-09 stsp fprintf(stderr, "usage: %s commit [-m msg] file-path\n", getprogname());
2268 c4296144 2019-05-09 stsp exit(1);
2269 33ad4cbe 2019-05-12 jcs }
2270 33ad4cbe 2019-05-12 jcs
2271 33ad4cbe 2019-05-12 jcs int
2272 e2ba3d07 2019-05-13 stsp spawn_editor(const char *editor, const char *file)
2273 33ad4cbe 2019-05-12 jcs {
2274 33ad4cbe 2019-05-12 jcs pid_t pid;
2275 33ad4cbe 2019-05-12 jcs sig_t sighup, sigint, sigquit;
2276 33ad4cbe 2019-05-12 jcs int st = -1;
2277 33ad4cbe 2019-05-12 jcs
2278 33ad4cbe 2019-05-12 jcs sighup = signal(SIGHUP, SIG_IGN);
2279 33ad4cbe 2019-05-12 jcs sigint = signal(SIGINT, SIG_IGN);
2280 33ad4cbe 2019-05-12 jcs sigquit = signal(SIGQUIT, SIG_IGN);
2281 33ad4cbe 2019-05-12 jcs
2282 33ad4cbe 2019-05-12 jcs switch (pid = fork()) {
2283 33ad4cbe 2019-05-12 jcs case -1:
2284 33ad4cbe 2019-05-12 jcs goto doneediting;
2285 33ad4cbe 2019-05-12 jcs case 0:
2286 e2ba3d07 2019-05-13 stsp execl(editor, editor, file, (char *)NULL);
2287 33ad4cbe 2019-05-12 jcs _exit(127);
2288 33ad4cbe 2019-05-12 jcs }
2289 33ad4cbe 2019-05-12 jcs
2290 33ad4cbe 2019-05-12 jcs while (waitpid(pid, &st, 0) == -1)
2291 33ad4cbe 2019-05-12 jcs if (errno != EINTR)
2292 33ad4cbe 2019-05-12 jcs break;
2293 33ad4cbe 2019-05-12 jcs
2294 33ad4cbe 2019-05-12 jcs doneediting:
2295 33ad4cbe 2019-05-12 jcs (void)signal(SIGHUP, sighup);
2296 33ad4cbe 2019-05-12 jcs (void)signal(SIGINT, sigint);
2297 33ad4cbe 2019-05-12 jcs (void)signal(SIGQUIT, sigquit);
2298 33ad4cbe 2019-05-12 jcs
2299 33ad4cbe 2019-05-12 jcs if (!WIFEXITED(st)) {
2300 33ad4cbe 2019-05-12 jcs errno = EINTR;
2301 33ad4cbe 2019-05-12 jcs return -1;
2302 33ad4cbe 2019-05-12 jcs }
2303 33ad4cbe 2019-05-12 jcs
2304 33ad4cbe 2019-05-12 jcs return WEXITSTATUS(st);
2305 33ad4cbe 2019-05-12 jcs }
2306 33ad4cbe 2019-05-12 jcs
2307 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
2308 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
2309 e2ba3d07 2019-05-13 stsp const char *editor;
2310 e0870e44 2019-05-13 stsp const char *worktree_path;
2311 314a6357 2019-05-13 stsp const char *repo_path;
2312 e0870e44 2019-05-13 stsp char *logmsg_path;
2313 e2ba3d07 2019-05-13 stsp
2314 e2ba3d07 2019-05-13 stsp };
2315 e0870e44 2019-05-13 stsp
2316 33ad4cbe 2019-05-12 jcs static const struct got_error *
2317 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
2318 33ad4cbe 2019-05-12 jcs void *arg)
2319 33ad4cbe 2019-05-12 jcs {
2320 e0870e44 2019-05-13 stsp const char *initial_content = "\n# changes to be committed:\n";
2321 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
2322 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
2323 e0870e44 2019-05-13 stsp char *template = NULL;
2324 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
2325 33ad4cbe 2019-05-12 jcs char buf[1024];
2326 33ad4cbe 2019-05-12 jcs struct stat st, st2;
2327 33ad4cbe 2019-05-12 jcs FILE *fp;
2328 33ad4cbe 2019-05-12 jcs size_t len;
2329 e0870e44 2019-05-13 stsp int fd, content_changed = 0;
2330 33ad4cbe 2019-05-12 jcs
2331 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
2332 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
2333 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
2334 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
2335 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
2336 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
2337 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
2338 33ad4cbe 2019-05-12 jcs return NULL;
2339 33ad4cbe 2019-05-12 jcs }
2340 33ad4cbe 2019-05-12 jcs
2341 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
2342 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
2343 e0870e44 2019-05-13 stsp
2344 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
2345 793c30b5 2019-05-13 stsp if (err)
2346 e0870e44 2019-05-13 stsp goto done;
2347 33ad4cbe 2019-05-12 jcs
2348 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
2349 33ad4cbe 2019-05-12 jcs
2350 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
2351 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
2352 33ad4cbe 2019-05-12 jcs dprintf(fd, "# %c %s\n", ct->status, pe->path);
2353 33ad4cbe 2019-05-12 jcs }
2354 33ad4cbe 2019-05-12 jcs close(fd);
2355 33ad4cbe 2019-05-12 jcs
2356 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st) == -1) {
2357 638f9024 2019-05-13 stsp err = got_error_from_errno2("stat", a->logmsg_path);
2358 33ad4cbe 2019-05-12 jcs goto done;
2359 33ad4cbe 2019-05-12 jcs }
2360 33ad4cbe 2019-05-12 jcs
2361 e0870e44 2019-05-13 stsp if (spawn_editor(a->editor, a->logmsg_path) == -1) {
2362 638f9024 2019-05-13 stsp err = got_error_from_errno("failed spawning editor");
2363 33ad4cbe 2019-05-12 jcs goto done;
2364 33ad4cbe 2019-05-12 jcs }
2365 33ad4cbe 2019-05-12 jcs
2366 e0870e44 2019-05-13 stsp if (stat(a->logmsg_path, &st2) == -1) {
2367 638f9024 2019-05-13 stsp err = got_error_from_errno("stat");
2368 33ad4cbe 2019-05-12 jcs goto done;
2369 33ad4cbe 2019-05-12 jcs }
2370 33ad4cbe 2019-05-12 jcs
2371 33ad4cbe 2019-05-12 jcs if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size) {
2372 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2373 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2374 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2375 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2376 33ad4cbe 2019-05-12 jcs "no changes made to commit message, aborting");
2377 33ad4cbe 2019-05-12 jcs goto done;
2378 33ad4cbe 2019-05-12 jcs }
2379 33ad4cbe 2019-05-12 jcs
2380 33ad4cbe 2019-05-12 jcs /* remove comments */
2381 33ad4cbe 2019-05-12 jcs *logmsg = malloc(st2.st_size + 1);
2382 fcde04d9 2019-05-13 stsp if (*logmsg == NULL) {
2383 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
2384 fcde04d9 2019-05-13 stsp goto done;
2385 fcde04d9 2019-05-13 stsp }
2386 33ad4cbe 2019-05-12 jcs len = 0;
2387 33ad4cbe 2019-05-12 jcs
2388 e0870e44 2019-05-13 stsp fp = fopen(a->logmsg_path, "r");
2389 33ad4cbe 2019-05-12 jcs while (fgets(buf, sizeof(buf), fp) != NULL) {
2390 e0870e44 2019-05-13 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
2391 e0870e44 2019-05-13 stsp content_changed = 1;
2392 33ad4cbe 2019-05-12 jcs if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
2393 33ad4cbe 2019-05-12 jcs continue;
2394 33ad4cbe 2019-05-12 jcs len = strlcat(*logmsg, buf, st2.st_size);
2395 33ad4cbe 2019-05-12 jcs }
2396 33ad4cbe 2019-05-12 jcs fclose(fp);
2397 33ad4cbe 2019-05-12 jcs
2398 33ad4cbe 2019-05-12 jcs while (len > 0 && (*logmsg)[len - 1] == '\n') {
2399 33ad4cbe 2019-05-12 jcs (*logmsg)[len - 1] = '\0';
2400 33ad4cbe 2019-05-12 jcs len--;
2401 33ad4cbe 2019-05-12 jcs }
2402 33ad4cbe 2019-05-12 jcs
2403 e0870e44 2019-05-13 stsp if (len == 0 || !content_changed) {
2404 e0870e44 2019-05-13 stsp unlink(a->logmsg_path);
2405 e0870e44 2019-05-13 stsp free(a->logmsg_path);
2406 e0870e44 2019-05-13 stsp a->logmsg_path = NULL;
2407 33ad4cbe 2019-05-12 jcs err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
2408 33ad4cbe 2019-05-12 jcs "commit message cannot be empty, aborting");
2409 33ad4cbe 2019-05-12 jcs goto done;
2410 33ad4cbe 2019-05-12 jcs }
2411 33ad4cbe 2019-05-12 jcs done:
2412 e0870e44 2019-05-13 stsp free(template);
2413 314a6357 2019-05-13 stsp
2414 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
2415 314a6357 2019-05-13 stsp if (err == NULL)
2416 314a6357 2019-05-13 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path, 0);
2417 33ad4cbe 2019-05-12 jcs return err;
2418 6bad629b 2019-02-04 stsp }
2419 c4296144 2019-05-09 stsp
2420 c4296144 2019-05-09 stsp static const struct got_error *
2421 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
2422 c4296144 2019-05-09 stsp {
2423 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
2424 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
2425 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
2426 c4296144 2019-05-09 stsp char *cwd = NULL, *path = NULL, *id_str = NULL;
2427 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
2428 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
2429 35bd8fed 2019-05-09 stsp const char *got_author = getenv("GOT_AUTHOR");
2430 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg cl_arg;
2431 e2ba3d07 2019-05-13 stsp char *editor = NULL;
2432 c4296144 2019-05-09 stsp int ch;
2433 c4296144 2019-05-09 stsp
2434 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
2435 c4296144 2019-05-09 stsp switch (ch) {
2436 c4296144 2019-05-09 stsp case 'm':
2437 c4296144 2019-05-09 stsp logmsg = optarg;
2438 c4296144 2019-05-09 stsp break;
2439 c4296144 2019-05-09 stsp default:
2440 c4296144 2019-05-09 stsp usage_commit();
2441 c4296144 2019-05-09 stsp /* NOTREACHED */
2442 c4296144 2019-05-09 stsp }
2443 c4296144 2019-05-09 stsp }
2444 c4296144 2019-05-09 stsp
2445 c4296144 2019-05-09 stsp argc -= optind;
2446 c4296144 2019-05-09 stsp argv += optind;
2447 c4296144 2019-05-09 stsp
2448 c4296144 2019-05-09 stsp if (argc == 1) {
2449 c4296144 2019-05-09 stsp path = realpath(argv[0], NULL);
2450 c4296144 2019-05-09 stsp if (path == NULL) {
2451 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
2452 c4296144 2019-05-09 stsp goto done;
2453 c4296144 2019-05-09 stsp }
2454 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(path);
2455 c4296144 2019-05-09 stsp } else if (argc != 0)
2456 c4296144 2019-05-09 stsp usage_commit();
2457 c4296144 2019-05-09 stsp
2458 35bd8fed 2019-05-09 stsp if (got_author == NULL) {
2459 35bd8fed 2019-05-09 stsp /* TODO: Look current user up in password database */
2460 35bd8fed 2019-05-09 stsp error = got_error(GOT_ERR_COMMIT_NO_AUTHOR);
2461 35bd8fed 2019-05-09 stsp goto done;
2462 35bd8fed 2019-05-09 stsp }
2463 c4296144 2019-05-09 stsp
2464 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
2465 c4296144 2019-05-09 stsp if (cwd == NULL) {
2466 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2467 c4296144 2019-05-09 stsp goto done;
2468 c4296144 2019-05-09 stsp }
2469 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
2470 c4296144 2019-05-09 stsp if (error)
2471 c4296144 2019-05-09 stsp goto done;
2472 c4296144 2019-05-09 stsp
2473 c4296144 2019-05-09 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree));
2474 c4296144 2019-05-09 stsp if (error != NULL)
2475 c4296144 2019-05-09 stsp goto done;
2476 c4296144 2019-05-09 stsp
2477 314a6357 2019-05-13 stsp /*
2478 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
2479 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
2480 314a6357 2019-05-13 stsp */
2481 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
2482 314a6357 2019-05-13 stsp error = get_editor(&editor);
2483 314a6357 2019-05-13 stsp else
2484 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
2485 314a6357 2019-05-13 stsp got_worktree_get_root_path(worktree), 0);
2486 c4296144 2019-05-09 stsp if (error)
2487 c4296144 2019-05-09 stsp goto done;
2488 c4296144 2019-05-09 stsp
2489 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
2490 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
2491 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
2492 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
2493 e0870e44 2019-05-13 stsp cl_arg.logmsg_path = NULL;
2494 35bd8fed 2019-05-09 stsp error = got_worktree_commit(&id, worktree, path, got_author, NULL,
2495 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
2496 e0870e44 2019-05-13 stsp if (error) {
2497 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2498 e0870e44 2019-05-13 stsp fprintf(stderr, "%s: log message preserved in %s\n",
2499 e0870e44 2019-05-13 stsp getprogname(), cl_arg.logmsg_path);
2500 c4296144 2019-05-09 stsp goto done;
2501 e0870e44 2019-05-13 stsp }
2502 c4296144 2019-05-09 stsp
2503 e0870e44 2019-05-13 stsp if (cl_arg.logmsg_path)
2504 e0870e44 2019-05-13 stsp unlink(cl_arg.logmsg_path);
2505 e0870e44 2019-05-13 stsp
2506 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
2507 c4296144 2019-05-09 stsp if (error)
2508 c4296144 2019-05-09 stsp goto done;
2509 c4296144 2019-05-09 stsp printf("created commit %s\n", id_str);
2510 c4296144 2019-05-09 stsp done:
2511 c4296144 2019-05-09 stsp if (repo)
2512 c4296144 2019-05-09 stsp got_repo_close(repo);
2513 c4296144 2019-05-09 stsp if (worktree)
2514 c4296144 2019-05-09 stsp got_worktree_close(worktree);
2515 c4296144 2019-05-09 stsp free(path);
2516 c4296144 2019-05-09 stsp free(cwd);
2517 c4296144 2019-05-09 stsp free(id_str);
2518 e2ba3d07 2019-05-13 stsp free(editor);
2519 c4296144 2019-05-09 stsp return error;
2520 c4296144 2019-05-09 stsp }