Blame


1 d71d75ad 2017-11-05 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 d71d75ad 2017-11-05 stsp *
4 d71d75ad 2017-11-05 stsp * Permission to use, copy, modify, and distribute this software for any
5 d71d75ad 2017-11-05 stsp * purpose with or without fee is hereby granted, provided that the above
6 d71d75ad 2017-11-05 stsp * copyright notice and this permission notice appear in all copies.
7 d71d75ad 2017-11-05 stsp *
8 d71d75ad 2017-11-05 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d71d75ad 2017-11-05 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d71d75ad 2017-11-05 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d71d75ad 2017-11-05 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d71d75ad 2017-11-05 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d71d75ad 2017-11-05 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d71d75ad 2017-11-05 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d71d75ad 2017-11-05 stsp */
16 d71d75ad 2017-11-05 stsp
17 2178c42e 2018-04-22 stsp #include <sys/types.h>
18 0ffeb3c2 2017-11-26 stsp #include <sys/stat.h>
19 d1cda826 2017-11-06 stsp #include <sys/queue.h>
20 f8b19efd 2021-10-13 stsp #include <sys/tree.h>
21 2178c42e 2018-04-22 stsp #include <sys/uio.h>
22 64a8571e 2022-01-07 stsp #include <sys/mman.h>
23 d1cda826 2017-11-06 stsp
24 a1fd68d8 2018-01-12 stsp #include <errno.h>
25 2178c42e 2018-04-22 stsp #include <fcntl.h>
26 d71d75ad 2017-11-05 stsp #include <stdio.h>
27 ab9a70b2 2017-11-06 stsp #include <stdlib.h>
28 ab9a70b2 2017-11-06 stsp #include <string.h>
29 d71d75ad 2017-11-05 stsp #include <sha1.h>
30 81a12da5 2020-09-09 naddy #include <unistd.h>
31 ab9a70b2 2017-11-06 stsp #include <zlib.h>
32 e40622f4 2020-07-23 stsp #include <libgen.h>
33 ab9a70b2 2017-11-06 stsp #include <limits.h>
34 2178c42e 2018-04-22 stsp #include <imsg.h>
35 d71d75ad 2017-11-05 stsp
36 ab9a70b2 2017-11-06 stsp #include "got_error.h"
37 d71d75ad 2017-11-05 stsp #include "got_object.h"
38 ab9a70b2 2017-11-06 stsp #include "got_repository.h"
39 511a516b 2018-05-19 stsp #include "got_opentemp.h"
40 324d37e7 2019-05-11 stsp #include "got_path.h"
41 d71d75ad 2017-11-05 stsp
42 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
43 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
44 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
45 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
46 6bef87be 2018-09-11 stsp #include "got_lib_object_idcache.h"
47 6bef87be 2018-09-11 stsp #include "got_lib_object_cache.h"
48 ad242220 2018-09-08 stsp #include "got_lib_object_parse.h"
49 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
50 7bb0daa1 2018-06-21 stsp #include "got_lib_repository.h"
51 1411938b 2018-02-12 stsp
52 ab9a70b2 2017-11-06 stsp #ifndef MIN
53 ab9a70b2 2017-11-06 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
54 ab9a70b2 2017-11-06 stsp #endif
55 3235492e 2018-04-01 stsp
56 0ab4c957 2022-06-13 stsp #ifndef nitems
57 0ab4c957 2022-06-13 stsp #define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
58 0ab4c957 2022-06-13 stsp #endif
59 0ab4c957 2022-06-13 stsp
60 3235492e 2018-04-01 stsp struct got_object_id *
61 3235492e 2018-04-01 stsp got_object_get_id(struct got_object *obj)
62 3235492e 2018-04-01 stsp {
63 6402fb3c 2018-09-15 stsp return &obj->id;
64 bacc9935 2018-05-20 stsp }
65 bacc9935 2018-05-20 stsp
66 bacc9935 2018-05-20 stsp const struct got_error *
67 bacc9935 2018-05-20 stsp got_object_get_id_str(char **outbuf, struct got_object *obj)
68 bacc9935 2018-05-20 stsp {
69 bacc9935 2018-05-20 stsp return got_object_id_str(outbuf, &obj->id);
70 a1fd68d8 2018-01-12 stsp }
71 d71d75ad 2017-11-05 stsp
72 15a94983 2018-12-23 stsp const struct got_error *
73 15a94983 2018-12-23 stsp got_object_get_type(int *type, struct got_repository *repo,
74 15a94983 2018-12-23 stsp struct got_object_id *id)
75 a1fd68d8 2018-01-12 stsp {
76 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
77 15a94983 2018-12-23 stsp struct got_object *obj;
78 15a94983 2018-12-23 stsp
79 15a94983 2018-12-23 stsp err = got_object_open(&obj, repo, id);
80 15a94983 2018-12-23 stsp if (err)
81 15a94983 2018-12-23 stsp return err;
82 15a94983 2018-12-23 stsp
83 b107e67f 2018-01-19 stsp switch (obj->type) {
84 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_COMMIT:
85 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_TREE:
86 a1fd68d8 2018-01-12 stsp case GOT_OBJ_TYPE_BLOB:
87 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
88 15a94983 2018-12-23 stsp *type = obj->type;
89 15a94983 2018-12-23 stsp break;
90 96f5e8b3 2018-01-23 stsp default:
91 15a94983 2018-12-23 stsp err = got_error(GOT_ERR_OBJ_TYPE);
92 96f5e8b3 2018-01-23 stsp break;
93 d71d75ad 2017-11-05 stsp }
94 d71d75ad 2017-11-05 stsp
95 15a94983 2018-12-23 stsp got_object_close(obj);
96 15a94983 2018-12-23 stsp return err;
97 d71d75ad 2017-11-05 stsp }
98 ab9a70b2 2017-11-06 stsp
99 90bdb554 2019-04-11 stsp const struct got_error *
100 90bdb554 2019-04-11 stsp got_object_get_path(char **path, struct got_object_id *id,
101 90bdb554 2019-04-11 stsp struct got_repository *repo)
102 ab9a70b2 2017-11-06 stsp {
103 ab9a70b2 2017-11-06 stsp const struct got_error *err = NULL;
104 7a132809 2018-07-23 stsp char *hex = NULL;
105 41d2888b 2019-08-11 stsp char *path_objects;
106 e6b1056e 2018-04-22 stsp
107 e6b1056e 2018-04-22 stsp *path = NULL;
108 ab9a70b2 2017-11-06 stsp
109 41d2888b 2019-08-11 stsp path_objects = got_repo_get_path_objects(repo);
110 ab9a70b2 2017-11-06 stsp if (path_objects == NULL)
111 638f9024 2019-05-13 stsp return got_error_from_errno("got_repo_get_path_objects");
112 ab9a70b2 2017-11-06 stsp
113 ef0981d5 2018-02-12 stsp err = got_object_id_str(&hex, id);
114 ef0981d5 2018-02-12 stsp if (err)
115 7a132809 2018-07-23 stsp goto done;
116 ab9a70b2 2017-11-06 stsp
117 d1cda826 2017-11-06 stsp if (asprintf(path, "%s/%.2x/%s", path_objects,
118 d1cda826 2017-11-06 stsp id->sha1[0], hex + 2) == -1)
119 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
120 ab9a70b2 2017-11-06 stsp
121 7a132809 2018-07-23 stsp done:
122 ef0981d5 2018-02-12 stsp free(hex);
123 d1cda826 2017-11-06 stsp free(path_objects);
124 d1cda826 2017-11-06 stsp return err;
125 d1cda826 2017-11-06 stsp }
126 d1cda826 2017-11-06 stsp
127 762d73f4 2021-04-10 stsp const struct got_error *
128 762d73f4 2021-04-10 stsp got_object_open_loose_fd(int *fd, struct got_object_id *id,
129 4796fb13 2018-12-23 stsp struct got_repository *repo)
130 d1cda826 2017-11-06 stsp {
131 d1cda826 2017-11-06 stsp const struct got_error *err = NULL;
132 a1fd68d8 2018-01-12 stsp char *path;
133 6c00b545 2018-01-17 stsp
134 90bdb554 2019-04-11 stsp err = got_object_get_path(&path, id, repo);
135 d1cda826 2017-11-06 stsp if (err)
136 d1cda826 2017-11-06 stsp return err;
137 8bd0cdad 2021-12-31 stsp *fd = open(path, O_RDONLY | O_NOFOLLOW | O_CLOEXEC);
138 d5003b79 2018-04-22 stsp if (*fd == -1) {
139 e82b1d81 2019-07-27 stsp err = got_error_from_errno2("open", path);
140 6c00b545 2018-01-17 stsp goto done;
141 a1fd68d8 2018-01-12 stsp }
142 4558fcd4 2018-01-14 stsp done:
143 4558fcd4 2018-01-14 stsp free(path);
144 59d1e4a0 2021-03-10 stsp return err;
145 ab9a70b2 2017-11-06 stsp }
146 ab9a70b2 2017-11-06 stsp
147 59d1e4a0 2021-03-10 stsp const struct got_error *
148 6dfa2fd3 2018-02-12 stsp got_object_open_by_id_str(struct got_object **obj, struct got_repository *repo,
149 6dfa2fd3 2018-02-12 stsp const char *id_str)
150 6dfa2fd3 2018-02-12 stsp {
151 6dfa2fd3 2018-02-12 stsp struct got_object_id id;
152 6dfa2fd3 2018-02-12 stsp
153 6dfa2fd3 2018-02-12 stsp if (!got_parse_sha1_digest(id.sha1, id_str))
154 6dd1ece6 2019-11-10 stsp return got_error_path(id_str, GOT_ERR_BAD_OBJ_ID_STR);
155 6dfa2fd3 2018-02-12 stsp
156 6dfa2fd3 2018-02-12 stsp return got_object_open(obj, repo, &id);
157 15a94983 2018-12-23 stsp }
158 15a94983 2018-12-23 stsp
159 15a94983 2018-12-23 stsp const struct got_error *
160 15a94983 2018-12-23 stsp got_object_resolve_id_str(struct got_object_id **id,
161 15a94983 2018-12-23 stsp struct got_repository *repo, const char *id_str)
162 15a94983 2018-12-23 stsp {
163 15a94983 2018-12-23 stsp const struct got_error *err = NULL;
164 15a94983 2018-12-23 stsp struct got_object *obj;
165 15a94983 2018-12-23 stsp
166 15a94983 2018-12-23 stsp err = got_object_open_by_id_str(&obj, repo, id_str);
167 15a94983 2018-12-23 stsp if (err)
168 15a94983 2018-12-23 stsp return err;
169 15a94983 2018-12-23 stsp
170 15a94983 2018-12-23 stsp *id = got_object_id_dup(got_object_get_id(obj));
171 15a94983 2018-12-23 stsp got_object_close(obj);
172 15a94983 2018-12-23 stsp if (*id == NULL)
173 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
174 15a94983 2018-12-23 stsp
175 15a94983 2018-12-23 stsp return NULL;
176 434025f3 2018-09-16 stsp }
177 434025f3 2018-09-16 stsp
178 e32baab7 2018-11-05 stsp const struct got_error *
179 dbc6a6b6 2018-07-12 stsp got_object_qid_alloc(struct got_object_qid **qid, struct got_object_id *id)
180 dbc6a6b6 2018-07-12 stsp {
181 dbc6a6b6 2018-07-12 stsp *qid = calloc(1, sizeof(**qid));
182 dbc6a6b6 2018-07-12 stsp if (*qid == NULL)
183 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
184 dbc6a6b6 2018-07-12 stsp
185 d7b5a0e8 2022-04-20 stsp memcpy(&(*qid)->id, id, sizeof((*qid)->id));
186 9ca9aafb 2021-06-18 stsp return NULL;
187 9ca9aafb 2021-06-18 stsp }
188 9ca9aafb 2021-06-18 stsp
189 9ca9aafb 2021-06-18 stsp const struct got_error *
190 9ca9aafb 2021-06-18 stsp got_object_id_queue_copy(const struct got_object_id_queue *src,
191 9ca9aafb 2021-06-18 stsp struct got_object_id_queue *dest)
192 9ca9aafb 2021-06-18 stsp {
193 9ca9aafb 2021-06-18 stsp const struct got_error *err;
194 9ca9aafb 2021-06-18 stsp struct got_object_qid *qid;
195 9ca9aafb 2021-06-18 stsp
196 dbdddfee 2021-06-23 naddy STAILQ_FOREACH(qid, src, entry) {
197 9ca9aafb 2021-06-18 stsp struct got_object_qid *new;
198 9ca9aafb 2021-06-18 stsp /*
199 9ca9aafb 2021-06-18 stsp * Deep-copy the object ID only. Let the caller deal
200 9ca9aafb 2021-06-18 stsp * with setting up the new->data pointer if needed.
201 9ca9aafb 2021-06-18 stsp */
202 5e91dae4 2022-08-30 stsp err = got_object_qid_alloc(&new, &qid->id);
203 9ca9aafb 2021-06-18 stsp if (err) {
204 9ca9aafb 2021-06-18 stsp got_object_id_queue_free(dest);
205 9ca9aafb 2021-06-18 stsp return err;
206 9ca9aafb 2021-06-18 stsp }
207 dbdddfee 2021-06-23 naddy STAILQ_INSERT_TAIL(dest, new, entry);
208 dbc6a6b6 2018-07-12 stsp }
209 dbc6a6b6 2018-07-12 stsp
210 dbc6a6b6 2018-07-12 stsp return NULL;
211 9f2369b0 2018-12-24 stsp }
212 9f2369b0 2018-12-24 stsp
213 56e0773d 2019-11-28 stsp int
214 56e0773d 2019-11-28 stsp got_object_tree_get_nentries(struct got_tree_object *tree)
215 883f0469 2018-06-23 stsp {
216 56e0773d 2019-11-28 stsp return tree->nentries;
217 56e0773d 2019-11-28 stsp }
218 56e0773d 2019-11-28 stsp
219 56e0773d 2019-11-28 stsp struct got_tree_entry *
220 56e0773d 2019-11-28 stsp got_object_tree_get_first_entry(struct got_tree_object *tree)
221 56e0773d 2019-11-28 stsp {
222 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, 0);
223 56e0773d 2019-11-28 stsp }
224 56e0773d 2019-11-28 stsp
225 56e0773d 2019-11-28 stsp struct got_tree_entry *
226 56e0773d 2019-11-28 stsp got_object_tree_get_last_entry(struct got_tree_object *tree)
227 56e0773d 2019-11-28 stsp {
228 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, tree->nentries - 1);
229 56e0773d 2019-11-28 stsp }
230 56e0773d 2019-11-28 stsp
231 56e0773d 2019-11-28 stsp struct got_tree_entry *
232 56e0773d 2019-11-28 stsp got_object_tree_get_entry(struct got_tree_object *tree, int i)
233 56e0773d 2019-11-28 stsp {
234 56e0773d 2019-11-28 stsp if (i < 0 || i >= tree->nentries)
235 56e0773d 2019-11-28 stsp return NULL;
236 56e0773d 2019-11-28 stsp return &tree->entries[i];
237 883f0469 2018-06-23 stsp }
238 3840f4c9 2018-09-12 stsp
239 56e0773d 2019-11-28 stsp mode_t
240 56e0773d 2019-11-28 stsp got_tree_entry_get_mode(struct got_tree_entry *te)
241 56e0773d 2019-11-28 stsp {
242 56e0773d 2019-11-28 stsp return te->mode;
243 56e0773d 2019-11-28 stsp }
244 56e0773d 2019-11-28 stsp
245 56e0773d 2019-11-28 stsp const char *
246 56e0773d 2019-11-28 stsp got_tree_entry_get_name(struct got_tree_entry *te)
247 56e0773d 2019-11-28 stsp {
248 56e0773d 2019-11-28 stsp return &te->name[0];
249 56e0773d 2019-11-28 stsp }
250 56e0773d 2019-11-28 stsp
251 56e0773d 2019-11-28 stsp struct got_object_id *
252 56e0773d 2019-11-28 stsp got_tree_entry_get_id(struct got_tree_entry *te)
253 56e0773d 2019-11-28 stsp {
254 56e0773d 2019-11-28 stsp return &te->id;
255 0d6c6ee3 2020-05-20 stsp }
256 0d6c6ee3 2020-05-20 stsp
257 0d6c6ee3 2020-05-20 stsp const struct got_error *
258 af57b12a 2020-07-23 stsp got_object_blob_read_to_str(char **s, struct got_blob_object *blob)
259 0d6c6ee3 2020-05-20 stsp {
260 0d6c6ee3 2020-05-20 stsp const struct got_error *err = NULL;
261 32596e16 2020-07-23 stsp size_t len, totlen, hdrlen, offset;
262 aa092692 2020-07-23 stsp
263 aa092692 2020-07-23 stsp *s = NULL;
264 0d6c6ee3 2020-05-20 stsp
265 659dc16e 2020-07-23 stsp hdrlen = got_object_blob_get_hdrlen(blob);
266 659dc16e 2020-07-23 stsp totlen = 0;
267 32596e16 2020-07-23 stsp offset = 0;
268 659dc16e 2020-07-23 stsp do {
269 659dc16e 2020-07-23 stsp char *p;
270 0d6c6ee3 2020-05-20 stsp
271 659dc16e 2020-07-23 stsp err = got_object_blob_read_block(&len, blob);
272 659dc16e 2020-07-23 stsp if (err)
273 af57b12a 2020-07-23 stsp return err;
274 659dc16e 2020-07-23 stsp
275 659dc16e 2020-07-23 stsp if (len == 0)
276 659dc16e 2020-07-23 stsp break;
277 659dc16e 2020-07-23 stsp
278 659dc16e 2020-07-23 stsp totlen += len - hdrlen;
279 af57b12a 2020-07-23 stsp p = realloc(*s, totlen + 1);
280 659dc16e 2020-07-23 stsp if (p == NULL) {
281 659dc16e 2020-07-23 stsp err = got_error_from_errno("realloc");
282 af57b12a 2020-07-23 stsp free(*s);
283 af57b12a 2020-07-23 stsp *s = NULL;
284 af57b12a 2020-07-23 stsp return err;
285 659dc16e 2020-07-23 stsp }
286 af57b12a 2020-07-23 stsp *s = p;
287 659dc16e 2020-07-23 stsp /* Skip blob object header first time around. */
288 af57b12a 2020-07-23 stsp memcpy(*s + offset,
289 f8f7c882 2020-07-23 stsp got_object_blob_get_read_buf(blob) + hdrlen, len - hdrlen);
290 659dc16e 2020-07-23 stsp hdrlen = 0;
291 32596e16 2020-07-23 stsp offset = totlen;
292 659dc16e 2020-07-23 stsp } while (len > 0);
293 af57b12a 2020-07-23 stsp
294 af57b12a 2020-07-23 stsp (*s)[totlen] = '\0';
295 af57b12a 2020-07-23 stsp return NULL;
296 af57b12a 2020-07-23 stsp }
297 af57b12a 2020-07-23 stsp
298 af57b12a 2020-07-23 stsp const struct got_error *
299 af57b12a 2020-07-23 stsp got_tree_entry_get_symlink_target(char **link_target, struct got_tree_entry *te,
300 af57b12a 2020-07-23 stsp struct got_repository *repo)
301 af57b12a 2020-07-23 stsp {
302 af57b12a 2020-07-23 stsp const struct got_error *err = NULL;
303 af57b12a 2020-07-23 stsp struct got_blob_object *blob = NULL;
304 eb81bc23 2022-06-28 tracey int fd = -1;
305 af57b12a 2020-07-23 stsp
306 af57b12a 2020-07-23 stsp *link_target = NULL;
307 af57b12a 2020-07-23 stsp
308 af57b12a 2020-07-23 stsp if (!got_object_tree_entry_is_symlink(te))
309 af57b12a 2020-07-23 stsp return got_error(GOT_ERR_TREE_ENTRY_TYPE);
310 af57b12a 2020-07-23 stsp
311 eb81bc23 2022-06-28 tracey fd = got_opentempfd();
312 eb81bc23 2022-06-28 tracey if (fd == -1) {
313 eb81bc23 2022-06-28 tracey err = got_error_from_errno("got_opentempfd");
314 eb81bc23 2022-06-28 tracey goto done;
315 eb81bc23 2022-06-28 tracey }
316 eb81bc23 2022-06-28 tracey
317 eb81bc23 2022-06-28 tracey err = got_object_open_as_blob(&blob, repo,
318 eb81bc23 2022-06-28 tracey got_tree_entry_get_id(te), PATH_MAX, fd);
319 af57b12a 2020-07-23 stsp if (err)
320 eb81bc23 2022-06-28 tracey goto done;
321 af57b12a 2020-07-23 stsp
322 af57b12a 2020-07-23 stsp err = got_object_blob_read_to_str(link_target, blob);
323 eb81bc23 2022-06-28 tracey done:
324 eb81bc23 2022-06-28 tracey if (fd != -1 && close(fd) == -1 && err == NULL)
325 eb81bc23 2022-06-28 tracey err = got_error_from_errno("close");
326 eb81bc23 2022-06-28 tracey if (blob)
327 eb81bc23 2022-06-28 tracey got_object_blob_close(blob);
328 659dc16e 2020-07-23 stsp if (err) {
329 659dc16e 2020-07-23 stsp free(*link_target);
330 659dc16e 2020-07-23 stsp *link_target = NULL;
331 659dc16e 2020-07-23 stsp }
332 0d6c6ee3 2020-05-20 stsp return err;
333 56e0773d 2019-11-28 stsp }
334 56e0773d 2019-11-28 stsp
335 56e0773d 2019-11-28 stsp int
336 56e0773d 2019-11-28 stsp got_tree_entry_get_index(struct got_tree_entry *te)
337 56e0773d 2019-11-28 stsp {
338 56e0773d 2019-11-28 stsp return te->idx;
339 56e0773d 2019-11-28 stsp }
340 56e0773d 2019-11-28 stsp
341 56e0773d 2019-11-28 stsp struct got_tree_entry *
342 56e0773d 2019-11-28 stsp got_tree_entry_get_next(struct got_tree_object *tree,
343 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
344 56e0773d 2019-11-28 stsp {
345 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx + 1);
346 56e0773d 2019-11-28 stsp }
347 56e0773d 2019-11-28 stsp
348 56e0773d 2019-11-28 stsp struct got_tree_entry *
349 56e0773d 2019-11-28 stsp got_tree_entry_get_prev(struct got_tree_object *tree,
350 56e0773d 2019-11-28 stsp struct got_tree_entry *te)
351 56e0773d 2019-11-28 stsp {
352 56e0773d 2019-11-28 stsp return got_object_tree_get_entry(tree, te->idx - 1);
353 56e0773d 2019-11-28 stsp }
354 56e0773d 2019-11-28 stsp
355 a19581a2 2018-06-21 stsp const struct got_error *
356 68482ea3 2017-11-27 stsp got_object_blob_close(struct got_blob_object *blob)
357 68482ea3 2017-11-27 stsp {
358 fb43ecf1 2019-02-11 stsp const struct got_error *err = NULL;
359 15c8b0e6 2018-04-24 stsp free(blob->read_buf);
360 56b63ca4 2021-01-22 stsp if (blob->f && fclose(blob->f) == EOF)
361 638f9024 2019-05-13 stsp err = got_error_from_errno("fclose");
362 ac544f8c 2019-01-13 stsp free(blob->data);
363 68482ea3 2017-11-27 stsp free(blob);
364 fb43ecf1 2019-02-11 stsp return err;
365 f934cf2c 2018-02-12 stsp }
366 f934cf2c 2018-02-12 stsp
367 8ba819a3 2020-07-23 stsp void
368 8ba819a3 2020-07-23 stsp got_object_blob_rewind(struct got_blob_object *blob)
369 8ba819a3 2020-07-23 stsp {
370 8ba819a3 2020-07-23 stsp if (blob->f)
371 8ba819a3 2020-07-23 stsp rewind(blob->f);
372 8ba819a3 2020-07-23 stsp }
373 8ba819a3 2020-07-23 stsp
374 f934cf2c 2018-02-12 stsp char *
375 f934cf2c 2018-02-12 stsp got_object_blob_id_str(struct got_blob_object *blob, char *buf, size_t size)
376 f934cf2c 2018-02-12 stsp {
377 f934cf2c 2018-02-12 stsp return got_sha1_digest_to_str(blob->id.sha1, buf, size);
378 f934cf2c 2018-02-12 stsp }
379 f934cf2c 2018-02-12 stsp
380 f934cf2c 2018-02-12 stsp size_t
381 f934cf2c 2018-02-12 stsp got_object_blob_get_hdrlen(struct got_blob_object *blob)
382 f934cf2c 2018-02-12 stsp {
383 f934cf2c 2018-02-12 stsp return blob->hdrlen;
384 68482ea3 2017-11-27 stsp }
385 68482ea3 2017-11-27 stsp
386 f934cf2c 2018-02-12 stsp const uint8_t *
387 f934cf2c 2018-02-12 stsp got_object_blob_get_read_buf(struct got_blob_object *blob)
388 f934cf2c 2018-02-12 stsp {
389 f934cf2c 2018-02-12 stsp return blob->read_buf;
390 f934cf2c 2018-02-12 stsp }
391 f934cf2c 2018-02-12 stsp
392 68482ea3 2017-11-27 stsp const struct got_error *
393 eb651edf 2018-02-11 stsp got_object_blob_read_block(size_t *outlenp, struct got_blob_object *blob)
394 68482ea3 2017-11-27 stsp {
395 eb651edf 2018-02-11 stsp size_t n;
396 eb651edf 2018-02-11 stsp
397 eb651edf 2018-02-11 stsp n = fread(blob->read_buf, 1, blob->blocksize, blob->f);
398 eb651edf 2018-02-11 stsp if (n == 0 && ferror(blob->f))
399 eb651edf 2018-02-11 stsp return got_ferror(blob->f, GOT_ERR_IO);
400 eb651edf 2018-02-11 stsp *outlenp = n;
401 35e9ba5d 2018-06-21 stsp return NULL;
402 35e9ba5d 2018-06-21 stsp }
403 35e9ba5d 2018-06-21 stsp
404 35e9ba5d 2018-06-21 stsp const struct got_error *
405 0d569390 2023-01-04 op got_object_blob_is_binary(int *binary, struct got_blob_object *blob)
406 0d569390 2023-01-04 op {
407 0d569390 2023-01-04 op const struct got_error *err;
408 0d569390 2023-01-04 op size_t hdrlen, len;
409 0d569390 2023-01-04 op
410 0d569390 2023-01-04 op *binary = 0;
411 0d569390 2023-01-04 op hdrlen = got_object_blob_get_hdrlen(blob);
412 0d569390 2023-01-04 op
413 0d569390 2023-01-04 op if (fseeko(blob->f, hdrlen, SEEK_SET) == -1)
414 0d569390 2023-01-04 op return got_error_from_errno("fseeko");
415 0d569390 2023-01-04 op
416 0d569390 2023-01-04 op err = got_object_blob_read_block(&len, blob);
417 0d569390 2023-01-04 op if (err)
418 0d569390 2023-01-04 op return err;
419 0d569390 2023-01-04 op
420 0d569390 2023-01-04 op *binary = memchr(blob->read_buf, '\0', len) != NULL;
421 0d569390 2023-01-04 op
422 0d569390 2023-01-04 op if (fseeko(blob->f, hdrlen, SEEK_SET) == -1)
423 0d569390 2023-01-04 op return got_error_from_errno("fseeko");
424 0d569390 2023-01-04 op return NULL;
425 0d569390 2023-01-04 op }
426 0d569390 2023-01-04 op
427 0d569390 2023-01-04 op const struct got_error *
428 be659d10 2020-11-18 stsp got_object_blob_dump_to_file(off_t *filesize, int *nlines,
429 6c4c42e0 2019-06-24 stsp off_t **line_offsets, FILE *outfile, struct got_blob_object *blob)
430 35e9ba5d 2018-06-21 stsp {
431 35e9ba5d 2018-06-21 stsp const struct got_error *err = NULL;
432 b6752625 2018-12-24 stsp size_t n, len, hdrlen;
433 84451b3e 2018-07-10 stsp const uint8_t *buf;
434 84451b3e 2018-07-10 stsp int i;
435 c33ebc60 2020-11-18 stsp const int alloc_chunksz = 512;
436 c33ebc60 2020-11-18 stsp size_t nalloc = 0;
437 f595d9bd 2019-08-14 stsp off_t off = 0, total_len = 0;
438 84451b3e 2018-07-10 stsp
439 6c4c42e0 2019-06-24 stsp if (line_offsets)
440 6c4c42e0 2019-06-24 stsp *line_offsets = NULL;
441 f595d9bd 2019-08-14 stsp if (filesize)
442 f595d9bd 2019-08-14 stsp *filesize = 0;
443 84451b3e 2018-07-10 stsp if (nlines)
444 84451b3e 2018-07-10 stsp *nlines = 0;
445 35e9ba5d 2018-06-21 stsp
446 35e9ba5d 2018-06-21 stsp hdrlen = got_object_blob_get_hdrlen(blob);
447 35e9ba5d 2018-06-21 stsp do {
448 35e9ba5d 2018-06-21 stsp err = got_object_blob_read_block(&len, blob);
449 35e9ba5d 2018-06-21 stsp if (err)
450 35e9ba5d 2018-06-21 stsp return err;
451 35e9ba5d 2018-06-21 stsp if (len == 0)
452 35e9ba5d 2018-06-21 stsp break;
453 84451b3e 2018-07-10 stsp buf = got_object_blob_get_read_buf(blob);
454 b02560ec 2019-08-19 stsp i = hdrlen;
455 f1cbc3bc 2020-11-18 stsp if (nlines) {
456 f1cbc3bc 2020-11-18 stsp if (line_offsets && *line_offsets == NULL) {
457 78695fb7 2019-08-12 stsp /* Have some data but perhaps no '\n'. */
458 78695fb7 2019-08-12 stsp *nlines = 1;
459 c33ebc60 2020-11-18 stsp nalloc = alloc_chunksz;
460 c33ebc60 2020-11-18 stsp *line_offsets = calloc(nalloc,
461 c33ebc60 2020-11-18 stsp sizeof(**line_offsets));
462 78695fb7 2019-08-12 stsp if (*line_offsets == NULL)
463 845785d4 2020-02-02 tracey return got_error_from_errno("calloc");
464 b02560ec 2019-08-19 stsp
465 b02560ec 2019-08-19 stsp /* Skip forward over end of first line. */
466 b02560ec 2019-08-19 stsp while (i < len) {
467 b02560ec 2019-08-19 stsp if (buf[i] == '\n')
468 b02560ec 2019-08-19 stsp break;
469 b02560ec 2019-08-19 stsp i++;
470 b02560ec 2019-08-19 stsp }
471 b02560ec 2019-08-19 stsp }
472 b02560ec 2019-08-19 stsp /* Scan '\n' offsets in remaining chunk of data. */
473 b02560ec 2019-08-19 stsp while (i < len) {
474 b02560ec 2019-08-19 stsp if (buf[i] != '\n') {
475 b02560ec 2019-08-19 stsp i++;
476 f595d9bd 2019-08-14 stsp continue;
477 b02560ec 2019-08-19 stsp }
478 f595d9bd 2019-08-14 stsp (*nlines)++;
479 c33ebc60 2020-11-18 stsp if (line_offsets && nalloc < *nlines) {
480 c33ebc60 2020-11-18 stsp size_t n = *nlines + alloc_chunksz;
481 78695fb7 2019-08-12 stsp off_t *o = recallocarray(*line_offsets,
482 c33ebc60 2020-11-18 stsp nalloc, n, sizeof(**line_offsets));
483 78695fb7 2019-08-12 stsp if (o == NULL) {
484 78695fb7 2019-08-12 stsp free(*line_offsets);
485 78695fb7 2019-08-12 stsp *line_offsets = NULL;
486 78695fb7 2019-08-12 stsp return got_error_from_errno(
487 78695fb7 2019-08-12 stsp "recallocarray");
488 78695fb7 2019-08-12 stsp }
489 78695fb7 2019-08-12 stsp *line_offsets = o;
490 c33ebc60 2020-11-18 stsp nalloc = n;
491 78695fb7 2019-08-12 stsp }
492 f1cbc3bc 2020-11-18 stsp if (line_offsets) {
493 f1cbc3bc 2020-11-18 stsp off = total_len + i - hdrlen + 1;
494 f1cbc3bc 2020-11-18 stsp (*line_offsets)[*nlines - 1] = off;
495 f1cbc3bc 2020-11-18 stsp }
496 b02560ec 2019-08-19 stsp i++;
497 6c4c42e0 2019-06-24 stsp }
498 84451b3e 2018-07-10 stsp }
499 35e9ba5d 2018-06-21 stsp /* Skip blob object header first time around. */
500 454a6b59 2018-12-24 stsp n = fwrite(buf + hdrlen, 1, len - hdrlen, outfile);
501 b6752625 2018-12-24 stsp if (n != len - hdrlen)
502 b6752625 2018-12-24 stsp return got_ferror(outfile, GOT_ERR_IO);
503 f595d9bd 2019-08-14 stsp total_len += len - hdrlen;
504 35e9ba5d 2018-06-21 stsp hdrlen = 0;
505 35e9ba5d 2018-06-21 stsp } while (len != 0);
506 35e9ba5d 2018-06-21 stsp
507 cbe7f848 2019-02-11 stsp if (fflush(outfile) != 0)
508 638f9024 2019-05-13 stsp return got_error_from_errno("fflush");
509 35e9ba5d 2018-06-21 stsp rewind(outfile);
510 35e9ba5d 2018-06-21 stsp
511 f595d9bd 2019-08-14 stsp if (filesize)
512 f595d9bd 2019-08-14 stsp *filesize = total_len;
513 f595d9bd 2019-08-14 stsp
514 776d4d29 2018-06-17 stsp return NULL;
515 f4a881ce 2018-11-17 stsp }
516 f4a881ce 2018-11-17 stsp
517 d24820bf 2019-08-11 stsp const char *
518 d24820bf 2019-08-11 stsp got_object_tag_get_name(struct got_tag_object *tag)
519 d24820bf 2019-08-11 stsp {
520 d24820bf 2019-08-11 stsp return tag->tag;
521 0bd18d37 2019-02-01 stsp }
522 0bd18d37 2019-02-01 stsp
523 0bd18d37 2019-02-01 stsp int
524 0bd18d37 2019-02-01 stsp got_object_tag_get_object_type(struct got_tag_object *tag)
525 0bd18d37 2019-02-01 stsp {
526 0bd18d37 2019-02-01 stsp return tag->obj_type;
527 0bd18d37 2019-02-01 stsp }
528 0bd18d37 2019-02-01 stsp
529 0bd18d37 2019-02-01 stsp struct got_object_id *
530 0bd18d37 2019-02-01 stsp got_object_tag_get_object_id(struct got_tag_object *tag)
531 0bd18d37 2019-02-01 stsp {
532 0bd18d37 2019-02-01 stsp return &tag->id;
533 01073a5d 2019-08-22 stsp }
534 01073a5d 2019-08-22 stsp
535 01073a5d 2019-08-22 stsp time_t
536 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_time(struct got_tag_object *tag)
537 01073a5d 2019-08-22 stsp {
538 01073a5d 2019-08-22 stsp return tag->tagger_time;
539 01073a5d 2019-08-22 stsp }
540 01073a5d 2019-08-22 stsp
541 01073a5d 2019-08-22 stsp time_t
542 01073a5d 2019-08-22 stsp got_object_tag_get_tagger_gmtoff(struct got_tag_object *tag)
543 01073a5d 2019-08-22 stsp {
544 01073a5d 2019-08-22 stsp return tag->tagger_gmtoff;
545 01073a5d 2019-08-22 stsp }
546 01073a5d 2019-08-22 stsp
547 01073a5d 2019-08-22 stsp const char *
548 01073a5d 2019-08-22 stsp got_object_tag_get_tagger(struct got_tag_object *tag)
549 01073a5d 2019-08-22 stsp {
550 01073a5d 2019-08-22 stsp return tag->tagger;
551 776d4d29 2018-06-17 stsp }
552 776d4d29 2018-06-17 stsp
553 01073a5d 2019-08-22 stsp const char *
554 01073a5d 2019-08-22 stsp got_object_tag_get_message(struct got_tag_object *tag)
555 01073a5d 2019-08-22 stsp {
556 01073a5d 2019-08-22 stsp return tag->tagmsg;
557 01073a5d 2019-08-22 stsp }
558 01073a5d 2019-08-22 stsp
559 776d4d29 2018-06-17 stsp static struct got_tree_entry *
560 65a9bbe9 2018-09-15 stsp find_entry_by_name(struct got_tree_object *tree, const char *name, size_t len)
561 776d4d29 2018-06-17 stsp {
562 56e0773d 2019-11-28 stsp int i;
563 776d4d29 2018-06-17 stsp
564 63da309a 2018-11-07 stsp /* Note that tree entries are sorted in strncmp() order. */
565 56e0773d 2019-11-28 stsp for (i = 0; i < tree->nentries; i++) {
566 56e0773d 2019-11-28 stsp struct got_tree_entry *te = &tree->entries[i];
567 63da309a 2018-11-07 stsp int cmp = strncmp(te->name, name, len);
568 63da309a 2018-11-07 stsp if (cmp < 0)
569 63da309a 2018-11-07 stsp continue;
570 63da309a 2018-11-07 stsp if (cmp > 0)
571 63da309a 2018-11-07 stsp break;
572 63da309a 2018-11-07 stsp if (te->name[len] == '\0')
573 776d4d29 2018-06-17 stsp return te;
574 776d4d29 2018-06-17 stsp }
575 eb651edf 2018-02-11 stsp return NULL;
576 a129376b 2019-03-28 stsp }
577 a129376b 2019-03-28 stsp
578 56e0773d 2019-11-28 stsp struct got_tree_entry *
579 a129376b 2019-03-28 stsp got_object_tree_find_entry(struct got_tree_object *tree, const char *name)
580 a129376b 2019-03-28 stsp {
581 a129376b 2019-03-28 stsp return find_entry_by_name(tree, name, strlen(name));
582 776d4d29 2018-06-17 stsp }
583 776d4d29 2018-06-17 stsp
584 776d4d29 2018-06-17 stsp const struct got_error *
585 67b631c9 2021-10-10 stsp got_object_tree_find_path(struct got_object_id **id, mode_t *mode,
586 67b631c9 2021-10-10 stsp struct got_repository *repo, struct got_tree_object *tree,
587 67b631c9 2021-10-10 stsp const char *path)
588 776d4d29 2018-06-17 stsp {
589 776d4d29 2018-06-17 stsp const struct got_error *err = NULL;
590 67b631c9 2021-10-10 stsp struct got_tree_object *subtree = NULL;
591 db37e2c0 2018-06-21 stsp struct got_tree_entry *te = NULL;
592 65a9bbe9 2018-09-15 stsp const char *seg, *s;
593 b7cd37e5 2018-11-18 stsp size_t seglen;
594 776d4d29 2018-06-17 stsp
595 27d434c2 2018-09-15 stsp *id = NULL;
596 776d4d29 2018-06-17 stsp
597 65a9bbe9 2018-09-15 stsp s = path;
598 5e54fb30 2019-05-31 stsp while (s[0] == '/')
599 5e54fb30 2019-05-31 stsp s++;
600 776d4d29 2018-06-17 stsp seg = s;
601 65a9bbe9 2018-09-15 stsp seglen = 0;
602 67b631c9 2021-10-10 stsp subtree = tree;
603 b7cd37e5 2018-11-18 stsp while (*s) {
604 776d4d29 2018-06-17 stsp struct got_tree_object *next_tree;
605 776d4d29 2018-06-17 stsp
606 776d4d29 2018-06-17 stsp if (*s != '/') {
607 776d4d29 2018-06-17 stsp s++;
608 65a9bbe9 2018-09-15 stsp seglen++;
609 00530cfb 2018-06-21 stsp if (*s)
610 00530cfb 2018-06-21 stsp continue;
611 776d4d29 2018-06-17 stsp }
612 776d4d29 2018-06-17 stsp
613 67b631c9 2021-10-10 stsp te = find_entry_by_name(subtree, seg, seglen);
614 db37e2c0 2018-06-21 stsp if (te == NULL) {
615 b66cd6f3 2020-07-31 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
616 776d4d29 2018-06-17 stsp goto done;
617 776d4d29 2018-06-17 stsp }
618 776d4d29 2018-06-17 stsp
619 b7cd37e5 2018-11-18 stsp if (*s == '\0')
620 67606321 2018-06-21 stsp break;
621 67606321 2018-06-21 stsp
622 776d4d29 2018-06-17 stsp seg = s + 1;
623 65a9bbe9 2018-09-15 stsp seglen = 0;
624 776d4d29 2018-06-17 stsp s++;
625 776d4d29 2018-06-17 stsp if (*s) {
626 776d4d29 2018-06-17 stsp err = got_object_open_as_tree(&next_tree, repo,
627 56e0773d 2019-11-28 stsp &te->id);
628 db37e2c0 2018-06-21 stsp te = NULL;
629 776d4d29 2018-06-17 stsp if (err)
630 776d4d29 2018-06-17 stsp goto done;
631 67b631c9 2021-10-10 stsp if (subtree != tree)
632 67b631c9 2021-10-10 stsp got_object_tree_close(subtree);
633 67b631c9 2021-10-10 stsp subtree = next_tree;
634 776d4d29 2018-06-17 stsp }
635 776d4d29 2018-06-17 stsp }
636 776d4d29 2018-06-17 stsp
637 27d434c2 2018-09-15 stsp if (te) {
638 56e0773d 2019-11-28 stsp *id = got_object_id_dup(&te->id);
639 27d434c2 2018-09-15 stsp if (*id == NULL)
640 638f9024 2019-05-13 stsp return got_error_from_errno("got_object_id_dup");
641 67b631c9 2021-10-10 stsp if (mode)
642 67b631c9 2021-10-10 stsp *mode = te->mode;
643 27d434c2 2018-09-15 stsp } else
644 b66cd6f3 2020-07-31 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
645 67b631c9 2021-10-10 stsp done:
646 67b631c9 2021-10-10 stsp if (subtree && subtree != tree)
647 67b631c9 2021-10-10 stsp got_object_tree_close(subtree);
648 67b631c9 2021-10-10 stsp return err;
649 67b631c9 2021-10-10 stsp }
650 8e359fa0 2022-10-13 stsp
651 67b631c9 2021-10-10 stsp const struct got_error *
652 67b631c9 2021-10-10 stsp got_object_id_by_path(struct got_object_id **id, struct got_repository *repo,
653 a44927cc 2022-04-07 stsp struct got_commit_object *commit, const char *path)
654 67b631c9 2021-10-10 stsp {
655 67b631c9 2021-10-10 stsp const struct got_error *err = NULL;
656 67b631c9 2021-10-10 stsp struct got_tree_object *tree = NULL;
657 67b631c9 2021-10-10 stsp
658 67b631c9 2021-10-10 stsp *id = NULL;
659 67b631c9 2021-10-10 stsp
660 67b631c9 2021-10-10 stsp /* Handle opening of root of commit's tree. */
661 67b631c9 2021-10-10 stsp if (got_path_is_root_dir(path)) {
662 67b631c9 2021-10-10 stsp *id = got_object_id_dup(commit->tree_id);
663 67b631c9 2021-10-10 stsp if (*id == NULL)
664 67b631c9 2021-10-10 stsp err = got_error_from_errno("got_object_id_dup");
665 67b631c9 2021-10-10 stsp } else {
666 67b631c9 2021-10-10 stsp err = got_object_open_as_tree(&tree, repo, commit->tree_id);
667 67b631c9 2021-10-10 stsp if (err)
668 67b631c9 2021-10-10 stsp goto done;
669 67b631c9 2021-10-10 stsp err = got_object_tree_find_path(id, NULL, repo, tree, path);
670 67b631c9 2021-10-10 stsp }
671 776d4d29 2018-06-17 stsp done:
672 776d4d29 2018-06-17 stsp if (tree)
673 776d4d29 2018-06-17 stsp got_object_tree_close(tree);
674 776d4d29 2018-06-17 stsp return err;
675 ac5f2b26 2020-05-05 stsp }
676 ac5f2b26 2020-05-05 stsp
677 ac5f2b26 2020-05-05 stsp /*
678 ac5f2b26 2020-05-05 stsp * Normalize file mode bits to avoid false positive tree entry differences
679 ac5f2b26 2020-05-05 stsp * in case tree entries have unexpected mode bits set.
680 ac5f2b26 2020-05-05 stsp */
681 ac5f2b26 2020-05-05 stsp static mode_t
682 ac5f2b26 2020-05-05 stsp normalize_mode_for_comparison(mode_t mode)
683 ac5f2b26 2020-05-05 stsp {
684 ac5f2b26 2020-05-05 stsp /*
685 ac5f2b26 2020-05-05 stsp * For directories, the only relevant bit is the IFDIR bit.
686 ac5f2b26 2020-05-05 stsp * This allows us to detect paths changing from a directory
687 ac5f2b26 2020-05-05 stsp * to a file and vice versa.
688 ac5f2b26 2020-05-05 stsp */
689 ac5f2b26 2020-05-05 stsp if (S_ISDIR(mode))
690 ac5f2b26 2020-05-05 stsp return mode & S_IFDIR;
691 40dde666 2020-07-23 stsp
692 40dde666 2020-07-23 stsp /*
693 40dde666 2020-07-23 stsp * For symlinks, the only relevant bit is the IFLNK bit.
694 40dde666 2020-07-23 stsp * This allows us to detect paths changing from a symlinks
695 40dde666 2020-07-23 stsp * to a file or directory and vice versa.
696 40dde666 2020-07-23 stsp */
697 40dde666 2020-07-23 stsp if (S_ISLNK(mode))
698 40dde666 2020-07-23 stsp return mode & S_IFLNK;
699 ac5f2b26 2020-05-05 stsp
700 ac5f2b26 2020-05-05 stsp /* For files, the only change we care about is the executable bit. */
701 ac5f2b26 2020-05-05 stsp return mode & S_IXUSR;
702 68482ea3 2017-11-27 stsp }
703 07862c20 2018-09-15 stsp
704 07862c20 2018-09-15 stsp const struct got_error *
705 07862c20 2018-09-15 stsp got_object_tree_path_changed(int *changed,
706 07862c20 2018-09-15 stsp struct got_tree_object *tree01, struct got_tree_object *tree02,
707 07862c20 2018-09-15 stsp const char *path, struct got_repository *repo)
708 07862c20 2018-09-15 stsp {
709 07862c20 2018-09-15 stsp const struct got_error *err = NULL;
710 07862c20 2018-09-15 stsp struct got_tree_object *tree1 = NULL, *tree2 = NULL;
711 07862c20 2018-09-15 stsp struct got_tree_entry *te1 = NULL, *te2 = NULL;
712 65a9bbe9 2018-09-15 stsp const char *seg, *s;
713 3b7f9878 2018-11-18 stsp size_t seglen;
714 07862c20 2018-09-15 stsp
715 07862c20 2018-09-15 stsp *changed = 0;
716 07862c20 2018-09-15 stsp
717 07862c20 2018-09-15 stsp /* We not do support comparing the root path. */
718 61a7d79f 2020-02-29 stsp if (got_path_is_root_dir(path))
719 63f810e6 2020-02-29 stsp return got_error_path(path, GOT_ERR_BAD_PATH);
720 07862c20 2018-09-15 stsp
721 07862c20 2018-09-15 stsp tree1 = tree01;
722 07862c20 2018-09-15 stsp tree2 = tree02;
723 65a9bbe9 2018-09-15 stsp s = path;
724 61a7d79f 2020-02-29 stsp while (*s == '/')
725 61a7d79f 2020-02-29 stsp s++;
726 07862c20 2018-09-15 stsp seg = s;
727 65a9bbe9 2018-09-15 stsp seglen = 0;
728 3b7f9878 2018-11-18 stsp while (*s) {
729 07862c20 2018-09-15 stsp struct got_tree_object *next_tree1, *next_tree2;
730 ac5f2b26 2020-05-05 stsp mode_t mode1, mode2;
731 07862c20 2018-09-15 stsp
732 07862c20 2018-09-15 stsp if (*s != '/') {
733 07862c20 2018-09-15 stsp s++;
734 65a9bbe9 2018-09-15 stsp seglen++;
735 07862c20 2018-09-15 stsp if (*s)
736 07862c20 2018-09-15 stsp continue;
737 07862c20 2018-09-15 stsp }
738 07862c20 2018-09-15 stsp
739 65a9bbe9 2018-09-15 stsp te1 = find_entry_by_name(tree1, seg, seglen);
740 07862c20 2018-09-15 stsp if (te1 == NULL) {
741 07862c20 2018-09-15 stsp err = got_error(GOT_ERR_NO_OBJ);
742 07862c20 2018-09-15 stsp goto done;
743 07862c20 2018-09-15 stsp }
744 07862c20 2018-09-15 stsp
745 e8bfb8f3 2020-12-18 stsp if (tree2)
746 e8bfb8f3 2020-12-18 stsp te2 = find_entry_by_name(tree2, seg, seglen);
747 07862c20 2018-09-15 stsp
748 e8bfb8f3 2020-12-18 stsp if (te2) {
749 e8bfb8f3 2020-12-18 stsp mode1 = normalize_mode_for_comparison(te1->mode);
750 e8bfb8f3 2020-12-18 stsp mode2 = normalize_mode_for_comparison(te2->mode);
751 e8bfb8f3 2020-12-18 stsp if (mode1 != mode2) {
752 e8bfb8f3 2020-12-18 stsp *changed = 1;
753 e8bfb8f3 2020-12-18 stsp goto done;
754 e8bfb8f3 2020-12-18 stsp }
755 e8bfb8f3 2020-12-18 stsp
756 e8bfb8f3 2020-12-18 stsp if (got_object_id_cmp(&te1->id, &te2->id) == 0) {
757 e8bfb8f3 2020-12-18 stsp *changed = 0;
758 e8bfb8f3 2020-12-18 stsp goto done;
759 e8bfb8f3 2020-12-18 stsp }
760 07862c20 2018-09-15 stsp }
761 07862c20 2018-09-15 stsp
762 3b7f9878 2018-11-18 stsp if (*s == '\0') { /* final path element */
763 07862c20 2018-09-15 stsp *changed = 1;
764 07862c20 2018-09-15 stsp goto done;
765 07862c20 2018-09-15 stsp }
766 07862c20 2018-09-15 stsp
767 07862c20 2018-09-15 stsp seg = s + 1;
768 07862c20 2018-09-15 stsp s++;
769 65a9bbe9 2018-09-15 stsp seglen = 0;
770 07862c20 2018-09-15 stsp if (*s) {
771 07862c20 2018-09-15 stsp err = got_object_open_as_tree(&next_tree1, repo,
772 56e0773d 2019-11-28 stsp &te1->id);
773 07862c20 2018-09-15 stsp te1 = NULL;
774 07862c20 2018-09-15 stsp if (err)
775 07862c20 2018-09-15 stsp goto done;
776 a31cea73 2018-09-15 stsp if (tree1 != tree01)
777 a31cea73 2018-09-15 stsp got_object_tree_close(tree1);
778 07862c20 2018-09-15 stsp tree1 = next_tree1;
779 07862c20 2018-09-15 stsp
780 e8bfb8f3 2020-12-18 stsp if (te2) {
781 e8bfb8f3 2020-12-18 stsp err = got_object_open_as_tree(&next_tree2, repo,
782 e8bfb8f3 2020-12-18 stsp &te2->id);
783 e8bfb8f3 2020-12-18 stsp te2 = NULL;
784 e8bfb8f3 2020-12-18 stsp if (err)
785 e8bfb8f3 2020-12-18 stsp goto done;
786 e8bfb8f3 2020-12-18 stsp if (tree2 != tree02)
787 e8bfb8f3 2020-12-18 stsp got_object_tree_close(tree2);
788 e8bfb8f3 2020-12-18 stsp tree2 = next_tree2;
789 e8bfb8f3 2020-12-18 stsp } else if (tree2) {
790 e8bfb8f3 2020-12-18 stsp if (tree2 != tree02)
791 e8bfb8f3 2020-12-18 stsp got_object_tree_close(tree2);
792 e8bfb8f3 2020-12-18 stsp tree2 = NULL;
793 e8bfb8f3 2020-12-18 stsp }
794 07862c20 2018-09-15 stsp }
795 07862c20 2018-09-15 stsp }
796 07862c20 2018-09-15 stsp done:
797 a31cea73 2018-09-15 stsp if (tree1 && tree1 != tree01)
798 07862c20 2018-09-15 stsp got_object_tree_close(tree1);
799 a31cea73 2018-09-15 stsp if (tree2 && tree2 != tree02)
800 07862c20 2018-09-15 stsp got_object_tree_close(tree2);
801 77880158 2018-11-04 stsp return err;
802 77880158 2018-11-04 stsp }
803 ed175427 2019-05-09 stsp
804 ed175427 2019-05-09 stsp const struct got_error *
805 ed175427 2019-05-09 stsp got_object_tree_entry_dup(struct got_tree_entry **new_te,
806 ed175427 2019-05-09 stsp struct got_tree_entry *te)
807 ed175427 2019-05-09 stsp {
808 ed175427 2019-05-09 stsp const struct got_error *err = NULL;
809 ed175427 2019-05-09 stsp
810 ed175427 2019-05-09 stsp *new_te = calloc(1, sizeof(**new_te));
811 ed175427 2019-05-09 stsp if (*new_te == NULL)
812 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
813 ed175427 2019-05-09 stsp
814 ed175427 2019-05-09 stsp (*new_te)->mode = te->mode;
815 56e0773d 2019-11-28 stsp memcpy((*new_te)->name, te->name, sizeof((*new_te)->name));
816 56e0773d 2019-11-28 stsp memcpy(&(*new_te)->id, &te->id, sizeof((*new_te)->id));
817 8c4eabf2 2019-05-10 stsp return err;
818 63c5ca5d 2019-08-24 stsp }
819 63c5ca5d 2019-08-24 stsp
820 63c5ca5d 2019-08-24 stsp int
821 56e0773d 2019-11-28 stsp got_object_tree_entry_is_submodule(struct got_tree_entry *te)
822 63c5ca5d 2019-08-24 stsp {
823 63c5ca5d 2019-08-24 stsp return (te->mode & S_IFMT) == (S_IFDIR | S_IFLNK);
824 e40622f4 2020-07-23 stsp }
825 e40622f4 2020-07-23 stsp
826 e40622f4 2020-07-23 stsp int
827 e40622f4 2020-07-23 stsp got_object_tree_entry_is_symlink(struct got_tree_entry *te)
828 e40622f4 2020-07-23 stsp {
829 e40622f4 2020-07-23 stsp /* S_IFDIR check avoids confusing symlinks with submodules. */
830 e40622f4 2020-07-23 stsp return ((te->mode & (S_IFDIR | S_IFLNK)) == S_IFLNK);
831 e40622f4 2020-07-23 stsp }
832 e40622f4 2020-07-23 stsp
833 e40622f4 2020-07-23 stsp static const struct got_error *
834 e40622f4 2020-07-23 stsp resolve_symlink(char **link_target, const char *path,
835 a44927cc 2022-04-07 stsp struct got_commit_object *commit, struct got_repository *repo)
836 e40622f4 2020-07-23 stsp {
837 e40622f4 2020-07-23 stsp const struct got_error *err = NULL;
838 dbdd6209 2020-10-19 stsp char buf[PATH_MAX];
839 e40622f4 2020-07-23 stsp char *name, *parent_path = NULL;
840 e40622f4 2020-07-23 stsp struct got_object_id *tree_obj_id = NULL;
841 e40622f4 2020-07-23 stsp struct got_tree_object *tree = NULL;
842 e40622f4 2020-07-23 stsp struct got_tree_entry *te = NULL;
843 e40622f4 2020-07-23 stsp
844 e40622f4 2020-07-23 stsp *link_target = NULL;
845 559d127c 2020-07-23 stsp
846 dbdd6209 2020-10-19 stsp if (strlcpy(buf, path, sizeof(buf)) >= sizeof(buf))
847 dbdd6209 2020-10-19 stsp return got_error(GOT_ERR_NO_SPACE);
848 dbdd6209 2020-10-19 stsp
849 dbdd6209 2020-10-19 stsp name = basename(buf);
850 e40622f4 2020-07-23 stsp if (name == NULL)
851 e40622f4 2020-07-23 stsp return got_error_from_errno2("basename", path);
852 e40622f4 2020-07-23 stsp
853 e40622f4 2020-07-23 stsp err = got_path_dirname(&parent_path, path);
854 e40622f4 2020-07-23 stsp if (err)
855 e40622f4 2020-07-23 stsp return err;
856 e40622f4 2020-07-23 stsp
857 a44927cc 2022-04-07 stsp err = got_object_id_by_path(&tree_obj_id, repo, commit,
858 e40622f4 2020-07-23 stsp parent_path);
859 e40622f4 2020-07-23 stsp if (err) {
860 e40622f4 2020-07-23 stsp if (err->code == GOT_ERR_NO_TREE_ENTRY) {
861 e40622f4 2020-07-23 stsp /* Display the complete path in error message. */
862 e40622f4 2020-07-23 stsp err = got_error_path(path, err->code);
863 e40622f4 2020-07-23 stsp }
864 e40622f4 2020-07-23 stsp goto done;
865 e40622f4 2020-07-23 stsp }
866 e40622f4 2020-07-23 stsp
867 e40622f4 2020-07-23 stsp err = got_object_open_as_tree(&tree, repo, tree_obj_id);
868 e40622f4 2020-07-23 stsp if (err)
869 e40622f4 2020-07-23 stsp goto done;
870 e40622f4 2020-07-23 stsp
871 e40622f4 2020-07-23 stsp te = got_object_tree_find_entry(tree, name);
872 e40622f4 2020-07-23 stsp if (te == NULL) {
873 e40622f4 2020-07-23 stsp err = got_error_path(path, GOT_ERR_NO_TREE_ENTRY);
874 e40622f4 2020-07-23 stsp goto done;
875 e40622f4 2020-07-23 stsp }
876 e40622f4 2020-07-23 stsp
877 e40622f4 2020-07-23 stsp if (got_object_tree_entry_is_symlink(te)) {
878 e40622f4 2020-07-23 stsp err = got_tree_entry_get_symlink_target(link_target, te, repo);
879 e40622f4 2020-07-23 stsp if (err)
880 e40622f4 2020-07-23 stsp goto done;
881 e40622f4 2020-07-23 stsp if (!got_path_is_absolute(*link_target)) {
882 e40622f4 2020-07-23 stsp char *abspath;
883 e40622f4 2020-07-23 stsp if (asprintf(&abspath, "%s/%s", parent_path,
884 e40622f4 2020-07-23 stsp *link_target) == -1) {
885 e40622f4 2020-07-23 stsp err = got_error_from_errno("asprintf");
886 e40622f4 2020-07-23 stsp goto done;
887 e40622f4 2020-07-23 stsp }
888 e40622f4 2020-07-23 stsp free(*link_target);
889 e40622f4 2020-07-23 stsp *link_target = malloc(PATH_MAX);
890 e40622f4 2020-07-23 stsp if (*link_target == NULL) {
891 e40622f4 2020-07-23 stsp err = got_error_from_errno("malloc");
892 e40622f4 2020-07-23 stsp goto done;
893 e40622f4 2020-07-23 stsp }
894 e40622f4 2020-07-23 stsp err = got_canonpath(abspath, *link_target, PATH_MAX);
895 e40622f4 2020-07-23 stsp free(abspath);
896 e40622f4 2020-07-23 stsp if (err)
897 e40622f4 2020-07-23 stsp goto done;
898 e40622f4 2020-07-23 stsp }
899 e40622f4 2020-07-23 stsp }
900 e40622f4 2020-07-23 stsp done:
901 b68bd9d2 2022-09-03 op free(parent_path);
902 e40622f4 2020-07-23 stsp free(tree_obj_id);
903 e40622f4 2020-07-23 stsp if (tree)
904 e40622f4 2020-07-23 stsp got_object_tree_close(tree);
905 e40622f4 2020-07-23 stsp if (err) {
906 e40622f4 2020-07-23 stsp free(*link_target);
907 e40622f4 2020-07-23 stsp *link_target = NULL;
908 e40622f4 2020-07-23 stsp }
909 e40622f4 2020-07-23 stsp return err;
910 ca6e02ac 2020-01-07 stsp }
911 ca6e02ac 2020-01-07 stsp
912 ca6e02ac 2020-01-07 stsp const struct got_error *
913 e40622f4 2020-07-23 stsp got_object_resolve_symlinks(char **link_target, const char *path,
914 a44927cc 2022-04-07 stsp struct got_commit_object *commit, struct got_repository *repo)
915 e40622f4 2020-07-23 stsp {
916 e40622f4 2020-07-23 stsp const struct got_error *err = NULL;
917 e40622f4 2020-07-23 stsp char *next_target = NULL;
918 e40622f4 2020-07-23 stsp int max_recursion = 40; /* matches Git */
919 e40622f4 2020-07-23 stsp
920 e40622f4 2020-07-23 stsp *link_target = NULL;
921 e40622f4 2020-07-23 stsp
922 e40622f4 2020-07-23 stsp do {
923 e40622f4 2020-07-23 stsp err = resolve_symlink(&next_target,
924 a44927cc 2022-04-07 stsp *link_target ? *link_target : path, commit, repo);
925 e40622f4 2020-07-23 stsp if (err)
926 e40622f4 2020-07-23 stsp break;
927 e40622f4 2020-07-23 stsp if (next_target) {
928 e40622f4 2020-07-23 stsp free(*link_target);
929 e40622f4 2020-07-23 stsp if (--max_recursion == 0) {
930 e40622f4 2020-07-23 stsp err = got_error_path(path, GOT_ERR_RECURSION);
931 e40622f4 2020-07-23 stsp *link_target = NULL;
932 e40622f4 2020-07-23 stsp break;
933 e40622f4 2020-07-23 stsp }
934 e40622f4 2020-07-23 stsp *link_target = next_target;
935 e40622f4 2020-07-23 stsp }
936 e40622f4 2020-07-23 stsp } while (next_target);
937 e40622f4 2020-07-23 stsp
938 e40622f4 2020-07-23 stsp return err;
939 e40622f4 2020-07-23 stsp }
940 ca6e02ac 2020-01-07 stsp
941 34a842a4 2022-09-18 mark void
942 34a842a4 2022-09-18 mark got_object_commit_retain(struct got_commit_object *commit)
943 568eae95 2022-09-11 mark {
944 568eae95 2022-09-11 mark commit->refcnt++;
945 568eae95 2022-09-11 mark }
946 13b2bc37 2022-10-23 stsp
947 13b2bc37 2022-10-23 stsp const struct got_error *
948 13b2bc37 2022-10-23 stsp got_object_raw_alloc(struct got_raw_object **obj, uint8_t *outbuf, int *outfd,
949 13b2bc37 2022-10-23 stsp size_t hdrlen, off_t size)
950 13b2bc37 2022-10-23 stsp {
951 13b2bc37 2022-10-23 stsp const struct got_error *err = NULL;
952 1c28a361 2022-10-25 op off_t tot;
953 13b2bc37 2022-10-23 stsp
954 1c28a361 2022-10-25 op tot = hdrlen + size;
955 1c28a361 2022-10-25 op
956 13b2bc37 2022-10-23 stsp *obj = calloc(1, sizeof(**obj));
957 13b2bc37 2022-10-23 stsp if (*obj == NULL) {
958 13b2bc37 2022-10-23 stsp err = got_error_from_errno("calloc");
959 13b2bc37 2022-10-23 stsp goto done;
960 13b2bc37 2022-10-23 stsp }
961 13b2bc37 2022-10-23 stsp (*obj)->fd = -1;
962 13b2bc37 2022-10-23 stsp (*obj)->tempfile_idx = -1;
963 13b2bc37 2022-10-23 stsp
964 13b2bc37 2022-10-23 stsp if (outbuf) {
965 13b2bc37 2022-10-23 stsp (*obj)->data = outbuf;
966 13b2bc37 2022-10-23 stsp } else {
967 13b2bc37 2022-10-23 stsp struct stat sb;
968 13b2bc37 2022-10-23 stsp if (fstat(*outfd, &sb) == -1) {
969 13b2bc37 2022-10-23 stsp err = got_error_from_errno("fstat");
970 13b2bc37 2022-10-23 stsp goto done;
971 13b2bc37 2022-10-23 stsp }
972 13b2bc37 2022-10-23 stsp
973 1c28a361 2022-10-25 op if (sb.st_size != tot) {
974 13b2bc37 2022-10-23 stsp err = got_error(GOT_ERR_PRIVSEP_LEN);
975 13b2bc37 2022-10-23 stsp goto done;
976 13b2bc37 2022-10-23 stsp }
977 13b2bc37 2022-10-23 stsp #ifndef GOT_PACK_NO_MMAP
978 1c28a361 2022-10-25 op if (tot > 0 && tot <= SIZE_MAX) {
979 1c28a361 2022-10-25 op (*obj)->data = mmap(NULL, tot, PROT_READ,
980 13b2bc37 2022-10-23 stsp MAP_PRIVATE, *outfd, 0);
981 13b2bc37 2022-10-23 stsp if ((*obj)->data == MAP_FAILED) {
982 13b2bc37 2022-10-23 stsp if (errno != ENOMEM) {
983 13b2bc37 2022-10-23 stsp err = got_error_from_errno("mmap");
984 13b2bc37 2022-10-23 stsp goto done;
985 13b2bc37 2022-10-23 stsp }
986 13b2bc37 2022-10-23 stsp (*obj)->data = NULL;
987 13b2bc37 2022-10-23 stsp } else {
988 13b2bc37 2022-10-23 stsp (*obj)->fd = *outfd;
989 13b2bc37 2022-10-23 stsp *outfd = -1;
990 13b2bc37 2022-10-23 stsp }
991 13b2bc37 2022-10-23 stsp }
992 13b2bc37 2022-10-23 stsp #endif
993 13b2bc37 2022-10-23 stsp if (*outfd != -1) {
994 13b2bc37 2022-10-23 stsp (*obj)->f = fdopen(*outfd, "r");
995 13b2bc37 2022-10-23 stsp if ((*obj)->f == NULL) {
996 13b2bc37 2022-10-23 stsp err = got_error_from_errno("fdopen");
997 13b2bc37 2022-10-23 stsp goto done;
998 13b2bc37 2022-10-23 stsp }
999 13b2bc37 2022-10-23 stsp *outfd = -1;
1000 13b2bc37 2022-10-23 stsp }
1001 13b2bc37 2022-10-23 stsp }
1002 13b2bc37 2022-10-23 stsp (*obj)->hdrlen = hdrlen;
1003 13b2bc37 2022-10-23 stsp (*obj)->size = size;
1004 13b2bc37 2022-10-23 stsp done:
1005 13b2bc37 2022-10-23 stsp if (err) {
1006 13b2bc37 2022-10-23 stsp if (*obj) {
1007 13b2bc37 2022-10-23 stsp got_object_raw_close(*obj);
1008 13b2bc37 2022-10-23 stsp *obj = NULL;
1009 13b2bc37 2022-10-23 stsp }
1010 13b2bc37 2022-10-23 stsp } else
1011 13b2bc37 2022-10-23 stsp (*obj)->refcnt++;
1012 13b2bc37 2022-10-23 stsp return err;
1013 13b2bc37 2022-10-23 stsp }