author | Maciej Fijalkowski <fijall@gmail.com> |
Fri, 22 Jul 2016 17:28:05 +0200 | |
changeset 29708 | 55dd12204b8e |
parent 29707 | b9b9f9a92481 |
child 29752 | 21ac534d7d30 |
permissions | -rw-r--r-- |
72 | 1 |
/* |
2 |
mpatch.c - efficient binary patching for Mercurial |
|
3 |
||
4 |
This implements a patch algorithm that's O(m + nlog n) where m is the |
|
5 |
size of the output and n is the number of patches. |
|
6 |
||
7 |
Given a list of binary patches, it unpacks each into a hunk list, |
|
8 |
then combines the hunk lists with a treewise recursion to form a |
|
9 |
single hunk list. This hunk list is then applied to the original |
|
10 |
text. |
|
11 |
||
12 |
The text (or binary) fragments are copied directly from their source |
|
13 |
Python objects into a preallocated output string to avoid the |
|
14 |
allocation of intermediate Python objects. Working memory is about 2x |
|
15 |
the total number of hunks. |
|
16 |
||
2859 | 17 |
Copyright 2005, 2006 Matt Mackall <mpm@selenic.com> |
72 | 18 |
|
19 |
This software may be used and distributed according to the terms |
|
20 |
of the GNU General Public License, incorporated herein by reference. |
|
21 |
*/ |
|
22 |
||
23 |
#include <stdlib.h> |
|
24 |
#include <string.h> |
|
2468
1ac0574f1768
mac os x: fixes for 10.2 from chris monson <monpublic@gmail.com>
Vadim Gelfer <vadim.gelfer@gmail.com>
parents:
2083
diff
changeset
|
25 |
|
29444
284d742e5611
internals: move the bitmanipulation routines into its own file
Maciej Fijalkowski <fijall@gmail.com>
parents:
28782
diff
changeset
|
26 |
#include "bitmanipulation.h" |
29705
e9a0bcc9314d
mpatch: change Py_ssize_t to ssize_t in places that will be later copied
Maciej Fijalkowski <fijall@gmail.com>
parents:
29444
diff
changeset
|
27 |
#include "compat.h" |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
28 |
#include "mpatch.h" |
72 | 29 |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
30 |
char *mpatch_errors[] = {NULL, "invalid patch", "patch cannot be decoded", |
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
31 |
"no memory"}; |
72 | 32 |
|
29707
b9b9f9a92481
mpatch: split mpatch into two files
Maciej Fijalkowski <fijall@gmail.com>
parents:
29706
diff
changeset
|
33 |
struct mpatch_flist *lalloc(ssize_t size) |
72 | 34 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
35 |
struct mpatch_flist *a = NULL; |
72 | 36 |
|
3138
cc856c4d91ca
mpatch: Fix for malloc corner case on AIX
Matt Mackall <mpm@selenic.com>
parents:
2859
diff
changeset
|
37 |
if (size < 1) |
cc856c4d91ca
mpatch: Fix for malloc corner case on AIX
Matt Mackall <mpm@selenic.com>
parents:
2859
diff
changeset
|
38 |
size = 1; |
cc856c4d91ca
mpatch: Fix for malloc corner case on AIX
Matt Mackall <mpm@selenic.com>
parents:
2859
diff
changeset
|
39 |
|
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
40 |
a = (struct mpatch_flist *)malloc(sizeof(struct mpatch_flist)); |
128 | 41 |
if (a) { |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
42 |
a->base = (struct mpatch_frag *)malloc(sizeof(struct mpatch_frag) * size); |
2048
8f9660c568b8
Set correct exception for another possible malloc error in mpatch.c
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1978
diff
changeset
|
43 |
if (a->base) { |
128 | 44 |
a->head = a->tail = a->base; |
2048
8f9660c568b8
Set correct exception for another possible malloc error in mpatch.c
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1978
diff
changeset
|
45 |
return a; |
8f9660c568b8
Set correct exception for another possible malloc error in mpatch.c
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1978
diff
changeset
|
46 |
} |
8f9660c568b8
Set correct exception for another possible malloc error in mpatch.c
Thomas Arendsen Hein <thomas@intevation.de>
parents:
1978
diff
changeset
|
47 |
free(a); |
128 | 48 |
} |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
49 |
return NULL; |
72 | 50 |
} |
51 |
||
29707
b9b9f9a92481
mpatch: split mpatch into two files
Maciej Fijalkowski <fijall@gmail.com>
parents:
29706
diff
changeset
|
52 |
void mpatch_lfree(struct mpatch_flist *a) |
72 | 53 |
{ |
128 | 54 |
if (a) { |
55 |
free(a->base); |
|
56 |
free(a); |
|
57 |
} |
|
72 | 58 |
} |
59 |
||
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
60 |
static ssize_t lsize(struct mpatch_flist *a) |
72 | 61 |
{ |
62 |
return a->tail - a->head; |
|
63 |
} |
|
64 |
||
65 |
/* move hunks in source that are less cut to dest, compensating |
|
66 |
for changes in offset. the last hunk may be split if necessary. |
|
67 |
*/ |
|
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
68 |
static int gather(struct mpatch_flist *dest, struct mpatch_flist *src, int cut, |
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
69 |
int offset) |
72 | 70 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
71 |
struct mpatch_frag *d = dest->tail, *s = src->head; |
72 | 72 |
int postend, c, l; |
73 |
||
74 |
while (s != src->tail) { |
|
75 |
if (s->start + offset >= cut) |
|
82 | 76 |
break; /* we've gone far enough */ |
72 | 77 |
|
78 |
postend = offset + s->start + s->len; |
|
79 |
if (postend <= cut) { |
|
80 |
/* save this hunk */ |
|
81 |
offset += s->start + s->len - s->end; |
|
82 |
*d++ = *s++; |
|
83 |
} |
|
84 |
else { |
|
85 |
/* break up this hunk */ |
|
86 |
c = cut - offset; |
|
87 |
if (s->end < c) |
|
88 |
c = s->end; |
|
89 |
l = cut - offset - s->start; |
|
90 |
if (s->len < l) |
|
91 |
l = s->len; |
|
92 |
||
93 |
offset += s->start + l - c; |
|
94 |
||
95 |
d->start = s->start; |
|
96 |
d->end = c; |
|
97 |
d->len = l; |
|
98 |
d->data = s->data; |
|
99 |
d++; |
|
100 |
s->start = c; |
|
101 |
s->len = s->len - l; |
|
102 |
s->data = s->data + l; |
|
103 |
||
82 | 104 |
break; |
72 | 105 |
} |
106 |
} |
|
107 |
||
108 |
dest->tail = d; |
|
109 |
src->head = s; |
|
110 |
return offset; |
|
111 |
} |
|
112 |
||
113 |
/* like gather, but with no output list */ |
|
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
114 |
static int discard(struct mpatch_flist *src, int cut, int offset) |
72 | 115 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
116 |
struct mpatch_frag *s = src->head; |
72 | 117 |
int postend, c, l; |
118 |
||
119 |
while (s != src->tail) { |
|
120 |
if (s->start + offset >= cut) |
|
82 | 121 |
break; |
72 | 122 |
|
123 |
postend = offset + s->start + s->len; |
|
124 |
if (postend <= cut) { |
|
125 |
offset += s->start + s->len - s->end; |
|
126 |
s++; |
|
127 |
} |
|
128 |
else { |
|
129 |
c = cut - offset; |
|
130 |
if (s->end < c) |
|
131 |
c = s->end; |
|
132 |
l = cut - offset - s->start; |
|
133 |
if (s->len < l) |
|
134 |
l = s->len; |
|
135 |
||
136 |
offset += s->start + l - c; |
|
137 |
s->start = c; |
|
138 |
s->len = s->len - l; |
|
139 |
s->data = s->data + l; |
|
140 |
||
82 | 141 |
break; |
72 | 142 |
} |
143 |
} |
|
144 |
||
145 |
src->head = s; |
|
146 |
return offset; |
|
147 |
} |
|
148 |
||
149 |
/* combine hunk lists a and b, while adjusting b for offset changes in a/ |
|
150 |
this deletes a and b and returns the resultant list. */ |
|
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
151 |
static struct mpatch_flist *combine(struct mpatch_flist *a, |
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
152 |
struct mpatch_flist *b) |
72 | 153 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
154 |
struct mpatch_flist *c = NULL; |
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
155 |
struct mpatch_frag *bh, *ct; |
72 | 156 |
int offset = 0, post; |
157 |
||
128 | 158 |
if (a && b) |
159 |
c = lalloc((lsize(a) + lsize(b)) * 2); |
|
160 |
||
161 |
if (c) { |
|
72 | 162 |
|
128 | 163 |
for (bh = b->head; bh != b->tail; bh++) { |
164 |
/* save old hunks */ |
|
165 |
offset = gather(c, a, bh->start, offset); |
|
72 | 166 |
|
128 | 167 |
/* discard replaced hunks */ |
168 |
post = discard(a, bh->end, offset); |
|
72 | 169 |
|
128 | 170 |
/* insert new hunk */ |
171 |
ct = c->tail; |
|
172 |
ct->start = bh->start - offset; |
|
173 |
ct->end = bh->end - post; |
|
174 |
ct->len = bh->len; |
|
175 |
ct->data = bh->data; |
|
176 |
c->tail++; |
|
177 |
offset = post; |
|
178 |
} |
|
179 |
||
180 |
/* hold on to tail from a */ |
|
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
181 |
memcpy(c->tail, a->head, sizeof(struct mpatch_frag) * lsize(a)); |
128 | 182 |
c->tail += lsize(a); |
72 | 183 |
} |
184 |
||
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
185 |
mpatch_lfree(a); |
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
186 |
mpatch_lfree(b); |
72 | 187 |
return c; |
188 |
} |
|
189 |
||
190 |
/* decode a binary patch into a hunk list */ |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
191 |
int mpatch_decode(const char *bin, ssize_t len, struct mpatch_flist **res) |
72 | 192 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
193 |
struct mpatch_flist *l; |
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
194 |
struct mpatch_frag *lt; |
20167
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
195 |
int pos = 0; |
72 | 196 |
|
197 |
/* assume worst case size, we won't have many of these lists */ |
|
28656
b6ed2505d6cf
parsers: fix list sizing rounding error (SEC)
Matt Mackall <mpm@selenic.com>
parents:
20167
diff
changeset
|
198 |
l = lalloc(len / 12 + 1); |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
199 |
if (!l) |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
200 |
return MPATCH_ERR_NO_MEM; |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
201 |
|
72 | 202 |
lt = l->tail; |
203 |
||
20167
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
204 |
while (pos >= 0 && pos < len) { |
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
205 |
lt->start = getbe32(bin + pos); |
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
206 |
lt->end = getbe32(bin + pos + 4); |
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
207 |
lt->len = getbe32(bin + pos + 8); |
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
208 |
lt->data = bin + pos + 12; |
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
209 |
pos += 12 + lt->len; |
28657
b9714d958e89
parsers: detect short records (SEC)
Matt Mackall <mpm@selenic.com>
parents:
28656
diff
changeset
|
210 |
if (lt->start > lt->end || lt->len < 0) |
b9714d958e89
parsers: detect short records (SEC)
Matt Mackall <mpm@selenic.com>
parents:
28656
diff
changeset
|
211 |
break; /* sanity check */ |
72 | 212 |
lt++; |
213 |
} |
|
214 |
||
20167
09e41ac6289d
mpatch: rewrite pointer overflow checks
Matt Mackall <mpm@selenic.com>
parents:
16758
diff
changeset
|
215 |
if (pos != len) { |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
216 |
mpatch_lfree(l); |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
217 |
return MPATCH_ERR_CANNOT_BE_DECODED; |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
218 |
} |
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
219 |
|
72 | 220 |
l->tail = lt; |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
221 |
*res = l; |
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
222 |
return 0; |
72 | 223 |
} |
224 |
||
225 |
/* calculate the size of resultant text */ |
|
29707
b9b9f9a92481
mpatch: split mpatch into two files
Maciej Fijalkowski <fijall@gmail.com>
parents:
29706
diff
changeset
|
226 |
ssize_t mpatch_calcsize(ssize_t len, struct mpatch_flist *l) |
72 | 227 |
{ |
29705
e9a0bcc9314d
mpatch: change Py_ssize_t to ssize_t in places that will be later copied
Maciej Fijalkowski <fijall@gmail.com>
parents:
29444
diff
changeset
|
228 |
ssize_t outlen = 0, last = 0; |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
229 |
struct mpatch_frag *f = l->head; |
72 | 230 |
|
231 |
while (f != l->tail) { |
|
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
232 |
if (f->start < last || f->end > len) { |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
233 |
return MPATCH_ERR_INVALID_PATCH; |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
234 |
} |
72 | 235 |
outlen += f->start - last; |
236 |
last = f->end; |
|
237 |
outlen += f->len; |
|
238 |
f++; |
|
239 |
} |
|
240 |
||
241 |
outlen += len - last; |
|
242 |
return outlen; |
|
243 |
} |
|
244 |
||
29707
b9b9f9a92481
mpatch: split mpatch into two files
Maciej Fijalkowski <fijall@gmail.com>
parents:
29706
diff
changeset
|
245 |
int mpatch_apply(char *buf, const char *orig, ssize_t len, |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
246 |
struct mpatch_flist *l) |
72 | 247 |
{ |
29706
6b3a8d034b69
mpatch: provide things that will be exported later with a prefixed name
Maciej Fijalkowski <fijall@gmail.com>
parents:
29705
diff
changeset
|
248 |
struct mpatch_frag *f = l->head; |
72 | 249 |
int last = 0; |
250 |
char *p = buf; |
|
251 |
||
252 |
while (f != l->tail) { |
|
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
253 |
if (f->start < last || f->end > len) { |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
254 |
return MPATCH_ERR_INVALID_PATCH; |
1722
681c5c211b92
catch errors and throw exception with invalid binary patch data
Benoit Boissinot <benoit.boissinot@ens-lyon.org>
parents:
597
diff
changeset
|
255 |
} |
72 | 256 |
memcpy(p, orig + last, f->start - last); |
257 |
p += f->start - last; |
|
258 |
memcpy(p, f->data, f->len); |
|
259 |
last = f->end; |
|
260 |
p += f->len; |
|
261 |
f++; |
|
262 |
} |
|
263 |
memcpy(p, orig + last, len - last); |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
264 |
return 0; |
72 | 265 |
} |
266 |
||
267 |
/* recursively generate a patch of all bins between start and end */ |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
268 |
struct mpatch_flist *mpatch_fold(void *bins, |
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
269 |
struct mpatch_flist* (*get_next_item)(void*, ssize_t), |
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
270 |
ssize_t start, ssize_t end) |
72 | 271 |
{ |
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
272 |
ssize_t len; |
72 | 273 |
|
274 |
if (start + 1 == end) { |
|
275 |
/* trivial case, output a decoded list */ |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
276 |
return get_next_item(bins, start); |
72 | 277 |
} |
278 |
||
279 |
/* divide and conquer, memory management is elsewhere */ |
|
280 |
len = (end - start) / 2; |
|
29708
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
281 |
return combine(mpatch_fold(bins, get_next_item, start, start + len), |
55dd12204b8e
mpatch: remove dependency on Python.h in mpatch.c
Maciej Fijalkowski <fijall@gmail.com>
parents:
29707
diff
changeset
|
282 |
mpatch_fold(bins, get_next_item, start + len, end)); |
72 | 283 |
} |
284 |