1999-12-02 02:42:23 -05:00
|
|
|
/* Buffering read.
|
|
|
|
Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
This file is part of GNU Wget.
|
|
|
|
|
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
1999-12-02 02:42:23 -05:00
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
2001-05-27 15:35:15 -04:00
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
1999-12-02 02:42:23 -05:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2001-05-27 15:35:15 -04:00
|
|
|
along with Wget; if not, write to the Free Software
|
1999-12-02 02:42:23 -05:00
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
/* This is a simple implementation of buffering IO-read functions. */
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "wget.h"
|
|
|
|
#include "rbuf.h"
|
|
|
|
#include "connect.h"
|
|
|
|
|
2000-12-05 18:09:41 -05:00
|
|
|
#ifdef HAVE_SSL
|
|
|
|
#include <openssl/bio.h>
|
|
|
|
#include <openssl/crypto.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/ssl.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
#include <openssl/pem.h>
|
2001-11-29 13:22:18 -05:00
|
|
|
#include "gen_sslfunc.h" /* for ssl_iread */
|
2000-12-05 18:09:41 -05:00
|
|
|
#endif /* HAVE_SSL */
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
void
|
|
|
|
rbuf_initialize (struct rbuf *rbuf, int fd)
|
|
|
|
{
|
|
|
|
rbuf->fd = fd;
|
2000-12-05 18:09:41 -05:00
|
|
|
#ifdef HAVE_SSL
|
|
|
|
/* pointing ssl to NULL results in an unchanged behaviour */
|
|
|
|
rbuf->ssl = NULL;
|
|
|
|
#endif /* HAVE_SSL */
|
1999-12-02 02:42:23 -05:00
|
|
|
rbuf->buffer_pos = rbuf->buffer;
|
|
|
|
rbuf->buffer_left = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
rbuf_initialized_p (struct rbuf *rbuf)
|
|
|
|
{
|
|
|
|
return rbuf->fd != -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
rbuf_uninitialize (struct rbuf *rbuf)
|
|
|
|
{
|
|
|
|
rbuf->fd = -1;
|
|
|
|
}
|
|
|
|
|
2000-12-05 18:50:34 -05:00
|
|
|
int
|
|
|
|
rbuf_read_bufferful (struct rbuf *rbuf)
|
|
|
|
{
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
if (rbuf->ssl)
|
|
|
|
return ssl_iread (rbuf->ssl, rbuf->buffer, sizeof (rbuf->buffer));
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
return iread (rbuf->fd, rbuf->buffer, sizeof (rbuf->buffer));
|
|
|
|
}
|
|
|
|
|
1999-12-02 02:42:23 -05:00
|
|
|
/* Currently unused -- see RBUF_READCHAR. */
|
|
|
|
#if 0
|
|
|
|
/* Function version of RBUF_READCHAR. */
|
|
|
|
int
|
|
|
|
rbuf_readchar (struct rbuf *rbuf, char *store)
|
|
|
|
{
|
|
|
|
return RBUF_READCHAR (rbuf, store);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Like rbuf_readchar(), only don't move the buffer position. */
|
|
|
|
int
|
|
|
|
rbuf_peek (struct rbuf *rbuf, char *store)
|
|
|
|
{
|
|
|
|
if (!rbuf->buffer_left)
|
|
|
|
{
|
|
|
|
int res;
|
|
|
|
rbuf->buffer_pos = rbuf->buffer;
|
|
|
|
rbuf->buffer_left = 0;
|
2000-12-05 18:09:41 -05:00
|
|
|
#ifdef HAVE_SSL
|
|
|
|
if (rbuf->ssl != NULL) {
|
|
|
|
res = ssl_iread (rbuf->ssl, rbuf->buffer, sizeof (rbuf->buffer));
|
|
|
|
} else {
|
|
|
|
#endif /* HAVE_SSL */
|
|
|
|
res = iread (rbuf->fd, rbuf->buffer, sizeof (rbuf->buffer));
|
|
|
|
#ifdef HAVE_SSL
|
|
|
|
}
|
|
|
|
#endif /* HAVE_SSL */
|
1999-12-02 02:42:23 -05:00
|
|
|
if (res <= 0)
|
|
|
|
return res;
|
|
|
|
rbuf->buffer_left = res;
|
|
|
|
}
|
|
|
|
*store = *rbuf->buffer_pos;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Flush RBUF's buffer to WHERE. Flush MAXSIZE bytes at most.
|
|
|
|
Returns the number of bytes actually copied. If the buffer is
|
|
|
|
empty, 0 is returned. */
|
|
|
|
int
|
|
|
|
rbuf_flush (struct rbuf *rbuf, char *where, int maxsize)
|
|
|
|
{
|
|
|
|
if (!rbuf->buffer_left)
|
|
|
|
return 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int howmuch = MINVAL (rbuf->buffer_left, maxsize);
|
|
|
|
|
|
|
|
if (where)
|
|
|
|
memcpy (where, rbuf->buffer_pos, howmuch);
|
|
|
|
rbuf->buffer_left -= howmuch;
|
|
|
|
rbuf->buffer_pos += howmuch;
|
|
|
|
return howmuch;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Discard any cached data in RBUF. */
|
|
|
|
void
|
|
|
|
rbuf_discard (struct rbuf *rbuf)
|
|
|
|
{
|
|
|
|
rbuf->buffer_left = 0;
|
|
|
|
rbuf->buffer_pos = rbuf->buffer;
|
|
|
|
}
|