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 c0768b0f 2018-06-10 stsp #include <sys/types.h>
20 5de5890b 2018-10-18 stsp #include <sys/stat.h>
21 3c45a30a 2019-05-12 jcs #include <sys/param.h>
22 33ad4cbe 2019-05-12 jcs #include <sys/wait.h>
23 f42b1b34 2018-03-12 stsp
24 5c860e29 2018-03-12 stsp #include <err.h>
25 5c860e29 2018-03-12 stsp #include <errno.h>
26 12ce7a6c 2019-08-12 stsp #include <limits.h>
27 5c860e29 2018-03-12 stsp #include <locale.h>
28 818c7501 2019-07-11 stsp #include <ctype.h>
29 99437157 2018-11-11 stsp #include <signal.h>
30 5c860e29 2018-03-12 stsp #include <stdio.h>
31 5c860e29 2018-03-12 stsp #include <stdlib.h>
32 5c860e29 2018-03-12 stsp #include <string.h>
33 5c860e29 2018-03-12 stsp #include <unistd.h>
34 c09a553d 2018-03-12 stsp #include <libgen.h>
35 c0768b0f 2018-06-10 stsp #include <time.h>
36 33ad4cbe 2019-05-12 jcs #include <paths.h>
37 5c860e29 2018-03-12 stsp
38 53ccebc2 2019-07-30 stsp #include "got_version.h"
39 f42b1b34 2018-03-12 stsp #include "got_error.h"
40 f42b1b34 2018-03-12 stsp #include "got_object.h"
41 5261c201 2018-04-01 stsp #include "got_reference.h"
42 f42b1b34 2018-03-12 stsp #include "got_repository.h"
43 1dd54920 2019-05-11 stsp #include "got_path.h"
44 e6209546 2019-08-22 stsp #include "got_cancel.h"
45 c09a553d 2018-03-12 stsp #include "got_worktree.h"
46 79109fed 2018-03-27 stsp #include "got_diff.h"
47 372ccdbb 2018-06-10 stsp #include "got_commit_graph.h"
48 404c43c4 2018-06-21 stsp #include "got_blame.h"
49 63219cd2 2019-01-04 stsp #include "got_privsep.h"
50 793c30b5 2019-05-13 stsp #include "got_opentemp.h"
51 5c860e29 2018-03-12 stsp
52 5c860e29 2018-03-12 stsp #ifndef nitems
53 5c860e29 2018-03-12 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
54 5c860e29 2018-03-12 stsp #endif
55 99437157 2018-11-11 stsp
56 99437157 2018-11-11 stsp static volatile sig_atomic_t sigint_received;
57 99437157 2018-11-11 stsp static volatile sig_atomic_t sigpipe_received;
58 99437157 2018-11-11 stsp
59 99437157 2018-11-11 stsp static void
60 99437157 2018-11-11 stsp catch_sigint(int signo)
61 99437157 2018-11-11 stsp {
62 99437157 2018-11-11 stsp sigint_received = 1;
63 99437157 2018-11-11 stsp }
64 99437157 2018-11-11 stsp
65 99437157 2018-11-11 stsp static void
66 99437157 2018-11-11 stsp catch_sigpipe(int signo)
67 99437157 2018-11-11 stsp {
68 99437157 2018-11-11 stsp sigpipe_received = 1;
69 99437157 2018-11-11 stsp }
70 5c860e29 2018-03-12 stsp
71 99437157 2018-11-11 stsp
72 8cfb4057 2019-07-09 stsp struct got_cmd {
73 5c860e29 2018-03-12 stsp const char *cmd_name;
74 d7d4f210 2018-03-12 stsp const struct got_error *(*cmd_main)(int, char *[]);
75 1b6b95a8 2018-03-12 stsp void (*cmd_usage)(void);
76 97b3a7be 2019-07-09 stsp const char *cmd_alias;
77 5c860e29 2018-03-12 stsp };
78 5c860e29 2018-03-12 stsp
79 ce5b7c56 2019-07-09 stsp __dead static void usage(int);
80 2c7829a4 2019-06-17 stsp __dead static void usage_init(void);
81 3ce1b845 2019-07-15 stsp __dead static void usage_import(void);
82 4ed7e80c 2018-05-20 stsp __dead static void usage_checkout(void);
83 507dc3bb 2018-12-29 stsp __dead static void usage_update(void);
84 4ed7e80c 2018-05-20 stsp __dead static void usage_log(void);
85 4ed7e80c 2018-05-20 stsp __dead static void usage_diff(void);
86 404c43c4 2018-06-21 stsp __dead static void usage_blame(void);
87 5de5890b 2018-10-18 stsp __dead static void usage_tree(void);
88 6bad629b 2019-02-04 stsp __dead static void usage_status(void);
89 d0eebce4 2019-03-11 stsp __dead static void usage_ref(void);
90 4e759de4 2019-06-26 stsp __dead static void usage_branch(void);
91 8e7bd50a 2019-08-22 stsp __dead static void usage_tag(void);
92 d00136be 2019-03-26 stsp __dead static void usage_add(void);
93 648e4ef7 2019-07-09 stsp __dead static void usage_remove(void);
94 a129376b 2019-03-28 stsp __dead static void usage_revert(void);
95 c4296144 2019-05-09 stsp __dead static void usage_commit(void);
96 234035bc 2019-06-01 stsp __dead static void usage_cherrypick(void);
97 5ef14e63 2019-06-02 stsp __dead static void usage_backout(void);
98 818c7501 2019-07-11 stsp __dead static void usage_rebase(void);
99 0ebf8283 2019-07-24 stsp __dead static void usage_histedit(void);
100 2822a352 2019-10-15 stsp __dead static void usage_integrate(void);
101 715dc77e 2019-08-03 stsp __dead static void usage_stage(void);
102 ad493afc 2019-08-03 stsp __dead static void usage_unstage(void);
103 01073a5d 2019-08-22 stsp __dead static void usage_cat(void);
104 5c860e29 2018-03-12 stsp
105 2c7829a4 2019-06-17 stsp static const struct got_error* cmd_init(int, char *[]);
106 3ce1b845 2019-07-15 stsp static const struct got_error* cmd_import(int, char *[]);
107 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_checkout(int, char *[]);
108 507dc3bb 2018-12-29 stsp static const struct got_error* cmd_update(int, char *[]);
109 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_log(int, char *[]);
110 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_diff(int, char *[]);
111 404c43c4 2018-06-21 stsp static const struct got_error* cmd_blame(int, char *[]);
112 5de5890b 2018-10-18 stsp static const struct got_error* cmd_tree(int, char *[]);
113 4ed7e80c 2018-05-20 stsp static const struct got_error* cmd_status(int, char *[]);
114 d0eebce4 2019-03-11 stsp static const struct got_error* cmd_ref(int, char *[]);
115 4e759de4 2019-06-26 stsp static const struct got_error* cmd_branch(int, char *[]);
116 8e7bd50a 2019-08-22 stsp static const struct got_error* cmd_tag(int, char *[]);
117 d00136be 2019-03-26 stsp static const struct got_error* cmd_add(int, char *[]);
118 648e4ef7 2019-07-09 stsp static const struct got_error* cmd_remove(int, char *[]);
119 a129376b 2019-03-28 stsp static const struct got_error* cmd_revert(int, char *[]);
120 c4296144 2019-05-09 stsp static const struct got_error* cmd_commit(int, char *[]);
121 234035bc 2019-06-01 stsp static const struct got_error* cmd_cherrypick(int, char *[]);
122 5ef14e63 2019-06-02 stsp static const struct got_error* cmd_backout(int, char *[]);
123 818c7501 2019-07-11 stsp static const struct got_error* cmd_rebase(int, char *[]);
124 0ebf8283 2019-07-24 stsp static const struct got_error* cmd_histedit(int, char *[]);
125 2822a352 2019-10-15 stsp static const struct got_error* cmd_integrate(int, char *[]);
126 715dc77e 2019-08-03 stsp static const struct got_error* cmd_stage(int, char *[]);
127 ad493afc 2019-08-03 stsp static const struct got_error* cmd_unstage(int, char *[]);
128 01073a5d 2019-08-22 stsp static const struct got_error* cmd_cat(int, char *[]);
129 5c860e29 2018-03-12 stsp
130 8cfb4057 2019-07-09 stsp static struct got_cmd got_commands[] = {
131 bc26cce8 2019-08-04 stsp { "init", cmd_init, usage_init, "in" },
132 bc26cce8 2019-08-04 stsp { "import", cmd_import, usage_import, "im" },
133 97b3a7be 2019-07-09 stsp { "checkout", cmd_checkout, usage_checkout, "co" },
134 97b3a7be 2019-07-09 stsp { "update", cmd_update, usage_update, "up" },
135 97b3a7be 2019-07-09 stsp { "log", cmd_log, usage_log, "" },
136 bc26cce8 2019-08-04 stsp { "diff", cmd_diff, usage_diff, "di" },
137 bc26cce8 2019-08-04 stsp { "blame", cmd_blame, usage_blame, "bl" },
138 bc26cce8 2019-08-04 stsp { "tree", cmd_tree, usage_tree, "tr" },
139 97b3a7be 2019-07-09 stsp { "status", cmd_status, usage_status, "st" },
140 97b3a7be 2019-07-09 stsp { "ref", cmd_ref, usage_ref, "" },
141 97b3a7be 2019-07-09 stsp { "branch", cmd_branch, usage_branch, "br" },
142 8e7bd50a 2019-08-22 stsp { "tag", cmd_tag, usage_tag, "" },
143 97b3a7be 2019-07-09 stsp { "add", cmd_add, usage_add, "" },
144 648e4ef7 2019-07-09 stsp { "remove", cmd_remove, usage_remove, "rm" },
145 97b3a7be 2019-07-09 stsp { "revert", cmd_revert, usage_revert, "rv" },
146 97b3a7be 2019-07-09 stsp { "commit", cmd_commit, usage_commit, "ci" },
147 016477fd 2019-07-09 stsp { "cherrypick", cmd_cherrypick, usage_cherrypick, "cy" },
148 97b3a7be 2019-07-09 stsp { "backout", cmd_backout, usage_backout, "bo" },
149 818c7501 2019-07-11 stsp { "rebase", cmd_rebase, usage_rebase, "rb" },
150 0ebf8283 2019-07-24 stsp { "histedit", cmd_histedit, usage_histedit, "he" },
151 2822a352 2019-10-15 stsp { "integrate", cmd_integrate, usage_integrate,"ig" },
152 715dc77e 2019-08-03 stsp { "stage", cmd_stage, usage_stage, "sg" },
153 ad493afc 2019-08-03 stsp { "unstage", cmd_unstage, usage_unstage, "ug" },
154 01073a5d 2019-08-22 stsp { "cat", cmd_cat, usage_cat, "" },
155 5c860e29 2018-03-12 stsp };
156 ce5b7c56 2019-07-09 stsp
157 ce5b7c56 2019-07-09 stsp static void
158 ce5b7c56 2019-07-09 stsp list_commands(void)
159 ce5b7c56 2019-07-09 stsp {
160 ce5b7c56 2019-07-09 stsp int i;
161 ce5b7c56 2019-07-09 stsp
162 ce5b7c56 2019-07-09 stsp fprintf(stderr, "commands:");
163 ce5b7c56 2019-07-09 stsp for (i = 0; i < nitems(got_commands); i++) {
164 ce5b7c56 2019-07-09 stsp struct got_cmd *cmd = &got_commands[i];
165 ce5b7c56 2019-07-09 stsp fprintf(stderr, " %s", cmd->cmd_name);
166 ce5b7c56 2019-07-09 stsp }
167 ce5b7c56 2019-07-09 stsp fputc('\n', stderr);
168 ce5b7c56 2019-07-09 stsp }
169 5c860e29 2018-03-12 stsp
170 5c860e29 2018-03-12 stsp int
171 5c860e29 2018-03-12 stsp main(int argc, char *argv[])
172 5c860e29 2018-03-12 stsp {
173 8cfb4057 2019-07-09 stsp struct got_cmd *cmd;
174 5c860e29 2018-03-12 stsp unsigned int i;
175 5c860e29 2018-03-12 stsp int ch;
176 53ccebc2 2019-07-30 stsp int hflag = 0, Vflag = 0;
177 5c860e29 2018-03-12 stsp
178 289e3cbf 2019-02-04 stsp setlocale(LC_CTYPE, "");
179 5c860e29 2018-03-12 stsp
180 53ccebc2 2019-07-30 stsp while ((ch = getopt(argc, argv, "hV")) != -1) {
181 5c860e29 2018-03-12 stsp switch (ch) {
182 1b6b95a8 2018-03-12 stsp case 'h':
183 1b6b95a8 2018-03-12 stsp hflag = 1;
184 53ccebc2 2019-07-30 stsp break;
185 53ccebc2 2019-07-30 stsp case 'V':
186 53ccebc2 2019-07-30 stsp Vflag = 1;
187 1b6b95a8 2018-03-12 stsp break;
188 5c860e29 2018-03-12 stsp default:
189 ce5b7c56 2019-07-09 stsp usage(hflag);
190 5c860e29 2018-03-12 stsp /* NOTREACHED */
191 5c860e29 2018-03-12 stsp }
192 5c860e29 2018-03-12 stsp }
193 5c860e29 2018-03-12 stsp
194 5c860e29 2018-03-12 stsp argc -= optind;
195 5c860e29 2018-03-12 stsp argv += optind;
196 1e70621d 2018-03-27 stsp optind = 0;
197 53ccebc2 2019-07-30 stsp
198 53ccebc2 2019-07-30 stsp if (Vflag) {
199 53ccebc2 2019-07-30 stsp got_version_print_str();
200 53ccebc2 2019-07-30 stsp return 1;
201 53ccebc2 2019-07-30 stsp }
202 5c860e29 2018-03-12 stsp
203 5c860e29 2018-03-12 stsp if (argc <= 0)
204 ce5b7c56 2019-07-09 stsp usage(hflag);
205 5c860e29 2018-03-12 stsp
206 99437157 2018-11-11 stsp signal(SIGINT, catch_sigint);
207 99437157 2018-11-11 stsp signal(SIGPIPE, catch_sigpipe);
208 99437157 2018-11-11 stsp
209 5c860e29 2018-03-12 stsp for (i = 0; i < nitems(got_commands); i++) {
210 d7d4f210 2018-03-12 stsp const struct got_error *error;
211 d7d4f210 2018-03-12 stsp
212 5c860e29 2018-03-12 stsp cmd = &got_commands[i];
213 5c860e29 2018-03-12 stsp
214 97b3a7be 2019-07-09 stsp if (strcmp(cmd->cmd_name, argv[0]) != 0 &&
215 97b3a7be 2019-07-09 stsp strcmp(cmd->cmd_alias, argv[0]) != 0)
216 5c860e29 2018-03-12 stsp continue;
217 5c860e29 2018-03-12 stsp
218 1b6b95a8 2018-03-12 stsp if (hflag)
219 1b6b95a8 2018-03-12 stsp got_commands[i].cmd_usage();
220 1b6b95a8 2018-03-12 stsp
221 d7d4f210 2018-03-12 stsp error = got_commands[i].cmd_main(argc, argv);
222 f8afbdc8 2019-11-08 stsp if (error && error->code != GOT_ERR_CANCELLED &&
223 f8afbdc8 2019-11-08 stsp error->code != GOT_ERR_PRIVSEP_EXIT &&
224 f8afbdc8 2019-11-08 stsp !(sigpipe_received &&
225 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EPIPE) &&
226 70015d7a 2019-11-08 stsp !(sigint_received &&
227 70015d7a 2019-11-08 stsp error->code == GOT_ERR_ERRNO && errno == EINTR)) {
228 d7d4f210 2018-03-12 stsp fprintf(stderr, "%s: %s\n", getprogname(), error->msg);
229 d7d4f210 2018-03-12 stsp return 1;
230 d7d4f210 2018-03-12 stsp }
231 d7d4f210 2018-03-12 stsp
232 d7d4f210 2018-03-12 stsp return 0;
233 5c860e29 2018-03-12 stsp }
234 5c860e29 2018-03-12 stsp
235 20ecf764 2018-03-12 stsp fprintf(stderr, "%s: unknown command '%s'\n", getprogname(), argv[0]);
236 ce5b7c56 2019-07-09 stsp list_commands();
237 5c860e29 2018-03-12 stsp return 1;
238 5c860e29 2018-03-12 stsp }
239 5c860e29 2018-03-12 stsp
240 4ed7e80c 2018-05-20 stsp __dead static void
241 ce5b7c56 2019-07-09 stsp usage(int hflag)
242 5c860e29 2018-03-12 stsp {
243 53ccebc2 2019-07-30 stsp fprintf(stderr, "usage: %s [-h] [-V] command [arg ...]\n",
244 53ccebc2 2019-07-30 stsp getprogname());
245 ce5b7c56 2019-07-09 stsp if (hflag)
246 ce5b7c56 2019-07-09 stsp list_commands();
247 5c860e29 2018-03-12 stsp exit(1);
248 5c860e29 2018-03-12 stsp }
249 5c860e29 2018-03-12 stsp
250 0266afb7 2019-01-04 stsp static const struct got_error *
251 0ee7065d 2019-05-13 stsp get_editor(char **abspath)
252 e2ba3d07 2019-05-13 stsp {
253 0ee7065d 2019-05-13 stsp const struct got_error *err = NULL;
254 e2ba3d07 2019-05-13 stsp const char *editor;
255 8920fa04 2019-08-18 stsp
256 8920fa04 2019-08-18 stsp *abspath = NULL;
257 e2ba3d07 2019-05-13 stsp
258 e2ba3d07 2019-05-13 stsp editor = getenv("VISUAL");
259 e2ba3d07 2019-05-13 stsp if (editor == NULL)
260 e2ba3d07 2019-05-13 stsp editor = getenv("EDITOR");
261 e2ba3d07 2019-05-13 stsp
262 0ee7065d 2019-05-13 stsp if (editor) {
263 0ee7065d 2019-05-13 stsp err = got_path_find_prog(abspath, editor);
264 0ee7065d 2019-05-13 stsp if (err)
265 0ee7065d 2019-05-13 stsp return err;
266 0ee7065d 2019-05-13 stsp }
267 e2ba3d07 2019-05-13 stsp
268 0ee7065d 2019-05-13 stsp if (*abspath == NULL) {
269 0ee7065d 2019-05-13 stsp *abspath = strdup("/bin/ed");
270 0ee7065d 2019-05-13 stsp if (*abspath == NULL)
271 0ee7065d 2019-05-13 stsp return got_error_from_errno("strdup");
272 0ee7065d 2019-05-13 stsp }
273 0ee7065d 2019-05-13 stsp
274 e2ba3d07 2019-05-13 stsp return NULL;
275 e2ba3d07 2019-05-13 stsp }
276 e2ba3d07 2019-05-13 stsp
277 e2ba3d07 2019-05-13 stsp static const struct got_error *
278 d0eebce4 2019-03-11 stsp apply_unveil(const char *repo_path, int repo_read_only,
279 c530dc23 2019-07-23 stsp const char *worktree_path)
280 0266afb7 2019-01-04 stsp {
281 163ce85a 2019-05-13 stsp const struct got_error *err;
282 0266afb7 2019-01-04 stsp
283 37c06ea4 2019-07-15 stsp #ifdef PROFILE
284 37c06ea4 2019-07-15 stsp if (unveil("gmon.out", "rwc") != 0)
285 37c06ea4 2019-07-15 stsp return got_error_from_errno2("unveil", "gmon.out");
286 37c06ea4 2019-07-15 stsp #endif
287 d0eebce4 2019-03-11 stsp if (repo_path && unveil(repo_path, repo_read_only ? "r" : "rwc") != 0)
288 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", repo_path);
289 0266afb7 2019-01-04 stsp
290 0266afb7 2019-01-04 stsp if (worktree_path && unveil(worktree_path, "rwc") != 0)
291 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", worktree_path);
292 0266afb7 2019-01-04 stsp
293 f12d0dbe 2019-01-04 stsp if (unveil("/tmp", "rwc") != 0)
294 638f9024 2019-05-13 stsp return got_error_from_errno2("unveil", "/tmp");
295 0266afb7 2019-01-04 stsp
296 163ce85a 2019-05-13 stsp err = got_privsep_unveil_exec_helpers();
297 163ce85a 2019-05-13 stsp if (err != NULL)
298 163ce85a 2019-05-13 stsp return err;
299 0266afb7 2019-01-04 stsp
300 0266afb7 2019-01-04 stsp if (unveil(NULL, NULL) != 0)
301 638f9024 2019-05-13 stsp return got_error_from_errno("unveil");
302 0266afb7 2019-01-04 stsp
303 0266afb7 2019-01-04 stsp return NULL;
304 2c7829a4 2019-06-17 stsp }
305 2c7829a4 2019-06-17 stsp
306 2c7829a4 2019-06-17 stsp __dead static void
307 2c7829a4 2019-06-17 stsp usage_init(void)
308 2c7829a4 2019-06-17 stsp {
309 09ea71ba 2019-07-27 stsp fprintf(stderr, "usage: %s init repository-path\n", getprogname());
310 2c7829a4 2019-06-17 stsp exit(1);
311 2c7829a4 2019-06-17 stsp }
312 2c7829a4 2019-06-17 stsp
313 2c7829a4 2019-06-17 stsp static const struct got_error *
314 2c7829a4 2019-06-17 stsp cmd_init(int argc, char *argv[])
315 2c7829a4 2019-06-17 stsp {
316 2c7829a4 2019-06-17 stsp const struct got_error *error = NULL;
317 2c7829a4 2019-06-17 stsp char *repo_path = NULL;
318 2c7829a4 2019-06-17 stsp int ch;
319 2c7829a4 2019-06-17 stsp
320 2c7829a4 2019-06-17 stsp while ((ch = getopt(argc, argv, "")) != -1) {
321 2c7829a4 2019-06-17 stsp switch (ch) {
322 2c7829a4 2019-06-17 stsp default:
323 2c7829a4 2019-06-17 stsp usage_init();
324 2c7829a4 2019-06-17 stsp /* NOTREACHED */
325 2c7829a4 2019-06-17 stsp }
326 2c7829a4 2019-06-17 stsp }
327 2c7829a4 2019-06-17 stsp
328 2c7829a4 2019-06-17 stsp argc -= optind;
329 2c7829a4 2019-06-17 stsp argv += optind;
330 2c7829a4 2019-06-17 stsp
331 2c7829a4 2019-06-17 stsp #ifndef PROFILE
332 2c7829a4 2019-06-17 stsp if (pledge("stdio rpath wpath cpath unveil", NULL) == -1)
333 2c7829a4 2019-06-17 stsp err(1, "pledge");
334 2c7829a4 2019-06-17 stsp #endif
335 2c7829a4 2019-06-17 stsp if (argc != 1)
336 bc20e173 2019-06-17 stsp usage_init();
337 2c7829a4 2019-06-17 stsp
338 2c7829a4 2019-06-17 stsp repo_path = strdup(argv[0]);
339 2c7829a4 2019-06-17 stsp if (repo_path == NULL)
340 2c7829a4 2019-06-17 stsp return got_error_from_errno("strdup");
341 2c7829a4 2019-06-17 stsp
342 2c7829a4 2019-06-17 stsp got_path_strip_trailing_slashes(repo_path);
343 2c7829a4 2019-06-17 stsp
344 2c7829a4 2019-06-17 stsp error = got_path_mkdir(repo_path);
345 2c7829a4 2019-06-17 stsp if (error &&
346 2c7829a4 2019-06-17 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
347 2c7829a4 2019-06-17 stsp goto done;
348 2c7829a4 2019-06-17 stsp
349 c530dc23 2019-07-23 stsp error = apply_unveil(repo_path, 0, NULL);
350 2c7829a4 2019-06-17 stsp if (error)
351 2c7829a4 2019-06-17 stsp goto done;
352 2c7829a4 2019-06-17 stsp
353 2c7829a4 2019-06-17 stsp error = got_repo_init(repo_path);
354 2c7829a4 2019-06-17 stsp if (error != NULL)
355 3ce1b845 2019-07-15 stsp goto done;
356 3ce1b845 2019-07-15 stsp
357 3ce1b845 2019-07-15 stsp done:
358 3ce1b845 2019-07-15 stsp free(repo_path);
359 3ce1b845 2019-07-15 stsp return error;
360 3ce1b845 2019-07-15 stsp }
361 3ce1b845 2019-07-15 stsp
362 3ce1b845 2019-07-15 stsp __dead static void
363 3ce1b845 2019-07-15 stsp usage_import(void)
364 3ce1b845 2019-07-15 stsp {
365 3ce1b845 2019-07-15 stsp fprintf(stderr, "usage: %s import [-b branch] [-m message] "
366 3ce1b845 2019-07-15 stsp "[-r repository-path] [-I pattern] path\n", getprogname());
367 3ce1b845 2019-07-15 stsp exit(1);
368 3ce1b845 2019-07-15 stsp }
369 3ce1b845 2019-07-15 stsp
370 3ce1b845 2019-07-15 stsp int
371 3ce1b845 2019-07-15 stsp spawn_editor(const char *editor, const char *file)
372 3ce1b845 2019-07-15 stsp {
373 3ce1b845 2019-07-15 stsp pid_t pid;
374 3ce1b845 2019-07-15 stsp sig_t sighup, sigint, sigquit;
375 3ce1b845 2019-07-15 stsp int st = -1;
376 3ce1b845 2019-07-15 stsp
377 3ce1b845 2019-07-15 stsp sighup = signal(SIGHUP, SIG_IGN);
378 3ce1b845 2019-07-15 stsp sigint = signal(SIGINT, SIG_IGN);
379 3ce1b845 2019-07-15 stsp sigquit = signal(SIGQUIT, SIG_IGN);
380 3ce1b845 2019-07-15 stsp
381 3ce1b845 2019-07-15 stsp switch (pid = fork()) {
382 3ce1b845 2019-07-15 stsp case -1:
383 3ce1b845 2019-07-15 stsp goto doneediting;
384 3ce1b845 2019-07-15 stsp case 0:
385 3ce1b845 2019-07-15 stsp execl(editor, editor, file, (char *)NULL);
386 3ce1b845 2019-07-15 stsp _exit(127);
387 3ce1b845 2019-07-15 stsp }
388 3ce1b845 2019-07-15 stsp
389 3ce1b845 2019-07-15 stsp while (waitpid(pid, &st, 0) == -1)
390 3ce1b845 2019-07-15 stsp if (errno != EINTR)
391 3ce1b845 2019-07-15 stsp break;
392 3ce1b845 2019-07-15 stsp
393 3ce1b845 2019-07-15 stsp doneediting:
394 3ce1b845 2019-07-15 stsp (void)signal(SIGHUP, sighup);
395 3ce1b845 2019-07-15 stsp (void)signal(SIGINT, sigint);
396 3ce1b845 2019-07-15 stsp (void)signal(SIGQUIT, sigquit);
397 3ce1b845 2019-07-15 stsp
398 3ce1b845 2019-07-15 stsp if (!WIFEXITED(st)) {
399 3ce1b845 2019-07-15 stsp errno = EINTR;
400 3ce1b845 2019-07-15 stsp return -1;
401 3ce1b845 2019-07-15 stsp }
402 3ce1b845 2019-07-15 stsp
403 3ce1b845 2019-07-15 stsp return WEXITSTATUS(st);
404 3ce1b845 2019-07-15 stsp }
405 3ce1b845 2019-07-15 stsp
406 3ce1b845 2019-07-15 stsp static const struct got_error *
407 3ce1b845 2019-07-15 stsp edit_logmsg(char **logmsg, const char *editor, const char *logmsg_path,
408 3ce1b845 2019-07-15 stsp const char *initial_content)
409 3ce1b845 2019-07-15 stsp {
410 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
411 3ce1b845 2019-07-15 stsp char buf[1024];
412 3ce1b845 2019-07-15 stsp struct stat st, st2;
413 3ce1b845 2019-07-15 stsp FILE *fp;
414 3ce1b845 2019-07-15 stsp int content_changed = 0;
415 3ce1b845 2019-07-15 stsp size_t len;
416 3ce1b845 2019-07-15 stsp
417 3ce1b845 2019-07-15 stsp *logmsg = NULL;
418 3ce1b845 2019-07-15 stsp
419 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st) == -1)
420 3ce1b845 2019-07-15 stsp return got_error_from_errno2("stat", logmsg_path);
421 3ce1b845 2019-07-15 stsp
422 3ce1b845 2019-07-15 stsp if (spawn_editor(editor, logmsg_path) == -1)
423 3ce1b845 2019-07-15 stsp return got_error_from_errno("failed spawning editor");
424 3ce1b845 2019-07-15 stsp
425 3ce1b845 2019-07-15 stsp if (stat(logmsg_path, &st2) == -1)
426 3ce1b845 2019-07-15 stsp return got_error_from_errno("stat");
427 3ce1b845 2019-07-15 stsp
428 3ce1b845 2019-07-15 stsp if (st.st_mtime == st2.st_mtime && st.st_size == st2.st_size)
429 3ce1b845 2019-07-15 stsp return got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
430 3ce1b845 2019-07-15 stsp "no changes made to commit message, aborting");
431 3ce1b845 2019-07-15 stsp
432 3ce1b845 2019-07-15 stsp *logmsg = malloc(st2.st_size + 1);
433 3ce1b845 2019-07-15 stsp if (*logmsg == NULL)
434 3ce1b845 2019-07-15 stsp return got_error_from_errno("malloc");
435 3ce1b845 2019-07-15 stsp (*logmsg)[0] = '\0';
436 3ce1b845 2019-07-15 stsp len = 0;
437 3ce1b845 2019-07-15 stsp
438 3ce1b845 2019-07-15 stsp fp = fopen(logmsg_path, "r");
439 3ce1b845 2019-07-15 stsp if (fp == NULL) {
440 3ce1b845 2019-07-15 stsp err = got_error_from_errno("fopen");
441 3ce1b845 2019-07-15 stsp goto done;
442 3ce1b845 2019-07-15 stsp }
443 3ce1b845 2019-07-15 stsp while (fgets(buf, sizeof(buf), fp) != NULL) {
444 3ce1b845 2019-07-15 stsp if (!content_changed && strcmp(buf, initial_content) != 0)
445 3ce1b845 2019-07-15 stsp content_changed = 1;
446 3ce1b845 2019-07-15 stsp if (buf[0] == '#' || (len == 0 && buf[0] == '\n'))
447 3ce1b845 2019-07-15 stsp continue; /* remove comments and leading empty lines */
448 3ce1b845 2019-07-15 stsp len = strlcat(*logmsg, buf, st2.st_size);
449 3ce1b845 2019-07-15 stsp }
450 3ce1b845 2019-07-15 stsp fclose(fp);
451 3ce1b845 2019-07-15 stsp
452 3ce1b845 2019-07-15 stsp while (len > 0 && (*logmsg)[len - 1] == '\n') {
453 3ce1b845 2019-07-15 stsp (*logmsg)[len - 1] = '\0';
454 3ce1b845 2019-07-15 stsp len--;
455 3ce1b845 2019-07-15 stsp }
456 3ce1b845 2019-07-15 stsp
457 3ce1b845 2019-07-15 stsp if (len == 0 || !content_changed)
458 3ce1b845 2019-07-15 stsp err = got_error_msg(GOT_ERR_COMMIT_MSG_EMPTY,
459 3ce1b845 2019-07-15 stsp "commit message cannot be empty, aborting");
460 3ce1b845 2019-07-15 stsp done:
461 3ce1b845 2019-07-15 stsp if (err) {
462 3ce1b845 2019-07-15 stsp free(*logmsg);
463 3ce1b845 2019-07-15 stsp *logmsg = NULL;
464 3ce1b845 2019-07-15 stsp }
465 3ce1b845 2019-07-15 stsp return err;
466 3ce1b845 2019-07-15 stsp }
467 3ce1b845 2019-07-15 stsp
468 3ce1b845 2019-07-15 stsp static const struct got_error *
469 ef293bdd 2019-10-21 stsp collect_import_msg(char **logmsg, char **logmsg_path, const char *editor,
470 ef293bdd 2019-10-21 stsp const char *path_dir, const char *branch_name)
471 3ce1b845 2019-07-15 stsp {
472 ef293bdd 2019-10-21 stsp char *initial_content = NULL;
473 3ce1b845 2019-07-15 stsp const struct got_error *err = NULL;
474 3ce1b845 2019-07-15 stsp int fd;
475 3ce1b845 2019-07-15 stsp
476 3ce1b845 2019-07-15 stsp if (asprintf(&initial_content,
477 3ce1b845 2019-07-15 stsp "\n# %s to be imported to branch %s\n", path_dir,
478 3ce1b845 2019-07-15 stsp branch_name) == -1)
479 3ce1b845 2019-07-15 stsp return got_error_from_errno("asprintf");
480 3ce1b845 2019-07-15 stsp
481 ef293bdd 2019-10-21 stsp err = got_opentemp_named_fd(logmsg_path, &fd, "/tmp/got-importmsg");
482 3ce1b845 2019-07-15 stsp if (err)
483 3ce1b845 2019-07-15 stsp goto done;
484 3ce1b845 2019-07-15 stsp
485 3ce1b845 2019-07-15 stsp dprintf(fd, initial_content);
486 3ce1b845 2019-07-15 stsp close(fd);
487 3ce1b845 2019-07-15 stsp
488 ef293bdd 2019-10-21 stsp err = edit_logmsg(logmsg, editor, *logmsg_path, initial_content);
489 3ce1b845 2019-07-15 stsp done:
490 3ce1b845 2019-07-15 stsp free(initial_content);
491 3ce1b845 2019-07-15 stsp return err;
492 3ce1b845 2019-07-15 stsp }
493 3ce1b845 2019-07-15 stsp
494 3ce1b845 2019-07-15 stsp static const struct got_error *
495 3ce1b845 2019-07-15 stsp import_progress(void *arg, const char *path)
496 3ce1b845 2019-07-15 stsp {
497 3ce1b845 2019-07-15 stsp printf("A %s\n", path);
498 3ce1b845 2019-07-15 stsp return NULL;
499 3ce1b845 2019-07-15 stsp }
500 3ce1b845 2019-07-15 stsp
501 3ce1b845 2019-07-15 stsp static const struct got_error *
502 aba9c984 2019-09-08 stsp get_author(char **author, struct got_repository *repo)
503 84792843 2019-08-09 stsp {
504 aba9c984 2019-09-08 stsp const struct got_error *err = NULL;
505 c9956ddf 2019-09-08 stsp const char *got_author, *name, *email;
506 84792843 2019-08-09 stsp
507 84792843 2019-08-09 stsp *author = NULL;
508 aba9c984 2019-09-08 stsp
509 c9956ddf 2019-09-08 stsp name = got_repo_get_gitconfig_author_name(repo);
510 c9956ddf 2019-09-08 stsp email = got_repo_get_gitconfig_author_email(repo);
511 c9956ddf 2019-09-08 stsp if (name && email) {
512 c9956ddf 2019-09-08 stsp if (asprintf(author, "%s <%s>", name, email) == -1)
513 aba9c984 2019-09-08 stsp return got_error_from_errno("asprintf");
514 aba9c984 2019-09-08 stsp return NULL;
515 aba9c984 2019-09-08 stsp }
516 84792843 2019-08-09 stsp
517 84792843 2019-08-09 stsp got_author = getenv("GOT_AUTHOR");
518 84792843 2019-08-09 stsp if (got_author == NULL) {
519 c9956ddf 2019-09-08 stsp name = got_repo_get_global_gitconfig_author_name(repo);
520 c9956ddf 2019-09-08 stsp email = got_repo_get_global_gitconfig_author_email(repo);
521 c9956ddf 2019-09-08 stsp if (name && email) {
522 c9956ddf 2019-09-08 stsp if (asprintf(author, "%s <%s>", name, email) == -1)
523 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
524 c9956ddf 2019-09-08 stsp return NULL;
525 c9956ddf 2019-09-08 stsp }
526 84792843 2019-08-09 stsp /* TODO: Look up user in password database? */
527 84792843 2019-08-09 stsp return got_error(GOT_ERR_COMMIT_NO_AUTHOR);
528 84792843 2019-08-09 stsp }
529 84792843 2019-08-09 stsp
530 aba9c984 2019-09-08 stsp *author = strdup(got_author);
531 aba9c984 2019-09-08 stsp if (*author == NULL)
532 aba9c984 2019-09-08 stsp return got_error_from_errno("strdup");
533 84792843 2019-08-09 stsp
534 84792843 2019-08-09 stsp /*
535 84792843 2019-08-09 stsp * Really dumb email address check; we're only doing this to
536 84792843 2019-08-09 stsp * avoid git's object parser breaking on commits we create.
537 84792843 2019-08-09 stsp */
538 84792843 2019-08-09 stsp while (*got_author && *got_author != '<')
539 84792843 2019-08-09 stsp got_author++;
540 aba9c984 2019-09-08 stsp if (*got_author != '<') {
541 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
542 aba9c984 2019-09-08 stsp goto done;
543 aba9c984 2019-09-08 stsp }
544 84792843 2019-08-09 stsp while (*got_author && *got_author != '@')
545 84792843 2019-08-09 stsp got_author++;
546 aba9c984 2019-09-08 stsp if (*got_author != '@') {
547 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
548 aba9c984 2019-09-08 stsp goto done;
549 aba9c984 2019-09-08 stsp }
550 84792843 2019-08-09 stsp while (*got_author && *got_author != '>')
551 84792843 2019-08-09 stsp got_author++;
552 84792843 2019-08-09 stsp if (*got_author != '>')
553 aba9c984 2019-09-08 stsp err = got_error(GOT_ERR_COMMIT_NO_EMAIL);
554 aba9c984 2019-09-08 stsp done:
555 aba9c984 2019-09-08 stsp if (err) {
556 aba9c984 2019-09-08 stsp free(*author);
557 aba9c984 2019-09-08 stsp *author = NULL;
558 aba9c984 2019-09-08 stsp }
559 aba9c984 2019-09-08 stsp return err;
560 c9956ddf 2019-09-08 stsp }
561 c9956ddf 2019-09-08 stsp
562 c9956ddf 2019-09-08 stsp static const struct got_error *
563 c9956ddf 2019-09-08 stsp get_gitconfig_path(char **gitconfig_path)
564 c9956ddf 2019-09-08 stsp {
565 c9956ddf 2019-09-08 stsp const char *homedir = getenv("HOME");
566 c9956ddf 2019-09-08 stsp
567 c9956ddf 2019-09-08 stsp *gitconfig_path = NULL;
568 c9956ddf 2019-09-08 stsp if (homedir) {
569 c9956ddf 2019-09-08 stsp if (asprintf(gitconfig_path, "%s/.gitconfig", homedir) == -1)
570 c9956ddf 2019-09-08 stsp return got_error_from_errno("asprintf");
571 c9956ddf 2019-09-08 stsp
572 c9956ddf 2019-09-08 stsp }
573 c9956ddf 2019-09-08 stsp return NULL;
574 84792843 2019-08-09 stsp }
575 84792843 2019-08-09 stsp
576 84792843 2019-08-09 stsp static const struct got_error *
577 3ce1b845 2019-07-15 stsp cmd_import(int argc, char *argv[])
578 3ce1b845 2019-07-15 stsp {
579 3ce1b845 2019-07-15 stsp const struct got_error *error = NULL;
580 3ce1b845 2019-07-15 stsp char *path_dir = NULL, *repo_path = NULL, *logmsg = NULL;
581 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
582 5d67f40d 2019-11-08 stsp const char *branch_name = "main";
583 ef293bdd 2019-10-21 stsp char *refname = NULL, *id_str = NULL, *logmsg_path = NULL;
584 3ce1b845 2019-07-15 stsp struct got_repository *repo = NULL;
585 3ce1b845 2019-07-15 stsp struct got_reference *branch_ref = NULL, *head_ref = NULL;
586 3ce1b845 2019-07-15 stsp struct got_object_id *new_commit_id = NULL;
587 3ce1b845 2019-07-15 stsp int ch;
588 3ce1b845 2019-07-15 stsp struct got_pathlist_head ignores;
589 3ce1b845 2019-07-15 stsp struct got_pathlist_entry *pe;
590 ef293bdd 2019-10-21 stsp int preserve_logmsg = 0;
591 3ce1b845 2019-07-15 stsp
592 3ce1b845 2019-07-15 stsp TAILQ_INIT(&ignores);
593 3ce1b845 2019-07-15 stsp
594 3ce1b845 2019-07-15 stsp while ((ch = getopt(argc, argv, "b:m:r:I:")) != -1) {
595 3ce1b845 2019-07-15 stsp switch (ch) {
596 3ce1b845 2019-07-15 stsp case 'b':
597 3ce1b845 2019-07-15 stsp branch_name = optarg;
598 3ce1b845 2019-07-15 stsp break;
599 3ce1b845 2019-07-15 stsp case 'm':
600 3ce1b845 2019-07-15 stsp logmsg = strdup(optarg);
601 3ce1b845 2019-07-15 stsp if (logmsg == NULL) {
602 3ce1b845 2019-07-15 stsp error = got_error_from_errno("strdup");
603 3ce1b845 2019-07-15 stsp goto done;
604 3ce1b845 2019-07-15 stsp }
605 3ce1b845 2019-07-15 stsp break;
606 3ce1b845 2019-07-15 stsp case 'r':
607 3ce1b845 2019-07-15 stsp repo_path = realpath(optarg, NULL);
608 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
609 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath",
610 9ba1d308 2019-10-21 stsp optarg);
611 3ce1b845 2019-07-15 stsp goto done;
612 3ce1b845 2019-07-15 stsp }
613 3ce1b845 2019-07-15 stsp break;
614 3ce1b845 2019-07-15 stsp case 'I':
615 3ce1b845 2019-07-15 stsp if (optarg[0] == '\0')
616 3ce1b845 2019-07-15 stsp break;
617 3ce1b845 2019-07-15 stsp error = got_pathlist_insert(&pe, &ignores, optarg,
618 3ce1b845 2019-07-15 stsp NULL);
619 3ce1b845 2019-07-15 stsp if (error)
620 3ce1b845 2019-07-15 stsp goto done;
621 3ce1b845 2019-07-15 stsp break;
622 3ce1b845 2019-07-15 stsp default:
623 b2b65d18 2019-08-22 stsp usage_import();
624 3ce1b845 2019-07-15 stsp /* NOTREACHED */
625 3ce1b845 2019-07-15 stsp }
626 3ce1b845 2019-07-15 stsp }
627 3ce1b845 2019-07-15 stsp
628 3ce1b845 2019-07-15 stsp argc -= optind;
629 3ce1b845 2019-07-15 stsp argv += optind;
630 3ce1b845 2019-07-15 stsp
631 3ce1b845 2019-07-15 stsp #ifndef PROFILE
632 aba9c984 2019-09-08 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
633 aba9c984 2019-09-08 stsp "unveil",
634 3ce1b845 2019-07-15 stsp NULL) == -1)
635 3ce1b845 2019-07-15 stsp err(1, "pledge");
636 3ce1b845 2019-07-15 stsp #endif
637 3ce1b845 2019-07-15 stsp if (argc != 1)
638 3ce1b845 2019-07-15 stsp usage_import();
639 2c7829a4 2019-06-17 stsp
640 3ce1b845 2019-07-15 stsp if (repo_path == NULL) {
641 3ce1b845 2019-07-15 stsp repo_path = getcwd(NULL, 0);
642 3ce1b845 2019-07-15 stsp if (repo_path == NULL)
643 3ce1b845 2019-07-15 stsp return got_error_from_errno("getcwd");
644 3ce1b845 2019-07-15 stsp }
645 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(repo_path);
646 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
647 c9956ddf 2019-09-08 stsp if (error)
648 c9956ddf 2019-09-08 stsp goto done;
649 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
650 3ce1b845 2019-07-15 stsp if (error)
651 3ce1b845 2019-07-15 stsp goto done;
652 aba9c984 2019-09-08 stsp
653 aba9c984 2019-09-08 stsp error = get_author(&author, repo);
654 aba9c984 2019-09-08 stsp if (error)
655 aba9c984 2019-09-08 stsp return error;
656 e560b7e0 2019-11-28 stsp
657 e560b7e0 2019-11-28 stsp /*
658 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
659 e560b7e0 2019-11-28 stsp * While technically a valid reference name, this case is usually
660 e560b7e0 2019-11-28 stsp * an unintended typo.
661 e560b7e0 2019-11-28 stsp */
662 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
663 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
664 3ce1b845 2019-07-15 stsp
665 3ce1b845 2019-07-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
666 3ce1b845 2019-07-15 stsp error = got_error_from_errno("asprintf");
667 3ce1b845 2019-07-15 stsp goto done;
668 3ce1b845 2019-07-15 stsp }
669 3ce1b845 2019-07-15 stsp
670 3ce1b845 2019-07-15 stsp error = got_ref_open(&branch_ref, repo, refname, 0);
671 3ce1b845 2019-07-15 stsp if (error) {
672 3ce1b845 2019-07-15 stsp if (error->code != GOT_ERR_NOT_REF)
673 3ce1b845 2019-07-15 stsp goto done;
674 3ce1b845 2019-07-15 stsp } else {
675 3ce1b845 2019-07-15 stsp error = got_error_msg(GOT_ERR_BRANCH_EXISTS,
676 3ce1b845 2019-07-15 stsp "import target branch already exists");
677 3ce1b845 2019-07-15 stsp goto done;
678 3ce1b845 2019-07-15 stsp }
679 3ce1b845 2019-07-15 stsp
680 3ce1b845 2019-07-15 stsp path_dir = realpath(argv[0], NULL);
681 3ce1b845 2019-07-15 stsp if (path_dir == NULL) {
682 9ba1d308 2019-10-21 stsp error = got_error_from_errno2("realpath", argv[0]);
683 3ce1b845 2019-07-15 stsp goto done;
684 3ce1b845 2019-07-15 stsp }
685 3ce1b845 2019-07-15 stsp got_path_strip_trailing_slashes(path_dir);
686 3ce1b845 2019-07-15 stsp
687 3ce1b845 2019-07-15 stsp /*
688 3ce1b845 2019-07-15 stsp * unveil(2) traverses exec(2); if an editor is used we have
689 3ce1b845 2019-07-15 stsp * to apply unveil after the log message has been written.
690 3ce1b845 2019-07-15 stsp */
691 3ce1b845 2019-07-15 stsp if (logmsg == NULL || strlen(logmsg) == 0) {
692 3ce1b845 2019-07-15 stsp error = get_editor(&editor);
693 3ce1b845 2019-07-15 stsp if (error)
694 3ce1b845 2019-07-15 stsp goto done;
695 8e158b01 2019-09-22 stsp free(logmsg);
696 ef293bdd 2019-10-21 stsp error = collect_import_msg(&logmsg, &logmsg_path, editor,
697 ef293bdd 2019-10-21 stsp path_dir, refname);
698 ef293bdd 2019-10-21 stsp if (error) {
699 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
700 ef293bdd 2019-10-21 stsp logmsg_path != NULL)
701 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
702 3ce1b845 2019-07-15 stsp goto done;
703 ef293bdd 2019-10-21 stsp }
704 3ce1b845 2019-07-15 stsp }
705 3ce1b845 2019-07-15 stsp
706 ef293bdd 2019-10-21 stsp if (unveil(path_dir, "r") != 0) {
707 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unveil", path_dir);
708 ef293bdd 2019-10-21 stsp if (logmsg_path)
709 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
710 3ce1b845 2019-07-15 stsp goto done;
711 ef293bdd 2019-10-21 stsp }
712 3ce1b845 2019-07-15 stsp
713 ef293bdd 2019-10-21 stsp error = apply_unveil(got_repo_get_path(repo), 0, NULL);
714 ef293bdd 2019-10-21 stsp if (error) {
715 ef293bdd 2019-10-21 stsp if (logmsg_path)
716 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
717 ef293bdd 2019-10-21 stsp goto done;
718 ef293bdd 2019-10-21 stsp }
719 ef293bdd 2019-10-21 stsp
720 3ce1b845 2019-07-15 stsp error = got_repo_import(&new_commit_id, path_dir, logmsg,
721 84792843 2019-08-09 stsp author, &ignores, repo, import_progress, NULL);
722 ef293bdd 2019-10-21 stsp if (error) {
723 ef293bdd 2019-10-21 stsp if (logmsg_path)
724 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
725 3ce1b845 2019-07-15 stsp goto done;
726 ef293bdd 2019-10-21 stsp }
727 3ce1b845 2019-07-15 stsp
728 3ce1b845 2019-07-15 stsp error = got_ref_alloc(&branch_ref, refname, new_commit_id);
729 ef293bdd 2019-10-21 stsp if (error) {
730 ef293bdd 2019-10-21 stsp if (logmsg_path)
731 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
732 3ce1b845 2019-07-15 stsp goto done;
733 ef293bdd 2019-10-21 stsp }
734 3ce1b845 2019-07-15 stsp
735 3ce1b845 2019-07-15 stsp error = got_ref_write(branch_ref, repo);
736 ef293bdd 2019-10-21 stsp if (error) {
737 ef293bdd 2019-10-21 stsp if (logmsg_path)
738 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
739 3ce1b845 2019-07-15 stsp goto done;
740 ef293bdd 2019-10-21 stsp }
741 3ce1b845 2019-07-15 stsp
742 3ce1b845 2019-07-15 stsp error = got_object_id_str(&id_str, new_commit_id);
743 ef293bdd 2019-10-21 stsp if (error) {
744 ef293bdd 2019-10-21 stsp if (logmsg_path)
745 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
746 3ce1b845 2019-07-15 stsp goto done;
747 ef293bdd 2019-10-21 stsp }
748 3ce1b845 2019-07-15 stsp
749 3ce1b845 2019-07-15 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
750 3ce1b845 2019-07-15 stsp if (error) {
751 ef293bdd 2019-10-21 stsp if (error->code != GOT_ERR_NOT_REF) {
752 ef293bdd 2019-10-21 stsp if (logmsg_path)
753 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
754 3ce1b845 2019-07-15 stsp goto done;
755 ef293bdd 2019-10-21 stsp }
756 3ce1b845 2019-07-15 stsp
757 3ce1b845 2019-07-15 stsp error = got_ref_alloc_symref(&head_ref, GOT_REF_HEAD,
758 3ce1b845 2019-07-15 stsp branch_ref);
759 ef293bdd 2019-10-21 stsp if (error) {
760 ef293bdd 2019-10-21 stsp if (logmsg_path)
761 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
762 3ce1b845 2019-07-15 stsp goto done;
763 ef293bdd 2019-10-21 stsp }
764 3ce1b845 2019-07-15 stsp
765 3ce1b845 2019-07-15 stsp error = got_ref_write(head_ref, repo);
766 ef293bdd 2019-10-21 stsp if (error) {
767 ef293bdd 2019-10-21 stsp if (logmsg_path)
768 ef293bdd 2019-10-21 stsp preserve_logmsg = 1;
769 3ce1b845 2019-07-15 stsp goto done;
770 ef293bdd 2019-10-21 stsp }
771 3ce1b845 2019-07-15 stsp }
772 3ce1b845 2019-07-15 stsp
773 3ce1b845 2019-07-15 stsp printf("Created branch %s with commit %s\n",
774 3ce1b845 2019-07-15 stsp got_ref_get_name(branch_ref), id_str);
775 2c7829a4 2019-06-17 stsp done:
776 ef293bdd 2019-10-21 stsp if (preserve_logmsg) {
777 ef293bdd 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
778 ef293bdd 2019-10-21 stsp getprogname(), logmsg_path);
779 ef293bdd 2019-10-21 stsp } else if (logmsg_path && unlink(logmsg_path) == -1 && error == NULL)
780 ef293bdd 2019-10-21 stsp error = got_error_from_errno2("unlink", logmsg_path);
781 8e158b01 2019-09-22 stsp free(logmsg);
782 ef293bdd 2019-10-21 stsp free(logmsg_path);
783 2c7829a4 2019-06-17 stsp free(repo_path);
784 3ce1b845 2019-07-15 stsp free(editor);
785 3ce1b845 2019-07-15 stsp free(refname);
786 3ce1b845 2019-07-15 stsp free(new_commit_id);
787 3ce1b845 2019-07-15 stsp free(id_str);
788 aba9c984 2019-09-08 stsp free(author);
789 c9956ddf 2019-09-08 stsp free(gitconfig_path);
790 3ce1b845 2019-07-15 stsp if (branch_ref)
791 3ce1b845 2019-07-15 stsp got_ref_close(branch_ref);
792 3ce1b845 2019-07-15 stsp if (head_ref)
793 3ce1b845 2019-07-15 stsp got_ref_close(head_ref);
794 2c7829a4 2019-06-17 stsp return error;
795 0266afb7 2019-01-04 stsp }
796 0266afb7 2019-01-04 stsp
797 4ed7e80c 2018-05-20 stsp __dead static void
798 c09a553d 2018-03-12 stsp usage_checkout(void)
799 c09a553d 2018-03-12 stsp {
800 08573d5b 2019-05-14 stsp fprintf(stderr, "usage: %s checkout [-b branch] [-c commit] "
801 08573d5b 2019-05-14 stsp "[-p prefix] repository-path [worktree-path]\n", getprogname());
802 c09a553d 2018-03-12 stsp exit(1);
803 92a684f4 2018-03-12 stsp }
804 92a684f4 2018-03-12 stsp
805 1ee397ad 2019-07-12 stsp static const struct got_error *
806 a0eb853d 2018-12-29 stsp checkout_progress(void *arg, unsigned char status, const char *path)
807 92a684f4 2018-03-12 stsp {
808 92a684f4 2018-03-12 stsp char *worktree_path = arg;
809 a484d721 2019-06-10 stsp
810 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
811 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
812 1ee397ad 2019-07-12 stsp return NULL;
813 92a684f4 2018-03-12 stsp
814 92a684f4 2018-03-12 stsp while (path[0] == '/')
815 92a684f4 2018-03-12 stsp path++;
816 92a684f4 2018-03-12 stsp
817 d7b62c98 2018-12-27 stsp printf("%c %s/%s\n", status, worktree_path, path);
818 1ee397ad 2019-07-12 stsp return NULL;
819 99437157 2018-11-11 stsp }
820 99437157 2018-11-11 stsp
821 99437157 2018-11-11 stsp static const struct got_error *
822 6bad629b 2019-02-04 stsp check_cancelled(void *arg)
823 99437157 2018-11-11 stsp {
824 99437157 2018-11-11 stsp if (sigint_received || sigpipe_received)
825 99437157 2018-11-11 stsp return got_error(GOT_ERR_CANCELLED);
826 99437157 2018-11-11 stsp return NULL;
827 8069f636 2019-01-12 stsp }
828 8069f636 2019-01-12 stsp
829 8069f636 2019-01-12 stsp static const struct got_error *
830 024e9686 2019-05-14 stsp check_linear_ancestry(struct got_object_id *commit_id,
831 3aef623b 2019-10-15 stsp struct got_object_id *base_commit_id, int allow_forwards_in_time_only,
832 3aef623b 2019-10-15 stsp struct got_repository *repo)
833 8069f636 2019-01-12 stsp {
834 d5bea539 2019-05-13 stsp const struct got_error *err = NULL;
835 024e9686 2019-05-14 stsp struct got_object_id *yca_id;
836 8069f636 2019-01-12 stsp
837 d5bea539 2019-05-13 stsp err = got_commit_graph_find_youngest_common_ancestor(&yca_id,
838 6fb7cd11 2019-08-22 stsp commit_id, base_commit_id, repo, check_cancelled, NULL);
839 36a38700 2019-05-10 stsp if (err)
840 36a38700 2019-05-10 stsp return err;
841 8069f636 2019-01-12 stsp
842 d5bea539 2019-05-13 stsp if (yca_id == NULL)
843 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
844 8069f636 2019-01-12 stsp
845 d5bea539 2019-05-13 stsp /*
846 d5bea539 2019-05-13 stsp * Require a straight line of history between the target commit
847 d5bea539 2019-05-13 stsp * and the work tree's base commit.
848 d5bea539 2019-05-13 stsp *
849 d5751d49 2019-05-14 stsp * Non-linear situations such as this require a rebase:
850 d5bea539 2019-05-13 stsp *
851 d5bea539 2019-05-13 stsp * (commit) D F (base_commit)
852 d5bea539 2019-05-13 stsp * \ /
853 d5bea539 2019-05-13 stsp * C E
854 d5bea539 2019-05-13 stsp * \ /
855 d5bea539 2019-05-13 stsp * B (yca)
856 d5bea539 2019-05-13 stsp * |
857 d5bea539 2019-05-13 stsp * A
858 d5bea539 2019-05-13 stsp *
859 d5bea539 2019-05-13 stsp * 'got update' only handles linear cases:
860 d5bea539 2019-05-13 stsp * Update forwards in time: A (base/yca) - B - C - D (commit)
861 efa2b6f7 2019-05-14 stsp * Update backwards in time: D (base) - C - B - A (commit/yca)
862 d5bea539 2019-05-13 stsp */
863 3aef623b 2019-10-15 stsp if (allow_forwards_in_time_only) {
864 3aef623b 2019-10-15 stsp if (got_object_id_cmp(base_commit_id, yca_id) != 0)
865 3aef623b 2019-10-15 stsp return got_error(GOT_ERR_ANCESTRY);
866 3aef623b 2019-10-15 stsp } else if (got_object_id_cmp(commit_id, yca_id) != 0 &&
867 d5bea539 2019-05-13 stsp got_object_id_cmp(base_commit_id, yca_id) != 0)
868 d5bea539 2019-05-13 stsp return got_error(GOT_ERR_ANCESTRY);
869 8069f636 2019-01-12 stsp
870 d5bea539 2019-05-13 stsp free(yca_id);
871 d5bea539 2019-05-13 stsp return NULL;
872 c09a553d 2018-03-12 stsp }
873 a367ff0f 2019-05-14 stsp
874 a367ff0f 2019-05-14 stsp static const struct got_error *
875 a367ff0f 2019-05-14 stsp check_same_branch(struct got_object_id *commit_id,
876 a51a74b3 2019-07-27 stsp struct got_reference *head_ref, struct got_object_id *yca_id,
877 a51a74b3 2019-07-27 stsp struct got_repository *repo)
878 a367ff0f 2019-05-14 stsp {
879 a367ff0f 2019-05-14 stsp const struct got_error *err = NULL;
880 a367ff0f 2019-05-14 stsp struct got_commit_graph *graph = NULL;
881 a367ff0f 2019-05-14 stsp struct got_object_id *head_commit_id = NULL;
882 a367ff0f 2019-05-14 stsp int is_same_branch = 0;
883 a367ff0f 2019-05-14 stsp
884 a367ff0f 2019-05-14 stsp err = got_ref_resolve(&head_commit_id, repo, head_ref);
885 a367ff0f 2019-05-14 stsp if (err)
886 a51a74b3 2019-07-27 stsp goto done;
887 a51a74b3 2019-07-27 stsp
888 a51a74b3 2019-07-27 stsp if (got_object_id_cmp(head_commit_id, commit_id) == 0) {
889 a51a74b3 2019-07-27 stsp is_same_branch = 1;
890 a51a74b3 2019-07-27 stsp goto done;
891 a51a74b3 2019-07-27 stsp }
892 a51a74b3 2019-07-27 stsp if (yca_id && got_object_id_cmp(commit_id, yca_id) == 0) {
893 a51a74b3 2019-07-27 stsp is_same_branch = 1;
894 a367ff0f 2019-05-14 stsp goto done;
895 a51a74b3 2019-07-27 stsp }
896 a367ff0f 2019-05-14 stsp
897 a367ff0f 2019-05-14 stsp err = got_commit_graph_open(&graph, head_commit_id, "/", 1, repo);
898 a367ff0f 2019-05-14 stsp if (err)
899 a367ff0f 2019-05-14 stsp goto done;
900 a367ff0f 2019-05-14 stsp
901 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, head_commit_id, repo,
902 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
903 a367ff0f 2019-05-14 stsp if (err)
904 a367ff0f 2019-05-14 stsp goto done;
905 a367ff0f 2019-05-14 stsp
906 a367ff0f 2019-05-14 stsp for (;;) {
907 a367ff0f 2019-05-14 stsp struct got_object_id *id;
908 a367ff0f 2019-05-14 stsp err = got_commit_graph_iter_next(&id, graph);
909 a367ff0f 2019-05-14 stsp if (err) {
910 a367ff0f 2019-05-14 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
911 a367ff0f 2019-05-14 stsp err = NULL;
912 a367ff0f 2019-05-14 stsp break;
913 a14c42fa 2019-07-15 stsp } else if (err->code != GOT_ERR_ITER_NEED_MORE)
914 a367ff0f 2019-05-14 stsp break;
915 a367ff0f 2019-05-14 stsp err = got_commit_graph_fetch_commits(graph, 1,
916 6fb7cd11 2019-08-22 stsp repo, check_cancelled, NULL);
917 a367ff0f 2019-05-14 stsp if (err)
918 a367ff0f 2019-05-14 stsp break;
919 a367ff0f 2019-05-14 stsp }
920 c09a553d 2018-03-12 stsp
921 a367ff0f 2019-05-14 stsp if (id) {
922 a51a74b3 2019-07-27 stsp if (yca_id && got_object_id_cmp(id, yca_id) == 0)
923 a51a74b3 2019-07-27 stsp break;
924 a367ff0f 2019-05-14 stsp if (got_object_id_cmp(id, commit_id) == 0) {
925 a367ff0f 2019-05-14 stsp is_same_branch = 1;
926 a367ff0f 2019-05-14 stsp break;
927 a367ff0f 2019-05-14 stsp }
928 a367ff0f 2019-05-14 stsp }
929 a367ff0f 2019-05-14 stsp }
930 a367ff0f 2019-05-14 stsp done:
931 a367ff0f 2019-05-14 stsp if (graph)
932 a367ff0f 2019-05-14 stsp got_commit_graph_close(graph);
933 a367ff0f 2019-05-14 stsp free(head_commit_id);
934 a367ff0f 2019-05-14 stsp if (!err && !is_same_branch)
935 a367ff0f 2019-05-14 stsp err = got_error(GOT_ERR_ANCESTRY);
936 04f57cb3 2019-07-25 stsp return err;
937 04f57cb3 2019-07-25 stsp }
938 04f57cb3 2019-07-25 stsp
939 04f57cb3 2019-07-25 stsp static const struct got_error *
940 04f57cb3 2019-07-25 stsp resolve_commit_arg(struct got_object_id **commit_id,
941 04f57cb3 2019-07-25 stsp const char *commit_id_arg, struct got_repository *repo)
942 04f57cb3 2019-07-25 stsp {
943 04f57cb3 2019-07-25 stsp const struct got_error *err;
944 04f57cb3 2019-07-25 stsp struct got_reference *ref;
945 303e2782 2019-08-09 stsp struct got_tag_object *tag;
946 04f57cb3 2019-07-25 stsp
947 303e2782 2019-08-09 stsp err = got_repo_object_match_tag(&tag, commit_id_arg,
948 303e2782 2019-08-09 stsp GOT_OBJ_TYPE_COMMIT, repo);
949 303e2782 2019-08-09 stsp if (err == NULL) {
950 303e2782 2019-08-09 stsp *commit_id = got_object_id_dup(
951 303e2782 2019-08-09 stsp got_object_tag_get_object_id(tag));
952 303e2782 2019-08-09 stsp if (*commit_id == NULL)
953 303e2782 2019-08-09 stsp err = got_error_from_errno("got_object_id_dup");
954 303e2782 2019-08-09 stsp got_object_tag_close(tag);
955 303e2782 2019-08-09 stsp return err;
956 303e2782 2019-08-09 stsp } else if (err->code != GOT_ERR_NO_OBJ)
957 303e2782 2019-08-09 stsp return err;
958 303e2782 2019-08-09 stsp
959 04f57cb3 2019-07-25 stsp err = got_ref_open(&ref, repo, commit_id_arg, 0);
960 04f57cb3 2019-07-25 stsp if (err == NULL) {
961 04f57cb3 2019-07-25 stsp err = got_ref_resolve(commit_id, repo, ref);
962 04f57cb3 2019-07-25 stsp got_ref_close(ref);
963 04f57cb3 2019-07-25 stsp } else {
964 04f57cb3 2019-07-25 stsp if (err->code != GOT_ERR_NOT_REF)
965 04f57cb3 2019-07-25 stsp return err;
966 04f57cb3 2019-07-25 stsp err = got_repo_match_object_id_prefix(commit_id,
967 04f57cb3 2019-07-25 stsp commit_id_arg, GOT_OBJ_TYPE_COMMIT, repo);
968 04f57cb3 2019-07-25 stsp }
969 a367ff0f 2019-05-14 stsp return err;
970 a367ff0f 2019-05-14 stsp }
971 8069f636 2019-01-12 stsp
972 4ed7e80c 2018-05-20 stsp static const struct got_error *
973 c09a553d 2018-03-12 stsp cmd_checkout(int argc, char *argv[])
974 c09a553d 2018-03-12 stsp {
975 c09a553d 2018-03-12 stsp const struct got_error *error = NULL;
976 c09a553d 2018-03-12 stsp struct got_repository *repo = NULL;
977 c09a553d 2018-03-12 stsp struct got_reference *head_ref = NULL;
978 c09a553d 2018-03-12 stsp struct got_worktree *worktree = NULL;
979 c09a553d 2018-03-12 stsp char *repo_path = NULL;
980 c09a553d 2018-03-12 stsp char *worktree_path = NULL;
981 0bb8a95e 2018-03-12 stsp const char *path_prefix = "";
982 08573d5b 2019-05-14 stsp const char *branch_name = GOT_REF_HEAD;
983 8069f636 2019-01-12 stsp char *commit_id_str = NULL;
984 72151b04 2019-05-11 stsp int ch, same_path_prefix;
985 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
986 f2ea84fa 2019-07-27 stsp
987 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
988 c09a553d 2018-03-12 stsp
989 08573d5b 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:p:")) != -1) {
990 0bb8a95e 2018-03-12 stsp switch (ch) {
991 08573d5b 2019-05-14 stsp case 'b':
992 08573d5b 2019-05-14 stsp branch_name = optarg;
993 08573d5b 2019-05-14 stsp break;
994 8069f636 2019-01-12 stsp case 'c':
995 8069f636 2019-01-12 stsp commit_id_str = strdup(optarg);
996 8069f636 2019-01-12 stsp if (commit_id_str == NULL)
997 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
998 8069f636 2019-01-12 stsp break;
999 0bb8a95e 2018-03-12 stsp case 'p':
1000 0bb8a95e 2018-03-12 stsp path_prefix = optarg;
1001 0bb8a95e 2018-03-12 stsp break;
1002 0bb8a95e 2018-03-12 stsp default:
1003 2deda0b9 2019-03-07 stsp usage_checkout();
1004 0bb8a95e 2018-03-12 stsp /* NOTREACHED */
1005 0bb8a95e 2018-03-12 stsp }
1006 0bb8a95e 2018-03-12 stsp }
1007 0bb8a95e 2018-03-12 stsp
1008 0bb8a95e 2018-03-12 stsp argc -= optind;
1009 0bb8a95e 2018-03-12 stsp argv += optind;
1010 0bb8a95e 2018-03-12 stsp
1011 6715a751 2018-03-16 stsp #ifndef PROFILE
1012 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
1013 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
1014 c09a553d 2018-03-12 stsp err(1, "pledge");
1015 6715a751 2018-03-16 stsp #endif
1016 0bb8a95e 2018-03-12 stsp if (argc == 1) {
1017 c09a553d 2018-03-12 stsp char *cwd, *base, *dotgit;
1018 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
1019 76089277 2018-04-01 stsp if (repo_path == NULL)
1020 638f9024 2019-05-13 stsp return got_error_from_errno2("realpath", argv[0]);
1021 c09a553d 2018-03-12 stsp cwd = getcwd(NULL, 0);
1022 76089277 2018-04-01 stsp if (cwd == NULL) {
1023 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1024 76089277 2018-04-01 stsp goto done;
1025 76089277 2018-04-01 stsp }
1026 230a42bd 2019-05-11 jcs if (path_prefix[0]) {
1027 230a42bd 2019-05-11 jcs base = basename(path_prefix);
1028 230a42bd 2019-05-11 jcs if (base == NULL) {
1029 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
1030 230a42bd 2019-05-11 jcs path_prefix);
1031 230a42bd 2019-05-11 jcs goto done;
1032 230a42bd 2019-05-11 jcs }
1033 230a42bd 2019-05-11 jcs } else {
1034 5d7c1dab 2018-04-01 stsp base = basename(repo_path);
1035 230a42bd 2019-05-11 jcs if (base == NULL) {
1036 638f9024 2019-05-13 stsp error = got_error_from_errno2("basename",
1037 230a42bd 2019-05-11 jcs repo_path);
1038 230a42bd 2019-05-11 jcs goto done;
1039 230a42bd 2019-05-11 jcs }
1040 76089277 2018-04-01 stsp }
1041 c09a553d 2018-03-12 stsp dotgit = strstr(base, ".git");
1042 c09a553d 2018-03-12 stsp if (dotgit)
1043 c09a553d 2018-03-12 stsp *dotgit = '\0';
1044 c09a553d 2018-03-12 stsp if (asprintf(&worktree_path, "%s/%s", cwd, base) == -1) {
1045 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
1046 c09a553d 2018-03-12 stsp free(cwd);
1047 76089277 2018-04-01 stsp goto done;
1048 c09a553d 2018-03-12 stsp }
1049 c09a553d 2018-03-12 stsp free(cwd);
1050 0bb8a95e 2018-03-12 stsp } else if (argc == 2) {
1051 76089277 2018-04-01 stsp repo_path = realpath(argv[0], NULL);
1052 76089277 2018-04-01 stsp if (repo_path == NULL) {
1053 638f9024 2019-05-13 stsp error = got_error_from_errno2("realpath", argv[0]);
1054 76089277 2018-04-01 stsp goto done;
1055 76089277 2018-04-01 stsp }
1056 f7b38925 2018-04-01 stsp worktree_path = realpath(argv[1], NULL);
1057 76089277 2018-04-01 stsp if (worktree_path == NULL) {
1058 b4b3a7dd 2019-07-22 stsp if (errno != ENOENT) {
1059 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno2("realpath",
1060 b4b3a7dd 2019-07-22 stsp argv[1]);
1061 b4b3a7dd 2019-07-22 stsp goto done;
1062 b4b3a7dd 2019-07-22 stsp }
1063 b4b3a7dd 2019-07-22 stsp worktree_path = strdup(argv[1]);
1064 b4b3a7dd 2019-07-22 stsp if (worktree_path == NULL) {
1065 b4b3a7dd 2019-07-22 stsp error = got_error_from_errno("strdup");
1066 b4b3a7dd 2019-07-22 stsp goto done;
1067 b4b3a7dd 2019-07-22 stsp }
1068 76089277 2018-04-01 stsp }
1069 c09a553d 2018-03-12 stsp } else
1070 c09a553d 2018-03-12 stsp usage_checkout();
1071 c09a553d 2018-03-12 stsp
1072 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1073 72151b04 2019-05-11 stsp got_path_strip_trailing_slashes(worktree_path);
1074 13bfb272 2019-05-10 jcs
1075 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
1076 c09a553d 2018-03-12 stsp if (error != NULL)
1077 c02c541e 2019-03-29 stsp goto done;
1078 c02c541e 2019-03-29 stsp
1079 c530dc23 2019-07-23 stsp /* Pre-create work tree path for unveil(2) */
1080 c530dc23 2019-07-23 stsp error = got_path_mkdir(worktree_path);
1081 c530dc23 2019-07-23 stsp if (error) {
1082 80c1b583 2019-08-07 stsp if (!(error->code == GOT_ERR_ERRNO && errno == EISDIR) &&
1083 80c1b583 2019-08-07 stsp !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
1084 c530dc23 2019-07-23 stsp goto done;
1085 c530dc23 2019-07-23 stsp if (!got_path_dir_is_empty(worktree_path)) {
1086 c530dc23 2019-07-23 stsp error = got_error_path(worktree_path,
1087 c530dc23 2019-07-23 stsp GOT_ERR_DIR_NOT_EMPTY);
1088 c530dc23 2019-07-23 stsp goto done;
1089 c530dc23 2019-07-23 stsp }
1090 c530dc23 2019-07-23 stsp }
1091 c530dc23 2019-07-23 stsp
1092 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 0, worktree_path);
1093 c02c541e 2019-03-29 stsp if (error)
1094 c09a553d 2018-03-12 stsp goto done;
1095 8069f636 2019-01-12 stsp
1096 08573d5b 2019-05-14 stsp error = got_ref_open(&head_ref, repo, branch_name, 0);
1097 c09a553d 2018-03-12 stsp if (error != NULL)
1098 c09a553d 2018-03-12 stsp goto done;
1099 c09a553d 2018-03-12 stsp
1100 0bb8a95e 2018-03-12 stsp error = got_worktree_init(worktree_path, head_ref, path_prefix, repo);
1101 d70b8e30 2018-12-27 stsp if (error != NULL && !(error->code == GOT_ERR_ERRNO && errno == EEXIST))
1102 c09a553d 2018-03-12 stsp goto done;
1103 c09a553d 2018-03-12 stsp
1104 c09a553d 2018-03-12 stsp error = got_worktree_open(&worktree, worktree_path);
1105 c09a553d 2018-03-12 stsp if (error != NULL)
1106 c09a553d 2018-03-12 stsp goto done;
1107 c09a553d 2018-03-12 stsp
1108 e5dc7198 2018-12-29 stsp error = got_worktree_match_path_prefix(&same_path_prefix, worktree,
1109 e5dc7198 2018-12-29 stsp path_prefix);
1110 e5dc7198 2018-12-29 stsp if (error != NULL)
1111 e5dc7198 2018-12-29 stsp goto done;
1112 e5dc7198 2018-12-29 stsp if (!same_path_prefix) {
1113 49520a32 2018-12-29 stsp error = got_error(GOT_ERR_PATH_PREFIX);
1114 49520a32 2018-12-29 stsp goto done;
1115 49520a32 2018-12-29 stsp }
1116 49520a32 2018-12-29 stsp
1117 8069f636 2019-01-12 stsp if (commit_id_str) {
1118 04f57cb3 2019-07-25 stsp struct got_object_id *commit_id;
1119 04f57cb3 2019-07-25 stsp error = resolve_commit_arg(&commit_id, commit_id_str, repo);
1120 30837e32 2019-07-25 stsp if (error)
1121 8069f636 2019-01-12 stsp goto done;
1122 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
1123 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
1124 8069f636 2019-01-12 stsp if (error != NULL) {
1125 8069f636 2019-01-12 stsp free(commit_id);
1126 8069f636 2019-01-12 stsp goto done;
1127 8069f636 2019-01-12 stsp }
1128 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
1129 45d344f6 2019-05-14 stsp if (error)
1130 45d344f6 2019-05-14 stsp goto done;
1131 8069f636 2019-01-12 stsp error = got_worktree_set_base_commit_id(worktree, repo,
1132 8069f636 2019-01-12 stsp commit_id);
1133 8069f636 2019-01-12 stsp free(commit_id);
1134 8069f636 2019-01-12 stsp if (error)
1135 8069f636 2019-01-12 stsp goto done;
1136 8069f636 2019-01-12 stsp }
1137 8069f636 2019-01-12 stsp
1138 adc19d55 2019-07-28 stsp error = got_pathlist_append(&paths, "", NULL);
1139 f2ea84fa 2019-07-27 stsp if (error)
1140 f2ea84fa 2019-07-27 stsp goto done;
1141 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
1142 6bad629b 2019-02-04 stsp checkout_progress, worktree_path, check_cancelled, NULL);
1143 c09a553d 2018-03-12 stsp if (error != NULL)
1144 c09a553d 2018-03-12 stsp goto done;
1145 c09a553d 2018-03-12 stsp
1146 b65ae19a 2018-04-24 stsp printf("Now shut up and hack\n");
1147 c09a553d 2018-03-12 stsp
1148 c09a553d 2018-03-12 stsp done:
1149 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
1150 8069f636 2019-01-12 stsp free(commit_id_str);
1151 76089277 2018-04-01 stsp free(repo_path);
1152 507dc3bb 2018-12-29 stsp free(worktree_path);
1153 507dc3bb 2018-12-29 stsp return error;
1154 507dc3bb 2018-12-29 stsp }
1155 507dc3bb 2018-12-29 stsp
1156 507dc3bb 2018-12-29 stsp __dead static void
1157 507dc3bb 2018-12-29 stsp usage_update(void)
1158 507dc3bb 2018-12-29 stsp {
1159 f2ea84fa 2019-07-27 stsp fprintf(stderr, "usage: %s update [-b branch] [-c commit] [path ...]\n",
1160 507dc3bb 2018-12-29 stsp getprogname());
1161 507dc3bb 2018-12-29 stsp exit(1);
1162 507dc3bb 2018-12-29 stsp }
1163 507dc3bb 2018-12-29 stsp
1164 1ee397ad 2019-07-12 stsp static const struct got_error *
1165 507dc3bb 2018-12-29 stsp update_progress(void *arg, unsigned char status, const char *path)
1166 507dc3bb 2018-12-29 stsp {
1167 784955db 2019-01-12 stsp int *did_something = arg;
1168 784955db 2019-01-12 stsp
1169 507dc3bb 2018-12-29 stsp if (status == GOT_STATUS_EXISTS)
1170 1ee397ad 2019-07-12 stsp return NULL;
1171 507dc3bb 2018-12-29 stsp
1172 1545c615 2019-02-10 stsp *did_something = 1;
1173 a484d721 2019-06-10 stsp
1174 a484d721 2019-06-10 stsp /* Base commit bump happens silently. */
1175 a484d721 2019-06-10 stsp if (status == GOT_STATUS_BUMP_BASE)
1176 1ee397ad 2019-07-12 stsp return NULL;
1177 a484d721 2019-06-10 stsp
1178 507dc3bb 2018-12-29 stsp while (path[0] == '/')
1179 507dc3bb 2018-12-29 stsp path++;
1180 507dc3bb 2018-12-29 stsp printf("%c %s\n", status, path);
1181 1ee397ad 2019-07-12 stsp return NULL;
1182 be7061eb 2018-12-30 stsp }
1183 be7061eb 2018-12-30 stsp
1184 be7061eb 2018-12-30 stsp static const struct got_error *
1185 a1fb16d8 2019-05-24 stsp switch_head_ref(struct got_reference *head_ref,
1186 a1fb16d8 2019-05-24 stsp struct got_object_id *commit_id, struct got_worktree *worktree,
1187 a1fb16d8 2019-05-24 stsp struct got_repository *repo)
1188 a1fb16d8 2019-05-24 stsp {
1189 a1fb16d8 2019-05-24 stsp const struct got_error *err = NULL;
1190 a1fb16d8 2019-05-24 stsp char *base_id_str;
1191 a1fb16d8 2019-05-24 stsp int ref_has_moved = 0;
1192 a1fb16d8 2019-05-24 stsp
1193 a1fb16d8 2019-05-24 stsp /* Trivial case: switching between two different references. */
1194 a1fb16d8 2019-05-24 stsp if (strcmp(got_ref_get_name(head_ref),
1195 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree)) != 0) {
1196 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n",
1197 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree),
1198 a1fb16d8 2019-05-24 stsp got_ref_get_name(head_ref));
1199 a1fb16d8 2019-05-24 stsp return got_worktree_set_head_ref(worktree, head_ref);
1200 a1fb16d8 2019-05-24 stsp }
1201 a1fb16d8 2019-05-24 stsp
1202 a1fb16d8 2019-05-24 stsp err = check_linear_ancestry(commit_id,
1203 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
1204 a1fb16d8 2019-05-24 stsp if (err) {
1205 a1fb16d8 2019-05-24 stsp if (err->code != GOT_ERR_ANCESTRY)
1206 a1fb16d8 2019-05-24 stsp return err;
1207 a1fb16d8 2019-05-24 stsp ref_has_moved = 1;
1208 a1fb16d8 2019-05-24 stsp }
1209 a1fb16d8 2019-05-24 stsp if (!ref_has_moved)
1210 a1fb16d8 2019-05-24 stsp return NULL;
1211 a1fb16d8 2019-05-24 stsp
1212 a1fb16d8 2019-05-24 stsp /* Switching to a rebased branch with the same reference name. */
1213 a1fb16d8 2019-05-24 stsp err = got_object_id_str(&base_id_str,
1214 a1fb16d8 2019-05-24 stsp got_worktree_get_base_commit_id(worktree));
1215 a1fb16d8 2019-05-24 stsp if (err)
1216 a1fb16d8 2019-05-24 stsp return err;
1217 a1fb16d8 2019-05-24 stsp printf("Reference %s now points at a different branch\n",
1218 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
1219 a1fb16d8 2019-05-24 stsp printf("Switching work tree from %s to %s\n", base_id_str,
1220 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree));
1221 0ebf8283 2019-07-24 stsp return NULL;
1222 0ebf8283 2019-07-24 stsp }
1223 0ebf8283 2019-07-24 stsp
1224 0ebf8283 2019-07-24 stsp static const struct got_error *
1225 0ebf8283 2019-07-24 stsp check_rebase_or_histedit_in_progress(struct got_worktree *worktree)
1226 0ebf8283 2019-07-24 stsp {
1227 0ebf8283 2019-07-24 stsp const struct got_error *err;
1228 0ebf8283 2019-07-24 stsp int in_progress;
1229 0ebf8283 2019-07-24 stsp
1230 0ebf8283 2019-07-24 stsp err = got_worktree_rebase_in_progress(&in_progress, worktree);
1231 0ebf8283 2019-07-24 stsp if (err)
1232 0ebf8283 2019-07-24 stsp return err;
1233 0ebf8283 2019-07-24 stsp if (in_progress)
1234 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_REBASING);
1235 0ebf8283 2019-07-24 stsp
1236 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_in_progress(&in_progress, worktree);
1237 0ebf8283 2019-07-24 stsp if (err)
1238 0ebf8283 2019-07-24 stsp return err;
1239 0ebf8283 2019-07-24 stsp if (in_progress)
1240 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_BUSY);
1241 0ebf8283 2019-07-24 stsp
1242 a1fb16d8 2019-05-24 stsp return NULL;
1243 a5edda0a 2019-07-27 stsp }
1244 a5edda0a 2019-07-27 stsp
1245 a5edda0a 2019-07-27 stsp static const struct got_error *
1246 a5edda0a 2019-07-27 stsp get_worktree_paths_from_argv(struct got_pathlist_head *paths, int argc,
1247 a5edda0a 2019-07-27 stsp char *argv[], struct got_worktree *worktree)
1248 a5edda0a 2019-07-27 stsp {
1249 a0de39f3 2019-08-09 stsp const struct got_error *err = NULL;
1250 a5edda0a 2019-07-27 stsp char *path;
1251 a5edda0a 2019-07-27 stsp int i;
1252 a5edda0a 2019-07-27 stsp
1253 a5edda0a 2019-07-27 stsp if (argc == 0) {
1254 a5edda0a 2019-07-27 stsp path = strdup("");
1255 a5edda0a 2019-07-27 stsp if (path == NULL)
1256 a5edda0a 2019-07-27 stsp return got_error_from_errno("strdup");
1257 adc19d55 2019-07-28 stsp return got_pathlist_append(paths, path, NULL);
1258 a5edda0a 2019-07-27 stsp }
1259 a5edda0a 2019-07-27 stsp
1260 a5edda0a 2019-07-27 stsp for (i = 0; i < argc; i++) {
1261 a5edda0a 2019-07-27 stsp err = got_worktree_resolve_path(&path, worktree, argv[i]);
1262 a5edda0a 2019-07-27 stsp if (err)
1263 a5edda0a 2019-07-27 stsp break;
1264 adc19d55 2019-07-28 stsp err = got_pathlist_append(paths, path, NULL);
1265 a5edda0a 2019-07-27 stsp if (err) {
1266 a5edda0a 2019-07-27 stsp free(path);
1267 a5edda0a 2019-07-27 stsp break;
1268 a5edda0a 2019-07-27 stsp }
1269 a5edda0a 2019-07-27 stsp }
1270 a5edda0a 2019-07-27 stsp
1271 a5edda0a 2019-07-27 stsp return err;
1272 a1fb16d8 2019-05-24 stsp }
1273 a1fb16d8 2019-05-24 stsp
1274 a1fb16d8 2019-05-24 stsp static const struct got_error *
1275 507dc3bb 2018-12-29 stsp cmd_update(int argc, char *argv[])
1276 507dc3bb 2018-12-29 stsp {
1277 507dc3bb 2018-12-29 stsp const struct got_error *error = NULL;
1278 507dc3bb 2018-12-29 stsp struct got_repository *repo = NULL;
1279 507dc3bb 2018-12-29 stsp struct got_worktree *worktree = NULL;
1280 f2ea84fa 2019-07-27 stsp char *worktree_path = NULL;
1281 507dc3bb 2018-12-29 stsp struct got_object_id *commit_id = NULL;
1282 9c4b8182 2019-01-02 stsp char *commit_id_str = NULL;
1283 024e9686 2019-05-14 stsp const char *branch_name = NULL;
1284 024e9686 2019-05-14 stsp struct got_reference *head_ref = NULL;
1285 f2ea84fa 2019-07-27 stsp struct got_pathlist_head paths;
1286 f2ea84fa 2019-07-27 stsp struct got_pathlist_entry *pe;
1287 0ebf8283 2019-07-24 stsp int ch, did_something = 0;
1288 507dc3bb 2018-12-29 stsp
1289 f2ea84fa 2019-07-27 stsp TAILQ_INIT(&paths);
1290 f2ea84fa 2019-07-27 stsp
1291 024e9686 2019-05-14 stsp while ((ch = getopt(argc, argv, "b:c:")) != -1) {
1292 507dc3bb 2018-12-29 stsp switch (ch) {
1293 024e9686 2019-05-14 stsp case 'b':
1294 024e9686 2019-05-14 stsp branch_name = optarg;
1295 024e9686 2019-05-14 stsp break;
1296 507dc3bb 2018-12-29 stsp case 'c':
1297 9c4b8182 2019-01-02 stsp commit_id_str = strdup(optarg);
1298 9c4b8182 2019-01-02 stsp if (commit_id_str == NULL)
1299 638f9024 2019-05-13 stsp return got_error_from_errno("strdup");
1300 507dc3bb 2018-12-29 stsp break;
1301 507dc3bb 2018-12-29 stsp default:
1302 2deda0b9 2019-03-07 stsp usage_update();
1303 507dc3bb 2018-12-29 stsp /* NOTREACHED */
1304 507dc3bb 2018-12-29 stsp }
1305 507dc3bb 2018-12-29 stsp }
1306 507dc3bb 2018-12-29 stsp
1307 507dc3bb 2018-12-29 stsp argc -= optind;
1308 507dc3bb 2018-12-29 stsp argv += optind;
1309 507dc3bb 2018-12-29 stsp
1310 507dc3bb 2018-12-29 stsp #ifndef PROFILE
1311 68ed9ba5 2019-02-10 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
1312 68ed9ba5 2019-02-10 stsp "unveil", NULL) == -1)
1313 507dc3bb 2018-12-29 stsp err(1, "pledge");
1314 507dc3bb 2018-12-29 stsp #endif
1315 c4cdcb68 2019-04-03 stsp worktree_path = getcwd(NULL, 0);
1316 c4cdcb68 2019-04-03 stsp if (worktree_path == NULL) {
1317 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1318 c4cdcb68 2019-04-03 stsp goto done;
1319 c4cdcb68 2019-04-03 stsp }
1320 c4cdcb68 2019-04-03 stsp error = got_worktree_open(&worktree, worktree_path);
1321 7d5807f4 2019-07-11 stsp if (error)
1322 7d5807f4 2019-07-11 stsp goto done;
1323 7d5807f4 2019-07-11 stsp
1324 0ebf8283 2019-07-24 stsp error = check_rebase_or_histedit_in_progress(worktree);
1325 f2ea84fa 2019-07-27 stsp if (error)
1326 f2ea84fa 2019-07-27 stsp goto done;
1327 507dc3bb 2018-12-29 stsp
1328 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
1329 c9956ddf 2019-09-08 stsp NULL);
1330 507dc3bb 2018-12-29 stsp if (error != NULL)
1331 507dc3bb 2018-12-29 stsp goto done;
1332 507dc3bb 2018-12-29 stsp
1333 97430839 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
1334 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
1335 087fb88c 2019-08-04 stsp if (error)
1336 087fb88c 2019-08-04 stsp goto done;
1337 087fb88c 2019-08-04 stsp
1338 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
1339 0266afb7 2019-01-04 stsp if (error)
1340 0266afb7 2019-01-04 stsp goto done;
1341 0266afb7 2019-01-04 stsp
1342 a1fb16d8 2019-05-24 stsp error = got_ref_open(&head_ref, repo, branch_name ? branch_name :
1343 a1fb16d8 2019-05-24 stsp got_worktree_get_head_ref_name(worktree), 0);
1344 024e9686 2019-05-14 stsp if (error != NULL)
1345 024e9686 2019-05-14 stsp goto done;
1346 507dc3bb 2018-12-29 stsp if (commit_id_str == NULL) {
1347 507dc3bb 2018-12-29 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
1348 9c4b8182 2019-01-02 stsp if (error != NULL)
1349 9c4b8182 2019-01-02 stsp goto done;
1350 9c4b8182 2019-01-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
1351 507dc3bb 2018-12-29 stsp if (error != NULL)
1352 507dc3bb 2018-12-29 stsp goto done;
1353 507dc3bb 2018-12-29 stsp } else {
1354 04f57cb3 2019-07-25 stsp error = resolve_commit_arg(&commit_id, commit_id_str, repo);
1355 04f57cb3 2019-07-25 stsp free(commit_id_str);
1356 bb787f09 2019-07-25 stsp commit_id_str = NULL;
1357 30837e32 2019-07-25 stsp if (error)
1358 a297e751 2019-07-11 stsp goto done;
1359 a297e751 2019-07-11 stsp error = got_object_id_str(&commit_id_str, commit_id);
1360 a297e751 2019-07-11 stsp if (error)
1361 507dc3bb 2018-12-29 stsp goto done;
1362 507dc3bb 2018-12-29 stsp }
1363 35c965b2 2018-12-29 stsp
1364 a1fb16d8 2019-05-24 stsp if (branch_name) {
1365 024e9686 2019-05-14 stsp struct got_object_id *head_commit_id;
1366 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry) {
1367 f2b16ada 2019-08-02 stsp if (pe->path_len == 0)
1368 f2ea84fa 2019-07-27 stsp continue;
1369 f2ea84fa 2019-07-27 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
1370 f2ea84fa 2019-07-27 stsp "switching between branches requires that "
1371 f2ea84fa 2019-07-27 stsp "the entire work tree gets updated");
1372 024e9686 2019-05-14 stsp goto done;
1373 024e9686 2019-05-14 stsp }
1374 024e9686 2019-05-14 stsp error = got_ref_resolve(&head_commit_id, repo, head_ref);
1375 024e9686 2019-05-14 stsp if (error)
1376 024e9686 2019-05-14 stsp goto done;
1377 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, head_commit_id, 0,
1378 3aef623b 2019-10-15 stsp repo);
1379 a367ff0f 2019-05-14 stsp free(head_commit_id);
1380 024e9686 2019-05-14 stsp if (error != NULL)
1381 024e9686 2019-05-14 stsp goto done;
1382 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
1383 a367ff0f 2019-05-14 stsp if (error)
1384 a367ff0f 2019-05-14 stsp goto done;
1385 a1fb16d8 2019-05-24 stsp error = switch_head_ref(head_ref, commit_id, worktree, repo);
1386 024e9686 2019-05-14 stsp if (error)
1387 024e9686 2019-05-14 stsp goto done;
1388 024e9686 2019-05-14 stsp } else {
1389 024e9686 2019-05-14 stsp error = check_linear_ancestry(commit_id,
1390 3aef623b 2019-10-15 stsp got_worktree_get_base_commit_id(worktree), 0, repo);
1391 a367ff0f 2019-05-14 stsp if (error != NULL) {
1392 a367ff0f 2019-05-14 stsp if (error->code == GOT_ERR_ANCESTRY)
1393 a367ff0f 2019-05-14 stsp error = got_error(GOT_ERR_BRANCH_MOVED);
1394 024e9686 2019-05-14 stsp goto done;
1395 a367ff0f 2019-05-14 stsp }
1396 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
1397 a367ff0f 2019-05-14 stsp if (error)
1398 a367ff0f 2019-05-14 stsp goto done;
1399 024e9686 2019-05-14 stsp }
1400 507dc3bb 2018-12-29 stsp
1401 507dc3bb 2018-12-29 stsp if (got_object_id_cmp(got_worktree_get_base_commit_id(worktree),
1402 507dc3bb 2018-12-29 stsp commit_id) != 0) {
1403 507dc3bb 2018-12-29 stsp error = got_worktree_set_base_commit_id(worktree, repo,
1404 507dc3bb 2018-12-29 stsp commit_id);
1405 507dc3bb 2018-12-29 stsp if (error)
1406 507dc3bb 2018-12-29 stsp goto done;
1407 507dc3bb 2018-12-29 stsp }
1408 507dc3bb 2018-12-29 stsp
1409 f2ea84fa 2019-07-27 stsp error = got_worktree_checkout_files(worktree, &paths, repo,
1410 6bad629b 2019-02-04 stsp update_progress, &did_something, check_cancelled, NULL);
1411 507dc3bb 2018-12-29 stsp if (error != NULL)
1412 507dc3bb 2018-12-29 stsp goto done;
1413 9c4b8182 2019-01-02 stsp
1414 784955db 2019-01-12 stsp if (did_something)
1415 784955db 2019-01-12 stsp printf("Updated to commit %s\n", commit_id_str);
1416 784955db 2019-01-12 stsp else
1417 784955db 2019-01-12 stsp printf("Already up-to-date\n");
1418 507dc3bb 2018-12-29 stsp done:
1419 c09a553d 2018-03-12 stsp free(worktree_path);
1420 f2ea84fa 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
1421 f2ea84fa 2019-07-27 stsp free((char *)pe->path);
1422 f2ea84fa 2019-07-27 stsp got_pathlist_free(&paths);
1423 507dc3bb 2018-12-29 stsp free(commit_id);
1424 9c4b8182 2019-01-02 stsp free(commit_id_str);
1425 c09a553d 2018-03-12 stsp return error;
1426 c09a553d 2018-03-12 stsp }
1427 c09a553d 2018-03-12 stsp
1428 f42b1b34 2018-03-12 stsp static const struct got_error *
1429 44392932 2019-08-25 stsp diff_blobs(struct got_object_id *blob_id1, struct got_object_id *blob_id2,
1430 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
1431 63035f9f 2019-10-06 stsp struct got_repository *repo)
1432 5c860e29 2018-03-12 stsp {
1433 f42b1b34 2018-03-12 stsp const struct got_error *err = NULL;
1434 44392932 2019-08-25 stsp struct got_blob_object *blob1 = NULL, *blob2 = NULL;
1435 79109fed 2018-03-27 stsp
1436 44392932 2019-08-25 stsp if (blob_id1) {
1437 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob1, repo, blob_id1, 8192);
1438 44392932 2019-08-25 stsp if (err)
1439 44392932 2019-08-25 stsp goto done;
1440 44392932 2019-08-25 stsp }
1441 79109fed 2018-03-27 stsp
1442 44392932 2019-08-25 stsp err = got_object_open_as_blob(&blob2, repo, blob_id2, 8192);
1443 44392932 2019-08-25 stsp if (err)
1444 44392932 2019-08-25 stsp goto done;
1445 79109fed 2018-03-27 stsp
1446 44392932 2019-08-25 stsp while (path[0] == '/')
1447 44392932 2019-08-25 stsp path++;
1448 44392932 2019-08-25 stsp err = got_diff_blob(blob1, blob2, path, path, diff_context,
1449 63035f9f 2019-10-06 stsp ignore_whitespace, stdout);
1450 44392932 2019-08-25 stsp done:
1451 44392932 2019-08-25 stsp if (blob1)
1452 44392932 2019-08-25 stsp got_object_blob_close(blob1);
1453 44392932 2019-08-25 stsp got_object_blob_close(blob2);
1454 44392932 2019-08-25 stsp return err;
1455 44392932 2019-08-25 stsp }
1456 44392932 2019-08-25 stsp
1457 44392932 2019-08-25 stsp static const struct got_error *
1458 44392932 2019-08-25 stsp diff_trees(struct got_object_id *tree_id1, struct got_object_id *tree_id2,
1459 63035f9f 2019-10-06 stsp const char *path, int diff_context, int ignore_whitespace,
1460 63035f9f 2019-10-06 stsp struct got_repository *repo)
1461 44392932 2019-08-25 stsp {
1462 44392932 2019-08-25 stsp const struct got_error *err = NULL;
1463 44392932 2019-08-25 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
1464 44392932 2019-08-25 stsp struct got_diff_blob_output_unidiff_arg arg;
1465 44392932 2019-08-25 stsp
1466 44392932 2019-08-25 stsp if (tree_id1) {
1467 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree1, repo, tree_id1);
1468 79109fed 2018-03-27 stsp if (err)
1469 44392932 2019-08-25 stsp goto done;
1470 79109fed 2018-03-27 stsp }
1471 79109fed 2018-03-27 stsp
1472 44392932 2019-08-25 stsp err = got_object_open_as_tree(&tree2, repo, tree_id2);
1473 0f2b3dca 2018-12-22 stsp if (err)
1474 0f2b3dca 2018-12-22 stsp goto done;
1475 0f2b3dca 2018-12-22 stsp
1476 aaa13589 2019-06-01 stsp arg.diff_context = diff_context;
1477 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
1478 aaa13589 2019-06-01 stsp arg.outfile = stdout;
1479 44392932 2019-08-25 stsp while (path[0] == '/')
1480 44392932 2019-08-25 stsp path++;
1481 44392932 2019-08-25 stsp err = got_diff_tree(tree1, tree2, path, path, repo,
1482 31b4484f 2019-07-27 stsp got_diff_blob_output_unidiff, &arg, 1);
1483 0f2b3dca 2018-12-22 stsp done:
1484 79109fed 2018-03-27 stsp if (tree1)
1485 79109fed 2018-03-27 stsp got_object_tree_close(tree1);
1486 366e0a5f 2019-10-10 stsp if (tree2)
1487 366e0a5f 2019-10-10 stsp got_object_tree_close(tree2);
1488 44392932 2019-08-25 stsp return err;
1489 44392932 2019-08-25 stsp }
1490 44392932 2019-08-25 stsp
1491 44392932 2019-08-25 stsp static const struct got_error *
1492 44392932 2019-08-25 stsp print_patch(struct got_commit_object *commit, struct got_object_id *id,
1493 44392932 2019-08-25 stsp const char *path, int diff_context, struct got_repository *repo)
1494 44392932 2019-08-25 stsp {
1495 44392932 2019-08-25 stsp const struct got_error *err = NULL;
1496 44392932 2019-08-25 stsp struct got_commit_object *pcommit = NULL;
1497 44392932 2019-08-25 stsp char *id_str1 = NULL, *id_str2 = NULL;
1498 44392932 2019-08-25 stsp struct got_object_id *obj_id1 = NULL, *obj_id2 = NULL;
1499 44392932 2019-08-25 stsp struct got_object_qid *qid;
1500 44392932 2019-08-25 stsp
1501 44392932 2019-08-25 stsp qid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
1502 44392932 2019-08-25 stsp if (qid != NULL) {
1503 44392932 2019-08-25 stsp err = got_object_open_as_commit(&pcommit, repo,
1504 44392932 2019-08-25 stsp qid->id);
1505 44392932 2019-08-25 stsp if (err)
1506 44392932 2019-08-25 stsp return err;
1507 44392932 2019-08-25 stsp }
1508 44392932 2019-08-25 stsp
1509 44392932 2019-08-25 stsp if (path && path[0] != '\0') {
1510 44392932 2019-08-25 stsp int obj_type;
1511 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id2, repo, id, path);
1512 44392932 2019-08-25 stsp if (err)
1513 44392932 2019-08-25 stsp goto done;
1514 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
1515 44392932 2019-08-25 stsp if (err) {
1516 44392932 2019-08-25 stsp free(obj_id2);
1517 44392932 2019-08-25 stsp goto done;
1518 44392932 2019-08-25 stsp }
1519 44392932 2019-08-25 stsp if (pcommit) {
1520 44392932 2019-08-25 stsp err = got_object_id_by_path(&obj_id1, repo,
1521 44392932 2019-08-25 stsp qid->id, path);
1522 44392932 2019-08-25 stsp if (err) {
1523 44392932 2019-08-25 stsp free(obj_id2);
1524 44392932 2019-08-25 stsp goto done;
1525 44392932 2019-08-25 stsp }
1526 44392932 2019-08-25 stsp err = got_object_id_str(&id_str1, obj_id1);
1527 44392932 2019-08-25 stsp if (err) {
1528 44392932 2019-08-25 stsp free(obj_id2);
1529 44392932 2019-08-25 stsp goto done;
1530 44392932 2019-08-25 stsp }
1531 44392932 2019-08-25 stsp }
1532 44392932 2019-08-25 stsp err = got_object_get_type(&obj_type, repo, obj_id2);
1533 44392932 2019-08-25 stsp if (err) {
1534 44392932 2019-08-25 stsp free(obj_id2);
1535 44392932 2019-08-25 stsp goto done;
1536 44392932 2019-08-25 stsp }
1537 44392932 2019-08-25 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
1538 44392932 2019-08-25 stsp switch (obj_type) {
1539 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_BLOB:
1540 44392932 2019-08-25 stsp err = diff_blobs(obj_id1, obj_id2, path, diff_context,
1541 63035f9f 2019-10-06 stsp 0, repo);
1542 44392932 2019-08-25 stsp break;
1543 44392932 2019-08-25 stsp case GOT_OBJ_TYPE_TREE:
1544 44392932 2019-08-25 stsp err = diff_trees(obj_id1, obj_id2, path, diff_context,
1545 63035f9f 2019-10-06 stsp 0, repo);
1546 44392932 2019-08-25 stsp break;
1547 44392932 2019-08-25 stsp default:
1548 44392932 2019-08-25 stsp err = got_error(GOT_ERR_OBJ_TYPE);
1549 44392932 2019-08-25 stsp break;
1550 44392932 2019-08-25 stsp }
1551 44392932 2019-08-25 stsp free(obj_id1);
1552 44392932 2019-08-25 stsp free(obj_id2);
1553 44392932 2019-08-25 stsp } else {
1554 44392932 2019-08-25 stsp obj_id2 = got_object_commit_get_tree_id(commit);
1555 44392932 2019-08-25 stsp err = got_object_id_str(&id_str2, obj_id2);
1556 44392932 2019-08-25 stsp if (err)
1557 44392932 2019-08-25 stsp goto done;
1558 44392932 2019-08-25 stsp obj_id1 = got_object_commit_get_tree_id(pcommit);
1559 44392932 2019-08-25 stsp err = got_object_id_str(&id_str1, obj_id1);
1560 44392932 2019-08-25 stsp if (err)
1561 44392932 2019-08-25 stsp goto done;
1562 44392932 2019-08-25 stsp printf("diff %s %s\n", id_str1 ? id_str1 : "/dev/null", id_str2);
1563 63035f9f 2019-10-06 stsp err = diff_trees(obj_id1, obj_id2, "", diff_context, 0, repo);
1564 44392932 2019-08-25 stsp }
1565 44392932 2019-08-25 stsp
1566 44392932 2019-08-25 stsp done:
1567 0f2b3dca 2018-12-22 stsp free(id_str1);
1568 0f2b3dca 2018-12-22 stsp free(id_str2);
1569 44392932 2019-08-25 stsp if (pcommit)
1570 44392932 2019-08-25 stsp got_object_commit_close(pcommit);
1571 79109fed 2018-03-27 stsp return err;
1572 79109fed 2018-03-27 stsp }
1573 79109fed 2018-03-27 stsp
1574 4bb494d5 2018-06-16 stsp static char *
1575 6c281f94 2018-06-11 stsp get_datestr(time_t *time, char *datebuf)
1576 6c281f94 2018-06-11 stsp {
1577 09867e48 2019-08-13 stsp struct tm mytm, *tm;
1578 09867e48 2019-08-13 stsp char *p, *s;
1579 09867e48 2019-08-13 stsp
1580 09867e48 2019-08-13 stsp tm = gmtime_r(time, &mytm);
1581 09867e48 2019-08-13 stsp if (tm == NULL)
1582 09867e48 2019-08-13 stsp return NULL;
1583 09867e48 2019-08-13 stsp s = asctime_r(tm, datebuf);
1584 09867e48 2019-08-13 stsp if (s == NULL)
1585 09867e48 2019-08-13 stsp return NULL;
1586 6c281f94 2018-06-11 stsp p = strchr(s, '\n');
1587 6c281f94 2018-06-11 stsp if (p)
1588 6c281f94 2018-06-11 stsp *p = '\0';
1589 6c281f94 2018-06-11 stsp return s;
1590 6c281f94 2018-06-11 stsp }
1591 dc424a06 2019-08-07 stsp
1592 dc424a06 2019-08-07 stsp #define GOT_COMMIT_SEP_STR "-----------------------------------------------\n"
1593 6c281f94 2018-06-11 stsp
1594 79109fed 2018-03-27 stsp static const struct got_error *
1595 79109fed 2018-03-27 stsp print_commit(struct got_commit_object *commit, struct got_object_id *id,
1596 44392932 2019-08-25 stsp struct got_repository *repo, const char *path, int show_patch,
1597 44392932 2019-08-25 stsp int diff_context, struct got_reflist_head *refs)
1598 79109fed 2018-03-27 stsp {
1599 79109fed 2018-03-27 stsp const struct got_error *err = NULL;
1600 621015ac 2018-07-23 stsp char *id_str, *datestr, *logmsg0, *logmsg, *line;
1601 6c281f94 2018-06-11 stsp char datebuf[26];
1602 45d799e2 2018-12-23 stsp time_t committer_time;
1603 45d799e2 2018-12-23 stsp const char *author, *committer;
1604 199a4027 2019-02-02 stsp char *refs_str = NULL;
1605 199a4027 2019-02-02 stsp struct got_reflist_entry *re;
1606 5c860e29 2018-03-12 stsp
1607 199a4027 2019-02-02 stsp SIMPLEQ_FOREACH(re, refs, entry) {
1608 199a4027 2019-02-02 stsp char *s;
1609 199a4027 2019-02-02 stsp const char *name;
1610 a436ad14 2019-08-13 stsp struct got_tag_object *tag = NULL;
1611 a436ad14 2019-08-13 stsp int cmp;
1612 a436ad14 2019-08-13 stsp
1613 199a4027 2019-02-02 stsp name = got_ref_get_name(re->ref);
1614 d9498b20 2019-02-05 stsp if (strcmp(name, GOT_REF_HEAD) == 0)
1615 d9498b20 2019-02-05 stsp continue;
1616 199a4027 2019-02-02 stsp if (strncmp(name, "refs/", 5) == 0)
1617 199a4027 2019-02-02 stsp name += 5;
1618 7143d404 2019-03-12 stsp if (strncmp(name, "got/", 4) == 0)
1619 7143d404 2019-03-12 stsp continue;
1620 e34f9ed6 2019-02-02 stsp if (strncmp(name, "heads/", 6) == 0)
1621 e34f9ed6 2019-02-02 stsp name += 6;
1622 141c2bff 2019-02-04 stsp if (strncmp(name, "remotes/", 8) == 0)
1623 141c2bff 2019-02-04 stsp name += 8;
1624 a436ad14 2019-08-13 stsp if (strncmp(name, "tags/", 5) == 0) {
1625 a436ad14 2019-08-13 stsp err = got_object_open_as_tag(&tag, repo, re->id);
1626 5d844a1e 2019-08-13 stsp if (err) {
1627 5d844a1e 2019-08-13 stsp if (err->code != GOT_ERR_OBJ_TYPE)
1628 5d844a1e 2019-08-13 stsp return err;
1629 5d844a1e 2019-08-13 stsp /* Ref points at something other than a tag. */
1630 5d844a1e 2019-08-13 stsp err = NULL;
1631 5d844a1e 2019-08-13 stsp tag = NULL;
1632 5d844a1e 2019-08-13 stsp }
1633 a436ad14 2019-08-13 stsp }
1634 a436ad14 2019-08-13 stsp cmp = got_object_id_cmp(tag ?
1635 a436ad14 2019-08-13 stsp got_object_tag_get_object_id(tag) : re->id, id);
1636 a436ad14 2019-08-13 stsp if (tag)
1637 a436ad14 2019-08-13 stsp got_object_tag_close(tag);
1638 a436ad14 2019-08-13 stsp if (cmp != 0)
1639 a436ad14 2019-08-13 stsp continue;
1640 199a4027 2019-02-02 stsp s = refs_str;
1641 199a4027 2019-02-02 stsp if (asprintf(&refs_str, "%s%s%s", s ? s : "", s ? ", " : "",
1642 199a4027 2019-02-02 stsp name) == -1) {
1643 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1644 199a4027 2019-02-02 stsp free(s);
1645 34ca4898 2019-08-13 stsp return err;
1646 199a4027 2019-02-02 stsp }
1647 199a4027 2019-02-02 stsp free(s);
1648 199a4027 2019-02-02 stsp }
1649 832c249c 2018-06-10 stsp err = got_object_id_str(&id_str, id);
1650 8bf5b3c9 2018-03-17 stsp if (err)
1651 8bf5b3c9 2018-03-17 stsp return err;
1652 788c352e 2018-06-16 stsp
1653 dc424a06 2019-08-07 stsp printf(GOT_COMMIT_SEP_STR);
1654 199a4027 2019-02-02 stsp printf("commit %s%s%s%s\n", id_str, refs_str ? " (" : "",
1655 199a4027 2019-02-02 stsp refs_str ? refs_str : "", refs_str ? ")" : "");
1656 832c249c 2018-06-10 stsp free(id_str);
1657 d3d493d7 2019-02-21 stsp id_str = NULL;
1658 d3d493d7 2019-02-21 stsp free(refs_str);
1659 d3d493d7 2019-02-21 stsp refs_str = NULL;
1660 45d799e2 2018-12-23 stsp printf("from: %s\n", got_object_commit_get_author(commit));
1661 45d799e2 2018-12-23 stsp committer_time = got_object_commit_get_committer_time(commit);
1662 45d799e2 2018-12-23 stsp datestr = get_datestr(&committer_time, datebuf);
1663 09867e48 2019-08-13 stsp if (datestr)
1664 09867e48 2019-08-13 stsp printf("date: %s UTC\n", datestr);
1665 45d799e2 2018-12-23 stsp author = got_object_commit_get_author(commit);
1666 45d799e2 2018-12-23 stsp committer = got_object_commit_get_committer(commit);
1667 45d799e2 2018-12-23 stsp if (strcmp(author, committer) != 0)
1668 45d799e2 2018-12-23 stsp printf("via: %s\n", committer);
1669 45d799e2 2018-12-23 stsp if (got_object_commit_get_nparents(commit) > 1) {
1670 45d799e2 2018-12-23 stsp const struct got_object_id_queue *parent_ids;
1671 79f35eb3 2018-06-11 stsp struct got_object_qid *qid;
1672 3fe1abad 2018-06-10 stsp int n = 1;
1673 45d799e2 2018-12-23 stsp parent_ids = got_object_commit_get_parent_ids(commit);
1674 45d799e2 2018-12-23 stsp SIMPLEQ_FOREACH(qid, parent_ids, entry) {
1675 79f35eb3 2018-06-11 stsp err = got_object_id_str(&id_str, qid->id);
1676 a0603db2 2018-06-10 stsp if (err)
1677 a0603db2 2018-06-10 stsp return err;
1678 3fe1abad 2018-06-10 stsp printf("parent %d: %s\n", n++, id_str);
1679 a0603db2 2018-06-10 stsp free(id_str);
1680 a0603db2 2018-06-10 stsp }
1681 a0603db2 2018-06-10 stsp }
1682 832c249c 2018-06-10 stsp
1683 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
1684 5943eee2 2019-08-13 stsp if (err)
1685 5943eee2 2019-08-13 stsp return err;
1686 8bf5b3c9 2018-03-17 stsp
1687 621015ac 2018-07-23 stsp logmsg = logmsg0;
1688 832c249c 2018-06-10 stsp do {
1689 832c249c 2018-06-10 stsp line = strsep(&logmsg, "\n");
1690 832c249c 2018-06-10 stsp if (line)
1691 832c249c 2018-06-10 stsp printf(" %s\n", line);
1692 832c249c 2018-06-10 stsp } while (line);
1693 621015ac 2018-07-23 stsp free(logmsg0);
1694 832c249c 2018-06-10 stsp
1695 971751ac 2018-03-27 stsp if (show_patch) {
1696 44392932 2019-08-25 stsp err = print_patch(commit, id, path, diff_context, repo);
1697 971751ac 2018-03-27 stsp if (err == 0)
1698 971751ac 2018-03-27 stsp printf("\n");
1699 971751ac 2018-03-27 stsp }
1700 07862c20 2018-09-15 stsp
1701 cbe7f848 2019-02-11 stsp if (fflush(stdout) != 0 && err == NULL)
1702 638f9024 2019-05-13 stsp err = got_error_from_errno("fflush");
1703 07862c20 2018-09-15 stsp return err;
1704 f42b1b34 2018-03-12 stsp }
1705 5c860e29 2018-03-12 stsp
1706 f42b1b34 2018-03-12 stsp static const struct got_error *
1707 15a94983 2018-12-23 stsp print_commits(struct got_object_id *root_id, struct got_repository *repo,
1708 15a94983 2018-12-23 stsp char *path, int show_patch, int diff_context, int limit,
1709 199a4027 2019-02-02 stsp int first_parent_traversal, struct got_reflist_head *refs)
1710 f42b1b34 2018-03-12 stsp {
1711 f42b1b34 2018-03-12 stsp const struct got_error *err;
1712 372ccdbb 2018-06-10 stsp struct got_commit_graph *graph;
1713 372ccdbb 2018-06-10 stsp
1714 31cedeaf 2018-09-15 stsp err = got_commit_graph_open(&graph, root_id, path,
1715 31cedeaf 2018-09-15 stsp first_parent_traversal, repo);
1716 f42b1b34 2018-03-12 stsp if (err)
1717 f42b1b34 2018-03-12 stsp return err;
1718 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, root_id, repo,
1719 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
1720 372ccdbb 2018-06-10 stsp if (err)
1721 fcc85cad 2018-07-22 stsp goto done;
1722 656b1f76 2019-05-11 jcs for (;;) {
1723 372ccdbb 2018-06-10 stsp struct got_commit_object *commit;
1724 372ccdbb 2018-06-10 stsp struct got_object_id *id;
1725 8bf5b3c9 2018-03-17 stsp
1726 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
1727 84453469 2018-11-11 stsp break;
1728 84453469 2018-11-11 stsp
1729 b43fbaa0 2018-06-11 stsp err = got_commit_graph_iter_next(&id, graph);
1730 372ccdbb 2018-06-10 stsp if (err) {
1731 9ba79e04 2018-06-11 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
1732 9ba79e04 2018-06-11 stsp err = NULL;
1733 9ba79e04 2018-06-11 stsp break;
1734 9ba79e04 2018-06-11 stsp }
1735 372ccdbb 2018-06-10 stsp if (err->code != GOT_ERR_ITER_NEED_MORE)
1736 372ccdbb 2018-06-10 stsp break;
1737 6fb7cd11 2019-08-22 stsp err = got_commit_graph_fetch_commits(graph, 1, repo,
1738 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
1739 372ccdbb 2018-06-10 stsp if (err)
1740 372ccdbb 2018-06-10 stsp break;
1741 372ccdbb 2018-06-10 stsp else
1742 372ccdbb 2018-06-10 stsp continue;
1743 7e665116 2018-04-02 stsp }
1744 b43fbaa0 2018-06-11 stsp if (id == NULL)
1745 7e665116 2018-04-02 stsp break;
1746 b43fbaa0 2018-06-11 stsp
1747 f8e900f3 2018-06-11 stsp err = got_object_open_as_commit(&commit, repo, id);
1748 b43fbaa0 2018-06-11 stsp if (err)
1749 fcc85cad 2018-07-22 stsp break;
1750 44392932 2019-08-25 stsp err = print_commit(commit, id, repo, path, show_patch,
1751 44392932 2019-08-25 stsp diff_context, refs);
1752 b43fbaa0 2018-06-11 stsp got_object_commit_close(commit);
1753 372ccdbb 2018-06-10 stsp if (err || (limit && --limit == 0))
1754 7e665116 2018-04-02 stsp break;
1755 31cedeaf 2018-09-15 stsp }
1756 fcc85cad 2018-07-22 stsp done:
1757 372ccdbb 2018-06-10 stsp got_commit_graph_close(graph);
1758 f42b1b34 2018-03-12 stsp return err;
1759 f42b1b34 2018-03-12 stsp }
1760 5c860e29 2018-03-12 stsp
1761 4ed7e80c 2018-05-20 stsp __dead static void
1762 6f3d1eb0 2018-03-12 stsp usage_log(void)
1763 6f3d1eb0 2018-03-12 stsp {
1764 cc54c501 2019-07-15 stsp fprintf(stderr, "usage: %s log [-c commit] [-C number] [-f] [ -l N ] [-p] "
1765 04ca23f4 2018-07-16 stsp "[-r repository-path] [path]\n", getprogname());
1766 6f3d1eb0 2018-03-12 stsp exit(1);
1767 b1ebc001 2019-08-13 stsp }
1768 b1ebc001 2019-08-13 stsp
1769 b1ebc001 2019-08-13 stsp static int
1770 b1ebc001 2019-08-13 stsp get_default_log_limit(void)
1771 b1ebc001 2019-08-13 stsp {
1772 b1ebc001 2019-08-13 stsp const char *got_default_log_limit;
1773 b1ebc001 2019-08-13 stsp long long n;
1774 b1ebc001 2019-08-13 stsp const char *errstr;
1775 b1ebc001 2019-08-13 stsp
1776 b1ebc001 2019-08-13 stsp got_default_log_limit = getenv("GOT_LOG_DEFAULT_LIMIT");
1777 b1ebc001 2019-08-13 stsp if (got_default_log_limit == NULL)
1778 b1ebc001 2019-08-13 stsp return 0;
1779 b1ebc001 2019-08-13 stsp n = strtonum(got_default_log_limit, 0, INT_MAX, &errstr);
1780 b1ebc001 2019-08-13 stsp if (errstr != NULL)
1781 b1ebc001 2019-08-13 stsp return 0;
1782 b1ebc001 2019-08-13 stsp return n;
1783 6f3d1eb0 2018-03-12 stsp }
1784 6f3d1eb0 2018-03-12 stsp
1785 4ed7e80c 2018-05-20 stsp static const struct got_error *
1786 f42b1b34 2018-03-12 stsp cmd_log(int argc, char *argv[])
1787 f42b1b34 2018-03-12 stsp {
1788 f42b1b34 2018-03-12 stsp const struct got_error *error;
1789 04ca23f4 2018-07-16 stsp struct got_repository *repo = NULL;
1790 cffc0aa4 2019-02-05 stsp struct got_worktree *worktree = NULL;
1791 15a94983 2018-12-23 stsp struct got_commit_object *commit = NULL;
1792 3235492e 2018-04-01 stsp struct got_object_id *id = NULL;
1793 04ca23f4 2018-07-16 stsp char *repo_path = NULL, *path = NULL, *cwd = NULL, *in_repo_path = NULL;
1794 d142fc45 2018-04-01 stsp char *start_commit = NULL;
1795 c0cc5c62 2018-10-18 stsp int diff_context = 3, ch;
1796 1fd6d7ea 2018-06-13 stsp int show_patch = 0, limit = 0, first_parent_traversal = 0;
1797 64a96a6d 2018-04-01 stsp const char *errstr;
1798 199a4027 2019-02-02 stsp struct got_reflist_head refs;
1799 1b3893a2 2019-03-18 stsp
1800 1b3893a2 2019-03-18 stsp SIMPLEQ_INIT(&refs);
1801 5c860e29 2018-03-12 stsp
1802 6715a751 2018-03-16 stsp #ifndef PROFILE
1803 6098196c 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
1804 6098196c 2019-01-04 stsp NULL)
1805 ad242220 2018-09-08 stsp == -1)
1806 f42b1b34 2018-03-12 stsp err(1, "pledge");
1807 6715a751 2018-03-16 stsp #endif
1808 79109fed 2018-03-27 stsp
1809 b1ebc001 2019-08-13 stsp limit = get_default_log_limit();
1810 b1ebc001 2019-08-13 stsp
1811 cc54c501 2019-07-15 stsp while ((ch = getopt(argc, argv, "b:pc:C:l:fr:")) != -1) {
1812 79109fed 2018-03-27 stsp switch (ch) {
1813 79109fed 2018-03-27 stsp case 'p':
1814 79109fed 2018-03-27 stsp show_patch = 1;
1815 d142fc45 2018-04-01 stsp break;
1816 d142fc45 2018-04-01 stsp case 'c':
1817 d142fc45 2018-04-01 stsp start_commit = optarg;
1818 64a96a6d 2018-04-01 stsp break;
1819 c0cc5c62 2018-10-18 stsp case 'C':
1820 4a8520aa 2018-10-18 stsp diff_context = strtonum(optarg, 0, GOT_DIFF_MAX_CONTEXT,
1821 4a8520aa 2018-10-18 stsp &errstr);
1822 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
1823 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
1824 c0cc5c62 2018-10-18 stsp break;
1825 64a96a6d 2018-04-01 stsp case 'l':
1826 b1ebc001 2019-08-13 stsp limit = strtonum(optarg, 0, INT_MAX, &errstr);
1827 64a96a6d 2018-04-01 stsp if (errstr != NULL)
1828 64a96a6d 2018-04-01 stsp err(1, "-l option %s", errstr);
1829 cc54c501 2019-07-15 stsp break;
1830 cc54c501 2019-07-15 stsp case 'f':
1831 cc54c501 2019-07-15 stsp first_parent_traversal = 1;
1832 a0603db2 2018-06-10 stsp break;
1833 04ca23f4 2018-07-16 stsp case 'r':
1834 04ca23f4 2018-07-16 stsp repo_path = realpath(optarg, NULL);
1835 04ca23f4 2018-07-16 stsp if (repo_path == NULL)
1836 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
1837 9ba1d308 2019-10-21 stsp optarg);
1838 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
1839 04ca23f4 2018-07-16 stsp break;
1840 79109fed 2018-03-27 stsp default:
1841 2deda0b9 2019-03-07 stsp usage_log();
1842 79109fed 2018-03-27 stsp /* NOTREACHED */
1843 79109fed 2018-03-27 stsp }
1844 79109fed 2018-03-27 stsp }
1845 79109fed 2018-03-27 stsp
1846 79109fed 2018-03-27 stsp argc -= optind;
1847 79109fed 2018-03-27 stsp argv += optind;
1848 f42b1b34 2018-03-12 stsp
1849 04ca23f4 2018-07-16 stsp cwd = getcwd(NULL, 0);
1850 04ca23f4 2018-07-16 stsp if (cwd == NULL) {
1851 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
1852 04ca23f4 2018-07-16 stsp goto done;
1853 04ca23f4 2018-07-16 stsp }
1854 cffc0aa4 2019-02-05 stsp
1855 cffc0aa4 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
1856 cffc0aa4 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
1857 cffc0aa4 2019-02-05 stsp goto done;
1858 cffc0aa4 2019-02-05 stsp error = NULL;
1859 cffc0aa4 2019-02-05 stsp
1860 e7301579 2019-03-18 stsp if (argc == 0) {
1861 cbd1af7a 2019-03-18 stsp path = strdup("");
1862 e7301579 2019-03-18 stsp if (path == NULL) {
1863 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1864 cbd1af7a 2019-03-18 stsp goto done;
1865 e7301579 2019-03-18 stsp }
1866 e7301579 2019-03-18 stsp } else if (argc == 1) {
1867 e7301579 2019-03-18 stsp if (worktree) {
1868 e7301579 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
1869 e7301579 2019-03-18 stsp argv[0]);
1870 e7301579 2019-03-18 stsp if (error)
1871 e7301579 2019-03-18 stsp goto done;
1872 e7301579 2019-03-18 stsp } else {
1873 e7301579 2019-03-18 stsp path = strdup(argv[0]);
1874 e7301579 2019-03-18 stsp if (path == NULL) {
1875 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1876 e7301579 2019-03-18 stsp goto done;
1877 e7301579 2019-03-18 stsp }
1878 e7301579 2019-03-18 stsp }
1879 cbd1af7a 2019-03-18 stsp } else
1880 cbd1af7a 2019-03-18 stsp usage_log();
1881 cbd1af7a 2019-03-18 stsp
1882 5486daa2 2019-05-11 stsp if (repo_path == NULL) {
1883 5486daa2 2019-05-11 stsp repo_path = worktree ?
1884 5486daa2 2019-05-11 stsp strdup(got_worktree_get_repo_path(worktree)) : strdup(cwd);
1885 5486daa2 2019-05-11 stsp }
1886 04ca23f4 2018-07-16 stsp if (repo_path == NULL) {
1887 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
1888 cffc0aa4 2019-02-05 stsp goto done;
1889 04ca23f4 2018-07-16 stsp }
1890 6098196c 2019-01-04 stsp
1891 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
1892 d7d4f210 2018-03-12 stsp if (error != NULL)
1893 04ca23f4 2018-07-16 stsp goto done;
1894 f42b1b34 2018-03-12 stsp
1895 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
1896 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
1897 c02c541e 2019-03-29 stsp if (error)
1898 c02c541e 2019-03-29 stsp goto done;
1899 c02c541e 2019-03-29 stsp
1900 d142fc45 2018-04-01 stsp if (start_commit == NULL) {
1901 3235492e 2018-04-01 stsp struct got_reference *head_ref;
1902 1cc14b9f 2019-05-14 stsp error = got_ref_open(&head_ref, repo,
1903 1cc14b9f 2019-05-14 stsp worktree ? got_worktree_get_head_ref_name(worktree)
1904 1cc14b9f 2019-05-14 stsp : GOT_REF_HEAD, 0);
1905 3235492e 2018-04-01 stsp if (error != NULL)
1906 3235492e 2018-04-01 stsp return error;
1907 3235492e 2018-04-01 stsp error = got_ref_resolve(&id, repo, head_ref);
1908 3235492e 2018-04-01 stsp got_ref_close(head_ref);
1909 3235492e 2018-04-01 stsp if (error != NULL)
1910 3235492e 2018-04-01 stsp return error;
1911 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1912 3235492e 2018-04-01 stsp } else {
1913 d1f2edc9 2018-06-13 stsp struct got_reference *ref;
1914 2f17228e 2019-05-12 stsp error = got_ref_open(&ref, repo, start_commit, 0);
1915 3235492e 2018-04-01 stsp if (error == NULL) {
1916 1caad61b 2019-02-01 stsp int obj_type;
1917 d1f2edc9 2018-06-13 stsp error = got_ref_resolve(&id, repo, ref);
1918 d1f2edc9 2018-06-13 stsp got_ref_close(ref);
1919 d1f2edc9 2018-06-13 stsp if (error != NULL)
1920 1caad61b 2019-02-01 stsp goto done;
1921 1caad61b 2019-02-01 stsp error = got_object_get_type(&obj_type, repo, id);
1922 1caad61b 2019-02-01 stsp if (error != NULL)
1923 1caad61b 2019-02-01 stsp goto done;
1924 1caad61b 2019-02-01 stsp if (obj_type == GOT_OBJ_TYPE_TAG) {
1925 1caad61b 2019-02-01 stsp struct got_tag_object *tag;
1926 1caad61b 2019-02-01 stsp error = got_object_open_as_tag(&tag, repo, id);
1927 1caad61b 2019-02-01 stsp if (error != NULL)
1928 1caad61b 2019-02-01 stsp goto done;
1929 1caad61b 2019-02-01 stsp if (got_object_tag_get_object_type(tag) !=
1930 1caad61b 2019-02-01 stsp GOT_OBJ_TYPE_COMMIT) {
1931 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1932 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1933 1caad61b 2019-02-01 stsp goto done;
1934 1caad61b 2019-02-01 stsp }
1935 1caad61b 2019-02-01 stsp free(id);
1936 1caad61b 2019-02-01 stsp id = got_object_id_dup(
1937 1caad61b 2019-02-01 stsp got_object_tag_get_object_id(tag));
1938 1caad61b 2019-02-01 stsp if (id == NULL)
1939 638f9024 2019-05-13 stsp error = got_error_from_errno(
1940 230a42bd 2019-05-11 jcs "got_object_id_dup");
1941 1caad61b 2019-02-01 stsp got_object_tag_close(tag);
1942 1caad61b 2019-02-01 stsp if (error)
1943 1caad61b 2019-02-01 stsp goto done;
1944 1caad61b 2019-02-01 stsp } else if (obj_type != GOT_OBJ_TYPE_COMMIT) {
1945 1caad61b 2019-02-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
1946 1caad61b 2019-02-01 stsp goto done;
1947 1caad61b 2019-02-01 stsp }
1948 15a94983 2018-12-23 stsp error = got_object_open_as_commit(&commit, repo, id);
1949 d1f2edc9 2018-06-13 stsp if (error != NULL)
1950 1caad61b 2019-02-01 stsp goto done;
1951 d1f2edc9 2018-06-13 stsp }
1952 15a94983 2018-12-23 stsp if (commit == NULL) {
1953 e09a504c 2019-06-28 stsp error = got_repo_match_object_id_prefix(&id,
1954 dd88155e 2019-06-29 stsp start_commit, GOT_OBJ_TYPE_COMMIT, repo);
1955 d1f2edc9 2018-06-13 stsp if (error != NULL)
1956 d1f2edc9 2018-06-13 stsp return error;
1957 3235492e 2018-04-01 stsp }
1958 3235492e 2018-04-01 stsp }
1959 d7d4f210 2018-03-12 stsp if (error != NULL)
1960 04ca23f4 2018-07-16 stsp goto done;
1961 04ca23f4 2018-07-16 stsp
1962 deeabeae 2019-08-27 stsp if (worktree) {
1963 deeabeae 2019-08-27 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
1964 deeabeae 2019-08-27 stsp char *p;
1965 deeabeae 2019-08-27 stsp if (asprintf(&p, "%s%s%s", prefix,
1966 deeabeae 2019-08-27 stsp (strcmp(prefix, "/") != 0) ? "/" : "", path) == -1) {
1967 deeabeae 2019-08-27 stsp error = got_error_from_errno("asprintf");
1968 deeabeae 2019-08-27 stsp goto done;
1969 deeabeae 2019-08-27 stsp }
1970 deeabeae 2019-08-27 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
1971 deeabeae 2019-08-27 stsp free(p);
1972 deeabeae 2019-08-27 stsp } else
1973 deeabeae 2019-08-27 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
1974 04ca23f4 2018-07-16 stsp if (error != NULL)
1975 04ca23f4 2018-07-16 stsp goto done;
1976 04ca23f4 2018-07-16 stsp if (in_repo_path) {
1977 04ca23f4 2018-07-16 stsp free(path);
1978 04ca23f4 2018-07-16 stsp path = in_repo_path;
1979 04ca23f4 2018-07-16 stsp }
1980 199a4027 2019-02-02 stsp
1981 b8bad2ba 2019-08-23 stsp error = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
1982 199a4027 2019-02-02 stsp if (error)
1983 199a4027 2019-02-02 stsp goto done;
1984 04ca23f4 2018-07-16 stsp
1985 15a94983 2018-12-23 stsp error = print_commits(id, repo, path, show_patch,
1986 199a4027 2019-02-02 stsp diff_context, limit, first_parent_traversal, &refs);
1987 04ca23f4 2018-07-16 stsp done:
1988 04ca23f4 2018-07-16 stsp free(path);
1989 04ca23f4 2018-07-16 stsp free(repo_path);
1990 04ca23f4 2018-07-16 stsp free(cwd);
1991 f42b1b34 2018-03-12 stsp free(id);
1992 cffc0aa4 2019-02-05 stsp if (worktree)
1993 cffc0aa4 2019-02-05 stsp got_worktree_close(worktree);
1994 ad242220 2018-09-08 stsp if (repo) {
1995 ad242220 2018-09-08 stsp const struct got_error *repo_error;
1996 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
1997 ad242220 2018-09-08 stsp if (error == NULL)
1998 ad242220 2018-09-08 stsp error = repo_error;
1999 ad242220 2018-09-08 stsp }
2000 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
2001 8bf5b3c9 2018-03-17 stsp return error;
2002 5c860e29 2018-03-12 stsp }
2003 5c860e29 2018-03-12 stsp
2004 4ed7e80c 2018-05-20 stsp __dead static void
2005 3f8b7d6a 2018-04-01 stsp usage_diff(void)
2006 3f8b7d6a 2018-04-01 stsp {
2007 98eaaa12 2019-08-03 stsp fprintf(stderr, "usage: %s diff [-C number] [-r repository-path] [-s] "
2008 63035f9f 2019-10-06 stsp "[-w] [object1 object2 | path]\n", getprogname());
2009 3f8b7d6a 2018-04-01 stsp exit(1);
2010 b00d56cd 2018-04-01 stsp }
2011 b00d56cd 2018-04-01 stsp
2012 b72f483a 2019-02-05 stsp struct print_diff_arg {
2013 b72f483a 2019-02-05 stsp struct got_repository *repo;
2014 b72f483a 2019-02-05 stsp struct got_worktree *worktree;
2015 b72f483a 2019-02-05 stsp int diff_context;
2016 3fc0c068 2019-02-10 stsp const char *id_str;
2017 3fc0c068 2019-02-10 stsp int header_shown;
2018 98eaaa12 2019-08-03 stsp int diff_staged;
2019 63035f9f 2019-10-06 stsp int ignore_whitespace;
2020 b72f483a 2019-02-05 stsp };
2021 b72f483a 2019-02-05 stsp
2022 4ed7e80c 2018-05-20 stsp static const struct got_error *
2023 88d0e355 2019-08-03 stsp print_diff(void *arg, unsigned char status, unsigned char staged_status,
2024 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
2025 537ac44b 2019-08-03 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id)
2026 b72f483a 2019-02-05 stsp {
2027 b72f483a 2019-02-05 stsp struct print_diff_arg *a = arg;
2028 b72f483a 2019-02-05 stsp const struct got_error *err = NULL;
2029 b72f483a 2019-02-05 stsp struct got_blob_object *blob1 = NULL;
2030 b72f483a 2019-02-05 stsp FILE *f2 = NULL;
2031 4ce46740 2019-08-08 stsp char *abspath = NULL, *label1 = NULL;
2032 b72f483a 2019-02-05 stsp struct stat sb;
2033 b72f483a 2019-02-05 stsp
2034 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
2035 98eaaa12 2019-08-03 stsp if (staged_status != GOT_STATUS_MODIFY &&
2036 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_ADD &&
2037 98eaaa12 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
2038 98eaaa12 2019-08-03 stsp return NULL;
2039 98eaaa12 2019-08-03 stsp } else {
2040 98eaaa12 2019-08-03 stsp if (staged_status == GOT_STATUS_DELETE)
2041 98eaaa12 2019-08-03 stsp return NULL;
2042 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
2043 2a06fe5f 2019-08-24 stsp return got_error_set_errno(ENOENT, path);
2044 98eaaa12 2019-08-03 stsp if (status != GOT_STATUS_MODIFY &&
2045 98eaaa12 2019-08-03 stsp status != GOT_STATUS_ADD &&
2046 98eaaa12 2019-08-03 stsp status != GOT_STATUS_DELETE &&
2047 98eaaa12 2019-08-03 stsp status != GOT_STATUS_CONFLICT)
2048 98eaaa12 2019-08-03 stsp return NULL;
2049 98eaaa12 2019-08-03 stsp }
2050 3fc0c068 2019-02-10 stsp
2051 3fc0c068 2019-02-10 stsp if (!a->header_shown) {
2052 98eaaa12 2019-08-03 stsp printf("diff %s %s%s\n", a->id_str,
2053 98eaaa12 2019-08-03 stsp got_worktree_get_root_path(a->worktree),
2054 98eaaa12 2019-08-03 stsp a->diff_staged ? " (staged changes)" : "");
2055 3fc0c068 2019-02-10 stsp a->header_shown = 1;
2056 3fc0c068 2019-02-10 stsp }
2057 b72f483a 2019-02-05 stsp
2058 98eaaa12 2019-08-03 stsp if (a->diff_staged) {
2059 98eaaa12 2019-08-03 stsp const char *label1 = NULL, *label2 = NULL;
2060 98eaaa12 2019-08-03 stsp switch (staged_status) {
2061 98eaaa12 2019-08-03 stsp case GOT_STATUS_MODIFY:
2062 98eaaa12 2019-08-03 stsp label1 = path;
2063 98eaaa12 2019-08-03 stsp label2 = path;
2064 98eaaa12 2019-08-03 stsp break;
2065 98eaaa12 2019-08-03 stsp case GOT_STATUS_ADD:
2066 98eaaa12 2019-08-03 stsp label2 = path;
2067 98eaaa12 2019-08-03 stsp break;
2068 98eaaa12 2019-08-03 stsp case GOT_STATUS_DELETE:
2069 98eaaa12 2019-08-03 stsp label1 = path;
2070 98eaaa12 2019-08-03 stsp break;
2071 98eaaa12 2019-08-03 stsp default:
2072 98eaaa12 2019-08-03 stsp return got_error(GOT_ERR_FILE_STATUS);
2073 98eaaa12 2019-08-03 stsp }
2074 98eaaa12 2019-08-03 stsp return got_diff_objects_as_blobs(blob_id, staged_blob_id,
2075 63035f9f 2019-10-06 stsp label1, label2, a->diff_context, a->ignore_whitespace,
2076 63035f9f 2019-10-06 stsp a->repo, stdout);
2077 98eaaa12 2019-08-03 stsp }
2078 98eaaa12 2019-08-03 stsp
2079 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
2080 4ce46740 2019-08-08 stsp staged_status == GOT_STATUS_MODIFY) {
2081 4ce46740 2019-08-08 stsp char *id_str;
2082 408b4ebc 2019-08-03 stsp err = got_object_open_as_blob(&blob1, a->repo, staged_blob_id,
2083 408b4ebc 2019-08-03 stsp 8192);
2084 4ce46740 2019-08-08 stsp if (err)
2085 4ce46740 2019-08-08 stsp goto done;
2086 4ce46740 2019-08-08 stsp err = got_object_id_str(&id_str, staged_blob_id);
2087 4ce46740 2019-08-08 stsp if (err)
2088 4ce46740 2019-08-08 stsp goto done;
2089 4ce46740 2019-08-08 stsp if (asprintf(&label1, "%s (staged)", id_str) == -1) {
2090 4ce46740 2019-08-08 stsp err = got_error_from_errno("asprintf");
2091 4ce46740 2019-08-08 stsp free(id_str);
2092 4ce46740 2019-08-08 stsp goto done;
2093 4ce46740 2019-08-08 stsp }
2094 4ce46740 2019-08-08 stsp free(id_str);
2095 4ce46740 2019-08-08 stsp } else if (status != GOT_STATUS_ADD) {
2096 016a88dd 2019-05-13 stsp err = got_object_open_as_blob(&blob1, a->repo, blob_id, 8192);
2097 4ce46740 2019-08-08 stsp if (err)
2098 4ce46740 2019-08-08 stsp goto done;
2099 4ce46740 2019-08-08 stsp }
2100 d00136be 2019-03-26 stsp
2101 7154f6ce 2019-03-27 stsp if (status != GOT_STATUS_DELETE) {
2102 2ec1f75b 2019-03-26 stsp if (asprintf(&abspath, "%s/%s",
2103 2ec1f75b 2019-03-26 stsp got_worktree_get_root_path(a->worktree), path) == -1) {
2104 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2105 2ec1f75b 2019-03-26 stsp goto done;
2106 2ec1f75b 2019-03-26 stsp }
2107 b72f483a 2019-02-05 stsp
2108 2ec1f75b 2019-03-26 stsp f2 = fopen(abspath, "r");
2109 2ec1f75b 2019-03-26 stsp if (f2 == NULL) {
2110 638f9024 2019-05-13 stsp err = got_error_from_errno2("fopen", abspath);
2111 2ec1f75b 2019-03-26 stsp goto done;
2112 2ec1f75b 2019-03-26 stsp }
2113 2ec1f75b 2019-03-26 stsp if (lstat(abspath, &sb) == -1) {
2114 638f9024 2019-05-13 stsp err = got_error_from_errno2("lstat", abspath);
2115 2ec1f75b 2019-03-26 stsp goto done;
2116 2ec1f75b 2019-03-26 stsp }
2117 2ec1f75b 2019-03-26 stsp } else
2118 2ec1f75b 2019-03-26 stsp sb.st_size = 0;
2119 b72f483a 2019-02-05 stsp
2120 4ce46740 2019-08-08 stsp err = got_diff_blob_file(blob1, label1, f2, sb.st_size, path,
2121 63035f9f 2019-10-06 stsp a->diff_context, a->ignore_whitespace, stdout);
2122 b72f483a 2019-02-05 stsp done:
2123 b72f483a 2019-02-05 stsp if (blob1)
2124 b72f483a 2019-02-05 stsp got_object_blob_close(blob1);
2125 fb43ecf1 2019-02-11 stsp if (f2 && fclose(f2) != 0 && err == NULL)
2126 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
2127 b72f483a 2019-02-05 stsp free(abspath);
2128 927df6b7 2019-02-10 stsp return err;
2129 927df6b7 2019-02-10 stsp }
2130 927df6b7 2019-02-10 stsp
2131 927df6b7 2019-02-10 stsp static const struct got_error *
2132 0adb7196 2019-08-11 stsp match_object_id(struct got_object_id **id, char **label,
2133 01073a5d 2019-08-22 stsp const char *id_str, int obj_type, int resolve_tags,
2134 01073a5d 2019-08-22 stsp struct got_repository *repo)
2135 0adb7196 2019-08-11 stsp {
2136 0adb7196 2019-08-11 stsp const struct got_error *err;
2137 d24820bf 2019-08-11 stsp struct got_tag_object *tag;
2138 0adb7196 2019-08-11 stsp struct got_reference *ref = NULL;
2139 0adb7196 2019-08-11 stsp
2140 0adb7196 2019-08-11 stsp *id = NULL;
2141 0adb7196 2019-08-11 stsp *label = NULL;
2142 d24820bf 2019-08-11 stsp
2143 01073a5d 2019-08-22 stsp if (resolve_tags) {
2144 01073a5d 2019-08-22 stsp err = got_repo_object_match_tag(&tag, id_str, GOT_OBJ_TYPE_ANY,
2145 01073a5d 2019-08-22 stsp repo);
2146 01073a5d 2019-08-22 stsp if (err == NULL) {
2147 01073a5d 2019-08-22 stsp *id = got_object_id_dup(
2148 01073a5d 2019-08-22 stsp got_object_tag_get_object_id(tag));
2149 01073a5d 2019-08-22 stsp if (*id == NULL)
2150 01073a5d 2019-08-22 stsp err = got_error_from_errno("got_object_id_dup");
2151 01073a5d 2019-08-22 stsp else if (asprintf(label, "refs/tags/%s",
2152 01073a5d 2019-08-22 stsp got_object_tag_get_name(tag)) == -1) {
2153 01073a5d 2019-08-22 stsp err = got_error_from_errno("asprintf");
2154 32f0ab81 2019-08-28 hiltjo free(*id);
2155 01073a5d 2019-08-22 stsp *id = NULL;
2156 01073a5d 2019-08-22 stsp }
2157 01073a5d 2019-08-22 stsp got_object_tag_close(tag);
2158 01073a5d 2019-08-22 stsp return err;
2159 01073a5d 2019-08-22 stsp } else if (err->code != GOT_ERR_NO_OBJ)
2160 01073a5d 2019-08-22 stsp return err;
2161 01073a5d 2019-08-22 stsp }
2162 0adb7196 2019-08-11 stsp
2163 0adb7196 2019-08-11 stsp err = got_repo_match_object_id_prefix(id, id_str, obj_type, repo);
2164 0adb7196 2019-08-11 stsp if (err) {
2165 0adb7196 2019-08-11 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
2166 0adb7196 2019-08-11 stsp return err;
2167 0adb7196 2019-08-11 stsp err = got_ref_open(&ref, repo, id_str, 0);
2168 0adb7196 2019-08-11 stsp if (err != NULL)
2169 0adb7196 2019-08-11 stsp goto done;
2170 0adb7196 2019-08-11 stsp *label = strdup(got_ref_get_name(ref));
2171 0adb7196 2019-08-11 stsp if (*label == NULL) {
2172 0adb7196 2019-08-11 stsp err = got_error_from_errno("strdup");
2173 0adb7196 2019-08-11 stsp goto done;
2174 0adb7196 2019-08-11 stsp }
2175 0adb7196 2019-08-11 stsp err = got_ref_resolve(id, repo, ref);
2176 0adb7196 2019-08-11 stsp } else {
2177 0adb7196 2019-08-11 stsp err = got_object_id_str(label, *id);
2178 0adb7196 2019-08-11 stsp if (*label == NULL) {
2179 0adb7196 2019-08-11 stsp err = got_error_from_errno("strdup");
2180 0adb7196 2019-08-11 stsp goto done;
2181 0adb7196 2019-08-11 stsp }
2182 0adb7196 2019-08-11 stsp }
2183 0adb7196 2019-08-11 stsp done:
2184 0adb7196 2019-08-11 stsp if (ref)
2185 0adb7196 2019-08-11 stsp got_ref_close(ref);
2186 0adb7196 2019-08-11 stsp return err;
2187 0adb7196 2019-08-11 stsp }
2188 0adb7196 2019-08-11 stsp
2189 0adb7196 2019-08-11 stsp
2190 0adb7196 2019-08-11 stsp static const struct got_error *
2191 b00d56cd 2018-04-01 stsp cmd_diff(int argc, char *argv[])
2192 b00d56cd 2018-04-01 stsp {
2193 b00d56cd 2018-04-01 stsp const struct got_error *error;
2194 b00d56cd 2018-04-01 stsp struct got_repository *repo = NULL;
2195 b72f483a 2019-02-05 stsp struct got_worktree *worktree = NULL;
2196 b72f483a 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL;
2197 15a94983 2018-12-23 stsp struct got_object_id *id1 = NULL, *id2 = NULL;
2198 cd628e99 2019-05-28 stsp const char *id_str1 = NULL, *id_str2 = NULL;
2199 5e70831e 2019-05-28 stsp char *label1 = NULL, *label2 = NULL;
2200 15a94983 2018-12-23 stsp int type1, type2;
2201 63035f9f 2019-10-06 stsp int diff_context = 3, diff_staged = 0, ignore_whitespace = 0, ch;
2202 c0cc5c62 2018-10-18 stsp const char *errstr;
2203 927df6b7 2019-02-10 stsp char *path = NULL;
2204 b00d56cd 2018-04-01 stsp
2205 b00d56cd 2018-04-01 stsp #ifndef PROFILE
2206 25eccc22 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2207 25eccc22 2019-01-04 stsp NULL) == -1)
2208 b00d56cd 2018-04-01 stsp err(1, "pledge");
2209 b00d56cd 2018-04-01 stsp #endif
2210 b00d56cd 2018-04-01 stsp
2211 63035f9f 2019-10-06 stsp while ((ch = getopt(argc, argv, "C:r:sw")) != -1) {
2212 b00d56cd 2018-04-01 stsp switch (ch) {
2213 c0cc5c62 2018-10-18 stsp case 'C':
2214 c0cc5c62 2018-10-18 stsp diff_context = strtonum(optarg, 1, INT_MAX, &errstr);
2215 c0cc5c62 2018-10-18 stsp if (errstr != NULL)
2216 c0cc5c62 2018-10-18 stsp err(1, "-C option %s", errstr);
2217 c0cc5c62 2018-10-18 stsp break;
2218 b72f483a 2019-02-05 stsp case 'r':
2219 b72f483a 2019-02-05 stsp repo_path = realpath(optarg, NULL);
2220 b72f483a 2019-02-05 stsp if (repo_path == NULL)
2221 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
2222 9ba1d308 2019-10-21 stsp optarg);
2223 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2224 b72f483a 2019-02-05 stsp break;
2225 98eaaa12 2019-08-03 stsp case 's':
2226 98eaaa12 2019-08-03 stsp diff_staged = 1;
2227 63035f9f 2019-10-06 stsp break;
2228 63035f9f 2019-10-06 stsp case 'w':
2229 63035f9f 2019-10-06 stsp ignore_whitespace = 1;
2230 98eaaa12 2019-08-03 stsp break;
2231 b00d56cd 2018-04-01 stsp default:
2232 2deda0b9 2019-03-07 stsp usage_diff();
2233 b00d56cd 2018-04-01 stsp /* NOTREACHED */
2234 b00d56cd 2018-04-01 stsp }
2235 b00d56cd 2018-04-01 stsp }
2236 b00d56cd 2018-04-01 stsp
2237 b00d56cd 2018-04-01 stsp argc -= optind;
2238 b00d56cd 2018-04-01 stsp argv += optind;
2239 b00d56cd 2018-04-01 stsp
2240 b72f483a 2019-02-05 stsp cwd = getcwd(NULL, 0);
2241 b72f483a 2019-02-05 stsp if (cwd == NULL) {
2242 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2243 b72f483a 2019-02-05 stsp goto done;
2244 b72f483a 2019-02-05 stsp }
2245 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
2246 927df6b7 2019-02-10 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2247 927df6b7 2019-02-10 stsp goto done;
2248 927df6b7 2019-02-10 stsp if (argc <= 1) {
2249 927df6b7 2019-02-10 stsp if (worktree == NULL) {
2250 927df6b7 2019-02-10 stsp error = got_error(GOT_ERR_NOT_WORKTREE);
2251 927df6b7 2019-02-10 stsp goto done;
2252 927df6b7 2019-02-10 stsp }
2253 b72f483a 2019-02-05 stsp if (repo_path)
2254 b72f483a 2019-02-05 stsp errx(1,
2255 b72f483a 2019-02-05 stsp "-r option can't be used when diffing a work tree");
2256 b72f483a 2019-02-05 stsp repo_path = strdup(got_worktree_get_repo_path(worktree));
2257 927df6b7 2019-02-10 stsp if (repo_path == NULL) {
2258 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2259 927df6b7 2019-02-10 stsp goto done;
2260 927df6b7 2019-02-10 stsp }
2261 927df6b7 2019-02-10 stsp if (argc == 1) {
2262 6c7ab921 2019-03-18 stsp error = got_worktree_resolve_path(&path, worktree,
2263 cbd1af7a 2019-03-18 stsp argv[0]);
2264 927df6b7 2019-02-10 stsp if (error)
2265 927df6b7 2019-02-10 stsp goto done;
2266 927df6b7 2019-02-10 stsp } else {
2267 927df6b7 2019-02-10 stsp path = strdup("");
2268 927df6b7 2019-02-10 stsp if (path == NULL) {
2269 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2270 927df6b7 2019-02-10 stsp goto done;
2271 927df6b7 2019-02-10 stsp }
2272 927df6b7 2019-02-10 stsp }
2273 b72f483a 2019-02-05 stsp } else if (argc == 2) {
2274 98eaaa12 2019-08-03 stsp if (diff_staged)
2275 98eaaa12 2019-08-03 stsp errx(1, "-s option can't be used when diffing "
2276 98eaaa12 2019-08-03 stsp "objects in repository");
2277 15a94983 2018-12-23 stsp id_str1 = argv[0];
2278 15a94983 2018-12-23 stsp id_str2 = argv[1];
2279 30db809c 2019-06-05 stsp if (worktree && repo_path == NULL) {
2280 30db809c 2019-06-05 stsp repo_path =
2281 30db809c 2019-06-05 stsp strdup(got_worktree_get_repo_path(worktree));
2282 30db809c 2019-06-05 stsp if (repo_path == NULL) {
2283 30db809c 2019-06-05 stsp error = got_error_from_errno("strdup");
2284 30db809c 2019-06-05 stsp goto done;
2285 30db809c 2019-06-05 stsp }
2286 30db809c 2019-06-05 stsp }
2287 b00d56cd 2018-04-01 stsp } else
2288 b00d56cd 2018-04-01 stsp usage_diff();
2289 25eccc22 2019-01-04 stsp
2290 b72f483a 2019-02-05 stsp if (repo_path == NULL) {
2291 b72f483a 2019-02-05 stsp repo_path = getcwd(NULL, 0);
2292 b72f483a 2019-02-05 stsp if (repo_path == NULL)
2293 638f9024 2019-05-13 stsp return got_error_from_errno("getcwd");
2294 b72f483a 2019-02-05 stsp }
2295 b00d56cd 2018-04-01 stsp
2296 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2297 76089277 2018-04-01 stsp free(repo_path);
2298 b00d56cd 2018-04-01 stsp if (error != NULL)
2299 b00d56cd 2018-04-01 stsp goto done;
2300 b00d56cd 2018-04-01 stsp
2301 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), 1,
2302 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
2303 c02c541e 2019-03-29 stsp if (error)
2304 c02c541e 2019-03-29 stsp goto done;
2305 c02c541e 2019-03-29 stsp
2306 30db809c 2019-06-05 stsp if (argc <= 1) {
2307 b72f483a 2019-02-05 stsp struct print_diff_arg arg;
2308 72ea6654 2019-07-27 stsp struct got_pathlist_head paths;
2309 b72f483a 2019-02-05 stsp char *id_str;
2310 72ea6654 2019-07-27 stsp
2311 72ea6654 2019-07-27 stsp TAILQ_INIT(&paths);
2312 72ea6654 2019-07-27 stsp
2313 b72f483a 2019-02-05 stsp error = got_object_id_str(&id_str,
2314 b72f483a 2019-02-05 stsp got_worktree_get_base_commit_id(worktree));
2315 b72f483a 2019-02-05 stsp if (error)
2316 b72f483a 2019-02-05 stsp goto done;
2317 b72f483a 2019-02-05 stsp arg.repo = repo;
2318 b72f483a 2019-02-05 stsp arg.worktree = worktree;
2319 b72f483a 2019-02-05 stsp arg.diff_context = diff_context;
2320 3fc0c068 2019-02-10 stsp arg.id_str = id_str;
2321 3fc0c068 2019-02-10 stsp arg.header_shown = 0;
2322 98eaaa12 2019-08-03 stsp arg.diff_staged = diff_staged;
2323 63035f9f 2019-10-06 stsp arg.ignore_whitespace = ignore_whitespace;
2324 b72f483a 2019-02-05 stsp
2325 adc19d55 2019-07-28 stsp error = got_pathlist_append(&paths, path, NULL);
2326 72ea6654 2019-07-27 stsp if (error)
2327 72ea6654 2019-07-27 stsp goto done;
2328 72ea6654 2019-07-27 stsp
2329 72ea6654 2019-07-27 stsp error = got_worktree_status(worktree, &paths, repo, print_diff,
2330 b72f483a 2019-02-05 stsp &arg, check_cancelled, NULL);
2331 b72f483a 2019-02-05 stsp free(id_str);
2332 72ea6654 2019-07-27 stsp got_pathlist_free(&paths);
2333 b72f483a 2019-02-05 stsp goto done;
2334 b72f483a 2019-02-05 stsp }
2335 b72f483a 2019-02-05 stsp
2336 01073a5d 2019-08-22 stsp error = match_object_id(&id1, &label1, id_str1, GOT_OBJ_TYPE_ANY, 1,
2337 01073a5d 2019-08-22 stsp repo);
2338 0adb7196 2019-08-11 stsp if (error)
2339 0adb7196 2019-08-11 stsp goto done;
2340 b00d56cd 2018-04-01 stsp
2341 01073a5d 2019-08-22 stsp error = match_object_id(&id2, &label2, id_str2, GOT_OBJ_TYPE_ANY, 1,
2342 01073a5d 2019-08-22 stsp repo);
2343 0adb7196 2019-08-11 stsp if (error)
2344 0adb7196 2019-08-11 stsp goto done;
2345 b00d56cd 2018-04-01 stsp
2346 15a94983 2018-12-23 stsp error = got_object_get_type(&type1, repo, id1);
2347 15a94983 2018-12-23 stsp if (error)
2348 15a94983 2018-12-23 stsp goto done;
2349 15a94983 2018-12-23 stsp
2350 15a94983 2018-12-23 stsp error = got_object_get_type(&type2, repo, id2);
2351 15a94983 2018-12-23 stsp if (error)
2352 15a94983 2018-12-23 stsp goto done;
2353 15a94983 2018-12-23 stsp
2354 15a94983 2018-12-23 stsp if (type1 != type2) {
2355 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
2356 b00d56cd 2018-04-01 stsp goto done;
2357 b00d56cd 2018-04-01 stsp }
2358 b00d56cd 2018-04-01 stsp
2359 15a94983 2018-12-23 stsp switch (type1) {
2360 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_BLOB:
2361 15a94983 2018-12-23 stsp error = got_diff_objects_as_blobs(id1, id2, NULL, NULL,
2362 63035f9f 2019-10-06 stsp diff_context, ignore_whitespace, repo, stdout);
2363 b00d56cd 2018-04-01 stsp break;
2364 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_TREE:
2365 15a94983 2018-12-23 stsp error = got_diff_objects_as_trees(id1, id2, "", "",
2366 63035f9f 2019-10-06 stsp diff_context, ignore_whitespace, repo, stdout);
2367 b00d56cd 2018-04-01 stsp break;
2368 b00d56cd 2018-04-01 stsp case GOT_OBJ_TYPE_COMMIT:
2369 5e70831e 2019-05-28 stsp printf("diff %s %s\n", label1, label2);
2370 15a94983 2018-12-23 stsp error = got_diff_objects_as_commits(id1, id2, diff_context,
2371 63035f9f 2019-10-06 stsp ignore_whitespace, repo, stdout);
2372 b00d56cd 2018-04-01 stsp break;
2373 b00d56cd 2018-04-01 stsp default:
2374 b00d56cd 2018-04-01 stsp error = got_error(GOT_ERR_OBJ_TYPE);
2375 b00d56cd 2018-04-01 stsp }
2376 b00d56cd 2018-04-01 stsp
2377 b00d56cd 2018-04-01 stsp done:
2378 5e70831e 2019-05-28 stsp free(label1);
2379 5e70831e 2019-05-28 stsp free(label2);
2380 15a94983 2018-12-23 stsp free(id1);
2381 15a94983 2018-12-23 stsp free(id2);
2382 927df6b7 2019-02-10 stsp free(path);
2383 b72f483a 2019-02-05 stsp if (worktree)
2384 b72f483a 2019-02-05 stsp got_worktree_close(worktree);
2385 ad242220 2018-09-08 stsp if (repo) {
2386 ad242220 2018-09-08 stsp const struct got_error *repo_error;
2387 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
2388 ad242220 2018-09-08 stsp if (error == NULL)
2389 ad242220 2018-09-08 stsp error = repo_error;
2390 ad242220 2018-09-08 stsp }
2391 b00d56cd 2018-04-01 stsp return error;
2392 404c43c4 2018-06-21 stsp }
2393 404c43c4 2018-06-21 stsp
2394 404c43c4 2018-06-21 stsp __dead static void
2395 404c43c4 2018-06-21 stsp usage_blame(void)
2396 404c43c4 2018-06-21 stsp {
2397 9270e621 2019-02-05 stsp fprintf(stderr,
2398 9270e621 2019-02-05 stsp "usage: %s blame [-c commit] [-r repository-path] path\n",
2399 404c43c4 2018-06-21 stsp getprogname());
2400 404c43c4 2018-06-21 stsp exit(1);
2401 b00d56cd 2018-04-01 stsp }
2402 b00d56cd 2018-04-01 stsp
2403 28315671 2019-08-14 stsp struct blame_line {
2404 28315671 2019-08-14 stsp int annotated;
2405 28315671 2019-08-14 stsp char *id_str;
2406 82f6abb8 2019-08-14 stsp char *committer;
2407 11db6024 2019-10-21 stsp char datebuf[11]; /* YYYY-MM-DD + NUL */
2408 28315671 2019-08-14 stsp };
2409 28315671 2019-08-14 stsp
2410 28315671 2019-08-14 stsp struct blame_cb_args {
2411 28315671 2019-08-14 stsp struct blame_line *lines;
2412 28315671 2019-08-14 stsp int nlines;
2413 7ef28ff8 2019-08-14 stsp int nlines_prec;
2414 28315671 2019-08-14 stsp int lineno_cur;
2415 28315671 2019-08-14 stsp off_t *line_offsets;
2416 28315671 2019-08-14 stsp FILE *f;
2417 82f6abb8 2019-08-14 stsp struct got_repository *repo;
2418 28315671 2019-08-14 stsp };
2419 28315671 2019-08-14 stsp
2420 404c43c4 2018-06-21 stsp static const struct got_error *
2421 28315671 2019-08-14 stsp blame_cb(void *arg, int nlines, int lineno, struct got_object_id *id)
2422 28315671 2019-08-14 stsp {
2423 28315671 2019-08-14 stsp const struct got_error *err = NULL;
2424 28315671 2019-08-14 stsp struct blame_cb_args *a = arg;
2425 28315671 2019-08-14 stsp struct blame_line *bline;
2426 82f6abb8 2019-08-14 stsp char *line = NULL;
2427 28315671 2019-08-14 stsp size_t linesize = 0;
2428 82f6abb8 2019-08-14 stsp struct got_commit_object *commit = NULL;
2429 28315671 2019-08-14 stsp off_t offset;
2430 bcb49d15 2019-08-14 stsp struct tm tm;
2431 bcb49d15 2019-08-14 stsp time_t committer_time;
2432 28315671 2019-08-14 stsp
2433 28315671 2019-08-14 stsp if (nlines != a->nlines ||
2434 28315671 2019-08-14 stsp (lineno != -1 && lineno < 1) || lineno > a->nlines)
2435 28315671 2019-08-14 stsp return got_error(GOT_ERR_RANGE);
2436 28315671 2019-08-14 stsp
2437 28315671 2019-08-14 stsp if (sigint_received)
2438 28315671 2019-08-14 stsp return got_error(GOT_ERR_ITER_COMPLETED);
2439 28315671 2019-08-14 stsp
2440 2839f8b9 2019-08-18 stsp if (lineno == -1)
2441 2839f8b9 2019-08-18 stsp return NULL; /* no change in this commit */
2442 2839f8b9 2019-08-18 stsp
2443 28315671 2019-08-14 stsp /* Annotate this line. */
2444 28315671 2019-08-14 stsp bline = &a->lines[lineno - 1];
2445 28315671 2019-08-14 stsp if (bline->annotated)
2446 28315671 2019-08-14 stsp return NULL;
2447 28315671 2019-08-14 stsp err = got_object_id_str(&bline->id_str, id);
2448 28315671 2019-08-14 stsp if (err)
2449 28315671 2019-08-14 stsp return err;
2450 82f6abb8 2019-08-14 stsp
2451 82f6abb8 2019-08-14 stsp err = got_object_open_as_commit(&commit, a->repo, id);
2452 82f6abb8 2019-08-14 stsp if (err)
2453 82f6abb8 2019-08-14 stsp goto done;
2454 82f6abb8 2019-08-14 stsp
2455 82f6abb8 2019-08-14 stsp bline->committer = strdup(got_object_commit_get_committer(commit));
2456 82f6abb8 2019-08-14 stsp if (bline->committer == NULL) {
2457 82f6abb8 2019-08-14 stsp err = got_error_from_errno("strdup");
2458 bcb49d15 2019-08-14 stsp goto done;
2459 bcb49d15 2019-08-14 stsp }
2460 bcb49d15 2019-08-14 stsp
2461 bcb49d15 2019-08-14 stsp committer_time = got_object_commit_get_committer_time(commit);
2462 bcb49d15 2019-08-14 stsp if (localtime_r(&committer_time, &tm) == NULL)
2463 bcb49d15 2019-08-14 stsp return got_error_from_errno("localtime_r");
2464 11db6024 2019-10-21 stsp if (strftime(bline->datebuf, sizeof(bline->datebuf), "%G/%m/%d",
2465 bcb49d15 2019-08-14 stsp &tm) >= sizeof(bline->datebuf)) {
2466 bcb49d15 2019-08-14 stsp err = got_error(GOT_ERR_NO_SPACE);
2467 82f6abb8 2019-08-14 stsp goto done;
2468 82f6abb8 2019-08-14 stsp }
2469 28315671 2019-08-14 stsp bline->annotated = 1;
2470 28315671 2019-08-14 stsp
2471 28315671 2019-08-14 stsp /* Print lines annotated so far. */
2472 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
2473 28315671 2019-08-14 stsp if (!bline->annotated)
2474 82f6abb8 2019-08-14 stsp goto done;
2475 28315671 2019-08-14 stsp
2476 28315671 2019-08-14 stsp offset = a->line_offsets[a->lineno_cur - 1];
2477 82f6abb8 2019-08-14 stsp if (fseeko(a->f, offset, SEEK_SET) == -1) {
2478 82f6abb8 2019-08-14 stsp err = got_error_from_errno("fseeko");
2479 82f6abb8 2019-08-14 stsp goto done;
2480 82f6abb8 2019-08-14 stsp }
2481 28315671 2019-08-14 stsp
2482 28315671 2019-08-14 stsp while (bline->annotated) {
2483 82f6abb8 2019-08-14 stsp char *smallerthan, *at, *nl, *committer;
2484 82f6abb8 2019-08-14 stsp size_t len;
2485 82f6abb8 2019-08-14 stsp
2486 500467ff 2019-09-25 hiltjo if (getline(&line, &linesize, a->f) == -1) {
2487 28315671 2019-08-14 stsp if (ferror(a->f))
2488 28315671 2019-08-14 stsp err = got_error_from_errno("getline");
2489 28315671 2019-08-14 stsp break;
2490 28315671 2019-08-14 stsp }
2491 82f6abb8 2019-08-14 stsp
2492 82f6abb8 2019-08-14 stsp committer = bline->committer;
2493 82f6abb8 2019-08-14 stsp smallerthan = strchr(committer, '<');
2494 82f6abb8 2019-08-14 stsp if (smallerthan && smallerthan[1] != '\0')
2495 82f6abb8 2019-08-14 stsp committer = smallerthan + 1;
2496 82f6abb8 2019-08-14 stsp at = strchr(committer, '@');
2497 82f6abb8 2019-08-14 stsp if (at)
2498 82f6abb8 2019-08-14 stsp *at = '\0';
2499 82f6abb8 2019-08-14 stsp len = strlen(committer);
2500 82f6abb8 2019-08-14 stsp if (len >= 9)
2501 82f6abb8 2019-08-14 stsp committer[8] = '\0';
2502 28315671 2019-08-14 stsp
2503 28315671 2019-08-14 stsp nl = strchr(line, '\n');
2504 28315671 2019-08-14 stsp if (nl)
2505 28315671 2019-08-14 stsp *nl = '\0';
2506 bcb49d15 2019-08-14 stsp printf("%.*d) %.8s %s %-8s %s\n", a->nlines_prec, a->lineno_cur,
2507 bcb49d15 2019-08-14 stsp bline->id_str, bline->datebuf, committer, line);
2508 28315671 2019-08-14 stsp
2509 28315671 2019-08-14 stsp a->lineno_cur++;
2510 28315671 2019-08-14 stsp bline = &a->lines[a->lineno_cur - 1];
2511 28315671 2019-08-14 stsp }
2512 82f6abb8 2019-08-14 stsp done:
2513 82f6abb8 2019-08-14 stsp if (commit)
2514 82f6abb8 2019-08-14 stsp got_object_commit_close(commit);
2515 28315671 2019-08-14 stsp free(line);
2516 28315671 2019-08-14 stsp return err;
2517 28315671 2019-08-14 stsp }
2518 28315671 2019-08-14 stsp
2519 28315671 2019-08-14 stsp static const struct got_error *
2520 404c43c4 2018-06-21 stsp cmd_blame(int argc, char *argv[])
2521 404c43c4 2018-06-21 stsp {
2522 404c43c4 2018-06-21 stsp const struct got_error *error;
2523 404c43c4 2018-06-21 stsp struct got_repository *repo = NULL;
2524 0c06baac 2019-02-05 stsp struct got_worktree *worktree = NULL;
2525 66bea077 2018-08-02 stsp char *path, *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
2526 28315671 2019-08-14 stsp struct got_object_id *obj_id = NULL;
2527 404c43c4 2018-06-21 stsp struct got_object_id *commit_id = NULL;
2528 28315671 2019-08-14 stsp struct got_blob_object *blob = NULL;
2529 404c43c4 2018-06-21 stsp char *commit_id_str = NULL;
2530 28315671 2019-08-14 stsp struct blame_cb_args bca;
2531 28315671 2019-08-14 stsp int ch, obj_type, i;
2532 b02560ec 2019-08-19 stsp size_t filesize;
2533 90f3c347 2019-08-19 stsp
2534 90f3c347 2019-08-19 stsp memset(&bca, 0, sizeof(bca));
2535 404c43c4 2018-06-21 stsp
2536 404c43c4 2018-06-21 stsp #ifndef PROFILE
2537 36e2fb66 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2538 36e2fb66 2019-01-04 stsp NULL) == -1)
2539 404c43c4 2018-06-21 stsp err(1, "pledge");
2540 404c43c4 2018-06-21 stsp #endif
2541 404c43c4 2018-06-21 stsp
2542 66bea077 2018-08-02 stsp while ((ch = getopt(argc, argv, "c:r:")) != -1) {
2543 404c43c4 2018-06-21 stsp switch (ch) {
2544 404c43c4 2018-06-21 stsp case 'c':
2545 404c43c4 2018-06-21 stsp commit_id_str = optarg;
2546 404c43c4 2018-06-21 stsp break;
2547 66bea077 2018-08-02 stsp case 'r':
2548 66bea077 2018-08-02 stsp repo_path = realpath(optarg, NULL);
2549 66bea077 2018-08-02 stsp if (repo_path == NULL)
2550 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
2551 9ba1d308 2019-10-21 stsp optarg);
2552 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2553 66bea077 2018-08-02 stsp break;
2554 404c43c4 2018-06-21 stsp default:
2555 2deda0b9 2019-03-07 stsp usage_blame();
2556 404c43c4 2018-06-21 stsp /* NOTREACHED */
2557 404c43c4 2018-06-21 stsp }
2558 404c43c4 2018-06-21 stsp }
2559 404c43c4 2018-06-21 stsp
2560 404c43c4 2018-06-21 stsp argc -= optind;
2561 404c43c4 2018-06-21 stsp argv += optind;
2562 404c43c4 2018-06-21 stsp
2563 a39318fd 2018-08-02 stsp if (argc == 1)
2564 404c43c4 2018-06-21 stsp path = argv[0];
2565 a39318fd 2018-08-02 stsp else
2566 404c43c4 2018-06-21 stsp usage_blame();
2567 404c43c4 2018-06-21 stsp
2568 66bea077 2018-08-02 stsp cwd = getcwd(NULL, 0);
2569 66bea077 2018-08-02 stsp if (cwd == NULL) {
2570 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2571 66bea077 2018-08-02 stsp goto done;
2572 66bea077 2018-08-02 stsp }
2573 66bea077 2018-08-02 stsp if (repo_path == NULL) {
2574 0c06baac 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
2575 0c06baac 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2576 66bea077 2018-08-02 stsp goto done;
2577 0c06baac 2019-02-05 stsp else
2578 0c06baac 2019-02-05 stsp error = NULL;
2579 0c06baac 2019-02-05 stsp if (worktree) {
2580 0c06baac 2019-02-05 stsp repo_path =
2581 0c06baac 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
2582 0c06baac 2019-02-05 stsp if (repo_path == NULL)
2583 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2584 0c06baac 2019-02-05 stsp if (error)
2585 0c06baac 2019-02-05 stsp goto done;
2586 0c06baac 2019-02-05 stsp } else {
2587 0c06baac 2019-02-05 stsp repo_path = strdup(cwd);
2588 0c06baac 2019-02-05 stsp if (repo_path == NULL) {
2589 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2590 0c06baac 2019-02-05 stsp goto done;
2591 0c06baac 2019-02-05 stsp }
2592 66bea077 2018-08-02 stsp }
2593 66bea077 2018-08-02 stsp }
2594 36e2fb66 2019-01-04 stsp
2595 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2596 c02c541e 2019-03-29 stsp if (error != NULL)
2597 36e2fb66 2019-01-04 stsp goto done;
2598 66bea077 2018-08-02 stsp
2599 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
2600 c02c541e 2019-03-29 stsp if (error)
2601 404c43c4 2018-06-21 stsp goto done;
2602 404c43c4 2018-06-21 stsp
2603 0c06baac 2019-02-05 stsp if (worktree) {
2604 6efaaa2d 2019-02-05 stsp const char *prefix = got_worktree_get_path_prefix(worktree);
2605 0c06baac 2019-02-05 stsp char *p, *worktree_subdir = cwd +
2606 0c06baac 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
2607 6efaaa2d 2019-02-05 stsp if (asprintf(&p, "%s%s%s%s%s",
2608 6efaaa2d 2019-02-05 stsp prefix, (strcmp(prefix, "/") != 0) ? "/" : "",
2609 6efaaa2d 2019-02-05 stsp worktree_subdir, worktree_subdir[0] ? "/" : "",
2610 6efaaa2d 2019-02-05 stsp path) == -1) {
2611 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
2612 0c06baac 2019-02-05 stsp goto done;
2613 0c06baac 2019-02-05 stsp }
2614 6efaaa2d 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 0);
2615 0c06baac 2019-02-05 stsp free(p);
2616 0c06baac 2019-02-05 stsp } else {
2617 0c06baac 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
2618 0c06baac 2019-02-05 stsp }
2619 0c06baac 2019-02-05 stsp if (error)
2620 66bea077 2018-08-02 stsp goto done;
2621 66bea077 2018-08-02 stsp
2622 404c43c4 2018-06-21 stsp if (commit_id_str == NULL) {
2623 404c43c4 2018-06-21 stsp struct got_reference *head_ref;
2624 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
2625 404c43c4 2018-06-21 stsp if (error != NULL)
2626 66bea077 2018-08-02 stsp goto done;
2627 404c43c4 2018-06-21 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
2628 404c43c4 2018-06-21 stsp got_ref_close(head_ref);
2629 404c43c4 2018-06-21 stsp if (error != NULL)
2630 66bea077 2018-08-02 stsp goto done;
2631 404c43c4 2018-06-21 stsp } else {
2632 04f57cb3 2019-07-25 stsp error = resolve_commit_arg(&commit_id, commit_id_str, repo);
2633 30837e32 2019-07-25 stsp if (error)
2634 66bea077 2018-08-02 stsp goto done;
2635 404c43c4 2018-06-21 stsp }
2636 404c43c4 2018-06-21 stsp
2637 28315671 2019-08-14 stsp error = got_object_id_by_path(&obj_id, repo, commit_id, in_repo_path);
2638 28315671 2019-08-14 stsp if (error)
2639 28315671 2019-08-14 stsp goto done;
2640 28315671 2019-08-14 stsp if (obj_id == NULL) {
2641 28315671 2019-08-14 stsp error = got_error(GOT_ERR_NO_OBJ);
2642 28315671 2019-08-14 stsp goto done;
2643 28315671 2019-08-14 stsp }
2644 28315671 2019-08-14 stsp
2645 28315671 2019-08-14 stsp error = got_object_get_type(&obj_type, repo, obj_id);
2646 28315671 2019-08-14 stsp if (error)
2647 28315671 2019-08-14 stsp goto done;
2648 28315671 2019-08-14 stsp
2649 28315671 2019-08-14 stsp if (obj_type != GOT_OBJ_TYPE_BLOB) {
2650 28315671 2019-08-14 stsp error = got_error(GOT_ERR_OBJ_TYPE);
2651 28315671 2019-08-14 stsp goto done;
2652 28315671 2019-08-14 stsp }
2653 28315671 2019-08-14 stsp
2654 28315671 2019-08-14 stsp error = got_object_open_as_blob(&blob, repo, obj_id, 8192);
2655 28315671 2019-08-14 stsp if (error)
2656 28315671 2019-08-14 stsp goto done;
2657 28315671 2019-08-14 stsp bca.f = got_opentemp();
2658 28315671 2019-08-14 stsp if (bca.f == NULL) {
2659 28315671 2019-08-14 stsp error = got_error_from_errno("got_opentemp");
2660 28315671 2019-08-14 stsp goto done;
2661 28315671 2019-08-14 stsp }
2662 b02560ec 2019-08-19 stsp error = got_object_blob_dump_to_file(&filesize, &bca.nlines,
2663 28315671 2019-08-14 stsp &bca.line_offsets, bca.f, blob);
2664 7ef28ff8 2019-08-14 stsp if (error || bca.nlines == 0)
2665 28315671 2019-08-14 stsp goto done;
2666 28315671 2019-08-14 stsp
2667 b02560ec 2019-08-19 stsp /* Don't include \n at EOF in the blame line count. */
2668 b02560ec 2019-08-19 stsp if (bca.line_offsets[bca.nlines - 1] == filesize)
2669 b02560ec 2019-08-19 stsp bca.nlines--;
2670 b02560ec 2019-08-19 stsp
2671 28315671 2019-08-14 stsp bca.lines = calloc(bca.nlines, sizeof(*bca.lines));
2672 28315671 2019-08-14 stsp if (bca.lines == NULL) {
2673 28315671 2019-08-14 stsp error = got_error_from_errno("calloc");
2674 28315671 2019-08-14 stsp goto done;
2675 28315671 2019-08-14 stsp }
2676 28315671 2019-08-14 stsp bca.lineno_cur = 1;
2677 7ef28ff8 2019-08-14 stsp bca.nlines_prec = 0;
2678 7ef28ff8 2019-08-14 stsp i = bca.nlines;
2679 7ef28ff8 2019-08-14 stsp while (i > 0) {
2680 7ef28ff8 2019-08-14 stsp i /= 10;
2681 7ef28ff8 2019-08-14 stsp bca.nlines_prec++;
2682 7ef28ff8 2019-08-14 stsp }
2683 82f6abb8 2019-08-14 stsp bca.repo = repo;
2684 7ef28ff8 2019-08-14 stsp
2685 6fb7cd11 2019-08-22 stsp error = got_blame(in_repo_path, commit_id, repo, blame_cb, &bca,
2686 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
2687 28315671 2019-08-14 stsp if (error)
2688 28315671 2019-08-14 stsp goto done;
2689 404c43c4 2018-06-21 stsp done:
2690 66bea077 2018-08-02 stsp free(in_repo_path);
2691 66bea077 2018-08-02 stsp free(repo_path);
2692 66bea077 2018-08-02 stsp free(cwd);
2693 404c43c4 2018-06-21 stsp free(commit_id);
2694 28315671 2019-08-14 stsp free(obj_id);
2695 28315671 2019-08-14 stsp if (blob)
2696 28315671 2019-08-14 stsp got_object_blob_close(blob);
2697 0c06baac 2019-02-05 stsp if (worktree)
2698 0c06baac 2019-02-05 stsp got_worktree_close(worktree);
2699 ad242220 2018-09-08 stsp if (repo) {
2700 ad242220 2018-09-08 stsp const struct got_error *repo_error;
2701 ad242220 2018-09-08 stsp repo_error = got_repo_close(repo);
2702 ad242220 2018-09-08 stsp if (error == NULL)
2703 ad242220 2018-09-08 stsp error = repo_error;
2704 ad242220 2018-09-08 stsp }
2705 3affba96 2019-09-22 stsp if (bca.lines) {
2706 3affba96 2019-09-22 stsp for (i = 0; i < bca.nlines; i++) {
2707 3affba96 2019-09-22 stsp struct blame_line *bline = &bca.lines[i];
2708 3affba96 2019-09-22 stsp free(bline->id_str);
2709 3affba96 2019-09-22 stsp free(bline->committer);
2710 3affba96 2019-09-22 stsp }
2711 3affba96 2019-09-22 stsp free(bca.lines);
2712 28315671 2019-08-14 stsp }
2713 28315671 2019-08-14 stsp free(bca.line_offsets);
2714 28315671 2019-08-14 stsp if (bca.f && fclose(bca.f) == EOF && error == NULL)
2715 28315671 2019-08-14 stsp error = got_error_from_errno("fclose");
2716 404c43c4 2018-06-21 stsp return error;
2717 5de5890b 2018-10-18 stsp }
2718 5de5890b 2018-10-18 stsp
2719 5de5890b 2018-10-18 stsp __dead static void
2720 5de5890b 2018-10-18 stsp usage_tree(void)
2721 5de5890b 2018-10-18 stsp {
2722 c1669e2e 2019-01-09 stsp fprintf(stderr,
2723 c1669e2e 2019-01-09 stsp "usage: %s tree [-c commit] [-r repository-path] [-iR] path\n",
2724 5de5890b 2018-10-18 stsp getprogname());
2725 5de5890b 2018-10-18 stsp exit(1);
2726 5de5890b 2018-10-18 stsp }
2727 5de5890b 2018-10-18 stsp
2728 c1669e2e 2019-01-09 stsp static void
2729 c1669e2e 2019-01-09 stsp print_entry(struct got_tree_entry *te, const char *id, const char *path,
2730 c1669e2e 2019-01-09 stsp const char *root_path)
2731 c1669e2e 2019-01-09 stsp {
2732 c1669e2e 2019-01-09 stsp int is_root_path = (strcmp(path, root_path) == 0);
2733 848d6979 2019-08-12 stsp const char *modestr = "";
2734 56e0773d 2019-11-28 stsp mode_t mode = got_tree_entry_get_mode(te);
2735 5de5890b 2018-10-18 stsp
2736 c1669e2e 2019-01-09 stsp path += strlen(root_path);
2737 c1669e2e 2019-01-09 stsp while (path[0] == '/')
2738 c1669e2e 2019-01-09 stsp path++;
2739 c1669e2e 2019-01-09 stsp
2740 63c5ca5d 2019-08-24 stsp if (got_object_tree_entry_is_submodule(te))
2741 63c5ca5d 2019-08-24 stsp modestr = "$";
2742 56e0773d 2019-11-28 stsp else if (S_ISLNK(mode))
2743 848d6979 2019-08-12 stsp modestr = "@";
2744 56e0773d 2019-11-28 stsp else if (S_ISDIR(mode))
2745 848d6979 2019-08-12 stsp modestr = "/";
2746 56e0773d 2019-11-28 stsp else if (mode & S_IXUSR)
2747 848d6979 2019-08-12 stsp modestr = "*";
2748 848d6979 2019-08-12 stsp
2749 c1669e2e 2019-01-09 stsp printf("%s%s%s%s%s\n", id ? id : "", path,
2750 56e0773d 2019-11-28 stsp is_root_path ? "" : "/", got_tree_entry_get_name(te), modestr);
2751 c1669e2e 2019-01-09 stsp }
2752 c1669e2e 2019-01-09 stsp
2753 5de5890b 2018-10-18 stsp static const struct got_error *
2754 5de5890b 2018-10-18 stsp print_tree(const char *path, struct got_object_id *commit_id,
2755 c1669e2e 2019-01-09 stsp int show_ids, int recurse, const char *root_path,
2756 c1669e2e 2019-01-09 stsp struct got_repository *repo)
2757 5de5890b 2018-10-18 stsp {
2758 5de5890b 2018-10-18 stsp const struct got_error *err = NULL;
2759 5de5890b 2018-10-18 stsp struct got_object_id *tree_id = NULL;
2760 5de5890b 2018-10-18 stsp struct got_tree_object *tree = NULL;
2761 56e0773d 2019-11-28 stsp int nentries, i;
2762 5de5890b 2018-10-18 stsp
2763 5de5890b 2018-10-18 stsp err = got_object_id_by_path(&tree_id, repo, commit_id, path);
2764 5de5890b 2018-10-18 stsp if (err)
2765 5de5890b 2018-10-18 stsp goto done;
2766 5de5890b 2018-10-18 stsp
2767 5de5890b 2018-10-18 stsp err = got_object_open_as_tree(&tree, repo, tree_id);
2768 5de5890b 2018-10-18 stsp if (err)
2769 5de5890b 2018-10-18 stsp goto done;
2770 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
2771 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
2772 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
2773 5de5890b 2018-10-18 stsp char *id = NULL;
2774 84453469 2018-11-11 stsp
2775 84453469 2018-11-11 stsp if (sigint_received || sigpipe_received)
2776 84453469 2018-11-11 stsp break;
2777 84453469 2018-11-11 stsp
2778 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
2779 5de5890b 2018-10-18 stsp if (show_ids) {
2780 5de5890b 2018-10-18 stsp char *id_str;
2781 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str,
2782 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
2783 5de5890b 2018-10-18 stsp if (err)
2784 5de5890b 2018-10-18 stsp goto done;
2785 5de5890b 2018-10-18 stsp if (asprintf(&id, "%s ", id_str) == -1) {
2786 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2787 5de5890b 2018-10-18 stsp free(id_str);
2788 5de5890b 2018-10-18 stsp goto done;
2789 5de5890b 2018-10-18 stsp }
2790 5de5890b 2018-10-18 stsp free(id_str);
2791 5de5890b 2018-10-18 stsp }
2792 c1669e2e 2019-01-09 stsp print_entry(te, id, path, root_path);
2793 5de5890b 2018-10-18 stsp free(id);
2794 c1669e2e 2019-01-09 stsp
2795 56e0773d 2019-11-28 stsp if (recurse && S_ISDIR(got_tree_entry_get_mode(te))) {
2796 c1669e2e 2019-01-09 stsp char *child_path;
2797 c1669e2e 2019-01-09 stsp if (asprintf(&child_path, "%s%s%s", path,
2798 c1669e2e 2019-01-09 stsp path[0] == '/' && path[1] == '\0' ? "" : "/",
2799 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te)) == -1) {
2800 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
2801 c1669e2e 2019-01-09 stsp goto done;
2802 c1669e2e 2019-01-09 stsp }
2803 c1669e2e 2019-01-09 stsp err = print_tree(child_path, commit_id, show_ids, 1,
2804 c1669e2e 2019-01-09 stsp root_path, repo);
2805 c1669e2e 2019-01-09 stsp free(child_path);
2806 c1669e2e 2019-01-09 stsp if (err)
2807 c1669e2e 2019-01-09 stsp goto done;
2808 c1669e2e 2019-01-09 stsp }
2809 5de5890b 2018-10-18 stsp }
2810 5de5890b 2018-10-18 stsp done:
2811 5de5890b 2018-10-18 stsp if (tree)
2812 5de5890b 2018-10-18 stsp got_object_tree_close(tree);
2813 5de5890b 2018-10-18 stsp free(tree_id);
2814 5de5890b 2018-10-18 stsp return err;
2815 404c43c4 2018-06-21 stsp }
2816 404c43c4 2018-06-21 stsp
2817 5de5890b 2018-10-18 stsp static const struct got_error *
2818 5de5890b 2018-10-18 stsp cmd_tree(int argc, char *argv[])
2819 5de5890b 2018-10-18 stsp {
2820 5de5890b 2018-10-18 stsp const struct got_error *error;
2821 5de5890b 2018-10-18 stsp struct got_repository *repo = NULL;
2822 7a2c19d6 2019-02-05 stsp struct got_worktree *worktree = NULL;
2823 7a2c19d6 2019-02-05 stsp const char *path;
2824 7a2c19d6 2019-02-05 stsp char *cwd = NULL, *repo_path = NULL, *in_repo_path = NULL;
2825 5de5890b 2018-10-18 stsp struct got_object_id *commit_id = NULL;
2826 5de5890b 2018-10-18 stsp char *commit_id_str = NULL;
2827 c1669e2e 2019-01-09 stsp int show_ids = 0, recurse = 0;
2828 5de5890b 2018-10-18 stsp int ch;
2829 5de5890b 2018-10-18 stsp
2830 5de5890b 2018-10-18 stsp #ifndef PROFILE
2831 0f8d269b 2019-01-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
2832 0f8d269b 2019-01-04 stsp NULL) == -1)
2833 5de5890b 2018-10-18 stsp err(1, "pledge");
2834 5de5890b 2018-10-18 stsp #endif
2835 5de5890b 2018-10-18 stsp
2836 c1669e2e 2019-01-09 stsp while ((ch = getopt(argc, argv, "c:r:iR")) != -1) {
2837 5de5890b 2018-10-18 stsp switch (ch) {
2838 5de5890b 2018-10-18 stsp case 'c':
2839 5de5890b 2018-10-18 stsp commit_id_str = optarg;
2840 5de5890b 2018-10-18 stsp break;
2841 5de5890b 2018-10-18 stsp case 'r':
2842 5de5890b 2018-10-18 stsp repo_path = realpath(optarg, NULL);
2843 5de5890b 2018-10-18 stsp if (repo_path == NULL)
2844 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
2845 9ba1d308 2019-10-21 stsp optarg);
2846 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
2847 5de5890b 2018-10-18 stsp break;
2848 5de5890b 2018-10-18 stsp case 'i':
2849 5de5890b 2018-10-18 stsp show_ids = 1;
2850 5de5890b 2018-10-18 stsp break;
2851 c1669e2e 2019-01-09 stsp case 'R':
2852 c1669e2e 2019-01-09 stsp recurse = 1;
2853 c1669e2e 2019-01-09 stsp break;
2854 5de5890b 2018-10-18 stsp default:
2855 2deda0b9 2019-03-07 stsp usage_tree();
2856 5de5890b 2018-10-18 stsp /* NOTREACHED */
2857 5de5890b 2018-10-18 stsp }
2858 5de5890b 2018-10-18 stsp }
2859 5de5890b 2018-10-18 stsp
2860 5de5890b 2018-10-18 stsp argc -= optind;
2861 5de5890b 2018-10-18 stsp argv += optind;
2862 5de5890b 2018-10-18 stsp
2863 5de5890b 2018-10-18 stsp if (argc == 1)
2864 5de5890b 2018-10-18 stsp path = argv[0];
2865 5de5890b 2018-10-18 stsp else if (argc > 1)
2866 5de5890b 2018-10-18 stsp usage_tree();
2867 5de5890b 2018-10-18 stsp else
2868 7a2c19d6 2019-02-05 stsp path = NULL;
2869 7a2c19d6 2019-02-05 stsp
2870 9bf7a39b 2019-02-05 stsp cwd = getcwd(NULL, 0);
2871 9bf7a39b 2019-02-05 stsp if (cwd == NULL) {
2872 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
2873 9bf7a39b 2019-02-05 stsp goto done;
2874 9bf7a39b 2019-02-05 stsp }
2875 5de5890b 2018-10-18 stsp if (repo_path == NULL) {
2876 7a2c19d6 2019-02-05 stsp error = got_worktree_open(&worktree, cwd);
2877 8994de28 2019-02-05 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
2878 7a2c19d6 2019-02-05 stsp goto done;
2879 7a2c19d6 2019-02-05 stsp else
2880 7a2c19d6 2019-02-05 stsp error = NULL;
2881 7a2c19d6 2019-02-05 stsp if (worktree) {
2882 7a2c19d6 2019-02-05 stsp repo_path =
2883 7a2c19d6 2019-02-05 stsp strdup(got_worktree_get_repo_path(worktree));
2884 7a2c19d6 2019-02-05 stsp if (repo_path == NULL)
2885 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2886 7a2c19d6 2019-02-05 stsp if (error)
2887 7a2c19d6 2019-02-05 stsp goto done;
2888 7a2c19d6 2019-02-05 stsp } else {
2889 7a2c19d6 2019-02-05 stsp repo_path = strdup(cwd);
2890 7a2c19d6 2019-02-05 stsp if (repo_path == NULL) {
2891 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
2892 7a2c19d6 2019-02-05 stsp goto done;
2893 7a2c19d6 2019-02-05 stsp }
2894 5de5890b 2018-10-18 stsp }
2895 5de5890b 2018-10-18 stsp }
2896 5de5890b 2018-10-18 stsp
2897 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
2898 5de5890b 2018-10-18 stsp if (error != NULL)
2899 c02c541e 2019-03-29 stsp goto done;
2900 c02c541e 2019-03-29 stsp
2901 c530dc23 2019-07-23 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
2902 c02c541e 2019-03-29 stsp if (error)
2903 5de5890b 2018-10-18 stsp goto done;
2904 5de5890b 2018-10-18 stsp
2905 9bf7a39b 2019-02-05 stsp if (path == NULL) {
2906 9bf7a39b 2019-02-05 stsp if (worktree) {
2907 9bf7a39b 2019-02-05 stsp char *p, *worktree_subdir = cwd +
2908 9bf7a39b 2019-02-05 stsp strlen(got_worktree_get_root_path(worktree));
2909 9bf7a39b 2019-02-05 stsp if (asprintf(&p, "%s/%s",
2910 9bf7a39b 2019-02-05 stsp got_worktree_get_path_prefix(worktree),
2911 9bf7a39b 2019-02-05 stsp worktree_subdir) == -1) {
2912 638f9024 2019-05-13 stsp error = got_error_from_errno("asprintf");
2913 9bf7a39b 2019-02-05 stsp goto done;
2914 9bf7a39b 2019-02-05 stsp }
2915 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, p, 1);
2916 9bf7a39b 2019-02-05 stsp free(p);
2917 9bf7a39b 2019-02-05 stsp if (error)
2918 9bf7a39b 2019-02-05 stsp goto done;
2919 9bf7a39b 2019-02-05 stsp } else
2920 9bf7a39b 2019-02-05 stsp path = "/";
2921 9bf7a39b 2019-02-05 stsp }
2922 9bf7a39b 2019-02-05 stsp if (in_repo_path == NULL) {
2923 9bf7a39b 2019-02-05 stsp error = got_repo_map_path(&in_repo_path, repo, path, 1);
2924 9bf7a39b 2019-02-05 stsp if (error != NULL)
2925 9bf7a39b 2019-02-05 stsp goto done;
2926 9bf7a39b 2019-02-05 stsp }
2927 5de5890b 2018-10-18 stsp
2928 5de5890b 2018-10-18 stsp if (commit_id_str == NULL) {
2929 5de5890b 2018-10-18 stsp struct got_reference *head_ref;
2930 2f17228e 2019-05-12 stsp error = got_ref_open(&head_ref, repo, GOT_REF_HEAD, 0);
2931 5de5890b 2018-10-18 stsp if (error != NULL)
2932 5de5890b 2018-10-18 stsp goto done;
2933 5de5890b 2018-10-18 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
2934 5de5890b 2018-10-18 stsp got_ref_close(head_ref);
2935 5de5890b 2018-10-18 stsp if (error != NULL)
2936 5de5890b 2018-10-18 stsp goto done;
2937 5de5890b 2018-10-18 stsp } else {
2938 04f57cb3 2019-07-25 stsp error = resolve_commit_arg(&commit_id, commit_id_str, repo);
2939 30837e32 2019-07-25 stsp if (error)
2940 5de5890b 2018-10-18 stsp goto done;
2941 5de5890b 2018-10-18 stsp }
2942 5de5890b 2018-10-18 stsp
2943 c1669e2e 2019-01-09 stsp error = print_tree(in_repo_path, commit_id, show_ids, recurse,
2944 c1669e2e 2019-01-09 stsp in_repo_path, repo);
2945 5de5890b 2018-10-18 stsp done:
2946 5de5890b 2018-10-18 stsp free(in_repo_path);
2947 5de5890b 2018-10-18 stsp free(repo_path);
2948 5de5890b 2018-10-18 stsp free(cwd);
2949 5de5890b 2018-10-18 stsp free(commit_id);
2950 7a2c19d6 2019-02-05 stsp if (worktree)
2951 7a2c19d6 2019-02-05 stsp got_worktree_close(worktree);
2952 5de5890b 2018-10-18 stsp if (repo) {
2953 5de5890b 2018-10-18 stsp const struct got_error *repo_error;
2954 5de5890b 2018-10-18 stsp repo_error = got_repo_close(repo);
2955 5de5890b 2018-10-18 stsp if (error == NULL)
2956 5de5890b 2018-10-18 stsp error = repo_error;
2957 5de5890b 2018-10-18 stsp }
2958 5de5890b 2018-10-18 stsp return error;
2959 5de5890b 2018-10-18 stsp }
2960 5de5890b 2018-10-18 stsp
2961 6bad629b 2019-02-04 stsp __dead static void
2962 6bad629b 2019-02-04 stsp usage_status(void)
2963 6bad629b 2019-02-04 stsp {
2964 72ea6654 2019-07-27 stsp fprintf(stderr, "usage: %s status [path ...]\n", getprogname());
2965 6bad629b 2019-02-04 stsp exit(1);
2966 6bad629b 2019-02-04 stsp }
2967 5c860e29 2018-03-12 stsp
2968 b72f483a 2019-02-05 stsp static const struct got_error *
2969 88d0e355 2019-08-03 stsp print_status(void *arg, unsigned char status, unsigned char staged_status,
2970 88d0e355 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
2971 537ac44b 2019-08-03 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id)
2972 6bad629b 2019-02-04 stsp {
2973 244725f2 2019-08-03 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
2974 c363b2c1 2019-08-03 stsp status = GOT_STATUS_NO_CHANGE;
2975 88d0e355 2019-08-03 stsp printf("%c%c %s\n", status, staged_status, path);
2976 b72f483a 2019-02-05 stsp return NULL;
2977 6bad629b 2019-02-04 stsp }
2978 5c860e29 2018-03-12 stsp
2979 6bad629b 2019-02-04 stsp static const struct got_error *
2980 6bad629b 2019-02-04 stsp cmd_status(int argc, char *argv[])
2981 6bad629b 2019-02-04 stsp {
2982 6bad629b 2019-02-04 stsp const struct got_error *error = NULL;
2983 6bad629b 2019-02-04 stsp struct got_repository *repo = NULL;
2984 6bad629b 2019-02-04 stsp struct got_worktree *worktree = NULL;
2985 f86a1bf5 2019-07-27 stsp char *cwd = NULL;
2986 72ea6654 2019-07-27 stsp struct got_pathlist_head paths;
2987 a5edda0a 2019-07-27 stsp struct got_pathlist_entry *pe;
2988 a5edda0a 2019-07-27 stsp int ch;
2989 5c860e29 2018-03-12 stsp
2990 72ea6654 2019-07-27 stsp TAILQ_INIT(&paths);
2991 72ea6654 2019-07-27 stsp
2992 6bad629b 2019-02-04 stsp while ((ch = getopt(argc, argv, "")) != -1) {
2993 6bad629b 2019-02-04 stsp switch (ch) {
2994 5c860e29 2018-03-12 stsp default:
2995 2deda0b9 2019-03-07 stsp usage_status();
2996 6bad629b 2019-02-04 stsp /* NOTREACHED */
2997 5c860e29 2018-03-12 stsp }
2998 5c860e29 2018-03-12 stsp }
2999 5c860e29 2018-03-12 stsp
3000 6bad629b 2019-02-04 stsp argc -= optind;
3001 6bad629b 2019-02-04 stsp argv += optind;
3002 5c860e29 2018-03-12 stsp
3003 6bad629b 2019-02-04 stsp #ifndef PROFILE
3004 6bad629b 2019-02-04 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
3005 6bad629b 2019-02-04 stsp NULL) == -1)
3006 6bad629b 2019-02-04 stsp err(1, "pledge");
3007 f42b1b34 2018-03-12 stsp #endif
3008 927df6b7 2019-02-10 stsp cwd = getcwd(NULL, 0);
3009 927df6b7 2019-02-10 stsp if (cwd == NULL) {
3010 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3011 927df6b7 2019-02-10 stsp goto done;
3012 927df6b7 2019-02-10 stsp }
3013 927df6b7 2019-02-10 stsp
3014 927df6b7 2019-02-10 stsp error = got_worktree_open(&worktree, cwd);
3015 927df6b7 2019-02-10 stsp if (error != NULL)
3016 a5edda0a 2019-07-27 stsp goto done;
3017 6bad629b 2019-02-04 stsp
3018 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
3019 c9956ddf 2019-09-08 stsp NULL);
3020 6bad629b 2019-02-04 stsp if (error != NULL)
3021 6bad629b 2019-02-04 stsp goto done;
3022 6bad629b 2019-02-04 stsp
3023 d0eebce4 2019-03-11 stsp error = apply_unveil(got_repo_get_path(repo), 1,
3024 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
3025 087fb88c 2019-08-04 stsp if (error)
3026 087fb88c 2019-08-04 stsp goto done;
3027 087fb88c 2019-08-04 stsp
3028 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
3029 6bad629b 2019-02-04 stsp if (error)
3030 6bad629b 2019-02-04 stsp goto done;
3031 6bad629b 2019-02-04 stsp
3032 72ea6654 2019-07-27 stsp error = got_worktree_status(worktree, &paths, repo, print_status, NULL,
3033 6bad629b 2019-02-04 stsp check_cancelled, NULL);
3034 6bad629b 2019-02-04 stsp done:
3035 a5edda0a 2019-07-27 stsp TAILQ_FOREACH(pe, &paths, entry)
3036 a5edda0a 2019-07-27 stsp free((char *)pe->path);
3037 72ea6654 2019-07-27 stsp got_pathlist_free(&paths);
3038 927df6b7 2019-02-10 stsp free(cwd);
3039 d0eebce4 2019-03-11 stsp return error;
3040 d0eebce4 2019-03-11 stsp }
3041 d0eebce4 2019-03-11 stsp
3042 d0eebce4 2019-03-11 stsp __dead static void
3043 d0eebce4 2019-03-11 stsp usage_ref(void)
3044 d0eebce4 2019-03-11 stsp {
3045 d0eebce4 2019-03-11 stsp fprintf(stderr,
3046 d1c1ae5f 2019-08-12 stsp "usage: %s ref [-r repository] -l | -d name | [-s] name target\n",
3047 d0eebce4 2019-03-11 stsp getprogname());
3048 d0eebce4 2019-03-11 stsp exit(1);
3049 d0eebce4 2019-03-11 stsp }
3050 d0eebce4 2019-03-11 stsp
3051 d0eebce4 2019-03-11 stsp static const struct got_error *
3052 d0eebce4 2019-03-11 stsp list_refs(struct got_repository *repo)
3053 d0eebce4 2019-03-11 stsp {
3054 d0eebce4 2019-03-11 stsp static const struct got_error *err = NULL;
3055 d0eebce4 2019-03-11 stsp struct got_reflist_head refs;
3056 d0eebce4 2019-03-11 stsp struct got_reflist_entry *re;
3057 d0eebce4 2019-03-11 stsp
3058 d0eebce4 2019-03-11 stsp SIMPLEQ_INIT(&refs);
3059 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, NULL, got_ref_cmp_by_name, NULL);
3060 d0eebce4 2019-03-11 stsp if (err)
3061 d0eebce4 2019-03-11 stsp return err;
3062 d0eebce4 2019-03-11 stsp
3063 d0eebce4 2019-03-11 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
3064 d0eebce4 2019-03-11 stsp char *refstr;
3065 d0eebce4 2019-03-11 stsp refstr = got_ref_to_str(re->ref);
3066 d0eebce4 2019-03-11 stsp if (refstr == NULL)
3067 638f9024 2019-05-13 stsp return got_error_from_errno("got_ref_to_str");
3068 d0eebce4 2019-03-11 stsp printf("%s: %s\n", got_ref_get_name(re->ref), refstr);
3069 d0eebce4 2019-03-11 stsp free(refstr);
3070 d0eebce4 2019-03-11 stsp }
3071 d0eebce4 2019-03-11 stsp
3072 e2e879a0 2019-03-11 stsp got_ref_list_free(&refs);
3073 d0eebce4 2019-03-11 stsp return NULL;
3074 d0eebce4 2019-03-11 stsp }
3075 d0eebce4 2019-03-11 stsp
3076 d0eebce4 2019-03-11 stsp static const struct got_error *
3077 d0eebce4 2019-03-11 stsp delete_ref(struct got_repository *repo, const char *refname)
3078 d0eebce4 2019-03-11 stsp {
3079 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
3080 d0eebce4 2019-03-11 stsp struct got_reference *ref;
3081 d0eebce4 2019-03-11 stsp
3082 2f17228e 2019-05-12 stsp err = got_ref_open(&ref, repo, refname, 0);
3083 d0eebce4 2019-03-11 stsp if (err)
3084 d0eebce4 2019-03-11 stsp return err;
3085 d0eebce4 2019-03-11 stsp
3086 d0eebce4 2019-03-11 stsp err = got_ref_delete(ref, repo);
3087 d0eebce4 2019-03-11 stsp got_ref_close(ref);
3088 d0eebce4 2019-03-11 stsp return err;
3089 d0eebce4 2019-03-11 stsp }
3090 d0eebce4 2019-03-11 stsp
3091 d0eebce4 2019-03-11 stsp static const struct got_error *
3092 d83d9d5c 2019-05-13 stsp add_ref(struct got_repository *repo, const char *refname, const char *target)
3093 d0eebce4 2019-03-11 stsp {
3094 d0eebce4 2019-03-11 stsp const struct got_error *err = NULL;
3095 d0eebce4 2019-03-11 stsp struct got_object_id *id;
3096 d0eebce4 2019-03-11 stsp struct got_reference *ref = NULL;
3097 d1644381 2019-07-14 stsp
3098 d1644381 2019-07-14 stsp /*
3099 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
3100 d1644381 2019-07-14 stsp * While technically a valid reference name, this case is usually
3101 d1644381 2019-07-14 stsp * an unintended typo.
3102 d1644381 2019-07-14 stsp */
3103 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
3104 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
3105 d0eebce4 2019-03-11 stsp
3106 dd88155e 2019-06-29 stsp err = got_repo_match_object_id_prefix(&id, target, GOT_OBJ_TYPE_ANY,
3107 dd88155e 2019-06-29 stsp repo);
3108 d83d9d5c 2019-05-13 stsp if (err) {
3109 d83d9d5c 2019-05-13 stsp struct got_reference *target_ref;
3110 d0eebce4 2019-03-11 stsp
3111 d83d9d5c 2019-05-13 stsp if (err->code != GOT_ERR_BAD_OBJ_ID_STR)
3112 d83d9d5c 2019-05-13 stsp return err;
3113 d83d9d5c 2019-05-13 stsp err = got_ref_open(&target_ref, repo, target, 0);
3114 d83d9d5c 2019-05-13 stsp if (err)
3115 d83d9d5c 2019-05-13 stsp return err;
3116 d83d9d5c 2019-05-13 stsp err = got_ref_resolve(&id, repo, target_ref);
3117 d83d9d5c 2019-05-13 stsp got_ref_close(target_ref);
3118 d83d9d5c 2019-05-13 stsp if (err)
3119 d83d9d5c 2019-05-13 stsp return err;
3120 d83d9d5c 2019-05-13 stsp }
3121 d83d9d5c 2019-05-13 stsp
3122 d0eebce4 2019-03-11 stsp err = got_ref_alloc(&ref, refname, id);
3123 d0eebce4 2019-03-11 stsp if (err)
3124 d0eebce4 2019-03-11 stsp goto done;
3125 d0eebce4 2019-03-11 stsp
3126 d0eebce4 2019-03-11 stsp err = got_ref_write(ref, repo);
3127 d0eebce4 2019-03-11 stsp done:
3128 d0eebce4 2019-03-11 stsp if (ref)
3129 d0eebce4 2019-03-11 stsp got_ref_close(ref);
3130 d0eebce4 2019-03-11 stsp free(id);
3131 d1c1ae5f 2019-08-12 stsp return err;
3132 d1c1ae5f 2019-08-12 stsp }
3133 d1c1ae5f 2019-08-12 stsp
3134 d1c1ae5f 2019-08-12 stsp static const struct got_error *
3135 d1c1ae5f 2019-08-12 stsp add_symref(struct got_repository *repo, const char *refname, const char *target)
3136 d1c1ae5f 2019-08-12 stsp {
3137 d1c1ae5f 2019-08-12 stsp const struct got_error *err = NULL;
3138 d1c1ae5f 2019-08-12 stsp struct got_reference *ref = NULL;
3139 d1c1ae5f 2019-08-12 stsp struct got_reference *target_ref = NULL;
3140 d1c1ae5f 2019-08-12 stsp
3141 d1c1ae5f 2019-08-12 stsp /*
3142 bd5895f3 2019-11-28 stsp * Don't let the user create a reference name with a leading '-'.
3143 d1c1ae5f 2019-08-12 stsp * While technically a valid reference name, this case is usually
3144 d1c1ae5f 2019-08-12 stsp * an unintended typo.
3145 d1c1ae5f 2019-08-12 stsp */
3146 bd5895f3 2019-11-28 stsp if (refname[0] == '-')
3147 bd5895f3 2019-11-28 stsp return got_error_path(refname, GOT_ERR_REF_NAME_MINUS);
3148 d1c1ae5f 2019-08-12 stsp
3149 d1c1ae5f 2019-08-12 stsp err = got_ref_open(&target_ref, repo, target, 0);
3150 d1c1ae5f 2019-08-12 stsp if (err)
3151 d1c1ae5f 2019-08-12 stsp return err;
3152 d1c1ae5f 2019-08-12 stsp
3153 d1c1ae5f 2019-08-12 stsp err = got_ref_alloc_symref(&ref, refname, target_ref);
3154 d1c1ae5f 2019-08-12 stsp if (err)
3155 d1c1ae5f 2019-08-12 stsp goto done;
3156 d1c1ae5f 2019-08-12 stsp
3157 d1c1ae5f 2019-08-12 stsp err = got_ref_write(ref, repo);
3158 d1c1ae5f 2019-08-12 stsp done:
3159 d1c1ae5f 2019-08-12 stsp if (target_ref)
3160 d1c1ae5f 2019-08-12 stsp got_ref_close(target_ref);
3161 d1c1ae5f 2019-08-12 stsp if (ref)
3162 d1c1ae5f 2019-08-12 stsp got_ref_close(ref);
3163 d0eebce4 2019-03-11 stsp return err;
3164 d0eebce4 2019-03-11 stsp }
3165 d0eebce4 2019-03-11 stsp
3166 d0eebce4 2019-03-11 stsp static const struct got_error *
3167 d0eebce4 2019-03-11 stsp cmd_ref(int argc, char *argv[])
3168 d0eebce4 2019-03-11 stsp {
3169 d0eebce4 2019-03-11 stsp const struct got_error *error = NULL;
3170 d0eebce4 2019-03-11 stsp struct got_repository *repo = NULL;
3171 d0eebce4 2019-03-11 stsp struct got_worktree *worktree = NULL;
3172 d0eebce4 2019-03-11 stsp char *cwd = NULL, *repo_path = NULL;
3173 d1c1ae5f 2019-08-12 stsp int ch, do_list = 0, create_symref = 0;
3174 d0eebce4 2019-03-11 stsp const char *delref = NULL;
3175 d0eebce4 2019-03-11 stsp
3176 d0eebce4 2019-03-11 stsp /* TODO: Add -s option for adding symbolic references. */
3177 d1c1ae5f 2019-08-12 stsp while ((ch = getopt(argc, argv, "d:r:ls")) != -1) {
3178 d0eebce4 2019-03-11 stsp switch (ch) {
3179 d0eebce4 2019-03-11 stsp case 'd':
3180 d0eebce4 2019-03-11 stsp delref = optarg;
3181 d0eebce4 2019-03-11 stsp break;
3182 d0eebce4 2019-03-11 stsp case 'r':
3183 d0eebce4 2019-03-11 stsp repo_path = realpath(optarg, NULL);
3184 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
3185 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3186 9ba1d308 2019-10-21 stsp optarg);
3187 7fbaa4f3 2019-05-11 stsp got_path_strip_trailing_slashes(repo_path);
3188 d0eebce4 2019-03-11 stsp break;
3189 d0eebce4 2019-03-11 stsp case 'l':
3190 d0eebce4 2019-03-11 stsp do_list = 1;
3191 d1c1ae5f 2019-08-12 stsp break;
3192 d1c1ae5f 2019-08-12 stsp case 's':
3193 d1c1ae5f 2019-08-12 stsp create_symref = 1;
3194 d0eebce4 2019-03-11 stsp break;
3195 d0eebce4 2019-03-11 stsp default:
3196 d0eebce4 2019-03-11 stsp usage_ref();
3197 d0eebce4 2019-03-11 stsp /* NOTREACHED */
3198 d0eebce4 2019-03-11 stsp }
3199 d0eebce4 2019-03-11 stsp }
3200 d0eebce4 2019-03-11 stsp
3201 d0eebce4 2019-03-11 stsp if (do_list && delref)
3202 d0eebce4 2019-03-11 stsp errx(1, "-l and -d options are mutually exclusive\n");
3203 d0eebce4 2019-03-11 stsp
3204 d0eebce4 2019-03-11 stsp argc -= optind;
3205 d0eebce4 2019-03-11 stsp argv += optind;
3206 d0eebce4 2019-03-11 stsp
3207 d0eebce4 2019-03-11 stsp if (do_list || delref) {
3208 d1c1ae5f 2019-08-12 stsp if (create_symref)
3209 d1c1ae5f 2019-08-12 stsp errx(1, "-s option cannot be used together with the "
3210 d1c1ae5f 2019-08-12 stsp "-l or -d options");
3211 d0eebce4 2019-03-11 stsp if (argc > 0)
3212 d0eebce4 2019-03-11 stsp usage_ref();
3213 d0eebce4 2019-03-11 stsp } else if (argc != 2)
3214 d0eebce4 2019-03-11 stsp usage_ref();
3215 d0eebce4 2019-03-11 stsp
3216 d0eebce4 2019-03-11 stsp #ifndef PROFILE
3217 e0b57350 2019-03-12 stsp if (do_list) {
3218 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3219 e0b57350 2019-03-12 stsp NULL) == -1)
3220 e0b57350 2019-03-12 stsp err(1, "pledge");
3221 e0b57350 2019-03-12 stsp } else {
3222 e0b57350 2019-03-12 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
3223 e0b57350 2019-03-12 stsp "sendfd unveil", NULL) == -1)
3224 e0b57350 2019-03-12 stsp err(1, "pledge");
3225 e0b57350 2019-03-12 stsp }
3226 d0eebce4 2019-03-11 stsp #endif
3227 d0eebce4 2019-03-11 stsp cwd = getcwd(NULL, 0);
3228 d0eebce4 2019-03-11 stsp if (cwd == NULL) {
3229 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
3230 d0eebce4 2019-03-11 stsp goto done;
3231 d0eebce4 2019-03-11 stsp }
3232 d0eebce4 2019-03-11 stsp
3233 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
3234 d0eebce4 2019-03-11 stsp error = got_worktree_open(&worktree, cwd);
3235 d0eebce4 2019-03-11 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3236 d0eebce4 2019-03-11 stsp goto done;
3237 d0eebce4 2019-03-11 stsp else
3238 d0eebce4 2019-03-11 stsp error = NULL;
3239 d0eebce4 2019-03-11 stsp if (worktree) {
3240 d0eebce4 2019-03-11 stsp repo_path =
3241 d0eebce4 2019-03-11 stsp strdup(got_worktree_get_repo_path(worktree));
3242 d0eebce4 2019-03-11 stsp if (repo_path == NULL)
3243 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3244 d0eebce4 2019-03-11 stsp if (error)
3245 d0eebce4 2019-03-11 stsp goto done;
3246 d0eebce4 2019-03-11 stsp } else {
3247 d0eebce4 2019-03-11 stsp repo_path = strdup(cwd);
3248 d0eebce4 2019-03-11 stsp if (repo_path == NULL) {
3249 638f9024 2019-05-13 stsp error = got_error_from_errno("strdup");
3250 d0eebce4 2019-03-11 stsp goto done;
3251 d0eebce4 2019-03-11 stsp }
3252 d0eebce4 2019-03-11 stsp }
3253 d0eebce4 2019-03-11 stsp }
3254 d0eebce4 2019-03-11 stsp
3255 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3256 d0eebce4 2019-03-11 stsp if (error != NULL)
3257 d0eebce4 2019-03-11 stsp goto done;
3258 d0eebce4 2019-03-11 stsp
3259 c02c541e 2019-03-29 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
3260 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3261 c02c541e 2019-03-29 stsp if (error)
3262 c02c541e 2019-03-29 stsp goto done;
3263 c02c541e 2019-03-29 stsp
3264 d0eebce4 2019-03-11 stsp if (do_list)
3265 d0eebce4 2019-03-11 stsp error = list_refs(repo);
3266 d0eebce4 2019-03-11 stsp else if (delref)
3267 d0eebce4 2019-03-11 stsp error = delete_ref(repo, delref);
3268 d1c1ae5f 2019-08-12 stsp else if (create_symref)
3269 d1c1ae5f 2019-08-12 stsp error = add_symref(repo, argv[0], argv[1]);
3270 d0eebce4 2019-03-11 stsp else
3271 d0eebce4 2019-03-11 stsp error = add_ref(repo, argv[0], argv[1]);
3272 4e759de4 2019-06-26 stsp done:
3273 4e759de4 2019-06-26 stsp if (repo)
3274 4e759de4 2019-06-26 stsp got_repo_close(repo);
3275 4e759de4 2019-06-26 stsp if (worktree)
3276 4e759de4 2019-06-26 stsp got_worktree_close(worktree);
3277 4e759de4 2019-06-26 stsp free(cwd);
3278 4e759de4 2019-06-26 stsp free(repo_path);
3279 4e759de4 2019-06-26 stsp return error;
3280 4e759de4 2019-06-26 stsp }
3281 4e759de4 2019-06-26 stsp
3282 4e759de4 2019-06-26 stsp __dead static void
3283 4e759de4 2019-06-26 stsp usage_branch(void)
3284 4e759de4 2019-06-26 stsp {
3285 4e759de4 2019-06-26 stsp fprintf(stderr,
3286 a74f7e83 2019-11-10 stsp "usage: %s branch [-c commit] [-r repository] [-l] | -d name | "
3287 a74f7e83 2019-11-10 stsp "[name]\n", getprogname());
3288 4e759de4 2019-06-26 stsp exit(1);
3289 4e759de4 2019-06-26 stsp }
3290 4e759de4 2019-06-26 stsp
3291 4e759de4 2019-06-26 stsp static const struct got_error *
3292 4e99b47e 2019-10-04 stsp list_branch(struct got_repository *repo, struct got_worktree *worktree,
3293 4e99b47e 2019-10-04 stsp struct got_reference *ref)
3294 4e99b47e 2019-10-04 stsp {
3295 4e99b47e 2019-10-04 stsp const struct got_error *err = NULL;
3296 4e99b47e 2019-10-04 stsp const char *refname, *marker = " ";
3297 4e99b47e 2019-10-04 stsp char *refstr;
3298 4e99b47e 2019-10-04 stsp
3299 4e99b47e 2019-10-04 stsp refname = got_ref_get_name(ref);
3300 4e99b47e 2019-10-04 stsp if (worktree && strcmp(refname,
3301 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree)) == 0) {
3302 4e99b47e 2019-10-04 stsp struct got_object_id *id = NULL;
3303 4e99b47e 2019-10-04 stsp
3304 4e99b47e 2019-10-04 stsp err = got_ref_resolve(&id, repo, ref);
3305 4e99b47e 2019-10-04 stsp if (err)
3306 4e99b47e 2019-10-04 stsp return err;
3307 4e99b47e 2019-10-04 stsp if (got_object_id_cmp(id,
3308 4e99b47e 2019-10-04 stsp got_worktree_get_base_commit_id(worktree)) == 0)
3309 4e99b47e 2019-10-04 stsp marker = "* ";
3310 4e99b47e 2019-10-04 stsp else
3311 4e99b47e 2019-10-04 stsp marker = "~ ";
3312 4e99b47e 2019-10-04 stsp free(id);
3313 4e99b47e 2019-10-04 stsp }
3314 4e99b47e 2019-10-04 stsp
3315 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
3316 4e99b47e 2019-10-04 stsp refname += 11;
3317 4e99b47e 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
3318 4e99b47e 2019-10-04 stsp refname += 18;
3319 4e99b47e 2019-10-04 stsp
3320 4e99b47e 2019-10-04 stsp refstr = got_ref_to_str(ref);
3321 4e99b47e 2019-10-04 stsp if (refstr == NULL)
3322 4e99b47e 2019-10-04 stsp return got_error_from_errno("got_ref_to_str");
3323 4e99b47e 2019-10-04 stsp
3324 4e99b47e 2019-10-04 stsp printf("%s%s: %s\n", marker, refname, refstr);
3325 4e99b47e 2019-10-04 stsp free(refstr);
3326 4e99b47e 2019-10-04 stsp return NULL;
3327 4e99b47e 2019-10-04 stsp }
3328 4e99b47e 2019-10-04 stsp
3329 4e99b47e 2019-10-04 stsp static const struct got_error *
3330 ad89fa31 2019-10-04 stsp show_current_branch(struct got_repository *repo, struct got_worktree *worktree)
3331 ad89fa31 2019-10-04 stsp {
3332 ad89fa31 2019-10-04 stsp const char *refname;
3333 ad89fa31 2019-10-04 stsp
3334 ad89fa31 2019-10-04 stsp if (worktree == NULL)
3335 ad89fa31 2019-10-04 stsp return got_error(GOT_ERR_NOT_WORKTREE);
3336 ad89fa31 2019-10-04 stsp
3337 ad89fa31 2019-10-04 stsp refname = got_worktree_get_head_ref_name(worktree);
3338 ad89fa31 2019-10-04 stsp
3339 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/heads/", 11) == 0)
3340 ad89fa31 2019-10-04 stsp refname += 11;
3341 ad89fa31 2019-10-04 stsp if (strncmp(refname, "refs/got/worktree/", 18) == 0)
3342 ad89fa31 2019-10-04 stsp refname += 18;
3343 ad89fa31 2019-10-04 stsp
3344 ad89fa31 2019-10-04 stsp printf("%s\n", refname);
3345 ad89fa31 2019-10-04 stsp
3346 ad89fa31 2019-10-04 stsp return NULL;
3347 ad89fa31 2019-10-04 stsp }
3348 ad89fa31 2019-10-04 stsp
3349 ad89fa31 2019-10-04 stsp static const struct got_error *
3350 ba882ee3 2019-07-11 stsp list_branches(struct got_repository *repo, struct got_worktree *worktree)
3351 4e759de4 2019-06-26 stsp {
3352 4e759de4 2019-06-26 stsp static const struct got_error *err = NULL;
3353 4e759de4 2019-06-26 stsp struct got_reflist_head refs;
3354 4e759de4 2019-06-26 stsp struct got_reflist_entry *re;
3355 4e99b47e 2019-10-04 stsp struct got_reference *temp_ref = NULL;
3356 4e99b47e 2019-10-04 stsp int rebase_in_progress, histedit_in_progress;
3357 4e759de4 2019-06-26 stsp
3358 4e759de4 2019-06-26 stsp SIMPLEQ_INIT(&refs);
3359 ba882ee3 2019-07-11 stsp
3360 4e99b47e 2019-10-04 stsp if (worktree) {
3361 4e99b47e 2019-10-04 stsp err = got_worktree_rebase_in_progress(&rebase_in_progress,
3362 4e99b47e 2019-10-04 stsp worktree);
3363 4e99b47e 2019-10-04 stsp if (err)
3364 4e99b47e 2019-10-04 stsp return err;
3365 4e99b47e 2019-10-04 stsp
3366 4e99b47e 2019-10-04 stsp err = got_worktree_histedit_in_progress(&histedit_in_progress,
3367 4e99b47e 2019-10-04 stsp worktree);
3368 4e99b47e 2019-10-04 stsp if (err)
3369 4e99b47e 2019-10-04 stsp return err;
3370 4e99b47e 2019-10-04 stsp
3371 4e99b47e 2019-10-04 stsp if (rebase_in_progress || histedit_in_progress) {
3372 4e99b47e 2019-10-04 stsp err = got_ref_open(&temp_ref, repo,
3373 4e99b47e 2019-10-04 stsp got_worktree_get_head_ref_name(worktree), 0);
3374 4e99b47e 2019-10-04 stsp if (err)
3375 4e99b47e 2019-10-04 stsp return err;
3376 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, temp_ref);
3377 4e99b47e 2019-10-04 stsp got_ref_close(temp_ref);
3378 4e99b47e 2019-10-04 stsp }
3379 4e99b47e 2019-10-04 stsp }
3380 4e99b47e 2019-10-04 stsp
3381 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, "refs/heads",
3382 b8bad2ba 2019-08-23 stsp got_ref_cmp_by_name, NULL);
3383 4e759de4 2019-06-26 stsp if (err)
3384 4e759de4 2019-06-26 stsp return err;
3385 4e759de4 2019-06-26 stsp
3386 4e99b47e 2019-10-04 stsp SIMPLEQ_FOREACH(re, &refs, entry)
3387 4e99b47e 2019-10-04 stsp list_branch(repo, worktree, re->ref);
3388 4e759de4 2019-06-26 stsp
3389 4e759de4 2019-06-26 stsp got_ref_list_free(&refs);
3390 4e759de4 2019-06-26 stsp return NULL;
3391 4e759de4 2019-06-26 stsp }
3392 4e759de4 2019-06-26 stsp
3393 4e759de4 2019-06-26 stsp static const struct got_error *
3394 45cd4e47 2019-08-25 stsp delete_branch(struct got_repository *repo, struct got_worktree *worktree,
3395 45cd4e47 2019-08-25 stsp const char *branch_name)
3396 4e759de4 2019-06-26 stsp {
3397 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
3398 45cd4e47 2019-08-25 stsp struct got_reference *ref = NULL;
3399 4e759de4 2019-06-26 stsp char *refname;
3400 4e759de4 2019-06-26 stsp
3401 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1)
3402 4e759de4 2019-06-26 stsp return got_error_from_errno("asprintf");
3403 4e759de4 2019-06-26 stsp
3404 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
3405 4e759de4 2019-06-26 stsp if (err)
3406 4e759de4 2019-06-26 stsp goto done;
3407 4e759de4 2019-06-26 stsp
3408 45cd4e47 2019-08-25 stsp if (worktree &&
3409 45cd4e47 2019-08-25 stsp strcmp(got_worktree_get_head_ref_name(worktree),
3410 45cd4e47 2019-08-25 stsp got_ref_get_name(ref)) == 0) {
3411 45cd4e47 2019-08-25 stsp err = got_error_msg(GOT_ERR_SAME_BRANCH,
3412 45cd4e47 2019-08-25 stsp "will not delete this work tree's current branch");
3413 45cd4e47 2019-08-25 stsp goto done;
3414 45cd4e47 2019-08-25 stsp }
3415 45cd4e47 2019-08-25 stsp
3416 45cd4e47 2019-08-25 stsp err = got_ref_delete(ref, repo);
3417 4e759de4 2019-06-26 stsp done:
3418 45cd4e47 2019-08-25 stsp if (ref)
3419 45cd4e47 2019-08-25 stsp got_ref_close(ref);
3420 4e759de4 2019-06-26 stsp free(refname);
3421 4e759de4 2019-06-26 stsp return err;
3422 4e759de4 2019-06-26 stsp }
3423 4e759de4 2019-06-26 stsp
3424 4e759de4 2019-06-26 stsp static const struct got_error *
3425 4e759de4 2019-06-26 stsp add_branch(struct got_repository *repo, const char *branch_name,
3426 a74f7e83 2019-11-10 stsp struct got_object_id *base_commit_id)
3427 4e759de4 2019-06-26 stsp {
3428 4e759de4 2019-06-26 stsp const struct got_error *err = NULL;
3429 4e759de4 2019-06-26 stsp struct got_reference *ref = NULL;
3430 4e759de4 2019-06-26 stsp char *base_refname = NULL, *refname = NULL;
3431 d3f84d51 2019-07-11 stsp
3432 d3f84d51 2019-07-11 stsp /*
3433 bd5895f3 2019-11-28 stsp * Don't let the user create a branch name with a leading '-'.
3434 d3f84d51 2019-07-11 stsp * While technically a valid reference name, this case is usually
3435 d3f84d51 2019-07-11 stsp * an unintended typo.
3436 d3f84d51 2019-07-11 stsp */
3437 bd5895f3 2019-11-28 stsp if (branch_name[0] == '-')
3438 bd5895f3 2019-11-28 stsp return got_error_path(branch_name, GOT_ERR_REF_NAME_MINUS);
3439 4e759de4 2019-06-26 stsp
3440 4e759de4 2019-06-26 stsp if (asprintf(&refname, "refs/heads/%s", branch_name) == -1) {
3441 4e759de4 2019-06-26 stsp err = got_error_from_errno("asprintf");
3442 4e759de4 2019-06-26 stsp goto done;
3443 4e759de4 2019-06-26 stsp }
3444 4e759de4 2019-06-26 stsp
3445 4e759de4 2019-06-26 stsp err = got_ref_open(&ref, repo, refname, 0);
3446 4e759de4 2019-06-26 stsp if (err == NULL) {
3447 4e759de4 2019-06-26 stsp err = got_error(GOT_ERR_BRANCH_EXISTS);
3448 4e759de4 2019-06-26 stsp goto done;
3449 4e759de4 2019-06-26 stsp } else if (err->code != GOT_ERR_NOT_REF)
3450 4e759de4 2019-06-26 stsp goto done;
3451 4e759de4 2019-06-26 stsp
3452 a74f7e83 2019-11-10 stsp err = got_ref_alloc(&ref, refname, base_commit_id);
3453 4e759de4 2019-06-26 stsp if (err)
3454 4e759de4 2019-06-26 stsp goto done;
3455 4e759de4 2019-06-26 stsp
3456 4e759de4 2019-06-26 stsp err = got_ref_write(ref, repo);
3457 d0eebce4 2019-03-11 stsp done:
3458 4e759de4 2019-06-26 stsp if (ref)
3459 4e759de4 2019-06-26 stsp got_ref_close(ref);
3460 4e759de4 2019-06-26 stsp free(base_refname);
3461 4e759de4 2019-06-26 stsp free(refname);
3462 4e759de4 2019-06-26 stsp return err;
3463 4e759de4 2019-06-26 stsp }
3464 4e759de4 2019-06-26 stsp
3465 4e759de4 2019-06-26 stsp static const struct got_error *
3466 4e759de4 2019-06-26 stsp cmd_branch(int argc, char *argv[])
3467 4e759de4 2019-06-26 stsp {
3468 4e759de4 2019-06-26 stsp const struct got_error *error = NULL;
3469 4e759de4 2019-06-26 stsp struct got_repository *repo = NULL;
3470 4e759de4 2019-06-26 stsp struct got_worktree *worktree = NULL;
3471 4e759de4 2019-06-26 stsp char *cwd = NULL, *repo_path = NULL;
3472 ad89fa31 2019-10-04 stsp int ch, do_list = 0, do_show = 0;
3473 a74f7e83 2019-11-10 stsp const char *delref = NULL, *commit_id_arg = NULL;
3474 4e759de4 2019-06-26 stsp
3475 a74f7e83 2019-11-10 stsp while ((ch = getopt(argc, argv, "c:d:r:l")) != -1) {
3476 4e759de4 2019-06-26 stsp switch (ch) {
3477 a74f7e83 2019-11-10 stsp case 'c':
3478 a74f7e83 2019-11-10 stsp commit_id_arg = optarg;
3479 a74f7e83 2019-11-10 stsp break;
3480 4e759de4 2019-06-26 stsp case 'd':
3481 4e759de4 2019-06-26 stsp delref = optarg;
3482 4e759de4 2019-06-26 stsp break;
3483 4e759de4 2019-06-26 stsp case 'r':
3484 4e759de4 2019-06-26 stsp repo_path = realpath(optarg, NULL);
3485 4e759de4 2019-06-26 stsp if (repo_path == NULL)
3486 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3487 9ba1d308 2019-10-21 stsp optarg);
3488 4e759de4 2019-06-26 stsp got_path_strip_trailing_slashes(repo_path);
3489 4e759de4 2019-06-26 stsp break;
3490 4e759de4 2019-06-26 stsp case 'l':
3491 4e759de4 2019-06-26 stsp do_list = 1;
3492 4e759de4 2019-06-26 stsp break;
3493 4e759de4 2019-06-26 stsp default:
3494 4e759de4 2019-06-26 stsp usage_branch();
3495 4e759de4 2019-06-26 stsp /* NOTREACHED */
3496 4e759de4 2019-06-26 stsp }
3497 4e759de4 2019-06-26 stsp }
3498 4e759de4 2019-06-26 stsp
3499 4e759de4 2019-06-26 stsp if (do_list && delref)
3500 4e759de4 2019-06-26 stsp errx(1, "-l and -d options are mutually exclusive\n");
3501 4e759de4 2019-06-26 stsp
3502 4e759de4 2019-06-26 stsp argc -= optind;
3503 4e759de4 2019-06-26 stsp argv += optind;
3504 ad89fa31 2019-10-04 stsp
3505 ad89fa31 2019-10-04 stsp if (!do_list && !delref && argc == 0)
3506 ad89fa31 2019-10-04 stsp do_show = 1;
3507 4e759de4 2019-06-26 stsp
3508 a74f7e83 2019-11-10 stsp if ((do_list || delref || do_show) && commit_id_arg != NULL)
3509 a74f7e83 2019-11-10 stsp errx(1, "-c option can only be used when creating a branch");
3510 a74f7e83 2019-11-10 stsp
3511 4e759de4 2019-06-26 stsp if (do_list || delref) {
3512 4e759de4 2019-06-26 stsp if (argc > 0)
3513 4e759de4 2019-06-26 stsp usage_branch();
3514 a74f7e83 2019-11-10 stsp } else if (!do_show && argc != 1)
3515 4e759de4 2019-06-26 stsp usage_branch();
3516 4e759de4 2019-06-26 stsp
3517 4e759de4 2019-06-26 stsp #ifndef PROFILE
3518 ad89fa31 2019-10-04 stsp if (do_list || do_show) {
3519 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3520 4e759de4 2019-06-26 stsp NULL) == -1)
3521 4e759de4 2019-06-26 stsp err(1, "pledge");
3522 4e759de4 2019-06-26 stsp } else {
3523 4e759de4 2019-06-26 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
3524 4e759de4 2019-06-26 stsp "sendfd unveil", NULL) == -1)
3525 4e759de4 2019-06-26 stsp err(1, "pledge");
3526 4e759de4 2019-06-26 stsp }
3527 4e759de4 2019-06-26 stsp #endif
3528 4e759de4 2019-06-26 stsp cwd = getcwd(NULL, 0);
3529 4e759de4 2019-06-26 stsp if (cwd == NULL) {
3530 4e759de4 2019-06-26 stsp error = got_error_from_errno("getcwd");
3531 4e759de4 2019-06-26 stsp goto done;
3532 4e759de4 2019-06-26 stsp }
3533 4e759de4 2019-06-26 stsp
3534 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
3535 4e759de4 2019-06-26 stsp error = got_worktree_open(&worktree, cwd);
3536 4e759de4 2019-06-26 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
3537 4e759de4 2019-06-26 stsp goto done;
3538 4e759de4 2019-06-26 stsp else
3539 4e759de4 2019-06-26 stsp error = NULL;
3540 4e759de4 2019-06-26 stsp if (worktree) {
3541 4e759de4 2019-06-26 stsp repo_path =
3542 4e759de4 2019-06-26 stsp strdup(got_worktree_get_repo_path(worktree));
3543 4e759de4 2019-06-26 stsp if (repo_path == NULL)
3544 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
3545 4e759de4 2019-06-26 stsp if (error)
3546 4e759de4 2019-06-26 stsp goto done;
3547 4e759de4 2019-06-26 stsp } else {
3548 4e759de4 2019-06-26 stsp repo_path = strdup(cwd);
3549 4e759de4 2019-06-26 stsp if (repo_path == NULL) {
3550 4e759de4 2019-06-26 stsp error = got_error_from_errno("strdup");
3551 4e759de4 2019-06-26 stsp goto done;
3552 4e759de4 2019-06-26 stsp }
3553 4e759de4 2019-06-26 stsp }
3554 4e759de4 2019-06-26 stsp }
3555 4e759de4 2019-06-26 stsp
3556 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
3557 4e759de4 2019-06-26 stsp if (error != NULL)
3558 4e759de4 2019-06-26 stsp goto done;
3559 4e759de4 2019-06-26 stsp
3560 4e759de4 2019-06-26 stsp error = apply_unveil(got_repo_get_path(repo), do_list,
3561 c530dc23 2019-07-23 stsp worktree ? got_worktree_get_root_path(worktree) : NULL);
3562 4e759de4 2019-06-26 stsp if (error)
3563 4e759de4 2019-06-26 stsp goto done;
3564 4e759de4 2019-06-26 stsp
3565 ad89fa31 2019-10-04 stsp if (do_show)
3566 ad89fa31 2019-10-04 stsp error = show_current_branch(repo, worktree);
3567 ad89fa31 2019-10-04 stsp else if (do_list)
3568 ba882ee3 2019-07-11 stsp error = list_branches(repo, worktree);
3569 4e759de4 2019-06-26 stsp else if (delref)
3570 45cd4e47 2019-08-25 stsp error = delete_branch(repo, worktree, delref);
3571 4e759de4 2019-06-26 stsp else {
3572 a74f7e83 2019-11-10 stsp struct got_object_id *commit_id;
3573 a74f7e83 2019-11-10 stsp if (commit_id_arg == NULL)
3574 a74f7e83 2019-11-10 stsp commit_id_arg = worktree ?
3575 4e759de4 2019-06-26 stsp got_worktree_get_head_ref_name(worktree) :
3576 4e759de4 2019-06-26 stsp GOT_REF_HEAD;
3577 a74f7e83 2019-11-10 stsp error = resolve_commit_arg(&commit_id, commit_id_arg, repo);
3578 a74f7e83 2019-11-10 stsp if (error)
3579 a74f7e83 2019-11-10 stsp goto done;
3580 a74f7e83 2019-11-10 stsp error = add_branch(repo, argv[0], commit_id);
3581 a74f7e83 2019-11-10 stsp free(commit_id);
3582 4e759de4 2019-06-26 stsp }
3583 4e759de4 2019-06-26 stsp done:
3584 d0eebce4 2019-03-11 stsp if (repo)
3585 d0eebce4 2019-03-11 stsp got_repo_close(repo);
3586 d0eebce4 2019-03-11 stsp if (worktree)
3587 d0eebce4 2019-03-11 stsp got_worktree_close(worktree);
3588 d0eebce4 2019-03-11 stsp free(cwd);
3589 d0eebce4 2019-03-11 stsp free(repo_path);
3590 d00136be 2019-03-26 stsp return error;
3591 d00136be 2019-03-26 stsp }
3592 d00136be 2019-03-26 stsp
3593 8e7bd50a 2019-08-22 stsp
3594 d00136be 2019-03-26 stsp __dead static void
3595 8e7bd50a 2019-08-22 stsp usage_tag(void)
3596 8e7bd50a 2019-08-22 stsp {
3597 8e7bd50a 2019-08-22 stsp fprintf(stderr,
3598 c904c63e 2019-08-22 stsp "usage: %s tag [-r repository] | -l | "
3599 8e7bd50a 2019-08-22 stsp "[-m message] name [commit]\n", getprogname());
3600 8e7bd50a 2019-08-22 stsp exit(1);
3601 b8bad2ba 2019-08-23 stsp }
3602 b8bad2ba 2019-08-23 stsp
3603 b8bad2ba 2019-08-23 stsp #if 0
3604 b8bad2ba 2019-08-23 stsp static const struct got_error *
3605 b8bad2ba 2019-08-23 stsp sort_tags(struct got_reflist_head *sorted, struct got_reflist_head *tags)
3606 b8bad2ba 2019-08-23 stsp {
3607 b8bad2ba 2019-08-23 stsp const struct got_error *err = NULL;
3608 b8bad2ba 2019-08-23 stsp struct got_reflist_entry *re, *se, *new;
3609 b8bad2ba 2019-08-23 stsp struct got_object_id *re_id, *se_id;
3610 b8bad2ba 2019-08-23 stsp struct got_tag_object *re_tag, *se_tag;
3611 b8bad2ba 2019-08-23 stsp time_t re_time, se_time;
3612 b8bad2ba 2019-08-23 stsp
3613 b8bad2ba 2019-08-23 stsp SIMPLEQ_FOREACH(re, tags, entry) {
3614 b8bad2ba 2019-08-23 stsp se = SIMPLEQ_FIRST(sorted);
3615 b8bad2ba 2019-08-23 stsp if (se == NULL) {
3616 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
3617 b8bad2ba 2019-08-23 stsp if (err)
3618 b8bad2ba 2019-08-23 stsp return err;
3619 b8bad2ba 2019-08-23 stsp SIMPLEQ_INSERT_HEAD(sorted, new, entry);
3620 b8bad2ba 2019-08-23 stsp continue;
3621 b8bad2ba 2019-08-23 stsp } else {
3622 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&re_id, repo, re->ref);
3623 b8bad2ba 2019-08-23 stsp if (err)
3624 b8bad2ba 2019-08-23 stsp break;
3625 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&re_tag, repo, re_id);
3626 b8bad2ba 2019-08-23 stsp free(re_id);
3627 b8bad2ba 2019-08-23 stsp if (err)
3628 b8bad2ba 2019-08-23 stsp break;
3629 b8bad2ba 2019-08-23 stsp re_time = got_object_tag_get_tagger_time(re_tag);
3630 b8bad2ba 2019-08-23 stsp got_object_tag_close(re_tag);
3631 b8bad2ba 2019-08-23 stsp }
3632 b8bad2ba 2019-08-23 stsp
3633 b8bad2ba 2019-08-23 stsp while (se) {
3634 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&se_id, repo, re->ref);
3635 b8bad2ba 2019-08-23 stsp if (err)
3636 b8bad2ba 2019-08-23 stsp break;
3637 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&se_tag, repo, se_id);
3638 b8bad2ba 2019-08-23 stsp free(se_id);
3639 b8bad2ba 2019-08-23 stsp if (err)
3640 b8bad2ba 2019-08-23 stsp break;
3641 b8bad2ba 2019-08-23 stsp se_time = got_object_tag_get_tagger_time(se_tag);
3642 b8bad2ba 2019-08-23 stsp got_object_tag_close(se_tag);
3643 b8bad2ba 2019-08-23 stsp
3644 b8bad2ba 2019-08-23 stsp if (se_time > re_time) {
3645 b8bad2ba 2019-08-23 stsp err = got_reflist_entry_dup(&new, re);
3646 b8bad2ba 2019-08-23 stsp if (err)
3647 b8bad2ba 2019-08-23 stsp return err;
3648 b8bad2ba 2019-08-23 stsp SIMPLEQ_INSERT_AFTER(sorted, se, new, entry);
3649 b8bad2ba 2019-08-23 stsp break;
3650 b8bad2ba 2019-08-23 stsp }
3651 b8bad2ba 2019-08-23 stsp se = SIMPLEQ_NEXT(se, entry);
3652 b8bad2ba 2019-08-23 stsp continue;
3653 b8bad2ba 2019-08-23 stsp }
3654 b8bad2ba 2019-08-23 stsp }
3655 b8bad2ba 2019-08-23 stsp done:
3656 b8bad2ba 2019-08-23 stsp return err;
3657 8e7bd50a 2019-08-22 stsp }
3658 b8bad2ba 2019-08-23 stsp #endif
3659 8e7bd50a 2019-08-22 stsp
3660 8e7bd50a 2019-08-22 stsp static const struct got_error *
3661 b8bad2ba 2019-08-23 stsp cmp_tags(void *arg, int *cmp, struct got_reference *ref1,
3662 b8bad2ba 2019-08-23 stsp struct got_reference *ref2)
3663 b8bad2ba 2019-08-23 stsp {
3664 b8bad2ba 2019-08-23 stsp const struct got_error *err = NULL;
3665 b8bad2ba 2019-08-23 stsp struct got_repository *repo = arg;
3666 b8bad2ba 2019-08-23 stsp struct got_object_id *id1, *id2 = NULL;
3667 b8bad2ba 2019-08-23 stsp struct got_tag_object *tag1 = NULL, *tag2 = NULL;
3668 b8bad2ba 2019-08-23 stsp time_t time1, time2;
3669 b8bad2ba 2019-08-23 stsp
3670 b8bad2ba 2019-08-23 stsp *cmp = 0;
3671 b8bad2ba 2019-08-23 stsp
3672 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&id1, repo, ref1);
3673 b8bad2ba 2019-08-23 stsp if (err)
3674 b8bad2ba 2019-08-23 stsp return err;
3675 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&tag1, repo, id1);
3676 b8bad2ba 2019-08-23 stsp if (err)
3677 b8bad2ba 2019-08-23 stsp goto done;
3678 b8bad2ba 2019-08-23 stsp
3679 b8bad2ba 2019-08-23 stsp err = got_ref_resolve(&id2, repo, ref2);
3680 b8bad2ba 2019-08-23 stsp if (err)
3681 b8bad2ba 2019-08-23 stsp goto done;
3682 b8bad2ba 2019-08-23 stsp err = got_object_open_as_tag(&tag2, repo, id2);
3683 b8bad2ba 2019-08-23 stsp if (err)
3684 b8bad2ba 2019-08-23 stsp goto done;
3685 b8bad2ba 2019-08-23 stsp
3686 b8bad2ba 2019-08-23 stsp time1 = got_object_tag_get_tagger_time(tag1);
3687 b8bad2ba 2019-08-23 stsp time2 = got_object_tag_get_tagger_time(tag2);
3688 b8bad2ba 2019-08-23 stsp
3689 b8bad2ba 2019-08-23 stsp /* Put latest tags first. */
3690 b8bad2ba 2019-08-23 stsp if (time1 < time2)
3691 b8bad2ba 2019-08-23 stsp *cmp = 1;
3692 b8bad2ba 2019-08-23 stsp else if (time1 > time2)
3693 b8bad2ba 2019-08-23 stsp *cmp = -1;
3694 b8bad2ba 2019-08-23 stsp else
3695 b8bad2ba 2019-08-23 stsp err = got_ref_cmp_by_name(NULL, cmp, ref2, ref1);
3696 b8bad2ba 2019-08-23 stsp done:
3697 b8bad2ba 2019-08-23 stsp free(id1);
3698 b8bad2ba 2019-08-23 stsp free(id2);
3699 b8bad2ba 2019-08-23 stsp if (tag1)
3700 b8bad2ba 2019-08-23 stsp got_object_tag_close(tag1);
3701 b8bad2ba 2019-08-23 stsp if (tag2)
3702 b8bad2ba 2019-08-23 stsp got_object_tag_close(tag2);
3703 b8bad2ba 2019-08-23 stsp return err;
3704 b8bad2ba 2019-08-23 stsp }
3705 b8bad2ba 2019-08-23 stsp
3706 b8bad2ba 2019-08-23 stsp static const struct got_error *
3707 8e7bd50a 2019-08-22 stsp list_tags(struct got_repository *repo, struct got_worktree *worktree)
3708 8e7bd50a 2019-08-22 stsp {
3709 8e7bd50a 2019-08-22 stsp static const struct got_error *err = NULL;
3710 8e7bd50a 2019-08-22 stsp struct got_reflist_head refs;
3711 8e7bd50a 2019-08-22 stsp struct got_reflist_entry *re;
3712 8e7bd50a 2019-08-22 stsp
3713 8e7bd50a 2019-08-22 stsp SIMPLEQ_INIT(&refs);
3714 8e7bd50a 2019-08-22 stsp
3715 b8bad2ba 2019-08-23 stsp err = got_ref_list(&refs, repo, "refs/tags", cmp_tags, repo);
3716 8e7bd50a 2019-08-22 stsp if (err)
3717 8e7bd50a 2019-08-22 stsp return err;
3718 8e7bd50a 2019-08-22 stsp
3719 8e7bd50a 2019-08-22 stsp SIMPLEQ_FOREACH(re, &refs, entry) {
3720 8e7bd50a 2019-08-22 stsp const char *refname;
3721 8e7bd50a 2019-08-22 stsp char *refstr, *tagmsg0, *tagmsg, *line, *id_str, *datestr;
3722 8e7bd50a 2019-08-22 stsp char datebuf[26];
3723 8e7bd50a 2019-08-22 stsp time_t tagger_time;
3724 8e7bd50a 2019-08-22 stsp struct got_object_id *id;
3725 8e7bd50a 2019-08-22 stsp struct got_tag_object *tag;
3726 8e7bd50a 2019-08-22 stsp
3727 8e7bd50a 2019-08-22 stsp refname = got_ref_get_name(re->ref);
3728 8e7bd50a 2019-08-22 stsp if (strncmp(refname, "refs/tags/", 10) != 0)
3729 8e7bd50a 2019-08-22 stsp continue;
3730 8e7bd50a 2019-08-22 stsp refname += 10;
3731 8e7bd50a 2019-08-22 stsp refstr = got_ref_to_str(re->ref);
3732 8e7bd50a 2019-08-22 stsp if (refstr == NULL) {
3733 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("got_ref_to_str");
3734 8e7bd50a 2019-08-22 stsp break;
3735 8e7bd50a 2019-08-22 stsp }
3736 8e7bd50a 2019-08-22 stsp printf("%stag %s %s\n", GOT_COMMIT_SEP_STR, refname, refstr);
3737 8e7bd50a 2019-08-22 stsp free(refstr);
3738 8e7bd50a 2019-08-22 stsp
3739 8e7bd50a 2019-08-22 stsp err = got_ref_resolve(&id, repo, re->ref);
3740 8e7bd50a 2019-08-22 stsp if (err)
3741 8e7bd50a 2019-08-22 stsp break;
3742 8e7bd50a 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
3743 8e7bd50a 2019-08-22 stsp free(id);
3744 8e7bd50a 2019-08-22 stsp if (err)
3745 8e7bd50a 2019-08-22 stsp break;
3746 2417344c 2019-08-23 stsp printf("from: %s\n", got_object_tag_get_tagger(tag));
3747 2417344c 2019-08-23 stsp tagger_time = got_object_tag_get_tagger_time(tag);
3748 2417344c 2019-08-23 stsp datestr = get_datestr(&tagger_time, datebuf);
3749 2417344c 2019-08-23 stsp if (datestr)
3750 2417344c 2019-08-23 stsp printf("date: %s UTC\n", datestr);
3751 8e7bd50a 2019-08-22 stsp err = got_object_id_str(&id_str,
3752 8e7bd50a 2019-08-22 stsp got_object_tag_get_object_id(tag));
3753 8e7bd50a 2019-08-22 stsp if (err)
3754 8e7bd50a 2019-08-22 stsp break;
3755 8e7bd50a 2019-08-22 stsp switch (got_object_tag_get_object_type(tag)) {
3756 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
3757 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_BLOB, id_str);
3758 8e7bd50a 2019-08-22 stsp break;
3759 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
3760 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TREE, id_str);
3761 8e7bd50a 2019-08-22 stsp break;
3762 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
3763 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_COMMIT, id_str);
3764 8e7bd50a 2019-08-22 stsp break;
3765 8e7bd50a 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
3766 2417344c 2019-08-23 stsp printf("object: %s %s\n", GOT_OBJ_LABEL_TAG, id_str);
3767 8e7bd50a 2019-08-22 stsp break;
3768 8e7bd50a 2019-08-22 stsp default:
3769 8e7bd50a 2019-08-22 stsp break;
3770 8e7bd50a 2019-08-22 stsp }
3771 8e7bd50a 2019-08-22 stsp free(id_str);
3772 8e7bd50a 2019-08-22 stsp tagmsg0 = strdup(got_object_tag_get_message(tag));
3773 8e7bd50a 2019-08-22 stsp got_object_tag_close(tag);
3774 8e7bd50a 2019-08-22 stsp if (tagmsg0 == NULL) {
3775 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("strdup");
3776 8e7bd50a 2019-08-22 stsp break;
3777 8e7bd50a 2019-08-22 stsp }
3778 8e7bd50a 2019-08-22 stsp
3779 8e7bd50a 2019-08-22 stsp tagmsg = tagmsg0;
3780 8e7bd50a 2019-08-22 stsp do {
3781 8e7bd50a 2019-08-22 stsp line = strsep(&tagmsg, "\n");
3782 8e7bd50a 2019-08-22 stsp if (line)
3783 8e7bd50a 2019-08-22 stsp printf(" %s\n", line);
3784 8e7bd50a 2019-08-22 stsp } while (line);
3785 8e7bd50a 2019-08-22 stsp free(tagmsg0);
3786 8e7bd50a 2019-08-22 stsp }
3787 8e7bd50a 2019-08-22 stsp
3788 8e7bd50a 2019-08-22 stsp got_ref_list_free(&refs);
3789 8e7bd50a 2019-08-22 stsp return NULL;
3790 8e7bd50a 2019-08-22 stsp }
3791 8e7bd50a 2019-08-22 stsp
3792 8e7bd50a 2019-08-22 stsp static const struct got_error *
3793 f372d5cd 2019-10-21 stsp get_tag_message(char **tagmsg, char **tagmsg_path, const char *commit_id_str,
3794 62870f63 2019-08-22 stsp const char *tag_name, const char *repo_path)
3795 8e7bd50a 2019-08-22 stsp {
3796 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
3797 8e7bd50a 2019-08-22 stsp char *template = NULL, *initial_content = NULL;
3798 f372d5cd 2019-10-21 stsp char *editor = NULL;
3799 8e7bd50a 2019-08-22 stsp int fd = -1;
3800 8e7bd50a 2019-08-22 stsp
3801 8e7bd50a 2019-08-22 stsp if (asprintf(&template, "/tmp/got-tagmsg") == -1) {
3802 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
3803 8e7bd50a 2019-08-22 stsp goto done;
3804 8e7bd50a 2019-08-22 stsp }
3805 8e7bd50a 2019-08-22 stsp
3806 62870f63 2019-08-22 stsp if (asprintf(&initial_content, "\n# tagging commit %s as %s\n",
3807 62870f63 2019-08-22 stsp commit_id_str, tag_name) == -1) {
3808 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
3809 8e7bd50a 2019-08-22 stsp goto done;
3810 8e7bd50a 2019-08-22 stsp }
3811 8e7bd50a 2019-08-22 stsp
3812 f372d5cd 2019-10-21 stsp err = got_opentemp_named_fd(tagmsg_path, &fd, template);
3813 8e7bd50a 2019-08-22 stsp if (err)
3814 8e7bd50a 2019-08-22 stsp goto done;
3815 8e7bd50a 2019-08-22 stsp
3816 8e7bd50a 2019-08-22 stsp dprintf(fd, initial_content);
3817 8e7bd50a 2019-08-22 stsp close(fd);
3818 8e7bd50a 2019-08-22 stsp
3819 8e7bd50a 2019-08-22 stsp err = get_editor(&editor);
3820 8e7bd50a 2019-08-22 stsp if (err)
3821 8e7bd50a 2019-08-22 stsp goto done;
3822 f372d5cd 2019-10-21 stsp err = edit_logmsg(tagmsg, editor, *tagmsg_path, initial_content);
3823 8e7bd50a 2019-08-22 stsp done:
3824 8e7bd50a 2019-08-22 stsp free(initial_content);
3825 8e7bd50a 2019-08-22 stsp free(template);
3826 8e7bd50a 2019-08-22 stsp free(editor);
3827 8e7bd50a 2019-08-22 stsp
3828 8e7bd50a 2019-08-22 stsp /* Editor is done; we can now apply unveil(2) */
3829 8e7bd50a 2019-08-22 stsp if (err == NULL) {
3830 8e7bd50a 2019-08-22 stsp err = apply_unveil(repo_path, 0, NULL);
3831 8e7bd50a 2019-08-22 stsp if (err) {
3832 8e7bd50a 2019-08-22 stsp free(*tagmsg);
3833 8e7bd50a 2019-08-22 stsp *tagmsg = NULL;
3834 8e7bd50a 2019-08-22 stsp }
3835 8e7bd50a 2019-08-22 stsp }
3836 8e7bd50a 2019-08-22 stsp return err;
3837 8e7bd50a 2019-08-22 stsp }
3838 8e7bd50a 2019-08-22 stsp
3839 8e7bd50a 2019-08-22 stsp static const struct got_error *
3840 8e7bd50a 2019-08-22 stsp add_tag(struct got_repository *repo, const char *tag_name,
3841 8e7bd50a 2019-08-22 stsp const char *commit_arg, const char *tagmsg_arg)
3842 8e7bd50a 2019-08-22 stsp {
3843 8e7bd50a 2019-08-22 stsp const struct got_error *err = NULL;
3844 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id = NULL, *tag_id = NULL;
3845 8e7bd50a 2019-08-22 stsp char *label = NULL, *commit_id_str = NULL;
3846 8e7bd50a 2019-08-22 stsp struct got_reference *ref = NULL;
3847 aba9c984 2019-09-08 stsp char *refname = NULL, *tagmsg = NULL, *tagger = NULL;
3848 f372d5cd 2019-10-21 stsp char *tagmsg_path = NULL, *tag_id_str = NULL;
3849 f372d5cd 2019-10-21 stsp int preserve_tagmsg = 0;
3850 8e7bd50a 2019-08-22 stsp
3851 8e7bd50a 2019-08-22 stsp /*
3852 bd5895f3 2019-11-28 stsp * Don't let the user create a tag name with a leading '-'.
3853 8e7bd50a 2019-08-22 stsp * While technically a valid reference name, this case is usually
3854 8e7bd50a 2019-08-22 stsp * an unintended typo.
3855 8e7bd50a 2019-08-22 stsp */
3856 bd5895f3 2019-11-28 stsp if (tag_name[0] == '-')
3857 bd5895f3 2019-11-28 stsp return got_error_path(tag_name, GOT_ERR_REF_NAME_MINUS);
3858 8e7bd50a 2019-08-22 stsp
3859 aba9c984 2019-09-08 stsp err = get_author(&tagger, repo);
3860 8e7bd50a 2019-08-22 stsp if (err)
3861 8e7bd50a 2019-08-22 stsp return err;
3862 8e7bd50a 2019-08-22 stsp
3863 8e7bd50a 2019-08-22 stsp err = match_object_id(&commit_id, &label, commit_arg,
3864 8e7bd50a 2019-08-22 stsp GOT_OBJ_TYPE_COMMIT, 1, repo);
3865 8e7bd50a 2019-08-22 stsp if (err)
3866 8e7bd50a 2019-08-22 stsp goto done;
3867 8e7bd50a 2019-08-22 stsp
3868 8e7bd50a 2019-08-22 stsp err = got_object_id_str(&commit_id_str, commit_id);
3869 8e7bd50a 2019-08-22 stsp if (err)
3870 8e7bd50a 2019-08-22 stsp goto done;
3871 8e7bd50a 2019-08-22 stsp
3872 8e7bd50a 2019-08-22 stsp if (strncmp("refs/tags/", tag_name, 10) == 0) {
3873 8e7bd50a 2019-08-22 stsp refname = strdup(tag_name);
3874 8e7bd50a 2019-08-22 stsp if (refname == NULL) {
3875 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("strdup");
3876 8e7bd50a 2019-08-22 stsp goto done;
3877 8e7bd50a 2019-08-22 stsp }
3878 8e7bd50a 2019-08-22 stsp tag_name += 10;
3879 8e7bd50a 2019-08-22 stsp } else if (asprintf(&refname, "refs/tags/%s", tag_name) == -1) {
3880 8e7bd50a 2019-08-22 stsp err = got_error_from_errno("asprintf");
3881 8e7bd50a 2019-08-22 stsp goto done;
3882 8e7bd50a 2019-08-22 stsp }
3883 8e7bd50a 2019-08-22 stsp
3884 8e7bd50a 2019-08-22 stsp err = got_ref_open(&ref, repo, refname, 0);
3885 8e7bd50a 2019-08-22 stsp if (err == NULL) {
3886 8e7bd50a 2019-08-22 stsp err = got_error(GOT_ERR_TAG_EXISTS);
3887 8e7bd50a 2019-08-22 stsp goto done;
3888 8e7bd50a 2019-08-22 stsp } else if (err->code != GOT_ERR_NOT_REF)
3889 8e7bd50a 2019-08-22 stsp goto done;
3890 8e7bd50a 2019-08-22 stsp
3891 8e7bd50a 2019-08-22 stsp if (tagmsg_arg == NULL) {
3892 f372d5cd 2019-10-21 stsp err = get_tag_message(&tagmsg, &tagmsg_path, commit_id_str,
3893 62870f63 2019-08-22 stsp tag_name, got_repo_get_path(repo));
3894 f372d5cd 2019-10-21 stsp if (err) {
3895 f372d5cd 2019-10-21 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY &&
3896 f372d5cd 2019-10-21 stsp tagmsg_path != NULL)
3897 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
3898 8e7bd50a 2019-08-22 stsp goto done;
3899 f372d5cd 2019-10-21 stsp }
3900 8e7bd50a 2019-08-22 stsp }
3901 8e7bd50a 2019-08-22 stsp
3902 8e7bd50a 2019-08-22 stsp err = got_object_tag_create(&tag_id, tag_name, commit_id,
3903 8e7bd50a 2019-08-22 stsp tagger, time(NULL), tagmsg ? tagmsg : tagmsg_arg, repo);
3904 f372d5cd 2019-10-21 stsp if (err) {
3905 f372d5cd 2019-10-21 stsp if (tagmsg_path)
3906 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
3907 8e7bd50a 2019-08-22 stsp goto done;
3908 f372d5cd 2019-10-21 stsp }
3909 8e7bd50a 2019-08-22 stsp
3910 8e7bd50a 2019-08-22 stsp err = got_ref_alloc(&ref, refname, tag_id);
3911 f372d5cd 2019-10-21 stsp if (err) {
3912 f372d5cd 2019-10-21 stsp if (tagmsg_path)
3913 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
3914 8e7bd50a 2019-08-22 stsp goto done;
3915 f372d5cd 2019-10-21 stsp }
3916 8e7bd50a 2019-08-22 stsp
3917 8e7bd50a 2019-08-22 stsp err = got_ref_write(ref, repo);
3918 f372d5cd 2019-10-21 stsp if (err) {
3919 f372d5cd 2019-10-21 stsp if (tagmsg_path)
3920 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
3921 f372d5cd 2019-10-21 stsp goto done;
3922 f372d5cd 2019-10-21 stsp }
3923 8e7bd50a 2019-08-22 stsp
3924 f372d5cd 2019-10-21 stsp err = got_object_id_str(&tag_id_str, tag_id);
3925 f372d5cd 2019-10-21 stsp if (err) {
3926 f372d5cd 2019-10-21 stsp if (tagmsg_path)
3927 f372d5cd 2019-10-21 stsp preserve_tagmsg = 1;
3928 f372d5cd 2019-10-21 stsp goto done;
3929 8e7bd50a 2019-08-22 stsp }
3930 f372d5cd 2019-10-21 stsp printf("Created tag %s\n", tag_id_str);
3931 8e7bd50a 2019-08-22 stsp done:
3932 f372d5cd 2019-10-21 stsp if (preserve_tagmsg) {
3933 f372d5cd 2019-10-21 stsp fprintf(stderr, "%s: tag message preserved in %s\n",
3934 f372d5cd 2019-10-21 stsp getprogname(), tagmsg_path);
3935 f372d5cd 2019-10-21 stsp } else if (tagmsg_path && unlink(tagmsg_path) == -1 && err == NULL)
3936 f372d5cd 2019-10-21 stsp err = got_error_from_errno2("unlink", tagmsg_path);
3937 f372d5cd 2019-10-21 stsp free(tag_id_str);
3938 8e7bd50a 2019-08-22 stsp if (ref)
3939 8e7bd50a 2019-08-22 stsp got_ref_close(ref);
3940 8e7bd50a 2019-08-22 stsp free(commit_id);
3941 8e7bd50a 2019-08-22 stsp free(commit_id_str);
3942 8e7bd50a 2019-08-22 stsp free(refname);
3943 8e7bd50a 2019-08-22 stsp free(tagmsg);
3944 f372d5cd 2019-10-21 stsp free(tagmsg_path);
3945 aba9c984 2019-09-08 stsp free(tagger);
3946 8e7bd50a 2019-08-22 stsp return err;
3947 8e7bd50a 2019-08-22 stsp }
3948 8e7bd50a 2019-08-22 stsp
3949 8e7bd50a 2019-08-22 stsp static const struct got_error *
3950 8e7bd50a 2019-08-22 stsp cmd_tag(int argc, char *argv[])
3951 8e7bd50a 2019-08-22 stsp {
3952 8e7bd50a 2019-08-22 stsp const struct got_error *error = NULL;
3953 8e7bd50a 2019-08-22 stsp struct got_repository *repo = NULL;
3954 8e7bd50a 2019-08-22 stsp struct got_worktree *worktree = NULL;
3955 8e7bd50a 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *commit_id_str = NULL;
3956 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL;
3957 8e7bd50a 2019-08-22 stsp const char *tag_name, *commit_id_arg = NULL, *tagmsg = NULL;
3958 8e7bd50a 2019-08-22 stsp int ch, do_list = 0;
3959 8e7bd50a 2019-08-22 stsp
3960 8e7bd50a 2019-08-22 stsp while ((ch = getopt(argc, argv, "m:r:l")) != -1) {
3961 8e7bd50a 2019-08-22 stsp switch (ch) {
3962 8e7bd50a 2019-08-22 stsp case 'm':
3963 8e7bd50a 2019-08-22 stsp tagmsg = optarg;
3964 8e7bd50a 2019-08-22 stsp break;
3965 8e7bd50a 2019-08-22 stsp case 'r':
3966 8e7bd50a 2019-08-22 stsp repo_path = realpath(optarg, NULL);
3967 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
3968 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
3969 9ba1d308 2019-10-21 stsp optarg);
3970 8e7bd50a 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
3971 8e7bd50a 2019-08-22 stsp break;
3972 8e7bd50a 2019-08-22 stsp case 'l':
3973 8e7bd50a 2019-08-22 stsp do_list = 1;
3974 8e7bd50a 2019-08-22 stsp break;
3975 8e7bd50a 2019-08-22 stsp default:
3976 8e7bd50a 2019-08-22 stsp usage_tag();
3977 8e7bd50a 2019-08-22 stsp /* NOTREACHED */
3978 8e7bd50a 2019-08-22 stsp }
3979 8e7bd50a 2019-08-22 stsp }
3980 8e7bd50a 2019-08-22 stsp
3981 8e7bd50a 2019-08-22 stsp argc -= optind;
3982 8e7bd50a 2019-08-22 stsp argv += optind;
3983 8e7bd50a 2019-08-22 stsp
3984 8e7bd50a 2019-08-22 stsp if (do_list) {
3985 8e7bd50a 2019-08-22 stsp if (tagmsg)
3986 8e7bd50a 2019-08-22 stsp errx(1, "-l and -m options are mutually exclusive\n");
3987 8e7bd50a 2019-08-22 stsp if (argc > 0)
3988 8e7bd50a 2019-08-22 stsp usage_tag();
3989 8e7bd50a 2019-08-22 stsp } else if (argc < 1 || argc > 2)
3990 8e7bd50a 2019-08-22 stsp usage_tag();
3991 a2887370 2019-08-23 stsp else if (argc > 1)
3992 a2887370 2019-08-23 stsp commit_id_arg = argv[1];
3993 a2887370 2019-08-23 stsp tag_name = argv[0];
3994 8e7bd50a 2019-08-22 stsp
3995 8e7bd50a 2019-08-22 stsp #ifndef PROFILE
3996 8e7bd50a 2019-08-22 stsp if (do_list) {
3997 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath flock proc exec sendfd unveil",
3998 8e7bd50a 2019-08-22 stsp NULL) == -1)
3999 8e7bd50a 2019-08-22 stsp err(1, "pledge");
4000 8e7bd50a 2019-08-22 stsp } else {
4001 8e7bd50a 2019-08-22 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec "
4002 8e7bd50a 2019-08-22 stsp "sendfd unveil", NULL) == -1)
4003 8e7bd50a 2019-08-22 stsp err(1, "pledge");
4004 8e7bd50a 2019-08-22 stsp }
4005 8e7bd50a 2019-08-22 stsp #endif
4006 8e7bd50a 2019-08-22 stsp cwd = getcwd(NULL, 0);
4007 8e7bd50a 2019-08-22 stsp if (cwd == NULL) {
4008 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("getcwd");
4009 8e7bd50a 2019-08-22 stsp goto done;
4010 8e7bd50a 2019-08-22 stsp }
4011 8e7bd50a 2019-08-22 stsp
4012 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
4013 8e7bd50a 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
4014 8e7bd50a 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
4015 8e7bd50a 2019-08-22 stsp goto done;
4016 8e7bd50a 2019-08-22 stsp else
4017 8e7bd50a 2019-08-22 stsp error = NULL;
4018 8e7bd50a 2019-08-22 stsp if (worktree) {
4019 8e7bd50a 2019-08-22 stsp repo_path =
4020 8e7bd50a 2019-08-22 stsp strdup(got_worktree_get_repo_path(worktree));
4021 8e7bd50a 2019-08-22 stsp if (repo_path == NULL)
4022 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
4023 8e7bd50a 2019-08-22 stsp if (error)
4024 8e7bd50a 2019-08-22 stsp goto done;
4025 8e7bd50a 2019-08-22 stsp } else {
4026 8e7bd50a 2019-08-22 stsp repo_path = strdup(cwd);
4027 8e7bd50a 2019-08-22 stsp if (repo_path == NULL) {
4028 8e7bd50a 2019-08-22 stsp error = got_error_from_errno("strdup");
4029 8e7bd50a 2019-08-22 stsp goto done;
4030 8e7bd50a 2019-08-22 stsp }
4031 8e7bd50a 2019-08-22 stsp }
4032 8e7bd50a 2019-08-22 stsp }
4033 8e7bd50a 2019-08-22 stsp
4034 8e7bd50a 2019-08-22 stsp if (do_list) {
4035 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
4036 c9956ddf 2019-09-08 stsp if (error != NULL)
4037 c9956ddf 2019-09-08 stsp goto done;
4038 8e7bd50a 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4039 8e7bd50a 2019-08-22 stsp if (error)
4040 8e7bd50a 2019-08-22 stsp goto done;
4041 8e7bd50a 2019-08-22 stsp error = list_tags(repo, worktree);
4042 8e7bd50a 2019-08-22 stsp } else {
4043 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
4044 c9956ddf 2019-09-08 stsp if (error)
4045 c9956ddf 2019-09-08 stsp goto done;
4046 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, gitconfig_path);
4047 c9956ddf 2019-09-08 stsp if (error != NULL)
4048 c9956ddf 2019-09-08 stsp goto done;
4049 c9956ddf 2019-09-08 stsp
4050 8e7bd50a 2019-08-22 stsp if (tagmsg) {
4051 8e7bd50a 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
4052 8e7bd50a 2019-08-22 stsp if (error)
4053 8e7bd50a 2019-08-22 stsp goto done;
4054 8e7bd50a 2019-08-22 stsp }
4055 8e7bd50a 2019-08-22 stsp
4056 8e7bd50a 2019-08-22 stsp if (commit_id_arg == NULL) {
4057 8e7bd50a 2019-08-22 stsp struct got_reference *head_ref;
4058 8e7bd50a 2019-08-22 stsp struct got_object_id *commit_id;
4059 8e7bd50a 2019-08-22 stsp error = got_ref_open(&head_ref, repo,
4060 8e7bd50a 2019-08-22 stsp worktree ? got_worktree_get_head_ref_name(worktree)
4061 8e7bd50a 2019-08-22 stsp : GOT_REF_HEAD, 0);
4062 8e7bd50a 2019-08-22 stsp if (error)
4063 8e7bd50a 2019-08-22 stsp goto done;
4064 8e7bd50a 2019-08-22 stsp error = got_ref_resolve(&commit_id, repo, head_ref);
4065 8e7bd50a 2019-08-22 stsp got_ref_close(head_ref);
4066 8e7bd50a 2019-08-22 stsp if (error)
4067 8e7bd50a 2019-08-22 stsp goto done;
4068 8e7bd50a 2019-08-22 stsp error = got_object_id_str(&commit_id_str, commit_id);
4069 8e7bd50a 2019-08-22 stsp free(commit_id);
4070 8e7bd50a 2019-08-22 stsp if (error)
4071 8e7bd50a 2019-08-22 stsp goto done;
4072 8e7bd50a 2019-08-22 stsp }
4073 8e7bd50a 2019-08-22 stsp
4074 8e7bd50a 2019-08-22 stsp error = add_tag(repo, tag_name,
4075 8e7bd50a 2019-08-22 stsp commit_id_str ? commit_id_str : commit_id_arg, tagmsg);
4076 8e7bd50a 2019-08-22 stsp }
4077 8e7bd50a 2019-08-22 stsp done:
4078 8e7bd50a 2019-08-22 stsp if (repo)
4079 8e7bd50a 2019-08-22 stsp got_repo_close(repo);
4080 8e7bd50a 2019-08-22 stsp if (worktree)
4081 8e7bd50a 2019-08-22 stsp got_worktree_close(worktree);
4082 8e7bd50a 2019-08-22 stsp free(cwd);
4083 8e7bd50a 2019-08-22 stsp free(repo_path);
4084 c9956ddf 2019-09-08 stsp free(gitconfig_path);
4085 8e7bd50a 2019-08-22 stsp free(commit_id_str);
4086 8e7bd50a 2019-08-22 stsp return error;
4087 8e7bd50a 2019-08-22 stsp }
4088 8e7bd50a 2019-08-22 stsp
4089 8e7bd50a 2019-08-22 stsp __dead static void
4090 d00136be 2019-03-26 stsp usage_add(void)
4091 d00136be 2019-03-26 stsp {
4092 fbb7e5c7 2019-05-11 stsp fprintf(stderr, "usage: %s add file-path ...\n", getprogname());
4093 d00136be 2019-03-26 stsp exit(1);
4094 d00136be 2019-03-26 stsp }
4095 d00136be 2019-03-26 stsp
4096 d00136be 2019-03-26 stsp static const struct got_error *
4097 4e68cba3 2019-11-23 stsp add_progress(void *arg, unsigned char status, const char *path)
4098 4e68cba3 2019-11-23 stsp {
4099 4e68cba3 2019-11-23 stsp while (path[0] == '/')
4100 4e68cba3 2019-11-23 stsp path++;
4101 4e68cba3 2019-11-23 stsp printf("%c %s\n", status, path);
4102 4e68cba3 2019-11-23 stsp return NULL;
4103 4e68cba3 2019-11-23 stsp }
4104 4e68cba3 2019-11-23 stsp
4105 4e68cba3 2019-11-23 stsp static const struct got_error *
4106 d00136be 2019-03-26 stsp cmd_add(int argc, char *argv[])
4107 d00136be 2019-03-26 stsp {
4108 d00136be 2019-03-26 stsp const struct got_error *error = NULL;
4109 031a5338 2019-03-26 stsp struct got_repository *repo = NULL;
4110 d00136be 2019-03-26 stsp struct got_worktree *worktree = NULL;
4111 1dd54920 2019-05-11 stsp char *cwd = NULL;
4112 1dd54920 2019-05-11 stsp struct got_pathlist_head paths;
4113 1dd54920 2019-05-11 stsp struct got_pathlist_entry *pe;
4114 4e68cba3 2019-11-23 stsp int ch, can_recurse = 0;
4115 1dd54920 2019-05-11 stsp
4116 1dd54920 2019-05-11 stsp TAILQ_INIT(&paths);
4117 d00136be 2019-03-26 stsp
4118 4e68cba3 2019-11-23 stsp while ((ch = getopt(argc, argv, "R")) != -1) {
4119 d00136be 2019-03-26 stsp switch (ch) {
4120 4e68cba3 2019-11-23 stsp case 'R':
4121 4e68cba3 2019-11-23 stsp can_recurse = 1;
4122 4e68cba3 2019-11-23 stsp break;
4123 d00136be 2019-03-26 stsp default:
4124 d00136be 2019-03-26 stsp usage_add();
4125 d00136be 2019-03-26 stsp /* NOTREACHED */
4126 d00136be 2019-03-26 stsp }
4127 d00136be 2019-03-26 stsp }
4128 d00136be 2019-03-26 stsp
4129 d00136be 2019-03-26 stsp argc -= optind;
4130 d00136be 2019-03-26 stsp argv += optind;
4131 d00136be 2019-03-26 stsp
4132 43012d58 2019-07-14 stsp #ifndef PROFILE
4133 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4134 43012d58 2019-07-14 stsp NULL) == -1)
4135 43012d58 2019-07-14 stsp err(1, "pledge");
4136 43012d58 2019-07-14 stsp #endif
4137 723c305c 2019-05-11 jcs if (argc < 1)
4138 d00136be 2019-03-26 stsp usage_add();
4139 d00136be 2019-03-26 stsp
4140 d00136be 2019-03-26 stsp cwd = getcwd(NULL, 0);
4141 d00136be 2019-03-26 stsp if (cwd == NULL) {
4142 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4143 d00136be 2019-03-26 stsp goto done;
4144 d00136be 2019-03-26 stsp }
4145 723c305c 2019-05-11 jcs
4146 d00136be 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
4147 d00136be 2019-03-26 stsp if (error)
4148 d00136be 2019-03-26 stsp goto done;
4149 d00136be 2019-03-26 stsp
4150 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4151 c9956ddf 2019-09-08 stsp NULL);
4152 031a5338 2019-03-26 stsp if (error != NULL)
4153 031a5338 2019-03-26 stsp goto done;
4154 031a5338 2019-03-26 stsp
4155 031a5338 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4156 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4157 d00136be 2019-03-26 stsp if (error)
4158 d00136be 2019-03-26 stsp goto done;
4159 d00136be 2019-03-26 stsp
4160 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4161 6d022e97 2019-08-04 stsp if (error)
4162 6d022e97 2019-08-04 stsp goto done;
4163 723c305c 2019-05-11 jcs
4164 4e68cba3 2019-11-23 stsp if (!can_recurse) {
4165 4e68cba3 2019-11-23 stsp char *ondisk_path;
4166 4e68cba3 2019-11-23 stsp struct stat sb;
4167 4e68cba3 2019-11-23 stsp TAILQ_FOREACH(pe, &paths, entry) {
4168 4e68cba3 2019-11-23 stsp if (asprintf(&ondisk_path, "%s/%s",
4169 4e68cba3 2019-11-23 stsp got_worktree_get_root_path(worktree),
4170 4e68cba3 2019-11-23 stsp pe->path) == -1) {
4171 4e68cba3 2019-11-23 stsp error = got_error_from_errno("asprintf");
4172 4e68cba3 2019-11-23 stsp goto done;
4173 4e68cba3 2019-11-23 stsp }
4174 4e68cba3 2019-11-23 stsp if (lstat(ondisk_path, &sb) == -1) {
4175 4e68cba3 2019-11-23 stsp if (errno == ENOENT) {
4176 4e68cba3 2019-11-23 stsp free(ondisk_path);
4177 4e68cba3 2019-11-23 stsp continue;
4178 4e68cba3 2019-11-23 stsp }
4179 4e68cba3 2019-11-23 stsp error = got_error_from_errno2("lstat",
4180 4e68cba3 2019-11-23 stsp ondisk_path);
4181 4e68cba3 2019-11-23 stsp free(ondisk_path);
4182 4e68cba3 2019-11-23 stsp goto done;
4183 4e68cba3 2019-11-23 stsp }
4184 4e68cba3 2019-11-23 stsp free(ondisk_path);
4185 4e68cba3 2019-11-23 stsp if (S_ISDIR(sb.st_mode)) {
4186 4e68cba3 2019-11-23 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
4187 4e68cba3 2019-11-23 stsp "adding directories requires -R option");
4188 4e68cba3 2019-11-23 stsp goto done;
4189 4e68cba3 2019-11-23 stsp }
4190 4e68cba3 2019-11-23 stsp }
4191 4e68cba3 2019-11-23 stsp }
4192 4e68cba3 2019-11-23 stsp error = got_worktree_schedule_add(worktree, &paths, add_progress,
4193 1dd54920 2019-05-11 stsp NULL, repo);
4194 d00136be 2019-03-26 stsp done:
4195 031a5338 2019-03-26 stsp if (repo)
4196 031a5338 2019-03-26 stsp got_repo_close(repo);
4197 d00136be 2019-03-26 stsp if (worktree)
4198 d00136be 2019-03-26 stsp got_worktree_close(worktree);
4199 1dd54920 2019-05-11 stsp TAILQ_FOREACH(pe, &paths, entry)
4200 1dd54920 2019-05-11 stsp free((char *)pe->path);
4201 1dd54920 2019-05-11 stsp got_pathlist_free(&paths);
4202 2ec1f75b 2019-03-26 stsp free(cwd);
4203 2ec1f75b 2019-03-26 stsp return error;
4204 2ec1f75b 2019-03-26 stsp }
4205 2ec1f75b 2019-03-26 stsp
4206 2ec1f75b 2019-03-26 stsp __dead static void
4207 648e4ef7 2019-07-09 stsp usage_remove(void)
4208 2ec1f75b 2019-03-26 stsp {
4209 648e4ef7 2019-07-09 stsp fprintf(stderr, "usage: %s remove [-f] file-path ...\n", getprogname());
4210 2ec1f75b 2019-03-26 stsp exit(1);
4211 2a06fe5f 2019-08-24 stsp }
4212 2a06fe5f 2019-08-24 stsp
4213 2a06fe5f 2019-08-24 stsp static const struct got_error *
4214 2a06fe5f 2019-08-24 stsp print_remove_status(void *arg, unsigned char status,
4215 2a06fe5f 2019-08-24 stsp unsigned char staged_status, const char *path,
4216 2a06fe5f 2019-08-24 stsp struct got_object_id *blob_id, struct got_object_id *staged_blob_id,
4217 2a06fe5f 2019-08-24 stsp struct got_object_id *commit_id)
4218 2a06fe5f 2019-08-24 stsp {
4219 2a06fe5f 2019-08-24 stsp if (status == GOT_STATUS_NONEXISTENT)
4220 2a06fe5f 2019-08-24 stsp return NULL;
4221 2a06fe5f 2019-08-24 stsp if (status == staged_status && (status == GOT_STATUS_DELETE))
4222 2a06fe5f 2019-08-24 stsp status = GOT_STATUS_NO_CHANGE;
4223 2a06fe5f 2019-08-24 stsp printf("%c%c %s\n", status, staged_status, path);
4224 2a06fe5f 2019-08-24 stsp return NULL;
4225 2ec1f75b 2019-03-26 stsp }
4226 2ec1f75b 2019-03-26 stsp
4227 2ec1f75b 2019-03-26 stsp static const struct got_error *
4228 648e4ef7 2019-07-09 stsp cmd_remove(int argc, char *argv[])
4229 2ec1f75b 2019-03-26 stsp {
4230 2ec1f75b 2019-03-26 stsp const struct got_error *error = NULL;
4231 2ec1f75b 2019-03-26 stsp struct got_worktree *worktree = NULL;
4232 2ec1f75b 2019-03-26 stsp struct got_repository *repo = NULL;
4233 17ed4618 2019-06-02 stsp char *cwd = NULL;
4234 17ed4618 2019-06-02 stsp struct got_pathlist_head paths;
4235 17ed4618 2019-06-02 stsp struct got_pathlist_entry *pe;
4236 6d022e97 2019-08-04 stsp int ch, delete_local_mods = 0;
4237 2ec1f75b 2019-03-26 stsp
4238 17ed4618 2019-06-02 stsp TAILQ_INIT(&paths);
4239 17ed4618 2019-06-02 stsp
4240 2ec1f75b 2019-03-26 stsp while ((ch = getopt(argc, argv, "f")) != -1) {
4241 2ec1f75b 2019-03-26 stsp switch (ch) {
4242 2ec1f75b 2019-03-26 stsp case 'f':
4243 2ec1f75b 2019-03-26 stsp delete_local_mods = 1;
4244 2ec1f75b 2019-03-26 stsp break;
4245 2ec1f75b 2019-03-26 stsp default:
4246 2ec1f75b 2019-03-26 stsp usage_add();
4247 2ec1f75b 2019-03-26 stsp /* NOTREACHED */
4248 2ec1f75b 2019-03-26 stsp }
4249 2ec1f75b 2019-03-26 stsp }
4250 2ec1f75b 2019-03-26 stsp
4251 2ec1f75b 2019-03-26 stsp argc -= optind;
4252 2ec1f75b 2019-03-26 stsp argv += optind;
4253 2ec1f75b 2019-03-26 stsp
4254 43012d58 2019-07-14 stsp #ifndef PROFILE
4255 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
4256 43012d58 2019-07-14 stsp NULL) == -1)
4257 43012d58 2019-07-14 stsp err(1, "pledge");
4258 43012d58 2019-07-14 stsp #endif
4259 17ed4618 2019-06-02 stsp if (argc < 1)
4260 648e4ef7 2019-07-09 stsp usage_remove();
4261 2ec1f75b 2019-03-26 stsp
4262 2ec1f75b 2019-03-26 stsp cwd = getcwd(NULL, 0);
4263 2ec1f75b 2019-03-26 stsp if (cwd == NULL) {
4264 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4265 2ec1f75b 2019-03-26 stsp goto done;
4266 2ec1f75b 2019-03-26 stsp }
4267 2ec1f75b 2019-03-26 stsp error = got_worktree_open(&worktree, cwd);
4268 2ec1f75b 2019-03-26 stsp if (error)
4269 2ec1f75b 2019-03-26 stsp goto done;
4270 2ec1f75b 2019-03-26 stsp
4271 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4272 c9956ddf 2019-09-08 stsp NULL);
4273 2af4a041 2019-05-11 jcs if (error)
4274 2ec1f75b 2019-03-26 stsp goto done;
4275 2ec1f75b 2019-03-26 stsp
4276 c2253644 2019-03-26 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4277 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4278 2ec1f75b 2019-03-26 stsp if (error)
4279 2ec1f75b 2019-03-26 stsp goto done;
4280 2ec1f75b 2019-03-26 stsp
4281 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4282 6d022e97 2019-08-04 stsp if (error)
4283 6d022e97 2019-08-04 stsp goto done;
4284 17ed4618 2019-06-02 stsp
4285 17ed4618 2019-06-02 stsp error = got_worktree_schedule_delete(worktree, &paths,
4286 2a06fe5f 2019-08-24 stsp delete_local_mods, print_remove_status, NULL, repo);
4287 a129376b 2019-03-28 stsp if (error)
4288 a129376b 2019-03-28 stsp goto done;
4289 a129376b 2019-03-28 stsp done:
4290 a129376b 2019-03-28 stsp if (repo)
4291 a129376b 2019-03-28 stsp got_repo_close(repo);
4292 a129376b 2019-03-28 stsp if (worktree)
4293 a129376b 2019-03-28 stsp got_worktree_close(worktree);
4294 17ed4618 2019-06-02 stsp TAILQ_FOREACH(pe, &paths, entry)
4295 17ed4618 2019-06-02 stsp free((char *)pe->path);
4296 17ed4618 2019-06-02 stsp got_pathlist_free(&paths);
4297 a129376b 2019-03-28 stsp free(cwd);
4298 a129376b 2019-03-28 stsp return error;
4299 a129376b 2019-03-28 stsp }
4300 a129376b 2019-03-28 stsp
4301 a129376b 2019-03-28 stsp __dead static void
4302 a129376b 2019-03-28 stsp usage_revert(void)
4303 a129376b 2019-03-28 stsp {
4304 33aa809d 2019-08-08 stsp fprintf(stderr, "usage: %s revert [-p] [-F response-script] [-R] "
4305 33aa809d 2019-08-08 stsp "path ...\n", getprogname());
4306 a129376b 2019-03-28 stsp exit(1);
4307 a129376b 2019-03-28 stsp }
4308 a129376b 2019-03-28 stsp
4309 1ee397ad 2019-07-12 stsp static const struct got_error *
4310 a129376b 2019-03-28 stsp revert_progress(void *arg, unsigned char status, const char *path)
4311 a129376b 2019-03-28 stsp {
4312 a129376b 2019-03-28 stsp while (path[0] == '/')
4313 a129376b 2019-03-28 stsp path++;
4314 a129376b 2019-03-28 stsp printf("%c %s\n", status, path);
4315 33aa809d 2019-08-08 stsp return NULL;
4316 33aa809d 2019-08-08 stsp }
4317 33aa809d 2019-08-08 stsp
4318 33aa809d 2019-08-08 stsp struct choose_patch_arg {
4319 33aa809d 2019-08-08 stsp FILE *patch_script_file;
4320 33aa809d 2019-08-08 stsp const char *action;
4321 33aa809d 2019-08-08 stsp };
4322 33aa809d 2019-08-08 stsp
4323 33aa809d 2019-08-08 stsp static const struct got_error *
4324 33aa809d 2019-08-08 stsp show_change(unsigned char status, const char *path, FILE *patch_file, int n,
4325 33aa809d 2019-08-08 stsp int nchanges, const char *action)
4326 33aa809d 2019-08-08 stsp {
4327 33aa809d 2019-08-08 stsp char *line = NULL;
4328 33aa809d 2019-08-08 stsp size_t linesize = 0;
4329 33aa809d 2019-08-08 stsp ssize_t linelen;
4330 33aa809d 2019-08-08 stsp
4331 33aa809d 2019-08-08 stsp switch (status) {
4332 33aa809d 2019-08-08 stsp case GOT_STATUS_ADD:
4333 33aa809d 2019-08-08 stsp printf("A %s\n%s this addition? [y/n] ", path, action);
4334 33aa809d 2019-08-08 stsp break;
4335 33aa809d 2019-08-08 stsp case GOT_STATUS_DELETE:
4336 33aa809d 2019-08-08 stsp printf("D %s\n%s this deletion? [y/n] ", path, action);
4337 33aa809d 2019-08-08 stsp break;
4338 33aa809d 2019-08-08 stsp case GOT_STATUS_MODIFY:
4339 33aa809d 2019-08-08 stsp if (fseek(patch_file, 0L, SEEK_SET) == -1)
4340 33aa809d 2019-08-08 stsp return got_error_from_errno("fseek");
4341 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
4342 9516e7cb 2019-08-11 stsp while ((linelen = getline(&line, &linesize, patch_file)) != -1)
4343 33aa809d 2019-08-08 stsp printf("%s", line);
4344 33aa809d 2019-08-08 stsp if (ferror(patch_file))
4345 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
4346 33aa809d 2019-08-08 stsp printf(GOT_COMMIT_SEP_STR);
4347 33aa809d 2019-08-08 stsp printf("M %s (change %d of %d)\n%s this change? [y/n/q] ",
4348 33aa809d 2019-08-08 stsp path, n, nchanges, action);
4349 33aa809d 2019-08-08 stsp break;
4350 33aa809d 2019-08-08 stsp default:
4351 33aa809d 2019-08-08 stsp return got_error_path(path, GOT_ERR_FILE_STATUS);
4352 33aa809d 2019-08-08 stsp }
4353 33aa809d 2019-08-08 stsp
4354 33aa809d 2019-08-08 stsp return NULL;
4355 33aa809d 2019-08-08 stsp }
4356 33aa809d 2019-08-08 stsp
4357 33aa809d 2019-08-08 stsp static const struct got_error *
4358 33aa809d 2019-08-08 stsp choose_patch(int *choice, void *arg, unsigned char status, const char *path,
4359 33aa809d 2019-08-08 stsp FILE *patch_file, int n, int nchanges)
4360 33aa809d 2019-08-08 stsp {
4361 33aa809d 2019-08-08 stsp const struct got_error *err = NULL;
4362 33aa809d 2019-08-08 stsp char *line = NULL;
4363 33aa809d 2019-08-08 stsp size_t linesize = 0;
4364 33aa809d 2019-08-08 stsp ssize_t linelen;
4365 33aa809d 2019-08-08 stsp int resp = ' ';
4366 33aa809d 2019-08-08 stsp struct choose_patch_arg *a = arg;
4367 33aa809d 2019-08-08 stsp
4368 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NONE;
4369 33aa809d 2019-08-08 stsp
4370 33aa809d 2019-08-08 stsp if (a->patch_script_file) {
4371 33aa809d 2019-08-08 stsp char *nl;
4372 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
4373 33aa809d 2019-08-08 stsp a->action);
4374 33aa809d 2019-08-08 stsp if (err)
4375 33aa809d 2019-08-08 stsp return err;
4376 33aa809d 2019-08-08 stsp linelen = getline(&line, &linesize, a->patch_script_file);
4377 33aa809d 2019-08-08 stsp if (linelen == -1) {
4378 33aa809d 2019-08-08 stsp if (ferror(a->patch_script_file))
4379 33aa809d 2019-08-08 stsp return got_error_from_errno("getline");
4380 33aa809d 2019-08-08 stsp return NULL;
4381 33aa809d 2019-08-08 stsp }
4382 33aa809d 2019-08-08 stsp nl = strchr(line, '\n');
4383 33aa809d 2019-08-08 stsp if (nl)
4384 33aa809d 2019-08-08 stsp *nl = '\0';
4385 33aa809d 2019-08-08 stsp if (strcmp(line, "y") == 0) {
4386 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
4387 33aa809d 2019-08-08 stsp printf("y\n");
4388 33aa809d 2019-08-08 stsp } else if (strcmp(line, "n") == 0) {
4389 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
4390 33aa809d 2019-08-08 stsp printf("n\n");
4391 33aa809d 2019-08-08 stsp } else if (strcmp(line, "q") == 0 &&
4392 33aa809d 2019-08-08 stsp status == GOT_STATUS_MODIFY) {
4393 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
4394 33aa809d 2019-08-08 stsp printf("q\n");
4395 33aa809d 2019-08-08 stsp } else
4396 33aa809d 2019-08-08 stsp printf("invalid response '%s'\n", line);
4397 33aa809d 2019-08-08 stsp free(line);
4398 33aa809d 2019-08-08 stsp return NULL;
4399 33aa809d 2019-08-08 stsp }
4400 33aa809d 2019-08-08 stsp
4401 33aa809d 2019-08-08 stsp while (resp != 'y' && resp != 'n' && resp != 'q') {
4402 33aa809d 2019-08-08 stsp err = show_change(status, path, patch_file, n, nchanges,
4403 33aa809d 2019-08-08 stsp a->action);
4404 33aa809d 2019-08-08 stsp if (err)
4405 33aa809d 2019-08-08 stsp return err;
4406 33aa809d 2019-08-08 stsp resp = getchar();
4407 33aa809d 2019-08-08 stsp if (resp == '\n')
4408 33aa809d 2019-08-08 stsp resp = getchar();
4409 33aa809d 2019-08-08 stsp if (status == GOT_STATUS_MODIFY) {
4410 33aa809d 2019-08-08 stsp if (resp != 'y' && resp != 'n' && resp != 'q') {
4411 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
4412 33aa809d 2019-08-08 stsp resp = ' ';
4413 33aa809d 2019-08-08 stsp }
4414 33aa809d 2019-08-08 stsp } else if (resp != 'y' && resp != 'n') {
4415 33aa809d 2019-08-08 stsp printf("invalid response '%c'\n", resp);
4416 33aa809d 2019-08-08 stsp resp = ' ';
4417 33aa809d 2019-08-08 stsp }
4418 33aa809d 2019-08-08 stsp }
4419 33aa809d 2019-08-08 stsp
4420 33aa809d 2019-08-08 stsp if (resp == 'y')
4421 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_YES;
4422 33aa809d 2019-08-08 stsp else if (resp == 'n')
4423 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_NO;
4424 33aa809d 2019-08-08 stsp else if (resp == 'q' && status == GOT_STATUS_MODIFY)
4425 33aa809d 2019-08-08 stsp *choice = GOT_PATCH_CHOICE_QUIT;
4426 33aa809d 2019-08-08 stsp
4427 1ee397ad 2019-07-12 stsp return NULL;
4428 a129376b 2019-03-28 stsp }
4429 a129376b 2019-03-28 stsp
4430 33aa809d 2019-08-08 stsp
4431 a129376b 2019-03-28 stsp static const struct got_error *
4432 a129376b 2019-03-28 stsp cmd_revert(int argc, char *argv[])
4433 a129376b 2019-03-28 stsp {
4434 a129376b 2019-03-28 stsp const struct got_error *error = NULL;
4435 a129376b 2019-03-28 stsp struct got_worktree *worktree = NULL;
4436 a129376b 2019-03-28 stsp struct got_repository *repo = NULL;
4437 a129376b 2019-03-28 stsp char *cwd = NULL, *path = NULL;
4438 e20a8b6f 2019-06-04 stsp struct got_pathlist_head paths;
4439 0f6d7415 2019-08-08 stsp struct got_pathlist_entry *pe;
4440 33aa809d 2019-08-08 stsp int ch, can_recurse = 0, pflag = 0;
4441 33aa809d 2019-08-08 stsp FILE *patch_script_file = NULL;
4442 33aa809d 2019-08-08 stsp const char *patch_script_path = NULL;
4443 33aa809d 2019-08-08 stsp struct choose_patch_arg cpa;
4444 a129376b 2019-03-28 stsp
4445 e20a8b6f 2019-06-04 stsp TAILQ_INIT(&paths);
4446 e20a8b6f 2019-06-04 stsp
4447 33aa809d 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:R")) != -1) {
4448 a129376b 2019-03-28 stsp switch (ch) {
4449 33aa809d 2019-08-08 stsp case 'p':
4450 33aa809d 2019-08-08 stsp pflag = 1;
4451 33aa809d 2019-08-08 stsp break;
4452 33aa809d 2019-08-08 stsp case 'F':
4453 33aa809d 2019-08-08 stsp patch_script_path = optarg;
4454 33aa809d 2019-08-08 stsp break;
4455 0f6d7415 2019-08-08 stsp case 'R':
4456 0f6d7415 2019-08-08 stsp can_recurse = 1;
4457 0f6d7415 2019-08-08 stsp break;
4458 a129376b 2019-03-28 stsp default:
4459 a129376b 2019-03-28 stsp usage_revert();
4460 a129376b 2019-03-28 stsp /* NOTREACHED */
4461 a129376b 2019-03-28 stsp }
4462 a129376b 2019-03-28 stsp }
4463 a129376b 2019-03-28 stsp
4464 a129376b 2019-03-28 stsp argc -= optind;
4465 a129376b 2019-03-28 stsp argv += optind;
4466 a129376b 2019-03-28 stsp
4467 43012d58 2019-07-14 stsp #ifndef PROFILE
4468 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4469 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
4470 43012d58 2019-07-14 stsp err(1, "pledge");
4471 43012d58 2019-07-14 stsp #endif
4472 e20a8b6f 2019-06-04 stsp if (argc < 1)
4473 a129376b 2019-03-28 stsp usage_revert();
4474 33aa809d 2019-08-08 stsp if (patch_script_path && !pflag)
4475 33aa809d 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
4476 a129376b 2019-03-28 stsp
4477 a129376b 2019-03-28 stsp cwd = getcwd(NULL, 0);
4478 a129376b 2019-03-28 stsp if (cwd == NULL) {
4479 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4480 a129376b 2019-03-28 stsp goto done;
4481 a129376b 2019-03-28 stsp }
4482 a129376b 2019-03-28 stsp error = got_worktree_open(&worktree, cwd);
4483 2ec1f75b 2019-03-26 stsp if (error)
4484 2ec1f75b 2019-03-26 stsp goto done;
4485 a129376b 2019-03-28 stsp
4486 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4487 c9956ddf 2019-09-08 stsp NULL);
4488 a129376b 2019-03-28 stsp if (error != NULL)
4489 a129376b 2019-03-28 stsp goto done;
4490 a129376b 2019-03-28 stsp
4491 33aa809d 2019-08-08 stsp if (patch_script_path) {
4492 33aa809d 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
4493 33aa809d 2019-08-08 stsp if (patch_script_file == NULL) {
4494 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fopen",
4495 33aa809d 2019-08-08 stsp patch_script_path);
4496 33aa809d 2019-08-08 stsp goto done;
4497 33aa809d 2019-08-08 stsp }
4498 33aa809d 2019-08-08 stsp }
4499 a129376b 2019-03-28 stsp error = apply_unveil(got_repo_get_path(repo), 1,
4500 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4501 a129376b 2019-03-28 stsp if (error)
4502 a129376b 2019-03-28 stsp goto done;
4503 a129376b 2019-03-28 stsp
4504 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4505 6d022e97 2019-08-04 stsp if (error)
4506 6d022e97 2019-08-04 stsp goto done;
4507 00db391e 2019-08-03 stsp
4508 0f6d7415 2019-08-08 stsp if (!can_recurse) {
4509 0f6d7415 2019-08-08 stsp char *ondisk_path;
4510 0f6d7415 2019-08-08 stsp struct stat sb;
4511 0f6d7415 2019-08-08 stsp TAILQ_FOREACH(pe, &paths, entry) {
4512 0f6d7415 2019-08-08 stsp if (asprintf(&ondisk_path, "%s/%s",
4513 0f6d7415 2019-08-08 stsp got_worktree_get_root_path(worktree),
4514 0f6d7415 2019-08-08 stsp pe->path) == -1) {
4515 0f6d7415 2019-08-08 stsp error = got_error_from_errno("asprintf");
4516 0f6d7415 2019-08-08 stsp goto done;
4517 0f6d7415 2019-08-08 stsp }
4518 0f6d7415 2019-08-08 stsp if (lstat(ondisk_path, &sb) == -1) {
4519 0f6d7415 2019-08-08 stsp if (errno == ENOENT) {
4520 0f6d7415 2019-08-08 stsp free(ondisk_path);
4521 0f6d7415 2019-08-08 stsp continue;
4522 0f6d7415 2019-08-08 stsp }
4523 0f6d7415 2019-08-08 stsp error = got_error_from_errno2("lstat",
4524 0f6d7415 2019-08-08 stsp ondisk_path);
4525 0f6d7415 2019-08-08 stsp free(ondisk_path);
4526 0f6d7415 2019-08-08 stsp goto done;
4527 0f6d7415 2019-08-08 stsp }
4528 0f6d7415 2019-08-08 stsp free(ondisk_path);
4529 0f6d7415 2019-08-08 stsp if (S_ISDIR(sb.st_mode)) {
4530 0f6d7415 2019-08-08 stsp error = got_error_msg(GOT_ERR_BAD_PATH,
4531 0f6d7415 2019-08-08 stsp "reverting directories requires -R option");
4532 0f6d7415 2019-08-08 stsp goto done;
4533 0f6d7415 2019-08-08 stsp }
4534 0f6d7415 2019-08-08 stsp }
4535 0f6d7415 2019-08-08 stsp }
4536 0f6d7415 2019-08-08 stsp
4537 33aa809d 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
4538 33aa809d 2019-08-08 stsp cpa.action = "revert";
4539 33aa809d 2019-08-08 stsp error = got_worktree_revert(worktree, &paths, revert_progress, NULL,
4540 33aa809d 2019-08-08 stsp pflag ? choose_patch : NULL, &cpa, repo);
4541 a129376b 2019-03-28 stsp if (error)
4542 a129376b 2019-03-28 stsp goto done;
4543 2ec1f75b 2019-03-26 stsp done:
4544 33aa809d 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
4545 33aa809d 2019-08-08 stsp error == NULL)
4546 33aa809d 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
4547 2ec1f75b 2019-03-26 stsp if (repo)
4548 2ec1f75b 2019-03-26 stsp got_repo_close(repo);
4549 2ec1f75b 2019-03-26 stsp if (worktree)
4550 2ec1f75b 2019-03-26 stsp got_worktree_close(worktree);
4551 2ec1f75b 2019-03-26 stsp free(path);
4552 d00136be 2019-03-26 stsp free(cwd);
4553 6bad629b 2019-02-04 stsp return error;
4554 c4296144 2019-05-09 stsp }
4555 c4296144 2019-05-09 stsp
4556 c4296144 2019-05-09 stsp __dead static void
4557 c4296144 2019-05-09 stsp usage_commit(void)
4558 c4296144 2019-05-09 stsp {
4559 5c1e53bc 2019-07-28 stsp fprintf(stderr, "usage: %s commit [-m msg] [path ...]\n",
4560 5c1e53bc 2019-07-28 stsp getprogname());
4561 c4296144 2019-05-09 stsp exit(1);
4562 33ad4cbe 2019-05-12 jcs }
4563 33ad4cbe 2019-05-12 jcs
4564 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg {
4565 e2ba3d07 2019-05-13 stsp const char *cmdline_log;
4566 e2ba3d07 2019-05-13 stsp const char *editor;
4567 e0870e44 2019-05-13 stsp const char *worktree_path;
4568 76d98825 2019-06-03 stsp const char *branch_name;
4569 314a6357 2019-05-13 stsp const char *repo_path;
4570 e0870e44 2019-05-13 stsp char *logmsg_path;
4571 e2ba3d07 2019-05-13 stsp
4572 e2ba3d07 2019-05-13 stsp };
4573 e0870e44 2019-05-13 stsp
4574 33ad4cbe 2019-05-12 jcs static const struct got_error *
4575 33ad4cbe 2019-05-12 jcs collect_commit_logmsg(struct got_pathlist_head *commitable_paths, char **logmsg,
4576 33ad4cbe 2019-05-12 jcs void *arg)
4577 33ad4cbe 2019-05-12 jcs {
4578 76d98825 2019-06-03 stsp char *initial_content = NULL;
4579 33ad4cbe 2019-05-12 jcs struct got_pathlist_entry *pe;
4580 33ad4cbe 2019-05-12 jcs const struct got_error *err = NULL;
4581 e0870e44 2019-05-13 stsp char *template = NULL;
4582 e2ba3d07 2019-05-13 stsp struct collect_commit_logmsg_arg *a = arg;
4583 3ce1b845 2019-07-15 stsp int fd;
4584 33ad4cbe 2019-05-12 jcs size_t len;
4585 33ad4cbe 2019-05-12 jcs
4586 33ad4cbe 2019-05-12 jcs /* if a message was specified on the command line, just use it */
4587 e2ba3d07 2019-05-13 stsp if (a->cmdline_log != NULL && strlen(a->cmdline_log) != 0) {
4588 e2ba3d07 2019-05-13 stsp len = strlen(a->cmdline_log) + 1;
4589 33ad4cbe 2019-05-12 jcs *logmsg = malloc(len + 1);
4590 9f42ff69 2019-05-13 stsp if (*logmsg == NULL)
4591 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
4592 e2ba3d07 2019-05-13 stsp strlcpy(*logmsg, a->cmdline_log, len);
4593 33ad4cbe 2019-05-12 jcs return NULL;
4594 33ad4cbe 2019-05-12 jcs }
4595 33ad4cbe 2019-05-12 jcs
4596 e0870e44 2019-05-13 stsp if (asprintf(&template, "%s/logmsg", a->worktree_path) == -1)
4597 76d98825 2019-06-03 stsp return got_error_from_errno("asprintf");
4598 76d98825 2019-06-03 stsp
4599 76d98825 2019-06-03 stsp if (asprintf(&initial_content,
4600 76d98825 2019-06-03 stsp "\n# changes to be committed on branch %s:\n",
4601 76d98825 2019-06-03 stsp a->branch_name) == -1)
4602 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
4603 e0870e44 2019-05-13 stsp
4604 e0870e44 2019-05-13 stsp err = got_opentemp_named_fd(&a->logmsg_path, &fd, template);
4605 793c30b5 2019-05-13 stsp if (err)
4606 e0870e44 2019-05-13 stsp goto done;
4607 33ad4cbe 2019-05-12 jcs
4608 e0870e44 2019-05-13 stsp dprintf(fd, initial_content);
4609 33ad4cbe 2019-05-12 jcs
4610 33ad4cbe 2019-05-12 jcs TAILQ_FOREACH(pe, commitable_paths, entry) {
4611 33ad4cbe 2019-05-12 jcs struct got_commitable *ct = pe->data;
4612 8656d6c4 2019-05-20 stsp dprintf(fd, "# %c %s\n",
4613 8656d6c4 2019-05-20 stsp got_commitable_get_status(ct),
4614 8656d6c4 2019-05-20 stsp got_commitable_get_path(ct));
4615 33ad4cbe 2019-05-12 jcs }
4616 33ad4cbe 2019-05-12 jcs close(fd);
4617 33ad4cbe 2019-05-12 jcs
4618 3ce1b845 2019-07-15 stsp err = edit_logmsg(logmsg, a->editor, a->logmsg_path, initial_content);
4619 33ad4cbe 2019-05-12 jcs done:
4620 76d98825 2019-06-03 stsp free(initial_content);
4621 e0870e44 2019-05-13 stsp free(template);
4622 314a6357 2019-05-13 stsp
4623 314a6357 2019-05-13 stsp /* Editor is done; we can now apply unveil(2) */
4624 3ce1b845 2019-07-15 stsp if (err == NULL) {
4625 c530dc23 2019-07-23 stsp err = apply_unveil(a->repo_path, 0, a->worktree_path);
4626 3ce1b845 2019-07-15 stsp if (err) {
4627 3ce1b845 2019-07-15 stsp free(*logmsg);
4628 3ce1b845 2019-07-15 stsp *logmsg = NULL;
4629 3ce1b845 2019-07-15 stsp }
4630 3ce1b845 2019-07-15 stsp }
4631 33ad4cbe 2019-05-12 jcs return err;
4632 6bad629b 2019-02-04 stsp }
4633 c4296144 2019-05-09 stsp
4634 c4296144 2019-05-09 stsp static const struct got_error *
4635 c4296144 2019-05-09 stsp cmd_commit(int argc, char *argv[])
4636 c4296144 2019-05-09 stsp {
4637 c4296144 2019-05-09 stsp const struct got_error *error = NULL;
4638 c4296144 2019-05-09 stsp struct got_worktree *worktree = NULL;
4639 c4296144 2019-05-09 stsp struct got_repository *repo = NULL;
4640 5c1e53bc 2019-07-28 stsp char *cwd = NULL, *id_str = NULL;
4641 c4296144 2019-05-09 stsp struct got_object_id *id = NULL;
4642 33ad4cbe 2019-05-12 jcs const char *logmsg = NULL;
4643 aba9c984 2019-09-08 stsp struct collect_commit_logmsg_arg cl_arg;
4644 c9956ddf 2019-09-08 stsp char *gitconfig_path = NULL, *editor = NULL, *author = NULL;
4645 7266f21f 2019-10-21 stsp int ch, rebase_in_progress, histedit_in_progress, preserve_logmsg = 0;
4646 5c1e53bc 2019-07-28 stsp struct got_pathlist_head paths;
4647 5c1e53bc 2019-07-28 stsp
4648 5c1e53bc 2019-07-28 stsp TAILQ_INIT(&paths);
4649 6ac5a73c 2019-08-08 stsp cl_arg.logmsg_path = NULL;
4650 c4296144 2019-05-09 stsp
4651 c4296144 2019-05-09 stsp while ((ch = getopt(argc, argv, "m:")) != -1) {
4652 c4296144 2019-05-09 stsp switch (ch) {
4653 c4296144 2019-05-09 stsp case 'm':
4654 c4296144 2019-05-09 stsp logmsg = optarg;
4655 c4296144 2019-05-09 stsp break;
4656 c4296144 2019-05-09 stsp default:
4657 c4296144 2019-05-09 stsp usage_commit();
4658 c4296144 2019-05-09 stsp /* NOTREACHED */
4659 c4296144 2019-05-09 stsp }
4660 c4296144 2019-05-09 stsp }
4661 c4296144 2019-05-09 stsp
4662 c4296144 2019-05-09 stsp argc -= optind;
4663 c4296144 2019-05-09 stsp argv += optind;
4664 c4296144 2019-05-09 stsp
4665 43012d58 2019-07-14 stsp #ifndef PROFILE
4666 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4667 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
4668 43012d58 2019-07-14 stsp err(1, "pledge");
4669 43012d58 2019-07-14 stsp #endif
4670 c4296144 2019-05-09 stsp cwd = getcwd(NULL, 0);
4671 c4296144 2019-05-09 stsp if (cwd == NULL) {
4672 638f9024 2019-05-13 stsp error = got_error_from_errno("getcwd");
4673 c4296144 2019-05-09 stsp goto done;
4674 c4296144 2019-05-09 stsp }
4675 c4296144 2019-05-09 stsp error = got_worktree_open(&worktree, cwd);
4676 7d5807f4 2019-07-11 stsp if (error)
4677 7d5807f4 2019-07-11 stsp goto done;
4678 7d5807f4 2019-07-11 stsp
4679 a698f62e 2019-07-25 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
4680 c4296144 2019-05-09 stsp if (error)
4681 a698f62e 2019-07-25 stsp goto done;
4682 a698f62e 2019-07-25 stsp if (rebase_in_progress) {
4683 a698f62e 2019-07-25 stsp error = got_error(GOT_ERR_REBASING);
4684 c4296144 2019-05-09 stsp goto done;
4685 a698f62e 2019-07-25 stsp }
4686 5c1e53bc 2019-07-28 stsp
4687 916f288c 2019-07-30 stsp error = got_worktree_histedit_in_progress(&histedit_in_progress,
4688 916f288c 2019-07-30 stsp worktree);
4689 5c1e53bc 2019-07-28 stsp if (error)
4690 5c1e53bc 2019-07-28 stsp goto done;
4691 c4296144 2019-05-09 stsp
4692 c9956ddf 2019-09-08 stsp error = get_gitconfig_path(&gitconfig_path);
4693 c9956ddf 2019-09-08 stsp if (error)
4694 c9956ddf 2019-09-08 stsp goto done;
4695 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4696 c9956ddf 2019-09-08 stsp gitconfig_path);
4697 c4296144 2019-05-09 stsp if (error != NULL)
4698 c4296144 2019-05-09 stsp goto done;
4699 c4296144 2019-05-09 stsp
4700 aba9c984 2019-09-08 stsp error = get_author(&author, repo);
4701 aba9c984 2019-09-08 stsp if (error)
4702 aba9c984 2019-09-08 stsp return error;
4703 aba9c984 2019-09-08 stsp
4704 314a6357 2019-05-13 stsp /*
4705 314a6357 2019-05-13 stsp * unveil(2) traverses exec(2); if an editor is used we have
4706 314a6357 2019-05-13 stsp * to apply unveil after the log message has been written.
4707 314a6357 2019-05-13 stsp */
4708 314a6357 2019-05-13 stsp if (logmsg == NULL || strlen(logmsg) == 0)
4709 314a6357 2019-05-13 stsp error = get_editor(&editor);
4710 314a6357 2019-05-13 stsp else
4711 314a6357 2019-05-13 stsp error = apply_unveil(got_repo_get_path(repo), 0,
4712 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4713 c4296144 2019-05-09 stsp if (error)
4714 c4296144 2019-05-09 stsp goto done;
4715 c4296144 2019-05-09 stsp
4716 087fb88c 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
4717 087fb88c 2019-08-04 stsp if (error)
4718 087fb88c 2019-08-04 stsp goto done;
4719 087fb88c 2019-08-04 stsp
4720 e2ba3d07 2019-05-13 stsp cl_arg.editor = editor;
4721 e2ba3d07 2019-05-13 stsp cl_arg.cmdline_log = logmsg;
4722 e0870e44 2019-05-13 stsp cl_arg.worktree_path = got_worktree_get_root_path(worktree);
4723 76d98825 2019-06-03 stsp cl_arg.branch_name = got_worktree_get_head_ref_name(worktree);
4724 916f288c 2019-07-30 stsp if (!histedit_in_progress) {
4725 916f288c 2019-07-30 stsp if (strncmp(cl_arg.branch_name, "refs/heads/", 11) != 0) {
4726 916f288c 2019-07-30 stsp error = got_error(GOT_ERR_COMMIT_BRANCH);
4727 916f288c 2019-07-30 stsp goto done;
4728 916f288c 2019-07-30 stsp }
4729 916f288c 2019-07-30 stsp cl_arg.branch_name += 11;
4730 916f288c 2019-07-30 stsp }
4731 314a6357 2019-05-13 stsp cl_arg.repo_path = got_repo_get_path(repo);
4732 84792843 2019-08-09 stsp error = got_worktree_commit(&id, worktree, &paths, author, NULL,
4733 e2ba3d07 2019-05-13 stsp collect_commit_logmsg, &cl_arg, print_status, NULL, repo);
4734 e0870e44 2019-05-13 stsp if (error) {
4735 7266f21f 2019-10-21 stsp if (error->code != GOT_ERR_COMMIT_MSG_EMPTY &&
4736 7266f21f 2019-10-21 stsp cl_arg.logmsg_path != NULL)
4737 7266f21f 2019-10-21 stsp preserve_logmsg = 1;
4738 c4296144 2019-05-09 stsp goto done;
4739 e0870e44 2019-05-13 stsp }
4740 c4296144 2019-05-09 stsp
4741 c4296144 2019-05-09 stsp error = got_object_id_str(&id_str, id);
4742 c4296144 2019-05-09 stsp if (error)
4743 c4296144 2019-05-09 stsp goto done;
4744 a7648d7a 2019-06-02 stsp printf("Created commit %s\n", id_str);
4745 c4296144 2019-05-09 stsp done:
4746 7266f21f 2019-10-21 stsp if (preserve_logmsg) {
4747 7266f21f 2019-10-21 stsp fprintf(stderr, "%s: log message preserved in %s\n",
4748 7266f21f 2019-10-21 stsp getprogname(), cl_arg.logmsg_path);
4749 7266f21f 2019-10-21 stsp } else if (cl_arg.logmsg_path && unlink(cl_arg.logmsg_path) == -1 &&
4750 7266f21f 2019-10-21 stsp error == NULL)
4751 7266f21f 2019-10-21 stsp error = got_error_from_errno2("unlink", cl_arg.logmsg_path);
4752 6ac5a73c 2019-08-08 stsp free(cl_arg.logmsg_path);
4753 c4296144 2019-05-09 stsp if (repo)
4754 c4296144 2019-05-09 stsp got_repo_close(repo);
4755 c4296144 2019-05-09 stsp if (worktree)
4756 c4296144 2019-05-09 stsp got_worktree_close(worktree);
4757 c4296144 2019-05-09 stsp free(cwd);
4758 c4296144 2019-05-09 stsp free(id_str);
4759 c9956ddf 2019-09-08 stsp free(gitconfig_path);
4760 e2ba3d07 2019-05-13 stsp free(editor);
4761 aba9c984 2019-09-08 stsp free(author);
4762 234035bc 2019-06-01 stsp return error;
4763 234035bc 2019-06-01 stsp }
4764 234035bc 2019-06-01 stsp
4765 234035bc 2019-06-01 stsp __dead static void
4766 234035bc 2019-06-01 stsp usage_cherrypick(void)
4767 234035bc 2019-06-01 stsp {
4768 234035bc 2019-06-01 stsp fprintf(stderr, "usage: %s cherrypick commit-id\n", getprogname());
4769 234035bc 2019-06-01 stsp exit(1);
4770 234035bc 2019-06-01 stsp }
4771 234035bc 2019-06-01 stsp
4772 234035bc 2019-06-01 stsp static const struct got_error *
4773 234035bc 2019-06-01 stsp cmd_cherrypick(int argc, char *argv[])
4774 234035bc 2019-06-01 stsp {
4775 234035bc 2019-06-01 stsp const struct got_error *error = NULL;
4776 234035bc 2019-06-01 stsp struct got_worktree *worktree = NULL;
4777 234035bc 2019-06-01 stsp struct got_repository *repo = NULL;
4778 234035bc 2019-06-01 stsp char *cwd = NULL, *commit_id_str = NULL;
4779 234035bc 2019-06-01 stsp struct got_object_id *commit_id = NULL;
4780 234035bc 2019-06-01 stsp struct got_commit_object *commit = NULL;
4781 234035bc 2019-06-01 stsp struct got_object_qid *pid;
4782 234035bc 2019-06-01 stsp struct got_reference *head_ref = NULL;
4783 234035bc 2019-06-01 stsp int ch, did_something = 0;
4784 234035bc 2019-06-01 stsp
4785 234035bc 2019-06-01 stsp while ((ch = getopt(argc, argv, "")) != -1) {
4786 234035bc 2019-06-01 stsp switch (ch) {
4787 234035bc 2019-06-01 stsp default:
4788 234035bc 2019-06-01 stsp usage_cherrypick();
4789 234035bc 2019-06-01 stsp /* NOTREACHED */
4790 234035bc 2019-06-01 stsp }
4791 234035bc 2019-06-01 stsp }
4792 234035bc 2019-06-01 stsp
4793 234035bc 2019-06-01 stsp argc -= optind;
4794 234035bc 2019-06-01 stsp argv += optind;
4795 234035bc 2019-06-01 stsp
4796 43012d58 2019-07-14 stsp #ifndef PROFILE
4797 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4798 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
4799 43012d58 2019-07-14 stsp err(1, "pledge");
4800 43012d58 2019-07-14 stsp #endif
4801 234035bc 2019-06-01 stsp if (argc != 1)
4802 234035bc 2019-06-01 stsp usage_cherrypick();
4803 234035bc 2019-06-01 stsp
4804 234035bc 2019-06-01 stsp cwd = getcwd(NULL, 0);
4805 234035bc 2019-06-01 stsp if (cwd == NULL) {
4806 234035bc 2019-06-01 stsp error = got_error_from_errno("getcwd");
4807 234035bc 2019-06-01 stsp goto done;
4808 234035bc 2019-06-01 stsp }
4809 234035bc 2019-06-01 stsp error = got_worktree_open(&worktree, cwd);
4810 234035bc 2019-06-01 stsp if (error)
4811 234035bc 2019-06-01 stsp goto done;
4812 234035bc 2019-06-01 stsp
4813 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4814 c9956ddf 2019-09-08 stsp NULL);
4815 234035bc 2019-06-01 stsp if (error != NULL)
4816 234035bc 2019-06-01 stsp goto done;
4817 234035bc 2019-06-01 stsp
4818 234035bc 2019-06-01 stsp error = apply_unveil(got_repo_get_path(repo), 0,
4819 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4820 234035bc 2019-06-01 stsp if (error)
4821 234035bc 2019-06-01 stsp goto done;
4822 234035bc 2019-06-01 stsp
4823 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
4824 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
4825 234035bc 2019-06-01 stsp if (error != NULL) {
4826 234035bc 2019-06-01 stsp struct got_reference *ref;
4827 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
4828 234035bc 2019-06-01 stsp goto done;
4829 234035bc 2019-06-01 stsp error = got_ref_open(&ref, repo, argv[0], 0);
4830 234035bc 2019-06-01 stsp if (error != NULL)
4831 234035bc 2019-06-01 stsp goto done;
4832 234035bc 2019-06-01 stsp error = got_ref_resolve(&commit_id, repo, ref);
4833 234035bc 2019-06-01 stsp got_ref_close(ref);
4834 234035bc 2019-06-01 stsp if (error != NULL)
4835 234035bc 2019-06-01 stsp goto done;
4836 234035bc 2019-06-01 stsp }
4837 234035bc 2019-06-01 stsp error = got_object_id_str(&commit_id_str, commit_id);
4838 234035bc 2019-06-01 stsp if (error)
4839 234035bc 2019-06-01 stsp goto done;
4840 234035bc 2019-06-01 stsp
4841 234035bc 2019-06-01 stsp error = got_ref_open(&head_ref, repo,
4842 234035bc 2019-06-01 stsp got_worktree_get_head_ref_name(worktree), 0);
4843 234035bc 2019-06-01 stsp if (error != NULL)
4844 234035bc 2019-06-01 stsp goto done;
4845 234035bc 2019-06-01 stsp
4846 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
4847 234035bc 2019-06-01 stsp if (error) {
4848 234035bc 2019-06-01 stsp if (error->code != GOT_ERR_ANCESTRY)
4849 234035bc 2019-06-01 stsp goto done;
4850 234035bc 2019-06-01 stsp error = NULL;
4851 234035bc 2019-06-01 stsp } else {
4852 234035bc 2019-06-01 stsp error = got_error(GOT_ERR_SAME_BRANCH);
4853 234035bc 2019-06-01 stsp goto done;
4854 234035bc 2019-06-01 stsp }
4855 234035bc 2019-06-01 stsp
4856 234035bc 2019-06-01 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
4857 234035bc 2019-06-01 stsp if (error)
4858 234035bc 2019-06-01 stsp goto done;
4859 234035bc 2019-06-01 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
4860 03415a1a 2019-06-02 stsp error = got_worktree_merge_files(worktree, pid ? pid->id : NULL,
4861 03415a1a 2019-06-02 stsp commit_id, repo, update_progress, &did_something, check_cancelled,
4862 03415a1a 2019-06-02 stsp NULL);
4863 234035bc 2019-06-01 stsp if (error != NULL)
4864 234035bc 2019-06-01 stsp goto done;
4865 234035bc 2019-06-01 stsp
4866 234035bc 2019-06-01 stsp if (did_something)
4867 a7648d7a 2019-06-02 stsp printf("Merged commit %s\n", commit_id_str);
4868 234035bc 2019-06-01 stsp done:
4869 234035bc 2019-06-01 stsp if (commit)
4870 234035bc 2019-06-01 stsp got_object_commit_close(commit);
4871 234035bc 2019-06-01 stsp free(commit_id_str);
4872 234035bc 2019-06-01 stsp if (head_ref)
4873 234035bc 2019-06-01 stsp got_ref_close(head_ref);
4874 234035bc 2019-06-01 stsp if (worktree)
4875 234035bc 2019-06-01 stsp got_worktree_close(worktree);
4876 234035bc 2019-06-01 stsp if (repo)
4877 234035bc 2019-06-01 stsp got_repo_close(repo);
4878 c4296144 2019-05-09 stsp return error;
4879 c4296144 2019-05-09 stsp }
4880 5ef14e63 2019-06-02 stsp
4881 5ef14e63 2019-06-02 stsp __dead static void
4882 5ef14e63 2019-06-02 stsp usage_backout(void)
4883 5ef14e63 2019-06-02 stsp {
4884 5ef14e63 2019-06-02 stsp fprintf(stderr, "usage: %s backout commit-id\n", getprogname());
4885 5ef14e63 2019-06-02 stsp exit(1);
4886 5ef14e63 2019-06-02 stsp }
4887 5ef14e63 2019-06-02 stsp
4888 5ef14e63 2019-06-02 stsp static const struct got_error *
4889 5ef14e63 2019-06-02 stsp cmd_backout(int argc, char *argv[])
4890 5ef14e63 2019-06-02 stsp {
4891 5ef14e63 2019-06-02 stsp const struct got_error *error = NULL;
4892 5ef14e63 2019-06-02 stsp struct got_worktree *worktree = NULL;
4893 5ef14e63 2019-06-02 stsp struct got_repository *repo = NULL;
4894 5ef14e63 2019-06-02 stsp char *cwd = NULL, *commit_id_str = NULL;
4895 5ef14e63 2019-06-02 stsp struct got_object_id *commit_id = NULL;
4896 5ef14e63 2019-06-02 stsp struct got_commit_object *commit = NULL;
4897 5ef14e63 2019-06-02 stsp struct got_object_qid *pid;
4898 5ef14e63 2019-06-02 stsp struct got_reference *head_ref = NULL;
4899 5ef14e63 2019-06-02 stsp int ch, did_something = 0;
4900 5ef14e63 2019-06-02 stsp
4901 5ef14e63 2019-06-02 stsp while ((ch = getopt(argc, argv, "")) != -1) {
4902 5ef14e63 2019-06-02 stsp switch (ch) {
4903 5ef14e63 2019-06-02 stsp default:
4904 5ef14e63 2019-06-02 stsp usage_backout();
4905 5ef14e63 2019-06-02 stsp /* NOTREACHED */
4906 5ef14e63 2019-06-02 stsp }
4907 5ef14e63 2019-06-02 stsp }
4908 5ef14e63 2019-06-02 stsp
4909 5ef14e63 2019-06-02 stsp argc -= optind;
4910 5ef14e63 2019-06-02 stsp argv += optind;
4911 5ef14e63 2019-06-02 stsp
4912 43012d58 2019-07-14 stsp #ifndef PROFILE
4913 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
4914 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
4915 43012d58 2019-07-14 stsp err(1, "pledge");
4916 43012d58 2019-07-14 stsp #endif
4917 5ef14e63 2019-06-02 stsp if (argc != 1)
4918 5ef14e63 2019-06-02 stsp usage_backout();
4919 5ef14e63 2019-06-02 stsp
4920 5ef14e63 2019-06-02 stsp cwd = getcwd(NULL, 0);
4921 5ef14e63 2019-06-02 stsp if (cwd == NULL) {
4922 5ef14e63 2019-06-02 stsp error = got_error_from_errno("getcwd");
4923 5ef14e63 2019-06-02 stsp goto done;
4924 5ef14e63 2019-06-02 stsp }
4925 5ef14e63 2019-06-02 stsp error = got_worktree_open(&worktree, cwd);
4926 5ef14e63 2019-06-02 stsp if (error)
4927 5ef14e63 2019-06-02 stsp goto done;
4928 5ef14e63 2019-06-02 stsp
4929 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
4930 c9956ddf 2019-09-08 stsp NULL);
4931 5ef14e63 2019-06-02 stsp if (error != NULL)
4932 5ef14e63 2019-06-02 stsp goto done;
4933 5ef14e63 2019-06-02 stsp
4934 5ef14e63 2019-06-02 stsp error = apply_unveil(got_repo_get_path(repo), 0,
4935 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
4936 5ef14e63 2019-06-02 stsp if (error)
4937 5ef14e63 2019-06-02 stsp goto done;
4938 5ef14e63 2019-06-02 stsp
4939 dd88155e 2019-06-29 stsp error = got_repo_match_object_id_prefix(&commit_id, argv[0],
4940 dd88155e 2019-06-29 stsp GOT_OBJ_TYPE_COMMIT, repo);
4941 5ef14e63 2019-06-02 stsp if (error != NULL) {
4942 5ef14e63 2019-06-02 stsp struct got_reference *ref;
4943 5ef14e63 2019-06-02 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR)
4944 5ef14e63 2019-06-02 stsp goto done;
4945 5ef14e63 2019-06-02 stsp error = got_ref_open(&ref, repo, argv[0], 0);
4946 5ef14e63 2019-06-02 stsp if (error != NULL)
4947 5ef14e63 2019-06-02 stsp goto done;
4948 5ef14e63 2019-06-02 stsp error = got_ref_resolve(&commit_id, repo, ref);
4949 5ef14e63 2019-06-02 stsp got_ref_close(ref);
4950 5ef14e63 2019-06-02 stsp if (error != NULL)
4951 5ef14e63 2019-06-02 stsp goto done;
4952 5ef14e63 2019-06-02 stsp }
4953 5ef14e63 2019-06-02 stsp error = got_object_id_str(&commit_id_str, commit_id);
4954 5ef14e63 2019-06-02 stsp if (error)
4955 5ef14e63 2019-06-02 stsp goto done;
4956 5ef14e63 2019-06-02 stsp
4957 5ef14e63 2019-06-02 stsp error = got_ref_open(&head_ref, repo,
4958 5ef14e63 2019-06-02 stsp got_worktree_get_head_ref_name(worktree), 0);
4959 5ef14e63 2019-06-02 stsp if (error != NULL)
4960 5ef14e63 2019-06-02 stsp goto done;
4961 5ef14e63 2019-06-02 stsp
4962 a51a74b3 2019-07-27 stsp error = check_same_branch(commit_id, head_ref, NULL, repo);
4963 5ef14e63 2019-06-02 stsp if (error)
4964 5ef14e63 2019-06-02 stsp goto done;
4965 5ef14e63 2019-06-02 stsp
4966 5ef14e63 2019-06-02 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
4967 5ef14e63 2019-06-02 stsp if (error)
4968 5ef14e63 2019-06-02 stsp goto done;
4969 5ef14e63 2019-06-02 stsp pid = SIMPLEQ_FIRST(got_object_commit_get_parent_ids(commit));
4970 5ef14e63 2019-06-02 stsp if (pid == NULL) {
4971 5ef14e63 2019-06-02 stsp error = got_error(GOT_ERR_ROOT_COMMIT);
4972 5ef14e63 2019-06-02 stsp goto done;
4973 5ef14e63 2019-06-02 stsp }
4974 5ef14e63 2019-06-02 stsp
4975 5ef14e63 2019-06-02 stsp error = got_worktree_merge_files(worktree, commit_id, pid->id, repo,
4976 5ef14e63 2019-06-02 stsp update_progress, &did_something, check_cancelled, NULL);
4977 5ef14e63 2019-06-02 stsp if (error != NULL)
4978 5ef14e63 2019-06-02 stsp goto done;
4979 5ef14e63 2019-06-02 stsp
4980 5ef14e63 2019-06-02 stsp if (did_something)
4981 a7648d7a 2019-06-02 stsp printf("Backed out commit %s\n", commit_id_str);
4982 5ef14e63 2019-06-02 stsp done:
4983 5ef14e63 2019-06-02 stsp if (commit)
4984 5ef14e63 2019-06-02 stsp got_object_commit_close(commit);
4985 5ef14e63 2019-06-02 stsp free(commit_id_str);
4986 5ef14e63 2019-06-02 stsp if (head_ref)
4987 5ef14e63 2019-06-02 stsp got_ref_close(head_ref);
4988 818c7501 2019-07-11 stsp if (worktree)
4989 818c7501 2019-07-11 stsp got_worktree_close(worktree);
4990 818c7501 2019-07-11 stsp if (repo)
4991 818c7501 2019-07-11 stsp got_repo_close(repo);
4992 818c7501 2019-07-11 stsp return error;
4993 818c7501 2019-07-11 stsp }
4994 818c7501 2019-07-11 stsp
4995 818c7501 2019-07-11 stsp __dead static void
4996 818c7501 2019-07-11 stsp usage_rebase(void)
4997 818c7501 2019-07-11 stsp {
4998 af54c8f8 2019-07-11 stsp fprintf(stderr, "usage: %s rebase [-a] | [-c] | branch\n",
4999 af54c8f8 2019-07-11 stsp getprogname());
5000 818c7501 2019-07-11 stsp exit(1);
5001 0ebf8283 2019-07-24 stsp }
5002 0ebf8283 2019-07-24 stsp
5003 0ebf8283 2019-07-24 stsp void
5004 0ebf8283 2019-07-24 stsp trim_logmsg(char *logmsg, int limit)
5005 0ebf8283 2019-07-24 stsp {
5006 0ebf8283 2019-07-24 stsp char *nl;
5007 0ebf8283 2019-07-24 stsp size_t len;
5008 0ebf8283 2019-07-24 stsp
5009 0ebf8283 2019-07-24 stsp len = strlen(logmsg);
5010 0ebf8283 2019-07-24 stsp if (len > limit)
5011 0ebf8283 2019-07-24 stsp len = limit;
5012 0ebf8283 2019-07-24 stsp logmsg[len] = '\0';
5013 0ebf8283 2019-07-24 stsp nl = strchr(logmsg, '\n');
5014 0ebf8283 2019-07-24 stsp if (nl)
5015 0ebf8283 2019-07-24 stsp *nl = '\0';
5016 0ebf8283 2019-07-24 stsp }
5017 0ebf8283 2019-07-24 stsp
5018 0ebf8283 2019-07-24 stsp static const struct got_error *
5019 0ebf8283 2019-07-24 stsp get_short_logmsg(char **logmsg, int limit, struct got_commit_object *commit)
5020 0ebf8283 2019-07-24 stsp {
5021 5943eee2 2019-08-13 stsp const struct got_error *err;
5022 5943eee2 2019-08-13 stsp char *logmsg0 = NULL;
5023 5943eee2 2019-08-13 stsp const char *s;
5024 0ebf8283 2019-07-24 stsp
5025 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&logmsg0, commit);
5026 5943eee2 2019-08-13 stsp if (err)
5027 5943eee2 2019-08-13 stsp return err;
5028 0ebf8283 2019-07-24 stsp
5029 5943eee2 2019-08-13 stsp s = logmsg0;
5030 5943eee2 2019-08-13 stsp while (isspace((unsigned char)s[0]))
5031 5943eee2 2019-08-13 stsp s++;
5032 5943eee2 2019-08-13 stsp
5033 5943eee2 2019-08-13 stsp *logmsg = strdup(s);
5034 5943eee2 2019-08-13 stsp if (*logmsg == NULL) {
5035 5943eee2 2019-08-13 stsp err = got_error_from_errno("strdup");
5036 5943eee2 2019-08-13 stsp goto done;
5037 5943eee2 2019-08-13 stsp }
5038 0ebf8283 2019-07-24 stsp
5039 0ebf8283 2019-07-24 stsp trim_logmsg(*logmsg, limit);
5040 5943eee2 2019-08-13 stsp done:
5041 5943eee2 2019-08-13 stsp free(logmsg0);
5042 5943eee2 2019-08-13 stsp return err;
5043 818c7501 2019-07-11 stsp }
5044 818c7501 2019-07-11 stsp
5045 818c7501 2019-07-11 stsp static const struct got_error *
5046 818c7501 2019-07-11 stsp show_rebase_progress(struct got_commit_object *commit,
5047 818c7501 2019-07-11 stsp struct got_object_id *old_id, struct got_object_id *new_id)
5048 818c7501 2019-07-11 stsp {
5049 818c7501 2019-07-11 stsp const struct got_error *err;
5050 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
5051 818c7501 2019-07-11 stsp
5052 818c7501 2019-07-11 stsp err = got_object_id_str(&old_id_str, old_id);
5053 818c7501 2019-07-11 stsp if (err)
5054 818c7501 2019-07-11 stsp goto done;
5055 818c7501 2019-07-11 stsp
5056 ff0d2220 2019-07-11 stsp if (new_id) {
5057 ff0d2220 2019-07-11 stsp err = got_object_id_str(&new_id_str, new_id);
5058 ff0d2220 2019-07-11 stsp if (err)
5059 ff0d2220 2019-07-11 stsp goto done;
5060 ff0d2220 2019-07-11 stsp }
5061 818c7501 2019-07-11 stsp
5062 818c7501 2019-07-11 stsp old_id_str[12] = '\0';
5063 ff0d2220 2019-07-11 stsp if (new_id_str)
5064 ff0d2220 2019-07-11 stsp new_id_str[12] = '\0';
5065 0ebf8283 2019-07-24 stsp
5066 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
5067 0ebf8283 2019-07-24 stsp if (err)
5068 0ebf8283 2019-07-24 stsp goto done;
5069 0ebf8283 2019-07-24 stsp
5070 ff0d2220 2019-07-11 stsp printf("%s -> %s: %s\n", old_id_str,
5071 ff0d2220 2019-07-11 stsp new_id_str ? new_id_str : "no-op change", logmsg);
5072 818c7501 2019-07-11 stsp done:
5073 818c7501 2019-07-11 stsp free(old_id_str);
5074 818c7501 2019-07-11 stsp free(new_id_str);
5075 818c7501 2019-07-11 stsp return err;
5076 818c7501 2019-07-11 stsp }
5077 818c7501 2019-07-11 stsp
5078 1ee397ad 2019-07-12 stsp static const struct got_error *
5079 818c7501 2019-07-11 stsp rebase_progress(void *arg, unsigned char status, const char *path)
5080 818c7501 2019-07-11 stsp {
5081 818c7501 2019-07-11 stsp unsigned char *rebase_status = arg;
5082 818c7501 2019-07-11 stsp
5083 818c7501 2019-07-11 stsp while (path[0] == '/')
5084 818c7501 2019-07-11 stsp path++;
5085 818c7501 2019-07-11 stsp printf("%c %s\n", status, path);
5086 818c7501 2019-07-11 stsp
5087 818c7501 2019-07-11 stsp if (*rebase_status == GOT_STATUS_CONFLICT)
5088 1ee397ad 2019-07-12 stsp return NULL;
5089 818c7501 2019-07-11 stsp if (status == GOT_STATUS_CONFLICT || status == GOT_STATUS_MERGE)
5090 818c7501 2019-07-11 stsp *rebase_status = status;
5091 1ee397ad 2019-07-12 stsp return NULL;
5092 818c7501 2019-07-11 stsp }
5093 818c7501 2019-07-11 stsp
5094 818c7501 2019-07-11 stsp static const struct got_error *
5095 3e3a69f1 2019-07-25 stsp rebase_complete(struct got_worktree *worktree, struct got_fileindex *fileindex,
5096 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_reference *new_base_branch,
5097 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_repository *repo)
5098 818c7501 2019-07-11 stsp {
5099 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n", got_ref_get_name(branch));
5100 3e3a69f1 2019-07-25 stsp return got_worktree_rebase_complete(worktree, fileindex,
5101 818c7501 2019-07-11 stsp new_base_branch, tmp_branch, branch, repo);
5102 818c7501 2019-07-11 stsp }
5103 818c7501 2019-07-11 stsp
5104 818c7501 2019-07-11 stsp static const struct got_error *
5105 01757395 2019-07-12 stsp rebase_commit(struct got_pathlist_head *merged_paths,
5106 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
5107 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch,
5108 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id, struct got_repository *repo)
5109 ff0d2220 2019-07-11 stsp {
5110 ff0d2220 2019-07-11 stsp const struct got_error *error;
5111 ff0d2220 2019-07-11 stsp struct got_commit_object *commit;
5112 ff0d2220 2019-07-11 stsp struct got_object_id *new_commit_id;
5113 ff0d2220 2019-07-11 stsp
5114 ff0d2220 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
5115 ff0d2220 2019-07-11 stsp if (error)
5116 ff0d2220 2019-07-11 stsp return error;
5117 ff0d2220 2019-07-11 stsp
5118 01757395 2019-07-12 stsp error = got_worktree_rebase_commit(&new_commit_id, merged_paths,
5119 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, commit_id, repo);
5120 ff0d2220 2019-07-11 stsp if (error) {
5121 ff0d2220 2019-07-11 stsp if (error->code != GOT_ERR_COMMIT_NO_CHANGES)
5122 ff0d2220 2019-07-11 stsp goto done;
5123 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, NULL);
5124 ff0d2220 2019-07-11 stsp } else {
5125 ff0d2220 2019-07-11 stsp error = show_rebase_progress(commit, commit_id, new_commit_id);
5126 ff0d2220 2019-07-11 stsp free(new_commit_id);
5127 ff0d2220 2019-07-11 stsp }
5128 ff0d2220 2019-07-11 stsp done:
5129 ff0d2220 2019-07-11 stsp got_object_commit_close(commit);
5130 ff0d2220 2019-07-11 stsp return error;
5131 64c6d990 2019-07-11 stsp }
5132 64c6d990 2019-07-11 stsp
5133 64c6d990 2019-07-11 stsp struct check_path_prefix_arg {
5134 64c6d990 2019-07-11 stsp const char *path_prefix;
5135 64c6d990 2019-07-11 stsp size_t len;
5136 8ca9bd68 2019-07-25 stsp int errcode;
5137 64c6d990 2019-07-11 stsp };
5138 64c6d990 2019-07-11 stsp
5139 64c6d990 2019-07-11 stsp static const struct got_error *
5140 8ca9bd68 2019-07-25 stsp check_path_prefix_in_diff(void *arg, struct got_blob_object *blob1,
5141 64c6d990 2019-07-11 stsp struct got_blob_object *blob2, struct got_object_id *id1,
5142 64c6d990 2019-07-11 stsp struct got_object_id *id2, const char *path1, const char *path2,
5143 46f68b20 2019-10-19 stsp mode_t mode1, mode_t mode2, struct got_repository *repo)
5144 64c6d990 2019-07-11 stsp {
5145 64c6d990 2019-07-11 stsp struct check_path_prefix_arg *a = arg;
5146 64c6d990 2019-07-11 stsp
5147 64c6d990 2019-07-11 stsp if ((path1 && !got_path_is_child(path1, a->path_prefix, a->len)) ||
5148 64c6d990 2019-07-11 stsp (path2 && !got_path_is_child(path2, a->path_prefix, a->len)))
5149 8ca9bd68 2019-07-25 stsp return got_error(a->errcode);
5150 64c6d990 2019-07-11 stsp
5151 64c6d990 2019-07-11 stsp return NULL;
5152 64c6d990 2019-07-11 stsp }
5153 64c6d990 2019-07-11 stsp
5154 64c6d990 2019-07-11 stsp static const struct got_error *
5155 8ca9bd68 2019-07-25 stsp check_path_prefix(struct got_object_id *parent_id,
5156 64c6d990 2019-07-11 stsp struct got_object_id *commit_id, const char *path_prefix,
5157 8ca9bd68 2019-07-25 stsp int errcode, struct got_repository *repo)
5158 64c6d990 2019-07-11 stsp {
5159 64c6d990 2019-07-11 stsp const struct got_error *err;
5160 64c6d990 2019-07-11 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
5161 64c6d990 2019-07-11 stsp struct got_commit_object *commit = NULL, *parent_commit = NULL;
5162 64c6d990 2019-07-11 stsp struct check_path_prefix_arg cpp_arg;
5163 64c6d990 2019-07-11 stsp
5164 64c6d990 2019-07-11 stsp if (got_path_is_root_dir(path_prefix))
5165 64c6d990 2019-07-11 stsp return NULL;
5166 64c6d990 2019-07-11 stsp
5167 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
5168 64c6d990 2019-07-11 stsp if (err)
5169 64c6d990 2019-07-11 stsp goto done;
5170 64c6d990 2019-07-11 stsp
5171 64c6d990 2019-07-11 stsp err = got_object_open_as_commit(&parent_commit, repo, parent_id);
5172 64c6d990 2019-07-11 stsp if (err)
5173 64c6d990 2019-07-11 stsp goto done;
5174 64c6d990 2019-07-11 stsp
5175 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree1, repo,
5176 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(parent_commit));
5177 64c6d990 2019-07-11 stsp if (err)
5178 64c6d990 2019-07-11 stsp goto done;
5179 64c6d990 2019-07-11 stsp
5180 64c6d990 2019-07-11 stsp err = got_object_open_as_tree(&tree2, repo,
5181 64c6d990 2019-07-11 stsp got_object_commit_get_tree_id(commit));
5182 64c6d990 2019-07-11 stsp if (err)
5183 64c6d990 2019-07-11 stsp goto done;
5184 64c6d990 2019-07-11 stsp
5185 64c6d990 2019-07-11 stsp cpp_arg.path_prefix = path_prefix;
5186 d23ace97 2019-07-25 stsp while (cpp_arg.path_prefix[0] == '/')
5187 d23ace97 2019-07-25 stsp cpp_arg.path_prefix++;
5188 d23ace97 2019-07-25 stsp cpp_arg.len = strlen(cpp_arg.path_prefix);
5189 8ca9bd68 2019-07-25 stsp cpp_arg.errcode = errcode;
5190 8ca9bd68 2019-07-25 stsp err = got_diff_tree(tree1, tree2, "", "", repo,
5191 31b4484f 2019-07-27 stsp check_path_prefix_in_diff, &cpp_arg, 0);
5192 64c6d990 2019-07-11 stsp done:
5193 64c6d990 2019-07-11 stsp if (tree1)
5194 64c6d990 2019-07-11 stsp got_object_tree_close(tree1);
5195 64c6d990 2019-07-11 stsp if (tree2)
5196 64c6d990 2019-07-11 stsp got_object_tree_close(tree2);
5197 64c6d990 2019-07-11 stsp if (commit)
5198 64c6d990 2019-07-11 stsp got_object_commit_close(commit);
5199 64c6d990 2019-07-11 stsp if (parent_commit)
5200 64c6d990 2019-07-11 stsp got_object_commit_close(parent_commit);
5201 64c6d990 2019-07-11 stsp return err;
5202 ff0d2220 2019-07-11 stsp }
5203 ff0d2220 2019-07-11 stsp
5204 ff0d2220 2019-07-11 stsp static const struct got_error *
5205 8ca9bd68 2019-07-25 stsp collect_commits(struct got_object_id_queue *commits,
5206 af61c510 2019-07-19 stsp struct got_object_id *initial_commit_id,
5207 af61c510 2019-07-19 stsp struct got_object_id *iter_start_id, struct got_object_id *iter_stop_id,
5208 8ca9bd68 2019-07-25 stsp const char *path_prefix, int path_prefix_errcode,
5209 8ca9bd68 2019-07-25 stsp struct got_repository *repo)
5210 af61c510 2019-07-19 stsp {
5211 af61c510 2019-07-19 stsp const struct got_error *err = NULL;
5212 af61c510 2019-07-19 stsp struct got_commit_graph *graph = NULL;
5213 af61c510 2019-07-19 stsp struct got_object_id *parent_id = NULL;
5214 af61c510 2019-07-19 stsp struct got_object_qid *qid;
5215 af61c510 2019-07-19 stsp struct got_object_id *commit_id = initial_commit_id;
5216 af61c510 2019-07-19 stsp
5217 af61c510 2019-07-19 stsp err = got_commit_graph_open(&graph, initial_commit_id, "/", 1, repo);
5218 af61c510 2019-07-19 stsp if (err)
5219 af61c510 2019-07-19 stsp return err;
5220 af61c510 2019-07-19 stsp
5221 6fb7cd11 2019-08-22 stsp err = got_commit_graph_iter_start(graph, iter_start_id, repo,
5222 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
5223 af61c510 2019-07-19 stsp if (err)
5224 af61c510 2019-07-19 stsp goto done;
5225 af61c510 2019-07-19 stsp while (got_object_id_cmp(commit_id, iter_stop_id) != 0) {
5226 af61c510 2019-07-19 stsp err = got_commit_graph_iter_next(&parent_id, graph);
5227 af61c510 2019-07-19 stsp if (err) {
5228 af61c510 2019-07-19 stsp if (err->code == GOT_ERR_ITER_COMPLETED) {
5229 af61c510 2019-07-19 stsp err = got_error_msg(GOT_ERR_ANCESTRY,
5230 af61c510 2019-07-19 stsp "ran out of commits to rebase before "
5231 af61c510 2019-07-19 stsp "youngest common ancestor commit has "
5232 af61c510 2019-07-19 stsp "been reached?!?");
5233 af61c510 2019-07-19 stsp goto done;
5234 af61c510 2019-07-19 stsp } else if (err->code != GOT_ERR_ITER_NEED_MORE)
5235 af61c510 2019-07-19 stsp goto done;
5236 6fb7cd11 2019-08-22 stsp err = got_commit_graph_fetch_commits(graph, 1, repo,
5237 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
5238 af61c510 2019-07-19 stsp if (err)
5239 af61c510 2019-07-19 stsp goto done;
5240 af61c510 2019-07-19 stsp } else {
5241 8ca9bd68 2019-07-25 stsp err = check_path_prefix(parent_id, commit_id,
5242 8ca9bd68 2019-07-25 stsp path_prefix, path_prefix_errcode, repo);
5243 af61c510 2019-07-19 stsp if (err)
5244 af61c510 2019-07-19 stsp goto done;
5245 af61c510 2019-07-19 stsp
5246 af61c510 2019-07-19 stsp err = got_object_qid_alloc(&qid, commit_id);
5247 af61c510 2019-07-19 stsp if (err)
5248 af61c510 2019-07-19 stsp goto done;
5249 af61c510 2019-07-19 stsp SIMPLEQ_INSERT_HEAD(commits, qid, entry);
5250 af61c510 2019-07-19 stsp commit_id = parent_id;
5251 af61c510 2019-07-19 stsp }
5252 af61c510 2019-07-19 stsp }
5253 af61c510 2019-07-19 stsp done:
5254 af61c510 2019-07-19 stsp got_commit_graph_close(graph);
5255 af61c510 2019-07-19 stsp return err;
5256 af61c510 2019-07-19 stsp }
5257 af61c510 2019-07-19 stsp
5258 af61c510 2019-07-19 stsp static const struct got_error *
5259 818c7501 2019-07-11 stsp cmd_rebase(int argc, char *argv[])
5260 818c7501 2019-07-11 stsp {
5261 818c7501 2019-07-11 stsp const struct got_error *error = NULL;
5262 818c7501 2019-07-11 stsp struct got_worktree *worktree = NULL;
5263 818c7501 2019-07-11 stsp struct got_repository *repo = NULL;
5264 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
5265 818c7501 2019-07-11 stsp char *cwd = NULL;
5266 818c7501 2019-07-11 stsp struct got_reference *branch = NULL;
5267 818c7501 2019-07-11 stsp struct got_reference *new_base_branch = NULL, *tmp_branch = NULL;
5268 818c7501 2019-07-11 stsp struct got_object_id *commit_id = NULL, *parent_id = NULL;
5269 818c7501 2019-07-11 stsp struct got_object_id *resume_commit_id = NULL;
5270 818c7501 2019-07-11 stsp struct got_object_id *branch_head_commit_id = NULL, *yca_id = NULL;
5271 818c7501 2019-07-11 stsp struct got_commit_object *commit = NULL;
5272 818c7501 2019-07-11 stsp int ch, rebase_in_progress = 0, abort_rebase = 0, continue_rebase = 0;
5273 818c7501 2019-07-11 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
5274 818c7501 2019-07-11 stsp struct got_object_id_queue commits;
5275 01757395 2019-07-12 stsp struct got_pathlist_head merged_paths;
5276 818c7501 2019-07-11 stsp const struct got_object_id_queue *parent_ids;
5277 818c7501 2019-07-11 stsp struct got_object_qid *qid, *pid;
5278 818c7501 2019-07-11 stsp
5279 818c7501 2019-07-11 stsp SIMPLEQ_INIT(&commits);
5280 01757395 2019-07-12 stsp TAILQ_INIT(&merged_paths);
5281 818c7501 2019-07-11 stsp
5282 818c7501 2019-07-11 stsp while ((ch = getopt(argc, argv, "ac")) != -1) {
5283 818c7501 2019-07-11 stsp switch (ch) {
5284 818c7501 2019-07-11 stsp case 'a':
5285 818c7501 2019-07-11 stsp abort_rebase = 1;
5286 818c7501 2019-07-11 stsp break;
5287 818c7501 2019-07-11 stsp case 'c':
5288 818c7501 2019-07-11 stsp continue_rebase = 1;
5289 818c7501 2019-07-11 stsp break;
5290 818c7501 2019-07-11 stsp default:
5291 818c7501 2019-07-11 stsp usage_rebase();
5292 818c7501 2019-07-11 stsp /* NOTREACHED */
5293 818c7501 2019-07-11 stsp }
5294 818c7501 2019-07-11 stsp }
5295 818c7501 2019-07-11 stsp
5296 818c7501 2019-07-11 stsp argc -= optind;
5297 818c7501 2019-07-11 stsp argv += optind;
5298 818c7501 2019-07-11 stsp
5299 43012d58 2019-07-14 stsp #ifndef PROFILE
5300 43012d58 2019-07-14 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
5301 43012d58 2019-07-14 stsp "unveil", NULL) == -1)
5302 43012d58 2019-07-14 stsp err(1, "pledge");
5303 43012d58 2019-07-14 stsp #endif
5304 818c7501 2019-07-11 stsp if (abort_rebase && continue_rebase)
5305 818c7501 2019-07-11 stsp usage_rebase();
5306 818c7501 2019-07-11 stsp else if (abort_rebase || continue_rebase) {
5307 818c7501 2019-07-11 stsp if (argc != 0)
5308 818c7501 2019-07-11 stsp usage_rebase();
5309 818c7501 2019-07-11 stsp } else if (argc != 1)
5310 818c7501 2019-07-11 stsp usage_rebase();
5311 818c7501 2019-07-11 stsp
5312 818c7501 2019-07-11 stsp cwd = getcwd(NULL, 0);
5313 818c7501 2019-07-11 stsp if (cwd == NULL) {
5314 818c7501 2019-07-11 stsp error = got_error_from_errno("getcwd");
5315 818c7501 2019-07-11 stsp goto done;
5316 818c7501 2019-07-11 stsp }
5317 818c7501 2019-07-11 stsp error = got_worktree_open(&worktree, cwd);
5318 818c7501 2019-07-11 stsp if (error)
5319 818c7501 2019-07-11 stsp goto done;
5320 818c7501 2019-07-11 stsp
5321 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
5322 c9956ddf 2019-09-08 stsp NULL);
5323 818c7501 2019-07-11 stsp if (error != NULL)
5324 818c7501 2019-07-11 stsp goto done;
5325 818c7501 2019-07-11 stsp
5326 818c7501 2019-07-11 stsp error = apply_unveil(got_repo_get_path(repo), 0,
5327 c530dc23 2019-07-23 stsp got_worktree_get_root_path(worktree));
5328 818c7501 2019-07-11 stsp if (error)
5329 818c7501 2019-07-11 stsp goto done;
5330 818c7501 2019-07-11 stsp
5331 818c7501 2019-07-11 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
5332 818c7501 2019-07-11 stsp if (error)
5333 818c7501 2019-07-11 stsp goto done;
5334 818c7501 2019-07-11 stsp
5335 f6794adc 2019-07-23 stsp if (abort_rebase) {
5336 818c7501 2019-07-11 stsp int did_something;
5337 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
5338 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
5339 f6794adc 2019-07-23 stsp goto done;
5340 f6794adc 2019-07-23 stsp }
5341 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
5342 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
5343 3e3a69f1 2019-07-25 stsp worktree, repo);
5344 818c7501 2019-07-11 stsp if (error)
5345 818c7501 2019-07-11 stsp goto done;
5346 818c7501 2019-07-11 stsp printf("Switching work tree to %s\n",
5347 818c7501 2019-07-11 stsp got_ref_get_symref_target(new_base_branch));
5348 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_abort(worktree, fileindex, repo,
5349 818c7501 2019-07-11 stsp new_base_branch, update_progress, &did_something);
5350 818c7501 2019-07-11 stsp if (error)
5351 818c7501 2019-07-11 stsp goto done;
5352 818c7501 2019-07-11 stsp printf("Rebase of %s aborted\n", got_ref_get_name(branch));
5353 818c7501 2019-07-11 stsp goto done; /* nothing else to do */
5354 818c7501 2019-07-11 stsp }
5355 818c7501 2019-07-11 stsp
5356 818c7501 2019-07-11 stsp if (continue_rebase) {
5357 f6794adc 2019-07-23 stsp if (!rebase_in_progress) {
5358 f6794adc 2019-07-23 stsp error = got_error(GOT_ERR_NOT_REBASING);
5359 f6794adc 2019-07-23 stsp goto done;
5360 f6794adc 2019-07-23 stsp }
5361 818c7501 2019-07-11 stsp error = got_worktree_rebase_continue(&resume_commit_id,
5362 3e3a69f1 2019-07-25 stsp &new_base_branch, &tmp_branch, &branch, &fileindex,
5363 3e3a69f1 2019-07-25 stsp worktree, repo);
5364 818c7501 2019-07-11 stsp if (error)
5365 818c7501 2019-07-11 stsp goto done;
5366 818c7501 2019-07-11 stsp
5367 3e3a69f1 2019-07-25 stsp error = rebase_commit(NULL, worktree, fileindex, tmp_branch,
5368 01757395 2019-07-12 stsp resume_commit_id, repo);
5369 818c7501 2019-07-11 stsp if (error)
5370 818c7501 2019-07-11 stsp goto done;
5371 818c7501 2019-07-11 stsp
5372 ff0d2220 2019-07-11 stsp yca_id = got_object_id_dup(resume_commit_id);
5373 ff0d2220 2019-07-11 stsp if (yca_id == NULL) {
5374 818c7501 2019-07-11 stsp error = got_error_from_errno("got_object_id_dup");
5375 818c7501 2019-07-11 stsp goto done;
5376 818c7501 2019-07-11 stsp }
5377 818c7501 2019-07-11 stsp } else {
5378 818c7501 2019-07-11 stsp error = got_ref_open(&branch, repo, argv[0], 0);
5379 818c7501 2019-07-11 stsp if (error != NULL)
5380 818c7501 2019-07-11 stsp goto done;
5381 ff0d2220 2019-07-11 stsp }
5382 818c7501 2019-07-11 stsp
5383 ff0d2220 2019-07-11 stsp error = got_ref_resolve(&branch_head_commit_id, repo, branch);
5384 ff0d2220 2019-07-11 stsp if (error)
5385 ff0d2220 2019-07-11 stsp goto done;
5386 ff0d2220 2019-07-11 stsp
5387 ff0d2220 2019-07-11 stsp if (!continue_rebase) {
5388 a51a74b3 2019-07-27 stsp struct got_object_id *base_commit_id;
5389 a51a74b3 2019-07-27 stsp
5390 a51a74b3 2019-07-27 stsp base_commit_id = got_worktree_get_base_commit_id(worktree);
5391 818c7501 2019-07-11 stsp error = got_commit_graph_find_youngest_common_ancestor(&yca_id,
5392 6fb7cd11 2019-08-22 stsp base_commit_id, branch_head_commit_id, repo,
5393 6fb7cd11 2019-08-22 stsp check_cancelled, NULL);
5394 818c7501 2019-07-11 stsp if (error)
5395 818c7501 2019-07-11 stsp goto done;
5396 818c7501 2019-07-11 stsp if (yca_id == NULL) {
5397 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_ANCESTRY,
5398 818c7501 2019-07-11 stsp "specified branch shares no common ancestry "
5399 818c7501 2019-07-11 stsp "with work tree's branch");
5400 818c7501 2019-07-11 stsp goto done;
5401 818c7501 2019-07-11 stsp }
5402 818c7501 2019-07-11 stsp
5403 a51a74b3 2019-07-27 stsp error = check_same_branch(base_commit_id, branch, yca_id, repo);
5404 a51a74b3 2019-07-27 stsp if (error) {
5405 a51a74b3 2019-07-27 stsp if (error->code != GOT_ERR_ANCESTRY)
5406 a51a74b3 2019-07-27 stsp goto done;
5407 a51a74b3 2019-07-27 stsp error = NULL;
5408 a51a74b3 2019-07-27 stsp } else {
5409 a51a74b3 2019-07-27 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
5410 a51a74b3 2019-07-27 stsp "specified branch resolves to a commit which "
5411 a51a74b3 2019-07-27 stsp "is already contained in work tree's branch");
5412 a51a74b3 2019-07-27 stsp goto done;
5413 a51a74b3 2019-07-27 stsp }
5414 818c7501 2019-07-11 stsp error = got_worktree_rebase_prepare(&new_base_branch,
5415 3e3a69f1 2019-07-25 stsp &tmp_branch, &fileindex, worktree, branch, repo);
5416 818c7501 2019-07-11 stsp if (error)
5417 818c7501 2019-07-11 stsp goto done;
5418 818c7501 2019-07-11 stsp }
5419 818c7501 2019-07-11 stsp
5420 ff0d2220 2019-07-11 stsp commit_id = branch_head_commit_id;
5421 818c7501 2019-07-11 stsp error = got_object_open_as_commit(&commit, repo, commit_id);
5422 818c7501 2019-07-11 stsp if (error)
5423 818c7501 2019-07-11 stsp goto done;
5424 818c7501 2019-07-11 stsp
5425 818c7501 2019-07-11 stsp parent_ids = got_object_commit_get_parent_ids(commit);
5426 818c7501 2019-07-11 stsp pid = SIMPLEQ_FIRST(parent_ids);
5427 fc66b545 2019-08-12 stsp if (pid == NULL) {
5428 fc66b545 2019-08-12 stsp if (!continue_rebase) {
5429 fc66b545 2019-08-12 stsp int did_something;
5430 fc66b545 2019-08-12 stsp error = got_worktree_rebase_abort(worktree, fileindex,
5431 fc66b545 2019-08-12 stsp repo, new_base_branch, update_progress,
5432 fc66b545 2019-08-12 stsp &did_something);
5433 fc66b545 2019-08-12 stsp if (error)
5434 fc66b545 2019-08-12 stsp goto done;
5435 fc66b545 2019-08-12 stsp printf("Rebase of %s aborted\n",
5436 fc66b545 2019-08-12 stsp got_ref_get_name(branch));
5437 fc66b545 2019-08-12 stsp }
5438 fc66b545 2019-08-12 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
5439 fc66b545 2019-08-12 stsp goto done;
5440 fc66b545 2019-08-12 stsp }
5441 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, commit_id, pid->id,
5442 8ca9bd68 2019-07-25 stsp yca_id, got_worktree_get_path_prefix(worktree),
5443 8ca9bd68 2019-07-25 stsp GOT_ERR_REBASE_PATH, repo);
5444 818c7501 2019-07-11 stsp got_object_commit_close(commit);
5445 818c7501 2019-07-11 stsp commit = NULL;
5446 818c7501 2019-07-11 stsp if (error)
5447 818c7501 2019-07-11 stsp goto done;
5448 64c6d990 2019-07-11 stsp
5449 818c7501 2019-07-11 stsp if (SIMPLEQ_EMPTY(&commits)) {
5450 ff0d2220 2019-07-11 stsp if (continue_rebase)
5451 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex,
5452 3e3a69f1 2019-07-25 stsp branch, new_base_branch, tmp_branch, repo);
5453 ff0d2220 2019-07-11 stsp else
5454 ff0d2220 2019-07-11 stsp error = got_error(GOT_ERR_EMPTY_REBASE);
5455 818c7501 2019-07-11 stsp goto done;
5456 818c7501 2019-07-11 stsp }
5457 818c7501 2019-07-11 stsp
5458 818c7501 2019-07-11 stsp pid = NULL;
5459 818c7501 2019-07-11 stsp SIMPLEQ_FOREACH(qid, &commits, entry) {
5460 818c7501 2019-07-11 stsp commit_id = qid->id;
5461 818c7501 2019-07-11 stsp parent_id = pid ? pid->id : yca_id;
5462 818c7501 2019-07-11 stsp pid = qid;
5463 818c7501 2019-07-11 stsp
5464 01757395 2019-07-12 stsp error = got_worktree_rebase_merge_files(&merged_paths,
5465 3e3a69f1 2019-07-25 stsp worktree, fileindex, parent_id, commit_id, repo,
5466 3e3a69f1 2019-07-25 stsp rebase_progress, &rebase_status, check_cancelled, NULL);
5467 818c7501 2019-07-11 stsp if (error)
5468 818c7501 2019-07-11 stsp goto done;
5469 818c7501 2019-07-11 stsp
5470 01757395 2019-07-12 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
5471 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
5472 818c7501 2019-07-11 stsp break;
5473 01757395 2019-07-12 stsp }
5474 818c7501 2019-07-11 stsp
5475 3e3a69f1 2019-07-25 stsp error = rebase_commit(&merged_paths, worktree, fileindex,
5476 3e3a69f1 2019-07-25 stsp tmp_branch, commit_id, repo);
5477 01757395 2019-07-12 stsp got_worktree_rebase_pathlist_free(&merged_paths);
5478 818c7501 2019-07-11 stsp if (error)
5479 818c7501 2019-07-11 stsp goto done;
5480 818c7501 2019-07-11 stsp }
5481 818c7501 2019-07-11 stsp
5482 818c7501 2019-07-11 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
5483 3e3a69f1 2019-07-25 stsp error = got_worktree_rebase_postpone(worktree, fileindex);
5484 818c7501 2019-07-11 stsp if (error)
5485 818c7501 2019-07-11 stsp goto done;
5486 818c7501 2019-07-11 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
5487 11495e04 2019-07-12 stsp "conflicts must be resolved before rebasing can continue");
5488 818c7501 2019-07-11 stsp } else
5489 3e3a69f1 2019-07-25 stsp error = rebase_complete(worktree, fileindex, branch,
5490 3e3a69f1 2019-07-25 stsp new_base_branch, tmp_branch, repo);
5491 818c7501 2019-07-11 stsp done:
5492 818c7501 2019-07-11 stsp got_object_id_queue_free(&commits);
5493 818c7501 2019-07-11 stsp free(branch_head_commit_id);
5494 818c7501 2019-07-11 stsp free(resume_commit_id);
5495 818c7501 2019-07-11 stsp free(yca_id);
5496 818c7501 2019-07-11 stsp if (commit)
5497 818c7501 2019-07-11 stsp got_object_commit_close(commit);
5498 818c7501 2019-07-11 stsp if (branch)
5499 818c7501 2019-07-11 stsp got_ref_close(branch);
5500 818c7501 2019-07-11 stsp if (new_base_branch)
5501 818c7501 2019-07-11 stsp got_ref_close(new_base_branch);
5502 818c7501 2019-07-11 stsp if (tmp_branch)
5503 818c7501 2019-07-11 stsp got_ref_close(tmp_branch);
5504 5ef14e63 2019-06-02 stsp if (worktree)
5505 5ef14e63 2019-06-02 stsp got_worktree_close(worktree);
5506 5ef14e63 2019-06-02 stsp if (repo)
5507 5ef14e63 2019-06-02 stsp got_repo_close(repo);
5508 5ef14e63 2019-06-02 stsp return error;
5509 0ebf8283 2019-07-24 stsp }
5510 0ebf8283 2019-07-24 stsp
5511 0ebf8283 2019-07-24 stsp __dead static void
5512 0ebf8283 2019-07-24 stsp usage_histedit(void)
5513 0ebf8283 2019-07-24 stsp {
5514 f3055044 2019-08-07 stsp fprintf(stderr, "usage: %s histedit [-a] [-c] [-F histedit-script]\n",
5515 0ebf8283 2019-07-24 stsp getprogname());
5516 0ebf8283 2019-07-24 stsp exit(1);
5517 0ebf8283 2019-07-24 stsp }
5518 0ebf8283 2019-07-24 stsp
5519 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_PICK 'p'
5520 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_EDIT 'e'
5521 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_FOLD 'f'
5522 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_DROP 'd'
5523 0ebf8283 2019-07-24 stsp #define GOT_HISTEDIT_MESG 'm'
5524 0ebf8283 2019-07-24 stsp
5525 0ebf8283 2019-07-24 stsp static struct got_histedit_cmd {
5526 0ebf8283 2019-07-24 stsp unsigned char code;
5527 0ebf8283 2019-07-24 stsp const char *name;
5528 0ebf8283 2019-07-24 stsp const char *desc;
5529 0ebf8283 2019-07-24 stsp } got_histedit_cmds[] = {
5530 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_PICK, "pick", "use commit" },
5531 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_EDIT, "edit", "use commit but stop for amending" },
5532 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_FOLD, "fold", "combine with commit below" },
5533 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_DROP, "drop", "remove commit from history" },
5534 0ebf8283 2019-07-24 stsp { GOT_HISTEDIT_MESG, "mesg",
5535 0ebf8283 2019-07-24 stsp "single-line log message for commit above (open editor if empty)" },
5536 0ebf8283 2019-07-24 stsp };
5537 0ebf8283 2019-07-24 stsp
5538 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry {
5539 0ebf8283 2019-07-24 stsp TAILQ_ENTRY(got_histedit_list_entry) entry;
5540 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id;
5541 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
5542 0ebf8283 2019-07-24 stsp char *logmsg;
5543 0ebf8283 2019-07-24 stsp };
5544 0ebf8283 2019-07-24 stsp TAILQ_HEAD(got_histedit_list, got_histedit_list_entry);
5545 0ebf8283 2019-07-24 stsp
5546 0ebf8283 2019-07-24 stsp static const struct got_error *
5547 0ebf8283 2019-07-24 stsp histedit_write_commit(struct got_object_id *commit_id, const char *cmdname,
5548 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
5549 0ebf8283 2019-07-24 stsp {
5550 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5551 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *id_str = NULL;
5552 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
5553 8138f3e1 2019-08-11 stsp int n;
5554 0ebf8283 2019-07-24 stsp
5555 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, commit_id);
5556 0ebf8283 2019-07-24 stsp if (err)
5557 0ebf8283 2019-07-24 stsp goto done;
5558 0ebf8283 2019-07-24 stsp
5559 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 34, commit);
5560 0ebf8283 2019-07-24 stsp if (err)
5561 0ebf8283 2019-07-24 stsp goto done;
5562 0ebf8283 2019-07-24 stsp
5563 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, commit_id);
5564 0ebf8283 2019-07-24 stsp if (err)
5565 0ebf8283 2019-07-24 stsp goto done;
5566 0ebf8283 2019-07-24 stsp
5567 0ebf8283 2019-07-24 stsp n = fprintf(f, "%s %s %s\n", cmdname, id_str, logmsg);
5568 0ebf8283 2019-07-24 stsp if (n < 0)
5569 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
5570 0ebf8283 2019-07-24 stsp done:
5571 0ebf8283 2019-07-24 stsp if (commit)
5572 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
5573 0ebf8283 2019-07-24 stsp free(id_str);
5574 0ebf8283 2019-07-24 stsp free(logmsg);
5575 0ebf8283 2019-07-24 stsp return err;
5576 0ebf8283 2019-07-24 stsp }
5577 0ebf8283 2019-07-24 stsp
5578 0ebf8283 2019-07-24 stsp static const struct got_error *
5579 0ebf8283 2019-07-24 stsp histedit_write_commit_list(struct got_object_id_queue *commits, FILE *f,
5580 0ebf8283 2019-07-24 stsp struct got_repository *repo)
5581 0ebf8283 2019-07-24 stsp {
5582 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5583 0ebf8283 2019-07-24 stsp struct got_object_qid *qid;
5584 0ebf8283 2019-07-24 stsp
5585 0ebf8283 2019-07-24 stsp if (SIMPLEQ_EMPTY(commits))
5586 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
5587 0ebf8283 2019-07-24 stsp
5588 0ebf8283 2019-07-24 stsp SIMPLEQ_FOREACH(qid, commits, entry) {
5589 0ebf8283 2019-07-24 stsp err = histedit_write_commit(qid->id, got_histedit_cmds[0].name,
5590 0ebf8283 2019-07-24 stsp f, repo);
5591 0ebf8283 2019-07-24 stsp if (err)
5592 0ebf8283 2019-07-24 stsp break;
5593 0ebf8283 2019-07-24 stsp }
5594 0ebf8283 2019-07-24 stsp
5595 0ebf8283 2019-07-24 stsp return err;
5596 0ebf8283 2019-07-24 stsp }
5597 0ebf8283 2019-07-24 stsp
5598 0ebf8283 2019-07-24 stsp static const struct got_error *
5599 0ebf8283 2019-07-24 stsp write_cmd_list(FILE *f)
5600 0ebf8283 2019-07-24 stsp {
5601 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5602 0ebf8283 2019-07-24 stsp int n, i;
5603 0ebf8283 2019-07-24 stsp
5604 0ebf8283 2019-07-24 stsp n = fprintf(f, "# Available histedit commands:\n");
5605 0ebf8283 2019-07-24 stsp if (n < 0)
5606 0ebf8283 2019-07-24 stsp return got_ferror(f, GOT_ERR_IO);
5607 0ebf8283 2019-07-24 stsp
5608 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
5609 0ebf8283 2019-07-24 stsp struct got_histedit_cmd *cmd = &got_histedit_cmds[i];
5610 0ebf8283 2019-07-24 stsp n = fprintf(f, "# %s (%c): %s\n", cmd->name, cmd->code,
5611 0ebf8283 2019-07-24 stsp cmd->desc);
5612 0ebf8283 2019-07-24 stsp if (n < 0) {
5613 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
5614 0ebf8283 2019-07-24 stsp break;
5615 0ebf8283 2019-07-24 stsp }
5616 0ebf8283 2019-07-24 stsp }
5617 0ebf8283 2019-07-24 stsp n = fprintf(f, "# Commits will be processed in order from top to "
5618 0ebf8283 2019-07-24 stsp "bottom of this file.\n");
5619 0ebf8283 2019-07-24 stsp if (n < 0)
5620 0ebf8283 2019-07-24 stsp return got_ferror(f, GOT_ERR_IO);
5621 0ebf8283 2019-07-24 stsp return err;
5622 0ebf8283 2019-07-24 stsp }
5623 0ebf8283 2019-07-24 stsp
5624 0ebf8283 2019-07-24 stsp static const struct got_error *
5625 0ebf8283 2019-07-24 stsp histedit_syntax_error(int lineno)
5626 0ebf8283 2019-07-24 stsp {
5627 0ebf8283 2019-07-24 stsp static char msg[42];
5628 0ebf8283 2019-07-24 stsp int ret;
5629 0ebf8283 2019-07-24 stsp
5630 0ebf8283 2019-07-24 stsp ret = snprintf(msg, sizeof(msg), "histedit syntax error on line %d",
5631 0ebf8283 2019-07-24 stsp lineno);
5632 0ebf8283 2019-07-24 stsp if (ret == -1 || ret >= sizeof(msg))
5633 0ebf8283 2019-07-24 stsp return got_error(GOT_ERR_HISTEDIT_SYNTAX);
5634 0ebf8283 2019-07-24 stsp
5635 0ebf8283 2019-07-24 stsp return got_error_msg(GOT_ERR_HISTEDIT_SYNTAX, msg);
5636 0ebf8283 2019-07-24 stsp }
5637 0ebf8283 2019-07-24 stsp
5638 0ebf8283 2019-07-24 stsp static const struct got_error *
5639 0ebf8283 2019-07-24 stsp append_folded_commit_msg(char **new_msg, struct got_histedit_list_entry *hle,
5640 0ebf8283 2019-07-24 stsp char *logmsg, struct got_repository *repo)
5641 0ebf8283 2019-07-24 stsp {
5642 0ebf8283 2019-07-24 stsp const struct got_error *err;
5643 0ebf8283 2019-07-24 stsp struct got_commit_object *folded_commit = NULL;
5644 5943eee2 2019-08-13 stsp char *id_str, *folded_logmsg = NULL;
5645 0ebf8283 2019-07-24 stsp
5646 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
5647 0ebf8283 2019-07-24 stsp if (err)
5648 0ebf8283 2019-07-24 stsp return err;
5649 0ebf8283 2019-07-24 stsp
5650 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&folded_commit, repo, hle->commit_id);
5651 0ebf8283 2019-07-24 stsp if (err)
5652 0ebf8283 2019-07-24 stsp goto done;
5653 0ebf8283 2019-07-24 stsp
5654 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&folded_logmsg, folded_commit);
5655 5943eee2 2019-08-13 stsp if (err)
5656 5943eee2 2019-08-13 stsp goto done;
5657 0ebf8283 2019-07-24 stsp if (asprintf(new_msg, "%s%s# log message of folded commit %s: %s",
5658 0ebf8283 2019-07-24 stsp logmsg ? logmsg : "", logmsg ? "\n" : "", id_str,
5659 5943eee2 2019-08-13 stsp folded_logmsg) == -1) {
5660 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
5661 0ebf8283 2019-07-24 stsp goto done;
5662 0ebf8283 2019-07-24 stsp }
5663 0ebf8283 2019-07-24 stsp done:
5664 0ebf8283 2019-07-24 stsp if (folded_commit)
5665 0ebf8283 2019-07-24 stsp got_object_commit_close(folded_commit);
5666 0ebf8283 2019-07-24 stsp free(id_str);
5667 5943eee2 2019-08-13 stsp free(folded_logmsg);
5668 0ebf8283 2019-07-24 stsp return err;
5669 0ebf8283 2019-07-24 stsp }
5670 0ebf8283 2019-07-24 stsp
5671 0ebf8283 2019-07-24 stsp static struct got_histedit_list_entry *
5672 0ebf8283 2019-07-24 stsp get_folded_commits(struct got_histedit_list_entry *hle)
5673 0ebf8283 2019-07-24 stsp {
5674 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *prev, *folded = NULL;
5675 0ebf8283 2019-07-24 stsp
5676 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(hle, got_histedit_list, entry);
5677 3f9de99f 2019-07-24 stsp while (prev && (prev->cmd->code == GOT_HISTEDIT_FOLD ||
5678 3f9de99f 2019-07-24 stsp prev->cmd->code == GOT_HISTEDIT_DROP)) {
5679 3f9de99f 2019-07-24 stsp if (prev->cmd->code == GOT_HISTEDIT_FOLD)
5680 3f9de99f 2019-07-24 stsp folded = prev;
5681 0ebf8283 2019-07-24 stsp prev = TAILQ_PREV(prev, got_histedit_list, entry);
5682 0ebf8283 2019-07-24 stsp }
5683 0ebf8283 2019-07-24 stsp
5684 0ebf8283 2019-07-24 stsp return folded;
5685 0ebf8283 2019-07-24 stsp }
5686 0ebf8283 2019-07-24 stsp
5687 0ebf8283 2019-07-24 stsp static const struct got_error *
5688 0ebf8283 2019-07-24 stsp histedit_edit_logmsg(struct got_histedit_list_entry *hle,
5689 0ebf8283 2019-07-24 stsp struct got_repository *repo)
5690 0ebf8283 2019-07-24 stsp {
5691 5943eee2 2019-08-13 stsp char *logmsg_path = NULL, *id_str = NULL, *orig_logmsg = NULL;
5692 0ebf8283 2019-07-24 stsp char *logmsg = NULL, *new_msg = NULL, *editor = NULL;
5693 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5694 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
5695 0ebf8283 2019-07-24 stsp int fd;
5696 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *folded = NULL;
5697 0ebf8283 2019-07-24 stsp
5698 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
5699 0ebf8283 2019-07-24 stsp if (err)
5700 0ebf8283 2019-07-24 stsp return err;
5701 0ebf8283 2019-07-24 stsp
5702 0ebf8283 2019-07-24 stsp folded = get_folded_commits(hle);
5703 0ebf8283 2019-07-24 stsp if (folded) {
5704 0ebf8283 2019-07-24 stsp while (folded != hle) {
5705 3f9de99f 2019-07-24 stsp if (folded->cmd->code == GOT_HISTEDIT_DROP) {
5706 3f9de99f 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
5707 3f9de99f 2019-07-24 stsp continue;
5708 3f9de99f 2019-07-24 stsp }
5709 0ebf8283 2019-07-24 stsp err = append_folded_commit_msg(&new_msg, folded,
5710 0ebf8283 2019-07-24 stsp logmsg, repo);
5711 0ebf8283 2019-07-24 stsp if (err)
5712 0ebf8283 2019-07-24 stsp goto done;
5713 0ebf8283 2019-07-24 stsp free(logmsg);
5714 0ebf8283 2019-07-24 stsp logmsg = new_msg;
5715 0ebf8283 2019-07-24 stsp folded = TAILQ_NEXT(folded, entry);
5716 0ebf8283 2019-07-24 stsp }
5717 0ebf8283 2019-07-24 stsp }
5718 0ebf8283 2019-07-24 stsp
5719 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
5720 0ebf8283 2019-07-24 stsp if (err)
5721 0ebf8283 2019-07-24 stsp goto done;
5722 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&orig_logmsg, commit);
5723 5943eee2 2019-08-13 stsp if (err)
5724 5943eee2 2019-08-13 stsp goto done;
5725 0ebf8283 2019-07-24 stsp if (asprintf(&new_msg,
5726 0ebf8283 2019-07-24 stsp "%s\n# original log message of commit %s: %s",
5727 5943eee2 2019-08-13 stsp logmsg ? logmsg : "", id_str, orig_logmsg) == -1) {
5728 0ebf8283 2019-07-24 stsp err = got_error_from_errno("asprintf");
5729 0ebf8283 2019-07-24 stsp goto done;
5730 0ebf8283 2019-07-24 stsp }
5731 0ebf8283 2019-07-24 stsp free(logmsg);
5732 0ebf8283 2019-07-24 stsp logmsg = new_msg;
5733 0ebf8283 2019-07-24 stsp
5734 0ebf8283 2019-07-24 stsp err = got_object_id_str(&id_str, hle->commit_id);
5735 0ebf8283 2019-07-24 stsp if (err)
5736 0ebf8283 2019-07-24 stsp goto done;
5737 0ebf8283 2019-07-24 stsp
5738 0ebf8283 2019-07-24 stsp err = got_opentemp_named_fd(&logmsg_path, &fd, "/tmp/got-logmsg");
5739 0ebf8283 2019-07-24 stsp if (err)
5740 0ebf8283 2019-07-24 stsp goto done;
5741 0ebf8283 2019-07-24 stsp
5742 0ebf8283 2019-07-24 stsp dprintf(fd, logmsg);
5743 0ebf8283 2019-07-24 stsp close(fd);
5744 0ebf8283 2019-07-24 stsp
5745 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
5746 0ebf8283 2019-07-24 stsp if (err)
5747 0ebf8283 2019-07-24 stsp goto done;
5748 0ebf8283 2019-07-24 stsp
5749 0ebf8283 2019-07-24 stsp err = edit_logmsg(&hle->logmsg, editor, logmsg_path, logmsg);
5750 0ebf8283 2019-07-24 stsp if (err) {
5751 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_MSG_EMPTY)
5752 0ebf8283 2019-07-24 stsp goto done;
5753 5943eee2 2019-08-13 stsp err = got_object_commit_get_logmsg(&hle->logmsg, commit);
5754 0ebf8283 2019-07-24 stsp }
5755 0ebf8283 2019-07-24 stsp done:
5756 0ebf8283 2019-07-24 stsp if (logmsg_path && unlink(logmsg_path) != 0 && err == NULL)
5757 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", logmsg_path);
5758 0ebf8283 2019-07-24 stsp free(logmsg_path);
5759 0ebf8283 2019-07-24 stsp free(logmsg);
5760 5943eee2 2019-08-13 stsp free(orig_logmsg);
5761 0ebf8283 2019-07-24 stsp free(editor);
5762 0ebf8283 2019-07-24 stsp if (commit)
5763 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
5764 0ebf8283 2019-07-24 stsp return err;
5765 5ef14e63 2019-06-02 stsp }
5766 0ebf8283 2019-07-24 stsp
5767 0ebf8283 2019-07-24 stsp static const struct got_error *
5768 0ebf8283 2019-07-24 stsp histedit_parse_list(struct got_histedit_list *histedit_cmds,
5769 0ebf8283 2019-07-24 stsp FILE *f, struct got_repository *repo)
5770 0ebf8283 2019-07-24 stsp {
5771 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5772 0ebf8283 2019-07-24 stsp char *line = NULL, *p, *end;
5773 0ebf8283 2019-07-24 stsp size_t size;
5774 0ebf8283 2019-07-24 stsp ssize_t len;
5775 0ebf8283 2019-07-24 stsp int lineno = 0, i;
5776 0ebf8283 2019-07-24 stsp const struct got_histedit_cmd *cmd;
5777 0ebf8283 2019-07-24 stsp struct got_object_id *commit_id = NULL;
5778 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle = NULL;
5779 0ebf8283 2019-07-24 stsp
5780 0ebf8283 2019-07-24 stsp for (;;) {
5781 0ebf8283 2019-07-24 stsp len = getline(&line, &size, f);
5782 0ebf8283 2019-07-24 stsp if (len == -1) {
5783 0ebf8283 2019-07-24 stsp const struct got_error *getline_err;
5784 0ebf8283 2019-07-24 stsp if (feof(f))
5785 0ebf8283 2019-07-24 stsp break;
5786 0ebf8283 2019-07-24 stsp getline_err = got_error_from_errno("getline");
5787 0ebf8283 2019-07-24 stsp err = got_ferror(f, getline_err->code);
5788 0ebf8283 2019-07-24 stsp break;
5789 0ebf8283 2019-07-24 stsp }
5790 0ebf8283 2019-07-24 stsp lineno++;
5791 0ebf8283 2019-07-24 stsp p = line;
5792 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
5793 0ebf8283 2019-07-24 stsp p++;
5794 0ebf8283 2019-07-24 stsp if (p[0] == '#' || p[0] == '\0') {
5795 0ebf8283 2019-07-24 stsp free(line);
5796 0ebf8283 2019-07-24 stsp line = NULL;
5797 0ebf8283 2019-07-24 stsp continue;
5798 0ebf8283 2019-07-24 stsp }
5799 0ebf8283 2019-07-24 stsp cmd = NULL;
5800 0ebf8283 2019-07-24 stsp for (i = 0; i < nitems(got_histedit_cmds); i++) {
5801 0ebf8283 2019-07-24 stsp cmd = &got_histedit_cmds[i];
5802 0ebf8283 2019-07-24 stsp if (strncmp(cmd->name, p, strlen(cmd->name)) == 0 &&
5803 0ebf8283 2019-07-24 stsp isspace((unsigned char)p[strlen(cmd->name)])) {
5804 0ebf8283 2019-07-24 stsp p += strlen(cmd->name);
5805 0ebf8283 2019-07-24 stsp break;
5806 0ebf8283 2019-07-24 stsp }
5807 0ebf8283 2019-07-24 stsp if (p[0] == cmd->code && isspace((unsigned char)p[1])) {
5808 0ebf8283 2019-07-24 stsp p++;
5809 0ebf8283 2019-07-24 stsp break;
5810 0ebf8283 2019-07-24 stsp }
5811 0ebf8283 2019-07-24 stsp }
5812 6c1844f6 2019-07-25 stsp if (i == nitems(got_histedit_cmds)) {
5813 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
5814 0ebf8283 2019-07-24 stsp break;
5815 0ebf8283 2019-07-24 stsp }
5816 0ebf8283 2019-07-24 stsp while (isspace((unsigned char)p[0]))
5817 0ebf8283 2019-07-24 stsp p++;
5818 0ebf8283 2019-07-24 stsp if (cmd->code == GOT_HISTEDIT_MESG) {
5819 0ebf8283 2019-07-24 stsp if (hle == NULL || hle->logmsg != NULL) {
5820 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CMD);
5821 0ebf8283 2019-07-24 stsp break;
5822 0ebf8283 2019-07-24 stsp }
5823 0ebf8283 2019-07-24 stsp if (p[0] == '\0') {
5824 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
5825 0ebf8283 2019-07-24 stsp if (err)
5826 0ebf8283 2019-07-24 stsp break;
5827 0ebf8283 2019-07-24 stsp } else {
5828 0ebf8283 2019-07-24 stsp hle->logmsg = strdup(p);
5829 0ebf8283 2019-07-24 stsp if (hle->logmsg == NULL) {
5830 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
5831 0ebf8283 2019-07-24 stsp break;
5832 0ebf8283 2019-07-24 stsp }
5833 0ebf8283 2019-07-24 stsp }
5834 0ebf8283 2019-07-24 stsp free(line);
5835 0ebf8283 2019-07-24 stsp line = NULL;
5836 0ebf8283 2019-07-24 stsp continue;
5837 0ebf8283 2019-07-24 stsp } else {
5838 0ebf8283 2019-07-24 stsp end = p;
5839 0ebf8283 2019-07-24 stsp while (end[0] && !isspace((unsigned char)end[0]))
5840 0ebf8283 2019-07-24 stsp end++;
5841 0ebf8283 2019-07-24 stsp *end = '\0';
5842 0ebf8283 2019-07-24 stsp
5843 0ebf8283 2019-07-24 stsp err = got_object_resolve_id_str(&commit_id, repo, p);
5844 0ebf8283 2019-07-24 stsp if (err) {
5845 0ebf8283 2019-07-24 stsp /* override error code */
5846 0ebf8283 2019-07-24 stsp err = histedit_syntax_error(lineno);
5847 0ebf8283 2019-07-24 stsp break;
5848 0ebf8283 2019-07-24 stsp }
5849 0ebf8283 2019-07-24 stsp }
5850 0ebf8283 2019-07-24 stsp hle = malloc(sizeof(*hle));
5851 0ebf8283 2019-07-24 stsp if (hle == NULL) {
5852 0ebf8283 2019-07-24 stsp err = got_error_from_errno("malloc");
5853 0ebf8283 2019-07-24 stsp break;
5854 0ebf8283 2019-07-24 stsp }
5855 0ebf8283 2019-07-24 stsp hle->cmd = cmd;
5856 0ebf8283 2019-07-24 stsp hle->commit_id = commit_id;
5857 0ebf8283 2019-07-24 stsp hle->logmsg = NULL;
5858 0ebf8283 2019-07-24 stsp commit_id = NULL;
5859 0ebf8283 2019-07-24 stsp free(line);
5860 0ebf8283 2019-07-24 stsp line = NULL;
5861 0ebf8283 2019-07-24 stsp TAILQ_INSERT_TAIL(histedit_cmds, hle, entry);
5862 0ebf8283 2019-07-24 stsp }
5863 0ebf8283 2019-07-24 stsp
5864 0ebf8283 2019-07-24 stsp free(line);
5865 0ebf8283 2019-07-24 stsp free(commit_id);
5866 0ebf8283 2019-07-24 stsp return err;
5867 0ebf8283 2019-07-24 stsp }
5868 0ebf8283 2019-07-24 stsp
5869 0ebf8283 2019-07-24 stsp static const struct got_error *
5870 bfce7f83 2019-07-27 stsp histedit_check_script(struct got_histedit_list *histedit_cmds,
5871 bfce7f83 2019-07-27 stsp struct got_object_id_queue *commits, struct got_repository *repo)
5872 bfce7f83 2019-07-27 stsp {
5873 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL;
5874 bfce7f83 2019-07-27 stsp struct got_object_qid *qid;
5875 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
5876 bfce7f83 2019-07-27 stsp static char msg[80];
5877 bfce7f83 2019-07-27 stsp char *id_str;
5878 bfce7f83 2019-07-27 stsp
5879 bfce7f83 2019-07-27 stsp if (TAILQ_EMPTY(histedit_cmds))
5880 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_EMPTY_HISTEDIT,
5881 bfce7f83 2019-07-27 stsp "histedit script contains no commands");
5882 a0de39f3 2019-08-09 stsp if (SIMPLEQ_EMPTY(commits))
5883 a0de39f3 2019-08-09 stsp return got_error(GOT_ERR_EMPTY_HISTEDIT);
5884 bfce7f83 2019-07-27 stsp
5885 bfce7f83 2019-07-27 stsp SIMPLEQ_FOREACH(qid, commits, entry) {
5886 bfce7f83 2019-07-27 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
5887 bfce7f83 2019-07-27 stsp if (got_object_id_cmp(qid->id, hle->commit_id) == 0)
5888 bfce7f83 2019-07-27 stsp break;
5889 bfce7f83 2019-07-27 stsp }
5890 bfce7f83 2019-07-27 stsp if (hle == NULL) {
5891 bfce7f83 2019-07-27 stsp err = got_object_id_str(&id_str, qid->id);
5892 bfce7f83 2019-07-27 stsp if (err)
5893 bfce7f83 2019-07-27 stsp return err;
5894 bfce7f83 2019-07-27 stsp snprintf(msg, sizeof(msg),
5895 bfce7f83 2019-07-27 stsp "commit %s missing from histedit script", id_str);
5896 bfce7f83 2019-07-27 stsp free(id_str);
5897 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD, msg);
5898 bfce7f83 2019-07-27 stsp }
5899 bfce7f83 2019-07-27 stsp }
5900 bfce7f83 2019-07-27 stsp
5901 0def28b1 2019-08-17 stsp hle = TAILQ_LAST(histedit_cmds, got_histedit_list);
5902 0def28b1 2019-08-17 stsp if (hle && hle->cmd->code == GOT_HISTEDIT_FOLD)
5903 bfce7f83 2019-07-27 stsp return got_error_msg(GOT_ERR_HISTEDIT_CMD,
5904 bfce7f83 2019-07-27 stsp "last commit in histedit script cannot be folded");
5905 bfce7f83 2019-07-27 stsp
5906 bfce7f83 2019-07-27 stsp return NULL;
5907 bfce7f83 2019-07-27 stsp }
5908 bfce7f83 2019-07-27 stsp
5909 bfce7f83 2019-07-27 stsp static const struct got_error *
5910 0ebf8283 2019-07-24 stsp histedit_run_editor(struct got_histedit_list *histedit_cmds,
5911 bfce7f83 2019-07-27 stsp const char *path, struct got_object_id_queue *commits,
5912 bfce7f83 2019-07-27 stsp struct got_repository *repo)
5913 0ebf8283 2019-07-24 stsp {
5914 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5915 0ebf8283 2019-07-24 stsp char *editor;
5916 0ebf8283 2019-07-24 stsp FILE *f = NULL;
5917 0ebf8283 2019-07-24 stsp
5918 0ebf8283 2019-07-24 stsp err = get_editor(&editor);
5919 0ebf8283 2019-07-24 stsp if (err)
5920 0ebf8283 2019-07-24 stsp return err;
5921 0ebf8283 2019-07-24 stsp
5922 0ebf8283 2019-07-24 stsp if (spawn_editor(editor, path) == -1) {
5923 0ebf8283 2019-07-24 stsp err = got_error_from_errno("failed spawning editor");
5924 0ebf8283 2019-07-24 stsp goto done;
5925 0ebf8283 2019-07-24 stsp }
5926 0ebf8283 2019-07-24 stsp
5927 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
5928 0ebf8283 2019-07-24 stsp if (f == NULL) {
5929 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fopen");
5930 0ebf8283 2019-07-24 stsp goto done;
5931 0ebf8283 2019-07-24 stsp }
5932 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
5933 bfce7f83 2019-07-27 stsp if (err)
5934 bfce7f83 2019-07-27 stsp goto done;
5935 bfce7f83 2019-07-27 stsp
5936 bfce7f83 2019-07-27 stsp err = histedit_check_script(histedit_cmds, commits, repo);
5937 0ebf8283 2019-07-24 stsp done:
5938 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
5939 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
5940 0ebf8283 2019-07-24 stsp free(editor);
5941 0ebf8283 2019-07-24 stsp return err;
5942 0ebf8283 2019-07-24 stsp }
5943 0ebf8283 2019-07-24 stsp
5944 0ebf8283 2019-07-24 stsp static const struct got_error *
5945 bfce7f83 2019-07-27 stsp histedit_edit_list_retry(struct got_histedit_list *, const struct got_error *,
5946 0ebf8283 2019-07-24 stsp struct got_object_id_queue *, const char *, struct got_repository *);
5947 0ebf8283 2019-07-24 stsp
5948 0ebf8283 2019-07-24 stsp static const struct got_error *
5949 0ebf8283 2019-07-24 stsp histedit_edit_script(struct got_histedit_list *histedit_cmds,
5950 0ebf8283 2019-07-24 stsp struct got_object_id_queue *commits, struct got_repository *repo)
5951 0ebf8283 2019-07-24 stsp {
5952 0ebf8283 2019-07-24 stsp const struct got_error *err;
5953 0ebf8283 2019-07-24 stsp FILE *f = NULL;
5954 0ebf8283 2019-07-24 stsp char *path = NULL;
5955 0ebf8283 2019-07-24 stsp
5956 0ebf8283 2019-07-24 stsp err = got_opentemp_named(&path, &f, "got-histedit");
5957 0ebf8283 2019-07-24 stsp if (err)
5958 0ebf8283 2019-07-24 stsp return err;
5959 0ebf8283 2019-07-24 stsp
5960 0ebf8283 2019-07-24 stsp err = write_cmd_list(f);
5961 0ebf8283 2019-07-24 stsp if (err)
5962 0ebf8283 2019-07-24 stsp goto done;
5963 0ebf8283 2019-07-24 stsp
5964 0ebf8283 2019-07-24 stsp err = histedit_write_commit_list(commits, f, repo);
5965 0ebf8283 2019-07-24 stsp if (err)
5966 0ebf8283 2019-07-24 stsp goto done;
5967 0ebf8283 2019-07-24 stsp
5968 0ebf8283 2019-07-24 stsp if (fclose(f) != 0) {
5969 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
5970 0ebf8283 2019-07-24 stsp goto done;
5971 0ebf8283 2019-07-24 stsp }
5972 0ebf8283 2019-07-24 stsp f = NULL;
5973 0ebf8283 2019-07-24 stsp
5974 bfce7f83 2019-07-27 stsp err = histedit_run_editor(histedit_cmds, path, commits, repo);
5975 0ebf8283 2019-07-24 stsp if (err) {
5976 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
5977 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
5978 0ebf8283 2019-07-24 stsp goto done;
5979 bfce7f83 2019-07-27 stsp err = histedit_edit_list_retry(histedit_cmds, err,
5980 0ebf8283 2019-07-24 stsp commits, path, repo);
5981 0ebf8283 2019-07-24 stsp }
5982 0ebf8283 2019-07-24 stsp done:
5983 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
5984 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
5985 0ebf8283 2019-07-24 stsp if (path && unlink(path) != 0 && err == NULL)
5986 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("unlink", path);
5987 0ebf8283 2019-07-24 stsp free(path);
5988 0ebf8283 2019-07-24 stsp return err;
5989 0ebf8283 2019-07-24 stsp }
5990 0ebf8283 2019-07-24 stsp
5991 0ebf8283 2019-07-24 stsp static const struct got_error *
5992 0ebf8283 2019-07-24 stsp histedit_save_list(struct got_histedit_list *histedit_cmds,
5993 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
5994 0ebf8283 2019-07-24 stsp {
5995 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
5996 0ebf8283 2019-07-24 stsp char *path = NULL;
5997 0ebf8283 2019-07-24 stsp FILE *f = NULL;
5998 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
5999 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
6000 0ebf8283 2019-07-24 stsp
6001 c3022ba5 2019-07-27 stsp err = got_worktree_get_histedit_script_path(&path, worktree);
6002 0ebf8283 2019-07-24 stsp if (err)
6003 0ebf8283 2019-07-24 stsp return err;
6004 0ebf8283 2019-07-24 stsp
6005 0ebf8283 2019-07-24 stsp f = fopen(path, "w");
6006 0ebf8283 2019-07-24 stsp if (f == NULL) {
6007 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
6008 0ebf8283 2019-07-24 stsp goto done;
6009 0ebf8283 2019-07-24 stsp }
6010 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, histedit_cmds, entry) {
6011 0ebf8283 2019-07-24 stsp err = histedit_write_commit(hle->commit_id, hle->cmd->name, f,
6012 0ebf8283 2019-07-24 stsp repo);
6013 0ebf8283 2019-07-24 stsp if (err)
6014 0ebf8283 2019-07-24 stsp break;
6015 0ebf8283 2019-07-24 stsp
6016 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
6017 0ebf8283 2019-07-24 stsp int n = fprintf(f, "%c %s\n",
6018 0ebf8283 2019-07-24 stsp GOT_HISTEDIT_MESG, hle->logmsg);
6019 0ebf8283 2019-07-24 stsp if (n < 0) {
6020 0ebf8283 2019-07-24 stsp err = got_ferror(f, GOT_ERR_IO);
6021 0ebf8283 2019-07-24 stsp break;
6022 0ebf8283 2019-07-24 stsp }
6023 0ebf8283 2019-07-24 stsp }
6024 0ebf8283 2019-07-24 stsp }
6025 0ebf8283 2019-07-24 stsp done:
6026 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
6027 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
6028 0ebf8283 2019-07-24 stsp free(path);
6029 0ebf8283 2019-07-24 stsp if (commit)
6030 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6031 0ebf8283 2019-07-24 stsp return err;
6032 0ebf8283 2019-07-24 stsp }
6033 0ebf8283 2019-07-24 stsp
6034 bfce7f83 2019-07-27 stsp void
6035 bfce7f83 2019-07-27 stsp histedit_free_list(struct got_histedit_list *histedit_cmds)
6036 bfce7f83 2019-07-27 stsp {
6037 bfce7f83 2019-07-27 stsp struct got_histedit_list_entry *hle;
6038 bfce7f83 2019-07-27 stsp
6039 bfce7f83 2019-07-27 stsp while ((hle = TAILQ_FIRST(histedit_cmds))) {
6040 bfce7f83 2019-07-27 stsp TAILQ_REMOVE(histedit_cmds, hle, entry);
6041 bfce7f83 2019-07-27 stsp free(hle);
6042 bfce7f83 2019-07-27 stsp }
6043 bfce7f83 2019-07-27 stsp }
6044 bfce7f83 2019-07-27 stsp
6045 0ebf8283 2019-07-24 stsp static const struct got_error *
6046 0ebf8283 2019-07-24 stsp histedit_load_list(struct got_histedit_list *histedit_cmds,
6047 0ebf8283 2019-07-24 stsp const char *path, struct got_repository *repo)
6048 0ebf8283 2019-07-24 stsp {
6049 0ebf8283 2019-07-24 stsp const struct got_error *err = NULL;
6050 0ebf8283 2019-07-24 stsp FILE *f = NULL;
6051 0ebf8283 2019-07-24 stsp
6052 0ebf8283 2019-07-24 stsp f = fopen(path, "r");
6053 0ebf8283 2019-07-24 stsp if (f == NULL) {
6054 0ebf8283 2019-07-24 stsp err = got_error_from_errno2("fopen", path);
6055 0ebf8283 2019-07-24 stsp goto done;
6056 0ebf8283 2019-07-24 stsp }
6057 0ebf8283 2019-07-24 stsp
6058 0ebf8283 2019-07-24 stsp err = histedit_parse_list(histedit_cmds, f, repo);
6059 0ebf8283 2019-07-24 stsp done:
6060 0ebf8283 2019-07-24 stsp if (f && fclose(f) != 0 && err == NULL)
6061 0ebf8283 2019-07-24 stsp err = got_error_from_errno("fclose");
6062 0ebf8283 2019-07-24 stsp return err;
6063 0ebf8283 2019-07-24 stsp }
6064 0ebf8283 2019-07-24 stsp
6065 0ebf8283 2019-07-24 stsp static const struct got_error *
6066 0ebf8283 2019-07-24 stsp histedit_edit_list_retry(struct got_histedit_list *histedit_cmds,
6067 bfce7f83 2019-07-27 stsp const struct got_error *edit_err, struct got_object_id_queue *commits,
6068 0ebf8283 2019-07-24 stsp const char *path, struct got_repository *repo)
6069 0ebf8283 2019-07-24 stsp {
6070 bfce7f83 2019-07-27 stsp const struct got_error *err = NULL, *prev_err = edit_err;
6071 0ebf8283 2019-07-24 stsp int resp = ' ';
6072 0ebf8283 2019-07-24 stsp
6073 b006047e 2019-07-25 stsp while (resp != 'c' && resp != 'r' && resp != 'a') {
6074 0ebf8283 2019-07-24 stsp printf("%s: %s\n(c)ontinue editing, (r)estart editing, "
6075 bfce7f83 2019-07-27 stsp "or (a)bort: ", getprogname(), prev_err->msg);
6076 0ebf8283 2019-07-24 stsp resp = getchar();
6077 a61a4414 2019-08-07 stsp if (resp == '\n')
6078 a61a4414 2019-08-07 stsp resp = getchar();
6079 426ebf2e 2019-07-25 stsp if (resp == 'c') {
6080 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
6081 bfce7f83 2019-07-27 stsp err = histedit_run_editor(histedit_cmds, path, commits,
6082 bfce7f83 2019-07-27 stsp repo);
6083 426ebf2e 2019-07-25 stsp if (err) {
6084 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
6085 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
6086 426ebf2e 2019-07-25 stsp break;
6087 bfce7f83 2019-07-27 stsp prev_err = err;
6088 426ebf2e 2019-07-25 stsp resp = ' ';
6089 426ebf2e 2019-07-25 stsp continue;
6090 426ebf2e 2019-07-25 stsp }
6091 bfce7f83 2019-07-27 stsp break;
6092 426ebf2e 2019-07-25 stsp } else if (resp == 'r') {
6093 bfce7f83 2019-07-27 stsp histedit_free_list(histedit_cmds);
6094 0ebf8283 2019-07-24 stsp err = histedit_edit_script(histedit_cmds,
6095 0ebf8283 2019-07-24 stsp commits, repo);
6096 426ebf2e 2019-07-25 stsp if (err) {
6097 bfce7f83 2019-07-27 stsp if (err->code != GOT_ERR_HISTEDIT_SYNTAX &&
6098 bfce7f83 2019-07-27 stsp err->code != GOT_ERR_HISTEDIT_CMD)
6099 426ebf2e 2019-07-25 stsp break;
6100 bfce7f83 2019-07-27 stsp prev_err = err;
6101 426ebf2e 2019-07-25 stsp resp = ' ';
6102 426ebf2e 2019-07-25 stsp continue;
6103 426ebf2e 2019-07-25 stsp }
6104 bfce7f83 2019-07-27 stsp break;
6105 426ebf2e 2019-07-25 stsp } else if (resp == 'a') {
6106 0ebf8283 2019-07-24 stsp err = got_error(GOT_ERR_HISTEDIT_CANCEL);
6107 0ebf8283 2019-07-24 stsp break;
6108 426ebf2e 2019-07-25 stsp } else
6109 0ebf8283 2019-07-24 stsp printf("invalid response '%c'\n", resp);
6110 0ebf8283 2019-07-24 stsp }
6111 0ebf8283 2019-07-24 stsp
6112 0ebf8283 2019-07-24 stsp return err;
6113 0ebf8283 2019-07-24 stsp }
6114 0ebf8283 2019-07-24 stsp
6115 0ebf8283 2019-07-24 stsp static const struct got_error *
6116 0ebf8283 2019-07-24 stsp histedit_complete(struct got_worktree *worktree,
6117 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex, struct got_reference *tmp_branch,
6118 3e3a69f1 2019-07-25 stsp struct got_reference *branch, struct got_repository *repo)
6119 0ebf8283 2019-07-24 stsp {
6120 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
6121 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
6122 3e3a69f1 2019-07-25 stsp return got_worktree_histedit_complete(worktree, fileindex, tmp_branch,
6123 3e3a69f1 2019-07-25 stsp branch, repo);
6124 0ebf8283 2019-07-24 stsp }
6125 0ebf8283 2019-07-24 stsp
6126 0ebf8283 2019-07-24 stsp static const struct got_error *
6127 0ebf8283 2019-07-24 stsp show_histedit_progress(struct got_commit_object *commit,
6128 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle, struct got_object_id *new_id)
6129 0ebf8283 2019-07-24 stsp {
6130 0ebf8283 2019-07-24 stsp const struct got_error *err;
6131 0ebf8283 2019-07-24 stsp char *old_id_str = NULL, *new_id_str = NULL, *logmsg = NULL;
6132 0ebf8283 2019-07-24 stsp
6133 0ebf8283 2019-07-24 stsp err = got_object_id_str(&old_id_str, hle->commit_id);
6134 0ebf8283 2019-07-24 stsp if (err)
6135 0ebf8283 2019-07-24 stsp goto done;
6136 0ebf8283 2019-07-24 stsp
6137 0ebf8283 2019-07-24 stsp if (new_id) {
6138 0ebf8283 2019-07-24 stsp err = got_object_id_str(&new_id_str, new_id);
6139 0ebf8283 2019-07-24 stsp if (err)
6140 0ebf8283 2019-07-24 stsp goto done;
6141 0ebf8283 2019-07-24 stsp }
6142 0ebf8283 2019-07-24 stsp
6143 0ebf8283 2019-07-24 stsp old_id_str[12] = '\0';
6144 0ebf8283 2019-07-24 stsp if (new_id_str)
6145 0ebf8283 2019-07-24 stsp new_id_str[12] = '\0';
6146 0ebf8283 2019-07-24 stsp
6147 0ebf8283 2019-07-24 stsp if (hle->logmsg) {
6148 0ebf8283 2019-07-24 stsp logmsg = strdup(hle->logmsg);
6149 0ebf8283 2019-07-24 stsp if (logmsg == NULL) {
6150 0ebf8283 2019-07-24 stsp err = got_error_from_errno("strdup");
6151 0ebf8283 2019-07-24 stsp goto done;
6152 0ebf8283 2019-07-24 stsp }
6153 0ebf8283 2019-07-24 stsp trim_logmsg(logmsg, 42);
6154 0ebf8283 2019-07-24 stsp } else {
6155 0ebf8283 2019-07-24 stsp err = get_short_logmsg(&logmsg, 42, commit);
6156 0ebf8283 2019-07-24 stsp if (err)
6157 0ebf8283 2019-07-24 stsp goto done;
6158 0ebf8283 2019-07-24 stsp }
6159 0ebf8283 2019-07-24 stsp
6160 0ebf8283 2019-07-24 stsp switch (hle->cmd->code) {
6161 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_PICK:
6162 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_EDIT:
6163 0ebf8283 2019-07-24 stsp printf("%s -> %s: %s\n", old_id_str,
6164 0ebf8283 2019-07-24 stsp new_id_str ? new_id_str : "no-op change", logmsg);
6165 0ebf8283 2019-07-24 stsp break;
6166 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_DROP:
6167 0ebf8283 2019-07-24 stsp case GOT_HISTEDIT_FOLD:
6168 0ebf8283 2019-07-24 stsp printf("%s -> %s commit: %s\n", old_id_str, hle->cmd->name,
6169 0ebf8283 2019-07-24 stsp logmsg);
6170 0ebf8283 2019-07-24 stsp break;
6171 0ebf8283 2019-07-24 stsp default:
6172 0ebf8283 2019-07-24 stsp break;
6173 0ebf8283 2019-07-24 stsp }
6174 0ebf8283 2019-07-24 stsp
6175 0ebf8283 2019-07-24 stsp done:
6176 0ebf8283 2019-07-24 stsp free(old_id_str);
6177 0ebf8283 2019-07-24 stsp free(new_id_str);
6178 0ebf8283 2019-07-24 stsp return err;
6179 0ebf8283 2019-07-24 stsp }
6180 0ebf8283 2019-07-24 stsp
6181 0ebf8283 2019-07-24 stsp static const struct got_error *
6182 0ebf8283 2019-07-24 stsp histedit_commit(struct got_pathlist_head *merged_paths,
6183 3e3a69f1 2019-07-25 stsp struct got_worktree *worktree, struct got_fileindex *fileindex,
6184 3e3a69f1 2019-07-25 stsp struct got_reference *tmp_branch, struct got_histedit_list_entry *hle,
6185 3e3a69f1 2019-07-25 stsp struct got_repository *repo)
6186 0ebf8283 2019-07-24 stsp {
6187 0ebf8283 2019-07-24 stsp const struct got_error *err;
6188 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
6189 0ebf8283 2019-07-24 stsp struct got_object_id *new_commit_id;
6190 0ebf8283 2019-07-24 stsp
6191 0ebf8283 2019-07-24 stsp if ((hle->cmd->code == GOT_HISTEDIT_EDIT || get_folded_commits(hle))
6192 0ebf8283 2019-07-24 stsp && hle->logmsg == NULL) {
6193 0ebf8283 2019-07-24 stsp err = histedit_edit_logmsg(hle, repo);
6194 0ebf8283 2019-07-24 stsp if (err)
6195 0ebf8283 2019-07-24 stsp return err;
6196 0ebf8283 2019-07-24 stsp }
6197 0ebf8283 2019-07-24 stsp
6198 0ebf8283 2019-07-24 stsp err = got_object_open_as_commit(&commit, repo, hle->commit_id);
6199 0ebf8283 2019-07-24 stsp if (err)
6200 0ebf8283 2019-07-24 stsp return err;
6201 0ebf8283 2019-07-24 stsp
6202 0ebf8283 2019-07-24 stsp err = got_worktree_histedit_commit(&new_commit_id, merged_paths,
6203 3e3a69f1 2019-07-25 stsp worktree, fileindex, tmp_branch, commit, hle->commit_id,
6204 3e3a69f1 2019-07-25 stsp hle->logmsg, repo);
6205 0ebf8283 2019-07-24 stsp if (err) {
6206 0ebf8283 2019-07-24 stsp if (err->code != GOT_ERR_COMMIT_NO_CHANGES)
6207 0ebf8283 2019-07-24 stsp goto done;
6208 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, NULL);
6209 0ebf8283 2019-07-24 stsp } else {
6210 0ebf8283 2019-07-24 stsp err = show_histedit_progress(commit, hle, new_commit_id);
6211 0ebf8283 2019-07-24 stsp free(new_commit_id);
6212 0ebf8283 2019-07-24 stsp }
6213 0ebf8283 2019-07-24 stsp done:
6214 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6215 0ebf8283 2019-07-24 stsp return err;
6216 0ebf8283 2019-07-24 stsp }
6217 0ebf8283 2019-07-24 stsp
6218 0ebf8283 2019-07-24 stsp static const struct got_error *
6219 0ebf8283 2019-07-24 stsp histedit_skip_commit(struct got_histedit_list_entry *hle,
6220 0ebf8283 2019-07-24 stsp struct got_worktree *worktree, struct got_repository *repo)
6221 0ebf8283 2019-07-24 stsp {
6222 0ebf8283 2019-07-24 stsp const struct got_error *error;
6223 0ebf8283 2019-07-24 stsp struct got_commit_object *commit;
6224 0ebf8283 2019-07-24 stsp
6225 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_skip_commit(worktree, hle->commit_id,
6226 0ebf8283 2019-07-24 stsp repo);
6227 0ebf8283 2019-07-24 stsp if (error)
6228 0ebf8283 2019-07-24 stsp return error;
6229 0ebf8283 2019-07-24 stsp
6230 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo, hle->commit_id);
6231 0ebf8283 2019-07-24 stsp if (error)
6232 0ebf8283 2019-07-24 stsp return error;
6233 0ebf8283 2019-07-24 stsp
6234 0ebf8283 2019-07-24 stsp error = show_histedit_progress(commit, hle, NULL);
6235 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6236 0ebf8283 2019-07-24 stsp return error;
6237 0ebf8283 2019-07-24 stsp }
6238 0ebf8283 2019-07-24 stsp
6239 0ebf8283 2019-07-24 stsp static const struct got_error *
6240 0ebf8283 2019-07-24 stsp cmd_histedit(int argc, char *argv[])
6241 0ebf8283 2019-07-24 stsp {
6242 0ebf8283 2019-07-24 stsp const struct got_error *error = NULL;
6243 0ebf8283 2019-07-24 stsp struct got_worktree *worktree = NULL;
6244 3e3a69f1 2019-07-25 stsp struct got_fileindex *fileindex = NULL;
6245 0ebf8283 2019-07-24 stsp struct got_repository *repo = NULL;
6246 0ebf8283 2019-07-24 stsp char *cwd = NULL;
6247 0ebf8283 2019-07-24 stsp struct got_reference *branch = NULL;
6248 0ebf8283 2019-07-24 stsp struct got_reference *tmp_branch = NULL;
6249 0ebf8283 2019-07-24 stsp struct got_object_id *resume_commit_id = NULL;
6250 0ebf8283 2019-07-24 stsp struct got_object_id *base_commit_id = NULL;
6251 0ebf8283 2019-07-24 stsp struct got_object_id *head_commit_id = NULL;
6252 0ebf8283 2019-07-24 stsp struct got_commit_object *commit = NULL;
6253 6ba2bea2 2019-07-27 stsp int ch, rebase_in_progress = 0, did_something;
6254 0ebf8283 2019-07-24 stsp int edit_in_progress = 0, abort_edit = 0, continue_edit = 0;
6255 0ebf8283 2019-07-24 stsp const char *edit_script_path = NULL;
6256 0ebf8283 2019-07-24 stsp unsigned char rebase_status = GOT_STATUS_NO_CHANGE;
6257 0ebf8283 2019-07-24 stsp struct got_object_id_queue commits;
6258 0ebf8283 2019-07-24 stsp struct got_pathlist_head merged_paths;
6259 0ebf8283 2019-07-24 stsp const struct got_object_id_queue *parent_ids;
6260 0ebf8283 2019-07-24 stsp struct got_object_qid *pid;
6261 0ebf8283 2019-07-24 stsp struct got_histedit_list histedit_cmds;
6262 0ebf8283 2019-07-24 stsp struct got_histedit_list_entry *hle;
6263 0ebf8283 2019-07-24 stsp
6264 0ebf8283 2019-07-24 stsp SIMPLEQ_INIT(&commits);
6265 0ebf8283 2019-07-24 stsp TAILQ_INIT(&histedit_cmds);
6266 0ebf8283 2019-07-24 stsp TAILQ_INIT(&merged_paths);
6267 0ebf8283 2019-07-24 stsp
6268 0ebf8283 2019-07-24 stsp while ((ch = getopt(argc, argv, "acF:")) != -1) {
6269 0ebf8283 2019-07-24 stsp switch (ch) {
6270 0ebf8283 2019-07-24 stsp case 'a':
6271 0ebf8283 2019-07-24 stsp abort_edit = 1;
6272 0ebf8283 2019-07-24 stsp break;
6273 0ebf8283 2019-07-24 stsp case 'c':
6274 0ebf8283 2019-07-24 stsp continue_edit = 1;
6275 0ebf8283 2019-07-24 stsp break;
6276 0ebf8283 2019-07-24 stsp case 'F':
6277 0ebf8283 2019-07-24 stsp edit_script_path = optarg;
6278 0ebf8283 2019-07-24 stsp break;
6279 0ebf8283 2019-07-24 stsp default:
6280 0ebf8283 2019-07-24 stsp usage_histedit();
6281 0ebf8283 2019-07-24 stsp /* NOTREACHED */
6282 0ebf8283 2019-07-24 stsp }
6283 0ebf8283 2019-07-24 stsp }
6284 0ebf8283 2019-07-24 stsp
6285 0ebf8283 2019-07-24 stsp argc -= optind;
6286 0ebf8283 2019-07-24 stsp argv += optind;
6287 0ebf8283 2019-07-24 stsp
6288 0ebf8283 2019-07-24 stsp #ifndef PROFILE
6289 0ebf8283 2019-07-24 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6290 0ebf8283 2019-07-24 stsp "unveil", NULL) == -1)
6291 0ebf8283 2019-07-24 stsp err(1, "pledge");
6292 0ebf8283 2019-07-24 stsp #endif
6293 0ebf8283 2019-07-24 stsp if (abort_edit && continue_edit)
6294 0ebf8283 2019-07-24 stsp usage_histedit();
6295 0ebf8283 2019-07-24 stsp if (argc != 0)
6296 0ebf8283 2019-07-24 stsp usage_histedit();
6297 0ebf8283 2019-07-24 stsp
6298 0ebf8283 2019-07-24 stsp /*
6299 0ebf8283 2019-07-24 stsp * This command cannot apply unveil(2) in all cases because the
6300 0ebf8283 2019-07-24 stsp * user may choose to run an editor to edit the histedit script
6301 0ebf8283 2019-07-24 stsp * and to edit individual commit log messages.
6302 0ebf8283 2019-07-24 stsp * unveil(2) traverses exec(2); if an editor is used we have to
6303 0ebf8283 2019-07-24 stsp * apply unveil after edit script and log messages have been written.
6304 0ebf8283 2019-07-24 stsp * XXX TODO: Make use of unveil(2) where possible.
6305 0ebf8283 2019-07-24 stsp */
6306 0ebf8283 2019-07-24 stsp
6307 0ebf8283 2019-07-24 stsp cwd = getcwd(NULL, 0);
6308 0ebf8283 2019-07-24 stsp if (cwd == NULL) {
6309 0ebf8283 2019-07-24 stsp error = got_error_from_errno("getcwd");
6310 0ebf8283 2019-07-24 stsp goto done;
6311 0ebf8283 2019-07-24 stsp }
6312 0ebf8283 2019-07-24 stsp error = got_worktree_open(&worktree, cwd);
6313 0ebf8283 2019-07-24 stsp if (error)
6314 0ebf8283 2019-07-24 stsp goto done;
6315 0ebf8283 2019-07-24 stsp
6316 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6317 c9956ddf 2019-09-08 stsp NULL);
6318 0ebf8283 2019-07-24 stsp if (error != NULL)
6319 0ebf8283 2019-07-24 stsp goto done;
6320 0ebf8283 2019-07-24 stsp
6321 0ebf8283 2019-07-24 stsp error = got_worktree_rebase_in_progress(&rebase_in_progress, worktree);
6322 0ebf8283 2019-07-24 stsp if (error)
6323 0ebf8283 2019-07-24 stsp goto done;
6324 0ebf8283 2019-07-24 stsp if (rebase_in_progress) {
6325 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_REBASING);
6326 0ebf8283 2019-07-24 stsp goto done;
6327 0ebf8283 2019-07-24 stsp }
6328 0ebf8283 2019-07-24 stsp
6329 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_in_progress(&edit_in_progress, worktree);
6330 0ebf8283 2019-07-24 stsp if (error)
6331 0ebf8283 2019-07-24 stsp goto done;
6332 0ebf8283 2019-07-24 stsp
6333 0ebf8283 2019-07-24 stsp if (edit_in_progress && abort_edit) {
6334 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
6335 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
6336 3e3a69f1 2019-07-25 stsp worktree, repo);
6337 0ebf8283 2019-07-24 stsp if (error)
6338 0ebf8283 2019-07-24 stsp goto done;
6339 0ebf8283 2019-07-24 stsp printf("Switching work tree to %s\n",
6340 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
6341 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_abort(worktree, fileindex, repo,
6342 0ebf8283 2019-07-24 stsp branch, base_commit_id, update_progress, &did_something);
6343 0ebf8283 2019-07-24 stsp if (error)
6344 0ebf8283 2019-07-24 stsp goto done;
6345 0ebf8283 2019-07-24 stsp printf("Histedit of %s aborted\n",
6346 0ebf8283 2019-07-24 stsp got_ref_get_symref_target(branch));
6347 0ebf8283 2019-07-24 stsp goto done; /* nothing else to do */
6348 0ebf8283 2019-07-24 stsp } else if (abort_edit) {
6349 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
6350 0ebf8283 2019-07-24 stsp goto done;
6351 0ebf8283 2019-07-24 stsp }
6352 0ebf8283 2019-07-24 stsp
6353 0ebf8283 2019-07-24 stsp if (continue_edit) {
6354 0ebf8283 2019-07-24 stsp char *path;
6355 0ebf8283 2019-07-24 stsp
6356 0ebf8283 2019-07-24 stsp if (!edit_in_progress) {
6357 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_NOT_HISTEDIT);
6358 0ebf8283 2019-07-24 stsp goto done;
6359 0ebf8283 2019-07-24 stsp }
6360 0ebf8283 2019-07-24 stsp
6361 c3022ba5 2019-07-27 stsp error = got_worktree_get_histedit_script_path(&path, worktree);
6362 0ebf8283 2019-07-24 stsp if (error)
6363 0ebf8283 2019-07-24 stsp goto done;
6364 0ebf8283 2019-07-24 stsp
6365 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds, path, repo);
6366 0ebf8283 2019-07-24 stsp free(path);
6367 0ebf8283 2019-07-24 stsp if (error)
6368 0ebf8283 2019-07-24 stsp goto done;
6369 0ebf8283 2019-07-24 stsp
6370 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_continue(&resume_commit_id,
6371 3e3a69f1 2019-07-25 stsp &tmp_branch, &branch, &base_commit_id, &fileindex,
6372 3e3a69f1 2019-07-25 stsp worktree, repo);
6373 0ebf8283 2019-07-24 stsp if (error)
6374 0ebf8283 2019-07-24 stsp goto done;
6375 0ebf8283 2019-07-24 stsp
6376 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
6377 0ebf8283 2019-07-24 stsp if (error)
6378 0ebf8283 2019-07-24 stsp goto done;
6379 0ebf8283 2019-07-24 stsp
6380 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
6381 0ebf8283 2019-07-24 stsp head_commit_id);
6382 0ebf8283 2019-07-24 stsp if (error)
6383 0ebf8283 2019-07-24 stsp goto done;
6384 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
6385 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
6386 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
6387 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
6388 3aac7cf7 2019-07-25 stsp goto done;
6389 3aac7cf7 2019-07-25 stsp }
6390 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
6391 8ca9bd68 2019-07-25 stsp base_commit_id, got_worktree_get_path_prefix(worktree),
6392 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
6393 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6394 0ebf8283 2019-07-24 stsp commit = NULL;
6395 0ebf8283 2019-07-24 stsp if (error)
6396 0ebf8283 2019-07-24 stsp goto done;
6397 0ebf8283 2019-07-24 stsp } else {
6398 0ebf8283 2019-07-24 stsp if (edit_in_progress) {
6399 0ebf8283 2019-07-24 stsp error = got_error(GOT_ERR_HISTEDIT_BUSY);
6400 0ebf8283 2019-07-24 stsp goto done;
6401 0ebf8283 2019-07-24 stsp }
6402 0ebf8283 2019-07-24 stsp
6403 0ebf8283 2019-07-24 stsp error = got_ref_open(&branch, repo,
6404 0ebf8283 2019-07-24 stsp got_worktree_get_head_ref_name(worktree), 0);
6405 0ebf8283 2019-07-24 stsp if (error != NULL)
6406 0ebf8283 2019-07-24 stsp goto done;
6407 0ebf8283 2019-07-24 stsp
6408 c7d20a3f 2019-07-30 stsp if (strncmp(got_ref_get_name(branch), "refs/heads/", 11) != 0) {
6409 c7d20a3f 2019-07-30 stsp error = got_error_msg(GOT_ERR_COMMIT_BRANCH,
6410 c7d20a3f 2019-07-30 stsp "will not edit commit history of a branch outside "
6411 c7d20a3f 2019-07-30 stsp "the \"refs/heads/\" reference namespace");
6412 c7d20a3f 2019-07-30 stsp goto done;
6413 c7d20a3f 2019-07-30 stsp }
6414 c7d20a3f 2019-07-30 stsp
6415 0ebf8283 2019-07-24 stsp error = got_ref_resolve(&head_commit_id, repo, branch);
6416 bfce7f83 2019-07-27 stsp got_ref_close(branch);
6417 bfce7f83 2019-07-27 stsp branch = NULL;
6418 0ebf8283 2019-07-24 stsp if (error)
6419 0ebf8283 2019-07-24 stsp goto done;
6420 0ebf8283 2019-07-24 stsp
6421 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
6422 0ebf8283 2019-07-24 stsp head_commit_id);
6423 0ebf8283 2019-07-24 stsp if (error)
6424 0ebf8283 2019-07-24 stsp goto done;
6425 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
6426 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
6427 3aac7cf7 2019-07-25 stsp if (pid == NULL) {
6428 3aac7cf7 2019-07-25 stsp error = got_error(GOT_ERR_EMPTY_HISTEDIT);
6429 3aac7cf7 2019-07-25 stsp goto done;
6430 3aac7cf7 2019-07-25 stsp }
6431 8ca9bd68 2019-07-25 stsp error = collect_commits(&commits, head_commit_id, pid->id,
6432 8ca9bd68 2019-07-25 stsp got_worktree_get_base_commit_id(worktree),
6433 8ca9bd68 2019-07-25 stsp got_worktree_get_path_prefix(worktree),
6434 8ca9bd68 2019-07-25 stsp GOT_ERR_HISTEDIT_PATH, repo);
6435 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6436 0ebf8283 2019-07-24 stsp commit = NULL;
6437 0ebf8283 2019-07-24 stsp if (error)
6438 0ebf8283 2019-07-24 stsp goto done;
6439 0ebf8283 2019-07-24 stsp
6440 bfce7f83 2019-07-27 stsp error = got_worktree_histedit_prepare(&tmp_branch, &branch,
6441 bfce7f83 2019-07-27 stsp &base_commit_id, &fileindex, worktree, repo);
6442 bfce7f83 2019-07-27 stsp if (error)
6443 bfce7f83 2019-07-27 stsp goto done;
6444 bfce7f83 2019-07-27 stsp
6445 0ebf8283 2019-07-24 stsp if (edit_script_path) {
6446 0ebf8283 2019-07-24 stsp error = histedit_load_list(&histedit_cmds,
6447 0ebf8283 2019-07-24 stsp edit_script_path, repo);
6448 6ba2bea2 2019-07-27 stsp if (error) {
6449 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
6450 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
6451 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
6452 0ebf8283 2019-07-24 stsp goto done;
6453 6ba2bea2 2019-07-27 stsp }
6454 0ebf8283 2019-07-24 stsp } else {
6455 0ebf8283 2019-07-24 stsp error = histedit_edit_script(&histedit_cmds, &commits,
6456 0ebf8283 2019-07-24 stsp repo);
6457 6ba2bea2 2019-07-27 stsp if (error) {
6458 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
6459 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
6460 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
6461 0ebf8283 2019-07-24 stsp goto done;
6462 6ba2bea2 2019-07-27 stsp }
6463 0ebf8283 2019-07-24 stsp
6464 0ebf8283 2019-07-24 stsp }
6465 0ebf8283 2019-07-24 stsp
6466 0ebf8283 2019-07-24 stsp error = histedit_save_list(&histedit_cmds, worktree,
6467 0ebf8283 2019-07-24 stsp repo);
6468 6ba2bea2 2019-07-27 stsp if (error) {
6469 6ba2bea2 2019-07-27 stsp got_worktree_histedit_abort(worktree, fileindex,
6470 6ba2bea2 2019-07-27 stsp repo, branch, base_commit_id,
6471 6ba2bea2 2019-07-27 stsp update_progress, &did_something);
6472 0ebf8283 2019-07-24 stsp goto done;
6473 6ba2bea2 2019-07-27 stsp }
6474 0ebf8283 2019-07-24 stsp
6475 0ebf8283 2019-07-24 stsp }
6476 0ebf8283 2019-07-24 stsp
6477 4ec14e60 2019-08-28 hiltjo error = histedit_check_script(&histedit_cmds, &commits, repo);
6478 4ec14e60 2019-08-28 hiltjo if (error)
6479 0ebf8283 2019-07-24 stsp goto done;
6480 0ebf8283 2019-07-24 stsp
6481 0ebf8283 2019-07-24 stsp TAILQ_FOREACH(hle, &histedit_cmds, entry) {
6482 0ebf8283 2019-07-24 stsp if (resume_commit_id) {
6483 0ebf8283 2019-07-24 stsp if (got_object_id_cmp(hle->commit_id,
6484 0ebf8283 2019-07-24 stsp resume_commit_id) != 0)
6485 0ebf8283 2019-07-24 stsp continue;
6486 0ebf8283 2019-07-24 stsp
6487 0ebf8283 2019-07-24 stsp resume_commit_id = NULL;
6488 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP ||
6489 0ebf8283 2019-07-24 stsp hle->cmd->code == GOT_HISTEDIT_FOLD) {
6490 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree,
6491 0ebf8283 2019-07-24 stsp repo);
6492 0ebf8283 2019-07-24 stsp } else {
6493 0ebf8283 2019-07-24 stsp error = histedit_commit(NULL, worktree,
6494 3e3a69f1 2019-07-25 stsp fileindex, tmp_branch, hle, repo);
6495 0ebf8283 2019-07-24 stsp }
6496 0ebf8283 2019-07-24 stsp if (error)
6497 0ebf8283 2019-07-24 stsp goto done;
6498 0ebf8283 2019-07-24 stsp continue;
6499 0ebf8283 2019-07-24 stsp }
6500 0ebf8283 2019-07-24 stsp
6501 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_DROP) {
6502 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
6503 0ebf8283 2019-07-24 stsp if (error)
6504 0ebf8283 2019-07-24 stsp goto done;
6505 0ebf8283 2019-07-24 stsp continue;
6506 0ebf8283 2019-07-24 stsp }
6507 0ebf8283 2019-07-24 stsp
6508 0ebf8283 2019-07-24 stsp error = got_object_open_as_commit(&commit, repo,
6509 0ebf8283 2019-07-24 stsp hle->commit_id);
6510 0ebf8283 2019-07-24 stsp if (error)
6511 0ebf8283 2019-07-24 stsp goto done;
6512 0ebf8283 2019-07-24 stsp parent_ids = got_object_commit_get_parent_ids(commit);
6513 0ebf8283 2019-07-24 stsp pid = SIMPLEQ_FIRST(parent_ids);
6514 0ebf8283 2019-07-24 stsp
6515 0ebf8283 2019-07-24 stsp error = got_worktree_histedit_merge_files(&merged_paths,
6516 3e3a69f1 2019-07-25 stsp worktree, fileindex, pid->id, hle->commit_id, repo,
6517 3e3a69f1 2019-07-25 stsp rebase_progress, &rebase_status, check_cancelled, NULL);
6518 0ebf8283 2019-07-24 stsp if (error)
6519 0ebf8283 2019-07-24 stsp goto done;
6520 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6521 0ebf8283 2019-07-24 stsp commit = NULL;
6522 0ebf8283 2019-07-24 stsp
6523 0ebf8283 2019-07-24 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
6524 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
6525 0ebf8283 2019-07-24 stsp break;
6526 0ebf8283 2019-07-24 stsp }
6527 0ebf8283 2019-07-24 stsp
6528 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_EDIT) {
6529 0ebf8283 2019-07-24 stsp char *id_str;
6530 0ebf8283 2019-07-24 stsp error = got_object_id_str(&id_str, hle->commit_id);
6531 0ebf8283 2019-07-24 stsp if (error)
6532 0ebf8283 2019-07-24 stsp goto done;
6533 0ebf8283 2019-07-24 stsp printf("Stopping histedit for amending commit %s\n",
6534 0ebf8283 2019-07-24 stsp id_str);
6535 0ebf8283 2019-07-24 stsp free(id_str);
6536 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
6537 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree,
6538 3e3a69f1 2019-07-25 stsp fileindex);
6539 0ebf8283 2019-07-24 stsp goto done;
6540 0ebf8283 2019-07-24 stsp }
6541 0ebf8283 2019-07-24 stsp
6542 0ebf8283 2019-07-24 stsp if (hle->cmd->code == GOT_HISTEDIT_FOLD) {
6543 0ebf8283 2019-07-24 stsp error = histedit_skip_commit(hle, worktree, repo);
6544 0ebf8283 2019-07-24 stsp if (error)
6545 0ebf8283 2019-07-24 stsp goto done;
6546 0ebf8283 2019-07-24 stsp continue;
6547 0ebf8283 2019-07-24 stsp }
6548 0ebf8283 2019-07-24 stsp
6549 3e3a69f1 2019-07-25 stsp error = histedit_commit(&merged_paths, worktree, fileindex,
6550 3e3a69f1 2019-07-25 stsp tmp_branch, hle, repo);
6551 0ebf8283 2019-07-24 stsp got_worktree_rebase_pathlist_free(&merged_paths);
6552 0ebf8283 2019-07-24 stsp if (error)
6553 0ebf8283 2019-07-24 stsp goto done;
6554 0ebf8283 2019-07-24 stsp }
6555 0ebf8283 2019-07-24 stsp
6556 0ebf8283 2019-07-24 stsp if (rebase_status == GOT_STATUS_CONFLICT) {
6557 3e3a69f1 2019-07-25 stsp error = got_worktree_histedit_postpone(worktree, fileindex);
6558 0ebf8283 2019-07-24 stsp if (error)
6559 0ebf8283 2019-07-24 stsp goto done;
6560 0ebf8283 2019-07-24 stsp error = got_error_msg(GOT_ERR_CONFLICTS,
6561 0ebf8283 2019-07-24 stsp "conflicts must be resolved before rebasing can continue");
6562 0ebf8283 2019-07-24 stsp } else
6563 3e3a69f1 2019-07-25 stsp error = histedit_complete(worktree, fileindex, tmp_branch,
6564 3e3a69f1 2019-07-25 stsp branch, repo);
6565 0ebf8283 2019-07-24 stsp done:
6566 0ebf8283 2019-07-24 stsp got_object_id_queue_free(&commits);
6567 bfce7f83 2019-07-27 stsp histedit_free_list(&histedit_cmds);
6568 0ebf8283 2019-07-24 stsp free(head_commit_id);
6569 0ebf8283 2019-07-24 stsp free(base_commit_id);
6570 0ebf8283 2019-07-24 stsp free(resume_commit_id);
6571 0ebf8283 2019-07-24 stsp if (commit)
6572 0ebf8283 2019-07-24 stsp got_object_commit_close(commit);
6573 0ebf8283 2019-07-24 stsp if (branch)
6574 0ebf8283 2019-07-24 stsp got_ref_close(branch);
6575 0ebf8283 2019-07-24 stsp if (tmp_branch)
6576 0ebf8283 2019-07-24 stsp got_ref_close(tmp_branch);
6577 0ebf8283 2019-07-24 stsp if (worktree)
6578 0ebf8283 2019-07-24 stsp got_worktree_close(worktree);
6579 2822a352 2019-10-15 stsp if (repo)
6580 2822a352 2019-10-15 stsp got_repo_close(repo);
6581 2822a352 2019-10-15 stsp return error;
6582 2822a352 2019-10-15 stsp }
6583 2822a352 2019-10-15 stsp
6584 2822a352 2019-10-15 stsp __dead static void
6585 2822a352 2019-10-15 stsp usage_integrate(void)
6586 2822a352 2019-10-15 stsp {
6587 2822a352 2019-10-15 stsp fprintf(stderr, "usage: %s integrate branch\n", getprogname());
6588 2822a352 2019-10-15 stsp exit(1);
6589 2822a352 2019-10-15 stsp }
6590 2822a352 2019-10-15 stsp
6591 2822a352 2019-10-15 stsp static const struct got_error *
6592 2822a352 2019-10-15 stsp cmd_integrate(int argc, char *argv[])
6593 2822a352 2019-10-15 stsp {
6594 2822a352 2019-10-15 stsp const struct got_error *error = NULL;
6595 2822a352 2019-10-15 stsp struct got_repository *repo = NULL;
6596 2822a352 2019-10-15 stsp struct got_worktree *worktree = NULL;
6597 2822a352 2019-10-15 stsp char *cwd = NULL, *refname = NULL, *base_refname = NULL;
6598 2822a352 2019-10-15 stsp const char *branch_arg = NULL;
6599 2822a352 2019-10-15 stsp struct got_reference *branch_ref = NULL, *base_branch_ref = NULL;
6600 2822a352 2019-10-15 stsp struct got_fileindex *fileindex = NULL;
6601 2822a352 2019-10-15 stsp struct got_object_id *commit_id = NULL, *base_commit_id = NULL;
6602 2822a352 2019-10-15 stsp int ch, did_something = 0;
6603 2822a352 2019-10-15 stsp
6604 2822a352 2019-10-15 stsp while ((ch = getopt(argc, argv, "")) != -1) {
6605 2822a352 2019-10-15 stsp switch (ch) {
6606 2822a352 2019-10-15 stsp default:
6607 2822a352 2019-10-15 stsp usage_integrate();
6608 2822a352 2019-10-15 stsp /* NOTREACHED */
6609 2822a352 2019-10-15 stsp }
6610 2822a352 2019-10-15 stsp }
6611 2822a352 2019-10-15 stsp
6612 2822a352 2019-10-15 stsp argc -= optind;
6613 2822a352 2019-10-15 stsp argv += optind;
6614 2822a352 2019-10-15 stsp
6615 2822a352 2019-10-15 stsp if (argc != 1)
6616 2822a352 2019-10-15 stsp usage_integrate();
6617 2822a352 2019-10-15 stsp branch_arg = argv[0];
6618 2822a352 2019-10-15 stsp
6619 2822a352 2019-10-15 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6620 2822a352 2019-10-15 stsp "unveil", NULL) == -1)
6621 2822a352 2019-10-15 stsp err(1, "pledge");
6622 2822a352 2019-10-15 stsp
6623 2822a352 2019-10-15 stsp cwd = getcwd(NULL, 0);
6624 2822a352 2019-10-15 stsp if (cwd == NULL) {
6625 2822a352 2019-10-15 stsp error = got_error_from_errno("getcwd");
6626 2822a352 2019-10-15 stsp goto done;
6627 2822a352 2019-10-15 stsp }
6628 2822a352 2019-10-15 stsp
6629 2822a352 2019-10-15 stsp error = got_worktree_open(&worktree, cwd);
6630 2822a352 2019-10-15 stsp if (error)
6631 2822a352 2019-10-15 stsp goto done;
6632 2822a352 2019-10-15 stsp
6633 2822a352 2019-10-15 stsp error = check_rebase_or_histedit_in_progress(worktree);
6634 2822a352 2019-10-15 stsp if (error)
6635 2822a352 2019-10-15 stsp goto done;
6636 2822a352 2019-10-15 stsp
6637 2822a352 2019-10-15 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6638 2822a352 2019-10-15 stsp NULL);
6639 2822a352 2019-10-15 stsp if (error != NULL)
6640 2822a352 2019-10-15 stsp goto done;
6641 2822a352 2019-10-15 stsp
6642 2822a352 2019-10-15 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6643 2822a352 2019-10-15 stsp got_worktree_get_root_path(worktree));
6644 2822a352 2019-10-15 stsp if (error)
6645 2822a352 2019-10-15 stsp goto done;
6646 2822a352 2019-10-15 stsp
6647 2822a352 2019-10-15 stsp if (asprintf(&refname, "refs/heads/%s", branch_arg) == -1) {
6648 2822a352 2019-10-15 stsp error = got_error_from_errno("asprintf");
6649 2822a352 2019-10-15 stsp goto done;
6650 2822a352 2019-10-15 stsp }
6651 2822a352 2019-10-15 stsp
6652 2822a352 2019-10-15 stsp error = got_worktree_integrate_prepare(&fileindex, &branch_ref,
6653 2822a352 2019-10-15 stsp &base_branch_ref, worktree, refname, repo);
6654 2822a352 2019-10-15 stsp if (error)
6655 2822a352 2019-10-15 stsp goto done;
6656 2822a352 2019-10-15 stsp
6657 2822a352 2019-10-15 stsp refname = strdup(got_ref_get_name(branch_ref));
6658 2822a352 2019-10-15 stsp if (refname == NULL) {
6659 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
6660 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
6661 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
6662 2822a352 2019-10-15 stsp goto done;
6663 2822a352 2019-10-15 stsp }
6664 2822a352 2019-10-15 stsp base_refname = strdup(got_ref_get_name(base_branch_ref));
6665 2822a352 2019-10-15 stsp if (base_refname == NULL) {
6666 2822a352 2019-10-15 stsp error = got_error_from_errno("strdup");
6667 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
6668 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
6669 2822a352 2019-10-15 stsp goto done;
6670 2822a352 2019-10-15 stsp }
6671 2822a352 2019-10-15 stsp
6672 2822a352 2019-10-15 stsp error = got_ref_resolve(&commit_id, repo, branch_ref);
6673 2822a352 2019-10-15 stsp if (error)
6674 2822a352 2019-10-15 stsp goto done;
6675 2822a352 2019-10-15 stsp
6676 2822a352 2019-10-15 stsp error = got_ref_resolve(&base_commit_id, repo, base_branch_ref);
6677 2822a352 2019-10-15 stsp if (error)
6678 2822a352 2019-10-15 stsp goto done;
6679 2822a352 2019-10-15 stsp
6680 2822a352 2019-10-15 stsp if (got_object_id_cmp(commit_id, base_commit_id) == 0) {
6681 2822a352 2019-10-15 stsp error = got_error_msg(GOT_ERR_SAME_BRANCH,
6682 2822a352 2019-10-15 stsp "specified branch has already been integrated");
6683 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
6684 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
6685 2822a352 2019-10-15 stsp goto done;
6686 2822a352 2019-10-15 stsp }
6687 2822a352 2019-10-15 stsp
6688 3aef623b 2019-10-15 stsp error = check_linear_ancestry(commit_id, base_commit_id, 1, repo);
6689 2822a352 2019-10-15 stsp if (error) {
6690 2822a352 2019-10-15 stsp if (error->code == GOT_ERR_ANCESTRY)
6691 2822a352 2019-10-15 stsp error = got_error(GOT_ERR_REBASE_REQUIRED);
6692 2822a352 2019-10-15 stsp got_worktree_integrate_abort(worktree, fileindex, repo,
6693 2822a352 2019-10-15 stsp branch_ref, base_branch_ref);
6694 2822a352 2019-10-15 stsp goto done;
6695 2822a352 2019-10-15 stsp }
6696 2822a352 2019-10-15 stsp
6697 2822a352 2019-10-15 stsp error = got_worktree_integrate_continue(worktree, fileindex, repo,
6698 2822a352 2019-10-15 stsp branch_ref, base_branch_ref, update_progress, &did_something,
6699 2822a352 2019-10-15 stsp check_cancelled, NULL);
6700 2822a352 2019-10-15 stsp if (error)
6701 2822a352 2019-10-15 stsp goto done;
6702 2822a352 2019-10-15 stsp
6703 2822a352 2019-10-15 stsp printf("Integrated %s into %s\n", refname, base_refname);
6704 2822a352 2019-10-15 stsp done:
6705 715dc77e 2019-08-03 stsp if (repo)
6706 715dc77e 2019-08-03 stsp got_repo_close(repo);
6707 2822a352 2019-10-15 stsp if (worktree)
6708 2822a352 2019-10-15 stsp got_worktree_close(worktree);
6709 2822a352 2019-10-15 stsp free(cwd);
6710 2822a352 2019-10-15 stsp free(base_commit_id);
6711 2822a352 2019-10-15 stsp free(commit_id);
6712 2822a352 2019-10-15 stsp free(refname);
6713 2822a352 2019-10-15 stsp free(base_refname);
6714 715dc77e 2019-08-03 stsp return error;
6715 715dc77e 2019-08-03 stsp }
6716 715dc77e 2019-08-03 stsp
6717 715dc77e 2019-08-03 stsp __dead static void
6718 715dc77e 2019-08-03 stsp usage_stage(void)
6719 715dc77e 2019-08-03 stsp {
6720 f3055044 2019-08-07 stsp fprintf(stderr, "usage: %s stage [-l] | [-p] [-F response-script] "
6721 f3055044 2019-08-07 stsp "[file-path ...]\n",
6722 715dc77e 2019-08-03 stsp getprogname());
6723 715dc77e 2019-08-03 stsp exit(1);
6724 715dc77e 2019-08-03 stsp }
6725 715dc77e 2019-08-03 stsp
6726 715dc77e 2019-08-03 stsp static const struct got_error *
6727 408b4ebc 2019-08-03 stsp print_stage(void *arg, unsigned char status, unsigned char staged_status,
6728 408b4ebc 2019-08-03 stsp const char *path, struct got_object_id *blob_id,
6729 408b4ebc 2019-08-03 stsp struct got_object_id *staged_blob_id, struct got_object_id *commit_id)
6730 408b4ebc 2019-08-03 stsp {
6731 408b4ebc 2019-08-03 stsp const struct got_error *err = NULL;
6732 408b4ebc 2019-08-03 stsp char *id_str = NULL;
6733 408b4ebc 2019-08-03 stsp
6734 408b4ebc 2019-08-03 stsp if (staged_status != GOT_STATUS_ADD &&
6735 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_MODIFY &&
6736 408b4ebc 2019-08-03 stsp staged_status != GOT_STATUS_DELETE)
6737 408b4ebc 2019-08-03 stsp return NULL;
6738 408b4ebc 2019-08-03 stsp
6739 408b4ebc 2019-08-03 stsp if (staged_status == GOT_STATUS_ADD ||
6740 408b4ebc 2019-08-03 stsp staged_status == GOT_STATUS_MODIFY)
6741 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, staged_blob_id);
6742 408b4ebc 2019-08-03 stsp else
6743 408b4ebc 2019-08-03 stsp err = got_object_id_str(&id_str, blob_id);
6744 408b4ebc 2019-08-03 stsp if (err)
6745 408b4ebc 2019-08-03 stsp return err;
6746 408b4ebc 2019-08-03 stsp
6747 408b4ebc 2019-08-03 stsp printf("%s %c %s\n", id_str, staged_status, path);
6748 408b4ebc 2019-08-03 stsp free(id_str);
6749 dc424a06 2019-08-07 stsp return NULL;
6750 dc424a06 2019-08-07 stsp }
6751 2e1f37b0 2019-08-08 stsp
6752 dc424a06 2019-08-07 stsp static const struct got_error *
6753 715dc77e 2019-08-03 stsp cmd_stage(int argc, char *argv[])
6754 715dc77e 2019-08-03 stsp {
6755 715dc77e 2019-08-03 stsp const struct got_error *error = NULL;
6756 715dc77e 2019-08-03 stsp struct got_repository *repo = NULL;
6757 715dc77e 2019-08-03 stsp struct got_worktree *worktree = NULL;
6758 715dc77e 2019-08-03 stsp char *cwd = NULL;
6759 715dc77e 2019-08-03 stsp struct got_pathlist_head paths;
6760 715dc77e 2019-08-03 stsp struct got_pathlist_entry *pe;
6761 dc424a06 2019-08-07 stsp int ch, list_stage = 0, pflag = 0;
6762 dc424a06 2019-08-07 stsp FILE *patch_script_file = NULL;
6763 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
6764 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
6765 715dc77e 2019-08-03 stsp
6766 715dc77e 2019-08-03 stsp TAILQ_INIT(&paths);
6767 715dc77e 2019-08-03 stsp
6768 dc424a06 2019-08-07 stsp while ((ch = getopt(argc, argv, "lpF:")) != -1) {
6769 715dc77e 2019-08-03 stsp switch (ch) {
6770 408b4ebc 2019-08-03 stsp case 'l':
6771 408b4ebc 2019-08-03 stsp list_stage = 1;
6772 408b4ebc 2019-08-03 stsp break;
6773 dc424a06 2019-08-07 stsp case 'p':
6774 dc424a06 2019-08-07 stsp pflag = 1;
6775 dc424a06 2019-08-07 stsp break;
6776 dc424a06 2019-08-07 stsp case 'F':
6777 dc424a06 2019-08-07 stsp patch_script_path = optarg;
6778 dc424a06 2019-08-07 stsp break;
6779 715dc77e 2019-08-03 stsp default:
6780 715dc77e 2019-08-03 stsp usage_stage();
6781 715dc77e 2019-08-03 stsp /* NOTREACHED */
6782 715dc77e 2019-08-03 stsp }
6783 715dc77e 2019-08-03 stsp }
6784 715dc77e 2019-08-03 stsp
6785 715dc77e 2019-08-03 stsp argc -= optind;
6786 715dc77e 2019-08-03 stsp argv += optind;
6787 715dc77e 2019-08-03 stsp
6788 715dc77e 2019-08-03 stsp #ifndef PROFILE
6789 715dc77e 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6790 715dc77e 2019-08-03 stsp "unveil", NULL) == -1)
6791 715dc77e 2019-08-03 stsp err(1, "pledge");
6792 715dc77e 2019-08-03 stsp #endif
6793 2db2652d 2019-08-07 stsp if (list_stage && (pflag || patch_script_path))
6794 2db2652d 2019-08-07 stsp errx(1, "-l option cannot be used with other options");
6795 dc424a06 2019-08-07 stsp if (patch_script_path && !pflag)
6796 dc424a06 2019-08-07 stsp errx(1, "-F option can only be used together with -p option");
6797 715dc77e 2019-08-03 stsp
6798 715dc77e 2019-08-03 stsp cwd = getcwd(NULL, 0);
6799 715dc77e 2019-08-03 stsp if (cwd == NULL) {
6800 715dc77e 2019-08-03 stsp error = got_error_from_errno("getcwd");
6801 715dc77e 2019-08-03 stsp goto done;
6802 715dc77e 2019-08-03 stsp }
6803 715dc77e 2019-08-03 stsp
6804 715dc77e 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
6805 715dc77e 2019-08-03 stsp if (error)
6806 715dc77e 2019-08-03 stsp goto done;
6807 715dc77e 2019-08-03 stsp
6808 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6809 c9956ddf 2019-09-08 stsp NULL);
6810 715dc77e 2019-08-03 stsp if (error != NULL)
6811 715dc77e 2019-08-03 stsp goto done;
6812 715dc77e 2019-08-03 stsp
6813 dc424a06 2019-08-07 stsp if (patch_script_path) {
6814 dc424a06 2019-08-07 stsp patch_script_file = fopen(patch_script_path, "r");
6815 dc424a06 2019-08-07 stsp if (patch_script_file == NULL) {
6816 dc424a06 2019-08-07 stsp error = got_error_from_errno2("fopen",
6817 dc424a06 2019-08-07 stsp patch_script_path);
6818 dc424a06 2019-08-07 stsp goto done;
6819 dc424a06 2019-08-07 stsp }
6820 dc424a06 2019-08-07 stsp }
6821 9fd7cd22 2019-08-30 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6822 715dc77e 2019-08-03 stsp got_worktree_get_root_path(worktree));
6823 715dc77e 2019-08-03 stsp if (error)
6824 715dc77e 2019-08-03 stsp goto done;
6825 715dc77e 2019-08-03 stsp
6826 6d022e97 2019-08-04 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6827 6d022e97 2019-08-04 stsp if (error)
6828 6d022e97 2019-08-04 stsp goto done;
6829 715dc77e 2019-08-03 stsp
6830 6d022e97 2019-08-04 stsp if (list_stage)
6831 408b4ebc 2019-08-03 stsp error = got_worktree_status(worktree, &paths, repo,
6832 408b4ebc 2019-08-03 stsp print_stage, NULL, check_cancelled, NULL);
6833 2e1f37b0 2019-08-08 stsp else {
6834 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
6835 2e1f37b0 2019-08-08 stsp cpa.action = "stage";
6836 dc424a06 2019-08-07 stsp error = got_worktree_stage(worktree, &paths,
6837 dc424a06 2019-08-07 stsp pflag ? NULL : print_status, NULL,
6838 2e1f37b0 2019-08-08 stsp pflag ? choose_patch : NULL, &cpa, repo);
6839 2e1f37b0 2019-08-08 stsp }
6840 ad493afc 2019-08-03 stsp done:
6841 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
6842 2e1f37b0 2019-08-08 stsp error == NULL)
6843 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
6844 ad493afc 2019-08-03 stsp if (repo)
6845 ad493afc 2019-08-03 stsp got_repo_close(repo);
6846 ad493afc 2019-08-03 stsp if (worktree)
6847 ad493afc 2019-08-03 stsp got_worktree_close(worktree);
6848 ad493afc 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
6849 ad493afc 2019-08-03 stsp free((char *)pe->path);
6850 ad493afc 2019-08-03 stsp got_pathlist_free(&paths);
6851 ad493afc 2019-08-03 stsp free(cwd);
6852 ad493afc 2019-08-03 stsp return error;
6853 ad493afc 2019-08-03 stsp }
6854 ad493afc 2019-08-03 stsp
6855 ad493afc 2019-08-03 stsp __dead static void
6856 ad493afc 2019-08-03 stsp usage_unstage(void)
6857 ad493afc 2019-08-03 stsp {
6858 2e1f37b0 2019-08-08 stsp fprintf(stderr, "usage: %s unstage [-p] [-F response-script] "
6859 2e1f37b0 2019-08-08 stsp "[file-path ...]\n",
6860 ad493afc 2019-08-03 stsp getprogname());
6861 ad493afc 2019-08-03 stsp exit(1);
6862 ad493afc 2019-08-03 stsp }
6863 ad493afc 2019-08-03 stsp
6864 ad493afc 2019-08-03 stsp
6865 ad493afc 2019-08-03 stsp static const struct got_error *
6866 ad493afc 2019-08-03 stsp cmd_unstage(int argc, char *argv[])
6867 ad493afc 2019-08-03 stsp {
6868 ad493afc 2019-08-03 stsp const struct got_error *error = NULL;
6869 ad493afc 2019-08-03 stsp struct got_repository *repo = NULL;
6870 ad493afc 2019-08-03 stsp struct got_worktree *worktree = NULL;
6871 ad493afc 2019-08-03 stsp char *cwd = NULL;
6872 ad493afc 2019-08-03 stsp struct got_pathlist_head paths;
6873 ad493afc 2019-08-03 stsp struct got_pathlist_entry *pe;
6874 2e1f37b0 2019-08-08 stsp int ch, did_something = 0, pflag = 0;
6875 2e1f37b0 2019-08-08 stsp FILE *patch_script_file = NULL;
6876 2e1f37b0 2019-08-08 stsp const char *patch_script_path = NULL;
6877 2e1f37b0 2019-08-08 stsp struct choose_patch_arg cpa;
6878 ad493afc 2019-08-03 stsp
6879 ad493afc 2019-08-03 stsp TAILQ_INIT(&paths);
6880 ad493afc 2019-08-03 stsp
6881 2e1f37b0 2019-08-08 stsp while ((ch = getopt(argc, argv, "pF:")) != -1) {
6882 ad493afc 2019-08-03 stsp switch (ch) {
6883 2e1f37b0 2019-08-08 stsp case 'p':
6884 2e1f37b0 2019-08-08 stsp pflag = 1;
6885 2e1f37b0 2019-08-08 stsp break;
6886 2e1f37b0 2019-08-08 stsp case 'F':
6887 2e1f37b0 2019-08-08 stsp patch_script_path = optarg;
6888 2e1f37b0 2019-08-08 stsp break;
6889 ad493afc 2019-08-03 stsp default:
6890 ad493afc 2019-08-03 stsp usage_unstage();
6891 ad493afc 2019-08-03 stsp /* NOTREACHED */
6892 ad493afc 2019-08-03 stsp }
6893 ad493afc 2019-08-03 stsp }
6894 ad493afc 2019-08-03 stsp
6895 ad493afc 2019-08-03 stsp argc -= optind;
6896 ad493afc 2019-08-03 stsp argv += optind;
6897 ad493afc 2019-08-03 stsp
6898 ad493afc 2019-08-03 stsp #ifndef PROFILE
6899 ad493afc 2019-08-03 stsp if (pledge("stdio rpath wpath cpath fattr flock proc exec sendfd "
6900 ad493afc 2019-08-03 stsp "unveil", NULL) == -1)
6901 ad493afc 2019-08-03 stsp err(1, "pledge");
6902 ad493afc 2019-08-03 stsp #endif
6903 2e1f37b0 2019-08-08 stsp if (patch_script_path && !pflag)
6904 2e1f37b0 2019-08-08 stsp errx(1, "-F option can only be used together with -p option");
6905 2e1f37b0 2019-08-08 stsp
6906 ad493afc 2019-08-03 stsp cwd = getcwd(NULL, 0);
6907 ad493afc 2019-08-03 stsp if (cwd == NULL) {
6908 ad493afc 2019-08-03 stsp error = got_error_from_errno("getcwd");
6909 ad493afc 2019-08-03 stsp goto done;
6910 ad493afc 2019-08-03 stsp }
6911 ad493afc 2019-08-03 stsp
6912 ad493afc 2019-08-03 stsp error = got_worktree_open(&worktree, cwd);
6913 ad493afc 2019-08-03 stsp if (error)
6914 ad493afc 2019-08-03 stsp goto done;
6915 ad493afc 2019-08-03 stsp
6916 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, got_worktree_get_repo_path(worktree),
6917 c9956ddf 2019-09-08 stsp NULL);
6918 ad493afc 2019-08-03 stsp if (error != NULL)
6919 ad493afc 2019-08-03 stsp goto done;
6920 ad493afc 2019-08-03 stsp
6921 2e1f37b0 2019-08-08 stsp if (patch_script_path) {
6922 2e1f37b0 2019-08-08 stsp patch_script_file = fopen(patch_script_path, "r");
6923 2e1f37b0 2019-08-08 stsp if (patch_script_file == NULL) {
6924 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fopen",
6925 2e1f37b0 2019-08-08 stsp patch_script_path);
6926 2e1f37b0 2019-08-08 stsp goto done;
6927 2e1f37b0 2019-08-08 stsp }
6928 2e1f37b0 2019-08-08 stsp }
6929 2e1f37b0 2019-08-08 stsp
6930 00f36e47 2019-09-06 stsp error = apply_unveil(got_repo_get_path(repo), 0,
6931 ad493afc 2019-08-03 stsp got_worktree_get_root_path(worktree));
6932 ad493afc 2019-08-03 stsp if (error)
6933 ad493afc 2019-08-03 stsp goto done;
6934 ad493afc 2019-08-03 stsp
6935 ad493afc 2019-08-03 stsp error = get_worktree_paths_from_argv(&paths, argc, argv, worktree);
6936 ad493afc 2019-08-03 stsp if (error)
6937 ad493afc 2019-08-03 stsp goto done;
6938 ad493afc 2019-08-03 stsp
6939 2e1f37b0 2019-08-08 stsp cpa.patch_script_file = patch_script_file;
6940 2e1f37b0 2019-08-08 stsp cpa.action = "unstage";
6941 ad493afc 2019-08-03 stsp error = got_worktree_unstage(worktree, &paths, update_progress,
6942 2e1f37b0 2019-08-08 stsp &did_something, pflag ? choose_patch : NULL, &cpa, repo);
6943 715dc77e 2019-08-03 stsp done:
6944 2e1f37b0 2019-08-08 stsp if (patch_script_file && fclose(patch_script_file) == EOF &&
6945 2e1f37b0 2019-08-08 stsp error == NULL)
6946 2e1f37b0 2019-08-08 stsp error = got_error_from_errno2("fclose", patch_script_path);
6947 0ebf8283 2019-07-24 stsp if (repo)
6948 0ebf8283 2019-07-24 stsp got_repo_close(repo);
6949 715dc77e 2019-08-03 stsp if (worktree)
6950 715dc77e 2019-08-03 stsp got_worktree_close(worktree);
6951 715dc77e 2019-08-03 stsp TAILQ_FOREACH(pe, &paths, entry)
6952 715dc77e 2019-08-03 stsp free((char *)pe->path);
6953 715dc77e 2019-08-03 stsp got_pathlist_free(&paths);
6954 715dc77e 2019-08-03 stsp free(cwd);
6955 01073a5d 2019-08-22 stsp return error;
6956 01073a5d 2019-08-22 stsp }
6957 01073a5d 2019-08-22 stsp
6958 01073a5d 2019-08-22 stsp __dead static void
6959 01073a5d 2019-08-22 stsp usage_cat(void)
6960 01073a5d 2019-08-22 stsp {
6961 896e9b6f 2019-08-26 stsp fprintf(stderr, "usage: %s cat [-r repository ] [ -c commit ] [ -P ] "
6962 896e9b6f 2019-08-26 stsp "arg1 [arg2 ...]\n", getprogname());
6963 01073a5d 2019-08-22 stsp exit(1);
6964 01073a5d 2019-08-22 stsp }
6965 01073a5d 2019-08-22 stsp
6966 01073a5d 2019-08-22 stsp static const struct got_error *
6967 01073a5d 2019-08-22 stsp cat_blob(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
6968 01073a5d 2019-08-22 stsp {
6969 01073a5d 2019-08-22 stsp const struct got_error *err;
6970 01073a5d 2019-08-22 stsp struct got_blob_object *blob;
6971 01073a5d 2019-08-22 stsp
6972 01073a5d 2019-08-22 stsp err = got_object_open_as_blob(&blob, repo, id, 8192);
6973 01073a5d 2019-08-22 stsp if (err)
6974 01073a5d 2019-08-22 stsp return err;
6975 01073a5d 2019-08-22 stsp
6976 01073a5d 2019-08-22 stsp err = got_object_blob_dump_to_file(NULL, NULL, NULL, outfile, blob);
6977 01073a5d 2019-08-22 stsp got_object_blob_close(blob);
6978 01073a5d 2019-08-22 stsp return err;
6979 01073a5d 2019-08-22 stsp }
6980 01073a5d 2019-08-22 stsp
6981 01073a5d 2019-08-22 stsp static const struct got_error *
6982 01073a5d 2019-08-22 stsp cat_tree(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
6983 01073a5d 2019-08-22 stsp {
6984 01073a5d 2019-08-22 stsp const struct got_error *err;
6985 01073a5d 2019-08-22 stsp struct got_tree_object *tree;
6986 56e0773d 2019-11-28 stsp int nentries, i;
6987 01073a5d 2019-08-22 stsp
6988 01073a5d 2019-08-22 stsp err = got_object_open_as_tree(&tree, repo, id);
6989 01073a5d 2019-08-22 stsp if (err)
6990 01073a5d 2019-08-22 stsp return err;
6991 01073a5d 2019-08-22 stsp
6992 56e0773d 2019-11-28 stsp nentries = got_object_tree_get_nentries(tree);
6993 56e0773d 2019-11-28 stsp for (i = 0; i < nentries; i++) {
6994 56e0773d 2019-11-28 stsp struct got_tree_entry *te;
6995 01073a5d 2019-08-22 stsp char *id_str;
6996 01073a5d 2019-08-22 stsp if (sigint_received || sigpipe_received)
6997 01073a5d 2019-08-22 stsp break;
6998 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, i);
6999 56e0773d 2019-11-28 stsp err = got_object_id_str(&id_str, got_tree_entry_get_id(te));
7000 01073a5d 2019-08-22 stsp if (err)
7001 01073a5d 2019-08-22 stsp break;
7002 56e0773d 2019-11-28 stsp fprintf(outfile, "%s %.7o %s\n", id_str,
7003 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(te),
7004 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te));
7005 01073a5d 2019-08-22 stsp free(id_str);
7006 01073a5d 2019-08-22 stsp }
7007 01073a5d 2019-08-22 stsp
7008 01073a5d 2019-08-22 stsp got_object_tree_close(tree);
7009 01073a5d 2019-08-22 stsp return err;
7010 01073a5d 2019-08-22 stsp }
7011 01073a5d 2019-08-22 stsp
7012 01073a5d 2019-08-22 stsp static const struct got_error *
7013 01073a5d 2019-08-22 stsp cat_commit(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7014 01073a5d 2019-08-22 stsp {
7015 01073a5d 2019-08-22 stsp const struct got_error *err;
7016 01073a5d 2019-08-22 stsp struct got_commit_object *commit;
7017 01073a5d 2019-08-22 stsp const struct got_object_id_queue *parent_ids;
7018 01073a5d 2019-08-22 stsp struct got_object_qid *pid;
7019 01073a5d 2019-08-22 stsp char *id_str = NULL;
7020 24ea5512 2019-08-22 stsp const char *logmsg = NULL;
7021 01073a5d 2019-08-22 stsp
7022 01073a5d 2019-08-22 stsp err = got_object_open_as_commit(&commit, repo, id);
7023 01073a5d 2019-08-22 stsp if (err)
7024 01073a5d 2019-08-22 stsp return err;
7025 01073a5d 2019-08-22 stsp
7026 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_commit_get_tree_id(commit));
7027 01073a5d 2019-08-22 stsp if (err)
7028 01073a5d 2019-08-22 stsp goto done;
7029 01073a5d 2019-08-22 stsp
7030 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_TREE, id_str);
7031 01073a5d 2019-08-22 stsp parent_ids = got_object_commit_get_parent_ids(commit);
7032 8aa93786 2019-08-22 stsp fprintf(outfile, "numparents %d\n",
7033 01073a5d 2019-08-22 stsp got_object_commit_get_nparents(commit));
7034 01073a5d 2019-08-22 stsp SIMPLEQ_FOREACH(pid, parent_ids, entry) {
7035 01073a5d 2019-08-22 stsp char *pid_str;
7036 01073a5d 2019-08-22 stsp err = got_object_id_str(&pid_str, pid->id);
7037 01073a5d 2019-08-22 stsp if (err)
7038 01073a5d 2019-08-22 stsp goto done;
7039 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_COMMIT_LABEL_PARENT, pid_str);
7040 01073a5d 2019-08-22 stsp free(pid_str);
7041 01073a5d 2019-08-22 stsp }
7042 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_AUTHOR,
7043 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
7044 01073a5d 2019-08-22 stsp got_object_commit_get_author_time(commit));
7045 01073a5d 2019-08-22 stsp
7046 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_COMMIT_LABEL_COMMITTER,
7047 8aa93786 2019-08-22 stsp got_object_commit_get_author(commit),
7048 01073a5d 2019-08-22 stsp got_object_commit_get_committer_time(commit));
7049 01073a5d 2019-08-22 stsp
7050 24ea5512 2019-08-22 stsp logmsg = got_object_commit_get_logmsg_raw(commit);
7051 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(logmsg));
7052 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", logmsg);
7053 01073a5d 2019-08-22 stsp done:
7054 01073a5d 2019-08-22 stsp free(id_str);
7055 01073a5d 2019-08-22 stsp got_object_commit_close(commit);
7056 01073a5d 2019-08-22 stsp return err;
7057 01073a5d 2019-08-22 stsp }
7058 01073a5d 2019-08-22 stsp
7059 01073a5d 2019-08-22 stsp static const struct got_error *
7060 01073a5d 2019-08-22 stsp cat_tag(struct got_object_id *id, struct got_repository *repo, FILE *outfile)
7061 01073a5d 2019-08-22 stsp {
7062 01073a5d 2019-08-22 stsp const struct got_error *err;
7063 01073a5d 2019-08-22 stsp struct got_tag_object *tag;
7064 01073a5d 2019-08-22 stsp char *id_str = NULL;
7065 01073a5d 2019-08-22 stsp const char *tagmsg = NULL;
7066 01073a5d 2019-08-22 stsp
7067 01073a5d 2019-08-22 stsp err = got_object_open_as_tag(&tag, repo, id);
7068 01073a5d 2019-08-22 stsp if (err)
7069 01073a5d 2019-08-22 stsp return err;
7070 01073a5d 2019-08-22 stsp
7071 01073a5d 2019-08-22 stsp err = got_object_id_str(&id_str, got_object_tag_get_object_id(tag));
7072 01073a5d 2019-08-22 stsp if (err)
7073 01073a5d 2019-08-22 stsp goto done;
7074 01073a5d 2019-08-22 stsp
7075 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_OBJECT, id_str);
7076 e15d5241 2019-08-22 stsp
7077 01073a5d 2019-08-22 stsp switch (got_object_tag_get_object_type(tag)) {
7078 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
7079 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7080 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_BLOB);
7081 01073a5d 2019-08-22 stsp break;
7082 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
7083 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7084 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TREE);
7085 01073a5d 2019-08-22 stsp break;
7086 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
7087 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7088 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_COMMIT);
7089 01073a5d 2019-08-22 stsp break;
7090 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
7091 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TYPE,
7092 8aa93786 2019-08-22 stsp GOT_OBJ_LABEL_TAG);
7093 01073a5d 2019-08-22 stsp break;
7094 01073a5d 2019-08-22 stsp default:
7095 01073a5d 2019-08-22 stsp break;
7096 01073a5d 2019-08-22 stsp }
7097 01073a5d 2019-08-22 stsp
7098 e15d5241 2019-08-22 stsp fprintf(outfile, "%s%s\n", GOT_TAG_LABEL_TAG,
7099 e15d5241 2019-08-22 stsp got_object_tag_get_name(tag));
7100 e15d5241 2019-08-22 stsp
7101 8aa93786 2019-08-22 stsp fprintf(outfile, "%s%s %lld +0000\n", GOT_TAG_LABEL_TAGGER,
7102 8aa93786 2019-08-22 stsp got_object_tag_get_tagger(tag),
7103 8aa93786 2019-08-22 stsp got_object_tag_get_tagger_time(tag));
7104 01073a5d 2019-08-22 stsp
7105 01073a5d 2019-08-22 stsp tagmsg = got_object_tag_get_message(tag);
7106 8aa93786 2019-08-22 stsp fprintf(outfile, "messagelen %zd\n", strlen(tagmsg));
7107 01073a5d 2019-08-22 stsp fprintf(outfile, "%s", tagmsg);
7108 01073a5d 2019-08-22 stsp done:
7109 01073a5d 2019-08-22 stsp free(id_str);
7110 01073a5d 2019-08-22 stsp got_object_tag_close(tag);
7111 01073a5d 2019-08-22 stsp return err;
7112 01073a5d 2019-08-22 stsp }
7113 01073a5d 2019-08-22 stsp
7114 01073a5d 2019-08-22 stsp static const struct got_error *
7115 01073a5d 2019-08-22 stsp cmd_cat(int argc, char *argv[])
7116 01073a5d 2019-08-22 stsp {
7117 01073a5d 2019-08-22 stsp const struct got_error *error;
7118 01073a5d 2019-08-22 stsp struct got_repository *repo = NULL;
7119 01073a5d 2019-08-22 stsp struct got_worktree *worktree = NULL;
7120 01073a5d 2019-08-22 stsp char *cwd = NULL, *repo_path = NULL, *label = NULL;
7121 896e9b6f 2019-08-26 stsp const char *commit_id_str = NULL;
7122 896e9b6f 2019-08-26 stsp struct got_object_id *id = NULL, *commit_id = NULL;
7123 896e9b6f 2019-08-26 stsp int ch, obj_type, i, force_path = 0;
7124 01073a5d 2019-08-22 stsp
7125 01073a5d 2019-08-22 stsp #ifndef PROFILE
7126 01073a5d 2019-08-22 stsp if (pledge("stdio rpath wpath cpath flock proc exec sendfd unveil",
7127 01073a5d 2019-08-22 stsp NULL) == -1)
7128 01073a5d 2019-08-22 stsp err(1, "pledge");
7129 01073a5d 2019-08-22 stsp #endif
7130 01073a5d 2019-08-22 stsp
7131 896e9b6f 2019-08-26 stsp while ((ch = getopt(argc, argv, "c:r:P")) != -1) {
7132 01073a5d 2019-08-22 stsp switch (ch) {
7133 896e9b6f 2019-08-26 stsp case 'c':
7134 896e9b6f 2019-08-26 stsp commit_id_str = optarg;
7135 896e9b6f 2019-08-26 stsp break;
7136 01073a5d 2019-08-22 stsp case 'r':
7137 01073a5d 2019-08-22 stsp repo_path = realpath(optarg, NULL);
7138 01073a5d 2019-08-22 stsp if (repo_path == NULL)
7139 9ba1d308 2019-10-21 stsp return got_error_from_errno2("realpath",
7140 9ba1d308 2019-10-21 stsp optarg);
7141 01073a5d 2019-08-22 stsp got_path_strip_trailing_slashes(repo_path);
7142 01073a5d 2019-08-22 stsp break;
7143 896e9b6f 2019-08-26 stsp case 'P':
7144 896e9b6f 2019-08-26 stsp force_path = 1;
7145 896e9b6f 2019-08-26 stsp break;
7146 01073a5d 2019-08-22 stsp default:
7147 01073a5d 2019-08-22 stsp usage_cat();
7148 01073a5d 2019-08-22 stsp /* NOTREACHED */
7149 01073a5d 2019-08-22 stsp }
7150 01073a5d 2019-08-22 stsp }
7151 01073a5d 2019-08-22 stsp
7152 01073a5d 2019-08-22 stsp argc -= optind;
7153 01073a5d 2019-08-22 stsp argv += optind;
7154 01073a5d 2019-08-22 stsp
7155 01073a5d 2019-08-22 stsp cwd = getcwd(NULL, 0);
7156 01073a5d 2019-08-22 stsp if (cwd == NULL) {
7157 01073a5d 2019-08-22 stsp error = got_error_from_errno("getcwd");
7158 01073a5d 2019-08-22 stsp goto done;
7159 01073a5d 2019-08-22 stsp }
7160 01073a5d 2019-08-22 stsp error = got_worktree_open(&worktree, cwd);
7161 01073a5d 2019-08-22 stsp if (error && error->code != GOT_ERR_NOT_WORKTREE)
7162 01073a5d 2019-08-22 stsp goto done;
7163 01073a5d 2019-08-22 stsp if (worktree) {
7164 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
7165 01073a5d 2019-08-22 stsp repo_path = strdup(
7166 01073a5d 2019-08-22 stsp got_worktree_get_repo_path(worktree));
7167 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
7168 01073a5d 2019-08-22 stsp error = got_error_from_errno("strdup");
7169 01073a5d 2019-08-22 stsp goto done;
7170 01073a5d 2019-08-22 stsp }
7171 01073a5d 2019-08-22 stsp }
7172 01073a5d 2019-08-22 stsp }
7173 01073a5d 2019-08-22 stsp
7174 01073a5d 2019-08-22 stsp if (repo_path == NULL) {
7175 01073a5d 2019-08-22 stsp repo_path = getcwd(NULL, 0);
7176 01073a5d 2019-08-22 stsp if (repo_path == NULL)
7177 01073a5d 2019-08-22 stsp return got_error_from_errno("getcwd");
7178 01073a5d 2019-08-22 stsp }
7179 01073a5d 2019-08-22 stsp
7180 c9956ddf 2019-09-08 stsp error = got_repo_open(&repo, repo_path, NULL);
7181 01073a5d 2019-08-22 stsp free(repo_path);
7182 01073a5d 2019-08-22 stsp if (error != NULL)
7183 01073a5d 2019-08-22 stsp goto done;
7184 01073a5d 2019-08-22 stsp
7185 01073a5d 2019-08-22 stsp error = apply_unveil(got_repo_get_path(repo), 1, NULL);
7186 896e9b6f 2019-08-26 stsp if (error)
7187 896e9b6f 2019-08-26 stsp goto done;
7188 896e9b6f 2019-08-26 stsp
7189 896e9b6f 2019-08-26 stsp if (commit_id_str == NULL)
7190 896e9b6f 2019-08-26 stsp commit_id_str = GOT_REF_HEAD;
7191 896e9b6f 2019-08-26 stsp error = resolve_commit_arg(&commit_id, commit_id_str, repo);
7192 01073a5d 2019-08-22 stsp if (error)
7193 01073a5d 2019-08-22 stsp goto done;
7194 01073a5d 2019-08-22 stsp
7195 01073a5d 2019-08-22 stsp for (i = 0; i < argc; i++) {
7196 896e9b6f 2019-08-26 stsp if (force_path) {
7197 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo, commit_id,
7198 896e9b6f 2019-08-26 stsp argv[i]);
7199 896e9b6f 2019-08-26 stsp if (error)
7200 896e9b6f 2019-08-26 stsp break;
7201 896e9b6f 2019-08-26 stsp } else {
7202 896e9b6f 2019-08-26 stsp error = match_object_id(&id, &label, argv[i],
7203 896e9b6f 2019-08-26 stsp GOT_OBJ_TYPE_ANY, 0, repo);
7204 896e9b6f 2019-08-26 stsp if (error) {
7205 896e9b6f 2019-08-26 stsp if (error->code != GOT_ERR_BAD_OBJ_ID_STR &&
7206 896e9b6f 2019-08-26 stsp error->code != GOT_ERR_NOT_REF)
7207 896e9b6f 2019-08-26 stsp break;
7208 896e9b6f 2019-08-26 stsp error = got_object_id_by_path(&id, repo,
7209 896e9b6f 2019-08-26 stsp commit_id, argv[i]);
7210 896e9b6f 2019-08-26 stsp if (error)
7211 896e9b6f 2019-08-26 stsp break;
7212 896e9b6f 2019-08-26 stsp }
7213 896e9b6f 2019-08-26 stsp }
7214 01073a5d 2019-08-22 stsp
7215 01073a5d 2019-08-22 stsp error = got_object_get_type(&obj_type, repo, id);
7216 01073a5d 2019-08-22 stsp if (error)
7217 01073a5d 2019-08-22 stsp break;
7218 01073a5d 2019-08-22 stsp
7219 01073a5d 2019-08-22 stsp switch (obj_type) {
7220 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_BLOB:
7221 01073a5d 2019-08-22 stsp error = cat_blob(id, repo, stdout);
7222 01073a5d 2019-08-22 stsp break;
7223 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TREE:
7224 01073a5d 2019-08-22 stsp error = cat_tree(id, repo, stdout);
7225 01073a5d 2019-08-22 stsp break;
7226 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_COMMIT:
7227 01073a5d 2019-08-22 stsp error = cat_commit(id, repo, stdout);
7228 01073a5d 2019-08-22 stsp break;
7229 01073a5d 2019-08-22 stsp case GOT_OBJ_TYPE_TAG:
7230 01073a5d 2019-08-22 stsp error = cat_tag(id, repo, stdout);
7231 01073a5d 2019-08-22 stsp break;
7232 01073a5d 2019-08-22 stsp default:
7233 01073a5d 2019-08-22 stsp error = got_error(GOT_ERR_OBJ_TYPE);
7234 01073a5d 2019-08-22 stsp break;
7235 01073a5d 2019-08-22 stsp }
7236 01073a5d 2019-08-22 stsp if (error)
7237 01073a5d 2019-08-22 stsp break;
7238 01073a5d 2019-08-22 stsp free(label);
7239 01073a5d 2019-08-22 stsp label = NULL;
7240 01073a5d 2019-08-22 stsp free(id);
7241 01073a5d 2019-08-22 stsp id = NULL;
7242 01073a5d 2019-08-22 stsp }
7243 01073a5d 2019-08-22 stsp
7244 01073a5d 2019-08-22 stsp done:
7245 01073a5d 2019-08-22 stsp free(label);
7246 01073a5d 2019-08-22 stsp free(id);
7247 896e9b6f 2019-08-26 stsp free(commit_id);
7248 01073a5d 2019-08-22 stsp if (worktree)
7249 01073a5d 2019-08-22 stsp got_worktree_close(worktree);
7250 01073a5d 2019-08-22 stsp if (repo) {
7251 01073a5d 2019-08-22 stsp const struct got_error *repo_error;
7252 01073a5d 2019-08-22 stsp repo_error = got_repo_close(repo);
7253 01073a5d 2019-08-22 stsp if (error == NULL)
7254 01073a5d 2019-08-22 stsp error = repo_error;
7255 01073a5d 2019-08-22 stsp }
7256 0ebf8283 2019-07-24 stsp return error;
7257 0ebf8283 2019-07-24 stsp }