Blame


1 0a0a3048 2018-01-10 stsp /*
2 0a0a3048 2018-01-10 stsp * Copyright (c) 2018 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 0a0a3048 2018-01-10 stsp
21 a1fd68d8 2018-01-12 stsp #include <dirent.h>
22 a1fd68d8 2018-01-12 stsp #include <errno.h>
23 0a0a3048 2018-01-10 stsp #include <stdio.h>
24 a1fd68d8 2018-01-12 stsp #include <stdint.h>
25 0a0a3048 2018-01-10 stsp #include <stdlib.h>
26 0a0a3048 2018-01-10 stsp #include <string.h>
27 0a0a3048 2018-01-10 stsp #include <limits.h>
28 0a0a3048 2018-01-10 stsp #include <sha1.h>
29 0a0a3048 2018-01-10 stsp #include <endian.h>
30 a1fd68d8 2018-01-12 stsp #include <zlib.h>
31 0a0a3048 2018-01-10 stsp
32 0a0a3048 2018-01-10 stsp #include "got_error.h"
33 a1fd68d8 2018-01-12 stsp #include "got_object.h"
34 a1fd68d8 2018-01-12 stsp #include "got_repository.h"
35 a1fd68d8 2018-01-12 stsp #include "got_sha1.h"
36 0a0a3048 2018-01-10 stsp #include "pack.h"
37 a1fd68d8 2018-01-12 stsp #include "path.h"
38 0a0a3048 2018-01-10 stsp
39 a1fd68d8 2018-01-12 stsp #define GOT_PACK_PREFIX "pack-"
40 a1fd68d8 2018-01-12 stsp #define GOT_PACKFILE_SUFFIX ".pack"
41 a1fd68d8 2018-01-12 stsp #define GOT_PACKIDX_SUFFIX ".idx"
42 a1fd68d8 2018-01-12 stsp #define GOT_PACKFILE_NAMELEN (strlen(GOT_PACK_PREFIX) + \
43 a1fd68d8 2018-01-12 stsp SHA1_DIGEST_STRING_LENGTH - 1 + \
44 a1fd68d8 2018-01-12 stsp strlen(GOT_PACKFILE_SUFFIX))
45 a1fd68d8 2018-01-12 stsp #define GOT_PACKIDX_NAMELEN (strlen(GOT_PACK_PREFIX) + \
46 a1fd68d8 2018-01-12 stsp SHA1_DIGEST_STRING_LENGTH - 1 + \
47 a1fd68d8 2018-01-12 stsp strlen(GOT_PACKIDX_SUFFIX))
48 a1fd68d8 2018-01-12 stsp
49 a1fd68d8 2018-01-12 stsp #ifndef MIN
50 a1fd68d8 2018-01-12 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
51 a1fd68d8 2018-01-12 stsp #endif
52 a1fd68d8 2018-01-12 stsp
53 0a0a3048 2018-01-10 stsp static const struct got_error *
54 0a0a3048 2018-01-10 stsp verify_fanout_table(uint32_t *fanout_table)
55 0a0a3048 2018-01-10 stsp {
56 0a0a3048 2018-01-10 stsp int i;
57 0a0a3048 2018-01-10 stsp
58 0a0a3048 2018-01-10 stsp for (i = 0; i < 0xff - 1; i++) {
59 a1fd68d8 2018-01-12 stsp if (be32toh(fanout_table[i]) > be32toh(fanout_table[i + 1]))
60 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_BAD_PACKIDX);
61 0a0a3048 2018-01-10 stsp }
62 0a0a3048 2018-01-10 stsp
63 0a0a3048 2018-01-10 stsp return NULL;
64 0a0a3048 2018-01-10 stsp }
65 0a0a3048 2018-01-10 stsp
66 24541888 2018-01-10 stsp static const struct got_error *
67 0a0a3048 2018-01-10 stsp get_packfile_size(size_t *size, const char *path_idx)
68 0a0a3048 2018-01-10 stsp {
69 0a0a3048 2018-01-10 stsp struct stat sb;
70 0a0a3048 2018-01-10 stsp char *path_pack;
71 0a0a3048 2018-01-10 stsp char base_path[PATH_MAX];
72 0a0a3048 2018-01-10 stsp char *dot;
73 0a0a3048 2018-01-10 stsp
74 0a0a3048 2018-01-10 stsp if (strlcpy(base_path, path_idx, PATH_MAX) > PATH_MAX)
75 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_NO_SPACE);
76 0a0a3048 2018-01-10 stsp
77 0a0a3048 2018-01-10 stsp dot = strrchr(base_path, '.');
78 0a0a3048 2018-01-10 stsp if (dot == NULL)
79 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_BAD_PATH);
80 0a0a3048 2018-01-10 stsp *dot = '\0';
81 0a0a3048 2018-01-10 stsp if (asprintf(&path_pack, "%s.pack", base_path) == -1)
82 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_NO_MEM);
83 0a0a3048 2018-01-10 stsp
84 0a0a3048 2018-01-10 stsp if (stat(path_pack, &sb) != 0) {
85 0a0a3048 2018-01-10 stsp free(path_pack);
86 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_IO);
87 0a0a3048 2018-01-10 stsp
88 0a0a3048 2018-01-10 stsp }
89 0a0a3048 2018-01-10 stsp
90 0a0a3048 2018-01-10 stsp free(path_pack);
91 0a0a3048 2018-01-10 stsp *size = sb.st_size;
92 0a0a3048 2018-01-10 stsp return 0;
93 0a0a3048 2018-01-10 stsp }
94 0a0a3048 2018-01-10 stsp
95 0a0a3048 2018-01-10 stsp const struct got_error *
96 0a0a3048 2018-01-10 stsp got_packidx_open(struct got_packidx_v2_hdr **packidx, const char *path)
97 0a0a3048 2018-01-10 stsp {
98 0a0a3048 2018-01-10 stsp struct got_packidx_v2_hdr *p;
99 0a0a3048 2018-01-10 stsp FILE *f;
100 0a0a3048 2018-01-10 stsp const struct got_error *err = NULL;
101 0a0a3048 2018-01-10 stsp size_t n, nobj, packfile_size;
102 0ebaf008 2018-01-10 stsp SHA1_CTX ctx;
103 0ebaf008 2018-01-10 stsp uint8_t sha1[SHA1_DIGEST_LENGTH];
104 0a0a3048 2018-01-10 stsp
105 0ebaf008 2018-01-10 stsp SHA1Init(&ctx);
106 0ebaf008 2018-01-10 stsp
107 0a0a3048 2018-01-10 stsp f = fopen(path, "rb");
108 0a0a3048 2018-01-10 stsp if (f == NULL)
109 0a0a3048 2018-01-10 stsp return got_error(GOT_ERR_BAD_PATH);
110 0a0a3048 2018-01-10 stsp
111 0a0a3048 2018-01-10 stsp err = get_packfile_size(&packfile_size, path);
112 0a0a3048 2018-01-10 stsp if (err)
113 0a0a3048 2018-01-10 stsp return err;
114 0a0a3048 2018-01-10 stsp
115 0a0a3048 2018-01-10 stsp p = calloc(1, sizeof(*p));
116 0a0a3048 2018-01-10 stsp if (p == NULL) {
117 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_NO_MEM);
118 0a0a3048 2018-01-10 stsp goto done;
119 0a0a3048 2018-01-10 stsp }
120 0a0a3048 2018-01-10 stsp
121 0a0a3048 2018-01-10 stsp n = fread(&p->magic, sizeof(p->magic), 1, f);
122 0a0a3048 2018-01-10 stsp if (n != 1) {
123 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
124 0a0a3048 2018-01-10 stsp goto done;
125 0a0a3048 2018-01-10 stsp }
126 0a0a3048 2018-01-10 stsp
127 0a0a3048 2018-01-10 stsp if (betoh32(p->magic) != GOT_PACKIDX_V2_MAGIC) {
128 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
129 0a0a3048 2018-01-10 stsp goto done;
130 0a0a3048 2018-01-10 stsp }
131 0a0a3048 2018-01-10 stsp
132 0ebaf008 2018-01-10 stsp SHA1Update(&ctx, (uint8_t *)&p->magic, sizeof(p->magic));
133 0ebaf008 2018-01-10 stsp
134 0a0a3048 2018-01-10 stsp n = fread(&p->version, sizeof(p->version), 1, f);
135 0a0a3048 2018-01-10 stsp if (n != 1) {
136 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
137 0a0a3048 2018-01-10 stsp goto done;
138 0a0a3048 2018-01-10 stsp }
139 0a0a3048 2018-01-10 stsp
140 0a0a3048 2018-01-10 stsp if (betoh32(p->version) != GOT_PACKIDX_VERSION) {
141 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_BAD_PACKIDX);
142 0a0a3048 2018-01-10 stsp goto done;
143 0a0a3048 2018-01-10 stsp }
144 0a0a3048 2018-01-10 stsp
145 0ebaf008 2018-01-10 stsp SHA1Update(&ctx, (uint8_t *)&p->version, sizeof(p->version));
146 0ebaf008 2018-01-10 stsp
147 0a0a3048 2018-01-10 stsp n = fread(&p->fanout_table, sizeof(p->fanout_table), 1, f);
148 0a0a3048 2018-01-10 stsp if (n != 1) {
149 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
150 0a0a3048 2018-01-10 stsp goto done;
151 0a0a3048 2018-01-10 stsp }
152 0a0a3048 2018-01-10 stsp
153 0a0a3048 2018-01-10 stsp err = verify_fanout_table(p->fanout_table);
154 0a0a3048 2018-01-10 stsp if (err)
155 0a0a3048 2018-01-10 stsp goto done;
156 0a0a3048 2018-01-10 stsp
157 0ebaf008 2018-01-10 stsp SHA1Update(&ctx, (uint8_t *)p->fanout_table, sizeof(p->fanout_table));
158 0ebaf008 2018-01-10 stsp
159 0a0a3048 2018-01-10 stsp nobj = betoh32(p->fanout_table[0xff]);
160 0a0a3048 2018-01-10 stsp
161 0a0a3048 2018-01-10 stsp p->sorted_ids = calloc(nobj, sizeof(*p->sorted_ids));
162 0a0a3048 2018-01-10 stsp if (p->sorted_ids == NULL) {
163 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_NO_MEM);
164 0a0a3048 2018-01-10 stsp goto done;
165 0a0a3048 2018-01-10 stsp }
166 0a0a3048 2018-01-10 stsp
167 0a0a3048 2018-01-10 stsp n = fread(p->sorted_ids, sizeof(*p->sorted_ids), nobj, f);
168 0a0a3048 2018-01-10 stsp if (n != nobj) {
169 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
170 0a0a3048 2018-01-10 stsp goto done;
171 0a0a3048 2018-01-10 stsp }
172 0a0a3048 2018-01-10 stsp
173 0ebaf008 2018-01-10 stsp SHA1Update(&ctx, (uint8_t *)p->sorted_ids,
174 0ebaf008 2018-01-10 stsp nobj * sizeof(*p->sorted_ids));
175 0ebaf008 2018-01-10 stsp
176 a1fd68d8 2018-01-12 stsp p->crc32 = calloc(nobj, sizeof(*p->crc32));
177 a1fd68d8 2018-01-12 stsp if (p->crc32 == NULL) {
178 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_NO_MEM);
179 0a0a3048 2018-01-10 stsp goto done;
180 0a0a3048 2018-01-10 stsp }
181 0a0a3048 2018-01-10 stsp
182 a1fd68d8 2018-01-12 stsp n = fread(p->crc32, sizeof(*p->crc32), nobj, f);
183 0a0a3048 2018-01-10 stsp if (n != nobj) {
184 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
185 0a0a3048 2018-01-10 stsp goto done;
186 0a0a3048 2018-01-10 stsp }
187 0a0a3048 2018-01-10 stsp
188 a1fd68d8 2018-01-12 stsp SHA1Update(&ctx, (uint8_t *)p->crc32, nobj * sizeof(*p->crc32));
189 0ebaf008 2018-01-10 stsp
190 a1fd68d8 2018-01-12 stsp p->offsets = calloc(nobj, sizeof(*p->offsets));
191 a1fd68d8 2018-01-12 stsp if (p->offsets == NULL) {
192 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_NO_MEM);
193 0a0a3048 2018-01-10 stsp goto done;
194 0a0a3048 2018-01-10 stsp }
195 0a0a3048 2018-01-10 stsp
196 a1fd68d8 2018-01-12 stsp n = fread(p->offsets, sizeof(*p->offsets), nobj, f);
197 0a0a3048 2018-01-10 stsp if (n != nobj) {
198 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
199 0a0a3048 2018-01-10 stsp goto done;
200 0a0a3048 2018-01-10 stsp }
201 0a0a3048 2018-01-10 stsp
202 a1fd68d8 2018-01-12 stsp SHA1Update(&ctx, (uint8_t *)p->offsets, nobj * sizeof(*p->offsets));
203 0ebaf008 2018-01-10 stsp
204 0a0a3048 2018-01-10 stsp /* Large file offsets are contained only in files > 2GB. */
205 b0517dd0 2018-01-10 stsp if (packfile_size <= 0x80000000)
206 0a0a3048 2018-01-10 stsp goto checksum;
207 0a0a3048 2018-01-10 stsp
208 0a0a3048 2018-01-10 stsp p->large_offsets = calloc(nobj, sizeof(*p->large_offsets));
209 0a0a3048 2018-01-10 stsp if (p->large_offsets == NULL) {
210 0a0a3048 2018-01-10 stsp err = got_error(GOT_ERR_NO_MEM);
211 0a0a3048 2018-01-10 stsp goto done;
212 0a0a3048 2018-01-10 stsp }
213 0a0a3048 2018-01-10 stsp
214 0a0a3048 2018-01-10 stsp n = fread(p->large_offsets, sizeof(*p->large_offsets), nobj, f);
215 0a0a3048 2018-01-10 stsp if (n != nobj) {
216 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
217 0a0a3048 2018-01-10 stsp goto done;
218 0a0a3048 2018-01-10 stsp }
219 0a0a3048 2018-01-10 stsp
220 0ebaf008 2018-01-10 stsp SHA1Update(&ctx, (uint8_t*)p->large_offsets,
221 0ebaf008 2018-01-10 stsp nobj * sizeof(*p->large_offsets));
222 0ebaf008 2018-01-10 stsp
223 0a0a3048 2018-01-10 stsp checksum:
224 0a0a3048 2018-01-10 stsp n = fread(&p->trailer, sizeof(p->trailer), 1, f);
225 0a0a3048 2018-01-10 stsp if (n != 1) {
226 0a0a3048 2018-01-10 stsp err = got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKIDX);
227 0a0a3048 2018-01-10 stsp goto done;
228 0a0a3048 2018-01-10 stsp }
229 0a0a3048 2018-01-10 stsp
230 a1fd68d8 2018-01-12 stsp SHA1Update(&ctx, p->trailer.packfile_sha1, SHA1_DIGEST_LENGTH);
231 0ebaf008 2018-01-10 stsp SHA1Final(sha1, &ctx);
232 a1fd68d8 2018-01-12 stsp if (memcmp(p->trailer.packidx_sha1, sha1, SHA1_DIGEST_LENGTH) != 0)
233 0ebaf008 2018-01-10 stsp err = got_error(GOT_ERR_PACKIDX_CSUM);
234 0a0a3048 2018-01-10 stsp done:
235 0a0a3048 2018-01-10 stsp fclose(f);
236 0a0a3048 2018-01-10 stsp if (err)
237 0a0a3048 2018-01-10 stsp got_packidx_close(p);
238 0a0a3048 2018-01-10 stsp else
239 0a0a3048 2018-01-10 stsp *packidx = p;
240 0a0a3048 2018-01-10 stsp return err;
241 0a0a3048 2018-01-10 stsp }
242 0a0a3048 2018-01-10 stsp
243 0a0a3048 2018-01-10 stsp void
244 0a0a3048 2018-01-10 stsp got_packidx_close(struct got_packidx_v2_hdr *packidx)
245 0a0a3048 2018-01-10 stsp {
246 0a0a3048 2018-01-10 stsp free(packidx->sorted_ids);
247 0a0a3048 2018-01-10 stsp free(packidx->offsets);
248 0a0a3048 2018-01-10 stsp free(packidx->crc32);
249 0a0a3048 2018-01-10 stsp free(packidx->large_offsets);
250 0a0a3048 2018-01-10 stsp free(packidx);
251 a1fd68d8 2018-01-12 stsp }
252 a1fd68d8 2018-01-12 stsp
253 a1fd68d8 2018-01-12 stsp static int
254 a1fd68d8 2018-01-12 stsp is_packidx_filename(const char *name, size_t len)
255 a1fd68d8 2018-01-12 stsp {
256 a1fd68d8 2018-01-12 stsp if (len != GOT_PACKIDX_NAMELEN)
257 a1fd68d8 2018-01-12 stsp return 0;
258 a1fd68d8 2018-01-12 stsp
259 a1fd68d8 2018-01-12 stsp if (strncmp(name, GOT_PACK_PREFIX, strlen(GOT_PACK_PREFIX)) != 0)
260 a1fd68d8 2018-01-12 stsp return 0;
261 a1fd68d8 2018-01-12 stsp
262 a1fd68d8 2018-01-12 stsp if (strcmp(name + strlen(GOT_PACK_PREFIX) +
263 a1fd68d8 2018-01-12 stsp SHA1_DIGEST_STRING_LENGTH - 1, GOT_PACKIDX_SUFFIX) != 0)
264 a1fd68d8 2018-01-12 stsp return 0;
265 a1fd68d8 2018-01-12 stsp
266 a1fd68d8 2018-01-12 stsp return 1;
267 a1fd68d8 2018-01-12 stsp }
268 a1fd68d8 2018-01-12 stsp
269 a1fd68d8 2018-01-12 stsp static off_t
270 a1fd68d8 2018-01-12 stsp get_object_offset(struct got_packidx_v2_hdr *packidx, int idx)
271 a1fd68d8 2018-01-12 stsp {
272 a1fd68d8 2018-01-12 stsp uint32_t totobj = betoh32(packidx->fanout_table[0xff]);
273 a1fd68d8 2018-01-12 stsp uint32_t offset = betoh32(packidx->offsets[idx]);
274 a1fd68d8 2018-01-12 stsp if (offset & GOT_PACKIDX_OFFSET_VAL_IS_LARGE_IDX) {
275 a1fd68d8 2018-01-12 stsp uint64_t loffset;
276 a1fd68d8 2018-01-12 stsp idx = offset & GOT_PACKIDX_OFFSET_VAL_MASK;
277 a1fd68d8 2018-01-12 stsp if (idx < 0 || idx > totobj || packidx->large_offsets == NULL)
278 a1fd68d8 2018-01-12 stsp return -1;
279 a1fd68d8 2018-01-12 stsp loffset = betoh64(packidx->large_offsets[idx]);
280 a1fd68d8 2018-01-12 stsp return (loffset > INT64_MAX ? -1 : (off_t)loffset);
281 a1fd68d8 2018-01-12 stsp }
282 a1fd68d8 2018-01-12 stsp return (off_t)(offset & GOT_PACKIDX_OFFSET_VAL_MASK);
283 a1fd68d8 2018-01-12 stsp }
284 a1fd68d8 2018-01-12 stsp
285 a1fd68d8 2018-01-12 stsp static int
286 a1fd68d8 2018-01-12 stsp get_object_idx(struct got_packidx_v2_hdr *packidx, struct got_object_id *id)
287 a1fd68d8 2018-01-12 stsp {
288 a1fd68d8 2018-01-12 stsp u_int8_t id0 = id->sha1[0];
289 a1fd68d8 2018-01-12 stsp uint32_t totobj = betoh32(packidx->fanout_table[0xff]);
290 a1fd68d8 2018-01-12 stsp int i = 0;
291 a1fd68d8 2018-01-12 stsp
292 a1fd68d8 2018-01-12 stsp if (id0 > 0)
293 a1fd68d8 2018-01-12 stsp i = betoh32(packidx->fanout_table[id0 - 1]);
294 a1fd68d8 2018-01-12 stsp
295 a1fd68d8 2018-01-12 stsp while (i < totobj) {
296 a1fd68d8 2018-01-12 stsp struct got_object_id *oid = &packidx->sorted_ids[i++];
297 a1fd68d8 2018-01-12 stsp uint32_t offset;
298 a1fd68d8 2018-01-12 stsp
299 a1fd68d8 2018-01-12 stsp if (got_object_id_cmp(id, oid) < 0)
300 a1fd68d8 2018-01-12 stsp continue;
301 a1fd68d8 2018-01-12 stsp if (got_object_id_cmp(id, oid) > 0)
302 a1fd68d8 2018-01-12 stsp break;
303 a1fd68d8 2018-01-12 stsp
304 a1fd68d8 2018-01-12 stsp return i;
305 a1fd68d8 2018-01-12 stsp }
306 a1fd68d8 2018-01-12 stsp
307 a1fd68d8 2018-01-12 stsp return -1;
308 a1fd68d8 2018-01-12 stsp }
309 a1fd68d8 2018-01-12 stsp
310 a1fd68d8 2018-01-12 stsp const struct got_error *
311 a1fd68d8 2018-01-12 stsp read_packfile_hdr(FILE *f, struct got_packidx_v2_hdr *packidx)
312 a1fd68d8 2018-01-12 stsp {
313 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
314 a1fd68d8 2018-01-12 stsp uint32_t totobj = betoh32(packidx->fanout_table[0xff]);
315 a1fd68d8 2018-01-12 stsp struct got_packfile_hdr hdr;
316 a1fd68d8 2018-01-12 stsp size_t n;
317 a1fd68d8 2018-01-12 stsp
318 a1fd68d8 2018-01-12 stsp n = fread(&hdr, sizeof(hdr), 1, f);
319 a1fd68d8 2018-01-12 stsp if (n != 1)
320 a1fd68d8 2018-01-12 stsp return got_error(ferror(f) ? GOT_ERR_IO : GOT_ERR_BAD_PACKFILE);
321 a1fd68d8 2018-01-12 stsp
322 a1fd68d8 2018-01-12 stsp if (betoh32(hdr.signature) != GOT_PACKFILE_SIGNATURE ||
323 a1fd68d8 2018-01-12 stsp betoh32(hdr.version) != GOT_PACKFILE_VERSION ||
324 a1fd68d8 2018-01-12 stsp betoh32(hdr.nobjects) != totobj)
325 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_BAD_PACKFILE);
326 a1fd68d8 2018-01-12 stsp
327 a1fd68d8 2018-01-12 stsp return err;
328 a1fd68d8 2018-01-12 stsp }
329 a1fd68d8 2018-01-12 stsp
330 a1fd68d8 2018-01-12 stsp static const struct got_error *
331 a1fd68d8 2018-01-12 stsp dump_packed_object(FILE **f, FILE *packfile, off_t offset)
332 a1fd68d8 2018-01-12 stsp {
333 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
334 a1fd68d8 2018-01-12 stsp const char *template = "/tmp/got.XXXXXXXXXX";
335 a1fd68d8 2018-01-12 stsp uint64_t size = 0;
336 a1fd68d8 2018-01-12 stsp uint8_t type = 0;
337 a1fd68d8 2018-01-12 stsp uint8_t sizeN;
338 a1fd68d8 2018-01-12 stsp int i;
339 a1fd68d8 2018-01-12 stsp size_t n;
340 a1fd68d8 2018-01-12 stsp const char *type_tag;
341 a1fd68d8 2018-01-12 stsp
342 a1fd68d8 2018-01-12 stsp *f = got_opentemp();
343 a1fd68d8 2018-01-12 stsp if (*f == NULL) {
344 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_FILE_OPEN);
345 a1fd68d8 2018-01-12 stsp goto done;
346 a1fd68d8 2018-01-12 stsp }
347 a1fd68d8 2018-01-12 stsp
348 a1fd68d8 2018-01-12 stsp if (fseeko(packfile, offset, SEEK_SET) != 0) {
349 f334529e 2018-01-12 stsp err = got_error_from_errno();
350 a1fd68d8 2018-01-12 stsp goto done;
351 a1fd68d8 2018-01-12 stsp }
352 a1fd68d8 2018-01-12 stsp
353 a1fd68d8 2018-01-12 stsp i = 0;
354 a1fd68d8 2018-01-12 stsp do {
355 a1fd68d8 2018-01-12 stsp /* We do not support size values which don't fit in 64 bit. */
356 a1fd68d8 2018-01-12 stsp if (i > 9) {
357 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_NO_SPACE);
358 a1fd68d8 2018-01-12 stsp goto done;
359 a1fd68d8 2018-01-12 stsp }
360 a1fd68d8 2018-01-12 stsp
361 a1fd68d8 2018-01-12 stsp n = fread(&sizeN, sizeof(sizeN), 1, packfile);
362 a1fd68d8 2018-01-12 stsp if (n != 1) {
363 a1fd68d8 2018-01-12 stsp err = got_error(ferror(packfile) ?
364 a1fd68d8 2018-01-12 stsp GOT_ERR_IO : GOT_ERR_BAD_PACKFILE);
365 a1fd68d8 2018-01-12 stsp goto done;
366 a1fd68d8 2018-01-12 stsp }
367 a1fd68d8 2018-01-12 stsp if (i == 0) {
368 a1fd68d8 2018-01-12 stsp type = (sizeN & GOT_PACK_OBJ_SIZE0_TYPE_MASK) >>
369 a1fd68d8 2018-01-12 stsp GOT_PACK_OBJ_SIZE0_TYPE_MASK_SHIFT;
370 a1fd68d8 2018-01-12 stsp size = (sizeN & GOT_PACK_OBJ_SIZE0_VAL_MASK);
371 a1fd68d8 2018-01-12 stsp } else {
372 a1fd68d8 2018-01-12 stsp size_t shift = 4 + 7 * (i - 1);
373 a1fd68d8 2018-01-12 stsp size |= ((sizeN & GOT_PACK_OBJ_SIZE_VAL_MASK) << shift);
374 a1fd68d8 2018-01-12 stsp }
375 a1fd68d8 2018-01-12 stsp i++;
376 a1fd68d8 2018-01-12 stsp } while (sizeN & GOT_PACK_OBJ_SIZE_MORE);
377 a1fd68d8 2018-01-12 stsp
378 a1fd68d8 2018-01-12 stsp if (type == GOT_OBJ_TYPE_OFFSET_DELTA)
379 a1fd68d8 2018-01-12 stsp printf("object type OFFSET_DELTA not yet implemented\n");
380 a1fd68d8 2018-01-12 stsp else if (type == GOT_OBJ_TYPE_REF_DELTA)
381 a1fd68d8 2018-01-12 stsp printf("object type REF_DELTA not yet implemented\n");
382 a1fd68d8 2018-01-12 stsp else if (type == GOT_OBJ_TYPE_TAG)
383 a1fd68d8 2018-01-12 stsp printf("object type TAG not yet implemented\n");
384 a1fd68d8 2018-01-12 stsp
385 a1fd68d8 2018-01-12 stsp type_tag = got_object_get_type_tag(type);
386 a1fd68d8 2018-01-12 stsp if (type_tag == NULL) {
387 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_BAD_OBJ_HDR);
388 a1fd68d8 2018-01-12 stsp goto done;
389 a1fd68d8 2018-01-12 stsp }
390 a1fd68d8 2018-01-12 stsp
391 a1fd68d8 2018-01-12 stsp fprintf(*f, "%s %llu", type_tag, size);
392 a1fd68d8 2018-01-12 stsp fputc('\0', *f);
393 a1fd68d8 2018-01-12 stsp
394 a1fd68d8 2018-01-12 stsp while (size > 0) {
395 a1fd68d8 2018-01-12 stsp uint8_t data[2048];
396 a1fd68d8 2018-01-12 stsp size_t len = MIN(size, sizeof(data));
397 a1fd68d8 2018-01-12 stsp
398 a1fd68d8 2018-01-12 stsp n = fread(data, len, 1, packfile);
399 a1fd68d8 2018-01-12 stsp if (n != 1) {
400 a1fd68d8 2018-01-12 stsp err = got_error(ferror(packfile) ?
401 a1fd68d8 2018-01-12 stsp GOT_ERR_IO : GOT_ERR_BAD_PACKFILE);
402 a1fd68d8 2018-01-12 stsp goto done;
403 a1fd68d8 2018-01-12 stsp }
404 a1fd68d8 2018-01-12 stsp
405 a1fd68d8 2018-01-12 stsp n = fwrite(data, len, 1, *f);
406 a1fd68d8 2018-01-12 stsp if (n != 1) {
407 a1fd68d8 2018-01-12 stsp err = got_error(ferror(*f) ?
408 a1fd68d8 2018-01-12 stsp GOT_ERR_IO : GOT_ERR_BAD_PACKFILE);
409 a1fd68d8 2018-01-12 stsp goto done;
410 a1fd68d8 2018-01-12 stsp }
411 a1fd68d8 2018-01-12 stsp
412 a1fd68d8 2018-01-12 stsp size -= len;
413 a1fd68d8 2018-01-12 stsp }
414 a1fd68d8 2018-01-12 stsp
415 a1fd68d8 2018-01-12 stsp printf("object type is %d\n", type);
416 a1fd68d8 2018-01-12 stsp rewind(*f);
417 a1fd68d8 2018-01-12 stsp done:
418 a1fd68d8 2018-01-12 stsp if (err && *f)
419 a1fd68d8 2018-01-12 stsp fclose(*f);
420 a1fd68d8 2018-01-12 stsp return err;
421 0a0a3048 2018-01-10 stsp }
422 a1fd68d8 2018-01-12 stsp static const struct got_error *
423 a1fd68d8 2018-01-12 stsp extract_object(FILE **f, const char *path_packdir,
424 a1fd68d8 2018-01-12 stsp struct got_packidx_v2_hdr *packidx, struct got_object_id *id)
425 a1fd68d8 2018-01-12 stsp {
426 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
427 a1fd68d8 2018-01-12 stsp int idx = get_object_idx(packidx, id);
428 a1fd68d8 2018-01-12 stsp off_t offset;
429 a1fd68d8 2018-01-12 stsp char *path_packfile;
430 a1fd68d8 2018-01-12 stsp FILE *packfile;
431 a1fd68d8 2018-01-12 stsp char hex[SHA1_DIGEST_STRING_LENGTH];
432 a1fd68d8 2018-01-12 stsp char *sha1str;
433 a1fd68d8 2018-01-12 stsp
434 a1fd68d8 2018-01-12 stsp *f = NULL;
435 a1fd68d8 2018-01-12 stsp if (idx == -1) /* object not found in pack index */
436 a1fd68d8 2018-01-12 stsp return NULL;
437 a1fd68d8 2018-01-12 stsp
438 a1fd68d8 2018-01-12 stsp offset = get_object_offset(packidx, idx);
439 a1fd68d8 2018-01-12 stsp if (offset == (uint64_t)-1)
440 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_BAD_PACKIDX);
441 a1fd68d8 2018-01-12 stsp
442 a1fd68d8 2018-01-12 stsp sha1str = got_sha1_digest_to_str(packidx->trailer.packfile_sha1,
443 a1fd68d8 2018-01-12 stsp hex, sizeof(hex));
444 a1fd68d8 2018-01-12 stsp if (sha1str == NULL)
445 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_PACKIDX_CSUM);
446 a1fd68d8 2018-01-12 stsp
447 a1fd68d8 2018-01-12 stsp if (asprintf(&path_packfile, "%s/%s%s%s", path_packdir,
448 a1fd68d8 2018-01-12 stsp GOT_PACK_PREFIX, sha1str, GOT_PACKFILE_SUFFIX) == -1)
449 a1fd68d8 2018-01-12 stsp return got_error(GOT_ERR_NO_MEM);
450 a1fd68d8 2018-01-12 stsp
451 a1fd68d8 2018-01-12 stsp packfile = fopen(path_packfile, "rb");
452 a1fd68d8 2018-01-12 stsp if (packfile == NULL) {
453 f334529e 2018-01-12 stsp err = got_error_from_errno();
454 a1fd68d8 2018-01-12 stsp goto done;
455 a1fd68d8 2018-01-12 stsp }
456 a1fd68d8 2018-01-12 stsp
457 a1fd68d8 2018-01-12 stsp err = read_packfile_hdr(packfile, packidx);
458 a1fd68d8 2018-01-12 stsp if (err)
459 a1fd68d8 2018-01-12 stsp goto done;
460 a1fd68d8 2018-01-12 stsp
461 a1fd68d8 2018-01-12 stsp printf("Dumping object at offset %llu\n", offset);
462 a1fd68d8 2018-01-12 stsp err = dump_packed_object(f, packfile, offset);
463 a1fd68d8 2018-01-12 stsp if (err)
464 a1fd68d8 2018-01-12 stsp goto done;
465 a1fd68d8 2018-01-12 stsp
466 a1fd68d8 2018-01-12 stsp done:
467 a1fd68d8 2018-01-12 stsp free(path_packfile);
468 f334529e 2018-01-12 stsp if (packfile && fclose(packfile) == -1 && err == 0)
469 f334529e 2018-01-12 stsp err = got_error_from_errno();
470 a1fd68d8 2018-01-12 stsp return err;
471 a1fd68d8 2018-01-12 stsp }
472 a1fd68d8 2018-01-12 stsp
473 a1fd68d8 2018-01-12 stsp const struct got_error *
474 a1fd68d8 2018-01-12 stsp got_packfile_extract_object(FILE **f, struct got_object_id *id,
475 a1fd68d8 2018-01-12 stsp struct got_repository *repo)
476 a1fd68d8 2018-01-12 stsp {
477 a1fd68d8 2018-01-12 stsp const struct got_error *err = NULL;
478 a1fd68d8 2018-01-12 stsp DIR *packdir = NULL;
479 a1fd68d8 2018-01-12 stsp struct dirent *dent;
480 a1fd68d8 2018-01-12 stsp char *path_packdir = got_repo_get_path_objects_pack(repo);
481 a1fd68d8 2018-01-12 stsp
482 a1fd68d8 2018-01-12 stsp if (path_packdir == NULL) {
483 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_NO_MEM);
484 a1fd68d8 2018-01-12 stsp goto done;
485 a1fd68d8 2018-01-12 stsp }
486 a1fd68d8 2018-01-12 stsp
487 a1fd68d8 2018-01-12 stsp packdir = opendir(path_packdir);
488 a1fd68d8 2018-01-12 stsp if (packdir == NULL) {
489 f334529e 2018-01-12 stsp err = got_error_from_errno();
490 a1fd68d8 2018-01-12 stsp goto done;
491 a1fd68d8 2018-01-12 stsp }
492 a1fd68d8 2018-01-12 stsp
493 a1fd68d8 2018-01-12 stsp while ((dent = readdir(packdir)) != NULL) {
494 a1fd68d8 2018-01-12 stsp struct got_packidx_v2_hdr *packidx;
495 a1fd68d8 2018-01-12 stsp char *path_packidx, *path_object;
496 a1fd68d8 2018-01-12 stsp
497 a1fd68d8 2018-01-12 stsp if (!is_packidx_filename(dent->d_name, dent->d_namlen))
498 a1fd68d8 2018-01-12 stsp continue;
499 a1fd68d8 2018-01-12 stsp
500 a1fd68d8 2018-01-12 stsp if (asprintf(&path_packidx, "%s/%s", path_packdir,
501 a1fd68d8 2018-01-12 stsp dent->d_name) == -1) {
502 a1fd68d8 2018-01-12 stsp err = got_error(GOT_ERR_NO_MEM);
503 a1fd68d8 2018-01-12 stsp goto done;
504 a1fd68d8 2018-01-12 stsp }
505 a1fd68d8 2018-01-12 stsp
506 a1fd68d8 2018-01-12 stsp err = got_packidx_open(&packidx, path_packidx);
507 a1fd68d8 2018-01-12 stsp free(path_packidx);
508 a1fd68d8 2018-01-12 stsp if (err)
509 a1fd68d8 2018-01-12 stsp goto done;
510 a1fd68d8 2018-01-12 stsp
511 a1fd68d8 2018-01-12 stsp err = extract_object(f, path_packdir, packidx, id);
512 a1fd68d8 2018-01-12 stsp if (err)
513 a1fd68d8 2018-01-12 stsp goto done;
514 a1fd68d8 2018-01-12 stsp if (*f != NULL)
515 a1fd68d8 2018-01-12 stsp break;
516 a1fd68d8 2018-01-12 stsp }
517 a1fd68d8 2018-01-12 stsp
518 a1fd68d8 2018-01-12 stsp done:
519 a1fd68d8 2018-01-12 stsp free(path_packdir);
520 f334529e 2018-01-12 stsp if (packdir && closedir(packdir) != 0 && err == 0)
521 f334529e 2018-01-12 stsp err = got_error_from_errno();
522 a1fd68d8 2018-01-12 stsp return err;
523 a1fd68d8 2018-01-12 stsp }