diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-07 11:40:28 -0400 | 
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2011-04-07 11:40:28 -0400 | 
| commit | e2c946018fe27e5b21d8e2cd00d05f33b19709a4 (patch) | |
| tree | b16b917d061047c9b59a995bd0f4331028876d50 /src/bin/pg_dump/pg_backup_archiver.c | |
| parent | 672def62259354f28000e8cfb97b6668192369c2 (diff) | |
Fix SortTocFromFile() to cope with lines that are too long for its buffer.
The original coding supposed that a dump TOC file could never contain lines
longer than 1K.  The folly of that was exposed by a recent report from
Per-Olov Esgard.  We only really need to see the first dozen or two bytes
of each line, since we're just trying to read off the numeric ID at the
start of the line; so there's no need for a particularly huge buffer.
What there is a need for is logic to not process continuation bufferloads.
Back-patch to all supported branches, since it's always been like this.
Diffstat (limited to 'src/bin/pg_dump/pg_backup_archiver.c')
| -rw-r--r-- | src/bin/pg_dump/pg_backup_archiver.c | 29 | 
1 files changed, 24 insertions, 5 deletions
diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 7493a001158..07fe2e97703 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -992,11 +992,8 @@ SortTocFromFile(Archive *AHX, RestoreOptions *ropt)  {  	ArchiveHandle *AH = (ArchiveHandle *) AHX;  	FILE	   *fh; -	char		buf[1024]; -	char	   *cmnt; -	char	   *endptr; -	DumpId		id; -	TocEntry   *te; +	char		buf[100]; +	bool		incomplete_line;  	/* Allocate space for the 'wanted' array, and init it */  	ropt->idWanted = (bool *) malloc(sizeof(bool) * AH->maxDumpId); @@ -1008,8 +1005,30 @@ SortTocFromFile(Archive *AHX, RestoreOptions *ropt)  		die_horribly(AH, modulename, "could not open TOC file \"%s\": %s\n",  					 ropt->tocFile, strerror(errno)); +	incomplete_line = false;  	while (fgets(buf, sizeof(buf), fh) != NULL)  	{ +		bool		prev_incomplete_line = incomplete_line; +		int			buflen; +		char	   *cmnt; +		char	   *endptr; +		DumpId		id; +		TocEntry   *te; + +		/* +		 * Some lines in the file might be longer than sizeof(buf).  This is +		 * no problem, since we only care about the leading numeric ID which +		 * can be at most a few characters; but we have to skip continuation +		 * bufferloads when processing a long line. +		 */ +		buflen = strlen(buf); +		if (buflen > 0 && buf[buflen - 1] == '\n') +			incomplete_line = false; +		else +			incomplete_line = true; +		if (prev_incomplete_line) +			continue; +  		/* Truncate line at comment, if any */  		cmnt = strchr(buf, ';');  		if (cmnt != NULL)  | 
