nginx/src/http/modules/ngx_http_static_handler.c

165 lines
4.7 KiB
C
Raw Normal View History

2002-08-16 01:20:26 +08:00
#include <ngx_config.h>
2003-05-14 00:02:32 +08:00
#include <ngx_core.h>
2002-08-20 22:48:28 +08:00
#include <ngx_http.h>
2003-03-21 00:09:44 +08:00
#include <ngx_http_config.h>
2003-05-15 01:13:13 +08:00
#include <ngx_http_core_module.h>
2003-02-07 01:21:13 +08:00
#include <ngx_http_output_filter.h>
2002-08-16 01:20:26 +08:00
2002-08-20 22:48:28 +08:00
2002-08-16 01:20:26 +08:00
int ngx_http_static_handler(ngx_http_request_t *r)
{
2003-05-27 20:18:54 +08:00
int rc, key, i;
ngx_log_e level;
ngx_err_t err;
ngx_hunk_t *h;
ngx_http_type_t *type;
ngx_http_log_ctx_t *ctx;
ngx_http_core_loc_conf_t *clcf;
2002-08-16 01:20:26 +08:00
2003-05-15 23:42:53 +08:00
rc = ngx_http_discard_body(r);
if (rc != NGX_OK) {
return rc;
}
2003-05-27 20:18:54 +08:00
if (r->method != NGX_HTTP_GET && r->method != NGX_HTTP_HEAD) {
return NGX_HTTP_NOT_ALLOWED;
}
2002-09-02 22:48:24 +08:00
ctx = r->connection->log->data;
ctx->action = "sending response";
2003-05-15 01:13:13 +08:00
if (r->file.fd == NGX_INVALID_FILE) {
2002-12-15 14:25:09 +08:00
r->file.fd = ngx_open_file(r->file.name.data, NGX_FILE_RDONLY);
2002-12-11 02:05:12 +08:00
2003-05-15 01:13:13 +08:00
if (r->file.fd == NGX_INVALID_FILE) {
err = ngx_errno;
2002-12-15 14:25:09 +08:00
2003-05-15 01:13:13 +08:00
if (err == NGX_ENOENT || err == NGX_ENOTDIR) {
level = NGX_LOG_ERR;
rc = NGX_HTTP_NOT_FOUND;
2003-04-12 00:01:14 +08:00
2003-05-15 01:13:13 +08:00
} else {
level = NGX_LOG_CRIT;
rc = NGX_HTTP_INTERNAL_SERVER_ERROR;
}
ngx_log_error(level, r->connection->log, ngx_errno,
ngx_open_file_n " %s failed", r->file.name.data);
return rc;
2003-04-12 00:01:14 +08:00
}
2002-12-15 14:25:09 +08:00
}
if (!r->file.info_valid) {
if (ngx_stat_fd(r->file.fd, &r->file.info) == NGX_FILE_ERROR) {
2003-05-15 01:13:13 +08:00
ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
2002-12-15 14:25:09 +08:00
ngx_stat_fd_n " %s failed", r->file.name.data);
if (ngx_close_file(r->file.fd) == NGX_FILE_ERROR)
2003-05-15 01:13:13 +08:00
ngx_log_error(NGX_LOG_ALERT, r->connection->log, ngx_errno,
2002-12-15 14:25:09 +08:00
ngx_close_file_n " %s failed", r->file.name.data);
2002-09-11 23:18:33 +08:00
2002-12-15 14:25:09 +08:00
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
r->file.info_valid = 1;
2002-08-20 22:48:28 +08:00
}
2002-08-16 01:20:26 +08:00
2003-05-15 23:42:53 +08:00
#if !(WIN32) /* the not regular files are probably Unix specific */
2002-12-15 14:25:09 +08:00
if (!ngx_is_file(r->file.info)) {
2003-05-15 01:13:13 +08:00
ngx_log_error(NGX_LOG_CRIT, r->connection->log, ngx_errno,
2002-12-15 14:25:09 +08:00
"%s is not regular file", r->file.name.data);
if (ngx_close_file(r->file.fd) == NGX_FILE_ERROR)
2003-05-15 01:13:13 +08:00
ngx_log_error(NGX_LOG_ALERT, r->connection->log, ngx_errno,
2002-12-15 14:25:09 +08:00
ngx_close_file_n " %s failed", r->file.name.data);
2002-09-11 23:18:33 +08:00
2002-12-15 14:25:09 +08:00
return NGX_HTTP_NOT_FOUND;
2002-08-20 22:48:28 +08:00
}
2002-12-15 14:25:09 +08:00
#endif
r->headers_out.status = NGX_HTTP_OK;
2002-12-15 14:25:09 +08:00
r->headers_out.content_length = ngx_file_size(r->file.info);
r->headers_out.last_modified_time = ngx_file_mtime(r->file.info);
2002-08-16 01:20:26 +08:00
2002-12-11 02:05:12 +08:00
ngx_test_null(r->headers_out.content_type,
ngx_push_table(r->headers_out.headers),
NGX_HTTP_INTERNAL_SERVER_ERROR);
2002-12-15 14:25:09 +08:00
2003-05-27 20:18:54 +08:00
r->headers_out.content_type->key.len = 0;
r->headers_out.content_type->key.data = NULL;
r->headers_out.content_type->value.len = 0;
r->headers_out.content_type->value.data = NULL;
clcf = ngx_http_get_module_loc_conf(r, ngx_http_core_module);
2002-12-11 02:05:12 +08:00
if (r->exten.len) {
2003-05-15 01:13:13 +08:00
ngx_http_types_hash_key(key, r->exten);
2003-05-27 20:18:54 +08:00
type = (ngx_http_type_t *) clcf->types[key].elts;
for (i = 0; i < clcf->types[key].nelts; i++) {
2003-05-15 01:13:13 +08:00
if (r->exten.len != type[i].exten.len) {
continue;
}
if (ngx_strcasecmp(r->exten.data, type[i].exten.data) == 0) {
r->headers_out.content_type->value.len = type[i].type.len;
r->headers_out.content_type->value.data = type[i].type.data;
2003-05-27 20:18:54 +08:00
break;
2003-05-15 01:13:13 +08:00
}
2002-12-11 02:05:12 +08:00
}
2003-05-15 01:13:13 +08:00
}
2002-09-16 23:01:44 +08:00
2003-05-15 01:13:13 +08:00
if (r->headers_out.content_type->value.len == 0) {
2003-05-27 20:18:54 +08:00
r->headers_out.content_type->value.len = clcf->default_type.len;
r->headers_out.content_type->value.data = clcf->default_type.data;
2002-09-16 23:01:44 +08:00
}
2002-08-20 22:48:28 +08:00
2003-05-15 01:13:13 +08:00
/* we need to allocate all before the header would be sent */
2002-09-02 22:48:24 +08:00
ngx_test_null(h, ngx_pcalloc(r->pool, sizeof(ngx_hunk_t)),
NGX_HTTP_INTERNAL_SERVER_ERROR);
ngx_test_null(h->file, ngx_pcalloc(r->pool, sizeof(ngx_file_t)),
2002-08-16 01:20:26 +08:00
NGX_HTTP_INTERNAL_SERVER_ERROR);
2003-05-27 20:18:54 +08:00
rc = ngx_http_send_header(r);
if (r->header_only) {
if (rc == NGX_AGAIN) {
ngx_http_set_write_handler(r);
} else {
ngx_http_finalize_request(r, 0);
}
2003-05-14 00:02:32 +08:00
return NGX_OK;
2003-05-27 20:18:54 +08:00
}
2002-08-16 01:20:26 +08:00
2003-02-12 00:42:23 +08:00
2002-12-15 14:25:09 +08:00
h->type = NGX_HUNK_FILE|NGX_HUNK_LAST;
2003-03-12 04:38:13 +08:00
h->file_pos = 0;
h->file_last = ngx_file_size(r->file.info);
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
h->file->fd = r->file.fd;
h->file->log = r->connection->log;
2002-08-16 01:20:26 +08:00
2002-12-15 14:25:09 +08:00
rc = ngx_http_output_filter(r, h);
2002-08-16 01:20:26 +08:00
2003-05-14 00:02:32 +08:00
if (r->main == NULL) {
if (rc == NGX_AGAIN) {
ngx_http_set_write_handler(r);
2003-02-12 00:42:23 +08:00
2003-05-14 00:02:32 +08:00
} else {
ngx_http_finalize_request(r, 0);
2003-02-12 00:42:23 +08:00
}
}
2003-05-14 00:02:32 +08:00
return NGX_OK;
2002-08-16 01:20:26 +08:00
}