1998-07-09 16:52:44 +00:00
|
|
|
|
/*-
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* Copyright (c) 2000 Dag-Erling Co<EFBFBD>dan Sm<EFBFBD>rgrav
|
1998-07-09 16:52:44 +00:00
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer
|
|
|
|
|
* in this position and unchanged.
|
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* derived from this software without specific prior written permission.
|
1998-07-09 16:52:44 +00:00
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
*
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* $FreeBSD$
|
1998-07-09 16:52:44 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2000-07-16 01:04:10 +00:00
|
|
|
|
/*
|
|
|
|
|
* The following copyright applies to the base64 code:
|
|
|
|
|
*
|
|
|
|
|
*-
|
|
|
|
|
* Copyright 1997 Massachusetts Institute of Technology
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, and distribute this software and
|
|
|
|
|
* its documentation for any purpose and without fee is hereby
|
|
|
|
|
* granted, provided that both the above copyright notice and this
|
|
|
|
|
* permission notice appear in all copies, that both the above
|
|
|
|
|
* copyright notice and this permission notice appear in all
|
|
|
|
|
* supporting documentation, and that the name of M.I.T. not be used
|
|
|
|
|
* in advertising or publicity pertaining to distribution of the
|
|
|
|
|
* software without specific, written prior permission. M.I.T. makes
|
|
|
|
|
* no representations about the suitability of this software for any
|
|
|
|
|
* purpose. It is provided "as is" without express or implied
|
|
|
|
|
* warranty.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''. M.I.T. DISCLAIMS
|
|
|
|
|
* ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
|
|
|
|
|
* SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
|
|
|
|
|
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
|
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*/
|
|
|
|
|
|
1998-07-09 16:52:44 +00:00
|
|
|
|
#include <sys/param.h>
|
2000-05-20 18:23:51 +00:00
|
|
|
|
#include <sys/socket.h>
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
|
|
|
|
#include <ctype.h>
|
2000-07-12 10:39:56 +00:00
|
|
|
|
#include <err.h>
|
|
|
|
|
#include <errno.h>
|
2000-05-11 13:31:02 +00:00
|
|
|
|
#include <locale.h>
|
2000-05-07 20:01:55 +00:00
|
|
|
|
#include <netdb.h>
|
1998-07-12 22:34:40 +00:00
|
|
|
|
#include <stdarg.h>
|
1998-07-09 16:52:44 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
2000-05-11 13:31:02 +00:00
|
|
|
|
#include <time.h>
|
1998-07-09 16:52:44 +00:00
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
|
#include "fetch.h"
|
1998-11-05 19:48:17 +00:00
|
|
|
|
#include "common.h"
|
1998-12-16 10:24:55 +00:00
|
|
|
|
#include "httperr.h"
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
extern char *__progname; /* XXX not portable */
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* Maximum number of redirects to follow */
|
|
|
|
|
#define MAX_REDIRECT 5
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* Symbolic names for reply codes we care about */
|
|
|
|
|
#define HTTP_OK 200
|
|
|
|
|
#define HTTP_PARTIAL 206
|
|
|
|
|
#define HTTP_MOVED_PERM 301
|
|
|
|
|
#define HTTP_MOVED_TEMP 302
|
|
|
|
|
#define HTTP_SEE_OTHER 303
|
|
|
|
|
#define HTTP_NEED_AUTH 401
|
|
|
|
|
#define HTTP_NEED_PROXY_AUTH 403
|
|
|
|
|
#define HTTP_PROTOCOL_ERROR 999
|
|
|
|
|
|
|
|
|
|
#define HTTP_REDIRECT(xyz) ((xyz) == HTTP_MOVED_PERM \
|
|
|
|
|
|| (xyz) == HTTP_MOVED_TEMP \
|
|
|
|
|
|| (xyz) == HTTP_SEE_OTHER)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* I/O functions for decoding chunked streams
|
|
|
|
|
*/
|
2000-05-07 20:51:31 +00:00
|
|
|
|
|
1998-07-09 16:52:44 +00:00
|
|
|
|
struct cookie
|
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
int fd;
|
|
|
|
|
char *buf;
|
|
|
|
|
size_t b_size;
|
|
|
|
|
size_t b_len;
|
|
|
|
|
int b_pos;
|
|
|
|
|
int eof;
|
|
|
|
|
int error;
|
|
|
|
|
long chunksize;
|
2000-07-16 23:18:44 +00:00
|
|
|
|
#ifndef NDEBUG
|
2000-07-12 10:39:56 +00:00
|
|
|
|
long total;
|
|
|
|
|
#endif
|
1998-07-09 16:52:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* Get next chunk header
|
1998-07-12 22:34:40 +00:00
|
|
|
|
*/
|
|
|
|
|
static int
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_new_chunk(struct cookie *c)
|
1998-07-12 22:34:40 +00:00
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
if (_fetch_getln(c->fd, &c->buf, &c->b_size, &c->b_len) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
if (c->b_len < 2 || !ishexnumber(*c->buf))
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
for (p = c->buf; !isspace(*p) && *p != ';' && p < c->buf + c->b_len; ++p)
|
|
|
|
|
if (!ishexnumber(*p))
|
|
|
|
|
return -1;
|
|
|
|
|
else if (isdigit(*p))
|
|
|
|
|
c->chunksize = c->chunksize * 16 + *p - '0';
|
|
|
|
|
else
|
|
|
|
|
c->chunksize = c->chunksize * 16 + 10 + tolower(*p) - 'a';
|
|
|
|
|
|
2000-07-16 23:18:44 +00:00
|
|
|
|
#ifndef NDEBUG
|
2000-07-12 10:39:56 +00:00
|
|
|
|
c->total += c->chunksize;
|
|
|
|
|
if (c->chunksize == 0)
|
|
|
|
|
fprintf(stderr, "\033[1m_http_fillbuf(): "
|
|
|
|
|
"end of last chunk\033[m\n");
|
|
|
|
|
else
|
|
|
|
|
fprintf(stderr, "\033[1m_http_fillbuf(): "
|
|
|
|
|
"new chunk: %ld (%ld)\033[m\n", c->chunksize, c->total);
|
|
|
|
|
#endif
|
1998-07-12 22:34:40 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
return c->chunksize;
|
1998-07-12 22:34:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Fill the input buffer, do chunk decoding on the fly
|
|
|
|
|
*/
|
2000-07-12 10:39:56 +00:00
|
|
|
|
static int
|
1998-07-09 16:52:44 +00:00
|
|
|
|
_http_fillbuf(struct cookie *c)
|
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (c->error)
|
|
|
|
|
return -1;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
if (c->eof)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
if (c->chunksize == 0) {
|
|
|
|
|
switch (_http_new_chunk(c)) {
|
|
|
|
|
case -1:
|
|
|
|
|
c->error = 1;
|
|
|
|
|
return -1;
|
|
|
|
|
case 0:
|
|
|
|
|
c->eof = 1;
|
|
|
|
|
return 0;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
if (c->b_size < c->chunksize) {
|
|
|
|
|
char *tmp;
|
|
|
|
|
|
|
|
|
|
if ((tmp = realloc(c->buf, c->chunksize)) == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
c->buf = tmp;
|
|
|
|
|
c->b_size = c->chunksize;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((c->b_len = read(c->fd, c->buf, c->chunksize)) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
c->chunksize -= c->b_len;
|
|
|
|
|
|
|
|
|
|
if (c->chunksize == 0) {
|
|
|
|
|
char endl[2];
|
|
|
|
|
read(c->fd, endl, 2);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c->b_pos = 0;
|
|
|
|
|
|
|
|
|
|
return c->b_len;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Read function
|
|
|
|
|
*/
|
1998-07-09 16:52:44 +00:00
|
|
|
|
static int
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_readfn(void *v, char *buf, int len)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
struct cookie *c = (struct cookie *)v;
|
|
|
|
|
int l, pos;
|
|
|
|
|
|
|
|
|
|
if (c->error)
|
|
|
|
|
return -1;
|
|
|
|
|
if (c->eof)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
for (pos = 0; len > 0; pos += l, len -= l) {
|
1998-07-09 16:52:44 +00:00
|
|
|
|
/* empty buffer */
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (!c->buf || c->b_pos == c->b_len)
|
|
|
|
|
if (_http_fillbuf(c) < 1)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
break;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
l = c->b_len - c->b_pos;
|
|
|
|
|
if (len < l)
|
|
|
|
|
l = len;
|
|
|
|
|
bcopy(c->buf + c->b_pos, buf + pos, l);
|
|
|
|
|
c->b_pos += l;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
if (!pos && c->error)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
return -1;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
return pos;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Write function
|
|
|
|
|
*/
|
1998-07-09 16:52:44 +00:00
|
|
|
|
static int
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_writefn(void *v, const char *buf, int len)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
struct cookie *c = (struct cookie *)v;
|
|
|
|
|
|
|
|
|
|
return write(c->fd, buf, len);
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Close function
|
|
|
|
|
*/
|
1998-07-09 16:52:44 +00:00
|
|
|
|
static int
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_closefn(void *v)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
struct cookie *c = (struct cookie *)v;
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
r = close(c->fd);
|
|
|
|
|
if (c->buf)
|
|
|
|
|
free(c->buf);
|
1998-07-09 16:52:44 +00:00
|
|
|
|
free(c);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wrap a file descriptor up
|
|
|
|
|
*/
|
|
|
|
|
static FILE *
|
|
|
|
|
_http_funopen(int fd)
|
|
|
|
|
{
|
|
|
|
|
struct cookie *c;
|
|
|
|
|
FILE *f;
|
|
|
|
|
|
|
|
|
|
if ((c = calloc(1, sizeof *c)) == NULL) {
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
c->fd = fd;
|
|
|
|
|
if (!(f = funopen(c, _http_readfn, _http_writefn, NULL, _http_closefn))) {
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
free(c);
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
return f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Helper functions for talking to the server and parsing its replies
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* Header types */
|
|
|
|
|
typedef enum {
|
|
|
|
|
hdr_syserror = -2,
|
|
|
|
|
hdr_error = -1,
|
|
|
|
|
hdr_end = 0,
|
|
|
|
|
hdr_unknown = 1,
|
|
|
|
|
hdr_content_length,
|
|
|
|
|
hdr_content_range,
|
|
|
|
|
hdr_last_modified,
|
|
|
|
|
hdr_location,
|
2001-05-26 19:37:15 +00:00
|
|
|
|
hdr_transfer_encoding,
|
|
|
|
|
hdr_www_authenticate
|
2000-07-12 10:39:56 +00:00
|
|
|
|
} hdr;
|
|
|
|
|
|
|
|
|
|
/* Names of interesting headers */
|
|
|
|
|
static struct {
|
|
|
|
|
hdr num;
|
2001-04-24 00:06:21 +00:00
|
|
|
|
const char *name;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
} hdr_names[] = {
|
|
|
|
|
{ hdr_content_length, "Content-Length" },
|
|
|
|
|
{ hdr_content_range, "Content-Range" },
|
|
|
|
|
{ hdr_last_modified, "Last-Modified" },
|
|
|
|
|
{ hdr_location, "Location" },
|
|
|
|
|
{ hdr_transfer_encoding, "Transfer-Encoding" },
|
2001-05-26 19:37:15 +00:00
|
|
|
|
{ hdr_www_authenticate, "WWW-Authenticate" },
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{ hdr_unknown, NULL },
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static char *reply_buf;
|
|
|
|
|
static size_t reply_size;
|
|
|
|
|
static size_t reply_length;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Send a formatted line; optionally echo to terminal
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_cmd(int fd, const char *fmt, ...)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
size_t len;
|
|
|
|
|
char *msg;
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
|
len = vasprintf(&msg, fmt, ap);
|
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
|
errno = ENOMEM;
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
r = _fetch_putln(fd, msg, len);
|
|
|
|
|
free(msg);
|
|
|
|
|
|
|
|
|
|
if (r == -1) {
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get and parse status line
|
|
|
|
|
*/
|
|
|
|
|
static int
|
|
|
|
|
_http_get_reply(int fd)
|
|
|
|
|
{
|
2000-09-24 12:22:12 +00:00
|
|
|
|
char *p;
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (_fetch_getln(fd, &reply_buf, &reply_size, &reply_length) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
/*
|
|
|
|
|
* A valid status line looks like "HTTP/m.n xyz reason" where m
|
|
|
|
|
* and n are the major and minor protocol version numbers and xyz
|
|
|
|
|
* is the reply code.
|
2000-09-24 12:22:12 +00:00
|
|
|
|
* Unfortunately, there are servers out there (NCSA 1.5.1, to name
|
|
|
|
|
* just one) that do not send a version number, so we can't rely
|
|
|
|
|
* on finding one, but if we do, insist on it being 1.0 or 1.1.
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* We don't care about the reason phrase.
|
|
|
|
|
*/
|
2000-09-24 12:22:12 +00:00
|
|
|
|
if (strncmp(reply_buf, "HTTP", 4) != 0)
|
|
|
|
|
return HTTP_PROTOCOL_ERROR;
|
|
|
|
|
p = reply_buf + 4;
|
|
|
|
|
if (*p == '/') {
|
|
|
|
|
if (p[1] != '1' || p[2] != '.' || (p[3] != '0' && p[3] != '1'))
|
|
|
|
|
return HTTP_PROTOCOL_ERROR;
|
|
|
|
|
p += 4;
|
|
|
|
|
}
|
|
|
|
|
if (*p != ' '
|
|
|
|
|
|| !isdigit(p[1])
|
|
|
|
|
|| !isdigit(p[2])
|
|
|
|
|
|| !isdigit(p[3]))
|
2000-07-12 10:39:56 +00:00
|
|
|
|
return HTTP_PROTOCOL_ERROR;
|
|
|
|
|
|
2000-09-24 12:22:12 +00:00
|
|
|
|
return ((p[1] - '0') * 100 + (p[2] - '0') * 10 + (p[3] - '0'));
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* Check a header; if the type matches the given string, return a
|
|
|
|
|
* pointer to the beginning of the value.
|
1998-07-12 22:34:40 +00:00
|
|
|
|
*/
|
2001-04-24 00:06:21 +00:00
|
|
|
|
static const char *
|
|
|
|
|
_http_match(const char *str, const char *hdr)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
{
|
2000-07-12 10:39:56 +00:00
|
|
|
|
while (*str && *hdr && tolower(*str++) == tolower(*hdr++))
|
|
|
|
|
/* nothing */;
|
|
|
|
|
if (*str || *hdr != ':')
|
|
|
|
|
return NULL;
|
|
|
|
|
while (*hdr && isspace(*++hdr))
|
|
|
|
|
/* nothing */;
|
|
|
|
|
return hdr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get the next header and return the appropriate symbolic code.
|
|
|
|
|
*/
|
|
|
|
|
static hdr
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_next_header(int fd, const char **p)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
if (_fetch_getln(fd, &reply_buf, &reply_size, &reply_length) == -1)
|
|
|
|
|
return hdr_syserror;
|
|
|
|
|
while (reply_length && isspace(reply_buf[reply_length-1]))
|
|
|
|
|
reply_length--;
|
|
|
|
|
reply_buf[reply_length] = 0;
|
|
|
|
|
if (reply_length == 0)
|
|
|
|
|
return hdr_end;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
/*
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* We could check for malformed headers but we don't really care.
|
|
|
|
|
* A valid header starts with a token immediately followed by a
|
|
|
|
|
* colon; a token is any sequence of non-control, non-whitespace
|
|
|
|
|
* characters except "()<>@,;:\\\"{}".
|
1998-07-09 16:52:44 +00:00
|
|
|
|
*/
|
2000-07-12 10:39:56 +00:00
|
|
|
|
for (i = 0; hdr_names[i].num != hdr_unknown; i++)
|
|
|
|
|
if ((*p = _http_match(hdr_names[i].name, reply_buf)) != NULL)
|
|
|
|
|
return hdr_names[i].num;
|
|
|
|
|
return hdr_unknown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Parse a last-modified header
|
|
|
|
|
*/
|
2000-07-21 11:02:43 +00:00
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_parse_mtime(const char *p, time_t *mtime)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
2000-07-21 11:02:43 +00:00
|
|
|
|
char locale[64], *r;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
|
|
strncpy(locale, setlocale(LC_TIME, NULL), sizeof locale);
|
|
|
|
|
setlocale(LC_TIME, "C");
|
2000-07-21 11:02:43 +00:00
|
|
|
|
r = strptime(p, "%a, %d %b %Y %H:%M:%S GMT", &tm);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* XXX should add support for date-2 and date-3 */
|
|
|
|
|
setlocale(LC_TIME, locale);
|
2000-07-21 11:02:43 +00:00
|
|
|
|
if (r == NULL)
|
|
|
|
|
return -1;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
DEBUG(fprintf(stderr, "last modified: [\033[1m%04d-%02d-%02d "
|
|
|
|
|
"%02d:%02d:%02d\033[m]\n",
|
|
|
|
|
tm.tm_year + 1900, tm.tm_mon + 1, tm.tm_mday,
|
|
|
|
|
tm.tm_hour, tm.tm_min, tm.tm_sec));
|
2000-07-21 11:02:43 +00:00
|
|
|
|
*mtime = timegm(&tm);
|
|
|
|
|
return 0;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/*
|
|
|
|
|
* Parse a content-length header
|
|
|
|
|
*/
|
2000-07-21 11:02:43 +00:00
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_parse_length(const char *p, off_t *length)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
2000-08-02 11:25:21 +00:00
|
|
|
|
off_t len;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
for (len = 0; *p && isdigit(*p); ++p)
|
|
|
|
|
len = len * 10 + (*p - '0');
|
2000-08-02 11:25:21 +00:00
|
|
|
|
DEBUG(fprintf(stderr, "content length: [\033[1m%lld\033[m]\n", len));
|
2000-07-21 11:02:43 +00:00
|
|
|
|
*length = len;
|
|
|
|
|
return 0;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Parse a content-range header
|
|
|
|
|
*/
|
2000-07-21 11:02:43 +00:00
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_parse_range(const char *p, off_t *offset, off_t *length, off_t *size)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
2000-07-21 11:02:43 +00:00
|
|
|
|
int first, last, len;
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (strncasecmp(p, "bytes ", 6) != 0)
|
|
|
|
|
return -1;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
for (first = 0, p += 6; *p && isdigit(*p); ++p)
|
|
|
|
|
first = first * 10 + *p - '0';
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (*p != '-')
|
|
|
|
|
return -1;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
for (last = 0, ++p; *p && isdigit(*p); ++p)
|
|
|
|
|
last = last * 10 + *p - '0';
|
|
|
|
|
if (first > last || *p != '/')
|
|
|
|
|
return -1;
|
|
|
|
|
for (len = 0, ++p; *p && isdigit(*p); ++p)
|
|
|
|
|
len = len * 10 + *p - '0';
|
|
|
|
|
if (len < last - first + 1)
|
|
|
|
|
return -1;
|
|
|
|
|
DEBUG(fprintf(stderr, "content range: [\033[1m%d-%d/%d\033[m]\n",
|
|
|
|
|
first, last, len));
|
|
|
|
|
*offset = first;
|
|
|
|
|
*length = last - first + 1;
|
|
|
|
|
*size = len;
|
|
|
|
|
return 0;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Helper functions for authorization
|
|
|
|
|
*/
|
|
|
|
|
|
1998-07-12 22:34:40 +00:00
|
|
|
|
/*
|
|
|
|
|
* Base64 encoding
|
|
|
|
|
*/
|
2000-07-11 18:12:41 +00:00
|
|
|
|
static char *
|
|
|
|
|
_http_base64(char *src)
|
1998-07-12 22:34:40 +00:00
|
|
|
|
{
|
|
|
|
|
static const char base64[] =
|
|
|
|
|
"ABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
|
|
|
|
"abcdefghijklmnopqrstuvwxyz"
|
|
|
|
|
"0123456789+/";
|
2000-07-11 18:12:41 +00:00
|
|
|
|
char *str, *dst;
|
|
|
|
|
size_t l;
|
|
|
|
|
int t, r;
|
|
|
|
|
|
|
|
|
|
l = strlen(src);
|
|
|
|
|
if ((str = malloc(((l + 2) / 3) * 4)) == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
dst = str;
|
|
|
|
|
r = 0;
|
1998-07-12 22:34:40 +00:00
|
|
|
|
|
|
|
|
|
while (l >= 3) {
|
|
|
|
|
t = (src[0] << 16) | (src[1] << 8) | src[2];
|
|
|
|
|
dst[0] = base64[(t >> 18) & 0x3f];
|
|
|
|
|
dst[1] = base64[(t >> 12) & 0x3f];
|
|
|
|
|
dst[2] = base64[(t >> 6) & 0x3f];
|
|
|
|
|
dst[3] = base64[(t >> 0) & 0x3f];
|
|
|
|
|
src += 3; l -= 3;
|
|
|
|
|
dst += 4; r += 4;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (l) {
|
|
|
|
|
case 2:
|
|
|
|
|
t = (src[0] << 16) | (src[1] << 8);
|
|
|
|
|
dst[0] = base64[(t >> 18) & 0x3f];
|
|
|
|
|
dst[1] = base64[(t >> 12) & 0x3f];
|
|
|
|
|
dst[2] = base64[(t >> 6) & 0x3f];
|
|
|
|
|
dst[3] = '=';
|
|
|
|
|
dst += 4;
|
|
|
|
|
r += 4;
|
|
|
|
|
break;
|
|
|
|
|
case 1:
|
|
|
|
|
t = src[0] << 16;
|
|
|
|
|
dst[0] = base64[(t >> 18) & 0x3f];
|
|
|
|
|
dst[1] = base64[(t >> 12) & 0x3f];
|
|
|
|
|
dst[2] = dst[3] = '=';
|
|
|
|
|
dst += 4;
|
|
|
|
|
r += 4;
|
|
|
|
|
break;
|
|
|
|
|
case 0:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*dst = 0;
|
2000-07-11 18:12:41 +00:00
|
|
|
|
return str;
|
1998-07-12 22:34:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Encode username and password
|
|
|
|
|
*/
|
2000-07-11 18:12:41 +00:00
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_basic_auth(int fd, const char *hdr, const char *usr, const char *pwd)
|
1998-07-12 22:34:40 +00:00
|
|
|
|
{
|
2000-07-11 18:12:41 +00:00
|
|
|
|
char *upw, *auth;
|
|
|
|
|
int r;
|
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
DEBUG(fprintf(stderr, "usr: [\033[1m%s\033[m]\n", usr));
|
|
|
|
|
DEBUG(fprintf(stderr, "pwd: [\033[1m%s\033[m]\n", pwd));
|
2000-07-11 18:12:41 +00:00
|
|
|
|
if (asprintf(&upw, "%s:%s", usr, pwd) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
auth = _http_base64(upw);
|
|
|
|
|
free(upw);
|
|
|
|
|
if (auth == NULL)
|
|
|
|
|
return -1;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
r = _http_cmd(fd, "%s: Basic %s", hdr, auth);
|
2000-07-11 18:12:41 +00:00
|
|
|
|
free(auth);
|
|
|
|
|
return r;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Send an authorization header
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_authorize(int fd, const char *hdr, const char *p)
|
2000-07-11 18:12:41 +00:00
|
|
|
|
{
|
|
|
|
|
/* basic authorization */
|
|
|
|
|
if (strncasecmp(p, "basic:", 6) == 0) {
|
|
|
|
|
char *user, *pwd, *str;
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
/* skip realm */
|
|
|
|
|
for (p += 6; *p && *p != ':'; ++p)
|
|
|
|
|
/* nothing */ ;
|
|
|
|
|
if (!*p || strchr(++p, ':') == NULL)
|
|
|
|
|
return -1;
|
|
|
|
|
if ((str = strdup(p)) == NULL)
|
|
|
|
|
return -1; /* XXX */
|
|
|
|
|
user = str;
|
|
|
|
|
pwd = strchr(str, ':');
|
|
|
|
|
*pwd++ = '\0';
|
2000-07-12 10:39:56 +00:00
|
|
|
|
r = _http_basic_auth(fd, hdr, user, pwd);
|
2000-07-11 18:12:41 +00:00
|
|
|
|
free(str);
|
|
|
|
|
return r;
|
2000-07-08 08:08:58 +00:00
|
|
|
|
}
|
2000-07-11 18:12:41 +00:00
|
|
|
|
return -1;
|
1998-07-12 22:34:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Helper functions for connecting to a server or proxy
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Connect to the correct HTTP server or proxy.
|
|
|
|
|
*/
|
|
|
|
|
static int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_connect(struct url *URL, struct url *purl, const char *flags)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
2000-10-12 22:10:26 +00:00
|
|
|
|
int verbose;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
int af, fd;
|
|
|
|
|
|
|
|
|
|
#ifdef INET6
|
|
|
|
|
af = AF_UNSPEC;
|
|
|
|
|
#else
|
|
|
|
|
af = AF_INET;
|
|
|
|
|
#endif
|
2000-10-12 22:10:26 +00:00
|
|
|
|
|
2000-10-29 15:56:10 +00:00
|
|
|
|
verbose = CHECK_FLAG('v');
|
|
|
|
|
if (CHECK_FLAG('4'))
|
2000-05-20 18:23:51 +00:00
|
|
|
|
af = AF_INET;
|
2000-10-12 22:10:26 +00:00
|
|
|
|
#ifdef INET6
|
2000-10-29 15:56:10 +00:00
|
|
|
|
else if (CHECK_FLAG('6'))
|
2000-05-20 18:23:51 +00:00
|
|
|
|
af = AF_INET6;
|
2000-10-12 22:10:26 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
if (purl) {
|
|
|
|
|
URL = purl;
|
|
|
|
|
} else if (strcasecmp(URL->scheme, SCHEME_FTP) == 0) {
|
|
|
|
|
/* can't talk http to an ftp server */
|
|
|
|
|
/* XXX should set an error code */
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
1998-12-16 10:24:55 +00:00
|
|
|
|
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if ((fd = _fetch_connect(URL->host, URL->port, af, verbose)) == -1)
|
|
|
|
|
/* _fetch_connect() has already set an error code */
|
|
|
|
|
return -1;
|
|
|
|
|
return fd;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static struct url *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_get_proxy(void)
|
2000-10-12 22:10:26 +00:00
|
|
|
|
{
|
|
|
|
|
struct url *purl;
|
|
|
|
|
char *p;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2001-03-07 04:45:55 +00:00
|
|
|
|
if (((p = getenv("HTTP_PROXY")) || (p = getenv("http_proxy"))) &&
|
|
|
|
|
(purl = fetchParseURL(p))) {
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (!*purl->scheme)
|
|
|
|
|
strcpy(purl->scheme, SCHEME_HTTP);
|
|
|
|
|
if (!purl->port)
|
2000-11-10 08:43:40 +00:00
|
|
|
|
purl->port = _fetch_default_proxy_port(purl->scheme);
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (strcasecmp(purl->scheme, SCHEME_HTTP) == 0)
|
|
|
|
|
return purl;
|
|
|
|
|
fetchFreeURL(purl);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
}
|
2000-10-12 22:10:26 +00:00
|
|
|
|
return NULL;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Core
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Send a request and process the reply
|
|
|
|
|
*/
|
2000-10-12 22:10:26 +00:00
|
|
|
|
FILE *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
_http_request(struct url *URL, const char *op, struct url_stat *us,
|
|
|
|
|
struct url *purl, const char *flags)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
{
|
|
|
|
|
struct url *url, *new;
|
2000-10-12 22:10:26 +00:00
|
|
|
|
int chunked, direct, need_auth, noredirect, verbose;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
int code, fd, i, n;
|
2000-08-02 11:25:21 +00:00
|
|
|
|
off_t offset, clength, length, size;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
time_t mtime;
|
2001-04-24 00:06:21 +00:00
|
|
|
|
const char *p;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
FILE *f;
|
|
|
|
|
hdr h;
|
|
|
|
|
char *host;
|
2000-05-20 18:23:51 +00:00
|
|
|
|
#ifdef INET6
|
2000-07-12 10:39:56 +00:00
|
|
|
|
char hbuf[MAXHOSTNAMELEN + 1];
|
2000-05-20 18:23:51 +00:00
|
|
|
|
#endif
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-10-29 15:56:10 +00:00
|
|
|
|
direct = CHECK_FLAG('d');
|
|
|
|
|
noredirect = CHECK_FLAG('A');
|
|
|
|
|
verbose = CHECK_FLAG('v');
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (direct && purl) {
|
|
|
|
|
fetchFreeURL(purl);
|
|
|
|
|
purl = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-21 11:02:43 +00:00
|
|
|
|
/* try the provided URL first */
|
|
|
|
|
url = URL;
|
|
|
|
|
|
|
|
|
|
/* if the A flag is set, we only get one try */
|
2000-07-12 10:39:56 +00:00
|
|
|
|
n = noredirect ? 1 : MAX_REDIRECT;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
i = 0;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
need_auth = 0;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
do {
|
2000-07-13 09:13:58 +00:00
|
|
|
|
new = NULL;
|
|
|
|
|
chunked = 0;
|
|
|
|
|
offset = 0;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
clength = -1;
|
|
|
|
|
length = -1;
|
|
|
|
|
size = -1;
|
|
|
|
|
mtime = 0;
|
2001-05-26 19:37:15 +00:00
|
|
|
|
|
2000-10-12 22:10:26 +00:00
|
|
|
|
/* check port */
|
|
|
|
|
if (!url->port)
|
2000-11-10 08:43:40 +00:00
|
|
|
|
url->port = _fetch_default_port(url->scheme);
|
2000-10-12 22:10:26 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* connect to server or proxy */
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if ((fd = _http_connect(url, purl, flags)) == -1)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
goto ouch;
|
|
|
|
|
|
|
|
|
|
host = url->host;
|
|
|
|
|
#ifdef INET6
|
|
|
|
|
if (strchr(url->host, ':')) {
|
|
|
|
|
snprintf(hbuf, sizeof(hbuf), "[%s]", url->host);
|
|
|
|
|
host = hbuf;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/* send request */
|
|
|
|
|
if (verbose)
|
|
|
|
|
_fetch_info("requesting %s://%s:%d%s",
|
|
|
|
|
url->scheme, host, url->port, url->doc);
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (purl) {
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_cmd(fd, "%s %s://%s:%d%s HTTP/1.1",
|
|
|
|
|
op, url->scheme, host, url->port, url->doc);
|
|
|
|
|
} else {
|
|
|
|
|
_http_cmd(fd, "%s %s HTTP/1.1",
|
|
|
|
|
op, url->doc);
|
|
|
|
|
}
|
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
/* virtual host */
|
|
|
|
|
if (url->port == _fetch_default_port(url->scheme))
|
|
|
|
|
_http_cmd(fd, "Host: %s", host);
|
|
|
|
|
else
|
|
|
|
|
_http_cmd(fd, "Host: %s:%d", host, url->port);
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* proxy authorization */
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (purl) {
|
|
|
|
|
if (*purl->user || *purl->pwd)
|
|
|
|
|
_http_basic_auth(fd, "Proxy-Authorization",
|
|
|
|
|
purl->user, purl->pwd);
|
|
|
|
|
else if ((p = getenv("HTTP_PROXY_AUTH")) != NULL && *p != '\0')
|
|
|
|
|
_http_authorize(fd, "Proxy-Authorization", p);
|
|
|
|
|
}
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
/* server authorization */
|
2001-05-26 19:37:15 +00:00
|
|
|
|
if (need_auth || *url->user || *url->pwd) {
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (*url->user || *url->pwd)
|
2000-10-12 22:10:26 +00:00
|
|
|
|
_http_basic_auth(fd, "Authorization", url->user, url->pwd);
|
2000-07-21 11:02:43 +00:00
|
|
|
|
else if ((p = getenv("HTTP_AUTH")) != NULL && *p != '\0')
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_authorize(fd, "Authorization", p);
|
2001-05-26 19:37:15 +00:00
|
|
|
|
else if (fetchAuthMethod && fetchAuthMethod(url) == 0) {
|
|
|
|
|
_http_basic_auth(fd, "Authorization", url->user, url->pwd);
|
|
|
|
|
} else {
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_seterr(HTTP_NEED_AUTH);
|
|
|
|
|
goto ouch;
|
2000-05-07 20:01:55 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
/* other headers */
|
2001-05-27 11:00:36 +00:00
|
|
|
|
if ((p = getenv("HTTP_USER_AGENT")) != NULL && *p != '\0')
|
|
|
|
|
_http_cmd(fd, "User-Agent: %s", p);
|
|
|
|
|
else
|
|
|
|
|
_http_cmd(fd, "User-Agent: %s " _LIBFETCH_VER, __progname);
|
2000-07-19 23:43:49 +00:00
|
|
|
|
if (url->offset)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
_http_cmd(fd, "Range: bytes=%lld-", url->offset);
|
|
|
|
|
_http_cmd(fd, "Connection: close");
|
|
|
|
|
_http_cmd(fd, "");
|
|
|
|
|
|
|
|
|
|
/* get reply */
|
|
|
|
|
switch ((code = _http_get_reply(fd))) {
|
|
|
|
|
case HTTP_OK:
|
|
|
|
|
case HTTP_PARTIAL:
|
|
|
|
|
/* fine */
|
|
|
|
|
break;
|
|
|
|
|
case HTTP_MOVED_PERM:
|
|
|
|
|
case HTTP_MOVED_TEMP:
|
2000-05-07 20:01:55 +00:00
|
|
|
|
/*
|
2000-07-12 10:39:56 +00:00
|
|
|
|
* Not so fine, but we still have to read the headers to
|
|
|
|
|
* get the new location.
|
2000-05-07 20:01:55 +00:00
|
|
|
|
*/
|
2000-07-12 10:39:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case HTTP_NEED_AUTH:
|
|
|
|
|
if (need_auth) {
|
|
|
|
|
/*
|
|
|
|
|
* We already sent out authorization code, so there's
|
|
|
|
|
* nothing more we can do.
|
|
|
|
|
*/
|
|
|
|
|
_http_seterr(code);
|
|
|
|
|
goto ouch;
|
|
|
|
|
}
|
|
|
|
|
/* try again, but send the password this time */
|
|
|
|
|
if (verbose)
|
|
|
|
|
_fetch_info("server requires authorization");
|
2001-05-26 19:37:15 +00:00
|
|
|
|
break;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
case HTTP_NEED_PROXY_AUTH:
|
|
|
|
|
/*
|
|
|
|
|
* If we're talking to a proxy, we already sent our proxy
|
|
|
|
|
* authorization code, so there's nothing more we can do.
|
|
|
|
|
*/
|
|
|
|
|
_http_seterr(code);
|
|
|
|
|
goto ouch;
|
|
|
|
|
case HTTP_PROTOCOL_ERROR:
|
|
|
|
|
/* fall through */
|
|
|
|
|
case -1:
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
goto ouch;
|
|
|
|
|
default:
|
|
|
|
|
_http_seterr(code);
|
|
|
|
|
goto ouch;
|
2000-05-07 20:01:55 +00:00
|
|
|
|
}
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* get headers */
|
|
|
|
|
do {
|
|
|
|
|
switch ((h = _http_next_header(fd, &p))) {
|
|
|
|
|
case hdr_syserror:
|
|
|
|
|
_fetch_syserr();
|
|
|
|
|
goto ouch;
|
|
|
|
|
case hdr_error:
|
|
|
|
|
_http_seterr(HTTP_PROTOCOL_ERROR);
|
|
|
|
|
goto ouch;
|
|
|
|
|
case hdr_content_length:
|
2000-07-21 11:02:43 +00:00
|
|
|
|
_http_parse_length(p, &clength);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case hdr_content_range:
|
2000-07-21 11:02:43 +00:00
|
|
|
|
_http_parse_range(p, &offset, &length, &size);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case hdr_last_modified:
|
2000-07-21 11:02:43 +00:00
|
|
|
|
_http_parse_mtime(p, &mtime);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
break;
|
|
|
|
|
case hdr_location:
|
|
|
|
|
if (!HTTP_REDIRECT(code))
|
|
|
|
|
break;
|
2000-07-13 09:13:58 +00:00
|
|
|
|
if (new)
|
|
|
|
|
free(new);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (verbose)
|
|
|
|
|
_fetch_info("%d redirect to %s", code, p);
|
2000-07-13 09:13:58 +00:00
|
|
|
|
if (*p == '/')
|
|
|
|
|
/* absolute path */
|
|
|
|
|
new = fetchMakeURL(url->scheme, url->host, url->port, p,
|
|
|
|
|
url->user, url->pwd);
|
|
|
|
|
else
|
|
|
|
|
new = fetchParseURL(p);
|
|
|
|
|
if (new == NULL) {
|
|
|
|
|
/* XXX should set an error code */
|
|
|
|
|
DEBUG(fprintf(stderr, "failed to parse new URL\n"));
|
2000-07-12 10:39:56 +00:00
|
|
|
|
goto ouch;
|
2000-07-13 09:13:58 +00:00
|
|
|
|
}
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (!*new->user && !*new->pwd) {
|
|
|
|
|
strcpy(new->user, url->user);
|
|
|
|
|
strcpy(new->pwd, url->pwd);
|
|
|
|
|
}
|
|
|
|
|
new->offset = url->offset;
|
|
|
|
|
new->length = url->length;
|
2000-07-13 09:13:58 +00:00
|
|
|
|
break;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
case hdr_transfer_encoding:
|
|
|
|
|
/* XXX weak test*/
|
|
|
|
|
chunked = (strcasecmp(p, "chunked") == 0);
|
|
|
|
|
break;
|
2001-05-26 19:37:15 +00:00
|
|
|
|
case hdr_www_authenticate:
|
|
|
|
|
if (code != HTTP_NEED_AUTH)
|
|
|
|
|
break;
|
|
|
|
|
/* if we were smarter, we'd check the method and realm */
|
|
|
|
|
break;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
case hdr_end:
|
|
|
|
|
/* fall through */
|
|
|
|
|
case hdr_unknown:
|
|
|
|
|
/* ignore */
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
} while (h > hdr_end);
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
/* we have a hit */
|
|
|
|
|
if (code == HTTP_OK || code == HTTP_PARTIAL)
|
2000-07-12 10:39:56 +00:00
|
|
|
|
break;
|
2000-07-13 09:13:58 +00:00
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
/* we need to provide authentication */
|
|
|
|
|
if (code == HTTP_NEED_AUTH) {
|
|
|
|
|
need_auth = 1;
|
|
|
|
|
close(fd);
|
|
|
|
|
fd = -1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* all other cases: we got a redirect */
|
|
|
|
|
need_auth = 0;
|
2000-07-13 09:13:58 +00:00
|
|
|
|
close(fd);
|
2000-07-17 21:09:11 +00:00
|
|
|
|
fd = -1;
|
2001-05-26 19:37:15 +00:00
|
|
|
|
if (!new) {
|
|
|
|
|
DEBUG(fprintf(stderr, "redirect with no new location\n"));
|
|
|
|
|
break;
|
|
|
|
|
}
|
2000-07-13 09:13:58 +00:00
|
|
|
|
if (url != URL)
|
|
|
|
|
fetchFreeURL(url);
|
|
|
|
|
url = new;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
} while (++i < n);
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2001-05-26 19:37:15 +00:00
|
|
|
|
/* we failed, or ran out of retries */
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (fd == -1) {
|
|
|
|
|
_http_seterr(code);
|
|
|
|
|
goto ouch;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-08-02 11:25:21 +00:00
|
|
|
|
DEBUG(fprintf(stderr, "offset %lld, length %lld, size %lld, clength %lld\n",
|
2000-07-21 11:02:43 +00:00
|
|
|
|
offset, length, size, clength));
|
|
|
|
|
|
|
|
|
|
/* check for inconsistencies */
|
|
|
|
|
if (clength != -1 && length != -1 && clength != length) {
|
|
|
|
|
_http_seterr(HTTP_PROTOCOL_ERROR);
|
|
|
|
|
goto ouch;
|
|
|
|
|
}
|
|
|
|
|
if (clength == -1)
|
|
|
|
|
clength = length;
|
|
|
|
|
if (clength != -1)
|
|
|
|
|
length = offset + clength;
|
|
|
|
|
if (length != -1 && size != -1 && length != size) {
|
|
|
|
|
_http_seterr(HTTP_PROTOCOL_ERROR);
|
|
|
|
|
goto ouch;
|
|
|
|
|
}
|
|
|
|
|
if (size == -1)
|
|
|
|
|
size = length;
|
|
|
|
|
|
|
|
|
|
/* fill in stats */
|
|
|
|
|
if (us) {
|
|
|
|
|
us->size = size;
|
|
|
|
|
us->atime = us->mtime = mtime;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-19 23:43:49 +00:00
|
|
|
|
/* too far? */
|
2000-07-21 11:02:43 +00:00
|
|
|
|
if (offset > URL->offset) {
|
2000-07-19 23:43:49 +00:00
|
|
|
|
_http_seterr(HTTP_PROTOCOL_ERROR);
|
|
|
|
|
goto ouch;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-21 11:02:43 +00:00
|
|
|
|
/* report back real offset and size */
|
2000-07-19 23:43:49 +00:00
|
|
|
|
URL->offset = offset;
|
2000-07-21 11:02:43 +00:00
|
|
|
|
URL->length = clength;
|
2000-07-19 23:43:49 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
/* wrap it up in a FILE */
|
|
|
|
|
if ((f = chunked ? _http_funopen(fd) : fdopen(fd, "r")) == NULL) {
|
|
|
|
|
_fetch_syserr();
|
1998-07-09 16:52:44 +00:00
|
|
|
|
goto ouch;
|
2000-07-12 10:39:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (url != URL)
|
|
|
|
|
fetchFreeURL(url);
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (purl)
|
|
|
|
|
fetchFreeURL(purl);
|
2000-05-11 13:31:02 +00:00
|
|
|
|
|
|
|
|
|
return f;
|
1998-07-09 16:52:44 +00:00
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
ouch:
|
|
|
|
|
if (url != URL)
|
|
|
|
|
fetchFreeURL(url);
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if (purl)
|
|
|
|
|
fetchFreeURL(purl);
|
2000-07-12 10:39:56 +00:00
|
|
|
|
if (fd != -1)
|
|
|
|
|
close(fd);
|
2000-05-11 13:31:02 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-12 10:39:56 +00:00
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
|
* Entry points
|
2000-05-11 13:31:02 +00:00
|
|
|
|
*/
|
|
|
|
|
|
2000-07-17 21:25:00 +00:00
|
|
|
|
/*
|
|
|
|
|
* Retrieve and stat a file by HTTP
|
|
|
|
|
*/
|
|
|
|
|
FILE *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
fetchXGetHTTP(struct url *URL, struct url_stat *us, const char *flags)
|
2000-07-17 21:25:00 +00:00
|
|
|
|
{
|
2000-10-12 22:10:26 +00:00
|
|
|
|
return _http_request(URL, "GET", us, _http_get_proxy(), flags);
|
2000-07-17 21:25:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-05-11 13:31:02 +00:00
|
|
|
|
/*
|
|
|
|
|
* Retrieve a file by HTTP
|
|
|
|
|
*/
|
|
|
|
|
FILE *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
fetchGetHTTP(struct url *URL, const char *flags)
|
2000-05-11 13:31:02 +00:00
|
|
|
|
{
|
2000-07-17 21:25:00 +00:00
|
|
|
|
return fetchXGetHTTP(URL, NULL, flags);
|
1998-07-09 16:52:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-07-17 21:25:00 +00:00
|
|
|
|
/*
|
|
|
|
|
* Store a file by HTTP
|
|
|
|
|
*/
|
1998-07-09 16:52:44 +00:00
|
|
|
|
FILE *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
fetchPutHTTP(struct url *URL, const char *flags)
|
1998-07-09 16:52:44 +00:00
|
|
|
|
{
|
|
|
|
|
warnx("fetchPutHTTP(): not implemented");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
Second of a series of cleanups to libfetch.
This commit introduces the following features:
a) the fetchStat*() functions, which return meta-information for a
document, such as size, modification time, etc.
b) the use of the com_err(3) facilities to report errors.
It also fixes a bunch of style bugs and a few logic bugs and somewhat
improves the man page.
Changed files, in alphabetical order:
Makefile:
Don't generate macros in {ftp,http}err.c.
Generate category fields for the error message lists.
Compile the error table.
Install fetch_err.h along with fetch.h.
common.c:
Remove the _netdb_errstring() macro, and add FETCH_ERR_NETDB to the
error code in the _netdb_seterr() macro.
Add categories to the _netdb_errlist table.
Report errors through the Common Error library.
common.h:
Add the DEBUG macros.
Add prototype for fetchConnect().
Remove the prototype for _fetch_errstring(), which is local to common.c
Add a categroy field to struct fetcherr, and define constants for
error categories.
Define macros for _{url,netdb,ftp,http}_seterr().
errors.et: (new file)
List error categories.
fetch.3:
Document the fetchStat*() functions.
Move the "unimplemented functionality" comments from NOTES to BUGS.
Document that applications which use libfetch must also use
libcom_err, and list existing error codes.
Undocument fetchLastErr{Code,String}.
Remove the (empty) DIAGNOSTICS section.
Mention Eugene Skepner in the AUTHORS section.
fetch.c:
Move the DEBUG macros to common.c
Add fetchStat() and fetchStatURL().
Generate error messages for URL parser errors, and fix a minor bug
in the parser.
Use 'struct url' instead of 'url_t'.
Remove fetchLastErr{Code,String}.
fetch.h:
Use 'struct url' instead of 'url_t', and remove the typedef.
Define struct url_stat (used by fetchStat()).
Add prototypes for fetchStat*().
Remove the declarations for fetchLastErr{Code,String}.
Include fetch_err.h.
fetch_err.et: (new file)
Error table for libfetch.
file.c:
Add fetchStatFile().
Use 'struct url' instead of 'url_t'.
ftp.c:
Add fetchStatFTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErrCode.
ftp.errors:
Add categories to all error messages.
http.c:
Add fetchStatHTTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErr{Code,Text}.
http.errors:
Add categories to all error messages.
Prompted by: jkh and Eugene Skepner
Numerous sugestions from: Garett Wollman and Eugene Skepner
1998-11-06 22:14:08 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Get an HTTP document's metadata
|
|
|
|
|
*/
|
|
|
|
|
int
|
2001-04-24 00:06:21 +00:00
|
|
|
|
fetchStatHTTP(struct url *URL, struct url_stat *us, const char *flags)
|
Second of a series of cleanups to libfetch.
This commit introduces the following features:
a) the fetchStat*() functions, which return meta-information for a
document, such as size, modification time, etc.
b) the use of the com_err(3) facilities to report errors.
It also fixes a bunch of style bugs and a few logic bugs and somewhat
improves the man page.
Changed files, in alphabetical order:
Makefile:
Don't generate macros in {ftp,http}err.c.
Generate category fields for the error message lists.
Compile the error table.
Install fetch_err.h along with fetch.h.
common.c:
Remove the _netdb_errstring() macro, and add FETCH_ERR_NETDB to the
error code in the _netdb_seterr() macro.
Add categories to the _netdb_errlist table.
Report errors through the Common Error library.
common.h:
Add the DEBUG macros.
Add prototype for fetchConnect().
Remove the prototype for _fetch_errstring(), which is local to common.c
Add a categroy field to struct fetcherr, and define constants for
error categories.
Define macros for _{url,netdb,ftp,http}_seterr().
errors.et: (new file)
List error categories.
fetch.3:
Document the fetchStat*() functions.
Move the "unimplemented functionality" comments from NOTES to BUGS.
Document that applications which use libfetch must also use
libcom_err, and list existing error codes.
Undocument fetchLastErr{Code,String}.
Remove the (empty) DIAGNOSTICS section.
Mention Eugene Skepner in the AUTHORS section.
fetch.c:
Move the DEBUG macros to common.c
Add fetchStat() and fetchStatURL().
Generate error messages for URL parser errors, and fix a minor bug
in the parser.
Use 'struct url' instead of 'url_t'.
Remove fetchLastErr{Code,String}.
fetch.h:
Use 'struct url' instead of 'url_t', and remove the typedef.
Define struct url_stat (used by fetchStat()).
Add prototypes for fetchStat*().
Remove the declarations for fetchLastErr{Code,String}.
Include fetch_err.h.
fetch_err.et: (new file)
Error table for libfetch.
file.c:
Add fetchStatFile().
Use 'struct url' instead of 'url_t'.
ftp.c:
Add fetchStatFTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErrCode.
ftp.errors:
Add categories to all error messages.
http.c:
Add fetchStatHTTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErr{Code,Text}.
http.errors:
Add categories to all error messages.
Prompted by: jkh and Eugene Skepner
Numerous sugestions from: Garett Wollman and Eugene Skepner
1998-11-06 22:14:08 +00:00
|
|
|
|
{
|
2000-05-11 13:31:02 +00:00
|
|
|
|
FILE *f;
|
|
|
|
|
|
2000-10-12 22:10:26 +00:00
|
|
|
|
if ((f = _http_request(URL, "HEAD", us, _http_get_proxy(), flags)) == NULL)
|
2000-06-21 09:49:51 +00:00
|
|
|
|
return -1;
|
2000-05-15 08:24:29 +00:00
|
|
|
|
fclose(f);
|
2000-05-11 13:31:02 +00:00
|
|
|
|
return 0;
|
Second of a series of cleanups to libfetch.
This commit introduces the following features:
a) the fetchStat*() functions, which return meta-information for a
document, such as size, modification time, etc.
b) the use of the com_err(3) facilities to report errors.
It also fixes a bunch of style bugs and a few logic bugs and somewhat
improves the man page.
Changed files, in alphabetical order:
Makefile:
Don't generate macros in {ftp,http}err.c.
Generate category fields for the error message lists.
Compile the error table.
Install fetch_err.h along with fetch.h.
common.c:
Remove the _netdb_errstring() macro, and add FETCH_ERR_NETDB to the
error code in the _netdb_seterr() macro.
Add categories to the _netdb_errlist table.
Report errors through the Common Error library.
common.h:
Add the DEBUG macros.
Add prototype for fetchConnect().
Remove the prototype for _fetch_errstring(), which is local to common.c
Add a categroy field to struct fetcherr, and define constants for
error categories.
Define macros for _{url,netdb,ftp,http}_seterr().
errors.et: (new file)
List error categories.
fetch.3:
Document the fetchStat*() functions.
Move the "unimplemented functionality" comments from NOTES to BUGS.
Document that applications which use libfetch must also use
libcom_err, and list existing error codes.
Undocument fetchLastErr{Code,String}.
Remove the (empty) DIAGNOSTICS section.
Mention Eugene Skepner in the AUTHORS section.
fetch.c:
Move the DEBUG macros to common.c
Add fetchStat() and fetchStatURL().
Generate error messages for URL parser errors, and fix a minor bug
in the parser.
Use 'struct url' instead of 'url_t'.
Remove fetchLastErr{Code,String}.
fetch.h:
Use 'struct url' instead of 'url_t', and remove the typedef.
Define struct url_stat (used by fetchStat()).
Add prototypes for fetchStat*().
Remove the declarations for fetchLastErr{Code,String}.
Include fetch_err.h.
fetch_err.et: (new file)
Error table for libfetch.
file.c:
Add fetchStatFile().
Use 'struct url' instead of 'url_t'.
ftp.c:
Add fetchStatFTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErrCode.
ftp.errors:
Add categories to all error messages.
http.c:
Add fetchStatHTTP().
Use 'struct url' instead of 'url_t'.
Don't use fetchLastErr{Code,Text}.
http.errors:
Add categories to all error messages.
Prompted by: jkh and Eugene Skepner
Numerous sugestions from: Garett Wollman and Eugene Skepner
1998-11-06 22:14:08 +00:00
|
|
|
|
}
|
1998-12-21 19:41:50 +00:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* List a directory
|
|
|
|
|
*/
|
|
|
|
|
struct url_ent *
|
2001-04-24 00:06:21 +00:00
|
|
|
|
fetchListHTTP(struct url *url, const char *flags)
|
1998-12-21 19:41:50 +00:00
|
|
|
|
{
|
|
|
|
|
warnx("fetchListHTTP(): not implemented");
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|