2005-05-19 16:27:14 +02:00
|
|
|
/*
|
|
|
|
* patch-delta.c:
|
|
|
|
* recreate a buffer from a source and the delta produced by diff-delta.c
|
|
|
|
*
|
2009-09-14 08:41:16 +02:00
|
|
|
* (C) 2005 Nicolas Pitre <nico@fluxnic.net>
|
2005-05-19 16:27:14 +02:00
|
|
|
*
|
|
|
|
* This code is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
2006-12-18 22:06:50 +01:00
|
|
|
#include "git-compat-util.h"
|
2005-05-19 16:27:14 +02:00
|
|
|
#include "delta.h"
|
|
|
|
|
2006-04-25 05:07:47 +02:00
|
|
|
void *patch_delta(const void *src_buf, unsigned long src_size,
|
|
|
|
const void *delta_buf, unsigned long delta_size,
|
2005-05-19 16:27:14 +02:00
|
|
|
unsigned long *dst_size)
|
|
|
|
{
|
|
|
|
const unsigned char *data, *top;
|
|
|
|
unsigned char *dst_buf, *out, cmd;
|
|
|
|
unsigned long size;
|
|
|
|
|
2005-06-29 08:49:56 +02:00
|
|
|
if (delta_size < DELTA_SIZE_MIN)
|
2005-05-19 16:27:14 +02:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
data = delta_buf;
|
2006-06-18 17:18:09 +02:00
|
|
|
top = (const unsigned char *) delta_buf + delta_size;
|
2005-05-19 16:27:14 +02:00
|
|
|
|
|
|
|
/* make sure the orig file size matches what we expect */
|
2006-04-07 21:26:10 +02:00
|
|
|
size = get_delta_hdr_size(&data, top);
|
2005-05-19 16:27:14 +02:00
|
|
|
if (size != src_size)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
/* now the result size */
|
2006-04-07 21:26:10 +02:00
|
|
|
size = get_delta_hdr_size(&data, top);
|
2010-01-26 19:24:13 +01:00
|
|
|
dst_buf = xmallocz(size);
|
2005-05-19 16:27:14 +02:00
|
|
|
|
|
|
|
out = dst_buf;
|
|
|
|
while (data < top) {
|
|
|
|
cmd = *data++;
|
|
|
|
if (cmd & 0x80) {
|
|
|
|
unsigned long cp_off = 0, cp_size = 0;
|
2018-08-30 09:12:52 +02:00
|
|
|
#define PARSE_CP_PARAM(bit, var, shift) do { \
|
|
|
|
if (cmd & (bit)) { \
|
|
|
|
if (data >= top) \
|
|
|
|
goto bad_length; \
|
|
|
|
var |= ((unsigned) *data++ << (shift)); \
|
|
|
|
} } while (0)
|
|
|
|
PARSE_CP_PARAM(0x01, cp_off, 0);
|
|
|
|
PARSE_CP_PARAM(0x02, cp_off, 8);
|
|
|
|
PARSE_CP_PARAM(0x04, cp_off, 16);
|
|
|
|
PARSE_CP_PARAM(0x08, cp_off, 24);
|
|
|
|
PARSE_CP_PARAM(0x10, cp_size, 0);
|
|
|
|
PARSE_CP_PARAM(0x20, cp_size, 8);
|
|
|
|
PARSE_CP_PARAM(0x40, cp_size, 16);
|
|
|
|
#undef PARSE_CP_PARAM
|
2005-05-19 16:27:14 +02:00
|
|
|
if (cp_size == 0) cp_size = 0x10000;
|
2010-10-11 04:59:26 +02:00
|
|
|
if (unsigned_add_overflows(cp_off, cp_size) ||
|
2006-04-07 21:26:10 +02:00
|
|
|
cp_off + cp_size > src_size ||
|
|
|
|
cp_size > size)
|
2018-08-30 09:10:26 +02:00
|
|
|
goto bad_length;
|
2006-06-18 17:18:09 +02:00
|
|
|
memcpy(out, (char *) src_buf + cp_off, cp_size);
|
2005-05-19 16:27:14 +02:00
|
|
|
out += cp_size;
|
2006-04-07 21:26:10 +02:00
|
|
|
size -= cp_size;
|
|
|
|
} else if (cmd) {
|
2018-08-30 09:09:45 +02:00
|
|
|
if (cmd > size || cmd > top - data)
|
2018-08-30 09:10:26 +02:00
|
|
|
goto bad_length;
|
2005-05-19 16:27:14 +02:00
|
|
|
memcpy(out, data, cmd);
|
|
|
|
out += cmd;
|
|
|
|
data += cmd;
|
2006-04-07 21:26:10 +02:00
|
|
|
size -= cmd;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* cmd == 0 is reserved for future encoding
|
|
|
|
* extensions. In the mean time we must fail when
|
|
|
|
* encountering them (might be data corruption).
|
|
|
|
*/
|
2006-12-18 22:06:50 +01:00
|
|
|
error("unexpected delta opcode 0");
|
2006-04-07 21:26:10 +02:00
|
|
|
goto bad;
|
2005-05-19 16:27:14 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sanity check */
|
2006-04-07 21:26:10 +02:00
|
|
|
if (data != top || size != 0) {
|
2018-08-30 09:10:26 +02:00
|
|
|
bad_length:
|
2006-12-18 22:06:50 +01:00
|
|
|
error("delta replay has gone wild");
|
2006-04-07 21:26:10 +02:00
|
|
|
bad:
|
2005-05-19 16:27:14 +02:00
|
|
|
free(dst_buf);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2006-04-07 21:26:10 +02:00
|
|
|
*dst_size = out - dst_buf;
|
2005-05-19 16:27:14 +02:00
|
|
|
return dst_buf;
|
|
|
|
}
|