Blame


1 56e7a15f 2021-03-10 stsp /*
2 56e7a15f 2021-03-10 stsp * Copyright (c) 2020 Ori Bernstein
3 69aa0e90 2021-03-10 stsp * Copyright (c) 2021 Stefan Sperling <stsp@openbsd.org>
4 2a0e67f7 2021-03-10 stsp *
5 2a0e67f7 2021-03-10 stsp * Permission to use, copy, modify, and distribute this software for any
6 2a0e67f7 2021-03-10 stsp * purpose with or without fee is hereby granted, provided that the above
7 2a0e67f7 2021-03-10 stsp * copyright notice and this permission notice appear in all copies.
8 2a0e67f7 2021-03-10 stsp *
9 2a0e67f7 2021-03-10 stsp * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10 2a0e67f7 2021-03-10 stsp * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11 2a0e67f7 2021-03-10 stsp * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12 2a0e67f7 2021-03-10 stsp * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13 2a0e67f7 2021-03-10 stsp * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14 2a0e67f7 2021-03-10 stsp * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15 2a0e67f7 2021-03-10 stsp * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 56e7a15f 2021-03-10 stsp */
17 56e7a15f 2021-03-10 stsp
18 f364801d 2021-03-10 stsp #include <sys/types.h>
19 f364801d 2021-03-10 stsp #include <sys/queue.h>
20 56e7a15f 2021-03-10 stsp
21 f364801d 2021-03-10 stsp #include <assert.h>
22 22403ab7 2021-03-22 naddy #include <endian.h>
23 69aa0e90 2021-03-10 stsp #include <errno.h>
24 f364801d 2021-03-10 stsp #include <limits.h>
25 f364801d 2021-03-10 stsp #include <stdint.h>
26 f364801d 2021-03-10 stsp #include <stdio.h>
27 f364801d 2021-03-10 stsp #include <stdlib.h>
28 f364801d 2021-03-10 stsp #include <string.h>
29 f364801d 2021-03-10 stsp #include <sha1.h>
30 56e7a15f 2021-03-10 stsp
31 f364801d 2021-03-10 stsp #include "got_error.h"
32 f364801d 2021-03-10 stsp
33 69aa0e90 2021-03-10 stsp #include "got_lib_deltify.h"
34 f364801d 2021-03-10 stsp
35 69aa0e90 2021-03-10 stsp #ifndef MIN
36 69aa0e90 2021-03-10 stsp #define MIN(_a,_b) ((_a) < (_b) ? (_a) : (_b))
37 69aa0e90 2021-03-10 stsp #endif
38 f364801d 2021-03-10 stsp
39 f364801d 2021-03-10 stsp static uint32_t geartab[] = {
40 69aa0e90 2021-03-10 stsp 0x67ed26b7, 0x32da500c, 0x53d0fee0, 0xce387dc7, 0xcd406d90, 0x2e83a4d4,
41 69aa0e90 2021-03-10 stsp 0x9fc9a38d, 0xb67259dc, 0xca6b1722, 0x6d2ea08c, 0x235cea2e, 0x3149bb5f,
42 69aa0e90 2021-03-10 stsp 0x1beda787, 0x2a6b77d5, 0x2f22d9ac, 0x91fc0544, 0xe413acfa, 0x5a30ff7a,
43 69aa0e90 2021-03-10 stsp 0xad6fdde0, 0x444fd0f5, 0x7ad87864, 0x58c5ff05, 0x8d2ec336, 0x2371f853,
44 69aa0e90 2021-03-10 stsp 0x550f8572, 0x6aa448dd, 0x7c9ddbcf, 0x95221e14, 0x2a82ec33, 0xcbec5a78,
45 69aa0e90 2021-03-10 stsp 0xc6795a0d, 0x243995b7, 0x1c909a2f, 0x4fded51c, 0x635d334b, 0x0e2b9999,
46 69aa0e90 2021-03-10 stsp 0x2702968d, 0x856de1d5, 0x3325d60e, 0xeb6a7502, 0xec2a9844, 0x0905835a,
47 69aa0e90 2021-03-10 stsp 0xa1820375, 0xa4be5cab, 0x96a6c058, 0x2c2ccd70, 0xba40fce3, 0xd794c46b,
48 69aa0e90 2021-03-10 stsp 0x8fbae83e, 0xc3aa7899, 0x3d3ff8ed, 0xa0d42b5b, 0x571c0c97, 0xd2811516,
49 69aa0e90 2021-03-10 stsp 0xf7e7b96c, 0x4fd2fcbd, 0xe2fdec94, 0x282cc436, 0x78e8e95c, 0x80a3b613,
50 69aa0e90 2021-03-10 stsp 0xcfbee20c, 0xd4a32d1c, 0x2a12ff13, 0x6af82936, 0xe5630258, 0x8efa6a98,
51 69aa0e90 2021-03-10 stsp 0x294fb2d1, 0xdeb57086, 0x5f0fddb3, 0xeceda7ce, 0x4c87305f, 0x3a6d3307,
52 69aa0e90 2021-03-10 stsp 0xe22d2942, 0x9d060217, 0x1e42ed02, 0xb6f63b52, 0x4367f39f, 0x055cf262,
53 69aa0e90 2021-03-10 stsp 0x03a461b2, 0x5ef9e382, 0x386bc03a, 0x2a1e79c7, 0xf1a0058b, 0xd4d2dea9,
54 69aa0e90 2021-03-10 stsp 0x56baf37d, 0x5daff6cc, 0xf03a951d, 0xaef7de45, 0xa8f4581e, 0x3960b555,
55 69aa0e90 2021-03-10 stsp 0xffbfff6d, 0xbe702a23, 0x8f5b6d6f, 0x061739fb, 0x98696f47, 0x3fd596d4,
56 69aa0e90 2021-03-10 stsp 0x151eac6b, 0xa9fcc4f5, 0x69181a12, 0x3ac5a107, 0xb5198fe7, 0x96bcb1da,
57 69aa0e90 2021-03-10 stsp 0x1b5ddf8e, 0xc757d650, 0x65865c3a, 0x8fc0a41a, 0x87435536, 0x99eda6f2,
58 69aa0e90 2021-03-10 stsp 0x41874794, 0x29cff4e8, 0xb70efd9a, 0x3103f6e7, 0x84d2453b, 0x15a450bd,
59 69aa0e90 2021-03-10 stsp 0x74f49af1, 0x60f664b1, 0xa1c86935, 0xfdafbce1, 0xe36353e3, 0x5d9ba739,
60 69aa0e90 2021-03-10 stsp 0xbc0559ba, 0x708b0054, 0xd41d808c, 0xb2f31723, 0x9027c41f, 0xf136d165,
61 69aa0e90 2021-03-10 stsp 0xb5374b12, 0x9420a6ac, 0x273958b6, 0xe6c2fad0, 0xebdc1f21, 0xfb33af8b,
62 69aa0e90 2021-03-10 stsp 0xc71c25cd, 0xe9a2d8e5, 0xbeb38a50, 0xbceb7cc2, 0x4e4e73f0, 0xcd6c251d,
63 69aa0e90 2021-03-10 stsp 0xde4c032c, 0x4b04ac30, 0x725b8b21, 0x4eb8c33b, 0x20d07b75, 0x0567aa63,
64 69aa0e90 2021-03-10 stsp 0xb56b2bb7, 0xc1f5fd3a, 0xcafd35ca, 0x470dd4da, 0xfe4f94cd, 0xfb8de424,
65 69aa0e90 2021-03-10 stsp 0xe8dbcf40, 0xfe50a37a, 0x62db5b5d, 0xf32f4ab6, 0x2c4a8a51, 0x18473dc0,
66 69aa0e90 2021-03-10 stsp 0xfe0cbb6e, 0xfe399efd, 0xdf34ecc9, 0x6ccd5055, 0x46097073, 0x139135c2,
67 69aa0e90 2021-03-10 stsp 0x721c76f6, 0x1c6a94b4, 0x6eee014d, 0x8a508e02, 0x3da538f5, 0x280d394f,
68 69aa0e90 2021-03-10 stsp 0x5248a0c4, 0x3ce94c6c, 0x9a71ad3a, 0x8493dd05, 0xe43f0ab6, 0x18e4ed42,
69 69aa0e90 2021-03-10 stsp 0x6c5c0e09, 0x42b06ec9, 0x8d330343, 0xa45b6f59, 0x2a573c0c, 0xd7fd3de6,
70 69aa0e90 2021-03-10 stsp 0xeedeab68, 0x5c84dafc, 0xbbd1b1a8, 0xa3ce1ad1, 0x85b70bed, 0xb6add07f,
71 69aa0e90 2021-03-10 stsp 0xa531309c, 0x8f8ab852, 0x564de332, 0xeac9ed0c, 0x73da402c, 0x3ec52761,
72 69aa0e90 2021-03-10 stsp 0x43af2f4d, 0xd6ff45c8, 0x4c367462, 0xd553bd6a, 0x44724855, 0x3b2aa728,
73 69aa0e90 2021-03-10 stsp 0x56e5eb65, 0xeaf16173, 0x33fa42ff, 0xd714bb5d, 0xfbd0a3b9, 0xaf517134,
74 69aa0e90 2021-03-10 stsp 0x9416c8cd, 0x534cf94f, 0x548947c2, 0x34193569, 0x32f4389a, 0xfe7028bc,
75 69aa0e90 2021-03-10 stsp 0xed73b1ed, 0x9db95770, 0x468e3922, 0x0440c3cd, 0x60059a62, 0x33504562,
76 69aa0e90 2021-03-10 stsp 0x2b229fbd, 0x5174dca5, 0xf7028752, 0xd63c6aa8, 0x31276f38, 0x0646721c,
77 69aa0e90 2021-03-10 stsp 0xb0191da8, 0xe00e6de0, 0x9eac1a6e, 0x9f7628a5, 0xed6c06ea, 0x0bb8af15,
78 69aa0e90 2021-03-10 stsp 0xf119fb12, 0x38693c1c, 0x732bc0fe, 0x84953275, 0xb82ec888, 0x33a4f1b3,
79 69aa0e90 2021-03-10 stsp 0x3099835e, 0x028a8782, 0x5fdd51d7, 0xc6c717b3, 0xb06caf71, 0x17c8c111,
80 69aa0e90 2021-03-10 stsp 0x61bad754, 0x9fd03061, 0xe09df1af, 0x3bc9eb73, 0x85878413, 0x9889aaf2,
81 69aa0e90 2021-03-10 stsp 0x3f5a9e46, 0x42c9f01f, 0x9984a4f4, 0xd5de43cc, 0xd294daed, 0xbecba2d2,
82 69aa0e90 2021-03-10 stsp 0xf1f6e72c, 0x5551128a, 0x83af87e2, 0x6f0342ba,
83 56e7a15f 2021-03-10 stsp };
84 56e7a15f 2021-03-10 stsp
85 f364801d 2021-03-10 stsp static uint64_t
86 69aa0e90 2021-03-10 stsp hashblk(const unsigned char *p, off_t n)
87 56e7a15f 2021-03-10 stsp {
88 f364801d 2021-03-10 stsp unsigned char buf[SHA1_DIGEST_LENGTH];
89 f364801d 2021-03-10 stsp uint64_t h;
90 69aa0e90 2021-03-10 stsp SHA1_CTX ctx;
91 69aa0e90 2021-03-10 stsp SHA1Init(&ctx);
92 69aa0e90 2021-03-10 stsp SHA1Update(&ctx, p, n);
93 69aa0e90 2021-03-10 stsp SHA1Final(buf, &ctx);
94 f364801d 2021-03-10 stsp memcpy(&h, buf, sizeof(h));
95 f364801d 2021-03-10 stsp return be64toh(h);
96 56e7a15f 2021-03-10 stsp }
97 56e7a15f 2021-03-10 stsp
98 f364801d 2021-03-10 stsp static const struct got_error *
99 69aa0e90 2021-03-10 stsp addblk(struct got_delta_table *dt, FILE *f, off_t len, off_t offset, uint64_t h)
100 56e7a15f 2021-03-10 stsp {
101 69aa0e90 2021-03-10 stsp const struct got_error *err = NULL;
102 e89540a9 2021-06-11 stsp int i;
103 69aa0e90 2021-03-10 stsp uint8_t buf[GOT_DELTIFY_MAXCHUNK];
104 0d15f6dc 2021-06-13 stsp uint8_t buf2[GOT_DELTIFY_MAXCHUNK];
105 69aa0e90 2021-03-10 stsp size_t r = 0;
106 56e7a15f 2021-03-10 stsp
107 69aa0e90 2021-03-10 stsp if (len == 0)
108 69aa0e90 2021-03-10 stsp return NULL;
109 69aa0e90 2021-03-10 stsp
110 69aa0e90 2021-03-10 stsp i = h % dt->nalloc;
111 69aa0e90 2021-03-10 stsp while (dt->blocks[i].len != 0) {
112 69aa0e90 2021-03-10 stsp /*
113 69aa0e90 2021-03-10 stsp * Avoid adding duplicate blocks.
114 69aa0e90 2021-03-10 stsp * NB: A matching hash is insufficient for detecting equality.
115 51a494da 2021-06-11 stsp * The hash can only detect inequality.
116 69aa0e90 2021-03-10 stsp */
117 51a494da 2021-06-11 stsp if (len == dt->blocks[i].len && h == dt->blocks[i].hash) {
118 0d15f6dc 2021-06-13 stsp if (r == 0) {
119 0d15f6dc 2021-06-13 stsp if (fseeko(f, offset, SEEK_SET) == -1)
120 0d15f6dc 2021-06-13 stsp return got_error_from_errno("fseeko");
121 0d15f6dc 2021-06-13 stsp r = fread(buf, 1, len, f);
122 0d15f6dc 2021-06-13 stsp if (r != len) {
123 0d15f6dc 2021-06-13 stsp if (!ferror(f))
124 0d15f6dc 2021-06-13 stsp return NULL;
125 0d15f6dc 2021-06-13 stsp return got_ferror(f, GOT_ERR_IO);
126 0d15f6dc 2021-06-13 stsp }
127 0d15f6dc 2021-06-13 stsp }
128 69aa0e90 2021-03-10 stsp if (fseeko(f, dt->blocks[i].offset, SEEK_SET) == -1)
129 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
130 69aa0e90 2021-03-10 stsp if (fread(buf2, 1, len, f) != len)
131 69aa0e90 2021-03-10 stsp return got_ferror(f, GOT_ERR_IO);
132 69aa0e90 2021-03-10 stsp if (memcmp(buf, buf2, len) == 0)
133 69aa0e90 2021-03-10 stsp return NULL;
134 69aa0e90 2021-03-10 stsp }
135 69aa0e90 2021-03-10 stsp
136 69aa0e90 2021-03-10 stsp i = (i + 1) % dt->nalloc;
137 56e7a15f 2021-03-10 stsp }
138 69aa0e90 2021-03-10 stsp assert(dt->blocks[i].len == 0);
139 69aa0e90 2021-03-10 stsp dt->blocks[i].len = len;
140 69aa0e90 2021-03-10 stsp dt->blocks[i].offset = offset;
141 69aa0e90 2021-03-10 stsp dt->blocks[i].hash = h;
142 69aa0e90 2021-03-10 stsp dt->nblocks++;
143 e89540a9 2021-06-11 stsp if (dt->nalloc < dt->nblocks + 64) {
144 69aa0e90 2021-03-10 stsp struct got_delta_block *db;
145 e89540a9 2021-06-11 stsp size_t old_size = dt->nalloc;
146 69aa0e90 2021-03-10 stsp db = dt->blocks;
147 e89540a9 2021-06-11 stsp dt->blocks = calloc(dt->nalloc + 64,
148 e89540a9 2021-06-11 stsp sizeof(struct got_delta_block));
149 69aa0e90 2021-03-10 stsp if (dt->blocks == NULL) {
150 69aa0e90 2021-03-10 stsp err = got_error_from_errno("calloc");
151 69aa0e90 2021-03-10 stsp dt->blocks = db;
152 69aa0e90 2021-03-10 stsp return err;
153 f364801d 2021-03-10 stsp }
154 e89540a9 2021-06-11 stsp dt->nalloc += 64;
155 69aa0e90 2021-03-10 stsp /*
156 69aa0e90 2021-03-10 stsp * Recompute all block positions. Hash-based indices of blocks
157 69aa0e90 2021-03-10 stsp * in the array depend on the allocated length of the array.
158 69aa0e90 2021-03-10 stsp */
159 69aa0e90 2021-03-10 stsp dt->nblocks = 0;
160 a893025f 2021-06-11 stsp for (i = 0; i < old_size; i++) {
161 69aa0e90 2021-03-10 stsp if (db[i].len == 0)
162 69aa0e90 2021-03-10 stsp continue;
163 69aa0e90 2021-03-10 stsp err = addblk(dt, f, db[i].len, db[i].offset,
164 69aa0e90 2021-03-10 stsp db[i].hash);
165 69aa0e90 2021-03-10 stsp if (err)
166 69aa0e90 2021-03-10 stsp break;
167 69aa0e90 2021-03-10 stsp }
168 56e7a15f 2021-03-10 stsp free(db);
169 f364801d 2021-03-10 stsp }
170 f364801d 2021-03-10 stsp
171 69aa0e90 2021-03-10 stsp return err;
172 56e7a15f 2021-03-10 stsp }
173 56e7a15f 2021-03-10 stsp
174 69aa0e90 2021-03-10 stsp static const struct got_error *
175 69aa0e90 2021-03-10 stsp lookupblk(struct got_delta_block **block, struct got_delta_table *dt,
176 69aa0e90 2021-03-10 stsp unsigned char *p, off_t len, FILE *basefile)
177 56e7a15f 2021-03-10 stsp {
178 69aa0e90 2021-03-10 stsp int i;
179 f364801d 2021-03-10 stsp uint64_t h;
180 69aa0e90 2021-03-10 stsp uint8_t buf[GOT_DELTIFY_MAXCHUNK];
181 69aa0e90 2021-03-10 stsp size_t r;
182 56e7a15f 2021-03-10 stsp
183 69aa0e90 2021-03-10 stsp *block = NULL;
184 69aa0e90 2021-03-10 stsp
185 69aa0e90 2021-03-10 stsp h = hashblk(p, len);
186 69aa0e90 2021-03-10 stsp for (i = h % dt->nalloc; dt->blocks[i].len != 0;
187 69aa0e90 2021-03-10 stsp i = (i + 1) % dt->nalloc) {
188 69aa0e90 2021-03-10 stsp if (dt->blocks[i].hash != h ||
189 69aa0e90 2021-03-10 stsp dt->blocks[i].len != len)
190 56e7a15f 2021-03-10 stsp continue;
191 69aa0e90 2021-03-10 stsp if (fseeko(basefile, dt->blocks[i].offset, SEEK_SET) == -1)
192 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
193 69aa0e90 2021-03-10 stsp r = fread(buf, 1, len, basefile);
194 69aa0e90 2021-03-10 stsp if (r != len)
195 69aa0e90 2021-03-10 stsp return got_ferror(basefile, GOT_ERR_IO);
196 69aa0e90 2021-03-10 stsp if (memcmp(p, buf, len) == 0) {
197 69aa0e90 2021-03-10 stsp *block = &dt->blocks[i];
198 69aa0e90 2021-03-10 stsp break;
199 69aa0e90 2021-03-10 stsp }
200 56e7a15f 2021-03-10 stsp }
201 f364801d 2021-03-10 stsp return NULL;
202 56e7a15f 2021-03-10 stsp }
203 56e7a15f 2021-03-10 stsp
204 69aa0e90 2021-03-10 stsp static const struct got_error *
205 69aa0e90 2021-03-10 stsp nextblk(uint8_t *buf, off_t *blocklen, FILE *f)
206 56e7a15f 2021-03-10 stsp {
207 f364801d 2021-03-10 stsp uint32_t gh;
208 69aa0e90 2021-03-10 stsp const unsigned char *p;
209 69aa0e90 2021-03-10 stsp size_t r;
210 69aa0e90 2021-03-10 stsp off_t pos = ftello(f);
211 56e7a15f 2021-03-10 stsp
212 69aa0e90 2021-03-10 stsp *blocklen = 0;
213 69aa0e90 2021-03-10 stsp
214 69aa0e90 2021-03-10 stsp r = fread(buf, 1, GOT_DELTIFY_MAXCHUNK, f);
215 69aa0e90 2021-03-10 stsp if (r == 0 && ferror(f))
216 69aa0e90 2021-03-10 stsp return got_ferror(f, GOT_ERR_IO);
217 69aa0e90 2021-03-10 stsp if (r < GOT_DELTIFY_MINCHUNK)
218 69aa0e90 2021-03-10 stsp return NULL; /* no more delta-worthy blocks left */
219 69aa0e90 2021-03-10 stsp
220 69aa0e90 2021-03-10 stsp /* Got a deltifiable block. Find the split-point where it ends. */
221 69aa0e90 2021-03-10 stsp p = buf + GOT_DELTIFY_MINCHUNK;
222 69aa0e90 2021-03-10 stsp gh = 0;
223 69aa0e90 2021-03-10 stsp while (p != buf + r) {
224 f364801d 2021-03-10 stsp gh = (gh << 1) + geartab[*p++];
225 69aa0e90 2021-03-10 stsp if ((gh & GOT_DELTIFY_SPLITMASK) == 0)
226 56e7a15f 2021-03-10 stsp break;
227 56e7a15f 2021-03-10 stsp }
228 69aa0e90 2021-03-10 stsp
229 69aa0e90 2021-03-10 stsp *blocklen = (p - buf);
230 69aa0e90 2021-03-10 stsp if (fseeko(f, pos + *blocklen, SEEK_SET) == -1)
231 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
232 69aa0e90 2021-03-10 stsp
233 69aa0e90 2021-03-10 stsp return NULL;
234 56e7a15f 2021-03-10 stsp }
235 56e7a15f 2021-03-10 stsp
236 f364801d 2021-03-10 stsp const struct got_error *
237 69aa0e90 2021-03-10 stsp got_deltify_init(struct got_delta_table **dt, FILE *f, off_t fileoffset,
238 69aa0e90 2021-03-10 stsp off_t filesize)
239 56e7a15f 2021-03-10 stsp {
240 69aa0e90 2021-03-10 stsp const struct got_error *err = NULL;
241 f364801d 2021-03-10 stsp uint64_t h;
242 69aa0e90 2021-03-10 stsp
243 69aa0e90 2021-03-10 stsp *dt = calloc(1, sizeof(**dt));
244 69aa0e90 2021-03-10 stsp if (*dt == NULL)
245 f364801d 2021-03-10 stsp return got_error_from_errno("calloc");
246 69aa0e90 2021-03-10 stsp
247 69aa0e90 2021-03-10 stsp (*dt)->nblocks = 0;
248 69aa0e90 2021-03-10 stsp (*dt)->nalloc = 128;
249 69aa0e90 2021-03-10 stsp (*dt)->blocks = calloc((*dt)->nalloc, sizeof(struct got_delta_block));
250 69aa0e90 2021-03-10 stsp if ((*dt)->blocks == NULL) {
251 69aa0e90 2021-03-10 stsp err = got_error_from_errno("calloc");
252 69aa0e90 2021-03-10 stsp goto done;
253 56e7a15f 2021-03-10 stsp }
254 f364801d 2021-03-10 stsp
255 69aa0e90 2021-03-10 stsp if (fseeko(f, fileoffset, SEEK_SET) == -1)
256 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
257 69aa0e90 2021-03-10 stsp
258 69aa0e90 2021-03-10 stsp while (fileoffset < filesize) {
259 69aa0e90 2021-03-10 stsp uint8_t buf[GOT_DELTIFY_MAXCHUNK];
260 69aa0e90 2021-03-10 stsp off_t blocklen;
261 69aa0e90 2021-03-10 stsp err = nextblk(buf, &blocklen, f);
262 69aa0e90 2021-03-10 stsp if (err)
263 69aa0e90 2021-03-10 stsp goto done;
264 69aa0e90 2021-03-10 stsp if (blocklen == 0)
265 69aa0e90 2021-03-10 stsp break;
266 69aa0e90 2021-03-10 stsp h = hashblk(buf, blocklen);
267 69aa0e90 2021-03-10 stsp err = addblk(*dt, f, blocklen, fileoffset, h);
268 69aa0e90 2021-03-10 stsp if (err)
269 69aa0e90 2021-03-10 stsp goto done;
270 69aa0e90 2021-03-10 stsp fileoffset += blocklen;
271 68bdcdc2 2021-06-11 stsp if (fseeko(f, fileoffset, SEEK_SET) == -1)
272 68bdcdc2 2021-06-11 stsp return got_error_from_errno("fseeko");
273 69aa0e90 2021-03-10 stsp }
274 69aa0e90 2021-03-10 stsp done:
275 69aa0e90 2021-03-10 stsp if (err) {
276 69aa0e90 2021-03-10 stsp free((*dt)->blocks);
277 69aa0e90 2021-03-10 stsp free(*dt);
278 69aa0e90 2021-03-10 stsp *dt = NULL;
279 69aa0e90 2021-03-10 stsp }
280 69aa0e90 2021-03-10 stsp
281 69aa0e90 2021-03-10 stsp return err;
282 56e7a15f 2021-03-10 stsp }
283 56e7a15f 2021-03-10 stsp
284 56e7a15f 2021-03-10 stsp void
285 69aa0e90 2021-03-10 stsp got_deltify_free(struct got_delta_table *dt)
286 56e7a15f 2021-03-10 stsp {
287 dbbf4a5f 2021-05-20 stsp if (dt == NULL)
288 dbbf4a5f 2021-05-20 stsp return;
289 69aa0e90 2021-03-10 stsp free(dt->blocks);
290 69aa0e90 2021-03-10 stsp free(dt);
291 56e7a15f 2021-03-10 stsp }
292 56e7a15f 2021-03-10 stsp
293 f364801d 2021-03-10 stsp static const struct got_error *
294 69aa0e90 2021-03-10 stsp emitdelta(struct got_delta_instruction **deltas, int *ndeltas, int copy,
295 69aa0e90 2021-03-10 stsp off_t offset, off_t len)
296 56e7a15f 2021-03-10 stsp {
297 69aa0e90 2021-03-10 stsp struct got_delta_instruction *d, *p;
298 56e7a15f 2021-03-10 stsp
299 69aa0e90 2021-03-10 stsp *ndeltas += 1;
300 69aa0e90 2021-03-10 stsp p = reallocarray(*deltas, *ndeltas,
301 69aa0e90 2021-03-10 stsp sizeof(struct got_delta_instruction));
302 f364801d 2021-03-10 stsp if (p == NULL)
303 f364801d 2021-03-10 stsp return got_error_from_errno("realloc");
304 69aa0e90 2021-03-10 stsp *deltas = p;
305 69aa0e90 2021-03-10 stsp d = &(*deltas)[*ndeltas - 1];
306 69aa0e90 2021-03-10 stsp d->copy = copy;
307 69aa0e90 2021-03-10 stsp d->offset = offset;
308 56e7a15f 2021-03-10 stsp d->len = len;
309 f364801d 2021-03-10 stsp return NULL;
310 56e7a15f 2021-03-10 stsp }
311 56e7a15f 2021-03-10 stsp
312 69aa0e90 2021-03-10 stsp static const struct got_error *
313 69aa0e90 2021-03-10 stsp stretchblk(FILE *basefile, struct got_delta_block *block, FILE *f,
314 69aa0e90 2021-03-10 stsp off_t filesize, off_t *blocklen)
315 56e7a15f 2021-03-10 stsp {
316 69aa0e90 2021-03-10 stsp uint8_t basebuf[GOT_DELTIFY_MAXCHUNK], buf[GOT_DELTIFY_MAXCHUNK];
317 69aa0e90 2021-03-10 stsp size_t base_r, r, i;
318 69aa0e90 2021-03-10 stsp off_t orig_blocklen = *blocklen;
319 69aa0e90 2021-03-10 stsp off_t pos = ftello(f);
320 69aa0e90 2021-03-10 stsp int buf_equal = 1;
321 56e7a15f 2021-03-10 stsp
322 69aa0e90 2021-03-10 stsp if (fseeko(basefile, block->offset, SEEK_SET) == -1)
323 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
324 69aa0e90 2021-03-10 stsp
325 69aa0e90 2021-03-10 stsp while (buf_equal && *blocklen < (1 << 24) - 1) {
326 69aa0e90 2021-03-10 stsp base_r = fread(basebuf, 1, sizeof(basebuf), basefile);
327 69aa0e90 2021-03-10 stsp if (base_r == 0) {
328 69aa0e90 2021-03-10 stsp if (ferror(basefile))
329 69aa0e90 2021-03-10 stsp return got_ferror(basefile, GOT_ERR_IO);
330 56e7a15f 2021-03-10 stsp break;
331 69aa0e90 2021-03-10 stsp }
332 69aa0e90 2021-03-10 stsp r = fread(buf, 1, sizeof(buf), f);
333 69aa0e90 2021-03-10 stsp if (r == 0) {
334 69aa0e90 2021-03-10 stsp if (ferror(f))
335 69aa0e90 2021-03-10 stsp return got_ferror(f, GOT_ERR_IO);
336 56e7a15f 2021-03-10 stsp break;
337 69aa0e90 2021-03-10 stsp }
338 69aa0e90 2021-03-10 stsp for (i = 0; i < MIN(base_r, r); i++) {
339 69aa0e90 2021-03-10 stsp if (buf[i] != basebuf[i]) {
340 69aa0e90 2021-03-10 stsp buf_equal = 0;
341 69aa0e90 2021-03-10 stsp break;
342 69aa0e90 2021-03-10 stsp }
343 69aa0e90 2021-03-10 stsp (*blocklen)++;
344 69aa0e90 2021-03-10 stsp }
345 56e7a15f 2021-03-10 stsp }
346 69aa0e90 2021-03-10 stsp
347 69aa0e90 2021-03-10 stsp if (fseeko(f, pos + *blocklen - orig_blocklen, SEEK_SET) == -1)
348 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
349 69aa0e90 2021-03-10 stsp
350 69aa0e90 2021-03-10 stsp return NULL;
351 56e7a15f 2021-03-10 stsp }
352 56e7a15f 2021-03-10 stsp
353 69aa0e90 2021-03-10 stsp const struct got_error *
354 69aa0e90 2021-03-10 stsp got_deltify(struct got_delta_instruction **deltas, int *ndeltas,
355 69aa0e90 2021-03-10 stsp FILE *f, off_t fileoffset, off_t filesize,
356 69aa0e90 2021-03-10 stsp struct got_delta_table *dt, FILE *basefile,
357 f34b169e 2021-06-18 stsp off_t basefile_offset0, off_t basefile_size)
358 56e7a15f 2021-03-10 stsp {
359 69aa0e90 2021-03-10 stsp const struct got_error *err = NULL;
360 69aa0e90 2021-03-10 stsp const off_t offset0 = fileoffset;
361 69aa0e90 2021-03-10 stsp
362 69aa0e90 2021-03-10 stsp *deltas = NULL;
363 69aa0e90 2021-03-10 stsp *ndeltas = 0;
364 69aa0e90 2021-03-10 stsp
365 69aa0e90 2021-03-10 stsp /*
366 69aa0e90 2021-03-10 stsp * offset0 indicates where data to be deltified begins.
367 69aa0e90 2021-03-10 stsp * For example, we want to avoid deltifying a Git object header at
368 69aa0e90 2021-03-10 stsp * the beginning of the file.
369 69aa0e90 2021-03-10 stsp */
370 69aa0e90 2021-03-10 stsp if (fseeko(f, offset0, SEEK_SET) == -1)
371 69aa0e90 2021-03-10 stsp return got_error_from_errno("fseeko");
372 69aa0e90 2021-03-10 stsp
373 69aa0e90 2021-03-10 stsp while (fileoffset < filesize) {
374 69aa0e90 2021-03-10 stsp uint8_t buf[GOT_DELTIFY_MAXCHUNK];
375 69aa0e90 2021-03-10 stsp off_t blocklen;
376 69aa0e90 2021-03-10 stsp struct got_delta_block *block;
377 69aa0e90 2021-03-10 stsp err = nextblk(buf, &blocklen, f);
378 69aa0e90 2021-03-10 stsp if (err)
379 69aa0e90 2021-03-10 stsp break;
380 69aa0e90 2021-03-10 stsp if (blocklen == 0)
381 69aa0e90 2021-03-10 stsp break;
382 69aa0e90 2021-03-10 stsp err = lookupblk(&block, dt, buf, blocklen, basefile);
383 69aa0e90 2021-03-10 stsp if (err)
384 69aa0e90 2021-03-10 stsp break;
385 69aa0e90 2021-03-10 stsp if (block != NULL) {
386 69aa0e90 2021-03-10 stsp /*
387 69aa0e90 2021-03-10 stsp * We have found a matching block in the delta base.
388 69aa0e90 2021-03-10 stsp * Attempt to stretch the block as far as possible and
389 69aa0e90 2021-03-10 stsp * generate a copy instruction.
390 69aa0e90 2021-03-10 stsp */
391 69aa0e90 2021-03-10 stsp err = stretchblk(basefile, block, f, filesize,
392 69aa0e90 2021-03-10 stsp &blocklen);
393 69aa0e90 2021-03-10 stsp if (err)
394 69aa0e90 2021-03-10 stsp break;
395 f34b169e 2021-06-18 stsp emitdelta(deltas, ndeltas, 1,
396 f34b169e 2021-06-18 stsp block->offset - basefile_offset0, blocklen);
397 69aa0e90 2021-03-10 stsp } else {
398 69aa0e90 2021-03-10 stsp /*
399 69aa0e90 2021-03-10 stsp * No match.
400 69aa0e90 2021-03-10 stsp * This block needs to be sourced from the file itself.
401 69aa0e90 2021-03-10 stsp */
402 69aa0e90 2021-03-10 stsp emitdelta(deltas, ndeltas, 0, fileoffset - offset0,
403 69aa0e90 2021-03-10 stsp blocklen);
404 69aa0e90 2021-03-10 stsp }
405 69aa0e90 2021-03-10 stsp fileoffset += blocklen;
406 56e7a15f 2021-03-10 stsp }
407 69aa0e90 2021-03-10 stsp
408 69aa0e90 2021-03-10 stsp if (err) {
409 69aa0e90 2021-03-10 stsp free(*deltas);
410 69aa0e90 2021-03-10 stsp *deltas = NULL;
411 69aa0e90 2021-03-10 stsp *ndeltas = 0;
412 69aa0e90 2021-03-10 stsp }
413 69aa0e90 2021-03-10 stsp return err;
414 56e7a15f 2021-03-10 stsp }