Blame


1 c48c4a9c 2018-03-11 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 Stefan Sperling <stsp@openbsd.org>
3 c48c4a9c 2018-03-11 stsp *
4 c48c4a9c 2018-03-11 stsp * Permission to use, copy, modify, and distribute this software for any
5 c48c4a9c 2018-03-11 stsp * purpose with or without fee is hereby granted, provided that the above
6 c48c4a9c 2018-03-11 stsp * copyright notice and this permission notice appear in all copies.
7 c48c4a9c 2018-03-11 stsp *
8 c48c4a9c 2018-03-11 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 c48c4a9c 2018-03-11 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 c48c4a9c 2018-03-11 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 c48c4a9c 2018-03-11 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 c48c4a9c 2018-03-11 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 c48c4a9c 2018-03-11 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 c48c4a9c 2018-03-11 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 c48c4a9c 2018-03-11 stsp */
16 4fccd2fe 2023-03-08 thomas
17 4fccd2fe 2023-03-08 thomas #include "got_compat.h"
18 c48c4a9c 2018-03-11 stsp
19 8b925c6c 2022-07-16 thomas #include <sys/queue.h>
20 c48c4a9c 2018-03-11 stsp #include <sys/stat.h>
21 c48c4a9c 2018-03-11 stsp
22 03df25b3 2019-05-11 stsp #include <errno.h>
23 d1f6d47b 2019-02-04 stsp #include <dirent.h>
24 6fc93f37 2019-12-13 stsp #include <fcntl.h>
25 c48c4a9c 2018-03-11 stsp #include <stdio.h>
26 c48c4a9c 2018-03-11 stsp #include <stdlib.h>
27 fff2d774 2023-07-29 thomas #include <stdint.h>
28 c48c4a9c 2018-03-11 stsp #include <string.h>
29 133d2798 2019-01-08 stsp #include <limits.h>
30 6fc93f37 2019-12-13 stsp #include <unistd.h>
31 c48c4a9c 2018-03-11 stsp
32 c48c4a9c 2018-03-11 stsp #include "got_error.h"
33 8da9e5f4 2019-01-12 stsp #include "got_object.h"
34 324d37e7 2019-05-11 stsp #include "got_path.h"
35 c48c4a9c 2018-03-11 stsp
36 b16893ba 2023-02-24 thomas #include "got_lib_hash.h"
37 718b3ab0 2018-03-17 stsp #include "got_lib_fileindex.h"
38 b25ae4fa 2019-02-04 stsp #include "got_lib_worktree.h"
39 c48c4a9c 2018-03-11 stsp
40 eb983b4b 2019-03-26 stsp /* got_fileindex_entry flags */
41 eb983b4b 2019-03-26 stsp #define GOT_FILEIDX_F_PATH_LEN 0x00000fff
42 83718700 2019-08-03 stsp #define GOT_FILEIDX_F_STAGE 0x0000f000
43 3cd04235 2019-08-03 stsp #define GOT_FILEIDX_F_STAGE_SHIFT 12
44 ddce0520 2019-03-26 stsp #define GOT_FILEIDX_F_NOT_FLUSHED 0x00010000
45 ddce0520 2019-03-26 stsp #define GOT_FILEIDX_F_NO_BLOB 0x00020000
46 ddce0520 2019-03-26 stsp #define GOT_FILEIDX_F_NO_COMMIT 0x00040000
47 2ec1f75b 2019-03-26 stsp #define GOT_FILEIDX_F_NO_FILE_ON_DISK 0x00080000
48 a46b9f33 2020-01-28 stsp #define GOT_FILEIDX_F_REMOVE_ON_FLUSH 0x00100000
49 a769b60b 2021-06-27 stsp #define GOT_FILEIDX_F_SKIPPED 0x00200000
50 eb983b4b 2019-03-26 stsp
51 133d2798 2019-01-08 stsp struct got_fileindex {
52 133d2798 2019-01-08 stsp struct got_fileindex_tree entries;
53 a46b9f33 2020-01-28 stsp int nentries; /* Does not include entries marked for removal. */
54 fff2d774 2023-07-29 thomas #define GOT_FILEIDX_MAX_ENTRIES INT32_MAX
55 133d2798 2019-01-08 stsp };
56 133d2798 2019-01-08 stsp
57 0aeb8099 2020-07-23 stsp mode_t
58 0aeb8099 2020-07-23 stsp got_fileindex_entry_perms_get(struct got_fileindex_entry *ie)
59 26a7fe28 2019-07-27 stsp {
60 4723f050 2020-07-23 stsp return ((ie->mode & GOT_FILEIDX_MODE_PERMS) >>
61 4723f050 2020-07-23 stsp GOT_FILEIDX_MODE_PERMS_SHIFT);
62 26a7fe28 2019-07-27 stsp }
63 26a7fe28 2019-07-27 stsp
64 cf34e6e7 2020-07-23 stsp static void
65 cf34e6e7 2020-07-23 stsp fileindex_entry_perms_set(struct got_fileindex_entry *ie, mode_t mode)
66 4723f050 2020-07-23 stsp {
67 4723f050 2020-07-23 stsp ie->mode &= ~GOT_FILEIDX_MODE_PERMS;
68 4723f050 2020-07-23 stsp ie->mode |= ((mode << GOT_FILEIDX_MODE_PERMS_SHIFT) &
69 4723f050 2020-07-23 stsp GOT_FILEIDX_MODE_PERMS);
70 4723f050 2020-07-23 stsp }
71 4723f050 2020-07-23 stsp
72 26a7fe28 2019-07-27 stsp mode_t
73 26a7fe28 2019-07-27 stsp got_fileindex_perms_to_st(struct got_fileindex_entry *ie)
74 26a7fe28 2019-07-27 stsp {
75 0aeb8099 2020-07-23 stsp mode_t perms = got_fileindex_entry_perms_get(ie);
76 4723f050 2020-07-23 stsp int type = got_fileindex_entry_filetype_get(ie);
77 4723f050 2020-07-23 stsp uint32_t ftype;
78 4723f050 2020-07-23 stsp
79 4723f050 2020-07-23 stsp if (type == GOT_FILEIDX_MODE_REGULAR_FILE ||
80 4723f050 2020-07-23 stsp type == GOT_FILEIDX_MODE_BAD_SYMLINK)
81 4723f050 2020-07-23 stsp ftype = S_IFREG;
82 4723f050 2020-07-23 stsp else
83 4723f050 2020-07-23 stsp ftype = S_IFLNK;
84 4723f050 2020-07-23 stsp
85 4723f050 2020-07-23 stsp return (ftype | (perms & (S_IRWXU | S_IRWXG | S_IRWXO)));
86 26a7fe28 2019-07-27 stsp }
87 26a7fe28 2019-07-27 stsp
88 c48c4a9c 2018-03-11 stsp const struct got_error *
89 3f762da0 2019-08-03 stsp got_fileindex_entry_update(struct got_fileindex_entry *ie,
90 437adc9d 2020-12-10 yzhong int wt_fd, const char *ondisk_path, uint8_t *blob_sha1,
91 437adc9d 2020-12-10 yzhong uint8_t *commit_sha1, int update_timestamps)
92 c48c4a9c 2018-03-11 stsp {
93 c48c4a9c 2018-03-11 stsp struct stat sb;
94 c48c4a9c 2018-03-11 stsp
95 437adc9d 2020-12-10 yzhong if (fstatat(wt_fd, ondisk_path, &sb, AT_SYMLINK_NOFOLLOW) != 0) {
96 b15816dd 2019-08-11 stsp if (!((ie->flags & GOT_FILEIDX_F_NO_FILE_ON_DISK) &&
97 b15816dd 2019-08-11 stsp errno == ENOENT))
98 437adc9d 2020-12-10 yzhong return got_error_from_errno2("fstatat", ondisk_path);
99 aa9ad276 2020-07-25 stsp sb.st_mode = GOT_DEFAULT_FILE_MODE;
100 03df25b3 2019-05-11 stsp } else {
101 03df25b3 2019-05-11 stsp if (sb.st_mode & S_IFDIR)
102 03df25b3 2019-05-11 stsp return got_error_set_errno(EISDIR, ondisk_path);
103 3f762da0 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_NO_FILE_ON_DISK;
104 03df25b3 2019-05-11 stsp }
105 c48c4a9c 2018-03-11 stsp
106 3f762da0 2019-08-03 stsp if ((ie->flags & GOT_FILEIDX_F_NO_FILE_ON_DISK) == 0) {
107 13d9040b 2019-03-27 stsp if (update_timestamps) {
108 0823ffc2 2020-09-10 naddy ie->ctime_sec = sb.st_ctim.tv_sec;
109 0823ffc2 2020-09-10 naddy ie->ctime_nsec = sb.st_ctim.tv_nsec;
110 0823ffc2 2020-09-10 naddy ie->mtime_sec = sb.st_mtim.tv_sec;
111 0823ffc2 2020-09-10 naddy ie->mtime_nsec = sb.st_mtim.tv_nsec;
112 13d9040b 2019-03-27 stsp }
113 3f762da0 2019-08-03 stsp ie->uid = sb.st_uid;
114 3f762da0 2019-08-03 stsp ie->gid = sb.st_gid;
115 3f762da0 2019-08-03 stsp ie->size = (sb.st_size & 0xffffffff);
116 4723f050 2020-07-23 stsp if (S_ISLNK(sb.st_mode)) {
117 4723f050 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
118 4723f050 2020-07-23 stsp GOT_FILEIDX_MODE_SYMLINK);
119 cf34e6e7 2020-07-23 stsp fileindex_entry_perms_set(ie, 0);
120 4723f050 2020-07-23 stsp } else {
121 4723f050 2020-07-23 stsp got_fileindex_entry_filetype_set(ie,
122 4723f050 2020-07-23 stsp GOT_FILEIDX_MODE_REGULAR_FILE);
123 cf34e6e7 2020-07-23 stsp fileindex_entry_perms_set(ie,
124 4723f050 2020-07-23 stsp sb.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO));
125 ef8d6031 2020-07-23 stsp }
126 02c07007 2019-02-10 stsp }
127 ddce0520 2019-03-26 stsp
128 ddce0520 2019-03-26 stsp if (blob_sha1) {
129 0529f8df 2023-03-10 thomas memmove(ie->blob_sha1, blob_sha1, SHA1_DIGEST_LENGTH);
130 3f762da0 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_NO_BLOB;
131 ddce0520 2019-03-26 stsp } else
132 3f762da0 2019-08-03 stsp ie->flags |= GOT_FILEIDX_F_NO_BLOB;
133 ddce0520 2019-03-26 stsp
134 ddce0520 2019-03-26 stsp if (commit_sha1) {
135 3f762da0 2019-08-03 stsp memcpy(ie->commit_sha1, commit_sha1, SHA1_DIGEST_LENGTH);
136 3f762da0 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_NO_COMMIT;
137 ddce0520 2019-03-26 stsp } else
138 3f762da0 2019-08-03 stsp ie->flags |= GOT_FILEIDX_F_NO_COMMIT;
139 51514078 2018-12-25 stsp
140 51514078 2018-12-25 stsp return NULL;
141 51514078 2018-12-25 stsp }
142 51514078 2018-12-25 stsp
143 2ec1f75b 2019-03-26 stsp void
144 3f762da0 2019-08-03 stsp got_fileindex_entry_mark_deleted_from_disk(struct got_fileindex_entry *ie)
145 2ec1f75b 2019-03-26 stsp {
146 3f762da0 2019-08-03 stsp ie->flags |= GOT_FILEIDX_F_NO_FILE_ON_DISK;
147 a769b60b 2021-06-27 stsp }
148 a769b60b 2021-06-27 stsp
149 a769b60b 2021-06-27 stsp void
150 a769b60b 2021-06-27 stsp got_fileindex_entry_mark_skipped(struct got_fileindex_entry *ie)
151 a769b60b 2021-06-27 stsp {
152 a769b60b 2021-06-27 stsp ie->flags |= GOT_FILEIDX_F_SKIPPED;
153 2ec1f75b 2019-03-26 stsp }
154 2ec1f75b 2019-03-26 stsp
155 51514078 2018-12-25 stsp const struct got_error *
156 3f762da0 2019-08-03 stsp got_fileindex_entry_alloc(struct got_fileindex_entry **ie,
157 3969253a 2020-03-07 stsp const char *relpath)
158 51514078 2018-12-25 stsp {
159 51514078 2018-12-25 stsp size_t len;
160 51514078 2018-12-25 stsp
161 3f762da0 2019-08-03 stsp *ie = calloc(1, sizeof(**ie));
162 3f762da0 2019-08-03 stsp if (*ie == NULL)
163 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
164 c48c4a9c 2018-03-11 stsp
165 3f762da0 2019-08-03 stsp (*ie)->path = strdup(relpath);
166 3f762da0 2019-08-03 stsp if ((*ie)->path == NULL) {
167 638f9024 2019-05-13 stsp const struct got_error *err = got_error_from_errno("strdup");
168 3f762da0 2019-08-03 stsp free(*ie);
169 3f762da0 2019-08-03 stsp *ie = NULL;
170 0a585a0d 2018-03-17 stsp return err;
171 c48c4a9c 2018-03-11 stsp }
172 51514078 2018-12-25 stsp
173 4d555405 2019-08-03 stsp len = strlen(relpath);
174 a7f9d64d 2019-01-13 stsp if (len > GOT_FILEIDX_F_PATH_LEN)
175 a7f9d64d 2019-01-13 stsp len = GOT_FILEIDX_F_PATH_LEN;
176 3f762da0 2019-08-03 stsp (*ie)->flags |= len;
177 c48c4a9c 2018-03-11 stsp
178 3969253a 2020-03-07 stsp return NULL;
179 c48c4a9c 2018-03-11 stsp }
180 c48c4a9c 2018-03-11 stsp
181 c48c4a9c 2018-03-11 stsp void
182 3f762da0 2019-08-03 stsp got_fileindex_entry_free(struct got_fileindex_entry *ie)
183 c48c4a9c 2018-03-11 stsp {
184 3f762da0 2019-08-03 stsp free(ie->path);
185 3f762da0 2019-08-03 stsp free(ie);
186 4d555405 2019-08-03 stsp }
187 4d555405 2019-08-03 stsp
188 4d555405 2019-08-03 stsp size_t
189 4d555405 2019-08-03 stsp got_fileindex_entry_path_len(const struct got_fileindex_entry *ie)
190 4d555405 2019-08-03 stsp {
191 4d555405 2019-08-03 stsp return (size_t)(ie->flags & GOT_FILEIDX_F_PATH_LEN);
192 df335242 2019-08-03 stsp }
193 df335242 2019-08-03 stsp
194 df335242 2019-08-03 stsp uint32_t
195 0cb83759 2019-08-03 stsp got_fileindex_entry_stage_get(const struct got_fileindex_entry *ie)
196 df335242 2019-08-03 stsp {
197 df335242 2019-08-03 stsp return ((ie->flags & GOT_FILEIDX_F_STAGE) >> GOT_FILEIDX_F_STAGE_SHIFT);
198 0cb83759 2019-08-03 stsp }
199 0cb83759 2019-08-03 stsp
200 0cb83759 2019-08-03 stsp void
201 0cb83759 2019-08-03 stsp got_fileindex_entry_stage_set(struct got_fileindex_entry *ie, uint32_t stage)
202 0cb83759 2019-08-03 stsp {
203 0cb83759 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_STAGE;
204 0cb83759 2019-08-03 stsp ie->flags |= ((stage << GOT_FILEIDX_F_STAGE_SHIFT) &
205 0cb83759 2019-08-03 stsp GOT_FILEIDX_F_STAGE);
206 d00136be 2019-03-26 stsp }
207 d00136be 2019-03-26 stsp
208 d00136be 2019-03-26 stsp int
209 2e1fa222 2020-07-23 stsp got_fileindex_entry_filetype_get(struct got_fileindex_entry *ie)
210 2e1fa222 2020-07-23 stsp {
211 f5f1f9c2 2020-07-23 stsp return (ie->mode & GOT_FILEIDX_MODE_FILE_TYPE_ONDISK);
212 2e1fa222 2020-07-23 stsp }
213 2e1fa222 2020-07-23 stsp
214 6131ab45 2020-07-23 stsp void
215 2e1fa222 2020-07-23 stsp got_fileindex_entry_filetype_set(struct got_fileindex_entry *ie, int type)
216 2e1fa222 2020-07-23 stsp {
217 6131ab45 2020-07-23 stsp ie->mode &= ~GOT_FILEIDX_MODE_FILE_TYPE_ONDISK;
218 6131ab45 2020-07-23 stsp ie->mode |= (type & GOT_FILEIDX_MODE_FILE_TYPE_ONDISK);
219 2e1fa222 2020-07-23 stsp }
220 2e1fa222 2020-07-23 stsp
221 984c073d 2020-07-23 stsp void
222 48b4f239 2021-12-31 thomas got_fileindex_entry_staged_filetype_set(struct got_fileindex_entry *ie,
223 48b4f239 2021-12-31 thomas int type)
224 984c073d 2020-07-23 stsp {
225 984c073d 2020-07-23 stsp ie->mode &= ~GOT_FILEIDX_MODE_FILE_TYPE_STAGED;
226 984c073d 2020-07-23 stsp ie->mode |= ((type << GOT_FILEIDX_MODE_FILE_TYPE_STAGED_SHIFT) &
227 984c073d 2020-07-23 stsp GOT_FILEIDX_MODE_FILE_TYPE_STAGED);
228 984c073d 2020-07-23 stsp }
229 984c073d 2020-07-23 stsp
230 2e1fa222 2020-07-23 stsp int
231 984c073d 2020-07-23 stsp got_fileindex_entry_staged_filetype_get(struct got_fileindex_entry *ie)
232 984c073d 2020-07-23 stsp {
233 984c073d 2020-07-23 stsp return (ie->mode & GOT_FILEIDX_MODE_FILE_TYPE_STAGED) >>
234 984c073d 2020-07-23 stsp GOT_FILEIDX_MODE_FILE_TYPE_STAGED_SHIFT;
235 984c073d 2020-07-23 stsp }
236 984c073d 2020-07-23 stsp
237 984c073d 2020-07-23 stsp int
238 d00136be 2019-03-26 stsp got_fileindex_entry_has_blob(struct got_fileindex_entry *ie)
239 d00136be 2019-03-26 stsp {
240 d00136be 2019-03-26 stsp return (ie->flags & GOT_FILEIDX_F_NO_BLOB) == 0;
241 d00136be 2019-03-26 stsp }
242 d00136be 2019-03-26 stsp
243 d00136be 2019-03-26 stsp int
244 d00136be 2019-03-26 stsp got_fileindex_entry_has_commit(struct got_fileindex_entry *ie)
245 d00136be 2019-03-26 stsp {
246 d00136be 2019-03-26 stsp return (ie->flags & GOT_FILEIDX_F_NO_COMMIT) == 0;
247 c48c4a9c 2018-03-11 stsp }
248 9d31a1d8 2018-03-11 stsp
249 2ec1f75b 2019-03-26 stsp int
250 2ec1f75b 2019-03-26 stsp got_fileindex_entry_has_file_on_disk(struct got_fileindex_entry *ie)
251 2ec1f75b 2019-03-26 stsp {
252 2ec1f75b 2019-03-26 stsp return (ie->flags & GOT_FILEIDX_F_NO_FILE_ON_DISK) == 0;
253 2ec1f75b 2019-03-26 stsp }
254 2ec1f75b 2019-03-26 stsp
255 a769b60b 2021-06-27 stsp int
256 a769b60b 2021-06-27 stsp got_fileindex_entry_was_skipped(struct got_fileindex_entry *ie)
257 a769b60b 2021-06-27 stsp {
258 a769b60b 2021-06-27 stsp return (ie->flags & GOT_FILEIDX_F_SKIPPED) != 0;
259 a769b60b 2021-06-27 stsp }
260 a769b60b 2021-06-27 stsp
261 50952927 2019-01-12 stsp static const struct got_error *
262 3f762da0 2019-08-03 stsp add_entry(struct got_fileindex *fileindex, struct got_fileindex_entry *ie)
263 9d31a1d8 2018-03-11 stsp {
264 133d2798 2019-01-08 stsp if (fileindex->nentries >= GOT_FILEIDX_MAX_ENTRIES)
265 133d2798 2019-01-08 stsp return got_error(GOT_ERR_NO_SPACE);
266 133d2798 2019-01-08 stsp
267 9fad5d8c 2022-04-16 thomas if (RB_INSERT(got_fileindex_tree, &fileindex->entries, ie) != NULL)
268 9fad5d8c 2022-04-16 thomas return got_error_path(ie->path, GOT_ERR_FILEIDX_DUP_ENTRY);
269 9fad5d8c 2022-04-16 thomas
270 133d2798 2019-01-08 stsp fileindex->nentries++;
271 133d2798 2019-01-08 stsp return NULL;
272 50952927 2019-01-12 stsp }
273 50952927 2019-01-12 stsp
274 50952927 2019-01-12 stsp const struct got_error *
275 50952927 2019-01-12 stsp got_fileindex_entry_add(struct got_fileindex *fileindex,
276 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie)
277 50952927 2019-01-12 stsp {
278 50952927 2019-01-12 stsp /* Flag this entry until it gets written out to disk. */
279 3f762da0 2019-08-03 stsp ie->flags |= GOT_FILEIDX_F_NOT_FLUSHED;
280 50952927 2019-01-12 stsp
281 3f762da0 2019-08-03 stsp return add_entry(fileindex, ie);
282 9d31a1d8 2018-03-11 stsp }
283 9d31a1d8 2018-03-11 stsp
284 133d2798 2019-01-08 stsp void
285 512f0d0e 2019-01-02 stsp got_fileindex_entry_remove(struct got_fileindex *fileindex,
286 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie)
287 512f0d0e 2019-01-02 stsp {
288 a46b9f33 2020-01-28 stsp /*
289 a46b9f33 2020-01-28 stsp * Removing an entry from the RB tree immediately breaks
290 a46b9f33 2020-01-28 stsp * in-progress iterations over file index entries.
291 8bd8568c 2020-04-24 stsp * So flag this entry for removal and remove it once the index
292 8bd8568c 2020-04-24 stsp * is written out to disk. Meanwhile, pretend this entry no longer
293 a46b9f33 2020-01-28 stsp * exists if we get queried for it again before then.
294 a46b9f33 2020-01-28 stsp */
295 a46b9f33 2020-01-28 stsp ie->flags |= GOT_FILEIDX_F_REMOVE_ON_FLUSH;
296 133d2798 2019-01-08 stsp fileindex->nentries--;
297 512f0d0e 2019-01-02 stsp }
298 512f0d0e 2019-01-02 stsp
299 51514078 2018-12-25 stsp struct got_fileindex_entry *
300 d6c87207 2019-08-02 stsp got_fileindex_entry_get(struct got_fileindex *fileindex, const char *path,
301 d6c87207 2019-08-02 stsp size_t path_len)
302 51514078 2018-12-25 stsp {
303 a46b9f33 2020-01-28 stsp struct got_fileindex_entry *ie;
304 133d2798 2019-01-08 stsp struct got_fileindex_entry key;
305 133d2798 2019-01-08 stsp memset(&key, 0, sizeof(key));
306 133d2798 2019-01-08 stsp key.path = (char *)path;
307 4d555405 2019-08-03 stsp key.flags = (path_len & GOT_FILEIDX_F_PATH_LEN);
308 a46b9f33 2020-01-28 stsp ie = RB_FIND(got_fileindex_tree, &fileindex->entries, &key);
309 a46b9f33 2020-01-28 stsp if (ie && (ie->flags & GOT_FILEIDX_F_REMOVE_ON_FLUSH))
310 a46b9f33 2020-01-28 stsp return NULL;
311 a46b9f33 2020-01-28 stsp return ie;
312 b504a804 2019-01-08 stsp }
313 51514078 2018-12-25 stsp
314 512f0d0e 2019-01-02 stsp const struct got_error *
315 e1ed7f77 2019-01-06 stsp got_fileindex_for_each_entry_safe(struct got_fileindex *fileindex,
316 b504a804 2019-01-08 stsp got_fileindex_cb cb, void *cb_arg)
317 512f0d0e 2019-01-02 stsp {
318 133d2798 2019-01-08 stsp const struct got_error *err;
319 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie, *tmp;
320 9d31a1d8 2018-03-11 stsp
321 3f762da0 2019-08-03 stsp RB_FOREACH_SAFE(ie, got_fileindex_tree, &fileindex->entries, tmp) {
322 a46b9f33 2020-01-28 stsp if (ie->flags & GOT_FILEIDX_F_REMOVE_ON_FLUSH)
323 a46b9f33 2020-01-28 stsp continue;
324 3f762da0 2019-08-03 stsp err = (*cb)(cb_arg, ie);
325 133d2798 2019-01-08 stsp if (err)
326 133d2798 2019-01-08 stsp return err;
327 b504a804 2019-01-08 stsp }
328 b504a804 2019-01-08 stsp return NULL;
329 9d31a1d8 2018-03-11 stsp }
330 9d31a1d8 2018-03-11 stsp
331 133d2798 2019-01-08 stsp struct got_fileindex *
332 133d2798 2019-01-08 stsp got_fileindex_alloc(void)
333 6b798c3c 2019-01-08 stsp {
334 133d2798 2019-01-08 stsp struct got_fileindex *fileindex;
335 133d2798 2019-01-08 stsp
336 133d2798 2019-01-08 stsp fileindex = calloc(1, sizeof(*fileindex));
337 133d2798 2019-01-08 stsp if (fileindex == NULL)
338 133d2798 2019-01-08 stsp return NULL;
339 133d2798 2019-01-08 stsp
340 133d2798 2019-01-08 stsp RB_INIT(&fileindex->entries);
341 133d2798 2019-01-08 stsp return fileindex;
342 6b798c3c 2019-01-08 stsp }
343 6b798c3c 2019-01-08 stsp
344 9d31a1d8 2018-03-11 stsp void
345 7426bbfd 2018-12-24 stsp got_fileindex_free(struct got_fileindex *fileindex)
346 9d31a1d8 2018-03-11 stsp {
347 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie;
348 133d2798 2019-01-08 stsp
349 3f762da0 2019-08-03 stsp while ((ie = RB_MIN(got_fileindex_tree, &fileindex->entries))) {
350 3f762da0 2019-08-03 stsp RB_REMOVE(got_fileindex_tree, &fileindex->entries, ie);
351 3f762da0 2019-08-03 stsp got_fileindex_entry_free(ie);
352 133d2798 2019-01-08 stsp }
353 9d31a1d8 2018-03-11 stsp free(fileindex);
354 9d31a1d8 2018-03-11 stsp }
355 9d31a1d8 2018-03-11 stsp
356 c34b20a2 2018-03-12 stsp static const struct got_error *
357 b16893ba 2023-02-24 thomas write_fileindex_val64(struct got_hash *ctx, uint64_t val, FILE *outfile)
358 c34b20a2 2018-03-12 stsp {
359 c34b20a2 2018-03-12 stsp size_t n;
360 c34b20a2 2018-03-12 stsp
361 c34b20a2 2018-03-12 stsp val = htobe64(val);
362 b16893ba 2023-02-24 thomas got_hash_update(ctx, &val, sizeof(val));
363 3fe2daf1 2018-12-24 stsp n = fwrite(&val, 1, sizeof(val), outfile);
364 c34b20a2 2018-03-12 stsp if (n != sizeof(val))
365 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
366 c34b20a2 2018-03-12 stsp return NULL;
367 c34b20a2 2018-03-12 stsp }
368 c34b20a2 2018-03-12 stsp
369 c34b20a2 2018-03-12 stsp static const struct got_error *
370 b16893ba 2023-02-24 thomas write_fileindex_val32(struct got_hash *ctx, uint32_t val, FILE *outfile)
371 c34b20a2 2018-03-12 stsp {
372 c34b20a2 2018-03-12 stsp size_t n;
373 c34b20a2 2018-03-12 stsp
374 c34b20a2 2018-03-12 stsp val = htobe32(val);
375 b16893ba 2023-02-24 thomas got_hash_update(ctx, &val, sizeof(val));
376 3fe2daf1 2018-12-24 stsp n = fwrite(&val, 1, sizeof(val), outfile);
377 c34b20a2 2018-03-12 stsp if (n != sizeof(val))
378 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
379 c34b20a2 2018-03-12 stsp return NULL;
380 c34b20a2 2018-03-12 stsp }
381 c34b20a2 2018-03-12 stsp
382 c34b20a2 2018-03-12 stsp static const struct got_error *
383 b16893ba 2023-02-24 thomas write_fileindex_val16(struct got_hash *ctx, uint16_t val, FILE *outfile)
384 c34b20a2 2018-03-12 stsp {
385 c34b20a2 2018-03-12 stsp size_t n;
386 c34b20a2 2018-03-12 stsp
387 c34b20a2 2018-03-12 stsp val = htobe16(val);
388 b16893ba 2023-02-24 thomas got_hash_update(ctx, &val, sizeof(val));
389 3fe2daf1 2018-12-24 stsp n = fwrite(&val, 1, sizeof(val), outfile);
390 c34b20a2 2018-03-12 stsp if (n != sizeof(val))
391 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
392 c34b20a2 2018-03-12 stsp return NULL;
393 c34b20a2 2018-03-12 stsp }
394 c34b20a2 2018-03-12 stsp
395 c34b20a2 2018-03-12 stsp static const struct got_error *
396 b16893ba 2023-02-24 thomas write_fileindex_path(struct got_hash *ctx, const char *path, FILE *outfile)
397 c34b20a2 2018-03-12 stsp {
398 3c5b70f2 2018-12-27 stsp size_t n, len, pad = 0;
399 c34b20a2 2018-03-12 stsp static const uint8_t zero[8] = { 0 };
400 c34b20a2 2018-03-12 stsp
401 c34b20a2 2018-03-12 stsp len = strlen(path);
402 3c5b70f2 2018-12-27 stsp while ((len + pad) % 8 != 0)
403 3c5b70f2 2018-12-27 stsp pad++;
404 3c5b70f2 2018-12-27 stsp if (pad == 0)
405 3c5b70f2 2018-12-27 stsp pad = 8; /* NUL-terminate */
406 c34b20a2 2018-03-12 stsp
407 b16893ba 2023-02-24 thomas got_hash_update(ctx, path, len);
408 c34b20a2 2018-03-12 stsp n = fwrite(path, 1, len, outfile);
409 c34b20a2 2018-03-12 stsp if (n != len)
410 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
411 b16893ba 2023-02-24 thomas got_hash_update(ctx, zero, pad);
412 c34b20a2 2018-03-12 stsp n = fwrite(zero, 1, pad, outfile);
413 c34b20a2 2018-03-12 stsp if (n != pad)
414 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
415 c34b20a2 2018-03-12 stsp return NULL;
416 c34b20a2 2018-03-12 stsp }
417 c34b20a2 2018-03-12 stsp
418 c34b20a2 2018-03-12 stsp static const struct got_error *
419 b16893ba 2023-02-24 thomas write_fileindex_entry(struct got_hash *ctx, struct got_fileindex_entry *ie,
420 c34b20a2 2018-03-12 stsp FILE *outfile)
421 c34b20a2 2018-03-12 stsp {
422 c34b20a2 2018-03-12 stsp const struct got_error *err;
423 23b19d00 2018-03-12 stsp size_t n;
424 df335242 2019-08-03 stsp uint32_t stage;
425 c34b20a2 2018-03-12 stsp
426 3f762da0 2019-08-03 stsp err = write_fileindex_val64(ctx, ie->ctime_sec, outfile);
427 c34b20a2 2018-03-12 stsp if (err)
428 c34b20a2 2018-03-12 stsp return err;
429 3f762da0 2019-08-03 stsp err = write_fileindex_val64(ctx, ie->ctime_nsec, outfile);
430 c34b20a2 2018-03-12 stsp if (err)
431 c34b20a2 2018-03-12 stsp return err;
432 3f762da0 2019-08-03 stsp err = write_fileindex_val64(ctx, ie->mtime_sec, outfile);
433 c34b20a2 2018-03-12 stsp if (err)
434 c34b20a2 2018-03-12 stsp return err;
435 3f762da0 2019-08-03 stsp err = write_fileindex_val64(ctx, ie->mtime_nsec, outfile);
436 c34b20a2 2018-03-12 stsp if (err)
437 c34b20a2 2018-03-12 stsp return err;
438 c34b20a2 2018-03-12 stsp
439 3f762da0 2019-08-03 stsp err = write_fileindex_val32(ctx, ie->uid, outfile);
440 c34b20a2 2018-03-12 stsp if (err)
441 c34b20a2 2018-03-12 stsp return err;
442 3f762da0 2019-08-03 stsp err = write_fileindex_val32(ctx, ie->gid, outfile);
443 c34b20a2 2018-03-12 stsp if (err)
444 c34b20a2 2018-03-12 stsp return err;
445 3f762da0 2019-08-03 stsp err = write_fileindex_val32(ctx, ie->size, outfile);
446 c34b20a2 2018-03-12 stsp if (err)
447 c34b20a2 2018-03-12 stsp return err;
448 c34b20a2 2018-03-12 stsp
449 3f762da0 2019-08-03 stsp err = write_fileindex_val16(ctx, ie->mode, outfile);
450 c34b20a2 2018-03-12 stsp if (err)
451 c34b20a2 2018-03-12 stsp return err;
452 c34b20a2 2018-03-12 stsp
453 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->blob_sha1, SHA1_DIGEST_LENGTH);
454 3f762da0 2019-08-03 stsp n = fwrite(ie->blob_sha1, 1, SHA1_DIGEST_LENGTH, outfile);
455 fc76cabb 2018-12-25 stsp if (n != SHA1_DIGEST_LENGTH)
456 fc76cabb 2018-12-25 stsp return got_ferror(outfile, GOT_ERR_IO);
457 fc76cabb 2018-12-25 stsp
458 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->commit_sha1, SHA1_DIGEST_LENGTH);
459 3f762da0 2019-08-03 stsp n = fwrite(ie->commit_sha1, 1, SHA1_DIGEST_LENGTH, outfile);
460 c34b20a2 2018-03-12 stsp if (n != SHA1_DIGEST_LENGTH)
461 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
462 c34b20a2 2018-03-12 stsp
463 3f762da0 2019-08-03 stsp err = write_fileindex_val32(ctx, ie->flags, outfile);
464 c34b20a2 2018-03-12 stsp if (err)
465 c34b20a2 2018-03-12 stsp return err;
466 c34b20a2 2018-03-12 stsp
467 3f762da0 2019-08-03 stsp err = write_fileindex_path(ctx, ie->path, outfile);
468 df335242 2019-08-03 stsp if (err)
469 df335242 2019-08-03 stsp return err;
470 df335242 2019-08-03 stsp
471 0cb83759 2019-08-03 stsp stage = got_fileindex_entry_stage_get(ie);
472 df335242 2019-08-03 stsp if (stage == GOT_FILEIDX_STAGE_MODIFY ||
473 df335242 2019-08-03 stsp stage == GOT_FILEIDX_STAGE_ADD) {
474 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->staged_blob_sha1, SHA1_DIGEST_LENGTH);
475 df335242 2019-08-03 stsp n = fwrite(ie->staged_blob_sha1, 1, SHA1_DIGEST_LENGTH,
476 df335242 2019-08-03 stsp outfile);
477 df335242 2019-08-03 stsp if (n != SHA1_DIGEST_LENGTH)
478 df335242 2019-08-03 stsp return got_ferror(outfile, GOT_ERR_IO);
479 df335242 2019-08-03 stsp }
480 df335242 2019-08-03 stsp
481 df335242 2019-08-03 stsp return NULL;
482 c34b20a2 2018-03-12 stsp }
483 c34b20a2 2018-03-12 stsp
484 9d31a1d8 2018-03-11 stsp const struct got_error *
485 9d31a1d8 2018-03-11 stsp got_fileindex_write(struct got_fileindex *fileindex, FILE *outfile)
486 9d31a1d8 2018-03-11 stsp {
487 b504a804 2019-01-08 stsp const struct got_error *err = NULL;
488 c34b20a2 2018-03-12 stsp struct got_fileindex_hdr hdr;
489 b16893ba 2023-02-24 thomas struct got_hash ctx;
490 b16893ba 2023-02-24 thomas uint8_t hash[GOT_HASH_DIGEST_MAXLEN];
491 c34b20a2 2018-03-12 stsp size_t n;
492 8bd8568c 2020-04-24 stsp struct got_fileindex_entry *ie, *tmp;
493 c34b20a2 2018-03-12 stsp
494 b16893ba 2023-02-24 thomas got_hash_init(&ctx, GOT_HASH_SHA1);
495 c34b20a2 2018-03-12 stsp
496 c34b20a2 2018-03-12 stsp hdr.signature = htobe32(GOT_FILE_INDEX_SIGNATURE);
497 c34b20a2 2018-03-12 stsp hdr.version = htobe32(GOT_FILE_INDEX_VERSION);
498 133d2798 2019-01-08 stsp hdr.nentries = htobe32(fileindex->nentries);
499 c34b20a2 2018-03-12 stsp
500 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.signature, sizeof(hdr.signature));
501 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.version, sizeof(hdr.version));
502 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.nentries, sizeof(hdr.nentries));
503 a5744d71 2019-01-12 stsp n = fwrite(&hdr.signature, 1, sizeof(hdr.signature), outfile);
504 a5744d71 2019-01-12 stsp if (n != sizeof(hdr.signature))
505 a5744d71 2019-01-12 stsp return got_ferror(outfile, GOT_ERR_IO);
506 a5744d71 2019-01-12 stsp n = fwrite(&hdr.version, 1, sizeof(hdr.version), outfile);
507 a5744d71 2019-01-12 stsp if (n != sizeof(hdr.version))
508 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
509 a5744d71 2019-01-12 stsp n = fwrite(&hdr.nentries, 1, sizeof(hdr.nentries), outfile);
510 a5744d71 2019-01-12 stsp if (n != sizeof(hdr.nentries))
511 a5744d71 2019-01-12 stsp return got_ferror(outfile, GOT_ERR_IO);
512 c34b20a2 2018-03-12 stsp
513 8bd8568c 2020-04-24 stsp RB_FOREACH_SAFE(ie, got_fileindex_tree, &fileindex->entries, tmp) {
514 3f762da0 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_NOT_FLUSHED;
515 a769b60b 2021-06-27 stsp ie->flags &= ~GOT_FILEIDX_F_SKIPPED;
516 8bd8568c 2020-04-24 stsp if (ie->flags & GOT_FILEIDX_F_REMOVE_ON_FLUSH) {
517 8bd8568c 2020-04-24 stsp RB_REMOVE(got_fileindex_tree, &fileindex->entries, ie);
518 8bd8568c 2020-04-24 stsp got_fileindex_entry_free(ie);
519 a46b9f33 2020-01-28 stsp continue;
520 8bd8568c 2020-04-24 stsp }
521 3f762da0 2019-08-03 stsp err = write_fileindex_entry(&ctx, ie, outfile);
522 133d2798 2019-01-08 stsp if (err)
523 133d2798 2019-01-08 stsp return err;
524 133d2798 2019-01-08 stsp }
525 c34b20a2 2018-03-12 stsp
526 b16893ba 2023-02-24 thomas got_hash_final(&ctx, hash);
527 b16893ba 2023-02-24 thomas n = fwrite(hash, 1, SHA1_DIGEST_LENGTH, outfile);
528 b16893ba 2023-02-24 thomas if (n != SHA1_DIGEST_LENGTH)
529 c34b20a2 2018-03-12 stsp return got_ferror(outfile, GOT_ERR_IO);
530 52a74475 2018-12-24 stsp
531 27d0e5bd 2019-01-12 stsp if (fflush(outfile) != 0)
532 638f9024 2019-05-13 stsp return got_error_from_errno("fflush");
533 27d0e5bd 2019-01-12 stsp
534 52a74475 2018-12-24 stsp return NULL;
535 52a74475 2018-12-24 stsp }
536 52a74475 2018-12-24 stsp
537 52a74475 2018-12-24 stsp static const struct got_error *
538 b16893ba 2023-02-24 thomas read_fileindex_val64(uint64_t *val, struct got_hash *ctx, FILE *infile)
539 52a74475 2018-12-24 stsp {
540 52a74475 2018-12-24 stsp size_t n;
541 52a74475 2018-12-24 stsp
542 3fe2daf1 2018-12-24 stsp n = fread(val, 1, sizeof(*val), infile);
543 3fe2daf1 2018-12-24 stsp if (n != sizeof(*val))
544 27793341 2019-01-12 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
545 b16893ba 2023-02-24 thomas got_hash_update(ctx, val, sizeof(*val));
546 9eb6a6b2 2018-12-24 stsp *val = be64toh(*val);
547 52a74475 2018-12-24 stsp return NULL;
548 52a74475 2018-12-24 stsp }
549 52a74475 2018-12-24 stsp
550 52a74475 2018-12-24 stsp static const struct got_error *
551 b16893ba 2023-02-24 thomas read_fileindex_val32(uint32_t *val, struct got_hash *ctx, FILE *infile)
552 52a74475 2018-12-24 stsp {
553 52a74475 2018-12-24 stsp size_t n;
554 52a74475 2018-12-24 stsp
555 3fe2daf1 2018-12-24 stsp n = fread(val, 1, sizeof(*val), infile);
556 3fe2daf1 2018-12-24 stsp if (n != sizeof(*val))
557 27793341 2019-01-12 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
558 b16893ba 2023-02-24 thomas got_hash_update(ctx, val, sizeof(*val));
559 9eb6a6b2 2018-12-24 stsp *val = be32toh(*val);
560 52a74475 2018-12-24 stsp return NULL;
561 52a74475 2018-12-24 stsp }
562 52a74475 2018-12-24 stsp
563 52a74475 2018-12-24 stsp static const struct got_error *
564 b16893ba 2023-02-24 thomas read_fileindex_val16(uint16_t *val, struct got_hash *ctx, FILE *infile)
565 52a74475 2018-12-24 stsp {
566 52a74475 2018-12-24 stsp size_t n;
567 52a74475 2018-12-24 stsp
568 3fe2daf1 2018-12-24 stsp n = fread(val, 1, sizeof(*val), infile);
569 3fe2daf1 2018-12-24 stsp if (n != sizeof(*val))
570 27793341 2019-01-12 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
571 b16893ba 2023-02-24 thomas got_hash_update(ctx, val, sizeof(*val));
572 9eb6a6b2 2018-12-24 stsp *val = be16toh(*val);
573 52a74475 2018-12-24 stsp return NULL;
574 52a74475 2018-12-24 stsp }
575 52a74475 2018-12-24 stsp
576 52a74475 2018-12-24 stsp static const struct got_error *
577 b16893ba 2023-02-24 thomas read_fileindex_path(char **path, struct got_hash *ctx, FILE *infile)
578 52a74475 2018-12-24 stsp {
579 6bf2c316 2019-08-02 stsp const size_t chunk_size = 8;
580 dcc9ed63 2023-07-29 thomas char p[PATH_MAX];
581 dcc9ed63 2023-07-29 thomas size_t n, len = 0;
582 52a74475 2018-12-24 stsp
583 52a74475 2018-12-24 stsp do {
584 dcc9ed63 2023-07-29 thomas if (len + chunk_size > sizeof(p))
585 dcc9ed63 2023-07-29 thomas return got_error(GOT_ERR_FILEIDX_BAD);
586 dcc9ed63 2023-07-29 thomas
587 dcc9ed63 2023-07-29 thomas n = fread(&p[len], 1, chunk_size, infile);
588 dcc9ed63 2023-07-29 thomas if (n != chunk_size)
589 dcc9ed63 2023-07-29 thomas return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
590 dcc9ed63 2023-07-29 thomas
591 dcc9ed63 2023-07-29 thomas got_hash_update(ctx, &p[len], chunk_size);
592 6bf2c316 2019-08-02 stsp len += chunk_size;
593 dcc9ed63 2023-07-29 thomas } while (memchr(&p[len - chunk_size], '\0', chunk_size) == NULL);
594 52a74475 2018-12-24 stsp
595 dcc9ed63 2023-07-29 thomas *path = strdup(p);
596 dcc9ed63 2023-07-29 thomas if (*path == NULL)
597 dcc9ed63 2023-07-29 thomas return got_error_from_errno("strdup");
598 dcc9ed63 2023-07-29 thomas return NULL;
599 52a74475 2018-12-24 stsp }
600 52a74475 2018-12-24 stsp
601 52a74475 2018-12-24 stsp static const struct got_error *
602 b16893ba 2023-02-24 thomas read_fileindex_entry(struct got_fileindex_entry **iep, struct got_hash *ctx,
603 df335242 2019-08-03 stsp FILE *infile, uint32_t version)
604 52a74475 2018-12-24 stsp {
605 52a74475 2018-12-24 stsp const struct got_error *err;
606 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie;
607 52a74475 2018-12-24 stsp size_t n;
608 52a74475 2018-12-24 stsp
609 3f762da0 2019-08-03 stsp *iep = NULL;
610 52a74475 2018-12-24 stsp
611 3f762da0 2019-08-03 stsp ie = calloc(1, sizeof(*ie));
612 3f762da0 2019-08-03 stsp if (ie == NULL)
613 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
614 c34b20a2 2018-03-12 stsp
615 3f762da0 2019-08-03 stsp err = read_fileindex_val64(&ie->ctime_sec, ctx, infile);
616 52a74475 2018-12-24 stsp if (err)
617 52a74475 2018-12-24 stsp goto done;
618 3f762da0 2019-08-03 stsp err = read_fileindex_val64(&ie->ctime_nsec, ctx, infile);
619 52a74475 2018-12-24 stsp if (err)
620 52a74475 2018-12-24 stsp goto done;
621 3f762da0 2019-08-03 stsp err = read_fileindex_val64(&ie->mtime_sec, ctx, infile);
622 52a74475 2018-12-24 stsp if (err)
623 52a74475 2018-12-24 stsp goto done;
624 3f762da0 2019-08-03 stsp err = read_fileindex_val64(&ie->mtime_nsec, ctx, infile);
625 52a74475 2018-12-24 stsp if (err)
626 52a74475 2018-12-24 stsp goto done;
627 52a74475 2018-12-24 stsp
628 3f762da0 2019-08-03 stsp err = read_fileindex_val32(&ie->uid, ctx, infile);
629 52a74475 2018-12-24 stsp if (err)
630 52a74475 2018-12-24 stsp goto done;
631 3f762da0 2019-08-03 stsp err = read_fileindex_val32(&ie->gid, ctx, infile);
632 52a74475 2018-12-24 stsp if (err)
633 52a74475 2018-12-24 stsp goto done;
634 3f762da0 2019-08-03 stsp err = read_fileindex_val32(&ie->size, ctx, infile);
635 52a74475 2018-12-24 stsp if (err)
636 52a74475 2018-12-24 stsp goto done;
637 52a74475 2018-12-24 stsp
638 3f762da0 2019-08-03 stsp err = read_fileindex_val16(&ie->mode, ctx, infile);
639 52a74475 2018-12-24 stsp if (err)
640 52a74475 2018-12-24 stsp goto done;
641 52a74475 2018-12-24 stsp
642 3f762da0 2019-08-03 stsp n = fread(ie->blob_sha1, 1, SHA1_DIGEST_LENGTH, infile);
643 52a74475 2018-12-24 stsp if (n != SHA1_DIGEST_LENGTH) {
644 27793341 2019-01-12 stsp err = got_ferror(infile, GOT_ERR_FILEIDX_BAD);
645 52a74475 2018-12-24 stsp goto done;
646 52a74475 2018-12-24 stsp }
647 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->blob_sha1, SHA1_DIGEST_LENGTH);
648 52a74475 2018-12-24 stsp
649 3f762da0 2019-08-03 stsp n = fread(ie->commit_sha1, 1, SHA1_DIGEST_LENGTH, infile);
650 fc76cabb 2018-12-25 stsp if (n != SHA1_DIGEST_LENGTH) {
651 27793341 2019-01-12 stsp err = got_ferror(infile, GOT_ERR_FILEIDX_BAD);
652 fc76cabb 2018-12-25 stsp goto done;
653 fc76cabb 2018-12-25 stsp }
654 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->commit_sha1, SHA1_DIGEST_LENGTH);
655 fc76cabb 2018-12-25 stsp
656 3f762da0 2019-08-03 stsp err = read_fileindex_val32(&ie->flags, ctx, infile);
657 52a74475 2018-12-24 stsp if (err)
658 52a74475 2018-12-24 stsp goto done;
659 52a74475 2018-12-24 stsp
660 3f762da0 2019-08-03 stsp err = read_fileindex_path(&ie->path, ctx, infile);
661 df335242 2019-08-03 stsp if (err)
662 df335242 2019-08-03 stsp goto done;
663 df335242 2019-08-03 stsp
664 df335242 2019-08-03 stsp if (version >= 2) {
665 0cb83759 2019-08-03 stsp uint32_t stage = got_fileindex_entry_stage_get(ie);
666 df335242 2019-08-03 stsp if (stage == GOT_FILEIDX_STAGE_MODIFY ||
667 df335242 2019-08-03 stsp stage == GOT_FILEIDX_STAGE_ADD) {
668 df335242 2019-08-03 stsp n = fread(ie->staged_blob_sha1, 1, SHA1_DIGEST_LENGTH,
669 df335242 2019-08-03 stsp infile);
670 df335242 2019-08-03 stsp if (n != SHA1_DIGEST_LENGTH) {
671 df335242 2019-08-03 stsp err = got_ferror(infile, GOT_ERR_FILEIDX_BAD);
672 df335242 2019-08-03 stsp goto done;
673 df335242 2019-08-03 stsp }
674 b16893ba 2023-02-24 thomas got_hash_update(ctx, ie->staged_blob_sha1,
675 b16893ba 2023-02-24 thomas SHA1_DIGEST_LENGTH);
676 df335242 2019-08-03 stsp }
677 df335242 2019-08-03 stsp } else {
678 df335242 2019-08-03 stsp /* GOT_FILE_INDEX_VERSION 1 does not support staging. */
679 df335242 2019-08-03 stsp ie->flags &= ~GOT_FILEIDX_F_STAGE;
680 df335242 2019-08-03 stsp }
681 df335242 2019-08-03 stsp
682 52a74475 2018-12-24 stsp done:
683 52a74475 2018-12-24 stsp if (err)
684 3f762da0 2019-08-03 stsp got_fileindex_entry_free(ie);
685 52a74475 2018-12-24 stsp else
686 3f762da0 2019-08-03 stsp *iep = ie;
687 52a74475 2018-12-24 stsp return err;
688 52a74475 2018-12-24 stsp }
689 52a74475 2018-12-24 stsp
690 52a74475 2018-12-24 stsp const struct got_error *
691 52a74475 2018-12-24 stsp got_fileindex_read(struct got_fileindex *fileindex, FILE *infile)
692 52a74475 2018-12-24 stsp {
693 52a74475 2018-12-24 stsp const struct got_error *err = NULL;
694 52a74475 2018-12-24 stsp struct got_fileindex_hdr hdr;
695 b16893ba 2023-02-24 thomas struct got_hash ctx;
696 3f762da0 2019-08-03 stsp struct got_fileindex_entry *ie;
697 52a74475 2018-12-24 stsp uint8_t sha1_expected[SHA1_DIGEST_LENGTH];
698 52a74475 2018-12-24 stsp uint8_t sha1[SHA1_DIGEST_LENGTH];
699 52a74475 2018-12-24 stsp size_t n;
700 52a74475 2018-12-24 stsp int i;
701 52a74475 2018-12-24 stsp
702 b16893ba 2023-02-24 thomas got_hash_init(&ctx, GOT_HASH_SHA1);
703 52a74475 2018-12-24 stsp
704 b6d05318 2019-01-13 stsp n = fread(&hdr.signature, 1, sizeof(hdr.signature), infile);
705 b6d05318 2019-01-13 stsp if (n != sizeof(hdr.signature)) {
706 b6d05318 2019-01-13 stsp if (n == 0) /* EOF */
707 b6d05318 2019-01-13 stsp return NULL;
708 b6d05318 2019-01-13 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
709 b6d05318 2019-01-13 stsp }
710 b6d05318 2019-01-13 stsp n = fread(&hdr.version, 1, sizeof(hdr.version), infile);
711 b6d05318 2019-01-13 stsp if (n != sizeof(hdr.version)) {
712 51514078 2018-12-25 stsp if (n == 0) /* EOF */
713 51514078 2018-12-25 stsp return NULL;
714 27793341 2019-01-12 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
715 51514078 2018-12-25 stsp }
716 b6d05318 2019-01-13 stsp n = fread(&hdr.nentries, 1, sizeof(hdr.nentries), infile);
717 b6d05318 2019-01-13 stsp if (n != sizeof(hdr.nentries)) {
718 b6d05318 2019-01-13 stsp if (n == 0) /* EOF */
719 b6d05318 2019-01-13 stsp return NULL;
720 b6d05318 2019-01-13 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
721 b6d05318 2019-01-13 stsp }
722 52a74475 2018-12-24 stsp
723 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.signature, sizeof(hdr.signature));
724 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.version, sizeof(hdr.version));
725 b16893ba 2023-02-24 thomas got_hash_update(&ctx, &hdr.nentries, sizeof(hdr.nentries));
726 52a74475 2018-12-24 stsp
727 9eb6a6b2 2018-12-24 stsp hdr.signature = be32toh(hdr.signature);
728 9eb6a6b2 2018-12-24 stsp hdr.version = be32toh(hdr.version);
729 9eb6a6b2 2018-12-24 stsp hdr.nentries = be32toh(hdr.nentries);
730 52a74475 2018-12-24 stsp
731 52a74475 2018-12-24 stsp if (hdr.signature != GOT_FILE_INDEX_SIGNATURE)
732 52a74475 2018-12-24 stsp return got_error(GOT_ERR_FILEIDX_SIG);
733 df335242 2019-08-03 stsp if (hdr.version > GOT_FILE_INDEX_VERSION)
734 52a74475 2018-12-24 stsp return got_error(GOT_ERR_FILEIDX_VER);
735 52a74475 2018-12-24 stsp
736 52a74475 2018-12-24 stsp for (i = 0; i < hdr.nentries; i++) {
737 df335242 2019-08-03 stsp err = read_fileindex_entry(&ie, &ctx, infile, hdr.version);
738 52a74475 2018-12-24 stsp if (err)
739 52a74475 2018-12-24 stsp return err;
740 3f762da0 2019-08-03 stsp err = add_entry(fileindex, ie);
741 991857c7 2023-04-14 thomas if (err) {
742 991857c7 2023-04-14 thomas got_fileindex_entry_free(ie);
743 52a74475 2018-12-24 stsp return err;
744 991857c7 2023-04-14 thomas }
745 52a74475 2018-12-24 stsp }
746 52a74475 2018-12-24 stsp
747 52a74475 2018-12-24 stsp n = fread(sha1_expected, 1, sizeof(sha1_expected), infile);
748 52a74475 2018-12-24 stsp if (n != sizeof(sha1_expected))
749 27793341 2019-01-12 stsp return got_ferror(infile, GOT_ERR_FILEIDX_BAD);
750 b16893ba 2023-02-24 thomas got_hash_final(&ctx, sha1);
751 52a74475 2018-12-24 stsp if (memcmp(sha1, sha1_expected, SHA1_DIGEST_LENGTH) != 0)
752 52a74475 2018-12-24 stsp return got_error(GOT_ERR_FILEIDX_CSUM);
753 52a74475 2018-12-24 stsp
754 9d31a1d8 2018-03-11 stsp return NULL;
755 8da9e5f4 2019-01-12 stsp }
756 8da9e5f4 2019-01-12 stsp
757 c2ac9456 2019-03-15 stsp static struct got_fileindex_entry *
758 50952927 2019-01-12 stsp walk_fileindex(struct got_fileindex *fileindex, struct got_fileindex_entry *ie)
759 50952927 2019-01-12 stsp {
760 50952927 2019-01-12 stsp struct got_fileindex_entry *next;
761 50952927 2019-01-12 stsp
762 50952927 2019-01-12 stsp next = RB_NEXT(got_fileindex_tree, &fileindex->entries, ie);
763 50952927 2019-01-12 stsp
764 a46b9f33 2020-01-28 stsp /* Skip entries which were added or removed by diff callbacks. */
765 a46b9f33 2020-01-28 stsp while (next && (next->flags & (GOT_FILEIDX_F_NOT_FLUSHED |
766 a46b9f33 2020-01-28 stsp GOT_FILEIDX_F_REMOVE_ON_FLUSH)))
767 50952927 2019-01-12 stsp next = RB_NEXT(got_fileindex_tree, &fileindex->entries, next);
768 50952927 2019-01-12 stsp
769 50952927 2019-01-12 stsp return next;
770 50952927 2019-01-12 stsp }
771 50952927 2019-01-12 stsp
772 8da9e5f4 2019-01-12 stsp static const struct got_error *
773 56e0773d 2019-11-28 stsp diff_fileindex_tree(struct got_fileindex *, struct got_fileindex_entry **ie,
774 56e0773d 2019-11-28 stsp struct got_tree_object *tree, const char *, const char *,
775 c4cdcb68 2019-04-03 stsp struct got_repository *, struct got_fileindex_diff_tree_cb *, void *);
776 9d2a8e53 2019-01-28 stsp
777 9d2a8e53 2019-01-28 stsp static const struct got_error *
778 8da9e5f4 2019-01-12 stsp walk_tree(struct got_tree_entry **next, struct got_fileindex *fileindex,
779 56e0773d 2019-11-28 stsp struct got_fileindex_entry **ie, struct got_tree_object *tree, int *tidx,
780 c4cdcb68 2019-04-03 stsp const char *path, const char *entry_name, struct got_repository *repo,
781 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb *cb, void *cb_arg)
782 8da9e5f4 2019-01-12 stsp {
783 8da9e5f4 2019-01-12 stsp const struct got_error *err = NULL;
784 56e0773d 2019-11-28 stsp struct got_tree_entry *te = got_object_tree_get_entry(tree, *tidx);
785 8da9e5f4 2019-01-12 stsp
786 56e0773d 2019-11-28 stsp if (!got_object_tree_entry_is_submodule(te) &&
787 56e0773d 2019-11-28 stsp S_ISDIR(got_tree_entry_get_mode(te))) {
788 8da9e5f4 2019-01-12 stsp char *subpath;
789 8da9e5f4 2019-01-12 stsp struct got_tree_object *subtree;
790 8da9e5f4 2019-01-12 stsp
791 8da9e5f4 2019-01-12 stsp if (asprintf(&subpath, "%s%s%s", path,
792 56e0773d 2019-11-28 stsp path[0] == '\0' ? "" : "/",
793 56e0773d 2019-11-28 stsp got_tree_entry_get_name(te)) == -1)
794 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
795 8da9e5f4 2019-01-12 stsp
796 56e0773d 2019-11-28 stsp err = got_object_open_as_tree(&subtree, repo,
797 56e0773d 2019-11-28 stsp got_tree_entry_get_id(te));
798 8da9e5f4 2019-01-12 stsp if (err) {
799 8da9e5f4 2019-01-12 stsp free(subpath);
800 8da9e5f4 2019-01-12 stsp return err;
801 8da9e5f4 2019-01-12 stsp }
802 8da9e5f4 2019-01-12 stsp
803 56e0773d 2019-11-28 stsp err = diff_fileindex_tree(fileindex, ie, subtree, subpath,
804 56e0773d 2019-11-28 stsp entry_name, repo, cb, cb_arg);
805 8da9e5f4 2019-01-12 stsp free(subpath);
806 8da9e5f4 2019-01-12 stsp got_object_tree_close(subtree);
807 8da9e5f4 2019-01-12 stsp if (err)
808 8da9e5f4 2019-01-12 stsp return err;
809 8da9e5f4 2019-01-12 stsp }
810 8da9e5f4 2019-01-12 stsp
811 56e0773d 2019-11-28 stsp (*tidx)++;
812 56e0773d 2019-11-28 stsp *next = got_object_tree_get_entry(tree, *tidx);
813 8da9e5f4 2019-01-12 stsp return NULL;
814 8da9e5f4 2019-01-12 stsp }
815 8da9e5f4 2019-01-12 stsp
816 8da9e5f4 2019-01-12 stsp static const struct got_error *
817 8da9e5f4 2019-01-12 stsp diff_fileindex_tree(struct got_fileindex *fileindex,
818 56e0773d 2019-11-28 stsp struct got_fileindex_entry **ie, struct got_tree_object *tree,
819 c4cdcb68 2019-04-03 stsp const char *path, const char *entry_name, struct got_repository *repo,
820 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb *cb, void *cb_arg)
821 8da9e5f4 2019-01-12 stsp {
822 8da9e5f4 2019-01-12 stsp const struct got_error *err = NULL;
823 8da9e5f4 2019-01-12 stsp struct got_tree_entry *te = NULL;
824 8da9e5f4 2019-01-12 stsp size_t path_len = strlen(path);
825 8da9e5f4 2019-01-12 stsp struct got_fileindex_entry *next;
826 56e0773d 2019-11-28 stsp int tidx = 0;
827 8da9e5f4 2019-01-12 stsp
828 56e0773d 2019-11-28 stsp te = got_object_tree_get_entry(tree, tidx);
829 500cd40f 2019-02-04 stsp while ((*ie && got_path_is_child((*ie)->path, path, path_len)) || te) {
830 8da9e5f4 2019-01-12 stsp if (te && *ie) {
831 18831e78 2019-02-10 stsp char *te_path;
832 56e0773d 2019-11-28 stsp const char *te_name = got_tree_entry_get_name(te);
833 18831e78 2019-02-10 stsp int cmp;
834 56e0773d 2019-11-28 stsp if (asprintf(&te_path, "%s/%s", path, te_name) == -1) {
835 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
836 18831e78 2019-02-10 stsp break;
837 18831e78 2019-02-10 stsp }
838 d572f586 2019-08-02 stsp cmp = got_path_cmp((*ie)->path, te_path,
839 4d555405 2019-08-03 stsp got_fileindex_entry_path_len(*ie), strlen(te_path));
840 18831e78 2019-02-10 stsp free(te_path);
841 8da9e5f4 2019-01-12 stsp if (cmp == 0) {
842 c4cdcb68 2019-04-03 stsp if (got_path_is_child((*ie)->path, path,
843 63c5ca5d 2019-08-24 stsp path_len) &&
844 63c5ca5d 2019-08-24 stsp !got_object_tree_entry_is_submodule(te) &&
845 63c5ca5d 2019-08-24 stsp (entry_name == NULL ||
846 56e0773d 2019-11-28 stsp strcmp(te_name, entry_name) == 0)) {
847 c4cdcb68 2019-04-03 stsp err = cb->diff_old_new(cb_arg, *ie, te,
848 c4cdcb68 2019-04-03 stsp path);
849 c4cdcb68 2019-04-03 stsp if (err || entry_name)
850 c4cdcb68 2019-04-03 stsp break;
851 c4cdcb68 2019-04-03 stsp }
852 50952927 2019-01-12 stsp *ie = walk_fileindex(fileindex, *ie);
853 56e0773d 2019-11-28 stsp err = walk_tree(&te, fileindex, ie, tree, &tidx,
854 c4cdcb68 2019-04-03 stsp path, entry_name, repo, cb, cb_arg);
855 c4cdcb68 2019-04-03 stsp } else if (cmp < 0) {
856 50952927 2019-01-12 stsp next = walk_fileindex(fileindex, *ie);
857 c4cdcb68 2019-04-03 stsp if (got_path_is_child((*ie)->path, path,
858 194cb7cb 2021-01-19 stsp path_len) && entry_name == NULL) {
859 c4cdcb68 2019-04-03 stsp err = cb->diff_old(cb_arg, *ie, path);
860 c4cdcb68 2019-04-03 stsp if (err || entry_name)
861 c4cdcb68 2019-04-03 stsp break;
862 c4cdcb68 2019-04-03 stsp }
863 8da9e5f4 2019-01-12 stsp *ie = next;
864 8da9e5f4 2019-01-12 stsp } else {
865 c4cdcb68 2019-04-03 stsp if ((entry_name == NULL ||
866 56e0773d 2019-11-28 stsp strcmp(te_name, entry_name) == 0)) {
867 c4cdcb68 2019-04-03 stsp err = cb->diff_new(cb_arg, te, path);
868 c4cdcb68 2019-04-03 stsp if (err || entry_name)
869 c4cdcb68 2019-04-03 stsp break;
870 c4cdcb68 2019-04-03 stsp }
871 56e0773d 2019-11-28 stsp err = walk_tree(&te, fileindex, ie, tree, &tidx,
872 c4cdcb68 2019-04-03 stsp path, entry_name, repo, cb, cb_arg);
873 8da9e5f4 2019-01-12 stsp }
874 8da9e5f4 2019-01-12 stsp if (err)
875 8da9e5f4 2019-01-12 stsp break;
876 8da9e5f4 2019-01-12 stsp } else if (*ie) {
877 50952927 2019-01-12 stsp next = walk_fileindex(fileindex, *ie);
878 c4cdcb68 2019-04-03 stsp if (got_path_is_child((*ie)->path, path, path_len) &&
879 c4cdcb68 2019-04-03 stsp (entry_name == NULL ||
880 56e0773d 2019-11-28 stsp (te && strcmp(got_tree_entry_get_name(te),
881 56e0773d 2019-11-28 stsp entry_name) == 0))) {
882 c4cdcb68 2019-04-03 stsp err = cb->diff_old(cb_arg, *ie, path);
883 c4cdcb68 2019-04-03 stsp if (err || entry_name)
884 c4cdcb68 2019-04-03 stsp break;
885 c4cdcb68 2019-04-03 stsp }
886 8da9e5f4 2019-01-12 stsp *ie = next;
887 8da9e5f4 2019-01-12 stsp } else if (te) {
888 63c5ca5d 2019-08-24 stsp if (!got_object_tree_entry_is_submodule(te) &&
889 63c5ca5d 2019-08-24 stsp (entry_name == NULL ||
890 56e0773d 2019-11-28 stsp strcmp(got_tree_entry_get_name(te), entry_name)
891 56e0773d 2019-11-28 stsp == 0)) {
892 c4cdcb68 2019-04-03 stsp err = cb->diff_new(cb_arg, te, path);
893 c4cdcb68 2019-04-03 stsp if (err || entry_name)
894 c4cdcb68 2019-04-03 stsp break;
895 c4cdcb68 2019-04-03 stsp }
896 56e0773d 2019-11-28 stsp err = walk_tree(&te, fileindex, ie, tree, &tidx, path,
897 c4cdcb68 2019-04-03 stsp entry_name, repo, cb, cb_arg);
898 8da9e5f4 2019-01-12 stsp if (err)
899 8da9e5f4 2019-01-12 stsp break;
900 8da9e5f4 2019-01-12 stsp }
901 500cd40f 2019-02-04 stsp }
902 8da9e5f4 2019-01-12 stsp
903 8da9e5f4 2019-01-12 stsp return err;
904 8da9e5f4 2019-01-12 stsp }
905 8da9e5f4 2019-01-12 stsp
906 8da9e5f4 2019-01-12 stsp const struct got_error *
907 8da9e5f4 2019-01-12 stsp got_fileindex_diff_tree(struct got_fileindex *fileindex,
908 c4cdcb68 2019-04-03 stsp struct got_tree_object *tree, const char *path, const char *entry_name,
909 c4cdcb68 2019-04-03 stsp struct got_repository *repo,
910 f44ffd20 2019-02-04 stsp struct got_fileindex_diff_tree_cb *cb, void *cb_arg)
911 8da9e5f4 2019-01-12 stsp {
912 30a076bc 2019-07-27 stsp struct got_fileindex_entry *ie;
913 30a076bc 2019-07-27 stsp ie = RB_MIN(got_fileindex_tree, &fileindex->entries);
914 30a076bc 2019-07-27 stsp while (ie && !got_path_is_child(ie->path, path, strlen(path)))
915 30a076bc 2019-07-27 stsp ie = walk_fileindex(fileindex, ie);
916 56e0773d 2019-11-28 stsp return diff_fileindex_tree(fileindex, &ie, tree, path, entry_name, repo,
917 30a076bc 2019-07-27 stsp cb, cb_arg);
918 d1f6d47b 2019-02-04 stsp }
919 d1f6d47b 2019-02-04 stsp
920 d1f6d47b 2019-02-04 stsp static const struct got_error *
921 39beb6da 2019-07-27 stsp diff_fileindex_dir(struct got_fileindex *, struct got_fileindex_entry **,
922 6fc93f37 2019-12-13 stsp struct got_pathlist_head *, int, const char *, const char *,
923 c577a9ce 2019-07-27 stsp struct got_repository *, struct got_fileindex_diff_dir_cb *, void *);
924 c577a9ce 2019-07-27 stsp
925 c577a9ce 2019-07-27 stsp static const struct got_error *
926 965988c5 2019-12-16 stsp read_dirlist(struct got_pathlist_head *dirlist, DIR *dir, const char *path)
927 c577a9ce 2019-07-27 stsp {
928 c577a9ce 2019-07-27 stsp const struct got_error *err = NULL;
929 c577a9ce 2019-07-27 stsp struct got_pathlist_entry *new = NULL;
930 c577a9ce 2019-07-27 stsp struct dirent *dep = NULL;
931 c577a9ce 2019-07-27 stsp struct dirent *de = NULL;
932 c577a9ce 2019-07-27 stsp
933 c577a9ce 2019-07-27 stsp for (;;) {
934 c577a9ce 2019-07-27 stsp de = malloc(sizeof(struct dirent) + NAME_MAX + 1);
935 c577a9ce 2019-07-27 stsp if (de == NULL) {
936 c577a9ce 2019-07-27 stsp err = got_error_from_errno("malloc");
937 c577a9ce 2019-07-27 stsp break;
938 c577a9ce 2019-07-27 stsp }
939 c577a9ce 2019-07-27 stsp
940 c577a9ce 2019-07-27 stsp if (readdir_r(dir, de, &dep) != 0) {
941 c577a9ce 2019-07-27 stsp err = got_error_from_errno("readdir_r");
942 c577a9ce 2019-07-27 stsp free(de);
943 c577a9ce 2019-07-27 stsp break;
944 c577a9ce 2019-07-27 stsp }
945 c577a9ce 2019-07-27 stsp if (dep == NULL) {
946 c577a9ce 2019-07-27 stsp free(de);
947 c577a9ce 2019-07-27 stsp break;
948 c577a9ce 2019-07-27 stsp }
949 c577a9ce 2019-07-27 stsp
950 c577a9ce 2019-07-27 stsp if (strcmp(de->d_name, ".") == 0 ||
951 c577a9ce 2019-07-27 stsp strcmp(de->d_name, "..") == 0 ||
952 c577a9ce 2019-07-27 stsp (path[0] == '\0' &&
953 ad10f64e 2023-07-19 thomas strcmp(de->d_name, GOT_WORKTREE_GOT_DIR) == 0) ||
954 ad10f64e 2023-07-19 thomas (path[0] == '\0' &&
955 ad10f64e 2023-07-19 thomas strcmp(de->d_name, GOT_WORKTREE_CVG_DIR) == 0)) {
956 c577a9ce 2019-07-27 stsp free(de);
957 c577a9ce 2019-07-27 stsp continue;
958 c577a9ce 2019-07-27 stsp }
959 c577a9ce 2019-07-27 stsp
960 c577a9ce 2019-07-27 stsp err = got_pathlist_insert(&new, dirlist, de->d_name, de);
961 c577a9ce 2019-07-27 stsp if (err) {
962 c577a9ce 2019-07-27 stsp free(de);
963 c577a9ce 2019-07-27 stsp break;
964 c577a9ce 2019-07-27 stsp }
965 c577a9ce 2019-07-27 stsp if (new == NULL) {
966 c577a9ce 2019-07-27 stsp err = got_error(GOT_ERR_DIR_DUP_ENTRY);
967 c577a9ce 2019-07-27 stsp free(de);
968 c577a9ce 2019-07-27 stsp break;
969 c577a9ce 2019-07-27 stsp }
970 c577a9ce 2019-07-27 stsp }
971 500cd40f 2019-02-04 stsp
972 c577a9ce 2019-07-27 stsp return err;
973 c577a9ce 2019-07-27 stsp }
974 8528beef 2021-10-15 thomas
975 8528beef 2021-10-15 thomas static int
976 8528beef 2021-10-15 thomas have_tracked_file_in_dir(struct got_fileindex *fileindex, const char *path)
977 8528beef 2021-10-15 thomas {
978 8528beef 2021-10-15 thomas struct got_fileindex_entry *ie;
979 8528beef 2021-10-15 thomas size_t path_len = strlen(path);
980 8528beef 2021-10-15 thomas int cmp;
981 c577a9ce 2019-07-27 stsp
982 8528beef 2021-10-15 thomas ie = RB_ROOT(&fileindex->entries);
983 8528beef 2021-10-15 thomas while (ie) {
984 8528beef 2021-10-15 thomas if (got_path_is_child(ie->path, path, path_len))
985 8528beef 2021-10-15 thomas return 1;
986 8528beef 2021-10-15 thomas cmp = got_path_cmp(path, ie->path, path_len,
987 8528beef 2021-10-15 thomas got_fileindex_entry_path_len(ie));
988 8528beef 2021-10-15 thomas if (cmp < 0)
989 8528beef 2021-10-15 thomas ie = RB_LEFT(ie, entry);
990 8528beef 2021-10-15 thomas else if (cmp > 0)
991 8528beef 2021-10-15 thomas ie = RB_RIGHT(ie, entry);
992 8528beef 2021-10-15 thomas else
993 8528beef 2021-10-15 thomas break;
994 8528beef 2021-10-15 thomas }
995 8528beef 2021-10-15 thomas
996 8528beef 2021-10-15 thomas return 0;
997 8528beef 2021-10-15 thomas }
998 8528beef 2021-10-15 thomas
999 d1f6d47b 2019-02-04 stsp static const struct got_error *
1000 f5d3d7af 2019-02-05 stsp walk_dir(struct got_pathlist_entry **next, struct got_fileindex *fileindex,
1001 965988c5 2019-12-16 stsp struct got_fileindex_entry **ie, struct got_pathlist_entry *dle, int fd,
1002 39beb6da 2019-07-27 stsp const char *path, const char *rootpath, struct got_repository *repo,
1003 6092c299 2021-10-04 thomas int ignore, struct got_fileindex_diff_dir_cb *cb, void *cb_arg)
1004 d1f6d47b 2019-02-04 stsp {
1005 d1f6d47b 2019-02-04 stsp const struct got_error *err = NULL;
1006 f5d3d7af 2019-02-05 stsp struct dirent *de = dle->data;
1007 965988c5 2019-12-16 stsp DIR *subdir = NULL;
1008 6fc93f37 2019-12-13 stsp int subdirfd = -1;
1009 573463cc 2019-04-06 stsp
1010 573463cc 2019-04-06 stsp *next = NULL;
1011 20ccae39 2020-07-21 stsp
1012 8528beef 2021-10-15 thomas /* Must traverse ignored directories if they contain tracked files. */
1013 1f480907 2022-01-27 thomas if (de->d_type == DT_DIR && ignore &&
1014 8528beef 2021-10-15 thomas have_tracked_file_in_dir(fileindex, path))
1015 8528beef 2021-10-15 thomas ignore = 0;
1016 8528beef 2021-10-15 thomas
1017 1f480907 2022-01-27 thomas if (de->d_type == DT_DIR && !ignore) {
1018 d1f6d47b 2019-02-04 stsp char *subpath;
1019 c7f4312f 2019-02-05 stsp char *subdirpath;
1020 c577a9ce 2019-07-27 stsp struct got_pathlist_head subdirlist;
1021 d1f6d47b 2019-02-04 stsp
1022 c577a9ce 2019-07-27 stsp TAILQ_INIT(&subdirlist);
1023 c577a9ce 2019-07-27 stsp
1024 d1f6d47b 2019-02-04 stsp if (asprintf(&subpath, "%s%s%s", path,
1025 f5d3d7af 2019-02-05 stsp path[0] == '\0' ? "" : "/", de->d_name) == -1)
1026 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1027 d1f6d47b 2019-02-04 stsp
1028 c7f4312f 2019-02-05 stsp if (asprintf(&subdirpath, "%s/%s", rootpath, subpath) == -1) {
1029 c7f4312f 2019-02-05 stsp free(subpath);
1030 638f9024 2019-05-13 stsp return got_error_from_errno("asprintf");
1031 c7f4312f 2019-02-05 stsp }
1032 c7f4312f 2019-02-05 stsp
1033 965988c5 2019-12-16 stsp subdirfd = openat(fd, de->d_name,
1034 fc63f50d 2021-12-31 thomas O_RDONLY | O_NOFOLLOW | O_DIRECTORY | O_CLOEXEC);
1035 6fc93f37 2019-12-13 stsp if (subdirfd == -1) {
1036 40b289d7 2019-09-07 stsp if (errno == EACCES) {
1037 40b289d7 2019-09-07 stsp *next = TAILQ_NEXT(dle, entry);
1038 40b289d7 2019-09-07 stsp return NULL;
1039 40b289d7 2019-09-07 stsp }
1040 965988c5 2019-12-16 stsp err = got_error_from_errno2("openat", subdirpath);
1041 d1f6d47b 2019-02-04 stsp free(subpath);
1042 c7f4312f 2019-02-05 stsp free(subdirpath);
1043 ef5e02fd 2019-08-11 stsp return err;
1044 d1f6d47b 2019-02-04 stsp }
1045 d1f6d47b 2019-02-04 stsp
1046 965988c5 2019-12-16 stsp subdir = fdopendir(subdirfd);
1047 815470d4 2024-01-31 thomas if (subdir == NULL) {
1048 815470d4 2024-01-31 thomas err = got_error_from_errno2("fdopendir", path);
1049 815470d4 2024-01-31 thomas close(subdirfd);
1050 815470d4 2024-01-31 thomas free(subpath);
1051 815470d4 2024-01-31 thomas free(subdirpath);
1052 815470d4 2024-01-31 thomas return err;
1053 815470d4 2024-01-31 thomas }
1054 965988c5 2019-12-16 stsp subdirfd = -1;
1055 965988c5 2019-12-16 stsp err = read_dirlist(&subdirlist, subdir, subdirpath);
1056 c577a9ce 2019-07-27 stsp if (err) {
1057 c577a9ce 2019-07-27 stsp free(subpath);
1058 c577a9ce 2019-07-27 stsp free(subdirpath);
1059 965988c5 2019-12-16 stsp closedir(subdir);
1060 c577a9ce 2019-07-27 stsp return err;
1061 c577a9ce 2019-07-27 stsp }
1062 965988c5 2019-12-16 stsp err = diff_fileindex_dir(fileindex, ie, &subdirlist,
1063 965988c5 2019-12-16 stsp dirfd(subdir), rootpath, subpath, repo, cb, cb_arg);
1064 965988c5 2019-12-16 stsp if (subdir && closedir(subdir) == -1 && err == NULL)
1065 965988c5 2019-12-16 stsp err = got_error_from_errno2("closedir", subdirpath);
1066 d1f6d47b 2019-02-04 stsp free(subpath);
1067 c7f4312f 2019-02-05 stsp free(subdirpath);
1068 21c2d8be 2023-01-10 thomas got_pathlist_free(&subdirlist, GOT_PATHLIST_FREE_DATA);
1069 d1f6d47b 2019-02-04 stsp if (err)
1070 d1f6d47b 2019-02-04 stsp return err;
1071 d1f6d47b 2019-02-04 stsp }
1072 d1f6d47b 2019-02-04 stsp
1073 f5d3d7af 2019-02-05 stsp *next = TAILQ_NEXT(dle, entry);
1074 d1f6d47b 2019-02-04 stsp return NULL;
1075 d1f6d47b 2019-02-04 stsp }
1076 d1f6d47b 2019-02-04 stsp
1077 d1f6d47b 2019-02-04 stsp static const struct got_error *
1078 1f480907 2022-01-27 thomas dirent_type_fixup(struct dirent *de, const char *rootpath, const char *path)
1079 1f480907 2022-01-27 thomas {
1080 1f480907 2022-01-27 thomas const struct got_error *err;
1081 1f480907 2022-01-27 thomas char *dir_path;
1082 1f480907 2022-01-27 thomas int type;
1083 1f480907 2022-01-27 thomas
1084 1f480907 2022-01-27 thomas if (de->d_type != DT_UNKNOWN)
1085 1f480907 2022-01-27 thomas return NULL;
1086 1f480907 2022-01-27 thomas
1087 1f480907 2022-01-27 thomas /* DT_UNKNOWN occurs on NFS mounts without "readdir plus" RPC. */
1088 1f480907 2022-01-27 thomas if (asprintf(&dir_path, "%s/%s", rootpath, path) == -1)
1089 1f480907 2022-01-27 thomas return got_error_from_errno("asprintf");
1090 1f480907 2022-01-27 thomas err = got_path_dirent_type(&type, dir_path, de);
1091 1f480907 2022-01-27 thomas free(dir_path);
1092 1f480907 2022-01-27 thomas if (err)
1093 1f480907 2022-01-27 thomas return err;
1094 1f480907 2022-01-27 thomas
1095 1f480907 2022-01-27 thomas de->d_type = type;
1096 1f480907 2022-01-27 thomas return NULL;
1097 1f480907 2022-01-27 thomas }
1098 1f480907 2022-01-27 thomas
1099 1f480907 2022-01-27 thomas static const struct got_error *
1100 d1f6d47b 2019-02-04 stsp diff_fileindex_dir(struct got_fileindex *fileindex,
1101 39beb6da 2019-07-27 stsp struct got_fileindex_entry **ie, struct got_pathlist_head *dirlist,
1102 6fc93f37 2019-12-13 stsp int dirfd, const char *rootpath, const char *path,
1103 6fc93f37 2019-12-13 stsp struct got_repository *repo,
1104 39beb6da 2019-07-27 stsp struct got_fileindex_diff_dir_cb *cb, void *cb_arg)
1105 d1f6d47b 2019-02-04 stsp {
1106 d1f6d47b 2019-02-04 stsp const struct got_error *err = NULL;
1107 d1f6d47b 2019-02-04 stsp struct dirent *de = NULL;
1108 d1f6d47b 2019-02-04 stsp size_t path_len = strlen(path);
1109 f5d3d7af 2019-02-05 stsp struct got_pathlist_entry *dle;
1110 6092c299 2021-10-04 thomas int ignore;
1111 3143d852 2020-06-25 stsp
1112 3143d852 2020-06-25 stsp if (cb->diff_traverse) {
1113 3143d852 2020-06-25 stsp err = cb->diff_traverse(cb_arg, path, dirfd);
1114 3143d852 2020-06-25 stsp if (err)
1115 3143d852 2020-06-25 stsp return err;
1116 3143d852 2020-06-25 stsp }
1117 d1f6d47b 2019-02-04 stsp
1118 c577a9ce 2019-07-27 stsp dle = TAILQ_FIRST(dirlist);
1119 500cd40f 2019-02-04 stsp while ((*ie && got_path_is_child((*ie)->path, path, path_len)) || dle) {
1120 500cd40f 2019-02-04 stsp if (dle && *ie) {
1121 18831e78 2019-02-10 stsp char *de_path;
1122 e7a2f030 2019-02-05 stsp int cmp;
1123 f5d3d7af 2019-02-05 stsp de = dle->data;
1124 1f480907 2022-01-27 thomas err = dirent_type_fixup(de, rootpath, path);
1125 1f480907 2022-01-27 thomas if (err)
1126 1f480907 2022-01-27 thomas break;
1127 18831e78 2019-02-10 stsp if (asprintf(&de_path, "%s/%s", path,
1128 18831e78 2019-02-10 stsp de->d_name) == -1) {
1129 638f9024 2019-05-13 stsp err = got_error_from_errno("asprintf");
1130 13ff9e90 2019-02-10 stsp break;
1131 18831e78 2019-02-10 stsp }
1132 d572f586 2019-08-02 stsp cmp = got_path_cmp((*ie)->path, de_path,
1133 4d555405 2019-08-03 stsp got_fileindex_entry_path_len(*ie),
1134 dd038bc6 2021-09-21 thomas.ad strlen(path) + 1 + strlen(de->d_name));
1135 18831e78 2019-02-10 stsp free(de_path);
1136 d1f6d47b 2019-02-04 stsp if (cmp == 0) {
1137 7f91a133 2019-12-13 stsp err = cb->diff_old_new(cb_arg, *ie, de, path,
1138 7f91a133 2019-12-13 stsp dirfd);
1139 d1f6d47b 2019-02-04 stsp if (err)
1140 d1f6d47b 2019-02-04 stsp break;
1141 d1f6d47b 2019-02-04 stsp *ie = walk_fileindex(fileindex, *ie);
1142 6fc93f37 2019-12-13 stsp err = walk_dir(&dle, fileindex, ie, dle, dirfd,
1143 6092c299 2021-10-04 thomas path, rootpath, repo, 0, cb, cb_arg);
1144 d1f6d47b 2019-02-04 stsp } else if (cmp < 0 ) {
1145 d1f6d47b 2019-02-04 stsp err = cb->diff_old(cb_arg, *ie, path);
1146 d1f6d47b 2019-02-04 stsp if (err)
1147 d1f6d47b 2019-02-04 stsp break;
1148 c577a9ce 2019-07-27 stsp *ie = walk_fileindex(fileindex, *ie);
1149 d1f6d47b 2019-02-04 stsp } else {
1150 6092c299 2021-10-04 thomas err = cb->diff_new(&ignore, cb_arg, de, path,
1151 6092c299 2021-10-04 thomas dirfd);
1152 d1f6d47b 2019-02-04 stsp if (err)
1153 d1f6d47b 2019-02-04 stsp break;
1154 6fc93f37 2019-12-13 stsp err = walk_dir(&dle, fileindex, ie, dle, dirfd,
1155 6092c299 2021-10-04 thomas path, rootpath, repo, ignore, cb, cb_arg);
1156 d1f6d47b 2019-02-04 stsp }
1157 554b91b1 2019-02-04 stsp if (err)
1158 554b91b1 2019-02-04 stsp break;
1159 554b91b1 2019-02-04 stsp } else if (*ie) {
1160 554b91b1 2019-02-04 stsp err = cb->diff_old(cb_arg, *ie, path);
1161 554b91b1 2019-02-04 stsp if (err)
1162 554b91b1 2019-02-04 stsp break;
1163 c577a9ce 2019-07-27 stsp *ie = walk_fileindex(fileindex, *ie);
1164 554b91b1 2019-02-04 stsp } else if (dle) {
1165 763e1377 2019-02-05 stsp de = dle->data;
1166 1f480907 2022-01-27 thomas err = dirent_type_fixup(de, rootpath, path);
1167 1f480907 2022-01-27 thomas if (err)
1168 1f480907 2022-01-27 thomas break;
1169 6092c299 2021-10-04 thomas err = cb->diff_new(&ignore, cb_arg, de, path, dirfd);
1170 d1f6d47b 2019-02-04 stsp if (err)
1171 d1f6d47b 2019-02-04 stsp break;
1172 6fc93f37 2019-12-13 stsp err = walk_dir(&dle, fileindex, ie, dle, dirfd, path,
1173 6092c299 2021-10-04 thomas rootpath, repo, ignore, cb, cb_arg);
1174 554b91b1 2019-02-04 stsp if (err)
1175 554b91b1 2019-02-04 stsp break;
1176 d1f6d47b 2019-02-04 stsp }
1177 500cd40f 2019-02-04 stsp }
1178 c577a9ce 2019-07-27 stsp
1179 d1f6d47b 2019-02-04 stsp return err;
1180 8da9e5f4 2019-01-12 stsp }
1181 8da9e5f4 2019-01-12 stsp
1182 d1f6d47b 2019-02-04 stsp const struct got_error *
1183 965988c5 2019-12-16 stsp got_fileindex_diff_dir(struct got_fileindex *fileindex, int fd,
1184 927df6b7 2019-02-10 stsp const char *rootpath, const char *path, struct got_repository *repo,
1185 c7f4312f 2019-02-05 stsp struct got_fileindex_diff_dir_cb *cb, void *cb_arg)
1186 d1f6d47b 2019-02-04 stsp {
1187 c577a9ce 2019-07-27 stsp const struct got_error *err;
1188 c577a9ce 2019-07-27 stsp struct got_fileindex_entry *ie;
1189 c577a9ce 2019-07-27 stsp struct got_pathlist_head dirlist;
1190 965988c5 2019-12-16 stsp int fd2;
1191 965988c5 2019-12-16 stsp DIR *dir;
1192 c577a9ce 2019-07-27 stsp
1193 c577a9ce 2019-07-27 stsp TAILQ_INIT(&dirlist);
1194 965988c5 2019-12-16 stsp
1195 b6b86fd1 2022-08-30 thomas /*
1196 965988c5 2019-12-16 stsp * Duplicate the file descriptor so we can call closedir() below
1197 965988c5 2019-12-16 stsp * without closing the file descriptor passed in by our caller.
1198 965988c5 2019-12-16 stsp */
1199 965988c5 2019-12-16 stsp fd2 = dup(fd);
1200 965988c5 2019-12-16 stsp if (fd2 == -1)
1201 965988c5 2019-12-16 stsp return got_error_from_errno2("dup", path);
1202 3dcf3e74 2020-01-28 stsp if (lseek(fd2, 0, SEEK_SET) == -1) {
1203 3dcf3e74 2020-01-28 stsp err = got_error_from_errno2("lseek", path);
1204 3dcf3e74 2020-01-28 stsp close(fd2);
1205 3dcf3e74 2020-01-28 stsp return err;
1206 3dcf3e74 2020-01-28 stsp }
1207 965988c5 2019-12-16 stsp dir = fdopendir(fd2);
1208 3dcf3e74 2020-01-28 stsp if (dir == NULL) {
1209 3dcf3e74 2020-01-28 stsp err = got_error_from_errno2("fdopendir", path);
1210 3dcf3e74 2020-01-28 stsp close(fd2);
1211 3dcf3e74 2020-01-28 stsp return err;
1212 3dcf3e74 2020-01-28 stsp }
1213 965988c5 2019-12-16 stsp err = read_dirlist(&dirlist, dir, path);
1214 965988c5 2019-12-16 stsp if (err) {
1215 965988c5 2019-12-16 stsp closedir(dir);
1216 c577a9ce 2019-07-27 stsp return err;
1217 965988c5 2019-12-16 stsp }
1218 965988c5 2019-12-16 stsp
1219 c577a9ce 2019-07-27 stsp ie = RB_MIN(got_fileindex_tree, &fileindex->entries);
1220 c577a9ce 2019-07-27 stsp while (ie && !got_path_is_child(ie->path, path, strlen(path)))
1221 c577a9ce 2019-07-27 stsp ie = walk_fileindex(fileindex, ie);
1222 965988c5 2019-12-16 stsp err = diff_fileindex_dir(fileindex, &ie, &dirlist, dirfd(dir),
1223 965988c5 2019-12-16 stsp rootpath, path, repo, cb, cb_arg);
1224 965988c5 2019-12-16 stsp
1225 965988c5 2019-12-16 stsp if (closedir(dir) == -1 && err == NULL)
1226 965988c5 2019-12-16 stsp err = got_error_from_errno2("closedir", path);
1227 21c2d8be 2023-01-10 thomas got_pathlist_free(&dirlist, GOT_PATHLIST_FREE_DATA);
1228 c577a9ce 2019-07-27 stsp return err;
1229 d1f6d47b 2019-02-04 stsp }
1230 d1f6d47b 2019-02-04 stsp
1231 43010591 2023-02-17 thomas struct got_object_id *
1232 43010591 2023-02-17 thomas got_fileindex_entry_get_staged_blob_id(struct got_object_id *id,
1233 43010591 2023-02-17 thomas struct got_fileindex_entry *ie)
1234 43010591 2023-02-17 thomas {
1235 43010591 2023-02-17 thomas memset(id, 0, sizeof(*id));
1236 43010591 2023-02-17 thomas memcpy(id->sha1, ie->staged_blob_sha1, sizeof(ie->staged_blob_sha1));
1237 43010591 2023-02-17 thomas return id;
1238 43010591 2023-02-17 thomas }
1239 43010591 2023-02-17 thomas
1240 43010591 2023-02-17 thomas struct got_object_id *
1241 43010591 2023-02-17 thomas got_fileindex_entry_get_blob_id(struct got_object_id *id,
1242 43010591 2023-02-17 thomas struct got_fileindex_entry *ie)
1243 43010591 2023-02-17 thomas {
1244 43010591 2023-02-17 thomas memset(id, 0, sizeof(*id));
1245 43010591 2023-02-17 thomas memcpy(id->sha1, ie->blob_sha1, sizeof(ie->blob_sha1));
1246 43010591 2023-02-17 thomas return id;
1247 43010591 2023-02-17 thomas }
1248 43010591 2023-02-17 thomas
1249 43010591 2023-02-17 thomas struct got_object_id *
1250 43010591 2023-02-17 thomas got_fileindex_entry_get_commit_id(struct got_object_id *id,
1251 43010591 2023-02-17 thomas struct got_fileindex_entry *ie)
1252 43010591 2023-02-17 thomas {
1253 43010591 2023-02-17 thomas memset(id, 0, sizeof(*id));
1254 43010591 2023-02-17 thomas memcpy(id->sha1, ie->commit_sha1, sizeof(ie->commit_sha1));
1255 43010591 2023-02-17 thomas return id;
1256 43010591 2023-02-17 thomas }
1257 43010591 2023-02-17 thomas
1258 7a9df742 2019-01-08 stsp RB_GENERATE(got_fileindex_tree, got_fileindex_entry, entry, got_fileindex_cmp);