2016-03-19 15:14:35 +00:00
|
|
|
#include "first.h"
|
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
#include "base.h"
|
|
|
|
#include "array.h"
|
|
|
|
#include "buffer.h"
|
|
|
|
#include "log.h"
|
2005-09-02 12:38:42 +00:00
|
|
|
#include "etag.h"
|
2016-04-21 21:33:16 +00:00
|
|
|
#include "http_chunk.h"
|
2009-03-07 13:54:10 +00:00
|
|
|
#include "response.h"
|
2016-04-21 21:33:16 +00:00
|
|
|
#include "stat_cache.h"
|
2005-02-28 08:42:47 +00:00
|
|
|
|
2009-10-11 14:31:42 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
2009-10-11 16:45:24 +00:00
|
|
|
|
2009-10-11 14:31:42 +00:00
|
|
|
#include <time.h>
|
|
|
|
|
2005-02-28 09:04:44 +00:00
|
|
|
/*
|
|
|
|
* This was 'borrowed' from tcpdump.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This is fun.
|
|
|
|
*
|
|
|
|
* In older BSD systems, socket addresses were fixed-length, and
|
|
|
|
* "sizeof (struct sockaddr)" gave the size of the structure.
|
|
|
|
* All addresses fit within a "struct sockaddr".
|
|
|
|
*
|
|
|
|
* In newer BSD systems, the socket address is variable-length, and
|
|
|
|
* there's an "sa_len" field giving the length of the structure;
|
|
|
|
* this allows socket addresses to be longer than 2 bytes of family
|
|
|
|
* and 14 bytes of data.
|
|
|
|
*
|
|
|
|
* Some commercial UNIXes use the old BSD scheme, some use the RFC 2553
|
|
|
|
* variant of the old BSD scheme (with "struct sockaddr_storage" rather
|
|
|
|
* than "struct sockaddr"), and some use the new BSD scheme.
|
|
|
|
*
|
|
|
|
* Some versions of GNU libc use neither scheme, but has an "SA_LEN()"
|
|
|
|
* macro that determines the size based on the address family. Other
|
|
|
|
* versions don't have "SA_LEN()" (as it was in drafts of RFC 2553
|
|
|
|
* but not in the final version). On the latter systems, we explicitly
|
|
|
|
* check the AF_ type to determine the length; we assume that on
|
|
|
|
* all those systems we have "struct sockaddr_storage".
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
# ifndef SA_LEN
|
|
|
|
# ifdef HAVE_SOCKADDR_SA_LEN
|
|
|
|
# define SA_LEN(addr) ((addr)->sa_len)
|
|
|
|
# else /* HAVE_SOCKADDR_SA_LEN */
|
|
|
|
# ifdef HAVE_STRUCT_SOCKADDR_STORAGE
|
|
|
|
static size_t get_sa_len(const struct sockaddr *addr) {
|
|
|
|
switch (addr->sa_family) {
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 09:04:44 +00:00
|
|
|
# ifdef AF_INET
|
|
|
|
case AF_INET:
|
|
|
|
return (sizeof (struct sockaddr_in));
|
|
|
|
# endif
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 09:04:44 +00:00
|
|
|
# ifdef AF_INET6
|
|
|
|
case AF_INET6:
|
|
|
|
return (sizeof (struct sockaddr_in6));
|
|
|
|
# endif
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 09:04:44 +00:00
|
|
|
default:
|
|
|
|
return (sizeof (struct sockaddr));
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 09:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
# define SA_LEN(addr) (get_sa_len(addr))
|
|
|
|
# else /* HAVE_SOCKADDR_STORAGE */
|
|
|
|
# define SA_LEN(addr) (sizeof (struct sockaddr))
|
|
|
|
# endif /* HAVE_SOCKADDR_STORAGE */
|
|
|
|
# endif /* HAVE_SOCKADDR_SA_LEN */
|
|
|
|
# endif /* SA_LEN */
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
int response_header_insert(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen) {
|
|
|
|
data_string *ds;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
UNUSED(srv);
|
|
|
|
|
|
|
|
if (NULL == (ds = (data_string *)array_get_unused_element(con->response.headers, TYPE_STRING))) {
|
|
|
|
ds = data_response_init();
|
|
|
|
}
|
|
|
|
buffer_copy_string_len(ds->key, key, keylen);
|
|
|
|
buffer_copy_string_len(ds->value, value, vallen);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
array_insert_unique(con->response.headers, (data_unset *)ds);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int response_header_overwrite(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen) {
|
|
|
|
data_string *ds;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
UNUSED(srv);
|
|
|
|
|
|
|
|
/* if there already is a key by this name overwrite the value */
|
|
|
|
if (NULL != (ds = (data_string *)array_get_element(con->response.headers, key))) {
|
|
|
|
buffer_copy_string(ds->value, value);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2009-09-21 13:15:57 +00:00
|
|
|
return response_header_insert(srv, con, key, keylen, value, vallen);
|
|
|
|
}
|
|
|
|
|
|
|
|
int response_header_append(server *srv, connection *con, const char *key, size_t keylen, const char *value, size_t vallen) {
|
|
|
|
data_string *ds;
|
|
|
|
|
|
|
|
UNUSED(srv);
|
|
|
|
|
|
|
|
/* if there already is a key by this name append the value */
|
|
|
|
if (NULL != (ds = (data_string *)array_get_element(con->response.headers, key))) {
|
|
|
|
buffer_append_string_len(ds->value, CONST_STR_LEN(", "));
|
|
|
|
buffer_append_string_len(ds->value, value, vallen);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
return response_header_insert(srv, con, key, keylen, value, vallen);
|
|
|
|
}
|
|
|
|
|
|
|
|
int http_response_redirect_to_directory(server *srv, connection *con) {
|
|
|
|
buffer *o;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
o = buffer_init();
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_copy_buffer(o, con->uri.scheme);
|
2013-07-31 20:23:21 +00:00
|
|
|
buffer_append_string_len(o, CONST_STR_LEN("://"));
|
2015-02-08 19:10:44 +00:00
|
|
|
if (!buffer_is_empty(con->uri.authority)) {
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_append_string_buffer(o, con->uri.authority);
|
|
|
|
} else {
|
|
|
|
/* get the name of the currently connected socket */
|
|
|
|
struct hostent *he;
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
char hbuf[256];
|
|
|
|
#endif
|
|
|
|
sock_addr our_addr;
|
|
|
|
socklen_t our_addr_len;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
our_addr_len = sizeof(our_addr);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2016-03-29 02:24:18 +00:00
|
|
|
if (-1 == getsockname(con->fd, (struct sockaddr *)&our_addr, &our_addr_len)
|
2016-06-23 19:46:44 +00:00
|
|
|
|| our_addr_len > (socklen_t)sizeof(our_addr)) {
|
2005-02-28 08:42:47 +00:00
|
|
|
con->http_status = 500;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
log_error_write(srv, __FILE__, __LINE__, "ss",
|
|
|
|
"can't get sockname", strerror(errno));
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_free(o);
|
|
|
|
return 0;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
/* Lookup name: secondly try to get hostname for bind address */
|
|
|
|
switch(our_addr.plain.sa_family) {
|
|
|
|
#ifdef HAVE_IPV6
|
|
|
|
case AF_INET6:
|
2006-10-04 13:26:23 +00:00
|
|
|
if (0 != getnameinfo((const struct sockaddr *)(&our_addr.ipv6),
|
|
|
|
SA_LEN((const struct sockaddr *)&our_addr.ipv6),
|
2005-02-28 08:42:47 +00:00
|
|
|
hbuf, sizeof(hbuf), NULL, 0, 0)) {
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
char dst[INET6_ADDRSTRLEN];
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
log_error_write(srv, __FILE__, __LINE__,
|
2007-03-26 08:21:39 +00:00
|
|
|
"SSS", "NOTICE: getnameinfo failed: ",
|
2005-02-28 08:42:47 +00:00
|
|
|
strerror(errno), ", using ip-address instead");
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2016-05-16 23:50:53 +00:00
|
|
|
buffer_append_string_len(o, CONST_STR_LEN("["));
|
2006-10-04 13:26:23 +00:00
|
|
|
buffer_append_string(o,
|
|
|
|
inet_ntop(AF_INET6, (char *)&our_addr.ipv6.sin6_addr,
|
2005-02-28 08:42:47 +00:00
|
|
|
dst, sizeof(dst)));
|
2016-05-16 23:50:53 +00:00
|
|
|
buffer_append_string_len(o, CONST_STR_LEN("]"));
|
2005-02-28 08:42:47 +00:00
|
|
|
} else {
|
|
|
|
buffer_append_string(o, hbuf);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case AF_INET:
|
|
|
|
if (NULL == (he = gethostbyaddr((char *)&our_addr.ipv4.sin_addr, sizeof(struct in_addr), AF_INET))) {
|
|
|
|
log_error_write(srv, __FILE__, __LINE__,
|
2007-03-26 08:21:39 +00:00
|
|
|
"SdS", "NOTICE: gethostbyaddr failed: ",
|
2005-08-08 16:32:17 +00:00
|
|
|
h_errno, ", using ip-address instead");
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_append_string(o, inet_ntoa(our_addr.ipv4.sin_addr));
|
|
|
|
} else {
|
|
|
|
buffer_append_string(o, he->h_name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
log_error_write(srv, __FILE__, __LINE__,
|
|
|
|
"S", "ERROR: unsupported address-type");
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_free(o);
|
|
|
|
return -1;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2013-07-31 20:23:21 +00:00
|
|
|
{
|
|
|
|
unsigned short default_port = 80;
|
|
|
|
if (buffer_is_equal_caseless_string(con->uri.scheme, CONST_STR_LEN("https"))) {
|
|
|
|
default_port = 443;
|
|
|
|
}
|
|
|
|
if (default_port != srv->srvconf.port) {
|
|
|
|
buffer_append_string_len(o, CONST_STR_LEN(":"));
|
2015-02-08 12:37:10 +00:00
|
|
|
buffer_append_int(o, srv->srvconf.port);
|
2013-07-31 20:23:21 +00:00
|
|
|
}
|
2005-02-28 08:42:47 +00:00
|
|
|
}
|
|
|
|
}
|
2015-11-07 15:00:18 +00:00
|
|
|
buffer_append_string_encoded(o, CONST_BUF_LEN(con->uri.path), ENCODING_REL_URI);
|
2008-07-30 19:38:32 +00:00
|
|
|
buffer_append_string_len(o, CONST_STR_LEN("/"));
|
2015-02-08 12:37:10 +00:00
|
|
|
if (!buffer_string_is_empty(con->uri.query)) {
|
2008-07-30 19:38:32 +00:00
|
|
|
buffer_append_string_len(o, CONST_STR_LEN("?"));
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_append_string_buffer(o, con->uri.query);
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
response_header_insert(srv, con, CONST_STR_LEN("Location"), CONST_BUF_LEN(o));
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
con->http_status = 301;
|
2006-02-08 13:40:25 +00:00
|
|
|
con->file_finished = 1;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
buffer_free(o);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-02-28 08:42:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
buffer * strftime_cache_get(server *srv, time_t last_mod) {
|
|
|
|
struct tm *tm;
|
|
|
|
size_t i;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
for (i = 0; i < FILE_CACHE_MAX; i++) {
|
|
|
|
/* found cache-entry */
|
|
|
|
if (srv->mtime_cache[i].mtime == last_mod) return srv->mtime_cache[i].str;
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
/* found empty slot */
|
|
|
|
if (srv->mtime_cache[i].mtime == 0) break;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
if (i == FILE_CACHE_MAX) {
|
|
|
|
i = 0;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
srv->mtime_cache[i].mtime = last_mod;
|
2015-02-08 19:10:39 +00:00
|
|
|
buffer_string_prepare_copy(srv->mtime_cache[i].str, 1023);
|
2005-08-18 09:26:29 +00:00
|
|
|
tm = gmtime(&(srv->mtime_cache[i].mtime));
|
2015-02-08 19:10:44 +00:00
|
|
|
buffer_append_strftime(srv->mtime_cache[i].str, "%a, %d %b %Y %H:%M:%S GMT", tm);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-08-18 09:26:29 +00:00
|
|
|
return srv->mtime_cache[i].str;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
int http_response_handle_cachable(server *srv, connection *con, buffer *mtime) {
|
2015-07-05 16:59:01 +00:00
|
|
|
int head_or_get =
|
|
|
|
( HTTP_METHOD_GET == con->request.http_method
|
|
|
|
|| HTTP_METHOD_HEAD == con->request.http_method);
|
2013-01-22 13:08:21 +00:00
|
|
|
UNUSED(srv);
|
2015-07-05 16:59:01 +00:00
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
/*
|
|
|
|
* 14.26 If-None-Match
|
|
|
|
* [...]
|
|
|
|
* If none of the entity tags match, then the server MAY perform the
|
|
|
|
* requested method as if the If-None-Match header field did not exist,
|
|
|
|
* but MUST also ignore any If-Modified-Since header field(s) in the
|
|
|
|
* request. That is, if no entity tags match, then the server MUST NOT
|
|
|
|
* return a 304 (Not Modified) response.
|
|
|
|
*/
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
if (con->request.http_if_none_match) {
|
2015-07-05 16:59:01 +00:00
|
|
|
/* use strong etag checking for now: weak comparison must not be used
|
|
|
|
* for ranged requests
|
|
|
|
*/
|
|
|
|
if (etag_is_equal(con->physical.etag, con->request.http_if_none_match, 0)) {
|
|
|
|
if (head_or_get) {
|
2013-01-22 13:08:21 +00:00
|
|
|
con->http_status = 304;
|
|
|
|
return HANDLER_FINISHED;
|
2005-09-02 10:45:45 +00:00
|
|
|
} else {
|
|
|
|
con->http_status = 412;
|
2008-08-01 16:13:34 +00:00
|
|
|
con->mode = DIRECT;
|
2005-09-02 10:45:45 +00:00
|
|
|
return HANDLER_FINISHED;
|
|
|
|
}
|
|
|
|
}
|
2015-07-05 16:59:01 +00:00
|
|
|
} else if (con->request.http_if_modified_since && head_or_get) {
|
|
|
|
/* last-modified handling */
|
2005-09-02 10:45:45 +00:00
|
|
|
size_t used_len;
|
|
|
|
char *semicolon;
|
2006-09-07 10:19:29 +00:00
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
if (NULL == (semicolon = strchr(con->request.http_if_modified_since, ';'))) {
|
|
|
|
used_len = strlen(con->request.http_if_modified_since);
|
|
|
|
} else {
|
|
|
|
used_len = semicolon - con->request.http_if_modified_since;
|
|
|
|
}
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
if (0 == strncmp(con->request.http_if_modified_since, mtime->ptr, used_len)) {
|
2009-08-06 08:33:19 +00:00
|
|
|
if ('\0' == mtime->ptr[used_len]) con->http_status = 304;
|
2006-09-07 10:19:29 +00:00
|
|
|
return HANDLER_FINISHED;
|
|
|
|
} else {
|
|
|
|
char buf[sizeof("Sat, 23 Jul 2005 21:20:01 GMT")];
|
|
|
|
time_t t_header, t_file;
|
|
|
|
struct tm tm;
|
|
|
|
|
|
|
|
/* convert to timestamp */
|
|
|
|
if (used_len >= sizeof(buf)) return HANDLER_GO_ON;
|
|
|
|
|
|
|
|
strncpy(buf, con->request.http_if_modified_since, used_len);
|
|
|
|
buf[used_len] = '\0';
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2007-08-17 21:46:36 +00:00
|
|
|
if (NULL == strptime(buf, "%a, %d %b %Y %H:%M:%S GMT", &tm)) {
|
|
|
|
/**
|
|
|
|
* parsing failed, let's get out of here
|
|
|
|
*/
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
2009-08-06 08:33:19 +00:00
|
|
|
tm.tm_isdst = 0;
|
2006-09-07 10:19:29 +00:00
|
|
|
t_header = mktime(&tm);
|
2006-10-04 13:26:23 +00:00
|
|
|
|
2006-09-07 10:19:29 +00:00
|
|
|
strptime(mtime->ptr, "%a, %d %b %Y %H:%M:%S GMT", &tm);
|
2009-08-06 08:33:19 +00:00
|
|
|
tm.tm_isdst = 0;
|
2006-09-07 10:19:29 +00:00
|
|
|
t_file = mktime(&tm);
|
|
|
|
|
|
|
|
if (t_file > t_header) return HANDLER_GO_ON;
|
|
|
|
|
2005-09-02 10:45:45 +00:00
|
|
|
con->http_status = 304;
|
|
|
|
return HANDLER_FINISHED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return HANDLER_GO_ON;
|
|
|
|
}
|
2016-04-21 21:33:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
static int http_response_parse_range(server *srv, connection *con, buffer *path, stat_cache_entry *sce) {
|
|
|
|
int multipart = 0;
|
|
|
|
int error;
|
|
|
|
off_t start, end;
|
|
|
|
const char *s, *minus;
|
|
|
|
char *boundary = "fkj49sn38dcn3";
|
|
|
|
data_string *ds;
|
|
|
|
buffer *content_type = NULL;
|
|
|
|
|
|
|
|
start = 0;
|
|
|
|
end = sce->st.st_size - 1;
|
|
|
|
|
|
|
|
con->response.content_length = 0;
|
|
|
|
|
|
|
|
if (NULL != (ds = (data_string *)array_get_element(con->response.headers, "Content-Type"))) {
|
|
|
|
content_type = ds->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (s = con->request.http_range, error = 0;
|
|
|
|
!error && *s && NULL != (minus = strchr(s, '-')); ) {
|
|
|
|
char *err;
|
|
|
|
off_t la, le;
|
|
|
|
|
|
|
|
if (s == minus) {
|
|
|
|
/* -<stop> */
|
|
|
|
|
|
|
|
le = strtoll(s, &err, 10);
|
|
|
|
|
|
|
|
if (le == 0) {
|
|
|
|
/* RFC 2616 - 14.35.1 */
|
|
|
|
|
|
|
|
con->http_status = 416;
|
|
|
|
error = 1;
|
|
|
|
} else if (*err == '\0') {
|
|
|
|
/* end */
|
|
|
|
s = err;
|
|
|
|
|
|
|
|
end = sce->st.st_size - 1;
|
|
|
|
start = sce->st.st_size + le;
|
|
|
|
} else if (*err == ',') {
|
|
|
|
multipart = 1;
|
|
|
|
s = err + 1;
|
|
|
|
|
|
|
|
end = sce->st.st_size - 1;
|
|
|
|
start = sce->st.st_size + le;
|
|
|
|
} else {
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if (*(minus+1) == '\0' || *(minus+1) == ',') {
|
|
|
|
/* <start>- */
|
|
|
|
|
|
|
|
la = strtoll(s, &err, 10);
|
|
|
|
|
|
|
|
if (err == minus) {
|
|
|
|
/* ok */
|
|
|
|
|
|
|
|
if (*(err + 1) == '\0') {
|
|
|
|
s = err + 1;
|
|
|
|
|
|
|
|
end = sce->st.st_size - 1;
|
|
|
|
start = la;
|
|
|
|
|
|
|
|
} else if (*(err + 1) == ',') {
|
|
|
|
multipart = 1;
|
|
|
|
s = err + 2;
|
|
|
|
|
|
|
|
end = sce->st.st_size - 1;
|
|
|
|
start = la;
|
|
|
|
} else {
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* error */
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* <start>-<stop> */
|
|
|
|
|
|
|
|
la = strtoll(s, &err, 10);
|
|
|
|
|
|
|
|
if (err == minus) {
|
|
|
|
le = strtoll(minus+1, &err, 10);
|
|
|
|
|
|
|
|
/* RFC 2616 - 14.35.1 */
|
|
|
|
if (la > le) {
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*err == '\0') {
|
|
|
|
/* ok, end*/
|
|
|
|
s = err;
|
|
|
|
|
|
|
|
end = le;
|
|
|
|
start = la;
|
|
|
|
} else if (*err == ',') {
|
|
|
|
multipart = 1;
|
|
|
|
s = err + 1;
|
|
|
|
|
|
|
|
end = le;
|
|
|
|
start = la;
|
|
|
|
} else {
|
|
|
|
/* error */
|
|
|
|
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* error */
|
|
|
|
|
|
|
|
error = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!error) {
|
|
|
|
if (start < 0) start = 0;
|
|
|
|
|
|
|
|
/* RFC 2616 - 14.35.1 */
|
|
|
|
if (end > sce->st.st_size - 1) end = sce->st.st_size - 1;
|
|
|
|
|
|
|
|
if (start > sce->st.st_size - 1) {
|
|
|
|
error = 1;
|
|
|
|
|
|
|
|
con->http_status = 416;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!error) {
|
|
|
|
if (multipart) {
|
|
|
|
/* write boundary-header */
|
|
|
|
buffer *b = buffer_init();
|
|
|
|
|
|
|
|
buffer_copy_string_len(b, CONST_STR_LEN("\r\n--"));
|
|
|
|
buffer_append_string(b, boundary);
|
|
|
|
|
|
|
|
/* write Content-Range */
|
|
|
|
buffer_append_string_len(b, CONST_STR_LEN("\r\nContent-Range: bytes "));
|
|
|
|
buffer_append_int(b, start);
|
|
|
|
buffer_append_string_len(b, CONST_STR_LEN("-"));
|
|
|
|
buffer_append_int(b, end);
|
|
|
|
buffer_append_string_len(b, CONST_STR_LEN("/"));
|
|
|
|
buffer_append_int(b, sce->st.st_size);
|
|
|
|
|
|
|
|
buffer_append_string_len(b, CONST_STR_LEN("\r\nContent-Type: "));
|
|
|
|
buffer_append_string_buffer(b, content_type);
|
|
|
|
|
|
|
|
/* write END-OF-HEADER */
|
|
|
|
buffer_append_string_len(b, CONST_STR_LEN("\r\n\r\n"));
|
|
|
|
|
|
|
|
con->response.content_length += buffer_string_length(b);
|
|
|
|
chunkqueue_append_buffer(con->write_queue, b);
|
|
|
|
buffer_free(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
chunkqueue_append_file(con->write_queue, path, start, end - start + 1);
|
|
|
|
con->response.content_length += end - start + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* something went wrong */
|
|
|
|
if (error) return -1;
|
|
|
|
|
|
|
|
if (multipart) {
|
|
|
|
/* add boundary end */
|
|
|
|
buffer *b = buffer_init();
|
|
|
|
|
|
|
|
buffer_copy_string_len(b, "\r\n--", 4);
|
|
|
|
buffer_append_string(b, boundary);
|
|
|
|
buffer_append_string_len(b, "--\r\n", 4);
|
|
|
|
|
|
|
|
con->response.content_length += buffer_string_length(b);
|
|
|
|
chunkqueue_append_buffer(con->write_queue, b);
|
|
|
|
buffer_free(b);
|
|
|
|
|
|
|
|
/* set header-fields */
|
|
|
|
|
|
|
|
buffer_copy_string_len(srv->tmp_buf, CONST_STR_LEN("multipart/byteranges; boundary="));
|
|
|
|
buffer_append_string(srv->tmp_buf, boundary);
|
|
|
|
|
|
|
|
/* overwrite content-type */
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("Content-Type"), CONST_BUF_LEN(srv->tmp_buf));
|
|
|
|
} else {
|
|
|
|
/* add Content-Range-header */
|
|
|
|
|
|
|
|
buffer_copy_string_len(srv->tmp_buf, CONST_STR_LEN("bytes "));
|
|
|
|
buffer_append_int(srv->tmp_buf, start);
|
|
|
|
buffer_append_string_len(srv->tmp_buf, CONST_STR_LEN("-"));
|
|
|
|
buffer_append_int(srv->tmp_buf, end);
|
|
|
|
buffer_append_string_len(srv->tmp_buf, CONST_STR_LEN("/"));
|
|
|
|
buffer_append_int(srv->tmp_buf, sce->st.st_size);
|
|
|
|
|
|
|
|
response_header_insert(srv, con, CONST_STR_LEN("Content-Range"), CONST_BUF_LEN(srv->tmp_buf));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ok, the file is set-up */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void http_response_send_file (server *srv, connection *con, buffer *path) {
|
|
|
|
stat_cache_entry *sce = NULL;
|
|
|
|
buffer *mtime = NULL;
|
|
|
|
data_string *ds;
|
[mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
handle X-Sendfile and X-LIGHTTPD-send-file w/ http_response_xsendfile()
if host is configured ( "x-sendfile" = "enable" )
Note: X-Sendfile path is url-decoded for consistency, like X-Sendfile2
(response headers should be url-encoded to avoid tripping over
chars allowed in filesystem but which might change response
header parsing semantics)
Note: deprecated: "allow-x-send-file"; use "x-sendfile"
Note: deprecated: X-LIGHTTPD-send-file header; use X-Sendfile header
Note: deprecated: X-Sendfile2 header; use X-Sendfile header
For now, X-Sendfile2 is still handled internally by mod_fastcgi.
Since http_response_send_file() supports HTTP Range requests,
X-Sendfile2 is effectively obsolete. However, any code, e.g. PHP,
currently using X-Sendfile2 is probably manually generating 206 Partial
Content status and Range response headers. A future version of lighttpd
might *remove* X-Sendfile2. Existing code should be converted to use
X-Sendfile, which is easily done by removing all the special logic
around using X-Sendfile2, since the 206 Partial Content status and Range
response headers are handled in http_response_send_file().
x-ref:
"mod_fastcgi + X-Sendfile -> mod_staticfile"
https://redmine.lighttpd.net/issues/799
"Feature Request: New option "x-send-file-docroot""
https://redmine.lighttpd.net/issues/851
"X-Sendfile handoff to mod-static-file in 1.4.x"
https://redmine.lighttpd.net/issues/2017
"X-sendfile should be able to set content-type"
https://redmine.lighttpd.net/issues/2076
2016-04-22 01:01:30 +00:00
|
|
|
int allow_caching = (0 == con->http_status || 200 == con->http_status);
|
2016-04-21 21:33:16 +00:00
|
|
|
|
|
|
|
if (HANDLER_ERROR == stat_cache_get_entry(srv, con, path, &sce)) {
|
|
|
|
con->http_status = (errno == ENOENT) ? 404 : 403;
|
|
|
|
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "sbsb",
|
|
|
|
"not a regular file:", con->uri.path,
|
|
|
|
"->", path);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* we only handline regular files */
|
|
|
|
#ifdef HAVE_LSTAT
|
|
|
|
if ((sce->is_symlink == 1) && !con->conf.follow_symlink) {
|
|
|
|
con->http_status = 403;
|
|
|
|
|
|
|
|
if (con->conf.log_request_handling) {
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "s", "-- access denied due symlink restriction");
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "sb", "Path :", path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
if (!S_ISREG(sce->st.st_mode)) {
|
|
|
|
con->http_status = 403;
|
|
|
|
|
|
|
|
if (con->conf.log_file_not_found) {
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "sbsb",
|
|
|
|
"not a regular file:", con->uri.path,
|
|
|
|
"->", sce->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* mod_compress might set several data directly, don't overwrite them */
|
|
|
|
|
|
|
|
/* set response content-type, if not set already */
|
|
|
|
|
|
|
|
if (NULL == array_get_element(con->response.headers, "Content-Type")) {
|
|
|
|
if (buffer_string_is_empty(sce->content_type)) {
|
|
|
|
/* we are setting application/octet-stream, but also announce that
|
|
|
|
* this header field might change in the seconds few requests
|
|
|
|
*
|
|
|
|
* This should fix the aggressive caching of FF and the script download
|
|
|
|
* seen by the first installations
|
|
|
|
*/
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("Content-Type"), CONST_STR_LEN("application/octet-stream"));
|
|
|
|
|
|
|
|
allow_caching = 0;
|
|
|
|
} else {
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("Content-Type"), CONST_BUF_LEN(sce->content_type));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (con->conf.range_requests) {
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("Accept-Ranges"), CONST_STR_LEN("bytes"));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (allow_caching) {
|
|
|
|
if (con->etag_flags != 0 && !buffer_string_is_empty(sce->etag)) {
|
|
|
|
if (NULL == array_get_element(con->response.headers, "ETag")) {
|
|
|
|
/* generate e-tag */
|
|
|
|
etag_mutate(con->physical.etag, sce->etag);
|
|
|
|
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("ETag"), CONST_BUF_LEN(con->physical.etag));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* prepare header */
|
|
|
|
if (NULL == (ds = (data_string *)array_get_element(con->response.headers, "Last-Modified"))) {
|
|
|
|
mtime = strftime_cache_get(srv, sce->st.st_mtime);
|
|
|
|
response_header_overwrite(srv, con, CONST_STR_LEN("Last-Modified"), CONST_BUF_LEN(mtime));
|
|
|
|
} else {
|
|
|
|
mtime = ds->value;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (HANDLER_FINISHED == http_response_handle_cachable(srv, con, mtime)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
[mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
handle X-Sendfile and X-LIGHTTPD-send-file w/ http_response_xsendfile()
if host is configured ( "x-sendfile" = "enable" )
Note: X-Sendfile path is url-decoded for consistency, like X-Sendfile2
(response headers should be url-encoded to avoid tripping over
chars allowed in filesystem but which might change response
header parsing semantics)
Note: deprecated: "allow-x-send-file"; use "x-sendfile"
Note: deprecated: X-LIGHTTPD-send-file header; use X-Sendfile header
Note: deprecated: X-Sendfile2 header; use X-Sendfile header
For now, X-Sendfile2 is still handled internally by mod_fastcgi.
Since http_response_send_file() supports HTTP Range requests,
X-Sendfile2 is effectively obsolete. However, any code, e.g. PHP,
currently using X-Sendfile2 is probably manually generating 206 Partial
Content status and Range response headers. A future version of lighttpd
might *remove* X-Sendfile2. Existing code should be converted to use
X-Sendfile, which is easily done by removing all the special logic
around using X-Sendfile2, since the 206 Partial Content status and Range
response headers are handled in http_response_send_file().
x-ref:
"mod_fastcgi + X-Sendfile -> mod_staticfile"
https://redmine.lighttpd.net/issues/799
"Feature Request: New option "x-send-file-docroot""
https://redmine.lighttpd.net/issues/851
"X-Sendfile handoff to mod-static-file in 1.4.x"
https://redmine.lighttpd.net/issues/2017
"X-sendfile should be able to set content-type"
https://redmine.lighttpd.net/issues/2076
2016-04-22 01:01:30 +00:00
|
|
|
if (con->request.http_range && con->conf.range_requests
|
|
|
|
&& (200 == con->http_status || 0 == con->http_status)
|
|
|
|
&& NULL == array_get_element(con->response.headers, "Content-Encoding")) {
|
2016-04-21 21:33:16 +00:00
|
|
|
int do_range_request = 1;
|
|
|
|
/* check if we have a conditional GET */
|
|
|
|
|
|
|
|
if (NULL != (ds = (data_string *)array_get_element(con->request.headers, "If-Range"))) {
|
|
|
|
/* if the value is the same as our ETag, we do a Range-request,
|
|
|
|
* otherwise a full 200 */
|
|
|
|
|
|
|
|
if (ds->value->ptr[0] == '"') {
|
|
|
|
/**
|
|
|
|
* client wants a ETag
|
|
|
|
*/
|
|
|
|
if (!con->physical.etag) {
|
|
|
|
do_range_request = 0;
|
|
|
|
} else if (!buffer_is_equal(ds->value, con->physical.etag)) {
|
|
|
|
do_range_request = 0;
|
|
|
|
}
|
|
|
|
} else if (!mtime) {
|
|
|
|
/**
|
|
|
|
* we don't have a Last-Modified and can match the If-Range:
|
|
|
|
*
|
|
|
|
* sending all
|
|
|
|
*/
|
|
|
|
do_range_request = 0;
|
|
|
|
} else if (!buffer_is_equal(ds->value, mtime)) {
|
|
|
|
do_range_request = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (do_range_request) {
|
|
|
|
/* content prepared, I'm done */
|
|
|
|
con->file_finished = 1;
|
|
|
|
|
|
|
|
if (0 == http_response_parse_range(srv, con, path, sce)) {
|
|
|
|
con->http_status = 206;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if we are still here, prepare body */
|
|
|
|
|
|
|
|
/* we add it here for all requests
|
|
|
|
* the HEAD request will drop it afterwards again
|
|
|
|
*/
|
|
|
|
if (0 == sce->st.st_size || 0 == http_chunk_append_file(srv, con, path)) {
|
|
|
|
con->http_status = 200;
|
|
|
|
con->file_finished = 1;
|
|
|
|
} else {
|
|
|
|
con->http_status = 403;
|
|
|
|
}
|
|
|
|
}
|
[mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
handle X-Sendfile and X-LIGHTTPD-send-file w/ http_response_xsendfile()
if host is configured ( "x-sendfile" = "enable" )
Note: X-Sendfile path is url-decoded for consistency, like X-Sendfile2
(response headers should be url-encoded to avoid tripping over
chars allowed in filesystem but which might change response
header parsing semantics)
Note: deprecated: "allow-x-send-file"; use "x-sendfile"
Note: deprecated: X-LIGHTTPD-send-file header; use X-Sendfile header
Note: deprecated: X-Sendfile2 header; use X-Sendfile header
For now, X-Sendfile2 is still handled internally by mod_fastcgi.
Since http_response_send_file() supports HTTP Range requests,
X-Sendfile2 is effectively obsolete. However, any code, e.g. PHP,
currently using X-Sendfile2 is probably manually generating 206 Partial
Content status and Range response headers. A future version of lighttpd
might *remove* X-Sendfile2. Existing code should be converted to use
X-Sendfile, which is easily done by removing all the special logic
around using X-Sendfile2, since the 206 Partial Content status and Range
response headers are handled in http_response_send_file().
x-ref:
"mod_fastcgi + X-Sendfile -> mod_staticfile"
https://redmine.lighttpd.net/issues/799
"Feature Request: New option "x-send-file-docroot""
https://redmine.lighttpd.net/issues/851
"X-Sendfile handoff to mod-static-file in 1.4.x"
https://redmine.lighttpd.net/issues/2017
"X-sendfile should be able to set content-type"
https://redmine.lighttpd.net/issues/2076
2016-04-22 01:01:30 +00:00
|
|
|
|
|
|
|
void http_response_xsendfile (server *srv, connection *con, buffer *path, const array *xdocroot) {
|
|
|
|
const int status = con->http_status;
|
|
|
|
int valid = 1;
|
|
|
|
|
2016-05-18 04:05:34 +00:00
|
|
|
con->file_started = 1;
|
|
|
|
|
[mod_fastcgi] use http_response_xsendfile() (fixes #799, fixes #851, fixes #2017, fixes #2076)
handle X-Sendfile and X-LIGHTTPD-send-file w/ http_response_xsendfile()
if host is configured ( "x-sendfile" = "enable" )
Note: X-Sendfile path is url-decoded for consistency, like X-Sendfile2
(response headers should be url-encoded to avoid tripping over
chars allowed in filesystem but which might change response
header parsing semantics)
Note: deprecated: "allow-x-send-file"; use "x-sendfile"
Note: deprecated: X-LIGHTTPD-send-file header; use X-Sendfile header
Note: deprecated: X-Sendfile2 header; use X-Sendfile header
For now, X-Sendfile2 is still handled internally by mod_fastcgi.
Since http_response_send_file() supports HTTP Range requests,
X-Sendfile2 is effectively obsolete. However, any code, e.g. PHP,
currently using X-Sendfile2 is probably manually generating 206 Partial
Content status and Range response headers. A future version of lighttpd
might *remove* X-Sendfile2. Existing code should be converted to use
X-Sendfile, which is easily done by removing all the special logic
around using X-Sendfile2, since the 206 Partial Content status and Range
response headers are handled in http_response_send_file().
x-ref:
"mod_fastcgi + X-Sendfile -> mod_staticfile"
https://redmine.lighttpd.net/issues/799
"Feature Request: New option "x-send-file-docroot""
https://redmine.lighttpd.net/issues/851
"X-Sendfile handoff to mod-static-file in 1.4.x"
https://redmine.lighttpd.net/issues/2017
"X-sendfile should be able to set content-type"
https://redmine.lighttpd.net/issues/2076
2016-04-22 01:01:30 +00:00
|
|
|
/* reset Content-Length, if set by backend
|
|
|
|
* Content-Length might later be set to size of X-Sendfile static file,
|
|
|
|
* determined by open(), fstat() to reduces race conditions if the file
|
|
|
|
* is modified between stat() (stat_cache_get_entry()) and open(). */
|
|
|
|
if (con->parsed_response & HTTP_CONTENT_LENGTH) {
|
|
|
|
data_string *ds = (data_string *) array_get_element(con->response.headers, "Content-Length");
|
|
|
|
if (ds) buffer_reset(ds->value);
|
|
|
|
con->parsed_response &= ~HTTP_CONTENT_LENGTH;
|
|
|
|
con->response.content_length = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
buffer_urldecode_path(path);
|
|
|
|
buffer_path_simplify(path, path);
|
|
|
|
if (con->conf.force_lowercase_filenames) {
|
|
|
|
buffer_to_lower(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check that path is under xdocroot(s)
|
|
|
|
* - xdocroot should have trailing slash appended at config time
|
|
|
|
* - con->conf.force_lowercase_filenames is not a server-wide setting,
|
|
|
|
* and so can not be definitively applied to xdocroot at config time*/
|
|
|
|
if (xdocroot->used) {
|
|
|
|
size_t i, xlen = buffer_string_length(path);
|
|
|
|
for (i = 0; i < xdocroot->used; ++i) {
|
|
|
|
data_string *ds = (data_string *)xdocroot->data[i];
|
|
|
|
size_t dlen = buffer_string_length(ds->value);
|
|
|
|
if (dlen <= xlen
|
|
|
|
&& (!con->conf.force_lowercase_filenames
|
|
|
|
? 0 == memcmp(path->ptr, ds->value->ptr, dlen)
|
|
|
|
: 0 == strncasecmp(path->ptr, ds->value->ptr, dlen))) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (i == xdocroot->used) {
|
|
|
|
log_error_write(srv, __FILE__, __LINE__, "SBs",
|
|
|
|
"X-Sendfile (", path,
|
|
|
|
") not under configured x-sendfile-docroot(s)");
|
|
|
|
con->http_status = 403;
|
|
|
|
valid = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (valid) http_response_send_file(srv, con, path);
|
|
|
|
|
|
|
|
if (con->http_status >= 400 && status < 300) {
|
|
|
|
con->mode = DIRECT;
|
|
|
|
} else if (0 != status && 200 != status) {
|
|
|
|
con->http_status = status;
|
|
|
|
}
|
|
|
|
}
|
2016-05-27 04:24:33 +00:00
|
|
|
|
2016-06-19 00:39:00 +00:00
|
|
|
void http_response_backend_error (server *srv, connection *con) {
|
|
|
|
UNUSED(srv);
|
|
|
|
if (con->file_started) {
|
|
|
|
/*(response might have been already started, kill the connection)*/
|
|
|
|
/*(mode == DIRECT to avoid later call to http_response_backend_done())*/
|
|
|
|
con->mode = DIRECT; /*(avoid sending final chunked block)*/
|
|
|
|
con->keep_alive = 0; /*(no keep-alive; final chunked block not sent)*/
|
|
|
|
con->file_finished = 1;
|
|
|
|
} /*(else error status set later by http_response_backend_done())*/
|
|
|
|
}
|
|
|
|
|
2016-05-27 04:24:33 +00:00
|
|
|
void http_response_backend_done (server *srv, connection *con) {
|
|
|
|
/* (not CON_STATE_ERROR and not CON_STATE_RESPONSE_END,
|
|
|
|
* i.e. not called from handle_connection_close or connection_reset
|
|
|
|
* hooks, except maybe from errdoc handler, which later resets state)*/
|
|
|
|
switch (con->state) {
|
|
|
|
case CON_STATE_HANDLE_REQUEST:
|
|
|
|
case CON_STATE_READ_POST:
|
|
|
|
if (!con->file_started) {
|
|
|
|
/* Send an error if we haven't sent any data yet */
|
|
|
|
con->http_status = 500;
|
|
|
|
con->mode = DIRECT;
|
|
|
|
break;
|
|
|
|
} /* else fall through */
|
|
|
|
case CON_STATE_WRITE:
|
|
|
|
if (!con->file_finished) {
|
|
|
|
http_chunk_close(srv, con);
|
|
|
|
con->file_finished = 1;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|