summaryrefslogtreecommitdiffstats
path: root/lib/libfetch/http.c
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2014-01-29 12:48:19 +0000
committerdes <des@FreeBSD.org>2014-01-29 12:48:19 +0000
commit3dc25be505d107528cf27e8a95bfb0b2f10723a7 (patch)
tree71f230a25a643d802e1398567dd0f1028de6ca8b /lib/libfetch/http.c
parent1e80aa6531a52a6fd31d4fe1cd65cc85dad5be89 (diff)
downloadFreeBSD-src-3dc25be505d107528cf27e8a95bfb0b2f10723a7.zip
FreeBSD-src-3dc25be505d107528cf27e8a95bfb0b2f10723a7.tar.gz
r261230 broke the cases where the amount of data to be read is not
known in advance, or where the caller doesn't care and just keeps reading until it hits EOF. In fetch_read(): the socket is non-blocking, so read() will return 0 on EOF, and -1 (errno == EAGAIN) when the connection is still open but there is no data waiting. In the first case, we should immediately return 0. The EINTR case was also broken, although not in a way that matters. In fetch_writev(): use timersub() and timercmp() as in fetch_read(). In http_fillbuf(): set errno to a sensible value when an invalid chunk header is encountered. In http_readfn(): as in fetch_read(), a zero return from down the stack indicates EOF, not an error. Furthermore, when io->error is EINTR, clear it (but no errno) before returning so the caller can retry after dealing with the interrupt. MFC after: 3 days
Diffstat (limited to 'lib/libfetch/http.c')
-rw-r--r--lib/libfetch/http.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index fc43a97..676cbb7 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -204,7 +204,7 @@ http_growbuf(struct httpio *io, size_t len)
/*
* Fill the input buffer, do chunk decoding on the fly
*/
-static int
+static ssize_t
http_fillbuf(struct httpio *io, size_t len)
{
ssize_t nbytes;
@@ -230,7 +230,7 @@ http_fillbuf(struct httpio *io, size_t len)
if (io->chunksize == 0) {
switch (http_new_chunk(io)) {
case -1:
- io->error = 1;
+ io->error = EPROTO;
return (-1);
case 0:
io->eof = 1;
@@ -276,10 +276,12 @@ http_readfn(void *v, char *buf, int len)
/* empty buffer */
if (!io->buf || io->bufpos == io->buflen) {
- if (http_fillbuf(io, len) < 1) {
- if (io->error == EINTR)
+ if ((rlen = http_fillbuf(io, len)) < 0) {
+ if ((errno = io->error) == EINTR)
io->error = 0;
return (-1);
+ } else if (rlen == 0) {
+ return (0);
}
}
OpenPOWER on IntegriCloud