Skip to content

Commit fbdd4f6

Browse files
committed
vcs-svn: cap number of bytes read from sliding view
Introduce a "max_off" field in struct sliding_view, roughly representing a maximum number of bytes that can be read from "file". If it is set to a nonnegative integer, a call to move_window() attempting to put the right endpoint beyond that offset will return an error instead. The idea is to use this when applying Subversion-format deltas to prevent reads past the end of the preimage (which has known length). Without such a check, corrupt deltas would cause svn-fe to block indefinitely when data in the input pipe is exhausted. Inspired-by: Ramkumar Ramachandra <[email protected]> Signed-off-by: Jonathan Nieder <[email protected]>
1 parent b747e56 commit fbdd4f6

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

test-svn-fe.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ static int apply_delta(int argc, char *argv[])
1515
{
1616
struct line_buffer preimage = LINE_BUFFER_INIT;
1717
struct line_buffer delta = LINE_BUFFER_INIT;
18-
struct sliding_view preimage_view = SLIDING_VIEW_INIT(&preimage);
18+
struct sliding_view preimage_view = SLIDING_VIEW_INIT(&preimage, -1);
1919

2020
if (argc != 5)
2121
usage(test_svnfe_usage);

vcs-svn/sliding_window.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ int move_window(struct sliding_view *view, off_t off, size_t width)
5454
return -1;
5555
if (off < view->off || off + width < view->off + view->width)
5656
return error("invalid delta: window slides left");
57+
if (view->max_off >= 0 && view->max_off < off + width)
58+
return error("delta preimage ends early");
5759

5860
file_offset = view->off + view->buf.len;
5961
if (off < file_offset) {

vcs-svn/sliding_window.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ struct sliding_view {
77
struct line_buffer *file;
88
off_t off;
99
size_t width;
10+
off_t max_off; /* -1 means unlimited */
1011
struct strbuf buf;
1112
};
1213

13-
#define SLIDING_VIEW_INIT(input) { (input), 0, 0, STRBUF_INIT }
14+
#define SLIDING_VIEW_INIT(input, len) { (input), 0, 0, (len), STRBUF_INIT }
1415

1516
extern int move_window(struct sliding_view *view, off_t off, size_t width);
1617

0 commit comments

Comments
 (0)