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