Blame


1 301e83b3 2022-10-16 stsp /*
2 301e83b3 2022-10-16 stsp * Copyright (c) 2020 Ori Bernstein
3 301e83b3 2022-10-16 stsp * Copyright (c) 2021, 2022 Stefan Sperling <stsp@openbsd.org>
4 301e83b3 2022-10-16 stsp *
5 301e83b3 2022-10-16 stsp * Permission to use, copy, modify, and distribute this software for any
6 301e83b3 2022-10-16 stsp * purpose with or without fee is hereby granted, provided that the above
7 301e83b3 2022-10-16 stsp * copyright notice and this permission notice appear in all copies.
8 301e83b3 2022-10-16 stsp *
9 301e83b3 2022-10-16 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 301e83b3 2022-10-16 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 301e83b3 2022-10-16 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 301e83b3 2022-10-16 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 301e83b3 2022-10-16 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 301e83b3 2022-10-16 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 301e83b3 2022-10-16 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 301e83b3 2022-10-16 stsp */
17 301e83b3 2022-10-16 stsp
18 301e83b3 2022-10-16 stsp #include <sys/types.h>
19 301e83b3 2022-10-16 stsp #include <sys/queue.h>
20 301e83b3 2022-10-16 stsp #include <sys/tree.h>
21 301e83b3 2022-10-16 stsp #include <sys/uio.h>
22 301e83b3 2022-10-16 stsp
23 301e83b3 2022-10-16 stsp #include <sha1.h>
24 301e83b3 2022-10-16 stsp #include <limits.h>
25 301e83b3 2022-10-16 stsp #include <stdio.h>
26 301e83b3 2022-10-16 stsp #include <stdint.h>
27 301e83b3 2022-10-16 stsp #include <stdlib.h>
28 301e83b3 2022-10-16 stsp #include <string.h>
29 cae60ab8 2022-10-18 stsp #include <time.h>
30 301e83b3 2022-10-16 stsp #include <imsg.h>
31 301e83b3 2022-10-16 stsp #include <inttypes.h>
32 301e83b3 2022-10-16 stsp #include <unistd.h>
33 301e83b3 2022-10-16 stsp
34 301e83b3 2022-10-16 stsp #include "got_error.h"
35 301e83b3 2022-10-16 stsp #include "got_cancel.h"
36 301e83b3 2022-10-16 stsp #include "got_object.h"
37 301e83b3 2022-10-16 stsp #include "got_reference.h"
38 301e83b3 2022-10-16 stsp #include "got_repository_admin.h"
39 301e83b3 2022-10-16 stsp #include "got_path.h"
40 301e83b3 2022-10-16 stsp
41 301e83b3 2022-10-16 stsp #include "got_lib_delta.h"
42 301e83b3 2022-10-16 stsp #include "got_lib_object.h"
43 301e83b3 2022-10-16 stsp #include "got_lib_object_cache.h"
44 301e83b3 2022-10-16 stsp #include "got_lib_object_idset.h"
45 301e83b3 2022-10-16 stsp #include "got_lib_privsep.h"
46 cae60ab8 2022-10-18 stsp #include "got_lib_ratelimit.h"
47 301e83b3 2022-10-16 stsp #include "got_lib_pack.h"
48 301e83b3 2022-10-16 stsp #include "got_lib_pack_create.h"
49 301e83b3 2022-10-16 stsp #include "got_lib_repository.h"
50 301e83b3 2022-10-16 stsp
51 301e83b3 2022-10-16 stsp struct send_id_arg {
52 301e83b3 2022-10-16 stsp struct imsgbuf *ibuf;
53 301e83b3 2022-10-16 stsp struct got_object_id *ids[GOT_IMSG_OBJ_ID_LIST_MAX_NIDS];
54 301e83b3 2022-10-16 stsp size_t nids;
55 301e83b3 2022-10-16 stsp };
56 301e83b3 2022-10-16 stsp
57 301e83b3 2022-10-16 stsp static const struct got_error *
58 301e83b3 2022-10-16 stsp send_id(struct got_object_id *id, void *data, void *arg)
59 301e83b3 2022-10-16 stsp {
60 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
61 301e83b3 2022-10-16 stsp struct send_id_arg *a = arg;
62 301e83b3 2022-10-16 stsp
63 301e83b3 2022-10-16 stsp a->ids[a->nids++] = id;
64 301e83b3 2022-10-16 stsp
65 301e83b3 2022-10-16 stsp if (a->nids >= GOT_IMSG_OBJ_ID_LIST_MAX_NIDS) {
66 301e83b3 2022-10-16 stsp err = got_privsep_send_object_idlist(a->ibuf, a->ids, a->nids);
67 301e83b3 2022-10-16 stsp if (err)
68 301e83b3 2022-10-16 stsp return err;
69 301e83b3 2022-10-16 stsp a->nids = 0;
70 301e83b3 2022-10-16 stsp }
71 301e83b3 2022-10-16 stsp
72 301e83b3 2022-10-16 stsp return NULL;
73 301e83b3 2022-10-16 stsp }
74 301e83b3 2022-10-16 stsp
75 301e83b3 2022-10-16 stsp static const struct got_error *
76 301e83b3 2022-10-16 stsp send_idset(struct imsgbuf *ibuf, struct got_object_idset *idset)
77 301e83b3 2022-10-16 stsp {
78 301e83b3 2022-10-16 stsp const struct got_error *err;
79 301e83b3 2022-10-16 stsp struct send_id_arg sia;
80 301e83b3 2022-10-16 stsp
81 301e83b3 2022-10-16 stsp memset(&sia, 0, sizeof(sia));
82 301e83b3 2022-10-16 stsp sia.ibuf = ibuf;
83 301e83b3 2022-10-16 stsp err = got_object_idset_for_each(idset, send_id, &sia);
84 301e83b3 2022-10-16 stsp if (err)
85 301e83b3 2022-10-16 stsp return err;
86 301e83b3 2022-10-16 stsp
87 301e83b3 2022-10-16 stsp if (sia.nids > 0) {
88 301e83b3 2022-10-16 stsp err = got_privsep_send_object_idlist(ibuf, sia.ids, sia.nids);
89 301e83b3 2022-10-16 stsp if (err)
90 301e83b3 2022-10-16 stsp return err;
91 301e83b3 2022-10-16 stsp }
92 301e83b3 2022-10-16 stsp
93 301e83b3 2022-10-16 stsp return got_privsep_send_object_idlist_done(ibuf);
94 301e83b3 2022-10-16 stsp }
95 301e83b3 2022-10-16 stsp
96 301e83b3 2022-10-16 stsp static const struct got_error *
97 301e83b3 2022-10-16 stsp recv_reused_delta(struct got_imsg_reused_delta *delta,
98 301e83b3 2022-10-16 stsp struct got_object_idset *idset, struct got_pack_metavec *v)
99 301e83b3 2022-10-16 stsp {
100 301e83b3 2022-10-16 stsp struct got_pack_meta *m, *base;
101 301e83b3 2022-10-16 stsp
102 301e83b3 2022-10-16 stsp if (delta->delta_offset + delta->delta_size < delta->delta_offset ||
103 301e83b3 2022-10-16 stsp delta->delta_offset +
104 301e83b3 2022-10-16 stsp delta->delta_compressed_size < delta->delta_offset)
105 301e83b3 2022-10-16 stsp return got_error(GOT_ERR_BAD_PACKFILE);
106 301e83b3 2022-10-16 stsp
107 301e83b3 2022-10-16 stsp m = got_object_idset_get(idset, &delta->id);
108 301e83b3 2022-10-16 stsp if (m == NULL)
109 301e83b3 2022-10-16 stsp return got_error(GOT_ERR_NO_OBJ);
110 301e83b3 2022-10-16 stsp
111 301e83b3 2022-10-16 stsp base = got_object_idset_get(idset, &delta->base_id);
112 301e83b3 2022-10-16 stsp if (base == NULL)
113 301e83b3 2022-10-16 stsp return got_error(GOT_ERR_NO_OBJ);
114 301e83b3 2022-10-16 stsp
115 301e83b3 2022-10-16 stsp m->delta_len = delta->delta_size;
116 301e83b3 2022-10-16 stsp m->delta_compressed_len = delta->delta_compressed_size;
117 24b7de1c 2022-12-03 stsp m->delta_offset = 0;
118 301e83b3 2022-10-16 stsp m->prev = base;
119 301e83b3 2022-10-16 stsp m->size = delta->result_size;
120 301e83b3 2022-10-16 stsp m->reused_delta_offset = delta->delta_offset;
121 301e83b3 2022-10-16 stsp m->base_obj_id = got_object_id_dup(&delta->base_id);
122 301e83b3 2022-10-16 stsp if (m->base_obj_id == NULL)
123 301e83b3 2022-10-16 stsp return got_error_from_errno("got_object_id_dup");
124 301e83b3 2022-10-16 stsp
125 301e83b3 2022-10-16 stsp return got_pack_add_meta(m, v);
126 301e83b3 2022-10-16 stsp }
127 301e83b3 2022-10-16 stsp
128 301e83b3 2022-10-16 stsp const struct got_error *
129 24b7de1c 2022-12-03 stsp got_pack_search_deltas(struct got_packidx **packidx, struct got_pack **pack,
130 24b7de1c 2022-12-03 stsp struct got_pack_metavec *v, struct got_object_idset *idset,
131 301e83b3 2022-10-16 stsp int ncolored, int nfound, int ntrees, int ncommits,
132 301e83b3 2022-10-16 stsp struct got_repository *repo,
133 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb, void *progress_arg,
134 301e83b3 2022-10-16 stsp struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
135 301e83b3 2022-10-16 stsp {
136 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
137 301e83b3 2022-10-16 stsp struct got_imsg_reused_delta deltas[GOT_IMSG_REUSED_DELTAS_MAX_NDELTAS];
138 301e83b3 2022-10-16 stsp size_t ndeltas, i;
139 301e83b3 2022-10-16 stsp
140 24b7de1c 2022-12-03 stsp *packidx = NULL;
141 24b7de1c 2022-12-03 stsp *pack = NULL;
142 301e83b3 2022-10-16 stsp
143 24b7de1c 2022-12-03 stsp err = got_pack_find_pack_for_reuse(packidx, repo);
144 24b7de1c 2022-12-03 stsp if (err)
145 24b7de1c 2022-12-03 stsp return err;
146 24b7de1c 2022-12-03 stsp
147 24b7de1c 2022-12-03 stsp if (*packidx == NULL)
148 301e83b3 2022-10-16 stsp return NULL;
149 301e83b3 2022-10-16 stsp
150 24b7de1c 2022-12-03 stsp err = got_pack_cache_pack_for_packidx(pack, *packidx, repo);
151 301e83b3 2022-10-16 stsp if (err)
152 24b7de1c 2022-12-03 stsp goto done;
153 301e83b3 2022-10-16 stsp
154 24b7de1c 2022-12-03 stsp if ((*pack)->privsep_child == NULL) {
155 24b7de1c 2022-12-03 stsp err = got_pack_start_privsep_child(*pack, *packidx);
156 301e83b3 2022-10-16 stsp if (err)
157 24b7de1c 2022-12-03 stsp goto done;
158 301e83b3 2022-10-16 stsp }
159 301e83b3 2022-10-16 stsp
160 24b7de1c 2022-12-03 stsp err = got_privsep_send_delta_reuse_req((*pack)->privsep_child->ibuf);
161 301e83b3 2022-10-16 stsp if (err)
162 24b7de1c 2022-12-03 stsp goto done;
163 301e83b3 2022-10-16 stsp
164 24b7de1c 2022-12-03 stsp err = send_idset((*pack)->privsep_child->ibuf, idset);
165 301e83b3 2022-10-16 stsp if (err)
166 24b7de1c 2022-12-03 stsp goto done;
167 301e83b3 2022-10-16 stsp
168 301e83b3 2022-10-16 stsp for (;;) {
169 301e83b3 2022-10-16 stsp int done = 0;
170 301e83b3 2022-10-16 stsp
171 301e83b3 2022-10-16 stsp if (cancel_cb) {
172 301e83b3 2022-10-16 stsp err = (*cancel_cb)(cancel_arg);
173 301e83b3 2022-10-16 stsp if (err)
174 301e83b3 2022-10-16 stsp break;
175 301e83b3 2022-10-16 stsp }
176 301e83b3 2022-10-16 stsp
177 301e83b3 2022-10-16 stsp err = got_privsep_recv_reused_deltas(&done, deltas, &ndeltas,
178 24b7de1c 2022-12-03 stsp (*pack)->privsep_child->ibuf);
179 301e83b3 2022-10-16 stsp if (err || done)
180 301e83b3 2022-10-16 stsp break;
181 301e83b3 2022-10-16 stsp
182 301e83b3 2022-10-16 stsp for (i = 0; i < ndeltas; i++) {
183 301e83b3 2022-10-16 stsp struct got_imsg_reused_delta *delta = &deltas[i];
184 301e83b3 2022-10-16 stsp err = recv_reused_delta(delta, idset, v);
185 301e83b3 2022-10-16 stsp if (err)
186 301e83b3 2022-10-16 stsp goto done;
187 301e83b3 2022-10-16 stsp }
188 301e83b3 2022-10-16 stsp
189 301e83b3 2022-10-16 stsp err = got_pack_report_progress(progress_cb, progress_arg, rl,
190 301e83b3 2022-10-16 stsp ncolored, nfound, ntrees, 0L, ncommits,
191 301e83b3 2022-10-16 stsp got_object_idset_num_elements(idset), v->nmeta, 0);
192 301e83b3 2022-10-16 stsp if (err)
193 301e83b3 2022-10-16 stsp break;
194 301e83b3 2022-10-16 stsp }
195 301e83b3 2022-10-16 stsp done:
196 301e83b3 2022-10-16 stsp return err;
197 301e83b3 2022-10-16 stsp }
198 301e83b3 2022-10-16 stsp
199 301e83b3 2022-10-16 stsp struct recv_painted_commit_arg {
200 301e83b3 2022-10-16 stsp int *ncolored;
201 301e83b3 2022-10-16 stsp int *nqueued;
202 301e83b3 2022-10-16 stsp int *nskip;
203 301e83b3 2022-10-16 stsp struct got_object_id_queue *ids;
204 301e83b3 2022-10-16 stsp struct got_object_idset *keep;
205 301e83b3 2022-10-16 stsp struct got_object_idset *drop;
206 301e83b3 2022-10-16 stsp struct got_object_idset *skip;
207 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb;
208 301e83b3 2022-10-16 stsp void *progress_arg;
209 301e83b3 2022-10-16 stsp struct got_ratelimit *rl;
210 301e83b3 2022-10-16 stsp got_cancel_cb cancel_cb;
211 301e83b3 2022-10-16 stsp void *cancel_arg;
212 301e83b3 2022-10-16 stsp };
213 301e83b3 2022-10-16 stsp
214 301e83b3 2022-10-16 stsp static const struct got_error *
215 301e83b3 2022-10-16 stsp recv_painted_commit(void *arg, struct got_object_id *id, intptr_t color)
216 301e83b3 2022-10-16 stsp {
217 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
218 301e83b3 2022-10-16 stsp struct recv_painted_commit_arg *a = arg;
219 301e83b3 2022-10-16 stsp struct got_object_qid *qid, *tmp;
220 301e83b3 2022-10-16 stsp
221 301e83b3 2022-10-16 stsp if (a->cancel_cb) {
222 301e83b3 2022-10-16 stsp err = a->cancel_cb(a->cancel_arg);
223 301e83b3 2022-10-16 stsp if (err)
224 301e83b3 2022-10-16 stsp return err;
225 301e83b3 2022-10-16 stsp }
226 301e83b3 2022-10-16 stsp
227 301e83b3 2022-10-16 stsp switch (color) {
228 301e83b3 2022-10-16 stsp case COLOR_KEEP:
229 301e83b3 2022-10-16 stsp err = got_object_idset_add(a->keep, id, NULL);
230 301e83b3 2022-10-16 stsp if (err)
231 301e83b3 2022-10-16 stsp return err;
232 301e83b3 2022-10-16 stsp (*a->ncolored)++;
233 301e83b3 2022-10-16 stsp break;
234 301e83b3 2022-10-16 stsp case COLOR_DROP:
235 301e83b3 2022-10-16 stsp err = got_object_idset_add(a->drop, id, NULL);
236 301e83b3 2022-10-16 stsp if (err)
237 301e83b3 2022-10-16 stsp return err;
238 301e83b3 2022-10-16 stsp (*a->ncolored)++;
239 301e83b3 2022-10-16 stsp break;
240 301e83b3 2022-10-16 stsp case COLOR_SKIP:
241 301e83b3 2022-10-16 stsp err = got_object_idset_add(a->skip, id, NULL);
242 301e83b3 2022-10-16 stsp if (err)
243 301e83b3 2022-10-16 stsp return err;
244 301e83b3 2022-10-16 stsp break;
245 301e83b3 2022-10-16 stsp default:
246 301e83b3 2022-10-16 stsp /* should not happen */
247 301e83b3 2022-10-16 stsp return got_error_fmt(GOT_ERR_NOT_IMPL,
248 301e83b3 2022-10-16 stsp "%s invalid commit color %"PRIdPTR, __func__, color);
249 301e83b3 2022-10-16 stsp }
250 301e83b3 2022-10-16 stsp
251 301e83b3 2022-10-16 stsp STAILQ_FOREACH_SAFE(qid, a->ids, entry, tmp) {
252 301e83b3 2022-10-16 stsp if (got_object_id_cmp(&qid->id, id) != 0)
253 301e83b3 2022-10-16 stsp continue;
254 301e83b3 2022-10-16 stsp STAILQ_REMOVE(a->ids, qid, got_object_qid, entry);
255 301e83b3 2022-10-16 stsp color = (intptr_t)qid->data;
256 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
257 301e83b3 2022-10-16 stsp (*a->nqueued)--;
258 301e83b3 2022-10-16 stsp if (color == COLOR_SKIP)
259 301e83b3 2022-10-16 stsp (*a->nskip)--;
260 301e83b3 2022-10-16 stsp break;
261 301e83b3 2022-10-16 stsp }
262 301e83b3 2022-10-16 stsp
263 301e83b3 2022-10-16 stsp return got_pack_report_progress(a->progress_cb, a->progress_arg, a->rl,
264 301e83b3 2022-10-16 stsp *a->ncolored, 0, 0, 0L, 0, 0, 0, 0);
265 301e83b3 2022-10-16 stsp }
266 301e83b3 2022-10-16 stsp
267 301e83b3 2022-10-16 stsp static const struct got_error *
268 301e83b3 2022-10-16 stsp paint_packed_commits(struct got_pack *pack, struct got_object_id *id,
269 301e83b3 2022-10-16 stsp int idx, intptr_t color, int *ncolored, int *nqueued, int *nskip,
270 301e83b3 2022-10-16 stsp struct got_object_id_queue *ids,
271 301e83b3 2022-10-16 stsp struct got_object_idset *keep, struct got_object_idset *drop,
272 301e83b3 2022-10-16 stsp struct got_object_idset *skip, struct got_repository *repo,
273 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb, void *progress_arg,
274 301e83b3 2022-10-16 stsp struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
275 301e83b3 2022-10-16 stsp {
276 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
277 301e83b3 2022-10-16 stsp struct got_object_id_queue next_ids;
278 301e83b3 2022-10-16 stsp struct got_object_qid *qid, *tmp;
279 301e83b3 2022-10-16 stsp struct recv_painted_commit_arg arg;
280 301e83b3 2022-10-16 stsp
281 301e83b3 2022-10-16 stsp STAILQ_INIT(&next_ids);
282 301e83b3 2022-10-16 stsp
283 301e83b3 2022-10-16 stsp err = got_privsep_send_painting_request(pack->privsep_child->ibuf,
284 301e83b3 2022-10-16 stsp idx, id, color);
285 301e83b3 2022-10-16 stsp if (err)
286 301e83b3 2022-10-16 stsp return err;
287 301e83b3 2022-10-16 stsp
288 301e83b3 2022-10-16 stsp arg.ncolored = ncolored;
289 301e83b3 2022-10-16 stsp arg.nqueued = nqueued;
290 301e83b3 2022-10-16 stsp arg.nskip = nskip;
291 301e83b3 2022-10-16 stsp arg.ids = ids;
292 301e83b3 2022-10-16 stsp arg.keep = keep;
293 301e83b3 2022-10-16 stsp arg.drop = drop;
294 301e83b3 2022-10-16 stsp arg.skip = skip;
295 301e83b3 2022-10-16 stsp arg.progress_cb = progress_cb;
296 301e83b3 2022-10-16 stsp arg.progress_arg = progress_arg;
297 301e83b3 2022-10-16 stsp arg.rl = rl;
298 301e83b3 2022-10-16 stsp arg.cancel_cb = cancel_cb;
299 301e83b3 2022-10-16 stsp arg.cancel_arg = cancel_arg;
300 301e83b3 2022-10-16 stsp err = got_privsep_recv_painted_commits(&next_ids,
301 301e83b3 2022-10-16 stsp recv_painted_commit, &arg, pack->privsep_child->ibuf);
302 301e83b3 2022-10-16 stsp if (err)
303 301e83b3 2022-10-16 stsp return err;
304 301e83b3 2022-10-16 stsp
305 301e83b3 2022-10-16 stsp STAILQ_FOREACH_SAFE(qid, &next_ids, entry, tmp) {
306 301e83b3 2022-10-16 stsp struct got_object_qid *old_id;
307 301e83b3 2022-10-16 stsp intptr_t qcolor, ocolor;
308 301e83b3 2022-10-16 stsp STAILQ_FOREACH(old_id, ids, entry) {
309 301e83b3 2022-10-16 stsp if (got_object_id_cmp(&qid->id, &old_id->id))
310 301e83b3 2022-10-16 stsp continue;
311 301e83b3 2022-10-16 stsp qcolor = (intptr_t)qid->data;
312 301e83b3 2022-10-16 stsp ocolor = (intptr_t)old_id->data;
313 301e83b3 2022-10-16 stsp STAILQ_REMOVE(&next_ids, qid, got_object_qid, entry);
314 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
315 301e83b3 2022-10-16 stsp qid = NULL;
316 301e83b3 2022-10-16 stsp if (qcolor != ocolor) {
317 301e83b3 2022-10-16 stsp got_pack_paint_commit(old_id, qcolor);
318 301e83b3 2022-10-16 stsp if (ocolor == COLOR_SKIP)
319 301e83b3 2022-10-16 stsp (*nskip)--;
320 301e83b3 2022-10-16 stsp else if (qcolor == COLOR_SKIP)
321 301e83b3 2022-10-16 stsp (*nskip)++;
322 301e83b3 2022-10-16 stsp }
323 301e83b3 2022-10-16 stsp break;
324 301e83b3 2022-10-16 stsp }
325 301e83b3 2022-10-16 stsp }
326 301e83b3 2022-10-16 stsp while (!STAILQ_EMPTY(&next_ids)) {
327 301e83b3 2022-10-16 stsp qid = STAILQ_FIRST(&next_ids);
328 301e83b3 2022-10-16 stsp STAILQ_REMOVE_HEAD(&next_ids, entry);
329 301e83b3 2022-10-16 stsp got_pack_paint_commit(qid, color);
330 301e83b3 2022-10-16 stsp STAILQ_INSERT_TAIL(ids, qid, entry);
331 301e83b3 2022-10-16 stsp (*nqueued)++;
332 301e83b3 2022-10-16 stsp if (color == COLOR_SKIP)
333 301e83b3 2022-10-16 stsp (*nskip)++;
334 301e83b3 2022-10-16 stsp }
335 301e83b3 2022-10-16 stsp
336 301e83b3 2022-10-16 stsp return err;
337 301e83b3 2022-10-16 stsp }
338 301e83b3 2022-10-16 stsp
339 301e83b3 2022-10-16 stsp const struct got_error *
340 301e83b3 2022-10-16 stsp got_pack_paint_commits(int *ncolored, struct got_object_id_queue *ids, int nids,
341 301e83b3 2022-10-16 stsp struct got_object_idset *keep, struct got_object_idset *drop,
342 301e83b3 2022-10-16 stsp struct got_object_idset *skip, struct got_repository *repo,
343 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb, void *progress_arg,
344 301e83b3 2022-10-16 stsp struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
345 301e83b3 2022-10-16 stsp {
346 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
347 301e83b3 2022-10-16 stsp struct got_commit_object *commit = NULL;
348 301e83b3 2022-10-16 stsp struct got_packidx *packidx = NULL;
349 301e83b3 2022-10-16 stsp struct got_pack *pack = NULL;
350 301e83b3 2022-10-16 stsp const struct got_object_id_queue *parents;
351 301e83b3 2022-10-16 stsp struct got_object_qid *qid = NULL;
352 301e83b3 2022-10-16 stsp int nqueued = nids, nskip = 0;
353 301e83b3 2022-10-16 stsp int idx;
354 301e83b3 2022-10-16 stsp
355 301e83b3 2022-10-16 stsp while (!STAILQ_EMPTY(ids) && nskip != nqueued) {
356 301e83b3 2022-10-16 stsp intptr_t color;
357 301e83b3 2022-10-16 stsp
358 301e83b3 2022-10-16 stsp if (cancel_cb) {
359 301e83b3 2022-10-16 stsp err = cancel_cb(cancel_arg);
360 301e83b3 2022-10-16 stsp if (err)
361 301e83b3 2022-10-16 stsp break;
362 301e83b3 2022-10-16 stsp }
363 301e83b3 2022-10-16 stsp
364 301e83b3 2022-10-16 stsp qid = STAILQ_FIRST(ids);
365 301e83b3 2022-10-16 stsp STAILQ_REMOVE_HEAD(ids, entry);
366 301e83b3 2022-10-16 stsp nqueued--;
367 301e83b3 2022-10-16 stsp color = (intptr_t)qid->data;
368 301e83b3 2022-10-16 stsp if (color == COLOR_SKIP)
369 301e83b3 2022-10-16 stsp nskip--;
370 301e83b3 2022-10-16 stsp
371 301e83b3 2022-10-16 stsp if (got_object_idset_contains(skip, &qid->id)) {
372 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
373 301e83b3 2022-10-16 stsp qid = NULL;
374 301e83b3 2022-10-16 stsp continue;
375 301e83b3 2022-10-16 stsp }
376 301e83b3 2022-10-16 stsp if (color == COLOR_KEEP &&
377 301e83b3 2022-10-16 stsp got_object_idset_contains(keep, &qid->id)) {
378 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
379 301e83b3 2022-10-16 stsp qid = NULL;
380 301e83b3 2022-10-16 stsp continue;
381 301e83b3 2022-10-16 stsp }
382 301e83b3 2022-10-16 stsp if (color == COLOR_DROP &&
383 301e83b3 2022-10-16 stsp got_object_idset_contains(drop, &qid->id)) {
384 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
385 301e83b3 2022-10-16 stsp qid = NULL;
386 301e83b3 2022-10-16 stsp continue;
387 301e83b3 2022-10-16 stsp }
388 301e83b3 2022-10-16 stsp
389 301e83b3 2022-10-16 stsp /* Pinned pack may have moved to different cache slot. */
390 301e83b3 2022-10-16 stsp pack = got_repo_get_pinned_pack(repo);
391 301e83b3 2022-10-16 stsp
392 301e83b3 2022-10-16 stsp if (packidx && pack) {
393 301e83b3 2022-10-16 stsp idx = got_packidx_get_object_idx(packidx, &qid->id);
394 301e83b3 2022-10-16 stsp if (idx != -1) {
395 301e83b3 2022-10-16 stsp err = paint_packed_commits(pack, &qid->id,
396 301e83b3 2022-10-16 stsp idx, color, ncolored, &nqueued, &nskip,
397 301e83b3 2022-10-16 stsp ids, keep, drop, skip, repo,
398 301e83b3 2022-10-16 stsp progress_cb, progress_arg, rl,
399 301e83b3 2022-10-16 stsp cancel_cb, cancel_arg);
400 301e83b3 2022-10-16 stsp if (err)
401 301e83b3 2022-10-16 stsp break;
402 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
403 301e83b3 2022-10-16 stsp qid = NULL;
404 301e83b3 2022-10-16 stsp continue;
405 301e83b3 2022-10-16 stsp }
406 301e83b3 2022-10-16 stsp }
407 301e83b3 2022-10-16 stsp
408 301e83b3 2022-10-16 stsp switch (color) {
409 301e83b3 2022-10-16 stsp case COLOR_KEEP:
410 301e83b3 2022-10-16 stsp if (got_object_idset_contains(drop, &qid->id)) {
411 301e83b3 2022-10-16 stsp err = got_pack_paint_commit(qid, COLOR_SKIP);
412 301e83b3 2022-10-16 stsp if (err)
413 301e83b3 2022-10-16 stsp goto done;
414 301e83b3 2022-10-16 stsp } else
415 301e83b3 2022-10-16 stsp (*ncolored)++;
416 301e83b3 2022-10-16 stsp err = got_object_idset_add(keep, &qid->id, NULL);
417 301e83b3 2022-10-16 stsp if (err)
418 301e83b3 2022-10-16 stsp goto done;
419 301e83b3 2022-10-16 stsp break;
420 301e83b3 2022-10-16 stsp case COLOR_DROP:
421 301e83b3 2022-10-16 stsp if (got_object_idset_contains(keep, &qid->id)) {
422 301e83b3 2022-10-16 stsp err = got_pack_paint_commit(qid, COLOR_SKIP);
423 301e83b3 2022-10-16 stsp if (err)
424 301e83b3 2022-10-16 stsp goto done;
425 301e83b3 2022-10-16 stsp } else
426 301e83b3 2022-10-16 stsp (*ncolored)++;
427 301e83b3 2022-10-16 stsp err = got_object_idset_add(drop, &qid->id, NULL);
428 301e83b3 2022-10-16 stsp if (err)
429 301e83b3 2022-10-16 stsp goto done;
430 301e83b3 2022-10-16 stsp break;
431 301e83b3 2022-10-16 stsp case COLOR_SKIP:
432 301e83b3 2022-10-16 stsp if (!got_object_idset_contains(skip, &qid->id)) {
433 301e83b3 2022-10-16 stsp err = got_object_idset_add(skip, &qid->id,
434 301e83b3 2022-10-16 stsp NULL);
435 301e83b3 2022-10-16 stsp if (err)
436 301e83b3 2022-10-16 stsp goto done;
437 301e83b3 2022-10-16 stsp }
438 301e83b3 2022-10-16 stsp break;
439 301e83b3 2022-10-16 stsp default:
440 301e83b3 2022-10-16 stsp /* should not happen */
441 301e83b3 2022-10-16 stsp err = got_error_fmt(GOT_ERR_NOT_IMPL,
442 301e83b3 2022-10-16 stsp "%s invalid commit color %"PRIdPTR, __func__,
443 301e83b3 2022-10-16 stsp color);
444 301e83b3 2022-10-16 stsp goto done;
445 301e83b3 2022-10-16 stsp }
446 301e83b3 2022-10-16 stsp
447 301e83b3 2022-10-16 stsp err = got_pack_report_progress(progress_cb, progress_arg, rl,
448 301e83b3 2022-10-16 stsp *ncolored, 0, 0, 0L, 0, 0, 0, 0);
449 301e83b3 2022-10-16 stsp if (err)
450 301e83b3 2022-10-16 stsp break;
451 301e83b3 2022-10-16 stsp
452 301e83b3 2022-10-16 stsp err = got_object_open_as_commit(&commit, repo, &qid->id);
453 301e83b3 2022-10-16 stsp if (err)
454 301e83b3 2022-10-16 stsp break;
455 301e83b3 2022-10-16 stsp
456 301e83b3 2022-10-16 stsp parents = got_object_commit_get_parent_ids(commit);
457 301e83b3 2022-10-16 stsp if (parents) {
458 301e83b3 2022-10-16 stsp struct got_object_qid *pid;
459 301e83b3 2022-10-16 stsp color = (intptr_t)qid->data;
460 301e83b3 2022-10-16 stsp STAILQ_FOREACH(pid, parents, entry) {
461 301e83b3 2022-10-16 stsp err = got_pack_queue_commit_id(ids, &pid->id,
462 301e83b3 2022-10-16 stsp color, repo);
463 301e83b3 2022-10-16 stsp if (err)
464 301e83b3 2022-10-16 stsp break;
465 301e83b3 2022-10-16 stsp nqueued++;
466 301e83b3 2022-10-16 stsp if (color == COLOR_SKIP)
467 301e83b3 2022-10-16 stsp nskip++;
468 301e83b3 2022-10-16 stsp }
469 301e83b3 2022-10-16 stsp }
470 301e83b3 2022-10-16 stsp
471 301e83b3 2022-10-16 stsp if (pack == NULL && (commit->flags & GOT_COMMIT_FLAG_PACKED)) {
472 301e83b3 2022-10-16 stsp if (packidx == NULL) {
473 301e83b3 2022-10-16 stsp err = got_pack_find_pack_for_commit_painting(
474 301e83b3 2022-10-16 stsp &packidx, ids, nqueued, repo);
475 301e83b3 2022-10-16 stsp if (err)
476 301e83b3 2022-10-16 stsp goto done;
477 301e83b3 2022-10-16 stsp }
478 301e83b3 2022-10-16 stsp if (packidx != NULL) {
479 301e83b3 2022-10-16 stsp err = got_pack_cache_pack_for_packidx(&pack,
480 301e83b3 2022-10-16 stsp packidx, repo);
481 301e83b3 2022-10-16 stsp if (err)
482 301e83b3 2022-10-16 stsp goto done;
483 301e83b3 2022-10-16 stsp if (pack->privsep_child == NULL) {
484 301e83b3 2022-10-16 stsp err = got_pack_start_privsep_child(
485 301e83b3 2022-10-16 stsp pack, packidx);
486 301e83b3 2022-10-16 stsp if (err)
487 301e83b3 2022-10-16 stsp goto done;
488 301e83b3 2022-10-16 stsp }
489 301e83b3 2022-10-16 stsp err = got_privsep_init_commit_painting(
490 301e83b3 2022-10-16 stsp pack->privsep_child->ibuf);
491 301e83b3 2022-10-16 stsp if (err)
492 301e83b3 2022-10-16 stsp goto done;
493 301e83b3 2022-10-16 stsp err = send_idset(pack->privsep_child->ibuf,
494 301e83b3 2022-10-16 stsp keep);
495 301e83b3 2022-10-16 stsp if (err)
496 301e83b3 2022-10-16 stsp goto done;
497 301e83b3 2022-10-16 stsp err = send_idset(pack->privsep_child->ibuf, drop);
498 301e83b3 2022-10-16 stsp if (err)
499 301e83b3 2022-10-16 stsp goto done;
500 301e83b3 2022-10-16 stsp err = send_idset(pack->privsep_child->ibuf, skip);
501 301e83b3 2022-10-16 stsp if (err)
502 301e83b3 2022-10-16 stsp goto done;
503 301e83b3 2022-10-16 stsp err = got_repo_pin_pack(repo, packidx, pack);
504 301e83b3 2022-10-16 stsp if (err)
505 301e83b3 2022-10-16 stsp goto done;
506 301e83b3 2022-10-16 stsp }
507 301e83b3 2022-10-16 stsp }
508 301e83b3 2022-10-16 stsp
509 301e83b3 2022-10-16 stsp got_object_commit_close(commit);
510 301e83b3 2022-10-16 stsp commit = NULL;
511 301e83b3 2022-10-16 stsp
512 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
513 301e83b3 2022-10-16 stsp qid = NULL;
514 301e83b3 2022-10-16 stsp }
515 301e83b3 2022-10-16 stsp done:
516 301e83b3 2022-10-16 stsp if (pack) {
517 301e83b3 2022-10-16 stsp const struct got_error *pack_err;
518 301e83b3 2022-10-16 stsp pack_err = got_privsep_send_painting_commits_done(
519 301e83b3 2022-10-16 stsp pack->privsep_child->ibuf);
520 301e83b3 2022-10-16 stsp if (err == NULL)
521 301e83b3 2022-10-16 stsp err = pack_err;
522 301e83b3 2022-10-16 stsp }
523 301e83b3 2022-10-16 stsp if (commit)
524 301e83b3 2022-10-16 stsp got_object_commit_close(commit);
525 301e83b3 2022-10-16 stsp got_object_qid_free(qid);
526 301e83b3 2022-10-16 stsp got_repo_unpin_pack(repo);
527 301e83b3 2022-10-16 stsp return err;
528 301e83b3 2022-10-16 stsp }
529 301e83b3 2022-10-16 stsp
530 301e83b3 2022-10-16 stsp struct load_packed_obj_arg {
531 301e83b3 2022-10-16 stsp /* output parameters: */
532 301e83b3 2022-10-16 stsp struct got_object_id *id;
533 301e83b3 2022-10-16 stsp char *dpath;
534 301e83b3 2022-10-16 stsp time_t mtime;
535 301e83b3 2022-10-16 stsp
536 301e83b3 2022-10-16 stsp /* input parameters: */
537 301e83b3 2022-10-16 stsp uint32_t seed;
538 301e83b3 2022-10-16 stsp int want_meta;
539 301e83b3 2022-10-16 stsp struct got_object_idset *idset;
540 301e83b3 2022-10-16 stsp struct got_object_idset *idset_exclude;
541 301e83b3 2022-10-16 stsp int loose_obj_only;
542 301e83b3 2022-10-16 stsp int *ncolored;
543 301e83b3 2022-10-16 stsp int *nfound;
544 301e83b3 2022-10-16 stsp int *ntrees;
545 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb;
546 301e83b3 2022-10-16 stsp void *progress_arg;
547 301e83b3 2022-10-16 stsp struct got_ratelimit *rl;
548 301e83b3 2022-10-16 stsp got_cancel_cb cancel_cb;
549 301e83b3 2022-10-16 stsp void *cancel_arg;
550 301e83b3 2022-10-16 stsp };
551 301e83b3 2022-10-16 stsp
552 301e83b3 2022-10-16 stsp static const struct got_error *
553 301e83b3 2022-10-16 stsp load_packed_commit_id(void *arg, time_t mtime, struct got_object_id *id,
554 301e83b3 2022-10-16 stsp struct got_repository *repo)
555 301e83b3 2022-10-16 stsp {
556 301e83b3 2022-10-16 stsp struct load_packed_obj_arg *a = arg;
557 301e83b3 2022-10-16 stsp
558 301e83b3 2022-10-16 stsp if (got_object_idset_contains(a->idset, id) ||
559 301e83b3 2022-10-16 stsp got_object_idset_contains(a->idset_exclude, id))
560 301e83b3 2022-10-16 stsp return NULL;
561 301e83b3 2022-10-16 stsp
562 301e83b3 2022-10-16 stsp return got_pack_add_object(a->want_meta,
563 301e83b3 2022-10-16 stsp a->want_meta ? a->idset : a->idset_exclude,
564 301e83b3 2022-10-16 stsp id, "", GOT_OBJ_TYPE_COMMIT, mtime, a->seed, a->loose_obj_only,
565 301e83b3 2022-10-16 stsp repo, a->ncolored, a->nfound, a->ntrees,
566 301e83b3 2022-10-16 stsp a->progress_cb, a->progress_arg, a->rl);
567 301e83b3 2022-10-16 stsp }
568 301e83b3 2022-10-16 stsp
569 301e83b3 2022-10-16 stsp static const struct got_error *
570 301e83b3 2022-10-16 stsp load_packed_tree_ids(void *arg, struct got_tree_object *tree, time_t mtime,
571 301e83b3 2022-10-16 stsp struct got_object_id *id, const char *dpath, struct got_repository *repo)
572 301e83b3 2022-10-16 stsp {
573 301e83b3 2022-10-16 stsp const struct got_error *err;
574 301e83b3 2022-10-16 stsp struct load_packed_obj_arg *a = arg;
575 301e83b3 2022-10-16 stsp const char *relpath;
576 301e83b3 2022-10-16 stsp
577 301e83b3 2022-10-16 stsp /*
578 301e83b3 2022-10-16 stsp * When we receive a tree's ID and path but not the tree itself,
579 301e83b3 2022-10-16 stsp * this tree object was not found in the pack file. This is the
580 301e83b3 2022-10-16 stsp * last time we are being called for this optimized traversal.
581 301e83b3 2022-10-16 stsp * Return from here and switch to loading objects the slow way.
582 301e83b3 2022-10-16 stsp */
583 301e83b3 2022-10-16 stsp if (tree == NULL) {
584 301e83b3 2022-10-16 stsp free(a->id);
585 301e83b3 2022-10-16 stsp a->id = got_object_id_dup(id);
586 301e83b3 2022-10-16 stsp if (a->id == NULL) {
587 301e83b3 2022-10-16 stsp err = got_error_from_errno("got_object_id_dup");
588 301e83b3 2022-10-16 stsp free(a->dpath);
589 301e83b3 2022-10-16 stsp a->dpath = NULL;
590 301e83b3 2022-10-16 stsp return err;
591 301e83b3 2022-10-16 stsp }
592 301e83b3 2022-10-16 stsp
593 301e83b3 2022-10-16 stsp free(a->dpath);
594 301e83b3 2022-10-16 stsp a->dpath = strdup(dpath);
595 301e83b3 2022-10-16 stsp if (a->dpath == NULL) {
596 301e83b3 2022-10-16 stsp err = got_error_from_errno("strdup");
597 301e83b3 2022-10-16 stsp free(a->id);
598 301e83b3 2022-10-16 stsp a->id = NULL;
599 301e83b3 2022-10-16 stsp return err;
600 301e83b3 2022-10-16 stsp }
601 301e83b3 2022-10-16 stsp
602 301e83b3 2022-10-16 stsp a->mtime = mtime;
603 301e83b3 2022-10-16 stsp return NULL;
604 301e83b3 2022-10-16 stsp }
605 301e83b3 2022-10-16 stsp
606 301e83b3 2022-10-16 stsp if (got_object_idset_contains(a->idset, id) ||
607 301e83b3 2022-10-16 stsp got_object_idset_contains(a->idset_exclude, id))
608 301e83b3 2022-10-16 stsp return NULL;
609 301e83b3 2022-10-16 stsp
610 301e83b3 2022-10-16 stsp relpath = dpath;
611 301e83b3 2022-10-16 stsp while (relpath[0] == '/')
612 301e83b3 2022-10-16 stsp relpath++;
613 301e83b3 2022-10-16 stsp
614 301e83b3 2022-10-16 stsp err = got_pack_add_object(a->want_meta,
615 301e83b3 2022-10-16 stsp a->want_meta ? a->idset : a->idset_exclude,
616 301e83b3 2022-10-16 stsp id, relpath, GOT_OBJ_TYPE_TREE, mtime, a->seed,
617 301e83b3 2022-10-16 stsp a->loose_obj_only, repo, a->ncolored, a->nfound, a->ntrees,
618 301e83b3 2022-10-16 stsp a->progress_cb, a->progress_arg, a->rl);
619 301e83b3 2022-10-16 stsp if (err)
620 301e83b3 2022-10-16 stsp return err;
621 301e83b3 2022-10-16 stsp
622 301e83b3 2022-10-16 stsp return got_pack_load_tree_entries(NULL, a->want_meta, a->idset,
623 301e83b3 2022-10-16 stsp a->idset_exclude, tree, dpath, mtime, a->seed, repo,
624 301e83b3 2022-10-16 stsp a->loose_obj_only, a->ncolored, a->nfound, a->ntrees,
625 301e83b3 2022-10-16 stsp a->progress_cb, a->progress_arg, a->rl,
626 301e83b3 2022-10-16 stsp a->cancel_cb, a->cancel_arg);
627 301e83b3 2022-10-16 stsp }
628 301e83b3 2022-10-16 stsp
629 301e83b3 2022-10-16 stsp const struct got_error *
630 301e83b3 2022-10-16 stsp got_pack_load_packed_object_ids(int *found_all_objects,
631 301e83b3 2022-10-16 stsp struct got_object_id **ours, int nours,
632 301e83b3 2022-10-16 stsp struct got_object_id **theirs, int ntheirs,
633 301e83b3 2022-10-16 stsp int want_meta, uint32_t seed, struct got_object_idset *idset,
634 301e83b3 2022-10-16 stsp struct got_object_idset *idset_exclude, int loose_obj_only,
635 301e83b3 2022-10-16 stsp struct got_repository *repo, struct got_packidx *packidx,
636 301e83b3 2022-10-16 stsp int *ncolored, int *nfound, int *ntrees,
637 301e83b3 2022-10-16 stsp got_pack_progress_cb progress_cb, void *progress_arg,
638 301e83b3 2022-10-16 stsp struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
639 301e83b3 2022-10-16 stsp {
640 301e83b3 2022-10-16 stsp const struct got_error *err = NULL;
641 301e83b3 2022-10-16 stsp struct load_packed_obj_arg lpa;
642 301e83b3 2022-10-16 stsp
643 301e83b3 2022-10-16 stsp memset(&lpa, 0, sizeof(lpa));
644 301e83b3 2022-10-16 stsp lpa.seed = seed;
645 301e83b3 2022-10-16 stsp lpa.want_meta = want_meta;
646 301e83b3 2022-10-16 stsp lpa.idset = idset;
647 301e83b3 2022-10-16 stsp lpa.idset_exclude = idset_exclude;
648 301e83b3 2022-10-16 stsp lpa.loose_obj_only = loose_obj_only;
649 301e83b3 2022-10-16 stsp lpa.ncolored = ncolored;
650 301e83b3 2022-10-16 stsp lpa.nfound = nfound;
651 301e83b3 2022-10-16 stsp lpa.ntrees = ntrees;
652 301e83b3 2022-10-16 stsp lpa.progress_cb = progress_cb;
653 301e83b3 2022-10-16 stsp lpa.progress_arg = progress_arg;
654 301e83b3 2022-10-16 stsp lpa.rl = rl;
655 301e83b3 2022-10-16 stsp lpa.cancel_cb = cancel_cb;
656 301e83b3 2022-10-16 stsp lpa.cancel_arg = cancel_arg;
657 301e83b3 2022-10-16 stsp
658 301e83b3 2022-10-16 stsp /* Attempt to load objects via got-read-pack, as far as possible. */
659 301e83b3 2022-10-16 stsp err = got_object_enumerate(found_all_objects, load_packed_commit_id,
660 301e83b3 2022-10-16 stsp load_packed_tree_ids, &lpa, ours, nours, theirs, ntheirs,
661 301e83b3 2022-10-16 stsp packidx, repo);
662 301e83b3 2022-10-16 stsp if (err)
663 301e83b3 2022-10-16 stsp return err;
664 301e83b3 2022-10-16 stsp
665 301e83b3 2022-10-16 stsp if (lpa.id == NULL)
666 301e83b3 2022-10-16 stsp return NULL;
667 301e83b3 2022-10-16 stsp
668 301e83b3 2022-10-16 stsp /*
669 301e83b3 2022-10-16 stsp * An incomplete tree hierarchy was present in the pack file
670 301e83b3 2022-10-16 stsp * and caused loading to be aborted.
671 301e83b3 2022-10-16 stsp * Continue loading trees the slow way.
672 301e83b3 2022-10-16 stsp */
673 301e83b3 2022-10-16 stsp err = got_pack_load_tree(want_meta, idset, idset_exclude,
674 301e83b3 2022-10-16 stsp lpa.id, lpa.dpath, lpa.mtime, seed, repo, loose_obj_only,
675 301e83b3 2022-10-16 stsp ncolored, nfound, ntrees, progress_cb, progress_arg, rl,
676 301e83b3 2022-10-16 stsp cancel_cb, cancel_arg);
677 301e83b3 2022-10-16 stsp free(lpa.id);
678 301e83b3 2022-10-16 stsp free(lpa.dpath);
679 301e83b3 2022-10-16 stsp return err;
680 301e83b3 2022-10-16 stsp }