Blame


1 0a0a3048 2018-01-10 stsp /*
2 5d56da81 2019-01-13 stsp * Copyright (c) 2018, 2019 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 1510f469 2018-09-09 stsp got_packidx_get_object_idx(struct got_packidx *packidx, struct got_object_id *id)
434 a1fd68d8 2018-01-12 stsp {
435 a1fd68d8 2018-01-12 stsp u_int8_t id0 = id->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 57b35b75 2018-06-22 stsp cmp = memcmp(id->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 876c234b 2018-09-10 stsp }
459 876c234b 2018-09-10 stsp
460 876c234b 2018-09-10 stsp const struct got_error *
461 dd88155e 2019-06-29 stsp got_packidx_match_id_str_prefix(struct got_object_id_queue *matched_ids,
462 4277420a 2019-06-29 stsp struct got_packidx *packidx, const char *id_str_prefix)
463 e09a504c 2019-06-28 stsp {
464 dd88155e 2019-06-29 stsp const struct got_error *err = NULL;
465 4277420a 2019-06-29 stsp u_int8_t id0;
466 4277420a 2019-06-29 stsp uint32_t totobj = betoh32(packidx->hdr.fanout_table[0xff]);
467 4277420a 2019-06-29 stsp char hex[3];
468 4277420a 2019-06-29 stsp size_t prefix_len = strlen(id_str_prefix);
469 e09a504c 2019-06-28 stsp struct got_packidx_object_id *oid;
470 e09a504c 2019-06-28 stsp int i;
471 e09a504c 2019-06-28 stsp
472 dd88155e 2019-06-29 stsp SIMPLEQ_INIT(matched_ids);
473 4277420a 2019-06-29 stsp
474 4277420a 2019-06-29 stsp if (prefix_len < 2)
475 6dd1ece6 2019-11-10 stsp return got_error_path(id_str_prefix, GOT_ERR_BAD_OBJ_ID_STR);
476 4277420a 2019-06-29 stsp
477 4277420a 2019-06-29 stsp hex[0] = id_str_prefix[0];
478 4277420a 2019-06-29 stsp hex[1] = id_str_prefix[1];
479 4277420a 2019-06-29 stsp hex[2] = '\0';
480 4277420a 2019-06-29 stsp if (!got_parse_xdigit(&id0, hex))
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 i = betoh32(packidx->hdr.fanout_table[id0 - 1]);
484 4277420a 2019-06-29 stsp if (i == 0)
485 4277420a 2019-06-29 stsp return NULL;
486 4277420a 2019-06-29 stsp
487 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[i];
488 4277420a 2019-06-29 stsp while (i < totobj && oid->sha1[0] == id0) {
489 4277420a 2019-06-29 stsp char id_str[SHA1_DIGEST_STRING_LENGTH];
490 dd88155e 2019-06-29 stsp struct got_object_qid *qid;
491 4277420a 2019-06-29 stsp int cmp;
492 4277420a 2019-06-29 stsp
493 4277420a 2019-06-29 stsp if (!got_sha1_digest_to_str(oid->sha1, id_str, sizeof(id_str)))
494 4277420a 2019-06-29 stsp return got_error(GOT_ERR_NO_SPACE);
495 4277420a 2019-06-29 stsp
496 4277420a 2019-06-29 stsp cmp = strncmp(id_str, id_str_prefix, prefix_len);
497 4277420a 2019-06-29 stsp if (cmp < 0) {
498 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[++i];
499 4277420a 2019-06-29 stsp continue;
500 4277420a 2019-06-29 stsp } else if (cmp > 0)
501 e09a504c 2019-06-28 stsp break;
502 4277420a 2019-06-29 stsp
503 dd88155e 2019-06-29 stsp err = got_object_qid_alloc_partial(&qid);
504 dd88155e 2019-06-29 stsp if (err)
505 dd88155e 2019-06-29 stsp break;
506 dd88155e 2019-06-29 stsp memcpy(qid->id->sha1, oid->sha1, SHA1_DIGEST_LENGTH);
507 dd88155e 2019-06-29 stsp SIMPLEQ_INSERT_TAIL(matched_ids, qid, entry);
508 4277420a 2019-06-29 stsp
509 4277420a 2019-06-29 stsp oid = &packidx->hdr.sorted_ids[++i];
510 e09a504c 2019-06-28 stsp }
511 e09a504c 2019-06-28 stsp
512 0adc7bcc 2019-06-29 stsp if (err)
513 0adc7bcc 2019-06-29 stsp got_object_id_queue_free(matched_ids);
514 dd88155e 2019-06-29 stsp return err;
515 e09a504c 2019-06-28 stsp }
516 e09a504c 2019-06-28 stsp
517 e09a504c 2019-06-28 stsp const struct got_error *
518 876c234b 2018-09-10 stsp got_pack_stop_privsep_child(struct got_pack *pack)
519 876c234b 2018-09-10 stsp {
520 96732e0b 2018-11-11 stsp const struct got_error *err = NULL;
521 876c234b 2018-09-10 stsp
522 876c234b 2018-09-10 stsp if (pack->privsep_child == NULL)
523 876c234b 2018-09-10 stsp return NULL;
524 876c234b 2018-09-10 stsp
525 876c234b 2018-09-10 stsp err = got_privsep_send_stop(pack->privsep_child->imsg_fd);
526 96732e0b 2018-11-11 stsp if (err)
527 96732e0b 2018-11-11 stsp return err;
528 96732e0b 2018-11-11 stsp err = got_privsep_wait_for_child(pack->privsep_child->pid);
529 0dd5271b 2019-05-10 stsp if (close(pack->privsep_child->imsg_fd) != 0 && err == NULL)
530 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
531 876c234b 2018-09-10 stsp free(pack->privsep_child);
532 876c234b 2018-09-10 stsp pack->privsep_child = NULL;
533 876c234b 2018-09-10 stsp return err;
534 7e656b93 2018-03-17 stsp }
535 7e656b93 2018-03-17 stsp
536 d7464085 2018-07-09 stsp const struct got_error *
537 7e656b93 2018-03-17 stsp got_pack_close(struct got_pack *pack)
538 7e656b93 2018-03-17 stsp {
539 d7464085 2018-07-09 stsp const struct got_error *err = NULL;
540 d7464085 2018-07-09 stsp
541 876c234b 2018-09-10 stsp err = got_pack_stop_privsep_child(pack);
542 876c234b 2018-09-10 stsp if (pack->map && munmap(pack->map, pack->filesize) == -1 && !err)
543 638f9024 2019-05-13 stsp err = got_error_from_errno("munmap");
544 3a6ce05a 2019-02-11 stsp if (pack->fd != -1 && close(pack->fd) != 0 && err == NULL)
545 638f9024 2019-05-13 stsp err = got_error_from_errno("close");
546 8b2180d4 2018-04-26 stsp pack->fd = -1;
547 4589e373 2018-03-17 stsp free(pack->path_packfile);
548 4589e373 2018-03-17 stsp pack->path_packfile = NULL;
549 4589e373 2018-03-17 stsp pack->filesize = 0;
550 ab2f42e7 2019-11-10 stsp if (pack->delta_cache) {
551 ab2f42e7 2019-11-10 stsp got_delta_cache_free(pack->delta_cache);
552 ab2f42e7 2019-11-10 stsp pack->delta_cache = NULL;
553 ab2f42e7 2019-11-10 stsp }
554 7e656b93 2018-03-17 stsp
555 c7fe698a 2018-01-23 stsp return err;
556 c7fe698a 2018-01-23 stsp }
557 c7fe698a 2018-01-23 stsp
558 c7fe698a 2018-01-23 stsp static const struct got_error *
559 d7464085 2018-07-09 stsp parse_object_type_and_size(uint8_t *type, uint64_t *size, size_t *len,
560 d7464085 2018-07-09 stsp struct got_pack *pack, off_t offset)
561 a487c1d0 2018-01-14 stsp {
562 a487c1d0 2018-01-14 stsp uint8_t t = 0;
563 a487c1d0 2018-01-14 stsp uint64_t s = 0;
564 a487c1d0 2018-01-14 stsp uint8_t sizeN;
565 d7464085 2018-07-09 stsp size_t mapoff = 0;
566 a487c1d0 2018-01-14 stsp int i = 0;
567 d7464085 2018-07-09 stsp
568 d7464085 2018-07-09 stsp *len = 0;
569 d7464085 2018-07-09 stsp
570 d7464085 2018-07-09 stsp if (offset >= pack->filesize)
571 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
572 d7464085 2018-07-09 stsp
573 d7464085 2018-07-09 stsp if (pack->map) {
574 d7464085 2018-07-09 stsp mapoff = (size_t)offset;
575 d7464085 2018-07-09 stsp } else {
576 d7464085 2018-07-09 stsp if (lseek(pack->fd, offset, SEEK_SET) == -1)
577 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
578 d7464085 2018-07-09 stsp }
579 a487c1d0 2018-01-14 stsp
580 a1fd68d8 2018-01-12 stsp do {
581 a1fd68d8 2018-01-12 stsp /* We do not support size values which don't fit in 64 bit. */
582 a487c1d0 2018-01-14 stsp if (i > 9)
583 a487c1d0 2018-01-14 stsp return got_error(GOT_ERR_NO_SPACE);
584 a1fd68d8 2018-01-12 stsp
585 d7464085 2018-07-09 stsp if (pack->map) {
586 d7464085 2018-07-09 stsp sizeN = *(pack->map + mapoff);
587 d7464085 2018-07-09 stsp mapoff += sizeof(sizeN);
588 d7464085 2018-07-09 stsp } else {
589 d7464085 2018-07-09 stsp ssize_t n = read(pack->fd, &sizeN, sizeof(sizeN));
590 d7464085 2018-07-09 stsp if (n < 0)
591 638f9024 2019-05-13 stsp return got_error_from_errno("read");
592 d7464085 2018-07-09 stsp if (n != sizeof(sizeN))
593 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
594 d7464085 2018-07-09 stsp }
595 d7464085 2018-07-09 stsp *len += sizeof(sizeN);
596 8251fdbc 2018-01-12 stsp
597 a1fd68d8 2018-01-12 stsp if (i == 0) {
598 a487c1d0 2018-01-14 stsp t = (sizeN & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
599 a1fd68d8 2018-01-12 stsp GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
600 a487c1d0 2018-01-14 stsp s = (sizeN & GOT_PACK_OBJ_SIZE0_VAL_MASK);
601 a1fd68d8 2018-01-12 stsp } else {
602 a1fd68d8 2018-01-12 stsp size_t shift = 4 + 7 * (i - 1);
603 a487c1d0 2018-01-14 stsp s |= ((sizeN & GOT_PACK_OBJ_SIZE_VAL_MASK) << shift);
604 a1fd68d8 2018-01-12 stsp }
605 a1fd68d8 2018-01-12 stsp i++;
606 a1fd68d8 2018-01-12 stsp } while (sizeN & GOT_PACK_OBJ_SIZE_MORE);
607 a1fd68d8 2018-01-12 stsp
608 a487c1d0 2018-01-14 stsp *type = t;
609 a487c1d0 2018-01-14 stsp *size = s;
610 a487c1d0 2018-01-14 stsp return NULL;
611 0a0a3048 2018-01-10 stsp }
612 c54542a0 2018-01-13 stsp
613 a1fd68d8 2018-01-12 stsp static const struct got_error *
614 5f25cc85 2019-11-26 stsp open_plain_object(struct got_object **obj, struct got_object_id *id,
615 5f25cc85 2019-11-26 stsp uint8_t type, off_t offset, size_t size, int idx)
616 6ccb713b 2018-01-19 stsp {
617 6ccb713b 2018-01-19 stsp *obj = calloc(1, sizeof(**obj));
618 6ccb713b 2018-01-19 stsp if (*obj == NULL)
619 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
620 6ccb713b 2018-01-19 stsp
621 6ccb713b 2018-01-19 stsp (*obj)->type = type;
622 6ccb713b 2018-01-19 stsp (*obj)->flags = GOT_OBJ_FLAG_PACKED;
623 c59b3346 2018-09-11 stsp (*obj)->pack_idx = idx;
624 6ccb713b 2018-01-19 stsp (*obj)->hdrlen = 0;
625 6ccb713b 2018-01-19 stsp (*obj)->size = size;
626 106807b4 2018-09-15 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
627 6ccb713b 2018-01-19 stsp (*obj)->pack_offset = offset;
628 b107e67f 2018-01-19 stsp
629 b107e67f 2018-01-19 stsp return NULL;
630 b107e67f 2018-01-19 stsp }
631 b107e67f 2018-01-19 stsp
632 b107e67f 2018-01-19 stsp static const struct got_error *
633 d7464085 2018-07-09 stsp parse_negative_offset(int64_t *offset, size_t *len, struct got_pack *pack,
634 d7464085 2018-07-09 stsp off_t delta_offset)
635 b107e67f 2018-01-19 stsp {
636 b107e67f 2018-01-19 stsp int64_t o = 0;
637 b107e67f 2018-01-19 stsp uint8_t offN;
638 b107e67f 2018-01-19 stsp int i = 0;
639 b107e67f 2018-01-19 stsp
640 a0de39f3 2019-08-09 stsp *offset = 0;
641 d7464085 2018-07-09 stsp *len = 0;
642 d7464085 2018-07-09 stsp
643 b107e67f 2018-01-19 stsp do {
644 b107e67f 2018-01-19 stsp /* We do not support offset values which don't fit in 64 bit. */
645 b107e67f 2018-01-19 stsp if (i > 8)
646 b107e67f 2018-01-19 stsp return got_error(GOT_ERR_NO_SPACE);
647 b107e67f 2018-01-19 stsp
648 d7464085 2018-07-09 stsp if (pack->map) {
649 d7464085 2018-07-09 stsp size_t mapoff;
650 d7464085 2018-07-09 stsp if (delta_offset >= pack->filesize)
651 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
652 d7464085 2018-07-09 stsp mapoff = (size_t)delta_offset + *len;
653 d7464085 2018-07-09 stsp offN = *(pack->map + mapoff);
654 d7464085 2018-07-09 stsp } else {
655 d7464085 2018-07-09 stsp ssize_t n;
656 d7464085 2018-07-09 stsp n = read(pack->fd, &offN, sizeof(offN));
657 d7464085 2018-07-09 stsp if (n < 0)
658 638f9024 2019-05-13 stsp return got_error_from_errno("read");
659 d7464085 2018-07-09 stsp if (n != sizeof(offN))
660 d7464085 2018-07-09 stsp return got_error(GOT_ERR_BAD_PACKFILE);
661 d7464085 2018-07-09 stsp }
662 d7464085 2018-07-09 stsp *len += sizeof(offN);
663 b107e67f 2018-01-19 stsp
664 b107e67f 2018-01-19 stsp if (i == 0)
665 b107e67f 2018-01-19 stsp o = (offN & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
666 b107e67f 2018-01-19 stsp else {
667 cecc778e 2018-01-23 stsp o++;
668 b107e67f 2018-01-19 stsp o <<= 7;
669 cecc778e 2018-01-23 stsp o += (offN & GOT_PACK_OBJ_DELTA_OFF_VAL_MASK);
670 b107e67f 2018-01-19 stsp }
671 b107e67f 2018-01-19 stsp i++;
672 b107e67f 2018-01-19 stsp } while (offN & GOT_PACK_OBJ_DELTA_OFF_MORE);
673 6ccb713b 2018-01-19 stsp
674 b107e67f 2018-01-19 stsp *offset = o;
675 6ccb713b 2018-01-19 stsp return NULL;
676 6ccb713b 2018-01-19 stsp }
677 6ccb713b 2018-01-19 stsp
678 6ccb713b 2018-01-19 stsp static const struct got_error *
679 d7464085 2018-07-09 stsp parse_offset_delta(off_t *base_offset, size_t *len, struct got_pack *pack,
680 d7464085 2018-07-09 stsp off_t offset, int tslen)
681 b107e67f 2018-01-19 stsp {
682 96f5e8b3 2018-01-23 stsp const struct got_error *err;
683 b107e67f 2018-01-19 stsp int64_t negoffset;
684 b107e67f 2018-01-19 stsp size_t negofflen;
685 b107e67f 2018-01-19 stsp
686 d7464085 2018-07-09 stsp *len = 0;
687 d7464085 2018-07-09 stsp
688 d7464085 2018-07-09 stsp err = parse_negative_offset(&negoffset, &negofflen, pack,
689 d7464085 2018-07-09 stsp offset + tslen);
690 b107e67f 2018-01-19 stsp if (err)
691 b107e67f 2018-01-19 stsp return err;
692 b107e67f 2018-01-19 stsp
693 b107e67f 2018-01-19 stsp /* Compute the base object's offset (must be in the same pack file). */
694 96f5e8b3 2018-01-23 stsp *base_offset = (offset - negoffset);
695 96f5e8b3 2018-01-23 stsp if (*base_offset <= 0)
696 b107e67f 2018-01-19 stsp return got_error(GOT_ERR_BAD_PACKFILE);
697 b107e67f 2018-01-19 stsp
698 d7464085 2018-07-09 stsp *len = negofflen;
699 96f5e8b3 2018-01-23 stsp return NULL;
700 96f5e8b3 2018-01-23 stsp }
701 96f5e8b3 2018-01-23 stsp
702 0e22967e 2018-02-11 stsp static const struct got_error *
703 c8ecd499 2018-09-09 stsp resolve_delta_chain(struct got_delta_chain *, struct got_packidx *,
704 c8ecd499 2018-09-09 stsp struct got_pack *, off_t, size_t, int, size_t, unsigned int);
705 42c69117 2019-11-10 stsp
706 42c69117 2019-11-10 stsp static const struct got_error *
707 42c69117 2019-11-10 stsp read_delta_data(uint8_t **delta_buf, size_t *delta_len,
708 42c69117 2019-11-10 stsp size_t delta_data_offset, struct got_pack *pack)
709 42c69117 2019-11-10 stsp {
710 42c69117 2019-11-10 stsp const struct got_error *err = NULL;
711 42c69117 2019-11-10 stsp
712 42c69117 2019-11-10 stsp if (pack->map) {
713 42c69117 2019-11-10 stsp if (delta_data_offset >= pack->filesize)
714 42c69117 2019-11-10 stsp return got_error(GOT_ERR_PACK_OFFSET);
715 42c69117 2019-11-10 stsp err = got_inflate_to_mem_mmap(delta_buf, delta_len, pack->map,
716 42c69117 2019-11-10 stsp delta_data_offset, pack->filesize - delta_data_offset);
717 42c69117 2019-11-10 stsp } else {
718 42c69117 2019-11-10 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET) == -1)
719 42c69117 2019-11-10 stsp return got_error_from_errno("lseek");
720 42c69117 2019-11-10 stsp err = got_inflate_to_mem_fd(delta_buf, delta_len, pack->fd);
721 42c69117 2019-11-10 stsp }
722 42c69117 2019-11-10 stsp return err;
723 42c69117 2019-11-10 stsp }
724 a3500804 2018-01-23 stsp
725 96f5e8b3 2018-01-23 stsp static const struct got_error *
726 c336f889 2018-07-23 stsp add_delta(struct got_delta_chain *deltas, off_t delta_offset, size_t tslen,
727 42c69117 2019-11-10 stsp int delta_type, size_t delta_size, size_t delta_data_offset)
728 bdd2fbb3 2018-02-11 stsp {
729 bdd2fbb3 2018-02-11 stsp struct got_delta *delta;
730 bdd2fbb3 2018-02-11 stsp
731 c336f889 2018-07-23 stsp delta = got_delta_open(delta_offset, tslen, delta_type, delta_size,
732 42c69117 2019-11-10 stsp delta_data_offset);
733 bdd2fbb3 2018-02-11 stsp if (delta == NULL)
734 638f9024 2019-05-13 stsp return got_error_from_errno("got_delta_open");
735 bdd2fbb3 2018-02-11 stsp /* delta is freed in got_object_close() */
736 bdd2fbb3 2018-02-11 stsp deltas->nentries++;
737 bdd2fbb3 2018-02-11 stsp SIMPLEQ_INSERT_HEAD(&deltas->entries, delta, entry);
738 bdd2fbb3 2018-02-11 stsp return NULL;
739 bdd2fbb3 2018-02-11 stsp }
740 bdd2fbb3 2018-02-11 stsp
741 bdd2fbb3 2018-02-11 stsp static const struct got_error *
742 6b9c9673 2018-01-23 stsp resolve_offset_delta(struct got_delta_chain *deltas,
743 c8ecd499 2018-09-09 stsp struct got_packidx *packidx, struct got_pack *pack, off_t delta_offset,
744 c8ecd499 2018-09-09 stsp size_t tslen, int delta_type, size_t delta_size, unsigned int recursion)
745 bdd2fbb3 2018-02-11 stsp
746 a3500804 2018-01-23 stsp {
747 a3500804 2018-01-23 stsp const struct got_error *err;
748 c3703302 2018-01-23 stsp off_t base_offset;
749 c3703302 2018-01-23 stsp uint8_t base_type;
750 c3703302 2018-01-23 stsp uint64_t base_size;
751 c3703302 2018-01-23 stsp size_t base_tslen;
752 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
753 42c69117 2019-11-10 stsp size_t consumed;
754 a3500804 2018-01-23 stsp
755 d7464085 2018-07-09 stsp err = parse_offset_delta(&base_offset, &consumed, pack,
756 d7464085 2018-07-09 stsp delta_offset, tslen);
757 a3500804 2018-01-23 stsp if (err)
758 a3500804 2018-01-23 stsp return err;
759 a3500804 2018-01-23 stsp
760 d7464085 2018-07-09 stsp delta_data_offset = delta_offset + tslen + consumed;
761 d7464085 2018-07-09 stsp if (delta_data_offset >= pack->filesize)
762 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
763 a53d2f13 2018-03-17 stsp
764 d7464085 2018-07-09 stsp if (pack->map == NULL) {
765 d7464085 2018-07-09 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
766 d7464085 2018-07-09 stsp if (delta_data_offset == -1)
767 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
768 d7464085 2018-07-09 stsp }
769 bdd2fbb3 2018-02-11 stsp
770 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
771 42c69117 2019-11-10 stsp delta_data_offset);
772 bdd2fbb3 2018-02-11 stsp if (err)
773 1a35c1bc 2019-05-22 stsp return err;
774 bdd2fbb3 2018-02-11 stsp
775 c3703302 2018-01-23 stsp /* An offset delta must be in the same packfile. */
776 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
777 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
778 b107e67f 2018-01-19 stsp
779 348f621c 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
780 d7464085 2018-07-09 stsp pack, base_offset);
781 b107e67f 2018-01-19 stsp if (err)
782 1a35c1bc 2019-05-22 stsp return err;
783 b107e67f 2018-01-19 stsp
784 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
785 b0e2201a 2018-06-22 stsp base_tslen, base_type, base_size, recursion - 1);
786 c3703302 2018-01-23 stsp }
787 c3703302 2018-01-23 stsp
788 c3703302 2018-01-23 stsp static const struct got_error *
789 c8ecd499 2018-09-09 stsp resolve_ref_delta(struct got_delta_chain *deltas, struct got_packidx *packidx,
790 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
791 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
792 c3703302 2018-01-23 stsp {
793 6b9c9673 2018-01-23 stsp const struct got_error *err;
794 6b9c9673 2018-01-23 stsp struct got_object_id id;
795 6b9c9673 2018-01-23 stsp int idx;
796 6b9c9673 2018-01-23 stsp off_t base_offset;
797 6b9c9673 2018-01-23 stsp uint8_t base_type;
798 6b9c9673 2018-01-23 stsp uint64_t base_size;
799 6b9c9673 2018-01-23 stsp size_t base_tslen;
800 bdd2fbb3 2018-02-11 stsp off_t delta_data_offset;
801 1a35c1bc 2019-05-22 stsp uint8_t *delta_buf;
802 a53d2f13 2018-03-17 stsp size_t delta_len;
803 6b9c9673 2018-01-23 stsp
804 42c69117 2019-11-10 stsp if (delta_offset + tslen >= pack->filesize)
805 d7464085 2018-07-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
806 bdd2fbb3 2018-02-11 stsp
807 d7464085 2018-07-09 stsp if (pack->map == NULL) {
808 d7464085 2018-07-09 stsp }
809 a53d2f13 2018-03-17 stsp
810 d7464085 2018-07-09 stsp if (pack->map) {
811 42c69117 2019-11-10 stsp size_t mapoff = delta_offset + tslen;
812 d7464085 2018-07-09 stsp memcpy(&id, pack->map + mapoff, sizeof(id));
813 d7464085 2018-07-09 stsp mapoff += sizeof(id);
814 42c69117 2019-11-10 stsp delta_data_offset = (off_t)mapoff;
815 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&delta_buf, &delta_len, pack->map,
816 45202a8f 2018-07-11 stsp mapoff, pack->filesize - mapoff);
817 d7464085 2018-07-09 stsp if (err)
818 1a35c1bc 2019-05-22 stsp return err;
819 d7464085 2018-07-09 stsp } else {
820 42c69117 2019-11-10 stsp ssize_t n;
821 42c69117 2019-11-10 stsp delta_data_offset = lseek(pack->fd, 0, SEEK_CUR);
822 42c69117 2019-11-10 stsp if (delta_data_offset == -1)
823 42c69117 2019-11-10 stsp return got_error_from_errno("lseek");
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 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&delta_buf, &delta_len, pack->fd);
830 d7464085 2018-07-09 stsp if (err)
831 1a35c1bc 2019-05-22 stsp return err;
832 d7464085 2018-07-09 stsp }
833 d7464085 2018-07-09 stsp
834 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type, delta_size,
835 42c69117 2019-11-10 stsp delta_data_offset);
836 bdd2fbb3 2018-02-11 stsp if (err)
837 1a35c1bc 2019-05-22 stsp return err;
838 bdd2fbb3 2018-02-11 stsp
839 652b2703 2018-06-22 stsp /* Delta base must be in the same pack file. */
840 1510f469 2018-09-09 stsp idx = got_packidx_get_object_idx(packidx, &id);
841 1a35c1bc 2019-05-22 stsp if (idx == -1)
842 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKFILE);
843 6b9c9673 2018-01-23 stsp
844 6b9c9673 2018-01-23 stsp base_offset = get_object_offset(packidx, idx);
845 1a35c1bc 2019-05-22 stsp if (base_offset == (uint64_t)-1)
846 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_BAD_PACKIDX);
847 6b9c9673 2018-01-23 stsp
848 1a35c1bc 2019-05-22 stsp if (base_offset >= pack->filesize)
849 1a35c1bc 2019-05-22 stsp return got_error(GOT_ERR_PACK_OFFSET);
850 6b9c9673 2018-01-23 stsp
851 6b9c9673 2018-01-23 stsp err = parse_object_type_and_size(&base_type, &base_size, &base_tslen,
852 d7464085 2018-07-09 stsp pack, base_offset);
853 6b9c9673 2018-01-23 stsp if (err)
854 1a35c1bc 2019-05-22 stsp return err;
855 6b9c9673 2018-01-23 stsp
856 1a35c1bc 2019-05-22 stsp return resolve_delta_chain(deltas, packidx, pack, base_offset,
857 0c048b15 2018-04-27 stsp base_tslen, base_type, base_size, recursion - 1);
858 6b9c9673 2018-01-23 stsp }
859 6b9c9673 2018-01-23 stsp
860 6b9c9673 2018-01-23 stsp static const struct got_error *
861 c8ecd499 2018-09-09 stsp resolve_delta_chain(struct got_delta_chain *deltas, struct got_packidx *packidx,
862 c8ecd499 2018-09-09 stsp struct got_pack *pack, off_t delta_offset, size_t tslen, int delta_type,
863 c8ecd499 2018-09-09 stsp size_t delta_size, unsigned int recursion)
864 6b9c9673 2018-01-23 stsp {
865 c3703302 2018-01-23 stsp const struct got_error *err = NULL;
866 c3703302 2018-01-23 stsp
867 5b7e13a7 2018-04-02 stsp if (--recursion == 0)
868 5b7e13a7 2018-04-02 stsp return got_error(GOT_ERR_RECURSION);
869 5b7e13a7 2018-04-02 stsp
870 c3703302 2018-01-23 stsp switch (delta_type) {
871 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_COMMIT:
872 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TREE:
873 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_BLOB:
874 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_TAG:
875 c3703302 2018-01-23 stsp /* Plain types are the final delta base. Recursion ends. */
876 c336f889 2018-07-23 stsp err = add_delta(deltas, delta_offset, tslen, delta_type,
877 42c69117 2019-11-10 stsp delta_size, 0);
878 4e8cda55 2018-01-19 stsp break;
879 a3500804 2018-01-23 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
880 c8ecd499 2018-09-09 stsp err = resolve_offset_delta(deltas, packidx, pack,
881 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
882 96f5e8b3 2018-01-23 stsp break;
883 4e8cda55 2018-01-19 stsp case GOT_OBJ_TYPE_REF_DELTA:
884 c8ecd499 2018-09-09 stsp err = resolve_ref_delta(deltas, packidx, pack,
885 b0e2201a 2018-06-22 stsp delta_offset, tslen, delta_type, delta_size, recursion - 1);
886 6b9c9673 2018-01-23 stsp break;
887 4e8cda55 2018-01-19 stsp default:
888 4810de4a 2018-04-01 stsp return got_error(GOT_ERR_OBJ_TYPE);
889 4e8cda55 2018-01-19 stsp }
890 96f5e8b3 2018-01-23 stsp
891 96f5e8b3 2018-01-23 stsp return err;
892 96f5e8b3 2018-01-23 stsp }
893 96f5e8b3 2018-01-23 stsp
894 96f5e8b3 2018-01-23 stsp static const struct got_error *
895 a98c62b1 2018-09-09 stsp open_delta_object(struct got_object **obj, struct got_packidx *packidx,
896 a98c62b1 2018-09-09 stsp struct got_pack *pack, struct got_object_id *id, off_t offset,
897 c59b3346 2018-09-11 stsp size_t tslen, int delta_type, size_t delta_size, int idx)
898 96f5e8b3 2018-01-23 stsp {
899 96f5e8b3 2018-01-23 stsp const struct got_error *err = NULL;
900 96f5e8b3 2018-01-23 stsp int resolved_type;
901 4e8cda55 2018-01-19 stsp
902 b107e67f 2018-01-19 stsp *obj = calloc(1, sizeof(**obj));
903 b107e67f 2018-01-19 stsp if (*obj == NULL)
904 638f9024 2019-05-13 stsp return got_error_from_errno("calloc");
905 b107e67f 2018-01-19 stsp
906 96f5e8b3 2018-01-23 stsp (*obj)->flags = 0;
907 b107e67f 2018-01-19 stsp (*obj)->hdrlen = 0;
908 39e73dc9 2018-03-03 stsp (*obj)->size = 0; /* Not known because deltas aren't applied yet. */
909 106807b4 2018-09-15 stsp memcpy(&(*obj)->id, id, sizeof((*obj)->id));
910 cecc778e 2018-01-23 stsp (*obj)->pack_offset = offset + tslen;
911 1a35c1bc 2019-05-22 stsp
912 1a35c1bc 2019-05-22 stsp SIMPLEQ_INIT(&(*obj)->deltas.entries);
913 1a35c1bc 2019-05-22 stsp (*obj)->flags |= GOT_OBJ_FLAG_DELTIFIED;
914 96f5e8b3 2018-01-23 stsp (*obj)->flags |= GOT_OBJ_FLAG_PACKED;
915 c59b3346 2018-09-11 stsp (*obj)->pack_idx = idx;
916 96f5e8b3 2018-01-23 stsp
917 c8ecd499 2018-09-09 stsp err = resolve_delta_chain(&(*obj)->deltas, packidx, pack, offset,
918 b0e2201a 2018-06-22 stsp tslen, delta_type, delta_size, GOT_DELTA_CHAIN_RECURSION_MAX);
919 96f5e8b3 2018-01-23 stsp if (err)
920 96f5e8b3 2018-01-23 stsp goto done;
921 96f5e8b3 2018-01-23 stsp
922 96f5e8b3 2018-01-23 stsp err = got_delta_chain_get_base_type(&resolved_type, &(*obj)->deltas);
923 96f5e8b3 2018-01-23 stsp if (err)
924 96f5e8b3 2018-01-23 stsp goto done;
925 96f5e8b3 2018-01-23 stsp (*obj)->type = resolved_type;
926 96f5e8b3 2018-01-23 stsp done:
927 96f5e8b3 2018-01-23 stsp if (err) {
928 96f5e8b3 2018-01-23 stsp got_object_close(*obj);
929 96f5e8b3 2018-01-23 stsp *obj = NULL;
930 96f5e8b3 2018-01-23 stsp }
931 96f5e8b3 2018-01-23 stsp return err;
932 b107e67f 2018-01-19 stsp }
933 b107e67f 2018-01-19 stsp
934 2090a03d 2018-09-09 stsp const struct got_error *
935 2090a03d 2018-09-09 stsp got_packfile_open_object(struct got_object **obj, struct got_pack *pack,
936 6fd11751 2018-06-04 stsp struct got_packidx *packidx, int idx, struct got_object_id *id)
937 a1fd68d8 2018-01-12 stsp {
938 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
939 a1fd68d8 2018-01-12 stsp off_t offset;
940 6c00b545 2018-01-17 stsp uint8_t type;
941 6c00b545 2018-01-17 stsp uint64_t size;
942 3ee5fc21 2018-01-17 stsp size_t tslen;
943 a1fd68d8 2018-01-12 stsp
944 6c00b545 2018-01-17 stsp *obj = NULL;
945 a1fd68d8 2018-01-12 stsp
946 a1fd68d8 2018-01-12 stsp offset = get_object_offset(packidx, idx);
947 a1fd68d8 2018-01-12 stsp if (offset == (uint64_t)-1)
948 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_BAD_PACKIDX);
949 a1fd68d8 2018-01-12 stsp
950 d7464085 2018-07-09 stsp err = parse_object_type_and_size(&type, &size, &tslen, pack, offset);
951 a1fd68d8 2018-01-12 stsp if (err)
952 35c73765 2018-09-09 stsp return err;
953 a1fd68d8 2018-01-12 stsp
954 6c00b545 2018-01-17 stsp switch (type) {
955 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_COMMIT:
956 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_TREE:
957 6c00b545 2018-01-17 stsp case GOT_OBJ_TYPE_BLOB:
958 d33fc9ef 2018-01-23 stsp case GOT_OBJ_TYPE_TAG:
959 5f25cc85 2019-11-26 stsp err = open_plain_object(obj, id, type, offset + tslen,
960 5f25cc85 2019-11-26 stsp size, idx);
961 6c00b545 2018-01-17 stsp break;
962 b107e67f 2018-01-19 stsp case GOT_OBJ_TYPE_OFFSET_DELTA:
963 a48db7e5 2018-01-23 stsp case GOT_OBJ_TYPE_REF_DELTA:
964 a98c62b1 2018-09-09 stsp err = open_delta_object(obj, packidx, pack, id, offset,
965 c59b3346 2018-09-11 stsp tslen, type, size, idx);
966 b107e67f 2018-01-19 stsp break;
967 6c00b545 2018-01-17 stsp default:
968 4810de4a 2018-04-01 stsp err = got_error(GOT_ERR_OBJ_TYPE);
969 35c73765 2018-09-09 stsp break;
970 35c73765 2018-09-09 stsp }
971 35c73765 2018-09-09 stsp
972 3ee5fc21 2018-01-17 stsp return err;
973 3ee5fc21 2018-01-17 stsp }
974 efd2a263 2018-01-19 stsp
975 efd2a263 2018-01-19 stsp static const struct got_error *
976 42c69117 2019-11-10 stsp get_delta_chain_max_size(uint64_t *max_size, struct got_delta_chain *deltas,
977 42c69117 2019-11-10 stsp struct got_pack *pack)
978 22484865 2018-03-13 stsp {
979 22484865 2018-03-13 stsp struct got_delta *delta;
980 22484865 2018-03-13 stsp uint64_t base_size = 0, result_size = 0;
981 22484865 2018-03-13 stsp
982 22484865 2018-03-13 stsp *max_size = 0;
983 22484865 2018-03-13 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
984 22484865 2018-03-13 stsp /* Plain object types are the delta base. */
985 22484865 2018-03-13 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
986 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TREE &&
987 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
988 22484865 2018-03-13 stsp delta->type != GOT_OBJ_TYPE_TAG) {
989 22484865 2018-03-13 stsp const struct got_error *err;
990 42c69117 2019-11-10 stsp uint8_t *delta_buf;
991 42c69117 2019-11-10 stsp size_t delta_len;
992 ab2f42e7 2019-11-10 stsp int cached = 1;
993 42c69117 2019-11-10 stsp
994 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
995 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
996 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
997 ab2f42e7 2019-11-10 stsp cached = 0;
998 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
999 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1000 ab2f42e7 2019-11-10 stsp if (err)
1001 ab2f42e7 2019-11-10 stsp return err;
1002 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1003 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1004 ab2f42e7 2019-11-10 stsp if (err == NULL)
1005 ab2f42e7 2019-11-10 stsp cached = 1;
1006 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1007 ab2f42e7 2019-11-10 stsp free(delta_buf);
1008 ab2f42e7 2019-11-10 stsp return err;
1009 ab2f42e7 2019-11-10 stsp }
1010 ab2f42e7 2019-11-10 stsp }
1011 a53d2f13 2018-03-17 stsp err = got_delta_get_sizes(&base_size, &result_size,
1012 42c69117 2019-11-10 stsp delta_buf, delta_len);
1013 ab2f42e7 2019-11-10 stsp if (!cached)
1014 ab2f42e7 2019-11-10 stsp free(delta_buf);
1015 22484865 2018-03-13 stsp if (err)
1016 22484865 2018-03-13 stsp return err;
1017 22484865 2018-03-13 stsp } else
1018 22484865 2018-03-13 stsp base_size = delta->size;
1019 22484865 2018-03-13 stsp if (base_size > *max_size)
1020 22484865 2018-03-13 stsp *max_size = base_size;
1021 22484865 2018-03-13 stsp if (result_size > *max_size)
1022 22484865 2018-03-13 stsp *max_size = result_size;
1023 22484865 2018-03-13 stsp }
1024 bd1223b9 2018-03-14 stsp
1025 9feb4ff2 2018-03-14 stsp return NULL;
1026 ac544f8c 2019-01-13 stsp }
1027 ac544f8c 2019-01-13 stsp
1028 ac544f8c 2019-01-13 stsp const struct got_error *
1029 42c69117 2019-11-10 stsp got_pack_get_max_delta_object_size(uint64_t *size, struct got_object *obj,
1030 42c69117 2019-11-10 stsp struct got_pack *pack)
1031 ac544f8c 2019-01-13 stsp {
1032 85a703fa 2019-01-13 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0)
1033 85a703fa 2019-01-13 stsp return got_error(GOT_ERR_OBJ_TYPE);
1034 85a703fa 2019-01-13 stsp
1035 42c69117 2019-11-10 stsp return get_delta_chain_max_size(size, &obj->deltas, pack);
1036 22484865 2018-03-13 stsp }
1037 22484865 2018-03-13 stsp
1038 22484865 2018-03-13 stsp static const struct got_error *
1039 b29656e2 2018-03-16 stsp dump_delta_chain_to_file(size_t *result_size, struct got_delta_chain *deltas,
1040 3840f4c9 2018-09-12 stsp struct got_pack *pack, FILE *outfile, FILE *base_file, FILE *accum_file)
1041 efd2a263 2018-01-19 stsp {
1042 efd2a263 2018-01-19 stsp const struct got_error *err = NULL;
1043 6691714a 2018-01-23 stsp struct got_delta *delta;
1044 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1045 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1046 22484865 2018-03-13 stsp uint64_t max_size;
1047 6691714a 2018-01-23 stsp int n = 0;
1048 b29656e2 2018-03-16 stsp
1049 b29656e2 2018-03-16 stsp *result_size = 0;
1050 3ee5fc21 2018-01-17 stsp
1051 710bb5ca 2018-01-23 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1052 6691714a 2018-01-23 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1053 efd2a263 2018-01-19 stsp
1054 8628c62d 2018-03-15 stsp /* We process small enough files entirely in memory for speed. */
1055 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1056 22484865 2018-03-13 stsp if (err)
1057 22484865 2018-03-13 stsp return err;
1058 8628c62d 2018-03-15 stsp if (max_size < GOT_DELTA_RESULT_SIZE_CACHED_MAX) {
1059 8628c62d 2018-03-15 stsp accum_buf = malloc(max_size);
1060 8628c62d 2018-03-15 stsp if (accum_buf == NULL)
1061 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1062 3840f4c9 2018-09-12 stsp base_file = NULL;
1063 3840f4c9 2018-09-12 stsp accum_file = NULL;
1064 6691714a 2018-01-23 stsp }
1065 efd2a263 2018-01-19 stsp
1066 6691714a 2018-01-23 stsp /* Deltas are ordered in ascending order. */
1067 710bb5ca 2018-01-23 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1068 ab2f42e7 2019-11-10 stsp int cached = 1;
1069 a6b158cc 2018-02-11 stsp if (n == 0) {
1070 34fca9c3 2018-11-11 stsp size_t mapoff;
1071 0c048b15 2018-04-27 stsp off_t delta_data_offset;
1072 9db65d41 2018-03-14 stsp
1073 a6b158cc 2018-02-11 stsp /* Plain object types are the delta base. */
1074 a6b158cc 2018-02-11 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1075 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1076 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1077 a6b158cc 2018-02-11 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1078 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1079 72eb3431 2018-04-01 stsp goto done;
1080 72eb3431 2018-04-01 stsp }
1081 72eb3431 2018-04-01 stsp
1082 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1083 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1084 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1085 0c048b15 2018-04-27 stsp goto done;
1086 0c048b15 2018-04-27 stsp }
1087 d7464085 2018-07-09 stsp if (pack->map == NULL) {
1088 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1089 d7464085 2018-07-09 stsp == -1) {
1090 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1091 d7464085 2018-07-09 stsp goto done;
1092 d7464085 2018-07-09 stsp }
1093 bdd2fbb3 2018-02-11 stsp }
1094 d7464085 2018-07-09 stsp if (base_file) {
1095 d7464085 2018-07-09 stsp if (pack->map) {
1096 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1097 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(
1098 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1099 d7464085 2018-07-09 stsp pack->filesize - mapoff, base_file);
1100 d7464085 2018-07-09 stsp } else
1101 34fca9c3 2018-11-11 stsp err = got_inflate_to_file_fd(
1102 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd, base_file);
1103 d7464085 2018-07-09 stsp } else {
1104 d7464085 2018-07-09 stsp if (pack->map) {
1105 d7464085 2018-07-09 stsp mapoff = (size_t)delta_data_offset;
1106 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1107 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1108 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1109 d7464085 2018-07-09 stsp } else
1110 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1111 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd);
1112 8628c62d 2018-03-15 stsp }
1113 a6b158cc 2018-02-11 stsp if (err)
1114 a6b158cc 2018-02-11 stsp goto done;
1115 a6b158cc 2018-02-11 stsp n++;
1116 8628c62d 2018-03-15 stsp if (base_file)
1117 8628c62d 2018-03-15 stsp rewind(base_file);
1118 a6b158cc 2018-02-11 stsp continue;
1119 9db65d41 2018-03-14 stsp }
1120 885d3e02 2018-01-27 stsp
1121 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1122 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1123 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1124 ab2f42e7 2019-11-10 stsp cached = 0;
1125 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1126 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1127 ab2f42e7 2019-11-10 stsp if (err)
1128 ab2f42e7 2019-11-10 stsp goto done;
1129 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1130 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1131 ab2f42e7 2019-11-10 stsp if (err == NULL)
1132 ab2f42e7 2019-11-10 stsp cached = 1;
1133 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1134 ab2f42e7 2019-11-10 stsp free(delta_buf);
1135 ab2f42e7 2019-11-10 stsp goto done;
1136 ab2f42e7 2019-11-10 stsp }
1137 ab2f42e7 2019-11-10 stsp }
1138 8628c62d 2018-03-15 stsp if (base_buf) {
1139 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1140 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1141 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1142 8628c62d 2018-03-15 stsp n++;
1143 8628c62d 2018-03-15 stsp } else {
1144 42c69117 2019-11-10 stsp err = got_delta_apply(base_file, delta_buf,
1145 42c69117 2019-11-10 stsp delta_len,
1146 8628c62d 2018-03-15 stsp /* Final delta application writes to output file. */
1147 b29656e2 2018-03-16 stsp ++n < deltas->nentries ? accum_file : outfile,
1148 b29656e2 2018-03-16 stsp &accum_size);
1149 8628c62d 2018-03-15 stsp }
1150 ab2f42e7 2019-11-10 stsp if (!cached)
1151 ab2f42e7 2019-11-10 stsp free(delta_buf);
1152 6691714a 2018-01-23 stsp if (err)
1153 6691714a 2018-01-23 stsp goto done;
1154 6691714a 2018-01-23 stsp
1155 710bb5ca 2018-01-23 stsp if (n < deltas->nentries) {
1156 6691714a 2018-01-23 stsp /* Accumulated delta becomes the new base. */
1157 8628c62d 2018-03-15 stsp if (base_buf) {
1158 8628c62d 2018-03-15 stsp uint8_t *tmp = accum_buf;
1159 34fca9c3 2018-11-11 stsp /*
1160 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation
1161 34fca9c3 2018-11-11 stsp * buffer. Ensure it can hold the largest
1162 34fca9c3 2018-11-11 stsp * result in the delta chain. The initial
1163 34fca9c3 2018-11-11 stsp * allocation might have been smaller.
1164 34fca9c3 2018-11-11 stsp */
1165 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1166 34fca9c3 2018-11-11 stsp uint8_t *p;
1167 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1168 34fca9c3 2018-11-11 stsp if (p == NULL) {
1169 638f9024 2019-05-13 stsp err = got_error_from_errno(
1170 230a42bd 2019-05-11 jcs "reallocarray");
1171 34fca9c3 2018-11-11 stsp goto done;
1172 34fca9c3 2018-11-11 stsp }
1173 34fca9c3 2018-11-11 stsp base_buf = p;
1174 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1175 34fca9c3 2018-11-11 stsp }
1176 8628c62d 2018-03-15 stsp accum_buf = base_buf;
1177 8628c62d 2018-03-15 stsp base_buf = tmp;
1178 8628c62d 2018-03-15 stsp } else {
1179 8628c62d 2018-03-15 stsp FILE *tmp = accum_file;
1180 8628c62d 2018-03-15 stsp accum_file = base_file;
1181 8628c62d 2018-03-15 stsp base_file = tmp;
1182 8628c62d 2018-03-15 stsp rewind(base_file);
1183 8628c62d 2018-03-15 stsp rewind(accum_file);
1184 8628c62d 2018-03-15 stsp }
1185 6691714a 2018-01-23 stsp }
1186 6691714a 2018-01-23 stsp }
1187 6691714a 2018-01-23 stsp
1188 6691714a 2018-01-23 stsp done:
1189 8628c62d 2018-03-15 stsp free(base_buf);
1190 8628c62d 2018-03-15 stsp if (accum_buf) {
1191 8628c62d 2018-03-15 stsp size_t len = fwrite(accum_buf, 1, accum_size, outfile);
1192 8628c62d 2018-03-15 stsp free(accum_buf);
1193 8628c62d 2018-03-15 stsp if (len != accum_size)
1194 673702af 2018-07-23 stsp err = got_ferror(outfile, GOT_ERR_IO);
1195 8628c62d 2018-03-15 stsp }
1196 6691714a 2018-01-23 stsp rewind(outfile);
1197 b29656e2 2018-03-16 stsp if (err == NULL)
1198 b29656e2 2018-03-16 stsp *result_size = accum_size;
1199 e0ab43e7 2018-03-16 stsp return err;
1200 e0ab43e7 2018-03-16 stsp }
1201 e0ab43e7 2018-03-16 stsp
1202 e0ab43e7 2018-03-16 stsp static const struct got_error *
1203 e0ab43e7 2018-03-16 stsp dump_delta_chain_to_mem(uint8_t **outbuf, size_t *outlen,
1204 48095039 2018-09-09 stsp struct got_delta_chain *deltas, struct got_pack *pack)
1205 e0ab43e7 2018-03-16 stsp {
1206 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1207 e0ab43e7 2018-03-16 stsp struct got_delta *delta;
1208 42c69117 2019-11-10 stsp uint8_t *base_buf = NULL, *accum_buf = NULL, *delta_buf;
1209 42c69117 2019-11-10 stsp size_t base_bufsz = 0, accum_size = 0, delta_len;
1210 e0ab43e7 2018-03-16 stsp uint64_t max_size;
1211 e0ab43e7 2018-03-16 stsp int n = 0;
1212 e0ab43e7 2018-03-16 stsp
1213 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1214 e0ab43e7 2018-03-16 stsp *outlen = 0;
1215 e0ab43e7 2018-03-16 stsp
1216 e0ab43e7 2018-03-16 stsp if (SIMPLEQ_EMPTY(&deltas->entries))
1217 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_BAD_DELTA_CHAIN);
1218 e0ab43e7 2018-03-16 stsp
1219 42c69117 2019-11-10 stsp err = get_delta_chain_max_size(&max_size, deltas, pack);
1220 e0ab43e7 2018-03-16 stsp if (err)
1221 e0ab43e7 2018-03-16 stsp return err;
1222 e0ab43e7 2018-03-16 stsp accum_buf = malloc(max_size);
1223 e0ab43e7 2018-03-16 stsp if (accum_buf == NULL)
1224 638f9024 2019-05-13 stsp return got_error_from_errno("malloc");
1225 e0ab43e7 2018-03-16 stsp
1226 e0ab43e7 2018-03-16 stsp /* Deltas are ordered in ascending order. */
1227 e0ab43e7 2018-03-16 stsp SIMPLEQ_FOREACH(delta, &deltas->entries, entry) {
1228 ab2f42e7 2019-11-10 stsp int cached = 1;
1229 e0ab43e7 2018-03-16 stsp if (n == 0) {
1230 0c048b15 2018-04-27 stsp size_t delta_data_offset;
1231 e0ab43e7 2018-03-16 stsp
1232 e0ab43e7 2018-03-16 stsp /* Plain object types are the delta base. */
1233 e0ab43e7 2018-03-16 stsp if (delta->type != GOT_OBJ_TYPE_COMMIT &&
1234 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TREE &&
1235 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_BLOB &&
1236 e0ab43e7 2018-03-16 stsp delta->type != GOT_OBJ_TYPE_TAG) {
1237 72eb3431 2018-04-01 stsp err = got_error(GOT_ERR_BAD_DELTA_CHAIN);
1238 72eb3431 2018-04-01 stsp goto done;
1239 72eb3431 2018-04-01 stsp }
1240 72eb3431 2018-04-01 stsp
1241 0c048b15 2018-04-27 stsp delta_data_offset = delta->offset + delta->tslen;
1242 0c048b15 2018-04-27 stsp if (delta_data_offset >= pack->filesize) {
1243 0c048b15 2018-04-27 stsp err = got_error(GOT_ERR_PACK_OFFSET);
1244 0c048b15 2018-04-27 stsp goto done;
1245 0c048b15 2018-04-27 stsp }
1246 d7464085 2018-07-09 stsp if (pack->map) {
1247 d7464085 2018-07-09 stsp size_t mapoff = (size_t)delta_data_offset;
1248 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(&base_buf,
1249 34fca9c3 2018-11-11 stsp &base_bufsz, pack->map, mapoff,
1250 d7464085 2018-07-09 stsp pack->filesize - mapoff);
1251 d7464085 2018-07-09 stsp } else {
1252 d7464085 2018-07-09 stsp if (lseek(pack->fd, delta_data_offset, SEEK_SET)
1253 d7464085 2018-07-09 stsp == -1) {
1254 638f9024 2019-05-13 stsp err = got_error_from_errno("lseek");
1255 d7464085 2018-07-09 stsp goto done;
1256 d7464085 2018-07-09 stsp }
1257 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(&base_buf,
1258 34fca9c3 2018-11-11 stsp &base_bufsz, pack->fd);
1259 e0ab43e7 2018-03-16 stsp }
1260 d7464085 2018-07-09 stsp if (err)
1261 d7464085 2018-07-09 stsp goto done;
1262 e0ab43e7 2018-03-16 stsp n++;
1263 e0ab43e7 2018-03-16 stsp continue;
1264 e0ab43e7 2018-03-16 stsp }
1265 e0ab43e7 2018-03-16 stsp
1266 ab2f42e7 2019-11-10 stsp got_delta_cache_get(&delta_buf, &delta_len,
1267 ab2f42e7 2019-11-10 stsp pack->delta_cache, delta->data_offset);
1268 ab2f42e7 2019-11-10 stsp if (delta_buf == NULL) {
1269 ab2f42e7 2019-11-10 stsp cached = 0;
1270 ab2f42e7 2019-11-10 stsp err = read_delta_data(&delta_buf, &delta_len,
1271 ab2f42e7 2019-11-10 stsp delta->data_offset, pack);
1272 ab2f42e7 2019-11-10 stsp if (err)
1273 ab2f42e7 2019-11-10 stsp goto done;
1274 ab2f42e7 2019-11-10 stsp err = got_delta_cache_add(pack->delta_cache,
1275 ab2f42e7 2019-11-10 stsp delta->data_offset, delta_buf, delta_len);
1276 ab2f42e7 2019-11-10 stsp if (err == NULL)
1277 ab2f42e7 2019-11-10 stsp cached = 1;
1278 ab2f42e7 2019-11-10 stsp else if (err->code != GOT_ERR_NO_SPACE) {
1279 ab2f42e7 2019-11-10 stsp free(delta_buf);
1280 ab2f42e7 2019-11-10 stsp goto done;
1281 ab2f42e7 2019-11-10 stsp }
1282 ab2f42e7 2019-11-10 stsp }
1283 34fca9c3 2018-11-11 stsp err = got_delta_apply_in_mem(base_buf, base_bufsz,
1284 42c69117 2019-11-10 stsp delta_buf, delta_len, accum_buf,
1285 34fca9c3 2018-11-11 stsp &accum_size, max_size);
1286 ab2f42e7 2019-11-10 stsp if (!cached)
1287 ab2f42e7 2019-11-10 stsp free(delta_buf);
1288 e0ab43e7 2018-03-16 stsp n++;
1289 e0ab43e7 2018-03-16 stsp if (err)
1290 e0ab43e7 2018-03-16 stsp goto done;
1291 e0ab43e7 2018-03-16 stsp
1292 e0ab43e7 2018-03-16 stsp if (n < deltas->nentries) {
1293 e0ab43e7 2018-03-16 stsp /* Accumulated delta becomes the new base. */
1294 e0ab43e7 2018-03-16 stsp uint8_t *tmp = accum_buf;
1295 34fca9c3 2018-11-11 stsp /*
1296 34fca9c3 2018-11-11 stsp * Base buffer switches roles with accumulation buffer.
1297 34fca9c3 2018-11-11 stsp * Ensure it can hold the largest result in the delta
1298 34fca9c3 2018-11-11 stsp * chain. Initial allocation might have been smaller.
1299 34fca9c3 2018-11-11 stsp */
1300 34fca9c3 2018-11-11 stsp if (base_bufsz < max_size) {
1301 34fca9c3 2018-11-11 stsp uint8_t *p;
1302 34fca9c3 2018-11-11 stsp p = reallocarray(base_buf, 1, max_size);
1303 34fca9c3 2018-11-11 stsp if (p == NULL) {
1304 638f9024 2019-05-13 stsp err = got_error_from_errno(
1305 230a42bd 2019-05-11 jcs "reallocarray");
1306 34fca9c3 2018-11-11 stsp goto done;
1307 34fca9c3 2018-11-11 stsp }
1308 34fca9c3 2018-11-11 stsp base_buf = p;
1309 34fca9c3 2018-11-11 stsp base_bufsz = max_size;
1310 34fca9c3 2018-11-11 stsp }
1311 e0ab43e7 2018-03-16 stsp accum_buf = base_buf;
1312 e0ab43e7 2018-03-16 stsp base_buf = tmp;
1313 e0ab43e7 2018-03-16 stsp }
1314 e0ab43e7 2018-03-16 stsp }
1315 e0ab43e7 2018-03-16 stsp
1316 e0ab43e7 2018-03-16 stsp done:
1317 e0ab43e7 2018-03-16 stsp free(base_buf);
1318 e0ab43e7 2018-03-16 stsp if (err) {
1319 e0ab43e7 2018-03-16 stsp free(accum_buf);
1320 e0ab43e7 2018-03-16 stsp *outbuf = NULL;
1321 e0ab43e7 2018-03-16 stsp *outlen = 0;
1322 e0ab43e7 2018-03-16 stsp } else {
1323 e0ab43e7 2018-03-16 stsp *outbuf = accum_buf;
1324 e0ab43e7 2018-03-16 stsp *outlen = accum_size;
1325 e0ab43e7 2018-03-16 stsp }
1326 efd2a263 2018-01-19 stsp return err;
1327 efd2a263 2018-01-19 stsp }
1328 efd2a263 2018-01-19 stsp
1329 3ee5fc21 2018-01-17 stsp const struct got_error *
1330 24140570 2018-09-09 stsp got_packfile_extract_object(struct got_pack *pack, struct got_object *obj,
1331 3840f4c9 2018-09-12 stsp FILE *outfile, FILE *base_file, FILE *accum_file)
1332 3ee5fc21 2018-01-17 stsp {
1333 3ee5fc21 2018-01-17 stsp const struct got_error *err = NULL;
1334 3ee5fc21 2018-01-17 stsp
1335 3ee5fc21 2018-01-17 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1336 3ee5fc21 2018-01-17 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1337 2ce68b2f 2018-09-09 stsp
1338 ef2bccd9 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1339 24140570 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1340 24140570 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1341 72eb3431 2018-04-01 stsp
1342 d7464085 2018-07-09 stsp if (pack->map) {
1343 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1344 d7464085 2018-07-09 stsp err = got_inflate_to_file_mmap(&obj->size, pack->map,
1345 24140570 2018-09-09 stsp mapoff, pack->filesize - mapoff, outfile);
1346 d7464085 2018-07-09 stsp } else {
1347 24140570 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1348 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1349 24140570 2018-09-09 stsp err = got_inflate_to_file_fd(&obj->size, pack->fd,
1350 24140570 2018-09-09 stsp outfile);
1351 d7464085 2018-07-09 stsp }
1352 040bf4a1 2018-04-01 stsp } else
1353 2ce68b2f 2018-09-09 stsp err = dump_delta_chain_to_file(&obj->size, &obj->deltas, pack,
1354 3840f4c9 2018-09-12 stsp outfile, base_file, accum_file);
1355 24140570 2018-09-09 stsp
1356 a1fd68d8 2018-01-12 stsp return err;
1357 a1fd68d8 2018-01-12 stsp }
1358 e0ab43e7 2018-03-16 stsp
1359 e0ab43e7 2018-03-16 stsp const struct got_error *
1360 e0ab43e7 2018-03-16 stsp got_packfile_extract_object_to_mem(uint8_t **buf, size_t *len,
1361 7e212e3d 2018-09-09 stsp struct got_object *obj, struct got_pack *pack)
1362 e0ab43e7 2018-03-16 stsp {
1363 e0ab43e7 2018-03-16 stsp const struct got_error *err = NULL;
1364 e0ab43e7 2018-03-16 stsp
1365 e0ab43e7 2018-03-16 stsp if ((obj->flags & GOT_OBJ_FLAG_PACKED) == 0)
1366 e0ab43e7 2018-03-16 stsp return got_error(GOT_ERR_OBJ_NOT_PACKED);
1367 72eb3431 2018-04-01 stsp
1368 48095039 2018-09-09 stsp if ((obj->flags & GOT_OBJ_FLAG_DELTIFIED) == 0) {
1369 7e212e3d 2018-09-09 stsp if (obj->pack_offset >= pack->filesize)
1370 7e212e3d 2018-09-09 stsp return got_error(GOT_ERR_PACK_OFFSET);
1371 d7464085 2018-07-09 stsp if (pack->map) {
1372 d7464085 2018-07-09 stsp size_t mapoff = (size_t)obj->pack_offset;
1373 d7464085 2018-07-09 stsp err = got_inflate_to_mem_mmap(buf, len, pack->map,
1374 d7464085 2018-07-09 stsp mapoff, pack->filesize - mapoff);
1375 d7464085 2018-07-09 stsp } else {
1376 7e212e3d 2018-09-09 stsp if (lseek(pack->fd, obj->pack_offset, SEEK_SET) == -1)
1377 638f9024 2019-05-13 stsp return got_error_from_errno("lseek");
1378 d7464085 2018-07-09 stsp err = got_inflate_to_mem_fd(buf, len, pack->fd);
1379 e0ab43e7 2018-03-16 stsp }
1380 e0ab43e7 2018-03-16 stsp } else
1381 48095039 2018-09-09 stsp err = dump_delta_chain_to_mem(buf, len, &obj->deltas, pack);
1382 7e212e3d 2018-09-09 stsp
1383 e0ab43e7 2018-03-16 stsp return err;
1384 e0ab43e7 2018-03-16 stsp }