Blob


1 /*
2 * Copyright (c) 2020 Ori Bernstein
3 * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 *
5 * Permission to use, copy, modify, and distribute this software for any
6 * purpose with or without fee is hereby granted, provided that the above
7 * copyright notice and this permission notice appear in all copies.
8 *
9 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 */
18 #include <sys/types.h>
19 #include <sys/queue.h>
20 #include <sys/tree.h>
21 #include <sys/uio.h>
22 #include <sys/stat.h>
23 #include <sys/time.h>
25 #include <endian.h>
26 #include <stdint.h>
27 #include <imsg.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <string.h>
31 #include <sha1.h>
32 #include <time.h>
33 #include <unistd.h>
34 #include <limits.h>
35 #include <zlib.h>
37 #include "got_error.h"
38 #include "got_cancel.h"
39 #include "got_object.h"
40 #include "got_path.h"
41 #include "got_reference.h"
42 #include "got_repository_admin.h"
43 #include "got_opentemp.h"
45 #include "got_lib_deltify.h"
46 #include "got_lib_delta.h"
47 #include "got_lib_object.h"
48 #include "got_lib_object_idset.h"
49 #include "got_lib_object_cache.h"
50 #include "got_lib_deflate.h"
51 #include "got_lib_pack.h"
52 #include "got_lib_privsep.h"
53 #include "got_lib_repository.h"
54 #include "got_lib_ratelimit.h"
56 #ifndef MIN
57 #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
58 #endif
60 #ifndef MAX
61 #define MAX(_a,_b) ((_a) > (_b) ? (_a) : (_b))
62 #endif
64 struct got_pack_meta {
65 struct got_object_id id;
66 char *path;
67 int obj_type;
68 off_t size;
69 time_t mtime;
71 /* The best delta we picked */
72 struct got_pack_meta *head;
73 struct got_pack_meta *prev;
74 unsigned char *delta_buf; /* if not encoded in delta cache file */
75 off_t delta_offset; /* offset in delta cache file */
76 off_t delta_len; /* encoded delta length */
77 int nchain;
79 int have_reused_delta;
80 off_t reused_delta_offset; /* offset of delta in reused pack file */
81 struct got_object_id *base_obj_id;
83 /* Only used for delta window */
84 struct got_delta_table *dtab;
86 /* Only used for writing offset deltas */
87 off_t off;
88 };
90 struct got_pack_metavec {
91 struct got_pack_meta **meta;
92 int nmeta;
93 int metasz;
94 };
96 static const struct got_error *
97 alloc_meta(struct got_pack_meta **new, struct got_object_id *id,
98 const char *path, int obj_type, time_t mtime)
99 {
100 const struct got_error *err = NULL;
101 struct got_pack_meta *m;
103 *new = NULL;
105 m = calloc(1, sizeof(*m));
106 if (m == NULL)
107 return got_error_from_errno("calloc");
109 memcpy(&m->id, id, sizeof(m->id));
111 m->path = strdup(path);
112 if (m->path == NULL) {
113 err = got_error_from_errno("strdup");
114 free(m);
115 return err;
118 m->obj_type = obj_type;
119 m->mtime = mtime;
120 *new = m;
121 return NULL;
124 static void
125 clear_meta(struct got_pack_meta *meta)
127 if (meta == NULL)
128 return;
129 free(meta->path);
130 meta->path = NULL;
131 free(meta->delta_buf);
132 meta->delta_buf = NULL;
133 free(meta->base_obj_id);
134 meta->base_obj_id = NULL;
137 static void
138 free_nmeta(struct got_pack_meta **meta, int nmeta)
140 int i;
142 for (i = 0; i < nmeta; i++)
143 clear_meta(meta[i]);
144 free(meta);
147 static int
148 delta_order_cmp(const void *pa, const void *pb)
150 struct got_pack_meta *a, *b;
151 int cmp;
153 a = *(struct got_pack_meta **)pa;
154 b = *(struct got_pack_meta **)pb;
156 if (a->obj_type != b->obj_type)
157 return a->obj_type - b->obj_type;
158 cmp = strcmp(a->path, b->path);
159 if (cmp != 0)
160 return cmp;
161 if (a->mtime != b->mtime)
162 return a->mtime - b->mtime;
163 return got_object_id_cmp(&a->id, &b->id);
166 static off_t
167 delta_size(struct got_delta_instruction *deltas, int ndeltas)
169 int i;
170 off_t size = 32;
171 for (i = 0; i < ndeltas; i++) {
172 if (deltas[i].copy)
173 size += GOT_DELTA_SIZE_SHIFT;
174 else
175 size += deltas[i].len + 1;
177 return size;
180 static const struct got_error *
181 append(unsigned char **p, size_t *len, off_t *sz, void *seg, int nseg)
183 char *n;
185 if (*len + nseg >= *sz) {
186 while (*len + nseg >= *sz)
187 *sz += *sz / 2;
188 n = realloc(*p, *sz);
189 if (n == NULL)
190 return got_error_from_errno("realloc");
191 *p = n;
193 memcpy(*p + *len, seg, nseg);
194 *len += nseg;
195 return NULL;
198 static const struct got_error *
199 encode_delta_in_mem(struct got_pack_meta *m, struct got_raw_object *o,
200 struct got_delta_instruction *deltas, int ndeltas,
201 off_t delta_size, off_t base_size)
203 const struct got_error *err;
204 unsigned char buf[16], *bp;
205 int i, j;
206 size_t len = 0;
207 off_t n;
208 struct got_delta_instruction *d;
210 m->delta_buf = malloc(delta_size);
211 if (m->delta_buf == NULL)
212 return got_error_from_errno("calloc");
214 /* base object size */
215 buf[0] = base_size & GOT_DELTA_SIZE_VAL_MASK;
216 n = base_size >> GOT_DELTA_SIZE_SHIFT;
217 for (i = 1; n > 0; i++) {
218 buf[i - 1] |= GOT_DELTA_SIZE_MORE;
219 buf[i] = n & GOT_DELTA_SIZE_VAL_MASK;
220 n >>= GOT_DELTA_SIZE_SHIFT;
222 err = append(&m->delta_buf, &len, &delta_size, buf, i);
223 if (err)
224 return err;
226 /* target object size */
227 buf[0] = o->size & GOT_DELTA_SIZE_VAL_MASK;
228 n = o->size >> GOT_DELTA_SIZE_SHIFT;
229 for (i = 1; n > 0; i++) {
230 buf[i - 1] |= GOT_DELTA_SIZE_MORE;
231 buf[i] = n & GOT_DELTA_SIZE_VAL_MASK;
232 n >>= GOT_DELTA_SIZE_SHIFT;
234 err = append(&m->delta_buf, &len, &delta_size, buf, i);
235 if (err)
236 return err;
238 for (j = 0; j < ndeltas; j++) {
239 d = &deltas[j];
240 if (d->copy) {
241 n = d->offset;
242 bp = &buf[1];
243 buf[0] = GOT_DELTA_BASE_COPY;
244 for (i = 0; i < 4; i++) {
245 /* DELTA_COPY_OFF1 ... DELTA_COPY_OFF4 */
246 buf[0] |= 1 << i;
247 *bp++ = n & 0xff;
248 n >>= 8;
249 if (n == 0)
250 break;
253 n = d->len;
254 if (n != GOT_DELTA_COPY_DEFAULT_LEN) {
255 /* DELTA_COPY_LEN1 ... DELTA_COPY_LEN3 */
256 for (i = 0; i < 3 && n > 0; i++) {
257 buf[0] |= 1 << (i + 4);
258 *bp++ = n & 0xff;
259 n >>= 8;
262 err = append(&m->delta_buf, &len, &delta_size,
263 buf, bp - buf);
264 if (err)
265 return err;
266 } else if (o->f == NULL) {
267 n = 0;
268 while (n != d->len) {
269 buf[0] = (d->len - n < 127) ? d->len - n : 127;
270 err = append(&m->delta_buf, &len, &delta_size,
271 buf, 1);
272 if (err)
273 return err;
274 err = append(&m->delta_buf, &len, &delta_size,
275 o->data + o->hdrlen + d->offset + n,
276 buf[0]);
277 if (err)
278 return err;
279 n += buf[0];
281 } else {
282 char content[128];
283 size_t r;
284 if (fseeko(o->f, o->hdrlen + d->offset, SEEK_SET) == -1)
285 return got_error_from_errno("fseeko");
286 n = 0;
287 while (n != d->len) {
288 buf[0] = (d->len - n < 127) ? d->len - n : 127;
289 err = append(&m->delta_buf, &len, &delta_size,
290 buf, 1);
291 if (err)
292 return err;
293 r = fread(content, 1, buf[0], o->f);
294 if (r != buf[0])
295 return got_ferror(o->f, GOT_ERR_IO);
296 err = append(&m->delta_buf, &len, &delta_size,
297 content, buf[0]);
298 if (err)
299 return err;
300 n += buf[0];
305 m->delta_len = len;
306 return NULL;
309 static const struct got_error *
310 encode_delta(struct got_pack_meta *m, struct got_raw_object *o,
311 struct got_delta_instruction *deltas, int ndeltas,
312 off_t base_size, FILE *f)
314 unsigned char buf[16], *bp;
315 int i, j;
316 off_t n;
317 size_t w;
318 struct got_delta_instruction *d;
320 /* base object size */
321 buf[0] = base_size & GOT_DELTA_SIZE_VAL_MASK;
322 n = base_size >> GOT_DELTA_SIZE_SHIFT;
323 for (i = 1; n > 0; i++) {
324 buf[i - 1] |= GOT_DELTA_SIZE_MORE;
325 buf[i] = n & GOT_DELTA_SIZE_VAL_MASK;
326 n >>= GOT_DELTA_SIZE_SHIFT;
328 w = fwrite(buf, 1, i, f);
329 if (w != i)
330 return got_ferror(f, GOT_ERR_IO);
332 /* target object size */
333 buf[0] = o->size & GOT_DELTA_SIZE_VAL_MASK;
334 n = o->size >> GOT_DELTA_SIZE_SHIFT;
335 for (i = 1; n > 0; i++) {
336 buf[i - 1] |= GOT_DELTA_SIZE_MORE;
337 buf[i] = n & GOT_DELTA_SIZE_VAL_MASK;
338 n >>= GOT_DELTA_SIZE_SHIFT;
340 w = fwrite(buf, 1, i, f);
341 if (w != i)
342 return got_ferror(f, GOT_ERR_IO);
344 for (j = 0; j < ndeltas; j++) {
345 d = &deltas[j];
346 if (d->copy) {
347 n = d->offset;
348 bp = &buf[1];
349 buf[0] = GOT_DELTA_BASE_COPY;
350 for (i = 0; i < 4; i++) {
351 /* DELTA_COPY_OFF1 ... DELTA_COPY_OFF4 */
352 buf[0] |= 1 << i;
353 *bp++ = n & 0xff;
354 n >>= 8;
355 if (n == 0)
356 break;
359 n = d->len;
360 if (n != GOT_DELTA_COPY_DEFAULT_LEN) {
361 /* DELTA_COPY_LEN1 ... DELTA_COPY_LEN3 */
362 for (i = 0; i < 3 && n > 0; i++) {
363 buf[0] |= 1 << (i + 4);
364 *bp++ = n & 0xff;
365 n >>= 8;
368 w = fwrite(buf, 1, bp - buf, f);
369 if (w != bp - buf)
370 return got_ferror(f, GOT_ERR_IO);
371 } else if (o->f == NULL) {
372 n = 0;
373 while (n != d->len) {
374 buf[0] = (d->len - n < 127) ? d->len - n : 127;
375 w = fwrite(buf, 1, 1, f);
376 if (w != 1)
377 return got_ferror(f, GOT_ERR_IO);
378 w = fwrite(o->data + o->hdrlen + d->offset + n,
379 1, buf[0], f);
380 if (w != buf[0])
381 return got_ferror(f, GOT_ERR_IO);
382 n += buf[0];
384 } else {
385 char content[128];
386 size_t r;
387 if (fseeko(o->f, o->hdrlen + d->offset, SEEK_SET) == -1)
388 return got_error_from_errno("fseeko");
389 n = 0;
390 while (n != d->len) {
391 buf[0] = (d->len - n < 127) ? d->len - n : 127;
392 w = fwrite(buf, 1, 1, f);
393 if (w != 1)
394 return got_ferror(f, GOT_ERR_IO);
395 r = fread(content, 1, buf[0], o->f);
396 if (r != buf[0])
397 return got_ferror(o->f, GOT_ERR_IO);
398 w = fwrite(content, 1, buf[0], f);
399 if (w != buf[0])
400 return got_ferror(f, GOT_ERR_IO);
401 n += buf[0];
406 m->delta_len = ftello(f) - m->delta_offset;
407 return NULL;
410 static const struct got_error *
411 report_progress(got_pack_progress_cb progress_cb, void *progress_arg,
412 struct got_ratelimit *rl, int ncolored, int nfound, int ntrees,
413 off_t packfile_size, int ncommits, int nobj_total, int obj_deltify,
414 int nobj_written)
416 const struct got_error *err;
417 int elapsed;
419 if (progress_cb == NULL)
420 return NULL;
422 err = got_ratelimit_check(&elapsed, rl);
423 if (err || !elapsed)
424 return err;
426 return progress_cb(progress_arg, ncolored, nfound, ntrees,
427 packfile_size, ncommits, nobj_total, obj_deltify, nobj_written);
430 static const struct got_error *
431 add_meta(struct got_pack_meta *m, struct got_pack_metavec *v)
433 if (v->nmeta == v->metasz){
434 size_t newsize = 2 * v->metasz;
435 struct got_pack_meta **new;
436 new = reallocarray(v->meta, newsize, sizeof(*new));
437 if (new == NULL)
438 return got_error_from_errno("reallocarray");
439 v->meta = new;
440 v->metasz = newsize;
443 v->meta[v->nmeta++] = m;
444 return NULL;
447 static const struct got_error *
448 reuse_delta(int idx, struct got_pack_meta *m, struct got_pack_metavec *v,
449 struct got_object_idset *idset, struct got_pack *pack,
450 struct got_packidx *packidx, int delta_cache_fd,
451 struct got_repository *repo)
453 const struct got_error *err = NULL;
454 struct got_pack_meta *base = NULL;
455 struct got_object_id *base_obj_id = NULL;
456 off_t delta_len = 0, delta_offset = 0, delta_cache_offset = 0;
457 uint64_t base_size, result_size;
459 if (m->have_reused_delta)
460 return NULL;
462 err = got_object_read_raw_delta(&base_size, &result_size, &delta_len,
463 &delta_offset, &delta_cache_offset, &base_obj_id, delta_cache_fd,
464 packidx, idx, &m->id, repo);
465 if (err)
466 return err;
468 if (delta_offset + delta_len < delta_offset)
469 return got_error(GOT_ERR_BAD_PACKFILE);
471 base = got_object_idset_get(idset, base_obj_id);
472 if (base == NULL)
473 goto done;
475 m->delta_len = delta_len;
476 m->delta_offset = delta_cache_offset;
477 m->prev = base;
478 m->size = result_size;
479 m->have_reused_delta = 1;
480 m->reused_delta_offset = delta_offset;
481 m->base_obj_id = base_obj_id;
482 base_obj_id = NULL;
483 err = add_meta(m, v);
484 done:
485 free(base_obj_id);
486 return err;
489 static const struct got_error *
490 find_pack_for_reuse(struct got_packidx **best_packidx,
491 struct got_repository *repo)
493 const struct got_error *err = NULL;
494 struct got_pathlist_entry *pe;
495 const char *best_packidx_path = NULL;
496 int nobj_max = 0;
498 *best_packidx = NULL;
500 TAILQ_FOREACH(pe, &repo->packidx_paths, entry) {
501 const char *path_packidx = pe->path;
502 struct got_packidx *packidx;
503 int nobj;
505 err = got_repo_get_packidx(&packidx, path_packidx, repo);
506 if (err)
507 break;
509 nobj = be32toh(packidx->hdr.fanout_table[0xff]);
510 if (nobj > nobj_max) {
511 best_packidx_path = path_packidx;
512 nobj_max = nobj;
516 if (best_packidx_path) {
517 err = got_repo_get_packidx(best_packidx, best_packidx_path,
518 repo);
521 return err;
524 struct search_deltas_arg {
525 struct got_packidx *packidx;
526 struct got_pack *pack;
527 struct got_object_idset *idset;
528 struct got_pack_metavec *v;
529 int delta_cache_fd;
530 struct got_repository *repo;
531 got_pack_progress_cb progress_cb;
532 void *progress_arg;
533 struct got_ratelimit *rl;
534 got_cancel_cb cancel_cb;
535 void *cancel_arg;
536 int ncolored;
537 int nfound;
538 int ntrees;
539 int ncommits;
540 };
542 static const struct got_error *
543 search_delta_for_object(struct got_object_id *id, void *data, void *arg)
545 const struct got_error *err;
546 struct got_pack_meta *m = data;
547 struct search_deltas_arg *a = arg;
548 int obj_idx;
549 struct got_object *obj = NULL;
551 if (a->cancel_cb) {
552 err = (*a->cancel_cb)(a->cancel_arg);
553 if (err)
554 return err;
557 if (!got_repo_check_packidx_bloom_filter(a->repo,
558 a->packidx->path_packidx, id))
559 return NULL;
561 obj_idx = got_packidx_get_object_idx(a->packidx, id);
562 if (obj_idx == -1)
563 return NULL;
565 /* TODO:
566 * Opening and closing an object just to check its flags
567 * is a bit expensive. We could have an imsg which requests
568 * plain type/size information for an object without doing
569 * work such as traversing the object's entire delta chain
570 * to find the base object type, and other such info which
571 * we don't really need here.
572 */
573 err = got_object_open_from_packfile(&obj, &m->id, a->pack,
574 a->packidx, obj_idx, a->repo);
575 if (err)
576 return err;
578 if (obj->flags & GOT_OBJ_FLAG_DELTIFIED) {
579 reuse_delta(obj_idx, m, a->v, a->idset, a->pack, a->packidx,
580 a->delta_cache_fd, a->repo);
581 if (err)
582 goto done;
583 err = report_progress(a->progress_cb, a->progress_arg, a->rl,
584 a->ncolored, a->nfound, a->ntrees, 0L, a->ncommits,
585 got_object_idset_num_elements(a->idset), a->v->nmeta, 0);
587 done:
588 got_object_close(obj);
589 return err;
592 static const struct got_error *
593 search_deltas(struct got_pack_metavec *v, struct got_object_idset *idset,
594 int delta_cache_fd, int ncolored, int nfound, int ntrees, int ncommits,
595 struct got_repository *repo,
596 got_pack_progress_cb progress_cb, void *progress_arg,
597 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
599 const struct got_error *err = NULL;
600 char *path_packfile = NULL;
601 struct got_packidx *packidx;
602 struct got_pack *pack;
603 struct search_deltas_arg sda;
605 err = find_pack_for_reuse(&packidx, repo);
606 if (err)
607 return err;
609 if (packidx == NULL)
610 return NULL;
612 err = got_packidx_get_packfile_path(&path_packfile,
613 packidx->path_packidx);
614 if (err)
615 return err;
617 pack = got_repo_get_cached_pack(repo, path_packfile);
618 if (pack == NULL) {
619 err = got_repo_cache_pack(&pack, repo, path_packfile, packidx);
620 if (err)
621 goto done;
624 sda.packidx = packidx;
625 sda.pack = pack;
626 sda.idset = idset;
627 sda.v = v;
628 sda.delta_cache_fd = delta_cache_fd;
629 sda.repo = repo;
630 sda.progress_cb = progress_cb;
631 sda.progress_arg = progress_arg;
632 sda.rl = rl;
633 sda.cancel_cb = cancel_cb;
634 sda.cancel_arg = cancel_arg;
635 sda.ncolored = ncolored;
636 sda.nfound = nfound;
637 sda.ntrees = ntrees;
638 sda.ncommits = ncommits;
639 err = got_object_idset_for_each(idset, search_delta_for_object, &sda);
640 done:
641 free(path_packfile);
642 return err;
645 static const struct got_error *
646 pick_deltas(struct got_pack_meta **meta, int nmeta, int ncolored,
647 int nfound, int ntrees, int ncommits, int nreused, FILE *delta_cache,
648 struct got_repository *repo,
649 got_pack_progress_cb progress_cb, void *progress_arg,
650 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
652 const struct got_error *err = NULL;
653 struct got_pack_meta *m = NULL, *base = NULL;
654 struct got_raw_object *raw = NULL, *base_raw = NULL;
655 struct got_delta_instruction *deltas = NULL, *best_deltas = NULL;
656 int i, j, ndeltas, best_ndeltas;
657 off_t size, best_size;
658 const int max_base_candidates = 3;
659 size_t delta_memsize = 0;
660 const size_t max_delta_memsize = 25 * GOT_DELTA_RESULT_SIZE_CACHED_MAX;
661 int outfd = -1;
663 qsort(meta, nmeta, sizeof(struct got_pack_meta *), delta_order_cmp);
664 for (i = 0; i < nmeta; i++) {
665 if (cancel_cb) {
666 err = (*cancel_cb)(cancel_arg);
667 if (err)
668 break;
670 err = report_progress(progress_cb, progress_arg, rl,
671 ncolored, nfound, ntrees, 0L, ncommits, nreused + nmeta,
672 nreused + i, 0);
673 if (err)
674 goto done;
675 m = meta[i];
677 if (m->obj_type == GOT_OBJ_TYPE_COMMIT ||
678 m->obj_type == GOT_OBJ_TYPE_TAG)
679 continue;
681 err = got_object_raw_open(&raw, &outfd, repo, &m->id);
682 if (err)
683 goto done;
684 m->size = raw->size;
686 if (raw->f == NULL) {
687 err = got_deltify_init_mem(&m->dtab, raw->data,
688 raw->hdrlen, raw->size + raw->hdrlen);
689 } else {
690 err = got_deltify_init(&m->dtab, raw->f, raw->hdrlen,
691 raw->size + raw->hdrlen);
693 if (err)
694 goto done;
696 if (i > max_base_candidates) {
697 struct got_pack_meta *n = NULL;
698 n = meta[i - (max_base_candidates + 1)];
699 got_deltify_free(n->dtab);
700 n->dtab = NULL;
703 best_size = raw->size;
704 best_ndeltas = 0;
705 for (j = MAX(0, i - max_base_candidates); j < i; j++) {
706 if (cancel_cb) {
707 err = (*cancel_cb)(cancel_arg);
708 if (err)
709 goto done;
711 base = meta[j];
712 /* long chains make unpacking slow, avoid such bases */
713 if (base->nchain >= 128 ||
714 base->obj_type != m->obj_type)
715 continue;
717 err = got_object_raw_open(&base_raw, &outfd, repo,
718 &base->id);
719 if (err)
720 goto done;
722 if (raw->f == NULL && base_raw->f == NULL) {
723 err = got_deltify_mem_mem(&deltas, &ndeltas,
724 raw->data, raw->hdrlen,
725 raw->size + raw->hdrlen,
726 base->dtab, base_raw->data,
727 base_raw->hdrlen,
728 base_raw->size + base_raw->hdrlen);
729 } else if (raw->f == NULL) {
730 err = got_deltify_mem_file(&deltas, &ndeltas,
731 raw->data, raw->hdrlen,
732 raw->size + raw->hdrlen,
733 base->dtab, base_raw->f,
734 base_raw->hdrlen,
735 base_raw->size + base_raw->hdrlen);
736 } else if (base_raw->f == NULL) {
737 err = got_deltify_file_mem(&deltas, &ndeltas,
738 raw->f, raw->hdrlen,
739 raw->size + raw->hdrlen,
740 base->dtab, base_raw->data,
741 base_raw->hdrlen,
742 base_raw->size + base_raw->hdrlen);
743 } else {
744 err = got_deltify(&deltas, &ndeltas,
745 raw->f, raw->hdrlen,
746 raw->size + raw->hdrlen,
747 base->dtab, base_raw->f, base_raw->hdrlen,
748 base_raw->size + base_raw->hdrlen);
750 got_object_raw_close(base_raw);
751 base_raw = NULL;
752 if (err)
753 goto done;
755 size = delta_size(deltas, ndeltas);
756 if (size + 32 < best_size){
757 /*
758 * if we already picked a best delta,
759 * replace it.
760 */
761 best_size = size;
762 free(best_deltas);
763 best_deltas = deltas;
764 best_ndeltas = ndeltas;
765 deltas = NULL;
766 m->nchain = base->nchain + 1;
767 m->prev = base;
768 m->head = base->head;
769 if (m->head == NULL)
770 m->head = base;
771 } else {
772 free(deltas);
773 deltas = NULL;
774 ndeltas = 0;
778 if (best_ndeltas > 0) {
779 if (best_size <= GOT_DELTA_RESULT_SIZE_CACHED_MAX &&
780 delta_memsize + best_size <= max_delta_memsize) {
781 delta_memsize += best_size;
782 err = encode_delta_in_mem(m, raw, best_deltas,
783 best_ndeltas, best_size, m->prev->size);
784 } else {
785 m->delta_offset = ftello(delta_cache);
786 /*
787 * TODO:
788 * Storing compressed delta data in the delta
789 * cache file would probably be more efficient
790 * than writing uncompressed delta data here
791 * and compressing it while writing the pack
792 * file. This would also allow for reusing
793 * deltas in their compressed form.
794 */
795 err = encode_delta(m, raw, best_deltas,
796 best_ndeltas, m->prev->size, delta_cache);
798 free(best_deltas);
799 best_deltas = NULL;
800 best_ndeltas = 0;
801 if (err)
802 goto done;
805 got_object_raw_close(raw);
806 raw = NULL;
808 done:
809 for (i = MAX(0, nmeta - max_base_candidates); i < nmeta; i++) {
810 got_deltify_free(meta[i]->dtab);
811 meta[i]->dtab = NULL;
813 if (raw)
814 got_object_raw_close(raw);
815 if (base_raw)
816 got_object_raw_close(base_raw);
817 if (outfd != -1 && close(outfd) == -1 && err == NULL)
818 err = got_error_from_errno("close");
819 free(deltas);
820 free(best_deltas);
821 return err;
824 static const struct got_error *
825 search_packidx(int *found, struct got_object_id *id,
826 struct got_repository *repo)
828 const struct got_error *err = NULL;
829 struct got_packidx *packidx = NULL;
830 int idx;
832 *found = 0;
834 err = got_repo_search_packidx(&packidx, &idx, repo, id);
835 if (err == NULL)
836 *found = 1; /* object is already packed */
837 else if (err->code == GOT_ERR_NO_OBJ)
838 err = NULL;
839 return err;
842 static const struct got_error *
843 add_object(int want_meta, struct got_object_idset *idset,
844 struct got_object_id *id, const char *path, int obj_type,
845 time_t mtime, int loose_obj_only, struct got_repository *repo,
846 int *ncolored, int *nfound, int *ntrees,
847 got_pack_progress_cb progress_cb, void *progress_arg,
848 struct got_ratelimit *rl)
850 const struct got_error *err;
851 struct got_pack_meta *m = NULL;
853 if (loose_obj_only) {
854 int is_packed;
855 err = search_packidx(&is_packed, id, repo);
856 if (err)
857 return err;
858 if (is_packed && want_meta)
859 return NULL;
862 if (want_meta) {
863 err = alloc_meta(&m, id, path, obj_type, mtime);
864 if (err)
865 return err;
867 (*nfound)++;
868 err = report_progress(progress_cb, progress_arg, rl,
869 *ncolored, *nfound, *ntrees, 0L, 0, 0, 0, 0);
870 if (err)
871 return err;
874 return got_object_idset_add(idset, id, m);
877 static const struct got_error *
878 load_tree_entries(struct got_object_id_queue *ids, int want_meta,
879 struct got_object_idset *idset, struct got_object_id *tree_id,
880 const char *dpath, time_t mtime, struct got_repository *repo,
881 int loose_obj_only, int *ncolored, int *nfound, int *ntrees,
882 got_pack_progress_cb progress_cb, void *progress_arg,
883 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
885 const struct got_error *err;
886 struct got_tree_object *tree;
887 char *p = NULL;
888 int i;
890 err = got_object_open_as_tree(&tree, repo, tree_id);
891 if (err)
892 return err;
894 (*ntrees)++;
895 err = report_progress(progress_cb, progress_arg, rl,
896 *ncolored, *nfound, *ntrees, 0L, 0, 0, 0, 0);
897 if (err)
898 return err;
900 for (i = 0; i < got_object_tree_get_nentries(tree); i++) {
901 struct got_tree_entry *e = got_object_tree_get_entry(tree, i);
902 struct got_object_id *id = got_tree_entry_get_id(e);
903 mode_t mode = got_tree_entry_get_mode(e);
905 if (cancel_cb) {
906 err = (*cancel_cb)(cancel_arg);
907 if (err)
908 break;
911 if (got_object_tree_entry_is_submodule(e) ||
912 got_object_idset_contains(idset, id))
913 continue;
915 if (asprintf(&p, "%s%s%s", dpath, dpath[0] != '\0' ? "/" : "",
916 got_tree_entry_get_name(e)) == -1) {
917 err = got_error_from_errno("asprintf");
918 break;
921 if (S_ISDIR(mode)) {
922 struct got_object_qid *qid;
923 err = got_object_qid_alloc(&qid, id);
924 if (err)
925 break;
926 STAILQ_INSERT_TAIL(ids, qid, entry);
927 } else if (S_ISREG(mode) || S_ISLNK(mode)) {
928 err = add_object(want_meta, idset, id, p,
929 GOT_OBJ_TYPE_BLOB, mtime, loose_obj_only, repo,
930 ncolored, nfound, ntrees,
931 progress_cb, progress_arg, rl);
932 if (err)
933 break;
935 free(p);
936 p = NULL;
939 got_object_tree_close(tree);
940 free(p);
941 return err;
944 static const struct got_error *
945 load_tree(int want_meta, struct got_object_idset *idset,
946 struct got_object_id *tree_id, const char *dpath, time_t mtime,
947 struct got_repository *repo, int loose_obj_only,
948 int *ncolored, int *nfound, int *ntrees,
949 got_pack_progress_cb progress_cb, void *progress_arg,
950 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
952 const struct got_error *err = NULL;
953 struct got_object_id_queue tree_ids;
954 struct got_object_qid *qid;
956 if (got_object_idset_contains(idset, tree_id))
957 return NULL;
959 err = got_object_qid_alloc(&qid, tree_id);
960 if (err)
961 return err;
963 STAILQ_INIT(&tree_ids);
964 STAILQ_INSERT_TAIL(&tree_ids, qid, entry);
966 while (!STAILQ_EMPTY(&tree_ids)) {
967 if (cancel_cb) {
968 err = (*cancel_cb)(cancel_arg);
969 if (err)
970 break;
973 qid = STAILQ_FIRST(&tree_ids);
974 STAILQ_REMOVE_HEAD(&tree_ids, entry);
976 if (got_object_idset_contains(idset, qid->id)) {
977 got_object_qid_free(qid);
978 continue;
981 err = add_object(want_meta, idset, qid->id, dpath,
982 GOT_OBJ_TYPE_TREE, mtime, loose_obj_only, repo,
983 ncolored, nfound, ntrees, progress_cb, progress_arg, rl);
984 if (err) {
985 got_object_qid_free(qid);
986 break;
989 err = load_tree_entries(&tree_ids, want_meta, idset, qid->id,
990 dpath, mtime, repo, loose_obj_only, ncolored, nfound,
991 ntrees, progress_cb, progress_arg, rl,
992 cancel_cb, cancel_arg);
993 got_object_qid_free(qid);
994 if (err)
995 break;
998 got_object_id_queue_free(&tree_ids);
999 return err;
1002 static const struct got_error *
1003 load_commit(int want_meta, struct got_object_idset *idset,
1004 struct got_object_id *id, struct got_repository *repo, int loose_obj_only,
1005 int *ncolored, int *nfound, int *ntrees,
1006 got_pack_progress_cb progress_cb, void *progress_arg,
1007 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
1009 const struct got_error *err;
1010 struct got_commit_object *commit;
1012 if (got_object_idset_contains(idset, id))
1013 return NULL;
1015 if (loose_obj_only) {
1016 int is_packed;
1017 err = search_packidx(&is_packed, id, repo);
1018 if (err)
1019 return err;
1020 if (is_packed && want_meta)
1021 return NULL;
1024 err = got_object_open_as_commit(&commit, repo, id);
1025 if (err)
1026 return err;
1028 err = add_object(want_meta, idset, id, "", GOT_OBJ_TYPE_COMMIT,
1029 got_object_commit_get_committer_time(commit),
1030 loose_obj_only, repo,
1031 ncolored, nfound, ntrees, progress_cb, progress_arg, rl);
1032 if (err)
1033 goto done;
1035 err = load_tree(want_meta, idset, got_object_commit_get_tree_id(commit),
1036 "", got_object_commit_get_committer_time(commit),
1037 repo, loose_obj_only, ncolored, nfound, ntrees,
1038 progress_cb, progress_arg, rl, cancel_cb, cancel_arg);
1039 done:
1040 got_object_commit_close(commit);
1041 return err;
1044 static const struct got_error *
1045 load_tag(int want_meta, struct got_object_idset *idset,
1046 struct got_object_id *id, struct got_repository *repo, int loose_obj_only,
1047 int *ncolored, int *nfound, int *ntrees,
1048 got_pack_progress_cb progress_cb, void *progress_arg,
1049 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
1051 const struct got_error *err;
1052 struct got_tag_object *tag = NULL;
1054 if (got_object_idset_contains(idset, id))
1055 return NULL;
1057 if (loose_obj_only) {
1058 int is_packed;
1059 err = search_packidx(&is_packed, id, repo);
1060 if (err)
1061 return err;
1062 if (is_packed && want_meta)
1063 return NULL;
1066 err = got_object_open_as_tag(&tag, repo, id);
1067 if (err)
1068 return err;
1070 err = add_object(want_meta, idset, id, "", GOT_OBJ_TYPE_TAG,
1071 got_object_tag_get_tagger_time(tag), loose_obj_only, repo,
1072 ncolored, nfound, ntrees, progress_cb, progress_arg, rl);
1073 if (err)
1074 goto done;
1076 switch (got_object_tag_get_object_type(tag)) {
1077 case GOT_OBJ_TYPE_COMMIT:
1078 err = load_commit(want_meta, idset,
1079 got_object_tag_get_object_id(tag), repo, loose_obj_only,
1080 ncolored, nfound, ntrees, progress_cb, progress_arg, rl,
1081 cancel_cb, cancel_arg);
1082 break;
1083 case GOT_OBJ_TYPE_TREE:
1084 err = load_tree(want_meta, idset,
1085 got_object_tag_get_object_id(tag), "",
1086 got_object_tag_get_tagger_time(tag), repo, loose_obj_only,
1087 ncolored, nfound, ntrees, progress_cb, progress_arg, rl,
1088 cancel_cb, cancel_arg);
1089 break;
1090 default:
1091 break;
1094 done:
1095 got_object_tag_close(tag);
1096 return err;
1099 enum findtwixt_color {
1100 COLOR_KEEP = 0,
1101 COLOR_DROP,
1102 COLOR_BLANK,
1104 static const int findtwixt_colors[] = {
1105 COLOR_KEEP,
1106 COLOR_DROP,
1107 COLOR_BLANK
1110 static const struct got_error *
1111 queue_commit_id(struct got_object_id_queue *ids, struct got_object_id *id,
1112 int color, struct got_repository *repo)
1114 const struct got_error *err;
1115 struct got_object_qid *qid;
1117 err = got_object_qid_alloc(&qid, id);
1118 if (err)
1119 return err;
1121 STAILQ_INSERT_TAIL(ids, qid, entry);
1122 qid->data = (void *)&findtwixt_colors[color];
1123 return NULL;
1126 static const struct got_error *
1127 drop_commit(struct got_object_idset *keep, struct got_object_idset *drop,
1128 struct got_object_id *id, struct got_repository *repo,
1129 got_cancel_cb cancel_cb, void *cancel_arg)
1131 const struct got_error *err = NULL;
1132 struct got_commit_object *commit;
1133 const struct got_object_id_queue *parents;
1134 struct got_object_id_queue ids;
1135 struct got_object_qid *qid;
1137 STAILQ_INIT(&ids);
1139 err = got_object_qid_alloc(&qid, id);
1140 if (err)
1141 return err;
1142 STAILQ_INSERT_HEAD(&ids, qid, entry);
1144 while (!STAILQ_EMPTY(&ids)) {
1145 if (cancel_cb) {
1146 err = (*cancel_cb)(cancel_arg);
1147 if (err)
1148 break;
1151 qid = STAILQ_FIRST(&ids);
1152 STAILQ_REMOVE_HEAD(&ids, entry);
1154 if (got_object_idset_contains(drop, qid->id)) {
1155 got_object_qid_free(qid);
1156 continue;
1159 err = got_object_idset_add(drop, qid->id, NULL);
1160 if (err) {
1161 got_object_qid_free(qid);
1162 break;
1165 if (!got_object_idset_contains(keep, qid->id)) {
1166 got_object_qid_free(qid);
1167 continue;
1170 err = got_object_open_as_commit(&commit, repo, qid->id);
1171 got_object_qid_free(qid);
1172 if (err)
1173 break;
1175 parents = got_object_commit_get_parent_ids(commit);
1176 if (parents) {
1177 err = got_object_id_queue_copy(parents, &ids);
1178 if (err) {
1179 got_object_commit_close(commit);
1180 break;
1183 got_object_commit_close(commit);
1186 got_object_id_queue_free(&ids);
1187 return err;
1190 struct append_id_arg {
1191 struct got_object_id **array;
1192 int idx;
1195 static const struct got_error *
1196 append_id(struct got_object_id *id, void *data, void *arg)
1198 struct append_id_arg *a = arg;
1200 a->array[a->idx] = got_object_id_dup(id);
1201 if (a->array[a->idx] == NULL)
1202 return got_error_from_errno("got_object_id_dup");
1204 a->idx++;
1205 return NULL;
1208 static const struct got_error *
1209 queue_commit_or_tag_id(struct got_object_id *id, int color,
1210 struct got_object_id_queue *ids, struct got_repository *repo)
1212 const struct got_error *err;
1213 struct got_tag_object *tag = NULL;
1214 int obj_type;
1216 err = got_object_get_type(&obj_type, repo, id);
1217 if (err)
1218 return err;
1220 if (obj_type == GOT_OBJ_TYPE_TAG) {
1221 err = got_object_open_as_tag(&tag, repo, id);
1222 if (err)
1223 return err;
1224 obj_type = got_object_tag_get_object_type(tag);
1225 id = got_object_tag_get_object_id(tag);
1228 if (obj_type == GOT_OBJ_TYPE_COMMIT) {
1229 err = queue_commit_id(ids, id, color, repo);
1230 if (err)
1231 goto done;
1233 done:
1234 if (tag)
1235 got_object_tag_close(tag);
1236 return err;
1239 static const struct got_error *
1240 color_commits(int *ncolored, struct got_object_id_queue *ids,
1241 struct got_object_idset *keep, struct got_object_idset *drop,
1242 struct got_repository *repo,
1243 got_pack_progress_cb progress_cb, void *progress_arg,
1244 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
1246 const struct got_error *err = NULL;
1247 struct got_commit_object *commit = NULL;
1248 struct got_object_qid *qid;
1250 while (!STAILQ_EMPTY(ids)) {
1251 int qcolor, ncolor;
1253 if (cancel_cb) {
1254 err = cancel_cb(cancel_arg);
1255 if (err)
1256 break;
1259 qid = STAILQ_FIRST(ids);
1260 qcolor = *((int *)qid->data);
1262 if (got_object_idset_contains(drop, qid->id))
1263 ncolor = COLOR_DROP;
1264 else if (got_object_idset_contains(keep, qid->id))
1265 ncolor = COLOR_KEEP;
1266 else
1267 ncolor = COLOR_BLANK;
1269 (*ncolored)++;
1270 err = report_progress(progress_cb, progress_arg, rl,
1271 *ncolored, 0, 0, 0L, 0, 0, 0, 0);
1272 if (err)
1273 break;
1275 if (ncolor == COLOR_DROP || (ncolor == COLOR_KEEP &&
1276 qcolor == COLOR_KEEP)) {
1277 STAILQ_REMOVE_HEAD(ids, entry);
1278 got_object_qid_free(qid);
1279 continue;
1282 if (ncolor == COLOR_KEEP && qcolor == COLOR_DROP) {
1283 err = drop_commit(keep, drop, qid->id, repo,
1284 cancel_cb, cancel_arg);
1285 if (err)
1286 break;
1287 } else if (ncolor == COLOR_BLANK) {
1288 struct got_commit_object *commit;
1289 const struct got_object_id_queue *parents;
1290 struct got_object_qid *pid;
1292 if (qcolor == COLOR_KEEP)
1293 err = got_object_idset_add(keep, qid->id, NULL);
1294 else
1295 err = got_object_idset_add(drop, qid->id, NULL);
1296 if (err)
1297 break;
1299 err = got_object_open_as_commit(&commit, repo, qid->id);
1300 if (err)
1301 break;
1303 parents = got_object_commit_get_parent_ids(commit);
1304 if (parents) {
1305 STAILQ_FOREACH(pid, parents, entry) {
1306 err = queue_commit_id(ids, pid->id,
1307 qcolor, repo);
1308 if (err)
1309 break;
1312 got_object_commit_close(commit);
1313 commit = NULL;
1314 } else {
1315 /* should not happen */
1316 err = got_error_fmt(GOT_ERR_NOT_IMPL,
1317 "%s ncolor=%d qcolor=%d", __func__, ncolor, qcolor);
1318 break;
1321 STAILQ_REMOVE_HEAD(ids, entry);
1322 got_object_qid_free(qid);
1325 if (commit)
1326 got_object_commit_close(commit);
1327 return err;
1330 static const struct got_error *
1331 findtwixt(struct got_object_id ***res, int *nres, int *ncolored,
1332 struct got_object_id **head, int nhead,
1333 struct got_object_id **tail, int ntail,
1334 struct got_repository *repo,
1335 got_pack_progress_cb progress_cb, void *progress_arg,
1336 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
1338 const struct got_error *err = NULL;
1339 struct got_object_id_queue ids;
1340 struct got_object_idset *keep, *drop;
1341 int i, nkeep;
1343 STAILQ_INIT(&ids);
1344 *res = NULL;
1345 *nres = 0;
1346 *ncolored = 0;
1348 keep = got_object_idset_alloc();
1349 if (keep == NULL)
1350 return got_error_from_errno("got_object_idset_alloc");
1352 drop = got_object_idset_alloc();
1353 if (drop == NULL) {
1354 err = got_error_from_errno("got_object_idset_alloc");
1355 goto done;
1358 for (i = 0; i < nhead; i++) {
1359 struct got_object_id *id = head[i];
1360 if (id == NULL)
1361 continue;
1362 err = queue_commit_or_tag_id(id, COLOR_KEEP, &ids, repo);
1363 if (err)
1364 goto done;
1367 for (i = 0; i < ntail; i++) {
1368 struct got_object_id *id = tail[i];
1369 if (id == NULL)
1370 continue;
1371 err = queue_commit_or_tag_id(id, COLOR_DROP, &ids, repo);
1372 if (err)
1373 goto done;
1376 err = color_commits(ncolored, &ids, keep, drop, repo,
1377 progress_cb, progress_arg, rl, cancel_cb, cancel_arg);
1378 if (err)
1379 goto done;
1381 nkeep = got_object_idset_num_elements(keep);
1382 if (nkeep > 0) {
1383 struct append_id_arg arg;
1384 arg.array = calloc(nkeep, sizeof(struct got_object_id *));
1385 if (arg.array == NULL) {
1386 err = got_error_from_errno("calloc");
1387 goto done;
1389 arg.idx = 0;
1390 err = got_object_idset_for_each(keep, append_id, &arg);
1391 if (err) {
1392 free(arg.array);
1393 goto done;
1395 *res = arg.array;
1396 *nres = nkeep;
1398 done:
1399 got_object_idset_free(keep);
1400 got_object_idset_free(drop);
1401 got_object_id_queue_free(&ids);
1402 return err;
1405 static const struct got_error *
1406 load_object_ids(int *ncolored, int *nfound, int *ntrees,
1407 struct got_object_idset *idset, struct got_object_id **theirs, int ntheirs,
1408 struct got_object_id **ours, int nours, struct got_repository *repo,
1409 int loose_obj_only, got_pack_progress_cb progress_cb, void *progress_arg,
1410 struct got_ratelimit *rl, got_cancel_cb cancel_cb, void *cancel_arg)
1412 const struct got_error *err = NULL;
1413 struct got_object_id **ids = NULL;
1414 int i, nobj = 0, obj_type;
1416 *ncolored = 0;
1417 *nfound = 0;
1418 *ntrees = 0;
1420 err = findtwixt(&ids, &nobj, ncolored, ours, nours, theirs, ntheirs,
1421 repo, progress_cb, progress_arg, rl, cancel_cb, cancel_arg);
1422 if (err || nobj == 0)
1423 goto done;
1425 for (i = 0; i < ntheirs; i++) {
1426 struct got_object_id *id = theirs[i];
1427 if (id == NULL)
1428 continue;
1429 err = got_object_get_type(&obj_type, repo, id);
1430 if (err)
1431 return err;
1432 if (obj_type == GOT_OBJ_TYPE_COMMIT) {
1433 err = load_commit(0, idset, id, repo,
1434 loose_obj_only, ncolored, nfound, ntrees,
1435 progress_cb, progress_arg, rl,
1436 cancel_cb, cancel_arg);
1437 if (err)
1438 goto done;
1439 } else if (obj_type == GOT_OBJ_TYPE_TAG) {
1440 err = load_tag(0, idset, id, repo,
1441 loose_obj_only, ncolored, nfound, ntrees,
1442 progress_cb, progress_arg, rl,
1443 cancel_cb, cancel_arg);
1444 if (err)
1445 goto done;
1449 for (i = 0; i < nobj; i++) {
1450 err = load_commit(1, idset, ids[i], repo, loose_obj_only,
1451 ncolored, nfound, ntrees, progress_cb, progress_arg, rl,
1452 cancel_cb, cancel_arg);
1453 if (err)
1454 goto done;
1457 for (i = 0; i < nours; i++) {
1458 struct got_object_id *id = ours[i];
1459 struct got_pack_meta *m;
1460 if (id == NULL)
1461 continue;
1462 m = got_object_idset_get(idset, id);
1463 if (m == NULL) {
1464 err = got_object_get_type(&obj_type, repo, id);
1465 if (err)
1466 goto done;
1467 } else
1468 obj_type = m->obj_type;
1469 if (obj_type != GOT_OBJ_TYPE_TAG)
1470 continue;
1471 err = load_tag(1, idset, id, repo, loose_obj_only,
1472 ncolored, nfound, ntrees, progress_cb, progress_arg, rl,
1473 cancel_cb, cancel_arg);
1474 if (err)
1475 goto done;
1477 done:
1478 for (i = 0; i < nobj; i++) {
1479 free(ids[i]);
1481 free(ids);
1482 return err;
1485 const struct got_error *
1486 hwrite(FILE *f, void *buf, int len, SHA1_CTX *ctx)
1488 size_t n;
1490 SHA1Update(ctx, buf, len);
1491 n = fwrite(buf, 1, len, f);
1492 if (n != len)
1493 return got_ferror(f, GOT_ERR_IO);
1494 return NULL;
1497 static void
1498 putbe32(char *b, uint32_t n)
1500 b[0] = n >> 24;
1501 b[1] = n >> 16;
1502 b[2] = n >> 8;
1503 b[3] = n >> 0;
1506 static int
1507 write_order_cmp(const void *pa, const void *pb)
1509 struct got_pack_meta *a, *b, *ahd, *bhd;
1511 a = *(struct got_pack_meta **)pa;
1512 b = *(struct got_pack_meta **)pb;
1513 ahd = (a->head == NULL) ? a : a->head;
1514 bhd = (b->head == NULL) ? b : b->head;
1515 if (ahd->mtime != bhd->mtime)
1516 return bhd->mtime - ahd->mtime;
1517 if (ahd != bhd)
1518 return (uintptr_t)bhd - (uintptr_t)ahd;
1519 if (a->nchain != b->nchain)
1520 return a->nchain - b->nchain;
1521 return a->mtime - b->mtime;
1524 static int
1525 reuse_write_order_cmp(const void *pa, const void *pb)
1527 struct got_pack_meta *a, *b;
1529 a = *(struct got_pack_meta **)pa;
1530 b = *(struct got_pack_meta **)pb;
1532 if (a->reused_delta_offset < b->reused_delta_offset)
1533 return -1;
1534 if (a->reused_delta_offset > b->reused_delta_offset)
1535 return 1;
1536 return 0;
1539 static const struct got_error *
1540 packhdr(int *hdrlen, char *hdr, size_t bufsize, int obj_type, size_t len)
1542 size_t i;
1544 *hdrlen = 0;
1546 hdr[0] = obj_type << 4;
1547 hdr[0] |= len & 0xf;
1548 len >>= 4;
1549 for (i = 1; len != 0; i++){
1550 if (i >= bufsize)
1551 return got_error(GOT_ERR_NO_SPACE);
1552 hdr[i - 1] |= GOT_DELTA_SIZE_MORE;
1553 hdr[i] = len & GOT_DELTA_SIZE_VAL_MASK;
1554 len >>= GOT_DELTA_SIZE_SHIFT;
1557 *hdrlen = i;
1558 return NULL;
1561 static int
1562 packoff(char *hdr, off_t off)
1564 int i, j;
1565 char rbuf[8];
1567 rbuf[0] = off & GOT_DELTA_SIZE_VAL_MASK;
1568 for (i = 1; (off >>= GOT_DELTA_SIZE_SHIFT) != 0; i++) {
1569 rbuf[i] = (--off & GOT_DELTA_SIZE_VAL_MASK) |
1570 GOT_DELTA_SIZE_MORE;
1573 j = 0;
1574 while (i > 0)
1575 hdr[j++] = rbuf[--i];
1576 return j;
1579 static const struct got_error *
1580 deltahdr(off_t *packfile_size, SHA1_CTX *ctx, FILE *packfile,
1581 struct got_pack_meta *m)
1583 const struct got_error *err;
1584 char buf[32];
1585 int nh;
1587 if (m->prev->off != 0) {
1588 err = packhdr(&nh, buf, sizeof(buf),
1589 GOT_OBJ_TYPE_OFFSET_DELTA, m->delta_len);
1590 if (err)
1591 return err;
1592 nh += packoff(buf + nh, m->off - m->prev->off);
1593 err = hwrite(packfile, buf, nh, ctx);
1594 if (err)
1595 return err;
1596 *packfile_size += nh;
1597 } else {
1598 err = packhdr(&nh, buf, sizeof(buf),
1599 GOT_OBJ_TYPE_REF_DELTA, m->delta_len);
1600 if (err)
1601 return err;
1602 err = hwrite(packfile, buf, nh, ctx);
1603 if (err)
1604 return err;
1605 *packfile_size += nh;
1606 err = hwrite(packfile, m->prev->id.sha1,
1607 sizeof(m->prev->id.sha1), ctx);
1608 if (err)
1609 return err;
1610 *packfile_size += sizeof(m->prev->id.sha1);
1613 return NULL;
1616 static const struct got_error *
1617 write_packed_object(off_t *packfile_size, FILE *packfile,
1618 FILE *delta_cache, struct got_pack_meta *m, int *outfd,
1619 SHA1_CTX *ctx, struct got_repository *repo)
1621 const struct got_error *err = NULL;
1622 struct got_deflate_checksum csum;
1623 char buf[32];
1624 int nh;
1625 struct got_raw_object *raw = NULL;
1626 off_t outlen;
1628 csum.output_sha1 = ctx;
1629 csum.output_crc = NULL;
1631 m->off = ftello(packfile);
1632 if (m->delta_len == 0) {
1633 err = got_object_raw_open(&raw, outfd, repo, &m->id);
1634 if (err)
1635 goto done;
1636 err = packhdr(&nh, buf, sizeof(buf),
1637 m->obj_type, raw->size);
1638 if (err)
1639 goto done;
1640 err = hwrite(packfile, buf, nh, ctx);
1641 if (err)
1642 goto done;
1643 *packfile_size += nh;
1644 if (raw->f == NULL) {
1645 err = got_deflate_to_file_mmap(&outlen,
1646 raw->data + raw->hdrlen, 0, raw->size,
1647 packfile, &csum);
1648 if (err)
1649 goto done;
1650 } else {
1651 if (fseeko(raw->f, raw->hdrlen, SEEK_SET)
1652 == -1) {
1653 err = got_error_from_errno("fseeko");
1654 goto done;
1656 err = got_deflate_to_file(&outlen, raw->f,
1657 raw->size, packfile, &csum);
1658 if (err)
1659 goto done;
1661 *packfile_size += outlen;
1662 got_object_raw_close(raw);
1663 raw = NULL;
1664 } else if (m->delta_buf) {
1665 err = deltahdr(packfile_size, ctx, packfile, m);
1666 if (err)
1667 goto done;
1668 err = got_deflate_to_file_mmap(&outlen,
1669 m->delta_buf, 0, m->delta_len, packfile, &csum);
1670 if (err)
1671 goto done;
1672 *packfile_size += outlen;
1673 free(m->delta_buf);
1674 m->delta_buf = NULL;
1675 } else {
1676 if (fseeko(delta_cache, m->delta_offset, SEEK_SET)
1677 == -1) {
1678 err = got_error_from_errno("fseeko");
1679 goto done;
1681 err = deltahdr(packfile_size, ctx, packfile, m);
1682 if (err)
1683 goto done;
1684 err = got_deflate_to_file(&outlen, delta_cache,
1685 m->delta_len, packfile, &csum);
1686 if (err)
1687 goto done;
1688 *packfile_size += outlen;
1690 done:
1691 if (raw)
1692 got_object_raw_close(raw);
1693 return err;
1696 static const struct got_error *
1697 genpack(uint8_t *pack_sha1, FILE *packfile, FILE *delta_cache,
1698 struct got_pack_meta **deltify, int ndeltify,
1699 struct got_pack_meta **reuse, int nreuse,
1700 int ncolored, int nfound, int ntrees, int nours,
1701 struct got_repository *repo,
1702 got_pack_progress_cb progress_cb, void *progress_arg,
1703 struct got_ratelimit *rl,
1704 got_cancel_cb cancel_cb, void *cancel_arg)
1706 const struct got_error *err = NULL;
1707 int i;
1708 SHA1_CTX ctx;
1709 struct got_pack_meta *m;
1710 char buf[32];
1711 size_t n;
1712 off_t packfile_size = 0;
1713 int outfd = -1;
1715 SHA1Init(&ctx);
1717 err = hwrite(packfile, "PACK", 4, &ctx);
1718 if (err)
1719 return err;
1720 putbe32(buf, GOT_PACKFILE_VERSION);
1721 err = hwrite(packfile, buf, 4, &ctx);
1722 if (err)
1723 goto done;
1724 putbe32(buf, ndeltify + nreuse);
1725 err = hwrite(packfile, buf, 4, &ctx);
1726 if (err)
1727 goto done;
1729 qsort(deltify, ndeltify, sizeof(struct got_pack_meta *),
1730 write_order_cmp);
1731 for (i = 0; i < ndeltify; i++) {
1732 err = report_progress(progress_cb, progress_arg, rl,
1733 ncolored, nfound, ntrees, packfile_size, nours,
1734 ndeltify + nreuse, ndeltify + nreuse, i);
1735 if (err)
1736 goto done;
1737 m = deltify[i];
1738 err = write_packed_object(&packfile_size, packfile,
1739 delta_cache, m, &outfd, &ctx, repo);
1740 if (err)
1741 goto done;
1744 qsort(reuse, nreuse, sizeof(struct got_pack_meta *),
1745 reuse_write_order_cmp);
1746 for (i = 0; i < nreuse; i++) {
1747 err = report_progress(progress_cb, progress_arg, rl,
1748 ncolored, nfound, ntrees, packfile_size, nours,
1749 ndeltify + nreuse, ndeltify + nreuse, ndeltify + i);
1750 if (err)
1751 goto done;
1752 m = reuse[i];
1753 err = write_packed_object(&packfile_size, packfile,
1754 delta_cache, m, &outfd, &ctx, repo);
1755 if (err)
1756 goto done;
1759 SHA1Final(pack_sha1, &ctx);
1760 n = fwrite(pack_sha1, 1, SHA1_DIGEST_LENGTH, packfile);
1761 if (n != SHA1_DIGEST_LENGTH)
1762 err = got_ferror(packfile, GOT_ERR_IO);
1763 packfile_size += SHA1_DIGEST_LENGTH;
1764 packfile_size += sizeof(struct got_packfile_hdr);
1765 if (progress_cb) {
1766 err = progress_cb(progress_arg, ncolored, nfound, ntrees,
1767 packfile_size, nours, ndeltify + nreuse,
1768 ndeltify + nreuse, ndeltify + nreuse);
1769 if (err)
1770 goto done;
1772 done:
1773 if (outfd != -1 && close(outfd) == -1 && err == NULL)
1774 err = got_error_from_errno("close");
1775 return err;
1778 static const struct got_error *
1779 remove_unused_object(struct got_object_idset_element *entry, void *arg)
1781 struct got_object_idset *idset = arg;
1783 if (got_object_idset_get_element_data(entry) == NULL)
1784 got_object_idset_remove_element(idset, entry);
1786 return NULL;
1789 static const struct got_error *
1790 remove_reused_object(struct got_object_idset_element *entry, void *arg)
1792 struct got_object_idset *idset = arg;
1793 struct got_pack_meta *m;
1795 m = got_object_idset_get_element_data(entry);
1796 if (m->have_reused_delta)
1797 got_object_idset_remove_element(idset, entry);
1799 return NULL;
1802 static const struct got_error *
1803 add_meta_idset_cb(struct got_object_id *id, void *data, void *arg)
1805 struct got_pack_meta *m = data;
1806 struct got_pack_metavec *v = arg;
1808 return add_meta(m, v);
1811 const struct got_error *
1812 got_pack_create(uint8_t *packsha1, FILE *packfile,
1813 struct got_object_id **theirs, int ntheirs,
1814 struct got_object_id **ours, int nours,
1815 struct got_repository *repo, int loose_obj_only, int allow_empty,
1816 got_pack_progress_cb progress_cb, void *progress_arg,
1817 got_cancel_cb cancel_cb, void *cancel_arg)
1819 const struct got_error *err;
1820 int delta_cache_fd = -1;
1821 FILE *delta_cache = NULL;
1822 struct got_object_idset *idset;
1823 struct got_ratelimit rl;
1824 struct got_pack_metavec deltify, reuse;
1825 int ncolored = 0, nfound = 0, ntrees = 0;
1827 memset(&deltify, 0, sizeof(deltify));
1828 memset(&reuse, 0, sizeof(reuse));
1830 got_ratelimit_init(&rl, 0, 500);
1832 idset = got_object_idset_alloc();
1833 if (idset == NULL)
1834 return got_error_from_errno("got_object_idset_alloc");
1836 err = load_object_ids(&ncolored, &nfound, &ntrees, idset, theirs,
1837 ntheirs, ours, nours, repo, loose_obj_only,
1838 progress_cb, progress_arg, &rl, cancel_cb, cancel_arg);
1839 if (err)
1840 return err;
1842 err = got_object_idset_for_each_element(idset,
1843 remove_unused_object, idset);
1844 if (err)
1845 goto done;
1847 if (progress_cb) {
1848 err = progress_cb(progress_arg, ncolored, nfound, ntrees,
1849 0L, nours, got_object_idset_num_elements(idset), 0, 0);
1850 if (err)
1851 goto done;
1854 if (got_object_idset_num_elements(idset) == 0 && !allow_empty) {
1855 err = got_error(GOT_ERR_CANNOT_PACK);
1856 goto done;
1859 delta_cache_fd = got_opentempfd();
1860 if (delta_cache_fd == -1) {
1861 err = got_error_from_errno("got_opentemp");
1862 goto done;
1865 reuse.metasz = 64;
1866 reuse.meta = calloc(reuse.metasz,
1867 sizeof(struct got_pack_meta *));
1868 if (reuse.meta == NULL) {
1869 err = got_error_from_errno("calloc");
1870 goto done;
1873 err = search_deltas(&reuse, idset, delta_cache_fd, ncolored, nfound,
1874 ntrees, nours, repo, progress_cb, progress_arg, &rl,
1875 cancel_cb, cancel_arg);
1876 if (err)
1877 goto done;
1878 if (reuse.nmeta > 0) {
1879 err = got_object_idset_for_each_element(idset,
1880 remove_reused_object, idset);
1881 if (err)
1882 goto done;
1885 delta_cache = fdopen(delta_cache_fd, "a+");
1886 if (delta_cache == NULL) {
1887 err = got_error_from_errno("fdopen");
1888 goto done;
1890 delta_cache_fd = -1;
1892 if (fseeko(delta_cache, 0L, SEEK_END) == -1) {
1893 err = got_error_from_errno("fseeko");
1894 goto done;
1897 deltify.meta = calloc(got_object_idset_num_elements(idset),
1898 sizeof(struct got_pack_meta *));
1899 if (deltify.meta == NULL) {
1900 err = got_error_from_errno("calloc");
1901 goto done;
1903 deltify.metasz = got_object_idset_num_elements(idset);
1905 err = got_object_idset_for_each(idset, add_meta_idset_cb, &deltify);
1906 if (err)
1907 goto done;
1908 if (deltify.nmeta > 0) {
1909 err = pick_deltas(deltify.meta, deltify.nmeta, ncolored,
1910 nfound, ntrees, nours, reuse.nmeta, delta_cache, repo,
1911 progress_cb, progress_arg, &rl, cancel_cb, cancel_arg);
1912 if (err)
1913 goto done;
1914 if (fseeko(delta_cache, 0L, SEEK_SET) == -1) {
1915 err = got_error_from_errno("fseeko");
1916 goto done;
1920 err = genpack(packsha1, packfile, delta_cache, deltify.meta,
1921 deltify.nmeta, reuse.meta, reuse.nmeta, ncolored, nfound, ntrees,
1922 nours, repo, progress_cb, progress_arg, &rl,
1923 cancel_cb, cancel_arg);
1924 if (err)
1925 goto done;
1926 done:
1927 free_nmeta(deltify.meta, deltify.nmeta);
1928 free_nmeta(reuse.meta, reuse.nmeta);
1929 got_object_idset_free(idset);
1930 if (delta_cache_fd != -1 && close(delta_cache_fd) == -1 && err == NULL)
1931 err = got_error_from_errno("close");
1932 if (delta_cache && fclose(delta_cache) == EOF && err == NULL)
1933 err = got_error_from_errno("fclose");
1934 return err;