3 * recreate a buffer from a source and the delta produced by diff-delta.c
5 * (C) 2005 Nicolas Pitre <nico@fluxnic.net>
7 * This code is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
12 #include "git-compat-util.h"
15 void *patch_delta(const void *src_buf
, unsigned long src_size
,
16 const void *delta_buf
, unsigned long delta_size
,
17 unsigned long *dst_size
)
19 const unsigned char *data
, *top
;
20 unsigned char *dst_buf
, *out
, cmd
;
23 if (delta_size
< DELTA_SIZE_MIN
)
27 top
= (const unsigned char *) delta_buf
+ delta_size
;
29 /* make sure the orig file size matches what we expect */
30 size
= get_delta_hdr_size(&data
, top
);
34 /* now the result size */
35 size
= get_delta_hdr_size(&data
, top
);
36 dst_buf
= xmallocz(size
);
42 unsigned long cp_off
= 0, cp_size
= 0;
43 #define PARSE_CP_PARAM(bit, var, shift) do { \
47 var |= ((unsigned) *data++ << (shift)); \
49 PARSE_CP_PARAM(0x01, cp_off
, 0);
50 PARSE_CP_PARAM(0x02, cp_off
, 8);
51 PARSE_CP_PARAM(0x04, cp_off
, 16);
52 PARSE_CP_PARAM(0x08, cp_off
, 24);
53 PARSE_CP_PARAM(0x10, cp_size
, 0);
54 PARSE_CP_PARAM(0x20, cp_size
, 8);
55 PARSE_CP_PARAM(0x40, cp_size
, 16);
57 if (cp_size
== 0) cp_size
= 0x10000;
58 if (unsigned_add_overflows(cp_off
, cp_size
) ||
59 cp_off
+ cp_size
> src_size
||
62 memcpy(out
, (char *) src_buf
+ cp_off
, cp_size
);
66 if (cmd
> size
|| cmd
> top
- data
)
68 memcpy(out
, data
, cmd
);
74 * cmd == 0 is reserved for future encoding
75 * extensions. In the mean time we must fail when
76 * encountering them (might be data corruption).
78 error("unexpected delta opcode 0");
84 if (data
!= top
|| size
!= 0) {
86 error("delta replay has gone wild");
92 *dst_size
= out
- dst_buf
;