2006-04-05 09:03:58 +00:00
|
|
|
#ifndef XDIFF_INTERFACE_H
|
|
|
|
#define XDIFF_INTERFACE_H
|
|
|
|
|
|
|
|
#include "xdiff/xdiff.h"
|
|
|
|
|
xdiff: reject files larger than ~1GB
The xdiff code is not prepared to handle extremely large
files. It uses "int" in many places, which can overflow if
we have a very large number of lines or even bytes in our
input files. This can cause us to produce incorrect diffs,
with no indication that the output is wrong. Or worse, we
may even underallocate a buffer whose size is the result of
an overflowing addition.
We're much better off to tell the user that we cannot diff
or merge such a large file. This patch covers both cases,
but in slightly different ways:
1. For merging, we notice the large file and cleanly fall
back to a binary merge (which is effectively "we cannot
merge this").
2. For diffing, we make the binary/text distinction much
earlier, and in many different places. For this case,
we'll use the xdi_diff as our choke point, and reject
any diff there before it hits the xdiff code.
This means in most cases we'll die() immediately after.
That's not ideal, but in practice we shouldn't
generally hit this code path unless the user is trying
to do something tricky. We already consider files
larger than core.bigfilethreshold to be binary, so this
code would only kick in when that is circumvented
(either by bumping that value, or by using a
.gitattribute to mark a file as diffable).
In other words, we can avoid being "nice" here, because
there is already nice code that tries to do the right
thing. We are adding the suspenders to the nice code's
belt, so notice when it has been worked around (both to
protect the user from malicious inputs, and because it
is better to die() than generate bogus output).
The maximum size was chosen after experimenting with feeding
large files to the xdiff code. It's just under a gigabyte,
which leaves room for two obvious cases:
- a diff3 merge conflict result on files of maximum size X
could be 3*X plus the size of the markers, which would
still be only about 3G, which fits in a 32-bit int.
- some of the diff code allocates arrays of one int per
record. Even if each file consists only of blank lines,
then a file smaller than 1G will have fewer than 1G
records, and therefore the int array will fit in 4G.
Since the limit is arbitrary anyway, I chose to go under a
gigabyte, to leave a safety margin (e.g., we would not want
to overflow by allocating "(records + 1) * sizeof(int)" or
similar.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2015-09-24 23:12:45 +00:00
|
|
|
/*
|
|
|
|
* xdiff isn't equipped to handle content over a gigabyte;
|
|
|
|
* we make the cutoff 1GB - 1MB to give some breathing
|
|
|
|
* room for constant-sized additions (e.g., merge markers)
|
|
|
|
*/
|
|
|
|
#define MAX_XDIFF_SIZE (1024UL * 1024 * 1023)
|
|
|
|
|
2006-04-05 09:03:58 +00:00
|
|
|
typedef void (*xdiff_emit_consume_fn)(void *, char *, unsigned long);
|
|
|
|
|
2007-12-13 21:25:07 +00:00
|
|
|
int xdi_diff(mmfile_t *mf1, mmfile_t *mf2, xpparam_t const *xpp, xdemitconf_t const *xecfg, xdemitcb_t *ecb);
|
Make xdi_diff_outf interface for running xdiff_outf diffs
To prepare for the need to initialize and release resources for an
xdi_diff with the xdiff_outf output function, make a new function to
wrap this usage.
Old:
ecb.outf = xdiff_outf;
ecb.priv = &state;
...
xdi_diff(file_p, file_o, &xpp, &xecfg, &ecb);
New:
xdi_diff_outf(file_p, file_o, &state.xm, &xpp, &xecfg, &ecb);
Signed-off-by: Brian Downing <bdowning@lavos.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2008-08-14 05:36:50 +00:00
|
|
|
int xdi_diff_outf(mmfile_t *mf1, mmfile_t *mf2,
|
2008-08-14 06:18:22 +00:00
|
|
|
xdiff_emit_consume_fn fn, void *consume_callback_data,
|
2010-05-04 20:41:34 +00:00
|
|
|
xpparam_t const *xpp, xdemitconf_t const *xecfg);
|
2006-04-05 19:22:35 +00:00
|
|
|
int parse_hunk_header(char *line, int len,
|
2006-04-07 05:29:55 +00:00
|
|
|
int *ob, int *on,
|
|
|
|
int *nb, int *nn);
|
2006-12-20 16:37:07 +00:00
|
|
|
int read_mmfile(mmfile_t *ptr, const char *filename);
|
2010-02-16 23:42:55 +00:00
|
|
|
void read_mmblob(mmfile_t *ptr, const unsigned char *sha1);
|
2007-06-05 02:36:11 +00:00
|
|
|
int buffer_is_binary(const char *ptr, unsigned long size);
|
2006-04-05 09:03:58 +00:00
|
|
|
|
2008-09-18 22:42:48 +00:00
|
|
|
extern void xdiff_set_find_func(xdemitconf_t *xecfg, const char *line, int cflags);
|
2009-07-01 22:01:43 +00:00
|
|
|
extern void xdiff_clear_find_func(xdemitconf_t *xecfg);
|
2008-08-29 17:49:56 +00:00
|
|
|
extern int git_xmerge_config(const char *var, const char *value, void *cb);
|
|
|
|
extern int git_xmerge_style;
|
2007-07-06 07:45:10 +00:00
|
|
|
|
2006-04-05 09:03:58 +00:00
|
|
|
#endif
|