OSDN Git Service

upload-archive: monitor child communication even more carefully.
authorFranck Bui-Huu <vagabon.xyz@gmail.com>
Sun, 17 Sep 2006 14:09:18 +0000 (16:09 +0200)
committerJunio C Hamano <junkio@cox.net>
Sun, 17 Sep 2006 21:47:18 +0000 (14:47 -0700)
commit9c95fbf94f9a801d04dbe38898909def7a99793f
tree384ee6e9e302e6cb73085c73a2fc623da56d9dee
parent4d69065d3adad480b79831ca9f08536aaf563dba
upload-archive: monitor child communication even more carefully.

The current code works like this: if others flags than POLLIN is
raised we assume that (a) something bad happened and the child died or
(b) the child has closed the pipe because it had no more data to send.

For the latter case, we assume wrongly that one call to
process_input() will empty the pipe. Indeed it reads only 16Ko of data
by call and the the pipe capacity can be larger than that (on current
Linux kernel, it is 65536 bytes). Therefore the child can write 32ko
of data, for example, and close the pipe. After that poll will return
POLLIN _and_ POLLHUP and the parent will read only 16ko of data.

This patch forces the parent to empty the pipe as soon as POLLIN is
raised and even if POLLHUP or something else is raised too.

Moreover, some implementations of poll might return POLLRDNORM flag
even if it is non standard.

Signed-off-by: Franck Bui-Huu <vagabon.xyz@gmail.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-upload-archive.c