Blame


1 0a0a3048 2018-01-10 stsp /*
2 5aa81393 2020-01-06 stsp * Copyright (c) 2018, 2019, 2020 Stefan Sperling <stsp@openbsd.org>
3 0a0a3048 2018-01-10 stsp *
4 0a0a3048 2018-01-10 stsp * Permission to use, copy, modify, and distribute this software for any
5 0a0a3048 2018-01-10 stsp * purpose with or without fee is hereby granted, provided that the above
6 0a0a3048 2018-01-10 stsp * copyright notice and this permission notice appear in all copies.
7 0a0a3048 2018-01-10 stsp *
8 0a0a3048 2018-01-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 0a0a3048 2018-01-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 0a0a3048 2018-01-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 0a0a3048 2018-01-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 0a0a3048 2018-01-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 0a0a3048 2018-01-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 0a0a3048 2018-01-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 0a0a3048 2018-01-10 stsp */
16 0a0a3048 2018-01-10 stsp
17 a1fd68d8 2018-01-12 stsp #include <sys/types.h>
18 0a0a3048 2018-01-10 stsp #include <sys/stat.h>
19 a1fd68d8 2018-01-12 stsp #include <sys/queue.h>
20 876c234b 2018-09-10 stsp #include <sys/uio.h>
21 57b35b75 2018-06-22 stsp #include <sys/mman.h>
22 0a0a3048 2018-01-10 stsp
23 7e656b93 2018-03-17 stsp #include <fcntl.h>
24 a1fd68d8 2018-01-12 stsp #include <errno.h>
25 0a0a3048 2018-01-10 stsp #include <stdio.h>
26 a1fd68d8 2018-01-12 stsp #include <stdint.h>
27 0a0a3048 2018-01-10 stsp #include <stdlib.h>
28 0a0a3048 2018-01-10 stsp #include <string.h>
29 0a0a3048 2018-01-10 stsp #include <limits.h>
30 0a0a3048 2018-01-10 stsp #include <sha1.h>
31 0a0a3048 2018-01-10 stsp #include <endian.h>
32 a1fd68d8 2018-01-12 stsp #include <zlib.h>
33 876c234b 2018-09-10 stsp #include <imsg.h>
34 0a0a3048 2018-01-10 stsp
35 0a0a3048 2018-01-10 stsp #include "got_error.h"
36 a1fd68d8 2018-01-12 stsp #include "got_object.h"
37 511a516b 2018-05-19 stsp #include "got_opentemp.h"
38 324d37e7 2019-05-11 stsp #include "got_path.h"
39 0a0a3048 2018-01-10 stsp
40 718b3ab0 2018-03-17 stsp #include "got_lib_sha1.h"
41 718b3ab0 2018-03-17 stsp #include "got_lib_delta.h"
42 ab2f42e7 2019-11-10 stsp #include "got_lib_delta_cache.h"
43 63581804 2018-07-09 stsp #include "got_lib_inflate.h"
44 718b3ab0 2018-03-17 stsp #include "got_lib_object.h"
45 dd88155e 2019-06-29 stsp #include "got_lib_object_parse.h"
46 876c234b 2018-09-10 stsp #include "got_lib_privsep.h"
47 15a94983 2018-12-23 stsp #include "got_lib_pack.h"
48 79b11c62 2018-03-09 stsp
49 79b11c62 2018-03-09 stsp #ifndef nitems
50 79b11c62 2018-03-09 stsp #define nitems(_a) (sizeof(_a) / sizeof((_a)[0]))
51 79b11c62 2018-03-09 stsp #endif
52 1411938b 2018-02-12 stsp
53 a1fd68d8 2018-01-12 stsp #ifndef MIN
54 a1fd68d8 2018-01-12 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
55 a1fd68d8 2018-01-12 stsp #endif
56 a1fd68d8 2018-01-12 stsp
57 0a0a3048 2018-01-10 stsp static const struct got_error *
58 0a0a3048 2018-01-10 stsp verify_fanout_table(uint32_t *fanout_table)
59 0a0a3048 2018-01-10 stsp {
60 0a0a3048 2018-01-10 stsp int i;
61 0a0a3048 2018-01-10 stsp
62 0a0a3048 2018-01-10 stsp for (i = 0; i < 0xff - 1; i++) {
63 a1fd68d8 2018-01-12 stsp if (be32toh(fanout_table[i]) > be32toh(fanout_table[i + 1]))
64 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_BAD_PACKIDX);
65 0a0a3048 2018-01-10 stsp }
66 0a0a3048 2018-01-10 stsp
67 0a0a3048 2018-01-10 stsp return NULL;
68 0a0a3048 2018-01-10 stsp }
69 0a0a3048 2018-01-10 stsp
70 1510f469 2018-09-09 stsp const struct got_error *
71 817c5a18 2018-09-09 stsp got_packidx_init_hdr(struct got_packidx *p, int verify)
72 0a0a3048 2018-01-10 stsp {
73 0a0a3048 2018-01-10 stsp const struct got_error *err = NULL;
74 817c5a18 2018-09-09 stsp struct got_packidx_v2_hdr *h;
75 0ebaf008 2018-01-10 stsp SHA1_CTX ctx;
76 0ebaf008 2018-01-10 stsp uint8_t sha1[SHA1_DIGEST_LENGTH];
77 817c5a18 2018-09-09 stsp size_t nobj, len_fanout, len_ids, offset, remain;
78 817c5a18 2018-09-09 stsp ssize_t n;
79 5e6be232 2019-11-08 stsp int i;
80 0a0a3048 2018-01-10 stsp
81 0ebaf008 2018-01-10 stsp SHA1Init(&ctx);
82 0ebaf008 2018-01-10 stsp
83 57b35b75 2018-06-22 stsp h = &p->hdr;
84 57b35b75 2018-06-22 stsp offset = 0;
85 57b35b75 2018-06-22 stsp remain = p->len;
86 0a0a3048 2018-01-10 stsp
87 57b35b75 2018-06-22 stsp if (remain < sizeof(*h->magic)) {
88 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
89 0a0a3048 2018-01-10 stsp goto done;
90 0a0a3048 2018-01-10 stsp }
91 fc79a48d 2018-07-09 stsp if (p->map)
92 fc79a48d 2018-07-09 stsp h->magic = (uint32_t *)(p->map + offset);
93 fc79a48d 2018-07-09 stsp else {
94 fc79a48d 2018-07-09 stsp h->magic = malloc(sizeof(*h->magic));
95 fc79a48d 2018-07-09 stsp if (h->magic == NULL) {
96 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
97 fc79a48d 2018-07-09 stsp goto done;
98 fc79a48d 2018-07-09 stsp }
99 fc79a48d 2018-07-09 stsp n = read(p->fd, h->magic, sizeof(*h->magic));
100 b1317e77 2019-09-22 stsp if (n < 0) {
101 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
102 b1317e77 2019-09-22 stsp goto done;
103 b1317e77 2019-09-22 stsp } else if (n != sizeof(*h->magic)) {
104 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
105 fc79a48d 2018-07-09 stsp goto done;
106 fc79a48d 2018-07-09 stsp }
107 fc79a48d 2018-07-09 stsp }
108 57b35b75 2018-06-22 stsp if (betoh32(*h->magic) != GOT_PACKIDX_V2_MAGIC) {
109 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
110 57b35b75 2018-06-22 stsp goto done;
111 57b35b75 2018-06-22 stsp }
112 57b35b75 2018-06-22 stsp offset += sizeof(*h->magic);
113 57b35b75 2018-06-22 stsp remain -= sizeof(*h->magic);
114 0a0a3048 2018-01-10 stsp
115 0cb74cf4 2018-07-08 stsp if (verify)
116 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->magic, sizeof(*h->magic));
117 0ebaf008 2018-01-10 stsp
118 57b35b75 2018-06-22 stsp if (remain < sizeof(*h->version)) {
119 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
120 0a0a3048 2018-01-10 stsp goto done;
121 0a0a3048 2018-01-10 stsp }
122 fc79a48d 2018-07-09 stsp if (p->map)
123 fc79a48d 2018-07-09 stsp h->version = (uint32_t *)(p->map + offset);
124 fc79a48d 2018-07-09 stsp else {
125 fc79a48d 2018-07-09 stsp h->version = malloc(sizeof(*h->version));
126 fc79a48d 2018-07-09 stsp if (h->version == NULL) {
127 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
128 fc79a48d 2018-07-09 stsp goto done;
129 fc79a48d 2018-07-09 stsp }
130 fc79a48d 2018-07-09 stsp n = read(p->fd, h->version, sizeof(*h->version));
131 c6368c2e 2019-10-11 stsp if (n < 0) {
132 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
133 c6368c2e 2019-10-11 stsp goto done;
134 c6368c2e 2019-10-11 stsp } else if (n != sizeof(*h->version)) {
135 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
136 fc79a48d 2018-07-09 stsp goto done;
137 fc79a48d 2018-07-09 stsp }
138 fc79a48d 2018-07-09 stsp }
139 57b35b75 2018-06-22 stsp if (betoh32(*h->version) != GOT_PACKIDX_VERSION) {
140 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
141 0a0a3048 2018-01-10 stsp goto done;
142 0a0a3048 2018-01-10 stsp }
143 57b35b75 2018-06-22 stsp offset += sizeof(*h->version);
144 57b35b75 2018-06-22 stsp remain -= sizeof(*h->version);
145 0a0a3048 2018-01-10 stsp
146 0cb74cf4 2018-07-08 stsp if (verify)
147 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->version, sizeof(*h->version));
148 0ebaf008 2018-01-10 stsp
149 57b35b75 2018-06-22 stsp len_fanout =
150 57b35b75 2018-06-22 stsp sizeof(*h->fanout_table) * GOT_PACKIDX_V2_FANOUT_TABLE_ITEMS;
151 57b35b75 2018-06-22 stsp if (remain < len_fanout) {
152 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
153 0a0a3048 2018-01-10 stsp goto done;
154 0a0a3048 2018-01-10 stsp }
155 fc79a48d 2018-07-09 stsp if (p->map)
156 fc79a48d 2018-07-09 stsp h->fanout_table = (uint32_t *)(p->map + offset);
157 fc79a48d 2018-07-09 stsp else {
158 fc79a48d 2018-07-09 stsp h->fanout_table = malloc(len_fanout);
159 fc79a48d 2018-07-09 stsp if (h->fanout_table == NULL) {
160 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
161 fc79a48d 2018-07-09 stsp goto done;
162 fc79a48d 2018-07-09 stsp }
163 fc79a48d 2018-07-09 stsp n = read(p->fd, h->fanout_table, len_fanout);
164 c6368c2e 2019-10-11 stsp if (n < 0) {
165 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
166 c6368c2e 2019-10-11 stsp goto done;
167 c6368c2e 2019-10-11 stsp } else if (n != len_fanout) {
168 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
169 fc79a48d 2018-07-09 stsp goto done;
170 fc79a48d 2018-07-09 stsp }
171 fc79a48d 2018-07-09 stsp }
172 c8262310 2018-06-04 stsp err = verify_fanout_table(h->fanout_table);
173 0a0a3048 2018-01-10 stsp if (err)
174 0a0a3048 2018-01-10 stsp goto done;
175 0cb74cf4 2018-07-08 stsp if (verify)
176 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->fanout_table, len_fanout);
177 57b35b75 2018-06-22 stsp offset += len_fanout;
178 57b35b75 2018-06-22 stsp remain -= len_fanout;
179 0a0a3048 2018-01-10 stsp
180 c8262310 2018-06-04 stsp nobj = betoh32(h->fanout_table[0xff]);
181 57b35b75 2018-06-22 stsp len_ids = nobj * sizeof(*h->sorted_ids);
182 57b35b75 2018-06-22 stsp if (len_ids <= nobj || len_ids > remain) {
183 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
184 0a0a3048 2018-01-10 stsp goto done;
185 0a0a3048 2018-01-10 stsp }
186 fc79a48d 2018-07-09 stsp if (p->map)
187 fc79a48d 2018-07-09 stsp h->sorted_ids =
188 fc79a48d 2018-07-09 stsp (struct got_packidx_object_id *)((uint8_t*)(p->map + offset));
189 fc79a48d 2018-07-09 stsp else {
190 fc79a48d 2018-07-09 stsp h->sorted_ids = malloc(len_ids);
191 fc79a48d 2018-07-09 stsp if (h->sorted_ids == NULL) {
192 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
193 fc79a48d 2018-07-09 stsp goto done;
194 fc79a48d 2018-07-09 stsp }
195 fc79a48d 2018-07-09 stsp n = read(p->fd, h->sorted_ids, len_ids);
196 faaa1c0f 2018-09-15 stsp if (n < 0)
197 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
198 faaa1c0f 2018-09-15 stsp else if (n != len_ids) {
199 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
200 fc79a48d 2018-07-09 stsp goto done;
201 fc79a48d 2018-07-09 stsp }
202 fc79a48d 2018-07-09 stsp }
203 0cb74cf4 2018-07-08 stsp if (verify)
204 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->sorted_ids, len_ids);
205 57b35b75 2018-06-22 stsp offset += len_ids;
206 57b35b75 2018-06-22 stsp remain -= len_ids;
207 0a0a3048 2018-01-10 stsp
208 57b35b75 2018-06-22 stsp if (remain < nobj * sizeof(*h->crc32)) {
209 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
210 0a0a3048 2018-01-10 stsp goto done;
211 0a0a3048 2018-01-10 stsp }
212 fc79a48d 2018-07-09 stsp if (p->map)
213 fc79a48d 2018-07-09 stsp h->crc32 = (uint32_t *)((uint8_t*)(p->map + offset));
214 fc79a48d 2018-07-09 stsp else {
215 fc79a48d 2018-07-09 stsp h->crc32 = malloc(nobj * sizeof(*h->crc32));
216 fc79a48d 2018-07-09 stsp if (h->crc32 == NULL) {
217 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
218 fc79a48d 2018-07-09 stsp goto done;
219 fc79a48d 2018-07-09 stsp }
220 fc79a48d 2018-07-09 stsp n = read(p->fd, h->crc32, nobj * sizeof(*h->crc32));
221 faaa1c0f 2018-09-15 stsp if (n < 0)
222 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
223 faaa1c0f 2018-09-15 stsp else if (n != nobj * sizeof(*h->crc32)) {
224 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
225 fc79a48d 2018-07-09 stsp goto done;
226 fc79a48d 2018-07-09 stsp }
227 fc79a48d 2018-07-09 stsp }
228 0cb74cf4 2018-07-08 stsp if (verify)
229 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->crc32, nobj * sizeof(*h->crc32));
230 57b35b75 2018-06-22 stsp remain -= nobj * sizeof(*h->crc32);
231 57b35b75 2018-06-22 stsp offset += nobj * sizeof(*h->crc32);
232 0ebaf008 2018-01-10 stsp
233 57b35b75 2018-06-22 stsp if (remain < nobj * sizeof(*h->offsets)) {
234 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
235 0a0a3048 2018-01-10 stsp goto done;
236 0a0a3048 2018-01-10 stsp }
237 fc79a48d 2018-07-09 stsp if (p->map)
238 fc79a48d 2018-07-09 stsp h->offsets = (uint32_t *)((uint8_t*)(p->map + offset));
239 fc79a48d 2018-07-09 stsp else {
240 fc79a48d 2018-07-09 stsp h->offsets = malloc(nobj * sizeof(*h->offsets));
241 fc79a48d 2018-07-09 stsp if (h->offsets == NULL) {
242 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
243 fc79a48d 2018-07-09 stsp goto done;
244 fc79a48d 2018-07-09 stsp }
245 fc79a48d 2018-07-09 stsp n = read(p->fd, h->offsets, nobj * sizeof(*h->offsets));
246 faaa1c0f 2018-09-15 stsp if (n < 0)
247 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
248 faaa1c0f 2018-09-15 stsp else if (n != nobj * sizeof(*h->offsets)) {
249 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
250 fc79a48d 2018-07-09 stsp goto done;
251 fc79a48d 2018-07-09 stsp }
252 fc79a48d 2018-07-09 stsp }
253 0cb74cf4 2018-07-08 stsp if (verify)
254 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t *)h->offsets,
255 0cb74cf4 2018-07-08 stsp nobj * sizeof(*h->offsets));
256 57b35b75 2018-06-22 stsp remain -= nobj * sizeof(*h->offsets);
257 57b35b75 2018-06-22 stsp offset += nobj * sizeof(*h->offsets);
258 0ebaf008 2018-01-10 stsp
259 0a0a3048 2018-01-10 stsp /* Large file offsets are contained only in files > 2GB. */
260 5e6be232 2019-11-08 stsp for (i = 0; i < nobj; i++) {
261 5e6be232 2019-11-08 stsp uint32_t o = betoh32(h->offsets[i]);
262 5e6be232 2019-11-08 stsp if (o & GOT_PACKIDX_OFFSET_VAL_IS_LARGE_IDX)
263 5e6be232 2019-11-08 stsp p->nlargeobj++;
264 5e6be232 2019-11-08 stsp }
265 5e6be232 2019-11-08 stsp if (p->nlargeobj == 0)
266 0a0a3048 2018-01-10 stsp goto checksum;
267 0a0a3048 2018-01-10 stsp
268 5e6be232 2019-11-08 stsp if (remain < p->nlargeobj * sizeof(*h->large_offsets)) {
269 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
270 0a0a3048 2018-01-10 stsp goto done;
271 0a0a3048 2018-01-10 stsp }
272 fc79a48d 2018-07-09 stsp if (p->map)
273 fc79a48d 2018-07-09 stsp h->large_offsets = (uint64_t *)((uint8_t*)(p->map + offset));
274 fc79a48d 2018-07-09 stsp else {
275 5e6be232 2019-11-08 stsp h->large_offsets = malloc(p->nlargeobj *
276 5e6be232 2019-11-08 stsp sizeof(*h->large_offsets));
277 de30857e 2019-08-23 stsp if (h->large_offsets == NULL) {
278 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
279 fc79a48d 2018-07-09 stsp goto done;
280 fc79a48d 2018-07-09 stsp }
281 fc79a48d 2018-07-09 stsp n = read(p->fd, h->large_offsets,
282 5e6be232 2019-11-08 stsp p->nlargeobj * sizeof(*h->large_offsets));
283 faaa1c0f 2018-09-15 stsp if (n < 0)
284 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
285 5e6be232 2019-11-08 stsp else if (n != p->nlargeobj * sizeof(*h->large_offsets)) {
286 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
287 fc79a48d 2018-07-09 stsp goto done;
288 fc79a48d 2018-07-09 stsp }
289 fc79a48d 2018-07-09 stsp }
290 0cb74cf4 2018-07-08 stsp if (verify)
291 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, (uint8_t*)h->large_offsets,
292 5e6be232 2019-11-08 stsp p->nlargeobj * sizeof(*h->large_offsets));
293 5e6be232 2019-11-08 stsp remain -= p->nlargeobj * sizeof(*h->large_offsets);
294 5e6be232 2019-11-08 stsp offset += p->nlargeobj * sizeof(*h->large_offsets);
295 0ebaf008 2018-01-10 stsp
296 0a0a3048 2018-01-10 stsp checksum:
297 57b35b75 2018-06-22 stsp if (remain < sizeof(*h->trailer)) {
298 57b35b75 2018-06-22 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
299 0a0a3048 2018-01-10 stsp goto done;
300 0a0a3048 2018-01-10 stsp }
301 fc79a48d 2018-07-09 stsp if (p->map)
302 fc79a48d 2018-07-09 stsp h->trailer =
303 fc79a48d 2018-07-09 stsp (struct got_packidx_trailer *)((uint8_t*)(p->map + offset));
304 fc79a48d 2018-07-09 stsp else {
305 fc79a48d 2018-07-09 stsp h->trailer = malloc(sizeof(*h->trailer));
306 fc79a48d 2018-07-09 stsp if (h->trailer == NULL) {
307 638f9024 2019-05-13 stsp err = got_error_from_errno("malloc");
308 fc79a48d 2018-07-09 stsp goto done;
309 fc79a48d 2018-07-09 stsp }
310 fc79a48d 2018-07-09 stsp n = read(p->fd, h->trailer, sizeof(*h->trailer));
311 faaa1c0f 2018-09-15 stsp if (n < 0)
312 638f9024 2019-05-13 stsp err = got_error_from_errno("read");
313 faaa1c0f 2018-09-15 stsp else if (n != sizeof(*h->trailer)) {
314 fc79a48d 2018-07-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
315 fc79a48d 2018-07-09 stsp goto done;
316 fc79a48d 2018-07-09 stsp }
317 fc79a48d 2018-07-09 stsp }
318 0cb74cf4 2018-07-08 stsp if (verify) {
319 0cb74cf4 2018-07-08 stsp SHA1Update(&ctx, h->trailer->packfile_sha1, SHA1_DIGEST_LENGTH);
320 0cb74cf4 2018-07-08 stsp SHA1Final(sha1, &ctx);
321 0cb74cf4 2018-07-08 stsp if (memcmp(h->trailer->packidx_sha1, sha1,
322 0cb74cf4 2018-07-08 stsp SHA1_DIGEST_LENGTH) != 0)
323 0cb74cf4 2018-07-08 stsp err = got_error(GOT_ERR_PACKIDX_CSUM);
324 0cb74cf4 2018-07-08 stsp }
325 0a0a3048 2018-01-10 stsp done:
326 817c5a18 2018-09-09 stsp return err;
327 817c5a18 2018-09-09 stsp }
328 817c5a18 2018-09-09 stsp
329 817c5a18 2018-09-09 stsp const struct got_error *
330 817c5a18 2018-09-09 stsp got_packidx_open(struct got_packidx **packidx, const char *path, int verify)
331 817c5a18 2018-09-09 stsp {
332 817c5a18 2018-09-09 stsp const struct got_error *err = NULL;
333 817c5a18 2018-09-09 stsp struct got_packidx *p;
334 57377f07 2019-05-23 stsp struct stat sb;
335 817c5a18 2018-09-09 stsp
336 817c5a18 2018-09-09 stsp *packidx = NULL;
337 817c5a18 2018-09-09 stsp
338 817c5a18 2018-09-09 stsp p = calloc(1, sizeof(*p));
339 817c5a18 2018-09-09 stsp if (p == NULL)
340 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
341 817c5a18 2018-09-09 stsp
342 a5b57ccf 2019-04-11 stsp p->fd = open(path, O_RDONLY | O_NOFOLLOW);
343 6772cf22 2019-08-28 hiltjo if (p->fd == -1) {
344 6772cf22 2019-08-28 hiltjo err = got_error_from_errno2("open", path);
345 6772cf22 2019-08-28 hiltjo free(p);
346 6772cf22 2019-08-28 hiltjo return err;
347 6772cf22 2019-08-28 hiltjo }
348 817c5a18 2018-09-09 stsp
349 57377f07 2019-05-23 stsp if (fstat(p->fd, &sb) != 0) {
350 57377f07 2019-05-23 stsp err = got_error_from_errno2("fstat", path);
351 817c5a18 2018-09-09 stsp close(p->fd);
352 817c5a18 2018-09-09 stsp free(p);
353 817c5a18 2018-09-09 stsp return err;
354 817c5a18 2018-09-09 stsp }
355 57377f07 2019-05-23 stsp p->len = sb.st_size;
356 817c5a18 2018-09-09 stsp if (p->len < sizeof(p->hdr)) {
357 817c5a18 2018-09-09 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
358 817c5a18 2018-09-09 stsp close(p->fd);
359 817c5a18 2018-09-09 stsp free(p);
360 817c5a18 2018-09-09 stsp return err;
361 817c5a18 2018-09-09 stsp }
362 817c5a18 2018-09-09 stsp
363 817c5a18 2018-09-09 stsp p->path_packidx = strdup(path);
364 817c5a18 2018-09-09 stsp if (p->path_packidx == NULL) {
365 638f9024 2019-05-13 stsp err = got_error_from_errno("strdup");
366 817c5a18 2018-09-09 stsp goto done;
367 817c5a18 2018-09-09 stsp }
368 817c5a18 2018-09-09 stsp
369 817c5a18 2018-09-09 stsp #ifndef GOT_PACK_NO_MMAP
370 817c5a18 2018-09-09 stsp p->map = mmap(NULL, p->len, PROT_READ, MAP_PRIVATE, p->fd, 0);
371 3a11398b 2019-02-21 stsp if (p->map == MAP_FAILED) {
372 3a11398b 2019-02-21 stsp if (errno != ENOMEM) {
373 638f9024 2019-05-13 stsp err = got_error_from_errno("mmap");
374 3a11398b 2019-02-21 stsp goto done;
375 3a11398b 2019-02-21 stsp }
376 817c5a18 2018-09-09 stsp p->map = NULL; /* fall back to read(2) */
377 3a11398b 2019-02-21 stsp }
378 817c5a18 2018-09-09 stsp #endif
379 817c5a18 2018-09-09 stsp
380 817c5a18 2018-09-09 stsp err = got_packidx_init_hdr(p, verify);
381 817c5a18 2018-09-09 stsp done:
382 0a0a3048 2018-01-10 stsp if (err)
383 0a0a3048 2018-01-10 stsp got_packidx_close(p);
384 0a0a3048 2018-01-10 stsp else
385 0a0a3048 2018-01-10 stsp *packidx = p;
386 817c5a18 2018-09-09 stsp
387 0a0a3048 2018-01-10 stsp return err;
388 0a0a3048 2018-01-10 stsp }
389 0a0a3048 2018-01-10 stsp
390 57b35b75 2018-06-22 stsp const struct got_error *
391 6fd11751 2018-06-04 stsp got_packidx_close(struct got_packidx *packidx)
392 0a0a3048 2018-01-10 stsp {
393 57b35b75 2018-06-22 stsp const struct got_error *err = NULL;
394 57b35b75 2018-06-22 stsp
395 6fd11751 2018-06-04 stsp free(packidx->path_packidx);
396 fc79a48d 2018-07-09 stsp if (packidx->map) {
397 57b35b75 2018-06-22 stsp if (munmap(packidx->map, packidx->len) == -1)
398 638f9024 2019-05-13 stsp err = got_error_from_errno("munmap");
399 fc79a48d 2018-07-09 stsp } else {
400 fc79a48d 2018-07-09 stsp free(packidx->hdr.magic);
401 fc79a48d 2018-07-09 stsp free(packidx->hdr.version);
402 fc79a48d 2018-07-09 stsp free(packidx->hdr.fanout_table);
403 fc79a48d 2018-07-09 stsp free(packidx->hdr.sorted_ids);
404 fc79a48d 2018-07-09 stsp free(packidx->hdr.crc32);
405 fc79a48d 2018-07-09 stsp free(packidx->hdr.offsets);
406 fc79a48d 2018-07-09 stsp free(packidx->hdr.large_offsets);
407 fc79a48d 2018-07-09 stsp free(packidx->hdr.trailer);
408 57b35b75 2018-06-22 stsp }
409 3a6ce05a 2019-02-11 stsp if (close(packidx->fd) != 0 && err == NULL)
410 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
411 0a0a3048 2018-01-10 stsp free(packidx);
412 57b35b75 2018-06-22 stsp
413 57b35b75 2018-06-22 stsp return err;
414 a1fd68d8 2018-01-12 stsp }
415 a1fd68d8 2018-01-12 stsp
416 a1fd68d8 2018-01-12 stsp static off_t
417 6fd11751 2018-06-04 stsp get_object_offset(struct got_packidx *packidx, int idx)
418 a1fd68d8 2018-01-12 stsp {
419 6fd11751 2018-06-04 stsp uint32_t offset = betoh32(packidx->hdr.offsets[idx]);
420 a1fd68d8 2018-01-12 stsp if (offset & GOT_PACKIDX_OFFSET_VAL_IS_LARGE_IDX) {
421 a1fd68d8 2018-01-12 stsp uint64_t loffset;
422 a1fd68d8 2018-01-12 stsp idx = offset & GOT_PACKIDX_OFFSET_VAL_MASK;
423 5e6be232 2019-11-08 stsp if (idx < 0 || idx >= packidx->nlargeobj ||
424 6fd11751 2018-06-04 stsp packidx->hdr.large_offsets == NULL)
425 a1fd68d8 2018-01-12 stsp return -1;
426 6fd11751 2018-06-04 stsp loffset = betoh64(packidx->hdr.large_offsets[idx]);
427 a1fd68d8 2018-01-12 stsp return (loffset > INT64_MAX ? -1 : (off_t)loffset);
428 a1fd68d8 2018-01-12 stsp }
429 a1fd68d8 2018-01-12 stsp return (off_t)(offset & GOT_PACKIDX_OFFSET_VAL_MASK);
430 a1fd68d8 2018-01-12 stsp }
431 a1fd68d8 2018-01-12 stsp
432 1510f469 2018-09-09 stsp int
433 ca6e02ac 2020-01-07 stsp got_packidx_get_object_idx_sha1(struct got_packidx *packidx, uint8_t *sha1)
434 a1fd68d8 2018-01-12 stsp {
435 ca6e02ac 2020-01-07 stsp u_int8_t id0 = sha1[0];
436 6fd11751 2018-06-04 stsp uint32_t totobj = betoh32(packidx->hdr.fanout_table[0xff]);
437 40aeb19c 2018-06-22 stsp int left = 0, right = totobj - 1;
438 a1fd68d8 2018-01-12 stsp
439 a1fd68d8 2018-01-12 stsp if (id0 > 0)
440 40aeb19c 2018-06-22 stsp left = betoh32(packidx->hdr.fanout_table[id0 - 1]);
441 a1fd68d8 2018-01-12 stsp
442 40aeb19c 2018-06-22 stsp while (left <= right) {
443 57b35b75 2018-06-22 stsp struct got_packidx_object_id *oid;
444 40aeb19c 2018-06-22 stsp int i, cmp;
445 a1fd68d8 2018-01-12 stsp
446 40aeb19c 2018-06-22 stsp i = ((left + right) / 2);
447 40aeb19c 2018-06-22 stsp oid = &packidx->hdr.sorted_ids[i];
448 ca6e02ac 2020-01-07 stsp cmp = memcmp(sha1, oid->sha1, SHA1_DIGEST_LENGTH);
449 16dcbf91 2018-04-01 stsp if (cmp == 0)
450 6c00b545 2018-01-17 stsp return i;
451 40aeb19c 2018-06-22 stsp else if (cmp > 0)
452 40aeb19c 2018-06-22 stsp left = i + 1;
453 40aeb19c 2018-06-22 stsp else if (cmp < 0)
454 40aeb19c 2018-06-22 stsp right = i - 1;
455 a1fd68d8 2018-01-12 stsp }
456 a1fd68d8 2018-01-12 stsp
457 a1fd68d8 2018-01-12 stsp return -1;
458 ca6e02ac 2020-01-07 stsp }
459 ca6e02ac 2020-01-07 stsp
460 ca6e02ac 2020-01-07 stsp int
461 ca6e02ac 2020-01-07 stsp got_packidx_get_object_idx(struct got_packidx *packidx, struct got_object_id *id)
462 ca6e02ac 2020-01-07 stsp {
463 ca6e02ac 2020-01-07 stsp return got_packidx_get_object_idx_sha1(packidx, id->sha1);
464 876c234b 2018-09-10 stsp }
465 876c234b 2018-09-10 stsp
466 876c234b 2018-09-10 stsp const struct got_error *
467 dd88155e 2019-06-29 stsp got_packidx_match_id_str_prefix(struct got_object_id_queue *matched_ids,
468 4277420a 2019-06-29 stsp struct got_packidx *packidx, const char *id_str_prefix)
469 e09a504c 2019-06-28 stsp {
470 dd88155e 2019-06-29 stsp const struct got_error *err = NULL;
471 4277420a 2019-06-29 stsp u_int8_t id0;
472 4277420a 2019-06-29 stsp uint32_t totobj = betoh32(packidx->hdr.fanout_table[0xff]);
473 4277420a 2019-06-29 stsp char hex[3];
474 4277420a 2019-06-29 stsp size_t prefix_len = strlen(id_str_prefix);
475 e09a504c 2019-06-28 stsp struct got_packidx_object_id *oid;
476 e09a504c 2019-06-28 stsp int i;
477 e09a504c 2019-06-28 stsp
478 dd88155e 2019-06-29 stsp SIMPLEQ_INIT(matched_ids);
479 4277420a 2019-06-29 stsp
480 4277420a 2019-06-29 stsp if (prefix_len < 2)
481 6dd1ece6 2019-11-10 stsp return got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
482 4277420a 2019-06-29 stsp
483 4277420a 2019-06-29 stsp hex[0] = id_str_prefix[0];
484 4277420a 2019-06-29 stsp hex[1] = id_str_prefix[1];
485 4277420a 2019-06-29 stsp hex[2] = '\0';
486 4277420a 2019-06-29 stsp if (!got_parse_xdigit(&id0, hex))
487 6dd1ece6 2019-11-10 stsp return got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
488 4277420a 2019-06-29 stsp
489 4277420a 2019-06-29 stsp i = betoh32(packidx->hdr.fanout_table[id0 - 1]);
490 4277420a 2019-06-29 stsp if (i == 0)
491 4277420a 2019-06-29 stsp return NULL;
492 4277420a 2019-06-29 stsp
493 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[i];
494 4277420a 2019-06-29 stsp while (i < totobj && oid->sha1[0] == id0) {
495 4277420a 2019-06-29 stsp char id_str[SHA1_DIGEST_STRING_LENGTH];
496 dd88155e 2019-06-29 stsp struct got_object_qid *qid;
497 4277420a 2019-06-29 stsp int cmp;
498 4277420a 2019-06-29 stsp
499 4277420a 2019-06-29 stsp if (!got_sha1_digest_to_str(oid->sha1, id_str, sizeof(id_str)))
500 4277420a 2019-06-29 stsp return got_error(GOT_ERR_NO_SPACE);
501 4277420a 2019-06-29 stsp
502 4277420a 2019-06-29 stsp cmp = strncmp(id_str, id_str_prefix, prefix_len);
503 4277420a 2019-06-29 stsp if (cmp < 0) {
504 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[++i];
505 4277420a 2019-06-29 stsp continue;
506 4277420a 2019-06-29 stsp } else if (cmp > 0)
507 e09a504c 2019-06-28 stsp break;
508 4277420a 2019-06-29 stsp
509 dd88155e 2019-06-29 stsp err = got_object_qid_alloc_partial(&qid);
510 dd88155e 2019-06-29 stsp if (err)
511 dd88155e 2019-06-29 stsp break;
512 dd88155e 2019-06-29 stsp memcpy(qid->id->sha1, oid->sha1, SHA1_DIGEST_LENGTH);
513 dd88155e 2019-06-29 stsp SIMPLEQ_INSERT_TAIL(matched_ids, qid, entry);
514 4277420a 2019-06-29 stsp
515 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[++i];
516 e09a504c 2019-06-28 stsp }
517 e09a504c 2019-06-28 stsp
518 0adc7bcc 2019-06-29 stsp if (err)
519 0adc7bcc 2019-06-29 stsp got_object_id_queue_free(matched_ids);
520 dd88155e 2019-06-29 stsp return err;
521 e09a504c 2019-06-28 stsp }
522 e09a504c 2019-06-28 stsp
523 e09a504c 2019-06-28 stsp const struct got_error *
524 876c234b 2018-09-10 stsp got_pack_stop_privsep_child(struct got_pack *pack)
525 876c234b 2018-09-10 stsp {
526 96732e0b 2018-11-11 stsp const struct got_error *err = NULL;
527 876c234b 2018-09-10 stsp
528 876c234b 2018-09-10 stsp if (pack->privsep_child == NULL)
529 876c234b 2018-09-10 stsp return NULL;
530 876c234b 2018-09-10 stsp
531 876c234b 2018-09-10 stsp err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
532 96732e0b 2018-11-11 stsp if (err)
533 96732e0b 2018-11-11 stsp return err;
534 96732e0b 2018-11-11 stsp err = got_privsep_wait_for_child(pack->privsep_child->pid);
535 0dd5271b 2019-05-10 stsp if (close(pack->privsep_child->imsg_fd) != 0 && err == NULL)
536 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
537 876c234b 2018-09-10 stsp free(pack->privsep_child);
538 876c234b 2018-09-10 stsp pack->privsep_child = NULL;
539 876c234b 2018-09-10 stsp return err;
540 7e656b93 2018-03-17 stsp }
541 7e656b93 2018-03-17 stsp
542 d7464085 2018-07-09 stsp const struct got_error *
543 7e656b93 2018-03-17 stsp got_pack_close(struct got_pack *pack)
544 7e656b93 2018-03-17 stsp {
545 d7464085 2018-07-09 stsp const struct got_error *err = NULL;
546 d7464085 2018-07-09 stsp
547 876c234b 2018-09-10 stsp err = got_pack_stop_privsep_child(pack);
548 876c234b 2018-09-10 stsp if (pack->map && munmap(pack->map, pack->filesize) == -1 && !err)
549 638f9024 2019-05-13 stsp err = got_error_from_errno("munmap");
550 3a6ce05a 2019-02-11 stsp if (pack->fd != -1 && close(pack->fd) != 0 && err == NULL)
551 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
552 8b2180d4 2018-04-26 stsp pack->fd = -1;
553 4589e373 2018-03-17 stsp free(pack->path_packfile);
554 4589e373 2018-03-17 stsp pack->path_packfile = NULL;
555 4589e373 2018-03-17 stsp pack->filesize = 0;
556 ab2f42e7 2019-11-10 stsp if (pack->delta_cache) {
557 ab2f42e7 2019-11-10 stsp got_delta_cache_free(pack->delta_cache);
558 ab2f42e7 2019-11-10 stsp pack->delta_cache = NULL;
559 ab2f42e7 2019-11-10 stsp }
560 7e656b93 2018-03-17 stsp
561 c7fe698a 2018-01-23 stsp return err;
562 c7fe698a 2018-01-23 stsp }
563 c7fe698a 2018-01-23 stsp
564 c7fe698a 2018-01-23 stsp static const struct got_error *
565 d7464085 2018-07-09 stsp parse_object_type_and_size(uint8_t *type, uint64_t *size, size_t *len,
566 d7464085 2018-07-09 stsp struct got_pack *pack, off_t offset)
567 a487c1d0 2018-01-14 stsp {
568 a487c1d0 2018-01-14 stsp uint8_t t = 0;
569 a487c1d0 2018-01-14 stsp uint64_t s = 0;
570 a487c1d0 2018-01-14 stsp uint8_t sizeN;
571 d7464085 2018-07-09 stsp size_t mapoff = 0;
572 a487c1d0 2018-01-14 stsp int i = 0;
573 d7464085 2018-07-09 stsp
574 d7464085 2018-07-09 stsp *len = 0;
575 d7464085 2018-07-09 stsp
576 d7464085 2018-07-09 stsp if (offset >= pack->filesize)
577 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
578 d7464085 2018-07-09 stsp
579 d7464085 2018-07-09 stsp if (pack->map) {
580 d7464085 2018-07-09 stsp mapoff = (size_t)offset;
581 d7464085 2018-07-09 stsp } else {
582 d7464085 2018-07-09 stsp if (lseek(pack->fd, offset, SEEK_SET) == -1)
583 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
584 d7464085 2018-07-09 stsp }
585 a487c1d0 2018-01-14 stsp
586 a1fd68d8 2018-01-12 stsp do {
587 a1fd68d8 2018-01-12 stsp /* We do not support size values which don't fit in 64 bit. */
588 a487c1d0 2018-01-14 stsp if (i > 9)
589 a487c1d0 2018-01-14 stsp return got_error(GOT_ERR_NO_SPACE);
590 a1fd68d8 2018-01-12 stsp
591 d7464085 2018-07-09 stsp if (pack->map) {
592 d7464085 2018-07-09 stsp sizeN = *(pack->map + mapoff);
593 d7464085 2018-07-09 stsp mapoff += sizeof(sizeN);
594 d7464085 2018-07-09 stsp } else {
595 d7464085 2018-07-09 stsp ssize_t n = read(pack->fd, &sizeN, sizeof(sizeN));
596 d7464085 2018-07-09 stsp if (n < 0)
597 638f9024 2019-05-13 stsp return got_error_from_errno("read");
598 d7464085 2018-07-09 stsp if (n != sizeof(sizeN))
599 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
600 d7464085 2018-07-09 stsp }
601 d7464085 2018-07-09 stsp *len += sizeof(sizeN);
602 8251fdbc 2018-01-12 stsp
603 a1fd68d8 2018-01-12 stsp if (i == 0) {
604 a487c1d0 2018-01-14 stsp t = (sizeN & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
605 a1fd68d8 2018-01-12 stsp GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
606 a487c1d0 2018-01-14 stsp s = (sizeN & GOT_PACK_OBJ_SIZE0_VAL_MASK);
607 a1fd68d8 2018-01-12 stsp } else {
608 a1fd68d8 2018-01-12 stsp size_t shift = 4 + 7 * (i - 1);
609 a487c1d0 2018-01-14 stsp s |= ((sizeN & GOT_PACK_OBJ_SIZE_VAL_MASK) << shift);
610 a1fd68d8 2018-01-12 stsp }
611 a1fd68d8 2018-01-12 stsp i++;
612 a1fd68d8 2018-01-12 stsp } while (sizeN & GOT_PACK_OBJ_SIZE_MORE);
613 a1fd68d8 2018-01-12 stsp
614 a487c1d0 2018-01-14 stsp *type = t;
615 a487c1d0 2018-01-14 stsp *size = s;
616 a487c1d0 2018-01-14 stsp return NULL;
617 0a0a3048 2018-01-10 stsp }
618 c54542a0 2018-01-13 stsp
619 a1fd68d8 2018-01-12 stsp static const struct got_error *
620 5f25cc85 2019-11-26 stsp open_plain_object(struct got_object **obj, struct got_object_id *id,
621 5f25cc85 2019-11-26 stsp uint8_t type, off_t offset, size_t size, int idx)
622 6ccb713b 2018-01-19 stsp {
623 6ccb713b 2018-01-19 stsp *obj = calloc(1, sizeof(**obj));
624 6ccb713b 2018-01-19 stsp if (*obj == NULL)
625 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
626 6ccb713b 2018-01-19 stsp
627 6ccb713b 2018-01-19 stsp (*obj)->type = type;
628 6ccb713b 2018-01-19 stsp (*obj)->flags = GOT_OBJ_FLAG_PACKED;
629 c59b3346 2018-09-11 stsp (*obj)->pack_idx = idx;
630 6ccb713b 2018-01-19 stsp (*obj)->hdrlen = 0;
631 6ccb713b 2018-01-19 stsp (*obj)->size = size;
632 106807b4 2018-09-15 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
633 6ccb713b 2018-01-19 stsp (*obj)->pack_offset = offset;
634 b107e67f 2018-01-19 stsp
635 b107e67f 2018-01-19 stsp return NULL;
636 b107e67f 2018-01-19 stsp }
637 b107e67f 2018-01-19 stsp
638 b107e67f 2018-01-19 stsp static const struct got_error *
639 d7464085 2018-07-09 stsp parse_negative_offset(int64_t *offset, size_t *len, struct got_pack *pack,
640 d7464085 2018-07-09 stsp off_t delta_offset)
641 b107e67f 2018-01-19 stsp {
642 b107e67f 2018-01-19 stsp int64_t o = 0;
643 b107e67f 2018-01-19 stsp uint8_t offN;
644 b107e67f 2018-01-19 stsp int i = 0;
645 b107e67f 2018-01-19 stsp
646 a0de39f3 2019-08-09 stsp *offset = 0;
647 d7464085 2018-07-09 stsp *len = 0;
648 d7464085 2018-07-09 stsp
649 b107e67f 2018-01-19 stsp do {
650 b107e67f 2018-01-19 stsp /* We do not support offset values which don't fit in 64 bit. */
651 b107e67f 2018-01-19 stsp if (i > 8)
652 b107e67f 2018-01-19 stsp return got_error(GOT_ERR_NO_SPACE);
653 b107e67f 2018-01-19 stsp
654 d7464085 2018-07-09 stsp if (pack->map) {
655 d7464085 2018-07-09 stsp size_t mapoff;
656 d7464085 2018-07-09 stsp if (delta_offset >= pack->filesize)
657 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
658 d7464085 2018-07-09 stsp mapoff = (size_t)delta_offset + *len;
659 d7464085 2018-07-09 stsp offN = *(pack->map + mapoff);
660 d7464085 2018-07-09 stsp } else {
661 d7464085 2018-07-09 stsp ssize_t n;
662 d7464085 2018-07-09 stsp n = read(pack->fd, &offN, sizeof(offN));
663 d7464085 2018-07-09 stsp if (n < 0)
664 638f9024 2019-05-13 stsp return got_error_from_errno("read");
665 d7464085 2018-07-09 stsp if (n != sizeof(offN))
666 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
667 d7464085 2018-07-09 stsp }
668 d7464085 2018-07-09 stsp *len += sizeof(offN);
669 b107e67f 2018-01-19 stsp
670 b107e67f 2018-01-19 stsp if (i == 0)
671 b107e67f 2018-01-19 stsp o = (offN & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
672 b107e67f 2018-01-19 stsp else {
673 cecc778e 2018-01-23 stsp o++;
674 b107e67f 2018-01-19 stsp o <<= 7;
675 cecc778e 2018-01-23 stsp o += (offN & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
676 b107e67f 2018-01-19 stsp }
677 b107e67f 2018-01-19 stsp i++;
678 b107e67f 2018-01-19 stsp } while (offN & GOT_PACK_OBJ_DELTA_OFF_MORE);
679 6ccb713b 2018-01-19 stsp
680 b107e67f 2018-01-19 stsp *offset = o;
681 6ccb713b 2018-01-19 stsp return NULL;
682 6ccb713b 2018-01-19 stsp }
683 6ccb713b 2018-01-19 stsp
684 6ccb713b 2018-01-19 stsp static const struct got_error *
685 d7464085 2018-07-09 stsp parse_offset_delta(off_t *base_offset, size_t *len, struct got_pack *pack,
686 d7464085 2018-07-09 stsp off_t offset, int tslen)
687 b107e67f 2018-01-19 stsp {
688 96f5e8b3 2018-01-23 stsp const struct got_error *err;
689 b107e67f 2018-01-19 stsp int64_t negoffset;
690 b107e67f 2018-01-19 stsp size_t negofflen;
691 b107e67f 2018-01-19 stsp
692 d7464085 2018-07-09 stsp *len = 0;
693 d7464085 2018-07-09 stsp
694 d7464085 2018-07-09 stsp err = parse_negative_offset(&negoffset, &negofflen, pack,
695 d7464085 2018-07-09 stsp offset + tslen);
696 b107e67f 2018-01-19 stsp if (err)
697 b107e67f 2018-01-19 stsp return err;
698 b107e67f 2018-01-19 stsp
699 b107e67f 2018-01-19 stsp /* Compute the base object's offset (must be in the same pack file). */
700 96f5e8b3 2018-01-23 stsp *base_offset = (offset - negoffset);
701 96f5e8b3 2018-01-23 stsp if (*base_offset <= 0)
702 b107e67f 2018-01-19 stsp return got_error(GOT_ERR_BAD_PACKFILE);
703 b107e67f 2018-01-19 stsp
704 d7464085 2018-07-09 stsp *len = negofflen;
705 96f5e8b3 2018-01-23 stsp return NULL;
706 96f5e8b3 2018-01-23 stsp }
707 96f5e8b3 2018-01-23 stsp
708 0e22967e 2018-02-11 stsp static const struct got_error *
709 c8ecd499 2018-09-09 stsp resolve_delta_chain(struct got_delta_chain *, struct got_packidx *,
710 c8ecd499 2018-09-09 stsp struct got_pack *, off_t, size_t, int, size_t, unsigned int);
711 42c69117 2019-11-10 stsp
712 42c69117 2019-11-10 stsp static const struct got_error *
713 42c69117 2019-11-10 stsp read_delta_data(uint8_t **delta_buf, size_t *delta_len,
714 42c69117 2019-11-10 stsp size_t delta_data_offset, struct got_pack *pack)
715 42c69117 2019-11-10 stsp {
716 42c69117 2019-11-10 stsp const struct got_error *err = NULL;
717 42c69117 2019-11-10 stsp
718 42c69117 2019-11-10 stsp if (pack->map) {
719 42c69117 2019-11-10 stsp if (delta_data_offset >= pack->filesize)
720 42c69117 2019-11-10 stsp return got_error(GOT_ERR_PACK_OFFSET);
721 42c69117 2019-11-10 stsp err = got_inflate_to_mem_mmap(delta_buf, delta_len, pack->map,
722 42c69117 2019-11-10 stsp delta_data_offset, pack->filesize - delta_data_offset);
723 42c69117 2019-11-10 stsp } else {
724 42c69117 2019-11-10 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET) == -1)
725 42c69117 2019-11-10 stsp return got_error_from_errno("lseek");
726 42c69117 2019-11-10 stsp err = got_inflate_to_mem_fd(delta_buf, delta_len, pack->fd);
727 42c69117 2019-11-10 stsp }
728 42c69117 2019-11-10 stsp return err;
729 42c69117 2019-11-10 stsp }
730 a3500804 2018-01-23 stsp
731 96f5e8b3 2018-01-23 stsp static const struct got_error *
732 c336f889 2018-07-23 stsp add_delta(struct got_delta_chain *deltas, off_t delta_offset, size_t tslen,
733 42c69117 2019-11-10 stsp int delta_type, size_t delta_size, size_t delta_data_offset)
734 bdd2fbb3 2018-02-11 stsp {
735 bdd2fbb3 2018-02-11 stsp struct got_delta *delta;
736 bdd2fbb3 2018-02-11 stsp
737 c336f889 2018-07-23 stsp delta = got_delta_open(delta_offset, tslen, delta_type, delta_size,
738 42c69117 2019-11-10 stsp delta_data_offset);
739 bdd2fbb3 2018-02-11 stsp if (delta == NULL)
740 638f9024 2019-05-13 stsp return got_error_from_errno("got_delta_open");
741 bdd2fbb3 2018-02-11 stsp /* delta is freed in got_object_close() */
742 bdd2fbb3 2018-02-11 stsp deltas->nentries++;
743 bdd2fbb3 2018-02-11 stsp SIMPLEQ_INSERT_HEAD(&deltas->entries, delta, entry);
744 bdd2fbb3 2018-02-11 stsp return NULL;
745 bdd2fbb3 2018-02-11 stsp }
746 bdd2fbb3 2018-02-11 stsp
747 bdd2fbb3 2018-02-11 stsp static const struct got_error *
748 6b9c9673 2018-01-23 stsp resolve_offset_delta(struct got_delta_chain *deltas,
749 c8ecd499 2018-09-09 stsp struct got_packidx *packidx, struct got_pack *pack, off_t delta_offset,
750 c8ecd499 2018-09-09 stsp size_t tslen, int delta_type, size_t delta_size, unsigned int recursion)
751 bdd2fbb3 2018-02-11 stsp
752 a3500804 2018-01-23 stsp {
753 a3500804 2018-01-23 stsp const struct got_error *err;
754 c3703302 2018-01-23 stsp off_t base_offset;
755 c3703302 2018-01-23 stsp uint8_t base_type;
756 c3703302 2018-01-23 stsp uint64_t base_size;
757 c3703302 2018-01-23 stsp size_t base_tslen;
758 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
759 42c69117 2019-11-10 stsp size_t consumed;
760 a3500804 2018-01-23 stsp
761 d7464085 2018-07-09 stsp err = parse_offset_delta(&base_offset, &consumed, pack,
762 d7464085 2018-07-09 stsp delta_offset, tslen);
763 a3500804 2018-01-23 stsp if (err)
764 a3500804 2018-01-23 stsp return err;
765 a3500804 2018-01-23 stsp
766 d7464085 2018-07-09 stsp delta_data_offset = delta_offset + tslen + consumed;
767 d7464085 2018-07-09 stsp if (delta_data_offset >= pack->filesize)
768 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
769 a53d2f13 2018-03-17 stsp
770 d7464085 2018-07-09 stsp if (pack->map == NULL) {
771 d7464085 2018-07-09 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
772 d7464085 2018-07-09 stsp if (delta_data_offset == -1)
773 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
774 d7464085 2018-07-09 stsp }
775 bdd2fbb3 2018-02-11 stsp
776 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
777 42c69117 2019-11-10 stsp delta_data_offset);
778 bdd2fbb3 2018-02-11 stsp if (err)
779 1a35c1bc 2019-05-22 stsp return err;
780 bdd2fbb3 2018-02-11 stsp
781 c3703302 2018-01-23 stsp /* An offset delta must be in the same packfile. */
782 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
783 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
784 b107e67f 2018-01-19 stsp
785 348f621c 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
786 d7464085 2018-07-09 stsp pack, base_offset);
787 b107e67f 2018-01-19 stsp if (err)
788 1a35c1bc 2019-05-22 stsp return err;
789 b107e67f 2018-01-19 stsp
790 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
791 b0e2201a 2018-06-22 stsp base_tslen, base_type, base_size, recursion - 1);
792 c3703302 2018-01-23 stsp }
793 c3703302 2018-01-23 stsp
794 c3703302 2018-01-23 stsp static const struct got_error *
795 c8ecd499 2018-09-09 stsp resolve_ref_delta(struct got_delta_chain *deltas, struct got_packidx *packidx,
796 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
797 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
798 c3703302 2018-01-23 stsp {
799 6b9c9673 2018-01-23 stsp const struct got_error *err;
800 6b9c9673 2018-01-23 stsp struct got_object_id id;
801 6b9c9673 2018-01-23 stsp int idx;
802 6b9c9673 2018-01-23 stsp off_t base_offset;
803 6b9c9673 2018-01-23 stsp uint8_t base_type;
804 6b9c9673 2018-01-23 stsp uint64_t base_size;
805 6b9c9673 2018-01-23 stsp size_t base_tslen;
806 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
807 1a35c1bc 2019-05-22 stsp uint8_t *delta_buf;
808 a53d2f13 2018-03-17 stsp size_t delta_len;
809 6b9c9673 2018-01-23 stsp
810 42c69117 2019-11-10 stsp if (delta_offset + tslen >= pack->filesize)
811 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
812 a53d2f13 2018-03-17 stsp
813 d7464085 2018-07-09 stsp if (pack->map) {
814 42c69117 2019-11-10 stsp size_t mapoff = delta_offset + tslen;
815 d7464085 2018-07-09 stsp memcpy(&id, pack->map + mapoff, sizeof(id));
816 d7464085 2018-07-09 stsp mapoff += sizeof(id);
817 42c69117 2019-11-10 stsp delta_data_offset = (off_t)mapoff;
818 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&delta_buf, &delta_len, pack->map,
819 45202a8f 2018-07-11 stsp mapoff, pack->filesize - mapoff);
820 d7464085 2018-07-09 stsp if (err)
821 1a35c1bc 2019-05-22 stsp return err;
822 d7464085 2018-07-09 stsp } else {
823 42c69117 2019-11-10 stsp ssize_t n;
824 42c69117 2019-11-10 stsp n = read(pack->fd, &id, sizeof(id));
825 d7464085 2018-07-09 stsp if (n < 0)
826 638f9024 2019-05-13 stsp return got_error_from_errno("read");
827 d7464085 2018-07-09 stsp if (n != sizeof(id))
828 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
829 e40b19ed 2020-01-06 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
830 e40b19ed 2020-01-06 stsp if (delta_data_offset == -1)
831 e40b19ed 2020-01-06 stsp return got_error_from_errno("lseek");
832 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&delta_buf, &delta_len, pack->fd);
833 d7464085 2018-07-09 stsp if (err)
834 1a35c1bc 2019-05-22 stsp return err;
835 d7464085 2018-07-09 stsp }
836 d7464085 2018-07-09 stsp
837 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
838 42c69117 2019-11-10 stsp delta_data_offset);
839 bdd2fbb3 2018-02-11 stsp if (err)
840 1a35c1bc 2019-05-22 stsp return err;
841 bdd2fbb3 2018-02-11 stsp
842 652b2703 2018-06-22 stsp /* Delta base must be in the same pack file. */
843 1510f469 2018-09-09 stsp idx = got_packidx_get_object_idx(packidx, &id);
844 1a35c1bc 2019-05-22 stsp if (idx == -1)
845 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKFILE);
846 6b9c9673 2018-01-23 stsp
847 6b9c9673 2018-01-23 stsp base_offset = get_object_offset(packidx, idx);
848 1a35c1bc 2019-05-22 stsp if (base_offset == (uint64_t)-1)
849 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKIDX);
850 6b9c9673 2018-01-23 stsp
851 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
852 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
853 6b9c9673 2018-01-23 stsp
854 6b9c9673 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
855 d7464085 2018-07-09 stsp pack, base_offset);
856 6b9c9673 2018-01-23 stsp if (err)
857 1a35c1bc 2019-05-22 stsp return err;
858 6b9c9673 2018-01-23 stsp
859 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
860 0c048b15 2018-04-27 stsp base_tslen, base_type, base_size, recursion - 1);
861 6b9c9673 2018-01-23 stsp }
862 6b9c9673 2018-01-23 stsp
863 6b9c9673 2018-01-23 stsp static const struct got_error *
864 c8ecd499 2018-09-09 stsp resolve_delta_chain(struct got_delta_chain *deltas, struct got_packidx *packidx,
865 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
866 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
867 6b9c9673 2018-01-23 stsp {
868 c3703302 2018-01-23 stsp const struct got_error *err = NULL;
869 c3703302 2018-01-23 stsp
870 5b7e13a7 2018-04-02 stsp if (--recursion == 0)
871 5b7e13a7 2018-04-02 stsp return got_error(GOT_ERR_RECURSION);
872 5b7e13a7 2018-04-02 stsp
873 c3703302 2018-01-23 stsp switch (delta_type) {
874 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_COMMIT:
875 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TREE:
876 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_BLOB:
877 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
878 c3703302 2018-01-23 stsp /* Plain types are the final delta base. Recursion ends. */
879 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type,
880 42c69117 2019-11-10 stsp delta_size, 0);
881 4e8cda55 2018-01-19 stsp break;
882 a3500804 2018-01-23 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
883 c8ecd499 2018-09-09 stsp err = resolve_offset_delta(deltas, packidx, pack,
884 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
885 96f5e8b3 2018-01-23 stsp break;
886 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_REF_DELTA:
887 c8ecd499 2018-09-09 stsp err = resolve_ref_delta(deltas, packidx, pack,
888 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
889 6b9c9673 2018-01-23 stsp break;
890 4e8cda55 2018-01-19 stsp default:
891 4810de4a 2018-04-01 stsp return got_error(GOT_ERR_OBJ_TYPE);
892 4e8cda55 2018-01-19 stsp }
893 96f5e8b3 2018-01-23 stsp
894 96f5e8b3 2018-01-23 stsp return err;
895 96f5e8b3 2018-01-23 stsp }
896 96f5e8b3 2018-01-23 stsp
897 96f5e8b3 2018-01-23 stsp static const struct got_error *
898 a98c62b1 2018-09-09 stsp open_delta_object(struct got_object **obj, struct got_packidx *packidx,
899 a98c62b1 2018-09-09 stsp struct got_pack *pack, struct got_object_id *id, off_t offset,
900 c59b3346 2018-09-11 stsp size_t tslen, int delta_type, size_t delta_size, int idx)
901 96f5e8b3 2018-01-23 stsp {
902 96f5e8b3 2018-01-23 stsp const struct got_error *err = NULL;
903 96f5e8b3 2018-01-23 stsp int resolved_type;
904 4e8cda55 2018-01-19 stsp
905 b107e67f 2018-01-19 stsp *obj = calloc(1, sizeof(**obj));
906 b107e67f 2018-01-19 stsp if (*obj == NULL)
907 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
908 b107e67f 2018-01-19 stsp
909 96f5e8b3 2018-01-23 stsp (*obj)->flags = 0;
910 b107e67f 2018-01-19 stsp (*obj)->hdrlen = 0;
911 39e73dc9 2018-03-03 stsp (*obj)->size = 0; /* Not known because deltas aren't applied yet. */
912 106807b4 2018-09-15 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
913 cecc778e 2018-01-23 stsp (*obj)->pack_offset = offset + tslen;
914 1a35c1bc 2019-05-22 stsp
915 1a35c1bc 2019-05-22 stsp SIMPLEQ_INIT(&(*obj)->deltas.entries);
916 1a35c1bc 2019-05-22 stsp (*obj)->flags |= GOT_OBJ_FLAG_DELTIFIED;
917 96f5e8b3 2018-01-23 stsp (*obj)->flags |= GOT_OBJ_FLAG_PACKED;
918 c59b3346 2018-09-11 stsp (*obj)->pack_idx = idx;
919 96f5e8b3 2018-01-23 stsp
920 c8ecd499 2018-09-09 stsp err = resolve_delta_chain(&(*obj)->deltas, packidx, pack, offset,
921 b0e2201a 2018-06-22 stsp tslen, delta_type, delta_size, GOT_DELTA_CHAIN_RECURSION_MAX);
922 96f5e8b3 2018-01-23 stsp if (err)
923 96f5e8b3 2018-01-23 stsp goto done;
924 96f5e8b3 2018-01-23 stsp
925 96f5e8b3 2018-01-23 stsp err = got_delta_chain_get_base_type(&resolved_type, &(*obj)->deltas);
926 96f5e8b3 2018-01-23 stsp if (err)
927 96f5e8b3 2018-01-23 stsp goto done;
928 96f5e8b3 2018-01-23 stsp (*obj)->type = resolved_type;
929 96f5e8b3 2018-01-23 stsp done:
930 96f5e8b3 2018-01-23 stsp if (err) {
931 96f5e8b3 2018-01-23 stsp got_object_close(*obj);
932 96f5e8b3 2018-01-23 stsp *obj = NULL;
933 96f5e8b3 2018-01-23 stsp }
934 96f5e8b3 2018-01-23 stsp return err;
935 b107e67f 2018-01-19 stsp }
936 b107e67f 2018-01-19 stsp
937 2090a03d 2018-09-09 stsp const struct got_error *
938 2090a03d 2018-09-09 stsp got_packfile_open_object(struct got_object **obj, struct got_pack *pack,
939 6fd11751 2018-06-04 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
940 a1fd68d8 2018-01-12 stsp {
941 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
942 a1fd68d8 2018-01-12 stsp off_t offset;
943 6c00b545 2018-01-17 stsp uint8_t type;
944 6c00b545 2018-01-17 stsp uint64_t size;
945 3ee5fc21 2018-01-17 stsp size_t tslen;
946 a1fd68d8 2018-01-12 stsp
947 6c00b545 2018-01-17 stsp *obj = NULL;
948 a1fd68d8 2018-01-12 stsp
949 a1fd68d8 2018-01-12 stsp offset = get_object_offset(packidx, idx);
950 a1fd68d8 2018-01-12 stsp if (offset == (uint64_t)-1)
951 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_BAD_PACKIDX);
952 a1fd68d8 2018-01-12 stsp
953 d7464085 2018-07-09 stsp err = parse_object_type_and_size(&type, &size, &tslen, pack, offset);
954 a1fd68d8 2018-01-12 stsp if (err)
955 35c73765 2018-09-09 stsp return err;
956 a1fd68d8 2018-01-12 stsp
957 6c00b545 2018-01-17 stsp switch (type) {
958 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_COMMIT:
959 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_TREE:
960 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_BLOB:
961 d33fc9ef 2018-01-23 stsp case GOT_OBJ_TYPE_TAG:
962 5f25cc85 2019-11-26 stsp err = open_plain_object(obj, id, type, offset + tslen,
963 5f25cc85 2019-11-26 stsp size, idx);
964 6c00b545 2018-01-17 stsp break;
965 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
966 a48db7e5 2018-01-23 stsp case GOT_OBJ_TYPE_REF_DELTA:
967 a98c62b1 2018-09-09 stsp err = open_delta_object(obj, packidx, pack, id, offset,
968 c59b3346 2018-09-11 stsp tslen, type, size, idx);
969 b107e67f 2018-01-19 stsp break;
970 6c00b545 2018-01-17 stsp default:
971 4810de4a 2018-04-01 stsp err = got_error(GOT_ERR_OBJ_TYPE);
972 35c73765 2018-09-09 stsp break;
973 35c73765 2018-09-09 stsp }
974 35c73765 2018-09-09 stsp
975 3ee5fc21 2018-01-17 stsp return err;
976 3ee5fc21 2018-01-17 stsp }
977 efd2a263 2018-01-19 stsp
978 efd2a263 2018-01-19 stsp static const struct got_error *
979 42c69117 2019-11-10 stsp get_delta_chain_max_size(uint64_t *max_size, struct got_delta_chain *deltas,
980 42c69117 2019-11-10 stsp struct got_pack *pack)
981 22484865 2018-03-13 stsp {
982 22484865 2018-03-13 stsp struct got_delta *delta;
983 22484865 2018-03-13 stsp uint64_t base_size = 0, result_size = 0;
984 22484865 2018-03-13 stsp
985 22484865 2018-03-13 stsp *max_size = 0;
986 22484865 2018-03-13 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
987 22484865 2018-03-13 stsp /* Plain object types are the delta base. */
988 22484865 2018-03-13 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
989 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TREE &&
990 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
991 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TAG) {
992 22484865 2018-03-13 stsp const struct got_error *err;
993 42c69117 2019-11-10 stsp uint8_t *delta_buf;
994 42c69117 2019-11-10 stsp size_t delta_len;
995 ab2f42e7 2019-11-10 stsp int cached = 1;
996 42c69117 2019-11-10 stsp
997 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
998 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
999 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1000 ab2f42e7 2019-11-10 stsp cached = 0;
1001 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1002 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1003 ab2f42e7 2019-11-10 stsp if (err)
1004 ab2f42e7 2019-11-10 stsp return err;
1005 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1006 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1007 ab2f42e7 2019-11-10 stsp if (err == NULL)
1008 ab2f42e7 2019-11-10 stsp cached = 1;
1009 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1010 ab2f42e7 2019-11-10 stsp free(delta_buf);
1011 ab2f42e7 2019-11-10 stsp return err;
1012 ab2f42e7 2019-11-10 stsp }
1013 ab2f42e7 2019-11-10 stsp }
1014 a53d2f13 2018-03-17 stsp err = got_delta_get_sizes(&base_size, &result_size,
1015 42c69117 2019-11-10 stsp delta_buf, delta_len);
1016 ab2f42e7 2019-11-10 stsp if (!cached)
1017 ab2f42e7 2019-11-10 stsp free(delta_buf);
1018 22484865 2018-03-13 stsp if (err)
1019 22484865 2018-03-13 stsp return err;
1020 22484865 2018-03-13 stsp } else
1021 22484865 2018-03-13 stsp base_size = delta->size;
1022 22484865 2018-03-13 stsp if (base_size > *max_size)
1023 22484865 2018-03-13 stsp *max_size = base_size;
1024 22484865 2018-03-13 stsp if (result_size > *max_size)
1025 22484865 2018-03-13 stsp *max_size = result_size;
1026 22484865 2018-03-13 stsp }
1027 bd1223b9 2018-03-14 stsp
1028 9feb4ff2 2018-03-14 stsp return NULL;
1029 ac544f8c 2019-01-13 stsp }
1030 ac544f8c 2019-01-13 stsp
1031 ac544f8c 2019-01-13 stsp const struct got_error *
1032 42c69117 2019-11-10 stsp got_pack_get_max_delta_object_size(uint64_t *size, struct got_object *obj,
1033 42c69117 2019-11-10 stsp struct got_pack *pack)
1034 ac544f8c 2019-01-13 stsp {
1035 85a703fa 2019-01-13 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0)
1036 85a703fa 2019-01-13 stsp return got_error(GOT_ERR_OBJ_TYPE);
1037 85a703fa 2019-01-13 stsp
1038 42c69117 2019-11-10 stsp return get_delta_chain_max_size(size, &obj->deltas, pack);
1039 22484865 2018-03-13 stsp }
1040 22484865 2018-03-13 stsp
1041 22484865 2018-03-13 stsp static const struct got_error *
1042 b29656e2 2018-03-16 stsp dump_delta_chain_to_file(size_t *result_size, struct got_delta_chain *deltas,
1043 3840f4c9 2018-09-12 stsp struct got_pack *pack, FILE *outfile, FILE *base_file, FILE *accum_file)
1044 efd2a263 2018-01-19 stsp {
1045 efd2a263 2018-01-19 stsp const struct got_error *err = NULL;
1046 6691714a 2018-01-23 stsp struct got_delta *delta;
1047 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1048 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1049 22484865 2018-03-13 stsp uint64_t max_size;
1050 6691714a 2018-01-23 stsp int n = 0;
1051 b29656e2 2018-03-16 stsp
1052 b29656e2 2018-03-16 stsp *result_size = 0;
1053 3ee5fc21 2018-01-17 stsp
1054 710bb5ca 2018-01-23 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1055 6691714a 2018-01-23 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1056 efd2a263 2018-01-19 stsp
1057 8628c62d 2018-03-15 stsp /* We process small enough files entirely in memory for speed. */
1058 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1059 22484865 2018-03-13 stsp if (err)
1060 22484865 2018-03-13 stsp return err;
1061 8628c62d 2018-03-15 stsp if (max_size < GOT_DELTA_RESULT_SIZE_CACHED_MAX) {
1062 8628c62d 2018-03-15 stsp accum_buf = malloc(max_size);
1063 8628c62d 2018-03-15 stsp if (accum_buf == NULL)
1064 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1065 3840f4c9 2018-09-12 stsp base_file = NULL;
1066 3840f4c9 2018-09-12 stsp accum_file = NULL;
1067 6691714a 2018-01-23 stsp }
1068 efd2a263 2018-01-19 stsp
1069 6691714a 2018-01-23 stsp /* Deltas are ordered in ascending order. */
1070 710bb5ca 2018-01-23 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1071 ab2f42e7 2019-11-10 stsp int cached = 1;
1072 a6b158cc 2018-02-11 stsp if (n == 0) {
1073 34fca9c3 2018-11-11 stsp size_t mapoff;
1074 0c048b15 2018-04-27 stsp off_t delta_data_offset;
1075 9db65d41 2018-03-14 stsp
1076 a6b158cc 2018-02-11 stsp /* Plain object types are the delta base. */
1077 a6b158cc 2018-02-11 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1078 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1079 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1080 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1081 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1082 72eb3431 2018-04-01 stsp goto done;
1083 72eb3431 2018-04-01 stsp }
1084 72eb3431 2018-04-01 stsp
1085 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1086 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1087 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1088 0c048b15 2018-04-27 stsp goto done;
1089 0c048b15 2018-04-27 stsp }
1090 d7464085 2018-07-09 stsp if (pack->map == NULL) {
1091 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1092 d7464085 2018-07-09 stsp == -1) {
1093 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1094 d7464085 2018-07-09 stsp goto done;
1095 d7464085 2018-07-09 stsp }
1096 bdd2fbb3 2018-02-11 stsp }
1097 d7464085 2018-07-09 stsp if (base_file) {
1098 d7464085 2018-07-09 stsp if (pack->map) {
1099 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1100 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(
1101 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1102 d7464085 2018-07-09 stsp pack->filesize - mapoff, base_file);
1103 d7464085 2018-07-09 stsp } else
1104 34fca9c3 2018-11-11 stsp err = got_inflate_to_file_fd(
1105 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd, base_file);
1106 d7464085 2018-07-09 stsp } else {
1107 d7464085 2018-07-09 stsp if (pack->map) {
1108 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1109 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1110 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1111 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1112 d7464085 2018-07-09 stsp } else
1113 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1114 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd);
1115 8628c62d 2018-03-15 stsp }
1116 a6b158cc 2018-02-11 stsp if (err)
1117 a6b158cc 2018-02-11 stsp goto done;
1118 a6b158cc 2018-02-11 stsp n++;
1119 8628c62d 2018-03-15 stsp if (base_file)
1120 8628c62d 2018-03-15 stsp rewind(base_file);
1121 a6b158cc 2018-02-11 stsp continue;
1122 9db65d41 2018-03-14 stsp }
1123 885d3e02 2018-01-27 stsp
1124 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1125 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1126 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1127 ab2f42e7 2019-11-10 stsp cached = 0;
1128 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1129 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1130 ab2f42e7 2019-11-10 stsp if (err)
1131 ab2f42e7 2019-11-10 stsp goto done;
1132 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1133 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1134 ab2f42e7 2019-11-10 stsp if (err == NULL)
1135 ab2f42e7 2019-11-10 stsp cached = 1;
1136 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1137 ab2f42e7 2019-11-10 stsp free(delta_buf);
1138 ab2f42e7 2019-11-10 stsp goto done;
1139 ab2f42e7 2019-11-10 stsp }
1140 ab2f42e7 2019-11-10 stsp }
1141 8628c62d 2018-03-15 stsp if (base_buf) {
1142 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1143 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1144 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1145 8628c62d 2018-03-15 stsp n++;
1146 8628c62d 2018-03-15 stsp } else {
1147 42c69117 2019-11-10 stsp err = got_delta_apply(base_file, delta_buf,
1148 42c69117 2019-11-10 stsp delta_len,
1149 8628c62d 2018-03-15 stsp /* Final delta application writes to output file. */
1150 b29656e2 2018-03-16 stsp ++n < deltas->nentries ? accum_file : outfile,
1151 b29656e2 2018-03-16 stsp &accum_size);
1152 8628c62d 2018-03-15 stsp }
1153 ab2f42e7 2019-11-10 stsp if (!cached)
1154 ab2f42e7 2019-11-10 stsp free(delta_buf);
1155 6691714a 2018-01-23 stsp if (err)
1156 6691714a 2018-01-23 stsp goto done;
1157 6691714a 2018-01-23 stsp
1158 710bb5ca 2018-01-23 stsp if (n < deltas->nentries) {
1159 6691714a 2018-01-23 stsp /* Accumulated delta becomes the new base. */
1160 8628c62d 2018-03-15 stsp if (base_buf) {
1161 8628c62d 2018-03-15 stsp uint8_t *tmp = accum_buf;
1162 34fca9c3 2018-11-11 stsp /*
1163 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation
1164 34fca9c3 2018-11-11 stsp * buffer. Ensure it can hold the largest
1165 34fca9c3 2018-11-11 stsp * result in the delta chain. The initial
1166 34fca9c3 2018-11-11 stsp * allocation might have been smaller.
1167 34fca9c3 2018-11-11 stsp */
1168 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1169 34fca9c3 2018-11-11 stsp uint8_t *p;
1170 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1171 34fca9c3 2018-11-11 stsp if (p == NULL) {
1172 638f9024 2019-05-13 stsp err = got_error_from_errno(
1173 230a42bd 2019-05-11 jcs "reallocarray");
1174 34fca9c3 2018-11-11 stsp goto done;
1175 34fca9c3 2018-11-11 stsp }
1176 34fca9c3 2018-11-11 stsp base_buf = p;
1177 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1178 34fca9c3 2018-11-11 stsp }
1179 8628c62d 2018-03-15 stsp accum_buf = base_buf;
1180 8628c62d 2018-03-15 stsp base_buf = tmp;
1181 8628c62d 2018-03-15 stsp } else {
1182 8628c62d 2018-03-15 stsp FILE *tmp = accum_file;
1183 8628c62d 2018-03-15 stsp accum_file = base_file;
1184 8628c62d 2018-03-15 stsp base_file = tmp;
1185 8628c62d 2018-03-15 stsp rewind(base_file);
1186 8628c62d 2018-03-15 stsp rewind(accum_file);
1187 8628c62d 2018-03-15 stsp }
1188 6691714a 2018-01-23 stsp }
1189 6691714a 2018-01-23 stsp }
1190 6691714a 2018-01-23 stsp
1191 6691714a 2018-01-23 stsp done:
1192 8628c62d 2018-03-15 stsp free(base_buf);
1193 8628c62d 2018-03-15 stsp if (accum_buf) {
1194 8628c62d 2018-03-15 stsp size_t len = fwrite(accum_buf, 1, accum_size, outfile);
1195 8628c62d 2018-03-15 stsp free(accum_buf);
1196 8628c62d 2018-03-15 stsp if (len != accum_size)
1197 673702af 2018-07-23 stsp err = got_ferror(outfile, GOT_ERR_IO);
1198 8628c62d 2018-03-15 stsp }
1199 6691714a 2018-01-23 stsp rewind(outfile);
1200 b29656e2 2018-03-16 stsp if (err == NULL)
1201 b29656e2 2018-03-16 stsp *result_size = accum_size;
1202 e0ab43e7 2018-03-16 stsp return err;
1203 e0ab43e7 2018-03-16 stsp }
1204 e0ab43e7 2018-03-16 stsp
1205 e0ab43e7 2018-03-16 stsp static const struct got_error *
1206 e0ab43e7 2018-03-16 stsp dump_delta_chain_to_mem(uint8_t **outbuf, size_t *outlen,
1207 48095039 2018-09-09 stsp struct got_delta_chain *deltas, struct got_pack *pack)
1208 e0ab43e7 2018-03-16 stsp {
1209 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1210 e0ab43e7 2018-03-16 stsp struct got_delta *delta;
1211 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1212 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1213 e0ab43e7 2018-03-16 stsp uint64_t max_size;
1214 e0ab43e7 2018-03-16 stsp int n = 0;
1215 e0ab43e7 2018-03-16 stsp
1216 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1217 e0ab43e7 2018-03-16 stsp *outlen = 0;
1218 e0ab43e7 2018-03-16 stsp
1219 e0ab43e7 2018-03-16 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1220 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1221 e0ab43e7 2018-03-16 stsp
1222 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1223 e0ab43e7 2018-03-16 stsp if (err)
1224 e0ab43e7 2018-03-16 stsp return err;
1225 e0ab43e7 2018-03-16 stsp accum_buf = malloc(max_size);
1226 e0ab43e7 2018-03-16 stsp if (accum_buf == NULL)
1227 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1228 e0ab43e7 2018-03-16 stsp
1229 e0ab43e7 2018-03-16 stsp /* Deltas are ordered in ascending order. */
1230 e0ab43e7 2018-03-16 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1231 ab2f42e7 2019-11-10 stsp int cached = 1;
1232 e0ab43e7 2018-03-16 stsp if (n == 0) {
1233 0c048b15 2018-04-27 stsp size_t delta_data_offset;
1234 e0ab43e7 2018-03-16 stsp
1235 e0ab43e7 2018-03-16 stsp /* Plain object types are the delta base. */
1236 e0ab43e7 2018-03-16 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1237 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1238 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1239 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1240 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1241 72eb3431 2018-04-01 stsp goto done;
1242 72eb3431 2018-04-01 stsp }
1243 72eb3431 2018-04-01 stsp
1244 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1245 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1246 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1247 0c048b15 2018-04-27 stsp goto done;
1248 0c048b15 2018-04-27 stsp }
1249 d7464085 2018-07-09 stsp if (pack->map) {
1250 d7464085 2018-07-09 stsp size_t mapoff = (size_t)delta_data_offset;
1251 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1252 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1253 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1254 d7464085 2018-07-09 stsp } else {
1255 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1256 d7464085 2018-07-09 stsp == -1) {
1257 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1258 d7464085 2018-07-09 stsp goto done;
1259 d7464085 2018-07-09 stsp }
1260 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1261 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd);
1262 e0ab43e7 2018-03-16 stsp }
1263 d7464085 2018-07-09 stsp if (err)
1264 d7464085 2018-07-09 stsp goto done;
1265 e0ab43e7 2018-03-16 stsp n++;
1266 e0ab43e7 2018-03-16 stsp continue;
1267 e0ab43e7 2018-03-16 stsp }
1268 e0ab43e7 2018-03-16 stsp
1269 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1270 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1271 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1272 ab2f42e7 2019-11-10 stsp cached = 0;
1273 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1274 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1275 ab2f42e7 2019-11-10 stsp if (err)
1276 ab2f42e7 2019-11-10 stsp goto done;
1277 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1278 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1279 ab2f42e7 2019-11-10 stsp if (err == NULL)
1280 ab2f42e7 2019-11-10 stsp cached = 1;
1281 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1282 ab2f42e7 2019-11-10 stsp free(delta_buf);
1283 ab2f42e7 2019-11-10 stsp goto done;
1284 ab2f42e7 2019-11-10 stsp }
1285 ab2f42e7 2019-11-10 stsp }
1286 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1287 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1288 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1289 ab2f42e7 2019-11-10 stsp if (!cached)
1290 ab2f42e7 2019-11-10 stsp free(delta_buf);
1291 e0ab43e7 2018-03-16 stsp n++;
1292 e0ab43e7 2018-03-16 stsp if (err)
1293 e0ab43e7 2018-03-16 stsp goto done;
1294 e0ab43e7 2018-03-16 stsp
1295 e0ab43e7 2018-03-16 stsp if (n < deltas->nentries) {
1296 e0ab43e7 2018-03-16 stsp /* Accumulated delta becomes the new base. */
1297 e0ab43e7 2018-03-16 stsp uint8_t *tmp = accum_buf;
1298 34fca9c3 2018-11-11 stsp /*
1299 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation buffer.
1300 34fca9c3 2018-11-11 stsp * Ensure it can hold the largest result in the delta
1301 34fca9c3 2018-11-11 stsp * chain. Initial allocation might have been smaller.
1302 34fca9c3 2018-11-11 stsp */
1303 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1304 34fca9c3 2018-11-11 stsp uint8_t *p;
1305 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1306 34fca9c3 2018-11-11 stsp if (p == NULL) {
1307 638f9024 2019-05-13 stsp err = got_error_from_errno(
1308 230a42bd 2019-05-11 jcs "reallocarray");
1309 34fca9c3 2018-11-11 stsp goto done;
1310 34fca9c3 2018-11-11 stsp }
1311 34fca9c3 2018-11-11 stsp base_buf = p;
1312 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1313 34fca9c3 2018-11-11 stsp }
1314 e0ab43e7 2018-03-16 stsp accum_buf = base_buf;
1315 e0ab43e7 2018-03-16 stsp base_buf = tmp;
1316 e0ab43e7 2018-03-16 stsp }
1317 e0ab43e7 2018-03-16 stsp }
1318 e0ab43e7 2018-03-16 stsp
1319 e0ab43e7 2018-03-16 stsp done:
1320 e0ab43e7 2018-03-16 stsp free(base_buf);
1321 e0ab43e7 2018-03-16 stsp if (err) {
1322 e0ab43e7 2018-03-16 stsp free(accum_buf);
1323 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1324 e0ab43e7 2018-03-16 stsp *outlen = 0;
1325 e0ab43e7 2018-03-16 stsp } else {
1326 e0ab43e7 2018-03-16 stsp *outbuf = accum_buf;
1327 e0ab43e7 2018-03-16 stsp *outlen = accum_size;
1328 e0ab43e7 2018-03-16 stsp }
1329 efd2a263 2018-01-19 stsp return err;
1330 efd2a263 2018-01-19 stsp }
1331 efd2a263 2018-01-19 stsp
1332 3ee5fc21 2018-01-17 stsp const struct got_error *
1333 24140570 2018-09-09 stsp got_packfile_extract_object(struct got_pack *pack, struct got_object *obj,
1334 3840f4c9 2018-09-12 stsp FILE *outfile, FILE *base_file, FILE *accum_file)
1335 3ee5fc21 2018-01-17 stsp {
1336 3ee5fc21 2018-01-17 stsp const struct got_error *err = NULL;
1337 3ee5fc21 2018-01-17 stsp
1338 3ee5fc21 2018-01-17 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1339 3ee5fc21 2018-01-17 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1340 2ce68b2f 2018-09-09 stsp
1341 ef2bccd9 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1342 24140570 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1343 24140570 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1344 72eb3431 2018-04-01 stsp
1345 d7464085 2018-07-09 stsp if (pack->map) {
1346 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1347 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(&obj->size, pack->map,
1348 24140570 2018-09-09 stsp mapoff, pack->filesize - mapoff, outfile);
1349 d7464085 2018-07-09 stsp } else {
1350 24140570 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1351 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1352 24140570 2018-09-09 stsp err = got_inflate_to_file_fd(&obj->size, pack->fd,
1353 24140570 2018-09-09 stsp outfile);
1354 d7464085 2018-07-09 stsp }
1355 040bf4a1 2018-04-01 stsp } else
1356 2ce68b2f 2018-09-09 stsp err = dump_delta_chain_to_file(&obj->size, &obj->deltas, pack,
1357 3840f4c9 2018-09-12 stsp outfile, base_file, accum_file);
1358 24140570 2018-09-09 stsp
1359 a1fd68d8 2018-01-12 stsp return err;
1360 a1fd68d8 2018-01-12 stsp }
1361 e0ab43e7 2018-03-16 stsp
1362 e0ab43e7 2018-03-16 stsp const struct got_error *
1363 e0ab43e7 2018-03-16 stsp got_packfile_extract_object_to_mem(uint8_t **buf, size_t *len,
1364 7e212e3d 2018-09-09 stsp struct got_object *obj, struct got_pack *pack)
1365 e0ab43e7 2018-03-16 stsp {
1366 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1367 e0ab43e7 2018-03-16 stsp
1368 e0ab43e7 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1369 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1370 72eb3431 2018-04-01 stsp
1371 48095039 2018-09-09 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1372 7e212e3d 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1373 7e212e3d 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1374 d7464085 2018-07-09 stsp if (pack->map) {
1375 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1376 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(buf, len, pack->map,
1377 d7464085 2018-07-09 stsp mapoff, pack->filesize - mapoff);
1378 d7464085 2018-07-09 stsp } else {
1379 7e212e3d 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1380 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1381 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(buf, len, pack->fd);
1382 e0ab43e7 2018-03-16 stsp }
1383 e0ab43e7 2018-03-16 stsp } else
1384 48095039 2018-09-09 stsp err = dump_delta_chain_to_mem(buf, len, &obj->deltas, pack);
1385 7e212e3d 2018-09-09 stsp
1386 e0ab43e7 2018-03-16 stsp return err;
1387 e0ab43e7 2018-03-16 stsp }