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 3ab5e33c 2020-03-18 stsp err = got_inflate_to_mem_fd(delta_buf, delta_len, NULL,
727 3ab5e33c 2020-03-18 stsp pack->fd);
728 42c69117 2019-11-10 stsp }
729 42c69117 2019-11-10 stsp return err;
730 42c69117 2019-11-10 stsp }
731 a3500804 2018-01-23 stsp
732 96f5e8b3 2018-01-23 stsp static const struct got_error *
733 c336f889 2018-07-23 stsp add_delta(struct got_delta_chain *deltas, off_t delta_offset, size_t tslen,
734 42c69117 2019-11-10 stsp int delta_type, size_t delta_size, size_t delta_data_offset)
735 bdd2fbb3 2018-02-11 stsp {
736 bdd2fbb3 2018-02-11 stsp struct got_delta *delta;
737 bdd2fbb3 2018-02-11 stsp
738 c336f889 2018-07-23 stsp delta = got_delta_open(delta_offset, tslen, delta_type, delta_size,
739 42c69117 2019-11-10 stsp delta_data_offset);
740 bdd2fbb3 2018-02-11 stsp if (delta == NULL)
741 638f9024 2019-05-13 stsp return got_error_from_errno("got_delta_open");
742 bdd2fbb3 2018-02-11 stsp /* delta is freed in got_object_close() */
743 bdd2fbb3 2018-02-11 stsp deltas->nentries++;
744 bdd2fbb3 2018-02-11 stsp SIMPLEQ_INSERT_HEAD(&deltas->entries, delta, entry);
745 bdd2fbb3 2018-02-11 stsp return NULL;
746 bdd2fbb3 2018-02-11 stsp }
747 bdd2fbb3 2018-02-11 stsp
748 bdd2fbb3 2018-02-11 stsp static const struct got_error *
749 6b9c9673 2018-01-23 stsp resolve_offset_delta(struct got_delta_chain *deltas,
750 c8ecd499 2018-09-09 stsp struct got_packidx *packidx, struct got_pack *pack, off_t delta_offset,
751 c8ecd499 2018-09-09 stsp size_t tslen, int delta_type, size_t delta_size, unsigned int recursion)
752 bdd2fbb3 2018-02-11 stsp
753 a3500804 2018-01-23 stsp {
754 a3500804 2018-01-23 stsp const struct got_error *err;
755 c3703302 2018-01-23 stsp off_t base_offset;
756 c3703302 2018-01-23 stsp uint8_t base_type;
757 c3703302 2018-01-23 stsp uint64_t base_size;
758 c3703302 2018-01-23 stsp size_t base_tslen;
759 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
760 42c69117 2019-11-10 stsp size_t consumed;
761 a3500804 2018-01-23 stsp
762 d7464085 2018-07-09 stsp err = parse_offset_delta(&base_offset, &consumed, pack,
763 d7464085 2018-07-09 stsp delta_offset, tslen);
764 a3500804 2018-01-23 stsp if (err)
765 a3500804 2018-01-23 stsp return err;
766 a3500804 2018-01-23 stsp
767 d7464085 2018-07-09 stsp delta_data_offset = delta_offset + tslen + consumed;
768 d7464085 2018-07-09 stsp if (delta_data_offset >= pack->filesize)
769 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
770 a53d2f13 2018-03-17 stsp
771 d7464085 2018-07-09 stsp if (pack->map == NULL) {
772 d7464085 2018-07-09 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
773 d7464085 2018-07-09 stsp if (delta_data_offset == -1)
774 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
775 d7464085 2018-07-09 stsp }
776 bdd2fbb3 2018-02-11 stsp
777 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
778 42c69117 2019-11-10 stsp delta_data_offset);
779 bdd2fbb3 2018-02-11 stsp if (err)
780 1a35c1bc 2019-05-22 stsp return err;
781 bdd2fbb3 2018-02-11 stsp
782 c3703302 2018-01-23 stsp /* An offset delta must be in the same packfile. */
783 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
784 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
785 b107e67f 2018-01-19 stsp
786 348f621c 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
787 d7464085 2018-07-09 stsp pack, base_offset);
788 b107e67f 2018-01-19 stsp if (err)
789 1a35c1bc 2019-05-22 stsp return err;
790 b107e67f 2018-01-19 stsp
791 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
792 b0e2201a 2018-06-22 stsp base_tslen, base_type, base_size, recursion - 1);
793 c3703302 2018-01-23 stsp }
794 c3703302 2018-01-23 stsp
795 c3703302 2018-01-23 stsp static const struct got_error *
796 c8ecd499 2018-09-09 stsp resolve_ref_delta(struct got_delta_chain *deltas, struct got_packidx *packidx,
797 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
798 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
799 c3703302 2018-01-23 stsp {
800 6b9c9673 2018-01-23 stsp const struct got_error *err;
801 6b9c9673 2018-01-23 stsp struct got_object_id id;
802 6b9c9673 2018-01-23 stsp int idx;
803 6b9c9673 2018-01-23 stsp off_t base_offset;
804 6b9c9673 2018-01-23 stsp uint8_t base_type;
805 6b9c9673 2018-01-23 stsp uint64_t base_size;
806 6b9c9673 2018-01-23 stsp size_t base_tslen;
807 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
808 6b9c9673 2018-01-23 stsp
809 42c69117 2019-11-10 stsp if (delta_offset + tslen >= pack->filesize)
810 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
811 a53d2f13 2018-03-17 stsp
812 d7464085 2018-07-09 stsp if (pack->map) {
813 42c69117 2019-11-10 stsp size_t mapoff = delta_offset + tslen;
814 d7464085 2018-07-09 stsp memcpy(&id, pack->map + mapoff, sizeof(id));
815 d7464085 2018-07-09 stsp mapoff += sizeof(id);
816 42c69117 2019-11-10 stsp delta_data_offset = (off_t)mapoff;
817 d7464085 2018-07-09 stsp } else {
818 42c69117 2019-11-10 stsp ssize_t n;
819 42c69117 2019-11-10 stsp n = read(pack->fd, &id, sizeof(id));
820 d7464085 2018-07-09 stsp if (n < 0)
821 638f9024 2019-05-13 stsp return got_error_from_errno("read");
822 d7464085 2018-07-09 stsp if (n != sizeof(id))
823 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
824 e40b19ed 2020-01-06 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
825 e40b19ed 2020-01-06 stsp if (delta_data_offset == -1)
826 e40b19ed 2020-01-06 stsp return got_error_from_errno("lseek");
827 3ab5e33c 2020-03-18 stsp err = got_inflate_to_mem_fd(&delta_buf, &delta_len, NULL,
828 3ab5e33c 2020-03-18 stsp pack->fd);
829 3ab5e33c 2020-03-18 stsp if (err)
830 3ab5e33c 2020-03-18 stsp return err;
831 d7464085 2018-07-09 stsp }
832 d7464085 2018-07-09 stsp
833 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
834 42c69117 2019-11-10 stsp delta_data_offset);
835 bdd2fbb3 2018-02-11 stsp if (err)
836 1a35c1bc 2019-05-22 stsp return err;
837 bdd2fbb3 2018-02-11 stsp
838 652b2703 2018-06-22 stsp /* Delta base must be in the same pack file. */
839 1510f469 2018-09-09 stsp idx = got_packidx_get_object_idx(packidx, &id);
840 1a35c1bc 2019-05-22 stsp if (idx == -1)
841 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKFILE);
842 6b9c9673 2018-01-23 stsp
843 6b9c9673 2018-01-23 stsp base_offset = get_object_offset(packidx, idx);
844 1a35c1bc 2019-05-22 stsp if (base_offset == (uint64_t)-1)
845 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKIDX);
846 6b9c9673 2018-01-23 stsp
847 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
848 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
849 6b9c9673 2018-01-23 stsp
850 6b9c9673 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
851 d7464085 2018-07-09 stsp pack, base_offset);
852 6b9c9673 2018-01-23 stsp if (err)
853 1a35c1bc 2019-05-22 stsp return err;
854 6b9c9673 2018-01-23 stsp
855 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
856 0c048b15 2018-04-27 stsp base_tslen, base_type, base_size, recursion - 1);
857 6b9c9673 2018-01-23 stsp }
858 6b9c9673 2018-01-23 stsp
859 6b9c9673 2018-01-23 stsp static const struct got_error *
860 c8ecd499 2018-09-09 stsp resolve_delta_chain(struct got_delta_chain *deltas, struct got_packidx *packidx,
861 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
862 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
863 6b9c9673 2018-01-23 stsp {
864 c3703302 2018-01-23 stsp const struct got_error *err = NULL;
865 c3703302 2018-01-23 stsp
866 5b7e13a7 2018-04-02 stsp if (--recursion == 0)
867 5b7e13a7 2018-04-02 stsp return got_error(GOT_ERR_RECURSION);
868 5b7e13a7 2018-04-02 stsp
869 c3703302 2018-01-23 stsp switch (delta_type) {
870 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_COMMIT:
871 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TREE:
872 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_BLOB:
873 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
874 c3703302 2018-01-23 stsp /* Plain types are the final delta base. Recursion ends. */
875 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type,
876 42c69117 2019-11-10 stsp delta_size, 0);
877 4e8cda55 2018-01-19 stsp break;
878 a3500804 2018-01-23 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
879 c8ecd499 2018-09-09 stsp err = resolve_offset_delta(deltas, packidx, pack,
880 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
881 96f5e8b3 2018-01-23 stsp break;
882 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_REF_DELTA:
883 c8ecd499 2018-09-09 stsp err = resolve_ref_delta(deltas, packidx, pack,
884 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
885 6b9c9673 2018-01-23 stsp break;
886 4e8cda55 2018-01-19 stsp default:
887 4810de4a 2018-04-01 stsp return got_error(GOT_ERR_OBJ_TYPE);
888 4e8cda55 2018-01-19 stsp }
889 96f5e8b3 2018-01-23 stsp
890 96f5e8b3 2018-01-23 stsp return err;
891 96f5e8b3 2018-01-23 stsp }
892 96f5e8b3 2018-01-23 stsp
893 96f5e8b3 2018-01-23 stsp static const struct got_error *
894 a98c62b1 2018-09-09 stsp open_delta_object(struct got_object **obj, struct got_packidx *packidx,
895 a98c62b1 2018-09-09 stsp struct got_pack *pack, struct got_object_id *id, off_t offset,
896 c59b3346 2018-09-11 stsp size_t tslen, int delta_type, size_t delta_size, int idx)
897 96f5e8b3 2018-01-23 stsp {
898 96f5e8b3 2018-01-23 stsp const struct got_error *err = NULL;
899 96f5e8b3 2018-01-23 stsp int resolved_type;
900 4e8cda55 2018-01-19 stsp
901 b107e67f 2018-01-19 stsp *obj = calloc(1, sizeof(**obj));
902 b107e67f 2018-01-19 stsp if (*obj == NULL)
903 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
904 b107e67f 2018-01-19 stsp
905 96f5e8b3 2018-01-23 stsp (*obj)->flags = 0;
906 b107e67f 2018-01-19 stsp (*obj)->hdrlen = 0;
907 39e73dc9 2018-03-03 stsp (*obj)->size = 0; /* Not known because deltas aren't applied yet. */
908 106807b4 2018-09-15 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
909 cecc778e 2018-01-23 stsp (*obj)->pack_offset = offset + tslen;
910 1a35c1bc 2019-05-22 stsp
911 1a35c1bc 2019-05-22 stsp SIMPLEQ_INIT(&(*obj)->deltas.entries);
912 1a35c1bc 2019-05-22 stsp (*obj)->flags |= GOT_OBJ_FLAG_DELTIFIED;
913 96f5e8b3 2018-01-23 stsp (*obj)->flags |= GOT_OBJ_FLAG_PACKED;
914 c59b3346 2018-09-11 stsp (*obj)->pack_idx = idx;
915 96f5e8b3 2018-01-23 stsp
916 c8ecd499 2018-09-09 stsp err = resolve_delta_chain(&(*obj)->deltas, packidx, pack, offset,
917 b0e2201a 2018-06-22 stsp tslen, delta_type, delta_size, GOT_DELTA_CHAIN_RECURSION_MAX);
918 96f5e8b3 2018-01-23 stsp if (err)
919 96f5e8b3 2018-01-23 stsp goto done;
920 96f5e8b3 2018-01-23 stsp
921 96f5e8b3 2018-01-23 stsp err = got_delta_chain_get_base_type(&resolved_type, &(*obj)->deltas);
922 96f5e8b3 2018-01-23 stsp if (err)
923 96f5e8b3 2018-01-23 stsp goto done;
924 96f5e8b3 2018-01-23 stsp (*obj)->type = resolved_type;
925 96f5e8b3 2018-01-23 stsp done:
926 96f5e8b3 2018-01-23 stsp if (err) {
927 96f5e8b3 2018-01-23 stsp got_object_close(*obj);
928 96f5e8b3 2018-01-23 stsp *obj = NULL;
929 96f5e8b3 2018-01-23 stsp }
930 96f5e8b3 2018-01-23 stsp return err;
931 b107e67f 2018-01-19 stsp }
932 b107e67f 2018-01-19 stsp
933 2090a03d 2018-09-09 stsp const struct got_error *
934 2090a03d 2018-09-09 stsp got_packfile_open_object(struct got_object **obj, struct got_pack *pack,
935 6fd11751 2018-06-04 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
936 a1fd68d8 2018-01-12 stsp {
937 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
938 a1fd68d8 2018-01-12 stsp off_t offset;
939 6c00b545 2018-01-17 stsp uint8_t type;
940 6c00b545 2018-01-17 stsp uint64_t size;
941 3ee5fc21 2018-01-17 stsp size_t tslen;
942 a1fd68d8 2018-01-12 stsp
943 6c00b545 2018-01-17 stsp *obj = NULL;
944 a1fd68d8 2018-01-12 stsp
945 a1fd68d8 2018-01-12 stsp offset = get_object_offset(packidx, idx);
946 a1fd68d8 2018-01-12 stsp if (offset == (uint64_t)-1)
947 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_BAD_PACKIDX);
948 a1fd68d8 2018-01-12 stsp
949 d7464085 2018-07-09 stsp err = parse_object_type_and_size(&type, &size, &tslen, pack, offset);
950 a1fd68d8 2018-01-12 stsp if (err)
951 35c73765 2018-09-09 stsp return err;
952 a1fd68d8 2018-01-12 stsp
953 6c00b545 2018-01-17 stsp switch (type) {
954 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_COMMIT:
955 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_TREE:
956 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_BLOB:
957 d33fc9ef 2018-01-23 stsp case GOT_OBJ_TYPE_TAG:
958 5f25cc85 2019-11-26 stsp err = open_plain_object(obj, id, type, offset + tslen,
959 5f25cc85 2019-11-26 stsp size, idx);
960 6c00b545 2018-01-17 stsp break;
961 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
962 a48db7e5 2018-01-23 stsp case GOT_OBJ_TYPE_REF_DELTA:
963 a98c62b1 2018-09-09 stsp err = open_delta_object(obj, packidx, pack, id, offset,
964 c59b3346 2018-09-11 stsp tslen, type, size, idx);
965 b107e67f 2018-01-19 stsp break;
966 6c00b545 2018-01-17 stsp default:
967 4810de4a 2018-04-01 stsp err = got_error(GOT_ERR_OBJ_TYPE);
968 35c73765 2018-09-09 stsp break;
969 35c73765 2018-09-09 stsp }
970 35c73765 2018-09-09 stsp
971 3ee5fc21 2018-01-17 stsp return err;
972 3ee5fc21 2018-01-17 stsp }
973 efd2a263 2018-01-19 stsp
974 efd2a263 2018-01-19 stsp static const struct got_error *
975 42c69117 2019-11-10 stsp get_delta_chain_max_size(uint64_t *max_size, struct got_delta_chain *deltas,
976 42c69117 2019-11-10 stsp struct got_pack *pack)
977 22484865 2018-03-13 stsp {
978 22484865 2018-03-13 stsp struct got_delta *delta;
979 22484865 2018-03-13 stsp uint64_t base_size = 0, result_size = 0;
980 22484865 2018-03-13 stsp
981 22484865 2018-03-13 stsp *max_size = 0;
982 22484865 2018-03-13 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
983 22484865 2018-03-13 stsp /* Plain object types are the delta base. */
984 22484865 2018-03-13 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
985 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TREE &&
986 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
987 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TAG) {
988 22484865 2018-03-13 stsp const struct got_error *err;
989 42c69117 2019-11-10 stsp uint8_t *delta_buf;
990 42c69117 2019-11-10 stsp size_t delta_len;
991 ab2f42e7 2019-11-10 stsp int cached = 1;
992 42c69117 2019-11-10 stsp
993 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
994 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
995 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
996 ab2f42e7 2019-11-10 stsp cached = 0;
997 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
998 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
999 ab2f42e7 2019-11-10 stsp if (err)
1000 ab2f42e7 2019-11-10 stsp return err;
1001 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1002 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1003 ab2f42e7 2019-11-10 stsp if (err == NULL)
1004 ab2f42e7 2019-11-10 stsp cached = 1;
1005 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1006 ab2f42e7 2019-11-10 stsp free(delta_buf);
1007 ab2f42e7 2019-11-10 stsp return err;
1008 ab2f42e7 2019-11-10 stsp }
1009 ab2f42e7 2019-11-10 stsp }
1010 a53d2f13 2018-03-17 stsp err = got_delta_get_sizes(&base_size, &result_size,
1011 42c69117 2019-11-10 stsp delta_buf, delta_len);
1012 ab2f42e7 2019-11-10 stsp if (!cached)
1013 ab2f42e7 2019-11-10 stsp free(delta_buf);
1014 22484865 2018-03-13 stsp if (err)
1015 22484865 2018-03-13 stsp return err;
1016 22484865 2018-03-13 stsp } else
1017 22484865 2018-03-13 stsp base_size = delta->size;
1018 22484865 2018-03-13 stsp if (base_size > *max_size)
1019 22484865 2018-03-13 stsp *max_size = base_size;
1020 22484865 2018-03-13 stsp if (result_size > *max_size)
1021 22484865 2018-03-13 stsp *max_size = result_size;
1022 22484865 2018-03-13 stsp }
1023 bd1223b9 2018-03-14 stsp
1024 9feb4ff2 2018-03-14 stsp return NULL;
1025 ac544f8c 2019-01-13 stsp }
1026 ac544f8c 2019-01-13 stsp
1027 ac544f8c 2019-01-13 stsp const struct got_error *
1028 42c69117 2019-11-10 stsp got_pack_get_max_delta_object_size(uint64_t *size, struct got_object *obj,
1029 42c69117 2019-11-10 stsp struct got_pack *pack)
1030 ac544f8c 2019-01-13 stsp {
1031 85a703fa 2019-01-13 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0)
1032 85a703fa 2019-01-13 stsp return got_error(GOT_ERR_OBJ_TYPE);
1033 85a703fa 2019-01-13 stsp
1034 42c69117 2019-11-10 stsp return get_delta_chain_max_size(size, &obj->deltas, pack);
1035 22484865 2018-03-13 stsp }
1036 22484865 2018-03-13 stsp
1037 22484865 2018-03-13 stsp static const struct got_error *
1038 b29656e2 2018-03-16 stsp dump_delta_chain_to_file(size_t *result_size, struct got_delta_chain *deltas,
1039 3840f4c9 2018-09-12 stsp struct got_pack *pack, FILE *outfile, FILE *base_file, FILE *accum_file)
1040 efd2a263 2018-01-19 stsp {
1041 efd2a263 2018-01-19 stsp const struct got_error *err = NULL;
1042 6691714a 2018-01-23 stsp struct got_delta *delta;
1043 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1044 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1045 22484865 2018-03-13 stsp uint64_t max_size;
1046 6691714a 2018-01-23 stsp int n = 0;
1047 b29656e2 2018-03-16 stsp
1048 b29656e2 2018-03-16 stsp *result_size = 0;
1049 3ee5fc21 2018-01-17 stsp
1050 710bb5ca 2018-01-23 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1051 6691714a 2018-01-23 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1052 efd2a263 2018-01-19 stsp
1053 8628c62d 2018-03-15 stsp /* We process small enough files entirely in memory for speed. */
1054 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1055 22484865 2018-03-13 stsp if (err)
1056 22484865 2018-03-13 stsp return err;
1057 8628c62d 2018-03-15 stsp if (max_size < GOT_DELTA_RESULT_SIZE_CACHED_MAX) {
1058 8628c62d 2018-03-15 stsp accum_buf = malloc(max_size);
1059 8628c62d 2018-03-15 stsp if (accum_buf == NULL)
1060 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1061 3840f4c9 2018-09-12 stsp base_file = NULL;
1062 3840f4c9 2018-09-12 stsp accum_file = NULL;
1063 6691714a 2018-01-23 stsp }
1064 efd2a263 2018-01-19 stsp
1065 6691714a 2018-01-23 stsp /* Deltas are ordered in ascending order. */
1066 710bb5ca 2018-01-23 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1067 ab2f42e7 2019-11-10 stsp int cached = 1;
1068 a6b158cc 2018-02-11 stsp if (n == 0) {
1069 34fca9c3 2018-11-11 stsp size_t mapoff;
1070 0c048b15 2018-04-27 stsp off_t delta_data_offset;
1071 9db65d41 2018-03-14 stsp
1072 a6b158cc 2018-02-11 stsp /* Plain object types are the delta base. */
1073 a6b158cc 2018-02-11 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1074 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1075 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1076 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1077 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1078 72eb3431 2018-04-01 stsp goto done;
1079 72eb3431 2018-04-01 stsp }
1080 72eb3431 2018-04-01 stsp
1081 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1082 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1083 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1084 0c048b15 2018-04-27 stsp goto done;
1085 0c048b15 2018-04-27 stsp }
1086 d7464085 2018-07-09 stsp if (pack->map == NULL) {
1087 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1088 d7464085 2018-07-09 stsp == -1) {
1089 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1090 d7464085 2018-07-09 stsp goto done;
1091 d7464085 2018-07-09 stsp }
1092 bdd2fbb3 2018-02-11 stsp }
1093 d7464085 2018-07-09 stsp if (base_file) {
1094 d7464085 2018-07-09 stsp if (pack->map) {
1095 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1096 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(
1097 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1098 d7464085 2018-07-09 stsp pack->filesize - mapoff, base_file);
1099 d7464085 2018-07-09 stsp } else
1100 34fca9c3 2018-11-11 stsp err = got_inflate_to_file_fd(
1101 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd, base_file);
1102 d7464085 2018-07-09 stsp } else {
1103 d7464085 2018-07-09 stsp if (pack->map) {
1104 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1105 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1106 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1107 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1108 d7464085 2018-07-09 stsp } else
1109 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1110 3ab5e33c 2020-03-18 stsp &base_bufsz, NULL, pack->fd);
1111 8628c62d 2018-03-15 stsp }
1112 a6b158cc 2018-02-11 stsp if (err)
1113 a6b158cc 2018-02-11 stsp goto done;
1114 a6b158cc 2018-02-11 stsp n++;
1115 8628c62d 2018-03-15 stsp if (base_file)
1116 8628c62d 2018-03-15 stsp rewind(base_file);
1117 a6b158cc 2018-02-11 stsp continue;
1118 9db65d41 2018-03-14 stsp }
1119 885d3e02 2018-01-27 stsp
1120 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1121 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1122 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1123 ab2f42e7 2019-11-10 stsp cached = 0;
1124 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1125 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1126 ab2f42e7 2019-11-10 stsp if (err)
1127 ab2f42e7 2019-11-10 stsp goto done;
1128 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1129 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1130 ab2f42e7 2019-11-10 stsp if (err == NULL)
1131 ab2f42e7 2019-11-10 stsp cached = 1;
1132 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1133 ab2f42e7 2019-11-10 stsp free(delta_buf);
1134 ab2f42e7 2019-11-10 stsp goto done;
1135 ab2f42e7 2019-11-10 stsp }
1136 ab2f42e7 2019-11-10 stsp }
1137 8628c62d 2018-03-15 stsp if (base_buf) {
1138 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1139 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1140 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1141 8628c62d 2018-03-15 stsp n++;
1142 8628c62d 2018-03-15 stsp } else {
1143 42c69117 2019-11-10 stsp err = got_delta_apply(base_file, delta_buf,
1144 42c69117 2019-11-10 stsp delta_len,
1145 8628c62d 2018-03-15 stsp /* Final delta application writes to output file. */
1146 b29656e2 2018-03-16 stsp ++n < deltas->nentries ? accum_file : outfile,
1147 b29656e2 2018-03-16 stsp &accum_size);
1148 8628c62d 2018-03-15 stsp }
1149 ab2f42e7 2019-11-10 stsp if (!cached)
1150 ab2f42e7 2019-11-10 stsp free(delta_buf);
1151 6691714a 2018-01-23 stsp if (err)
1152 6691714a 2018-01-23 stsp goto done;
1153 6691714a 2018-01-23 stsp
1154 710bb5ca 2018-01-23 stsp if (n < deltas->nentries) {
1155 6691714a 2018-01-23 stsp /* Accumulated delta becomes the new base. */
1156 8628c62d 2018-03-15 stsp if (base_buf) {
1157 8628c62d 2018-03-15 stsp uint8_t *tmp = accum_buf;
1158 34fca9c3 2018-11-11 stsp /*
1159 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation
1160 34fca9c3 2018-11-11 stsp * buffer. Ensure it can hold the largest
1161 34fca9c3 2018-11-11 stsp * result in the delta chain. The initial
1162 34fca9c3 2018-11-11 stsp * allocation might have been smaller.
1163 34fca9c3 2018-11-11 stsp */
1164 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1165 34fca9c3 2018-11-11 stsp uint8_t *p;
1166 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1167 34fca9c3 2018-11-11 stsp if (p == NULL) {
1168 638f9024 2019-05-13 stsp err = got_error_from_errno(
1169 230a42bd 2019-05-11 jcs "reallocarray");
1170 34fca9c3 2018-11-11 stsp goto done;
1171 34fca9c3 2018-11-11 stsp }
1172 34fca9c3 2018-11-11 stsp base_buf = p;
1173 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1174 34fca9c3 2018-11-11 stsp }
1175 8628c62d 2018-03-15 stsp accum_buf = base_buf;
1176 8628c62d 2018-03-15 stsp base_buf = tmp;
1177 8628c62d 2018-03-15 stsp } else {
1178 8628c62d 2018-03-15 stsp FILE *tmp = accum_file;
1179 8628c62d 2018-03-15 stsp accum_file = base_file;
1180 8628c62d 2018-03-15 stsp base_file = tmp;
1181 8628c62d 2018-03-15 stsp rewind(base_file);
1182 8628c62d 2018-03-15 stsp rewind(accum_file);
1183 8628c62d 2018-03-15 stsp }
1184 6691714a 2018-01-23 stsp }
1185 6691714a 2018-01-23 stsp }
1186 6691714a 2018-01-23 stsp
1187 6691714a 2018-01-23 stsp done:
1188 8628c62d 2018-03-15 stsp free(base_buf);
1189 8628c62d 2018-03-15 stsp if (accum_buf) {
1190 8628c62d 2018-03-15 stsp size_t len = fwrite(accum_buf, 1, accum_size, outfile);
1191 8628c62d 2018-03-15 stsp free(accum_buf);
1192 8628c62d 2018-03-15 stsp if (len != accum_size)
1193 673702af 2018-07-23 stsp err = got_ferror(outfile, GOT_ERR_IO);
1194 8628c62d 2018-03-15 stsp }
1195 6691714a 2018-01-23 stsp rewind(outfile);
1196 b29656e2 2018-03-16 stsp if (err == NULL)
1197 b29656e2 2018-03-16 stsp *result_size = accum_size;
1198 e0ab43e7 2018-03-16 stsp return err;
1199 e0ab43e7 2018-03-16 stsp }
1200 e0ab43e7 2018-03-16 stsp
1201 e0ab43e7 2018-03-16 stsp static const struct got_error *
1202 e0ab43e7 2018-03-16 stsp dump_delta_chain_to_mem(uint8_t **outbuf, size_t *outlen,
1203 48095039 2018-09-09 stsp struct got_delta_chain *deltas, struct got_pack *pack)
1204 e0ab43e7 2018-03-16 stsp {
1205 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1206 e0ab43e7 2018-03-16 stsp struct got_delta *delta;
1207 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1208 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1209 e0ab43e7 2018-03-16 stsp uint64_t max_size;
1210 e0ab43e7 2018-03-16 stsp int n = 0;
1211 e0ab43e7 2018-03-16 stsp
1212 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1213 e0ab43e7 2018-03-16 stsp *outlen = 0;
1214 e0ab43e7 2018-03-16 stsp
1215 e0ab43e7 2018-03-16 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1216 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1217 e0ab43e7 2018-03-16 stsp
1218 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1219 e0ab43e7 2018-03-16 stsp if (err)
1220 e0ab43e7 2018-03-16 stsp return err;
1221 e0ab43e7 2018-03-16 stsp accum_buf = malloc(max_size);
1222 e0ab43e7 2018-03-16 stsp if (accum_buf == NULL)
1223 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1224 e0ab43e7 2018-03-16 stsp
1225 e0ab43e7 2018-03-16 stsp /* Deltas are ordered in ascending order. */
1226 e0ab43e7 2018-03-16 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1227 ab2f42e7 2019-11-10 stsp int cached = 1;
1228 e0ab43e7 2018-03-16 stsp if (n == 0) {
1229 0c048b15 2018-04-27 stsp size_t delta_data_offset;
1230 e0ab43e7 2018-03-16 stsp
1231 e0ab43e7 2018-03-16 stsp /* Plain object types are the delta base. */
1232 e0ab43e7 2018-03-16 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1233 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1234 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1235 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1236 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1237 72eb3431 2018-04-01 stsp goto done;
1238 72eb3431 2018-04-01 stsp }
1239 72eb3431 2018-04-01 stsp
1240 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1241 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1242 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1243 0c048b15 2018-04-27 stsp goto done;
1244 0c048b15 2018-04-27 stsp }
1245 d7464085 2018-07-09 stsp if (pack->map) {
1246 d7464085 2018-07-09 stsp size_t mapoff = (size_t)delta_data_offset;
1247 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1248 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1249 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1250 d7464085 2018-07-09 stsp } else {
1251 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1252 d7464085 2018-07-09 stsp == -1) {
1253 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1254 d7464085 2018-07-09 stsp goto done;
1255 d7464085 2018-07-09 stsp }
1256 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1257 3ab5e33c 2020-03-18 stsp &base_bufsz, NULL, pack->fd);
1258 e0ab43e7 2018-03-16 stsp }
1259 d7464085 2018-07-09 stsp if (err)
1260 d7464085 2018-07-09 stsp goto done;
1261 e0ab43e7 2018-03-16 stsp n++;
1262 e0ab43e7 2018-03-16 stsp continue;
1263 e0ab43e7 2018-03-16 stsp }
1264 e0ab43e7 2018-03-16 stsp
1265 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1266 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1267 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1268 ab2f42e7 2019-11-10 stsp cached = 0;
1269 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1270 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1271 ab2f42e7 2019-11-10 stsp if (err)
1272 ab2f42e7 2019-11-10 stsp goto done;
1273 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1274 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1275 ab2f42e7 2019-11-10 stsp if (err == NULL)
1276 ab2f42e7 2019-11-10 stsp cached = 1;
1277 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1278 ab2f42e7 2019-11-10 stsp free(delta_buf);
1279 ab2f42e7 2019-11-10 stsp goto done;
1280 ab2f42e7 2019-11-10 stsp }
1281 ab2f42e7 2019-11-10 stsp }
1282 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1283 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1284 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1285 ab2f42e7 2019-11-10 stsp if (!cached)
1286 ab2f42e7 2019-11-10 stsp free(delta_buf);
1287 e0ab43e7 2018-03-16 stsp n++;
1288 e0ab43e7 2018-03-16 stsp if (err)
1289 e0ab43e7 2018-03-16 stsp goto done;
1290 e0ab43e7 2018-03-16 stsp
1291 e0ab43e7 2018-03-16 stsp if (n < deltas->nentries) {
1292 e0ab43e7 2018-03-16 stsp /* Accumulated delta becomes the new base. */
1293 e0ab43e7 2018-03-16 stsp uint8_t *tmp = accum_buf;
1294 34fca9c3 2018-11-11 stsp /*
1295 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation buffer.
1296 34fca9c3 2018-11-11 stsp * Ensure it can hold the largest result in the delta
1297 34fca9c3 2018-11-11 stsp * chain. Initial allocation might have been smaller.
1298 34fca9c3 2018-11-11 stsp */
1299 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1300 34fca9c3 2018-11-11 stsp uint8_t *p;
1301 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1302 34fca9c3 2018-11-11 stsp if (p == NULL) {
1303 638f9024 2019-05-13 stsp err = got_error_from_errno(
1304 230a42bd 2019-05-11 jcs "reallocarray");
1305 34fca9c3 2018-11-11 stsp goto done;
1306 34fca9c3 2018-11-11 stsp }
1307 34fca9c3 2018-11-11 stsp base_buf = p;
1308 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1309 34fca9c3 2018-11-11 stsp }
1310 e0ab43e7 2018-03-16 stsp accum_buf = base_buf;
1311 e0ab43e7 2018-03-16 stsp base_buf = tmp;
1312 e0ab43e7 2018-03-16 stsp }
1313 e0ab43e7 2018-03-16 stsp }
1314 e0ab43e7 2018-03-16 stsp
1315 e0ab43e7 2018-03-16 stsp done:
1316 e0ab43e7 2018-03-16 stsp free(base_buf);
1317 e0ab43e7 2018-03-16 stsp if (err) {
1318 e0ab43e7 2018-03-16 stsp free(accum_buf);
1319 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1320 e0ab43e7 2018-03-16 stsp *outlen = 0;
1321 e0ab43e7 2018-03-16 stsp } else {
1322 e0ab43e7 2018-03-16 stsp *outbuf = accum_buf;
1323 e0ab43e7 2018-03-16 stsp *outlen = accum_size;
1324 e0ab43e7 2018-03-16 stsp }
1325 efd2a263 2018-01-19 stsp return err;
1326 efd2a263 2018-01-19 stsp }
1327 efd2a263 2018-01-19 stsp
1328 3ee5fc21 2018-01-17 stsp const struct got_error *
1329 24140570 2018-09-09 stsp got_packfile_extract_object(struct got_pack *pack, struct got_object *obj,
1330 3840f4c9 2018-09-12 stsp FILE *outfile, FILE *base_file, FILE *accum_file)
1331 3ee5fc21 2018-01-17 stsp {
1332 3ee5fc21 2018-01-17 stsp const struct got_error *err = NULL;
1333 3ee5fc21 2018-01-17 stsp
1334 3ee5fc21 2018-01-17 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1335 3ee5fc21 2018-01-17 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1336 2ce68b2f 2018-09-09 stsp
1337 ef2bccd9 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1338 24140570 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1339 24140570 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1340 72eb3431 2018-04-01 stsp
1341 d7464085 2018-07-09 stsp if (pack->map) {
1342 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1343 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(&obj->size, pack->map,
1344 24140570 2018-09-09 stsp mapoff, pack->filesize - mapoff, outfile);
1345 d7464085 2018-07-09 stsp } else {
1346 24140570 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1347 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1348 24140570 2018-09-09 stsp err = got_inflate_to_file_fd(&obj->size, pack->fd,
1349 24140570 2018-09-09 stsp outfile);
1350 d7464085 2018-07-09 stsp }
1351 040bf4a1 2018-04-01 stsp } else
1352 2ce68b2f 2018-09-09 stsp err = dump_delta_chain_to_file(&obj->size, &obj->deltas, pack,
1353 3840f4c9 2018-09-12 stsp outfile, base_file, accum_file);
1354 24140570 2018-09-09 stsp
1355 a1fd68d8 2018-01-12 stsp return err;
1356 a1fd68d8 2018-01-12 stsp }
1357 e0ab43e7 2018-03-16 stsp
1358 e0ab43e7 2018-03-16 stsp const struct got_error *
1359 e0ab43e7 2018-03-16 stsp got_packfile_extract_object_to_mem(uint8_t **buf, size_t *len,
1360 7e212e3d 2018-09-09 stsp struct got_object *obj, struct got_pack *pack)
1361 e0ab43e7 2018-03-16 stsp {
1362 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1363 e0ab43e7 2018-03-16 stsp
1364 e0ab43e7 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1365 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1366 72eb3431 2018-04-01 stsp
1367 48095039 2018-09-09 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1368 7e212e3d 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1369 7e212e3d 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1370 d7464085 2018-07-09 stsp if (pack->map) {
1371 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1372 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(buf, len, pack->map,
1373 d7464085 2018-07-09 stsp mapoff, pack->filesize - mapoff);
1374 d7464085 2018-07-09 stsp } else {
1375 7e212e3d 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1376 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1377 3ab5e33c 2020-03-18 stsp err = got_inflate_to_mem_fd(buf, len, NULL, pack->fd);
1378 e0ab43e7 2018-03-16 stsp }
1379 e0ab43e7 2018-03-16 stsp } else
1380 48095039 2018-09-09 stsp err = dump_delta_chain_to_mem(buf, len, &obj->deltas, pack);
1381 7e212e3d 2018-09-09 stsp
1382 e0ab43e7 2018-03-16 stsp return err;
1383 e0ab43e7 2018-03-16 stsp }