Blame


1 7d69d862 2021-11-15 stsp /*
2 7d69d862 2021-11-15 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 7d69d862 2021-11-15 stsp *
4 7d69d862 2021-11-15 stsp * Permission to use, copy, modify, and distribute this software for any
5 7d69d862 2021-11-15 stsp * purpose with or without fee is hereby granted, provided that the above
6 7d69d862 2021-11-15 stsp * copyright notice and this permission notice appear in all copies.
7 7d69d862 2021-11-15 stsp *
8 7d69d862 2021-11-15 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 7d69d862 2021-11-15 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 7d69d862 2021-11-15 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 7d69d862 2021-11-15 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 7d69d862 2021-11-15 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 7d69d862 2021-11-15 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 7d69d862 2021-11-15 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 7d69d862 2021-11-15 stsp */
16 7d69d862 2021-11-15 stsp
17 7d69d862 2021-11-15 stsp #include <sys/stat.h>
18 7d69d862 2021-11-15 stsp #include <sys/queue.h>
19 7d69d862 2021-11-15 stsp
20 7d69d862 2021-11-15 stsp #include <errno.h>
21 7d69d862 2021-11-15 stsp #include <fcntl.h>
22 7d69d862 2021-11-15 stsp #include <limits.h>
23 d7b5a0e8 2022-04-20 stsp #include <sha1.h>
24 7d69d862 2021-11-15 stsp #include <stddef.h>
25 7d69d862 2021-11-15 stsp #include <stdio.h>
26 7d69d862 2021-11-15 stsp #include <stdlib.h>
27 7d69d862 2021-11-15 stsp #include <string.h>
28 7d69d862 2021-11-15 stsp #include <unistd.h>
29 7d69d862 2021-11-15 stsp #include <uuid.h>
30 7d69d862 2021-11-15 stsp
31 7d69d862 2021-11-15 stsp #include "got_cancel.h"
32 7d69d862 2021-11-15 stsp #include "got_error.h"
33 7d69d862 2021-11-15 stsp #include "got_reference.h"
34 7d69d862 2021-11-15 stsp #include "got_path.h"
35 7d69d862 2021-11-15 stsp #include "got_worktree.h"
36 7d69d862 2021-11-15 stsp #include "got_repository.h"
37 7d69d862 2021-11-15 stsp #include "got_gotconfig.h"
38 7d69d862 2021-11-15 stsp #include "got_object.h"
39 7d69d862 2021-11-15 stsp
40 7d69d862 2021-11-15 stsp #include "got_lib_worktree.h"
41 7d69d862 2021-11-15 stsp #include "got_lib_gotconfig.h"
42 7d69d862 2021-11-15 stsp
43 7d69d862 2021-11-15 stsp static const struct got_error *
44 7d69d862 2021-11-15 stsp read_meta_file(char **content, const char *path_got, const char *name)
45 7d69d862 2021-11-15 stsp {
46 7d69d862 2021-11-15 stsp const struct got_error *err = NULL;
47 7d69d862 2021-11-15 stsp char *path;
48 7d69d862 2021-11-15 stsp int fd = -1;
49 7d69d862 2021-11-15 stsp ssize_t n;
50 7d69d862 2021-11-15 stsp struct stat sb;
51 7d69d862 2021-11-15 stsp
52 7d69d862 2021-11-15 stsp *content = NULL;
53 7d69d862 2021-11-15 stsp
54 7d69d862 2021-11-15 stsp if (asprintf(&path, "%s/%s", path_got, name) == -1) {
55 7d69d862 2021-11-15 stsp err = got_error_from_errno("asprintf");
56 7d69d862 2021-11-15 stsp path = NULL;
57 7d69d862 2021-11-15 stsp goto done;
58 7d69d862 2021-11-15 stsp }
59 7d69d862 2021-11-15 stsp
60 8bd0cdad 2021-12-31 stsp fd = open(path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
61 7d69d862 2021-11-15 stsp if (fd == -1) {
62 7d69d862 2021-11-15 stsp if (errno == ENOENT)
63 7d69d862 2021-11-15 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
64 7d69d862 2021-11-15 stsp else
65 7d69d862 2021-11-15 stsp err = got_error_from_errno2("open", path);
66 7d69d862 2021-11-15 stsp goto done;
67 7d69d862 2021-11-15 stsp }
68 7d69d862 2021-11-15 stsp if (flock(fd, LOCK_SH | LOCK_NB) == -1) {
69 7d69d862 2021-11-15 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
70 7d69d862 2021-11-15 stsp : got_error_from_errno2("flock", path));
71 7d69d862 2021-11-15 stsp goto done;
72 7d69d862 2021-11-15 stsp }
73 7d69d862 2021-11-15 stsp
74 7d69d862 2021-11-15 stsp if (fstat(fd, &sb) != 0) {
75 7d69d862 2021-11-15 stsp err = got_error_from_errno2("fstat", path);
76 7d69d862 2021-11-15 stsp goto done;
77 7d69d862 2021-11-15 stsp }
78 7d69d862 2021-11-15 stsp *content = calloc(1, sb.st_size);
79 7d69d862 2021-11-15 stsp if (*content == NULL) {
80 7d69d862 2021-11-15 stsp err = got_error_from_errno("calloc");
81 7d69d862 2021-11-15 stsp goto done;
82 7d69d862 2021-11-15 stsp }
83 7d69d862 2021-11-15 stsp
84 7d69d862 2021-11-15 stsp n = read(fd, *content, sb.st_size);
85 7d69d862 2021-11-15 stsp if (n != sb.st_size) {
86 7d69d862 2021-11-15 stsp err = (n == -1 ? got_error_from_errno2("read", path) :
87 7d69d862 2021-11-15 stsp got_error_path(path, GOT_ERR_WORKTREE_META));
88 7d69d862 2021-11-15 stsp goto done;
89 7d69d862 2021-11-15 stsp }
90 7d69d862 2021-11-15 stsp if ((*content)[sb.st_size - 1] != '\n') {
91 7d69d862 2021-11-15 stsp err = got_error_path(path, GOT_ERR_WORKTREE_META);
92 7d69d862 2021-11-15 stsp goto done;
93 7d69d862 2021-11-15 stsp }
94 7d69d862 2021-11-15 stsp (*content)[sb.st_size - 1] = '\0';
95 7d69d862 2021-11-15 stsp
96 7d69d862 2021-11-15 stsp done:
97 7d69d862 2021-11-15 stsp if (fd != -1 && close(fd) == -1 && err == NULL)
98 7d69d862 2021-11-15 stsp err = got_error_from_errno2("close", path_got);
99 7d69d862 2021-11-15 stsp free(path);
100 7d69d862 2021-11-15 stsp if (err) {
101 7d69d862 2021-11-15 stsp free(*content);
102 7d69d862 2021-11-15 stsp *content = NULL;
103 7d69d862 2021-11-15 stsp }
104 7d69d862 2021-11-15 stsp return err;
105 7d69d862 2021-11-15 stsp }
106 7d69d862 2021-11-15 stsp
107 7d69d862 2021-11-15 stsp static const struct got_error *
108 7d69d862 2021-11-15 stsp open_worktree(struct got_worktree **worktree, const char *path)
109 7d69d862 2021-11-15 stsp {
110 7d69d862 2021-11-15 stsp const struct got_error *err = NULL;
111 7d69d862 2021-11-15 stsp char *path_got;
112 7d69d862 2021-11-15 stsp char *formatstr = NULL;
113 7d69d862 2021-11-15 stsp char *uuidstr = NULL;
114 7d69d862 2021-11-15 stsp char *path_lock = NULL;
115 7d69d862 2021-11-15 stsp char *base_commit_id_str = NULL;
116 7d69d862 2021-11-15 stsp int version, fd = -1;
117 7d69d862 2021-11-15 stsp const char *errstr;
118 7d69d862 2021-11-15 stsp struct got_repository *repo = NULL;
119 5a950d09 2022-06-15 stsp int *pack_fds = NULL;
120 7d69d862 2021-11-15 stsp uint32_t uuid_status;
121 7d69d862 2021-11-15 stsp
122 7d69d862 2021-11-15 stsp *worktree = NULL;
123 7d69d862 2021-11-15 stsp
124 7d69d862 2021-11-15 stsp if (asprintf(&path_got, "%s/%s", path, GOT_WORKTREE_GOT_DIR) == -1) {
125 7d69d862 2021-11-15 stsp err = got_error_from_errno("asprintf");
126 7d69d862 2021-11-15 stsp path_got = NULL;
127 7d69d862 2021-11-15 stsp goto done;
128 7d69d862 2021-11-15 stsp }
129 7d69d862 2021-11-15 stsp
130 7d69d862 2021-11-15 stsp if (asprintf(&path_lock, "%s/%s", path_got, GOT_WORKTREE_LOCK) == -1) {
131 7d69d862 2021-11-15 stsp err = got_error_from_errno("asprintf");
132 7d69d862 2021-11-15 stsp path_lock = NULL;
133 7d69d862 2021-11-15 stsp goto done;
134 7d69d862 2021-11-15 stsp }
135 7d69d862 2021-11-15 stsp
136 8bd0cdad 2021-12-31 stsp fd = open(path_lock, O_RDWR | O_EXLOCK | O_NONBLOCK | O_CLOEXEC);
137 7d69d862 2021-11-15 stsp if (fd == -1) {
138 7d69d862 2021-11-15 stsp err = (errno == EWOULDBLOCK ? got_error(GOT_ERR_WORKTREE_BUSY)
139 7d69d862 2021-11-15 stsp : got_error_from_errno2("open", path_lock));
140 7d69d862 2021-11-15 stsp goto done;
141 7d69d862 2021-11-15 stsp }
142 7d69d862 2021-11-15 stsp
143 7d69d862 2021-11-15 stsp err = read_meta_file(&formatstr, path_got, GOT_WORKTREE_FORMAT);
144 7d69d862 2021-11-15 stsp if (err)
145 7d69d862 2021-11-15 stsp goto done;
146 7d69d862 2021-11-15 stsp
147 7d69d862 2021-11-15 stsp version = strtonum(formatstr, 1, INT_MAX, &errstr);
148 7d69d862 2021-11-15 stsp if (errstr) {
149 7d69d862 2021-11-15 stsp err = got_error_msg(GOT_ERR_WORKTREE_META,
150 7d69d862 2021-11-15 stsp "could not parse work tree format version number");
151 7d69d862 2021-11-15 stsp goto done;
152 7d69d862 2021-11-15 stsp }
153 7d69d862 2021-11-15 stsp if (version != GOT_WORKTREE_FORMAT_VERSION) {
154 7d69d862 2021-11-15 stsp err = got_error(GOT_ERR_WORKTREE_VERS);
155 7d69d862 2021-11-15 stsp goto done;
156 7d69d862 2021-11-15 stsp }
157 7d69d862 2021-11-15 stsp
158 7d69d862 2021-11-15 stsp *worktree = calloc(1, sizeof(**worktree));
159 7d69d862 2021-11-15 stsp if (*worktree == NULL) {
160 7d69d862 2021-11-15 stsp err = got_error_from_errno("calloc");
161 7d69d862 2021-11-15 stsp goto done;
162 7d69d862 2021-11-15 stsp }
163 7d69d862 2021-11-15 stsp (*worktree)->lockfd = -1;
164 7d69d862 2021-11-15 stsp
165 7d69d862 2021-11-15 stsp (*worktree)->root_path = realpath(path, NULL);
166 7d69d862 2021-11-15 stsp if ((*worktree)->root_path == NULL) {
167 7d69d862 2021-11-15 stsp err = got_error_from_errno2("realpath", path);
168 7d69d862 2021-11-15 stsp goto done;
169 7d69d862 2021-11-15 stsp }
170 7d69d862 2021-11-15 stsp err = read_meta_file(&(*worktree)->repo_path, path_got,
171 7d69d862 2021-11-15 stsp GOT_WORKTREE_REPOSITORY);
172 7d69d862 2021-11-15 stsp if (err)
173 7d69d862 2021-11-15 stsp goto done;
174 7d69d862 2021-11-15 stsp
175 7d69d862 2021-11-15 stsp err = read_meta_file(&(*worktree)->path_prefix, path_got,
176 7d69d862 2021-11-15 stsp GOT_WORKTREE_PATH_PREFIX);
177 7d69d862 2021-11-15 stsp if (err)
178 7d69d862 2021-11-15 stsp goto done;
179 7d69d862 2021-11-15 stsp
180 7d69d862 2021-11-15 stsp err = read_meta_file(&base_commit_id_str, path_got,
181 7d69d862 2021-11-15 stsp GOT_WORKTREE_BASE_COMMIT);
182 7d69d862 2021-11-15 stsp if (err)
183 7d69d862 2021-11-15 stsp goto done;
184 7d69d862 2021-11-15 stsp
185 7d69d862 2021-11-15 stsp err = read_meta_file(&uuidstr, path_got, GOT_WORKTREE_UUID);
186 7d69d862 2021-11-15 stsp if (err)
187 7d69d862 2021-11-15 stsp goto done;
188 7d69d862 2021-11-15 stsp uuid_from_string(uuidstr, &(*worktree)->uuid, &uuid_status);
189 7d69d862 2021-11-15 stsp if (uuid_status != uuid_s_ok) {
190 7d69d862 2021-11-15 stsp err = got_error_uuid(uuid_status, "uuid_from_string");
191 7d69d862 2021-11-15 stsp goto done;
192 7d69d862 2021-11-15 stsp }
193 7d69d862 2021-11-15 stsp
194 5a950d09 2022-06-15 stsp err = got_repo_pack_fds_open(&pack_fds);
195 7d69d862 2021-11-15 stsp if (err)
196 7d69d862 2021-11-15 stsp goto done;
197 7d69d862 2021-11-15 stsp
198 5a950d09 2022-06-15 stsp err = got_repo_open(&repo, (*worktree)->repo_path, NULL, pack_fds);
199 0ae84acc 2022-06-15 tracey if (err)
200 0ae84acc 2022-06-15 tracey goto done;
201 0ae84acc 2022-06-15 tracey
202 7d69d862 2021-11-15 stsp err = got_object_resolve_id_str(&(*worktree)->base_commit_id, repo,
203 7d69d862 2021-11-15 stsp base_commit_id_str);
204 7d69d862 2021-11-15 stsp if (err)
205 7d69d862 2021-11-15 stsp goto done;
206 7d69d862 2021-11-15 stsp
207 7d69d862 2021-11-15 stsp err = read_meta_file(&(*worktree)->head_ref_name, path_got,
208 7d69d862 2021-11-15 stsp GOT_WORKTREE_HEAD_REF);
209 7d69d862 2021-11-15 stsp if (err)
210 7d69d862 2021-11-15 stsp goto done;
211 7d69d862 2021-11-15 stsp
212 7d69d862 2021-11-15 stsp if (asprintf(&(*worktree)->gotconfig_path, "%s/%s/%s",
213 7d69d862 2021-11-15 stsp (*worktree)->root_path,
214 7d69d862 2021-11-15 stsp GOT_WORKTREE_GOT_DIR, GOT_GOTCONFIG_FILENAME) == -1) {
215 7d69d862 2021-11-15 stsp err = got_error_from_errno("asprintf");
216 7d69d862 2021-11-15 stsp goto done;
217 7d69d862 2021-11-15 stsp }
218 7d69d862 2021-11-15 stsp
219 7d69d862 2021-11-15 stsp err = got_gotconfig_read(&(*worktree)->gotconfig,
220 7d69d862 2021-11-15 stsp (*worktree)->gotconfig_path);
221 2f6519cc 2022-10-27 stsp if (err)
222 2f6519cc 2022-10-27 stsp goto done;
223 7d69d862 2021-11-15 stsp
224 8bd0cdad 2021-12-31 stsp (*worktree)->root_fd = open((*worktree)->root_path,
225 8bd0cdad 2021-12-31 stsp O_DIRECTORY | O_CLOEXEC);
226 7d69d862 2021-11-15 stsp if ((*worktree)->root_fd == -1) {
227 7d69d862 2021-11-15 stsp err = got_error_from_errno2("open", (*worktree)->root_path);
228 7d69d862 2021-11-15 stsp goto done;
229 7d69d862 2021-11-15 stsp }
230 7d69d862 2021-11-15 stsp done:
231 7d69d862 2021-11-15 stsp if (repo) {
232 7d69d862 2021-11-15 stsp const struct got_error *close_err = got_repo_close(repo);
233 7d69d862 2021-11-15 stsp if (err == NULL)
234 7d69d862 2021-11-15 stsp err = close_err;
235 5a950d09 2022-06-15 stsp }
236 5a950d09 2022-06-15 stsp if (pack_fds) {
237 5a950d09 2022-06-15 stsp const struct got_error *pack_err =
238 5a950d09 2022-06-15 stsp got_repo_pack_fds_close(pack_fds);
239 5a950d09 2022-06-15 stsp if (err == NULL)
240 5a950d09 2022-06-15 stsp err = pack_err;
241 7d69d862 2021-11-15 stsp }
242 7d69d862 2021-11-15 stsp free(path_got);
243 7d69d862 2021-11-15 stsp free(path_lock);
244 7d69d862 2021-11-15 stsp free(base_commit_id_str);
245 7d69d862 2021-11-15 stsp free(uuidstr);
246 7d69d862 2021-11-15 stsp free(formatstr);
247 7d69d862 2021-11-15 stsp if (err) {
248 7d69d862 2021-11-15 stsp if (fd != -1)
249 7d69d862 2021-11-15 stsp close(fd);
250 7d69d862 2021-11-15 stsp if (*worktree != NULL)
251 7d69d862 2021-11-15 stsp got_worktree_close(*worktree);
252 7d69d862 2021-11-15 stsp *worktree = NULL;
253 7d69d862 2021-11-15 stsp } else
254 7d69d862 2021-11-15 stsp (*worktree)->lockfd = fd;
255 7d69d862 2021-11-15 stsp
256 7d69d862 2021-11-15 stsp return err;
257 7d69d862 2021-11-15 stsp }
258 7d69d862 2021-11-15 stsp
259 7d69d862 2021-11-15 stsp const struct got_error *
260 7d69d862 2021-11-15 stsp got_worktree_open(struct got_worktree **worktree, const char *path)
261 7d69d862 2021-11-15 stsp {
262 7d69d862 2021-11-15 stsp const struct got_error *err = NULL;
263 7d69d862 2021-11-15 stsp char *worktree_path;
264 7d69d862 2021-11-15 stsp
265 7d69d862 2021-11-15 stsp worktree_path = strdup(path);
266 7d69d862 2021-11-15 stsp if (worktree_path == NULL)
267 7d69d862 2021-11-15 stsp return got_error_from_errno("strdup");
268 7d69d862 2021-11-15 stsp
269 7d69d862 2021-11-15 stsp for (;;) {
270 7d69d862 2021-11-15 stsp char *parent_path;
271 7d69d862 2021-11-15 stsp
272 7d69d862 2021-11-15 stsp err = open_worktree(worktree, worktree_path);
273 7d69d862 2021-11-15 stsp if (err && !(err->code == GOT_ERR_ERRNO && errno == ENOENT)) {
274 7d69d862 2021-11-15 stsp free(worktree_path);
275 7d69d862 2021-11-15 stsp return err;
276 7d69d862 2021-11-15 stsp }
277 7d69d862 2021-11-15 stsp if (*worktree) {
278 7d69d862 2021-11-15 stsp free(worktree_path);
279 7d69d862 2021-11-15 stsp return NULL;
280 7d69d862 2021-11-15 stsp }
281 7d69d862 2021-11-15 stsp if (worktree_path[0] == '/' && worktree_path[1] == '\0')
282 7d69d862 2021-11-15 stsp break;
283 7d69d862 2021-11-15 stsp err = got_path_dirname(&parent_path, worktree_path);
284 7d69d862 2021-11-15 stsp if (err) {
285 7d69d862 2021-11-15 stsp if (err->code != GOT_ERR_BAD_PATH) {
286 7d69d862 2021-11-15 stsp free(worktree_path);
287 7d69d862 2021-11-15 stsp return err;
288 7d69d862 2021-11-15 stsp }
289 7d69d862 2021-11-15 stsp break;
290 7d69d862 2021-11-15 stsp }
291 7d69d862 2021-11-15 stsp free(worktree_path);
292 7d69d862 2021-11-15 stsp worktree_path = parent_path;
293 7d69d862 2021-11-15 stsp }
294 7d69d862 2021-11-15 stsp
295 7d69d862 2021-11-15 stsp free(worktree_path);
296 7d69d862 2021-11-15 stsp return got_error(GOT_ERR_NOT_WORKTREE);
297 7d69d862 2021-11-15 stsp }
298 7d69d862 2021-11-15 stsp
299 7d69d862 2021-11-15 stsp const struct got_error *
300 7d69d862 2021-11-15 stsp got_worktree_close(struct got_worktree *worktree)
301 7d69d862 2021-11-15 stsp {
302 7d69d862 2021-11-15 stsp const struct got_error *err = NULL;
303 7d69d862 2021-11-15 stsp
304 7d69d862 2021-11-15 stsp if (worktree->lockfd != -1) {
305 7d69d862 2021-11-15 stsp if (close(worktree->lockfd) == -1)
306 7d69d862 2021-11-15 stsp err = got_error_from_errno2("close",
307 7d69d862 2021-11-15 stsp got_worktree_get_root_path(worktree));
308 7d69d862 2021-11-15 stsp }
309 7d69d862 2021-11-15 stsp if (close(worktree->root_fd) == -1 && err == NULL)
310 7d69d862 2021-11-15 stsp err = got_error_from_errno2("close",
311 7d69d862 2021-11-15 stsp got_worktree_get_root_path(worktree));
312 7d69d862 2021-11-15 stsp free(worktree->repo_path);
313 7d69d862 2021-11-15 stsp free(worktree->path_prefix);
314 7d69d862 2021-11-15 stsp free(worktree->base_commit_id);
315 7d69d862 2021-11-15 stsp free(worktree->head_ref_name);
316 7d69d862 2021-11-15 stsp free(worktree->root_path);
317 7d69d862 2021-11-15 stsp free(worktree->gotconfig_path);
318 7d69d862 2021-11-15 stsp got_gotconfig_free(worktree->gotconfig);
319 7d69d862 2021-11-15 stsp free(worktree);
320 7d69d862 2021-11-15 stsp return err;
321 7d69d862 2021-11-15 stsp }
322 7d69d862 2021-11-15 stsp
323 7d69d862 2021-11-15 stsp const char *
324 7d69d862 2021-11-15 stsp got_worktree_get_root_path(struct got_worktree *worktree)
325 7d69d862 2021-11-15 stsp {
326 7d69d862 2021-11-15 stsp return worktree->root_path;
327 7d69d862 2021-11-15 stsp }
328 7d69d862 2021-11-15 stsp
329 7d69d862 2021-11-15 stsp const char *
330 7d69d862 2021-11-15 stsp got_worktree_get_repo_path(struct got_worktree *worktree)
331 7d69d862 2021-11-15 stsp {
332 7d69d862 2021-11-15 stsp return worktree->repo_path;
333 7d69d862 2021-11-15 stsp }
334 7d69d862 2021-11-15 stsp
335 7d69d862 2021-11-15 stsp const char *
336 7d69d862 2021-11-15 stsp got_worktree_get_path_prefix(struct got_worktree *worktree)
337 7d69d862 2021-11-15 stsp {
338 7d69d862 2021-11-15 stsp return worktree->path_prefix;
339 7d69d862 2021-11-15 stsp }