[core] make server.max-request-size scopeable (fixes #1901)
[lighttpd.git] / src / base.h
blob77bc44ed8068832ea72841ec5f36241303d79c10
1 #ifndef _BASE_H_
2 #define _BASE_H_
3 #include "first.h"
5 #include "settings.h"
7 #include <sys/types.h>
8 #include <sys/time.h>
9 #include <sys/stat.h>
11 #include <limits.h>
13 #ifdef HAVE_STDINT_H
14 # include <stdint.h>
15 #endif
17 #ifdef HAVE_INTTYPES_H
18 # include <inttypes.h>
19 #endif
21 #include "buffer.h"
22 #include "array.h"
23 #include "chunk.h"
24 #include "keyvalue.h"
25 #include "fdevent.h"
26 #include "sys-socket.h"
27 #include "splaytree.h"
28 #include "etag.h"
31 #if defined HAVE_LIBSSL && defined HAVE_OPENSSL_SSL_H
32 # define USE_OPENSSL
33 # include <openssl/opensslconf.h>
34 # ifndef USE_OPENSSL_KERBEROS
35 # ifndef OPENSSL_NO_KRB5
36 # define OPENSSL_NO_KRB5
37 # endif
38 # endif
39 # include <openssl/ssl.h>
40 # if ! defined OPENSSL_NO_TLSEXT && ! defined SSL_CTRL_SET_TLSEXT_HOSTNAME
41 # define OPENSSL_NO_TLSEXT
42 # endif
43 #endif
45 #ifdef HAVE_FAM_H
46 # include <fam.h>
47 #endif
49 #ifndef O_BINARY
50 # define O_BINARY 0
51 #endif
53 #ifndef O_LARGEFILE
54 # define O_LARGEFILE 0
55 #endif
57 #ifndef SIZE_MAX
58 # ifdef SIZE_T_MAX
59 # define SIZE_MAX SIZE_T_MAX
60 # else
61 # define SIZE_MAX ((size_t)~0)
62 # endif
63 #endif
65 #ifndef SSIZE_MAX
66 # define SSIZE_MAX ((size_t)~0 >> 1)
67 #endif
69 #ifdef __APPLE__
70 #include <crt_externs.h>
71 #define environ (* _NSGetEnviron())
72 #else
73 extern char **environ;
74 #endif
76 /* for solaris 2.5 and NetBSD 1.3.x */
77 #ifndef HAVE_SOCKLEN_T
78 typedef int socklen_t;
79 #endif
81 /* solaris and NetBSD 1.3.x again */
82 #if (!defined(HAVE_STDINT_H)) && (!defined(HAVE_INTTYPES_H)) && (!defined(uint32_t))
83 # define uint32_t u_int32_t
84 #endif
87 #ifndef SHUT_WR
88 # define SHUT_WR 1
89 #endif
91 typedef enum { T_CONFIG_UNSET,
92 T_CONFIG_STRING,
93 T_CONFIG_SHORT,
94 T_CONFIG_INT,
95 T_CONFIG_BOOLEAN,
96 T_CONFIG_ARRAY,
97 T_CONFIG_LOCAL,
98 T_CONFIG_DEPRECATED,
99 T_CONFIG_UNSUPPORTED
100 } config_values_type_t;
102 typedef enum { T_CONFIG_SCOPE_UNSET,
103 T_CONFIG_SCOPE_SERVER,
104 T_CONFIG_SCOPE_CONNECTION
105 } config_scope_type_t;
107 typedef struct {
108 const char *key;
109 void *destination;
111 config_values_type_t type;
112 config_scope_type_t scope;
113 } config_values_t;
115 typedef enum { DIRECT, EXTERNAL } connection_type;
117 typedef struct {
118 char *key;
119 connection_type type;
120 char *value;
121 } request_handler;
123 typedef struct {
124 char *key;
125 char *host;
126 unsigned short port;
127 int used;
128 short factor;
129 } fcgi_connections;
132 typedef union {
133 #ifdef HAVE_IPV6
134 struct sockaddr_in6 ipv6;
135 #endif
136 struct sockaddr_in ipv4;
137 #ifdef HAVE_SYS_UN_H
138 struct sockaddr_un un;
139 #endif
140 struct sockaddr plain;
141 } sock_addr;
143 /* fcgi_response_header contains ... */
144 #define HTTP_STATUS BV(0)
145 #define HTTP_CONNECTION BV(1)
146 #define HTTP_CONTENT_LENGTH BV(2)
147 #define HTTP_DATE BV(3)
148 #define HTTP_LOCATION BV(4)
150 typedef struct {
151 /** HEADER */
152 /* the request-line */
153 buffer *request;
154 buffer *uri;
156 buffer *orig_uri;
158 http_method_t http_method;
159 http_version_t http_version;
161 buffer *request_line;
163 /* strings to the header */
164 buffer *http_host; /* not alloced */
165 const char *http_range;
166 const char *http_content_type;
167 const char *http_if_modified_since;
168 const char *http_if_none_match;
170 array *headers;
172 /* CONTENT */
173 size_t content_length; /* returned by strtoul() */
175 /* internal representation */
176 int accept_encoding;
178 /* internal */
179 buffer *pathinfo;
180 } request;
182 typedef struct {
183 off_t content_length;
184 int keep_alive; /* used by the subrequests in proxy, cgi and fcgi to say the subrequest was keep-alive or not */
186 array *headers;
188 enum {
189 HTTP_TRANSFER_ENCODING_IDENTITY, HTTP_TRANSFER_ENCODING_CHUNKED
190 } transfer_encoding;
191 } response;
193 typedef struct {
194 buffer *scheme; /* scheme without colon or slashes ( "http" or "https" ) */
196 /* authority with optional portnumber ("site.name" or "site.name:8080" ) NOTE: without "username:password@" */
197 buffer *authority;
199 /* path including leading slash ("/" or "/index.html") - urldecoded, and sanitized ( buffer_path_simplify() && buffer_urldecode_path() ) */
200 buffer *path;
201 buffer *path_raw; /* raw path, as sent from client. no urldecoding or path simplifying */
202 buffer *query; /* querystring ( everything after "?", ie: in "/index.php?foo=1", query is "foo=1" ) */
203 } request_uri;
205 typedef struct {
206 buffer *path;
207 buffer *basedir; /* path = "(basedir)(.*)" */
209 buffer *doc_root; /* path = doc_root + rel_path */
210 buffer *rel_path;
212 buffer *etag;
213 } physical;
215 typedef struct {
216 buffer *name;
217 buffer *etag;
219 struct stat st;
221 time_t stat_ts;
223 #ifdef HAVE_LSTAT
224 char is_symlink;
225 #endif
227 #ifdef HAVE_FAM_H
228 int dir_version;
229 #endif
231 buffer *content_type;
232 } stat_cache_entry;
234 typedef struct {
235 splay_tree *files; /* the nodes of the tree are stat_cache_entry's */
237 buffer *dir_name; /* for building the dirname from the filename */
238 #ifdef HAVE_FAM_H
239 splay_tree *dirs; /* the nodes of the tree are fam_dir_entry */
241 FAMConnection fam;
242 int fam_fcce_ndx;
243 #endif
244 buffer *hash_key; /* temp-store for the hash-key */
245 } stat_cache;
247 typedef struct {
248 array *mimetypes;
250 /* virtual-servers */
251 buffer *document_root;
252 buffer *server_name;
253 buffer *error_handler;
254 buffer *error_handler_404;
255 buffer *server_tag;
256 buffer *dirlist_encoding;
257 buffer *errorfile_prefix;
259 unsigned short max_keep_alive_requests;
260 unsigned short max_keep_alive_idle;
261 unsigned short max_read_idle;
262 unsigned short max_write_idle;
263 unsigned short use_xattr;
264 unsigned short follow_symlink;
265 unsigned short range_requests;
266 unsigned short stream_request_body;
267 unsigned short stream_response_body;
269 /* debug */
271 unsigned short log_file_not_found;
272 unsigned short log_request_header;
273 unsigned short log_request_handling;
274 unsigned short log_response_header;
275 unsigned short log_condition_handling;
276 unsigned short log_ssl_noise;
277 unsigned short log_timeouts;
280 /* server wide */
281 buffer *ssl_pemfile;
282 buffer *ssl_ca_file;
283 buffer *ssl_cipher_list;
284 buffer *ssl_dh_file;
285 buffer *ssl_ec_curve;
286 unsigned short ssl_honor_cipher_order; /* determine SSL cipher in server-preferred order, not client-order */
287 unsigned short ssl_empty_fragments; /* whether to not set SSL_OP_DONT_INSERT_EMPTY_FRAGMENTS */
288 unsigned short ssl_use_sslv2;
289 unsigned short ssl_use_sslv3;
290 unsigned short ssl_verifyclient;
291 unsigned short ssl_verifyclient_enforce;
292 unsigned short ssl_verifyclient_depth;
293 buffer *ssl_verifyclient_username;
294 unsigned short ssl_verifyclient_export_cert;
295 unsigned short ssl_disable_client_renegotiation;
297 unsigned short use_ipv6, set_v6only; /* set_v6only is only a temporary option */
298 unsigned short defer_accept;
299 unsigned short ssl_enabled; /* only interesting for setting up listening sockets. don't use at runtime */
300 unsigned short allow_http11;
301 unsigned short etag_use_inode;
302 unsigned short etag_use_mtime;
303 unsigned short etag_use_size;
304 unsigned short force_lowercase_filenames; /* if the FS is case-insensitive, force all files to lower-case */
305 unsigned int http_parseopts;
306 unsigned int max_request_size;
307 int listen_backlog;
309 unsigned short kbytes_per_second; /* connection kb/s limit */
311 /* configside */
312 unsigned short global_kbytes_per_second; /* */
314 off_t global_bytes_per_second_cnt;
315 /* server-wide traffic-shaper
317 * each context has the counter which is inited once
318 * a second by the global_kbytes_per_second config-var
320 * as soon as global_kbytes_per_second gets below 0
321 * the connected conns are "offline" a little bit
323 * the problem:
324 * we somehow have to loose our "we are writable" signal
325 * on the way.
328 off_t *global_bytes_per_second_cnt_ptr; /* */
330 #if defined(__FreeBSD__) || defined(__NetBSD__) \
331 || defined(__OpenBSD__) || defined(__DragonflyBSD__)
332 buffer *bsd_accept_filter;
333 #endif
335 #ifdef USE_OPENSSL
336 SSL_CTX *ssl_ctx; /* not patched */
337 /* SNI per host: with COMP_SERVER_SOCKET, COMP_HTTP_SCHEME, COMP_HTTP_HOST */
338 EVP_PKEY *ssl_pemfile_pkey;
339 X509 *ssl_pemfile_x509;
340 STACK_OF(X509_NAME) *ssl_ca_file_cert_names;
341 #endif
342 } specific_config;
344 /* the order of the items should be the same as they are processed
345 * read before write as we use this later */
346 typedef enum {
347 CON_STATE_CONNECT,
348 CON_STATE_REQUEST_START,
349 CON_STATE_READ,
350 CON_STATE_REQUEST_END,
351 CON_STATE_READ_POST,
352 CON_STATE_HANDLE_REQUEST,
353 CON_STATE_RESPONSE_START,
354 CON_STATE_WRITE,
355 CON_STATE_RESPONSE_END,
356 CON_STATE_ERROR,
357 CON_STATE_CLOSE
358 } connection_state_t;
360 typedef enum {
361 /* condition not active at the moment because itself or some
362 * pre-condition depends on data not available yet
364 COND_RESULT_UNSET,
366 /* special "unset" for branches not selected due to pre-conditions
367 * not met (but pre-conditions are not "unset" anymore)
369 COND_RESULT_SKIP,
371 /* actually evaluated the condition itself */
372 COND_RESULT_FALSE, /* not active */
373 COND_RESULT_TRUE, /* active */
374 } cond_result_t;
376 typedef struct {
377 /* current result (with preconditions) */
378 cond_result_t result;
379 /* result without preconditions (must never be "skip") */
380 cond_result_t local_result;
381 int patterncount;
382 int matches[3 * 10];
383 buffer *comp_value; /* just a pointer */
384 } cond_cache_t;
386 typedef struct {
387 connection_state_t state;
389 /* timestamps */
390 time_t read_idle_ts;
391 time_t close_timeout_ts;
392 time_t write_request_ts;
394 time_t connection_start;
395 time_t request_start;
397 struct timeval start_tv;
399 size_t request_count; /* number of requests handled in this connection */
400 size_t loops_per_request; /* to catch endless loops in a single request
402 * used by mod_rewrite, mod_fastcgi, ... and others
403 * this is self-protection
406 int fd; /* the FD for this connection */
407 int fde_ndx; /* index for the fdevent-handler */
408 int ndx; /* reverse mapping to server->connection[ndx] */
410 /* fd states */
411 int is_readable;
412 int is_writable;
414 int keep_alive; /* only request.c can enable it, all other just disable */
415 int keep_alive_idle; /* remember max_keep_alive_idle from config */
417 int file_started;
418 int file_finished;
420 chunkqueue *write_queue; /* a large queue for low-level write ( HTTP response ) [ file, mem ] */
421 chunkqueue *read_queue; /* a small queue for low-level read ( HTTP request ) [ mem ] */
422 chunkqueue *request_content_queue; /* takes request-content into tempfile if necessary [ tempfile, mem ]*/
424 int traffic_limit_reached;
426 off_t bytes_written; /* used by mod_accesslog, mod_rrd */
427 off_t bytes_written_cur_second; /* used by mod_accesslog, mod_rrd */
428 off_t bytes_read; /* used by mod_accesslog, mod_rrd */
429 off_t bytes_header;
431 int http_status;
433 sock_addr dst_addr;
434 buffer *dst_addr_buf;
436 /* request */
437 buffer *parse_request;
438 unsigned int parsed_response; /* bitfield which contains the important header-fields of the parsed response header */
440 request request;
441 request_uri uri;
442 physical physical;
443 response response;
445 size_t header_len;
447 array *environment; /* used to pass lighttpd internal stuff to the FastCGI/CGI apps, setenv does that */
449 /* response */
450 int got_response;
452 int in_joblist;
454 connection_type mode;
456 void **plugin_ctx; /* plugin connection specific config */
458 specific_config conf; /* global connection specific config */
459 cond_cache_t *cond_cache;
461 buffer *server_name;
463 /* error-handler */
464 int error_handler_saved_status;
465 http_method_t error_handler_saved_method;
467 struct server_socket *srv_socket; /* reference to the server-socket */
469 #ifdef USE_OPENSSL
470 SSL *ssl;
471 # ifndef OPENSSL_NO_TLSEXT
472 buffer *tlsext_server_name;
473 # endif
474 unsigned int renegotiations; /* count of SSL_CB_HANDSHAKE_START */
475 #endif
476 /* etag handling */
477 etag_flags_t etag_flags;
479 int conditional_is_valid[COMP_LAST_ELEMENT];
480 } connection;
482 typedef struct {
483 connection **ptr;
484 size_t size;
485 size_t used;
486 } connections;
489 #ifdef HAVE_IPV6
490 typedef struct {
491 int family;
492 union {
493 struct in6_addr ipv6;
494 struct in_addr ipv4;
495 } addr;
496 char b2[INET6_ADDRSTRLEN + 1];
497 time_t ts;
498 } inet_ntop_cache_type;
499 #endif
502 typedef struct {
503 buffer *uri;
504 time_t mtime;
505 int http_status;
506 } realpath_cache_type;
508 typedef struct {
509 time_t mtime; /* the key */
510 buffer *str; /* a buffer for the string represenation */
511 } mtime_cache_type;
513 typedef struct {
514 void *ptr;
515 size_t used;
516 size_t size;
517 } buffer_plugin;
519 typedef struct {
520 unsigned short port;
521 buffer *bindhost;
523 buffer *errorlog_file;
524 unsigned short errorlog_use_syslog;
525 buffer *breakagelog_file;
527 unsigned short dont_daemonize;
528 unsigned short preflight_check;
529 buffer *changeroot;
530 buffer *username;
531 buffer *groupname;
533 buffer *pid_file;
535 buffer *event_handler;
537 buffer *modules_dir;
538 buffer *network_backend;
539 array *modules;
540 array *upload_tempdirs;
541 unsigned int upload_temp_file_size;
543 unsigned short max_worker;
544 unsigned short max_fds;
545 unsigned short max_conns;
547 unsigned short log_request_header_on_error;
548 unsigned short log_state_handling;
550 enum { STAT_CACHE_ENGINE_UNSET,
551 STAT_CACHE_ENGINE_NONE,
552 STAT_CACHE_ENGINE_SIMPLE
553 #ifdef HAVE_FAM_H
554 , STAT_CACHE_ENGINE_FAM
555 #endif
556 } stat_cache_engine;
557 unsigned short enable_cores;
558 unsigned short reject_expect_100_with_417;
559 buffer *xattr_name;
561 unsigned short http_header_strict;
562 unsigned short http_host_strict;
563 unsigned short http_host_normalize;
564 } server_config;
566 typedef struct server_socket {
567 sock_addr addr;
568 int fd;
569 int fde_ndx;
571 unsigned short is_ssl;
573 buffer *srv_token;
575 #ifdef USE_OPENSSL
576 SSL_CTX *ssl_ctx;
577 #endif
578 } server_socket;
580 typedef struct {
581 server_socket **ptr;
583 size_t size;
584 size_t used;
585 } server_socket_array;
587 typedef struct server {
588 server_socket_array srv_sockets;
590 /* the errorlog */
591 int errorlog_fd;
592 enum { ERRORLOG_FILE, ERRORLOG_FD, ERRORLOG_SYSLOG, ERRORLOG_PIPE } errorlog_mode;
593 buffer *errorlog_buf;
595 fdevents *ev, *ev_ins;
597 buffer_plugin plugins;
598 void *plugin_slots;
600 /* counters */
601 int con_opened;
602 int con_read;
603 int con_written;
604 int con_closed;
606 int ssl_is_init;
608 int max_fds; /* max possible fds */
609 int cur_fds; /* currently used fds */
610 int want_fds; /* waiting fds */
611 int sockets_disabled;
613 size_t max_conns;
615 /* buffers */
616 buffer *parse_full_path;
617 buffer *response_header;
618 buffer *response_range;
619 buffer *tmp_buf;
621 buffer *tmp_chunk_len;
623 buffer *empty_string; /* is necessary for cond_match */
625 buffer *cond_check_buf;
627 /* caches */
628 #ifdef HAVE_IPV6
629 inet_ntop_cache_type inet_ntop_cache[INET_NTOP_CACHE_MAX];
630 #endif
631 mtime_cache_type mtime_cache[FILE_CACHE_MAX];
633 array *split_vals;
635 /* Timestamps */
636 time_t cur_ts;
637 time_t last_generated_date_ts;
638 time_t last_generated_debug_ts;
639 time_t startup_ts;
641 char entropy[8]; /* from /dev/[u]random if possible, otherwise rand() */
642 char is_real_entropy; /* whether entropy is from /dev/[u]random */
644 buffer *ts_debug_str;
645 buffer *ts_date_str;
647 /* config-file */
648 array *config_touched;
650 array *config_context;
651 specific_config **config_storage;
653 server_config srvconf;
655 short int config_deprecated;
656 short int config_unsupported;
658 connections *conns;
659 connections *joblist;
660 connections *fdwaitqueue;
662 stat_cache *stat_cache;
665 * The status array can carry all the status information you want
666 * the key to the array is <module-prefix>.<name>
667 * and the values are counters
669 * example:
670 * fastcgi.backends = 10
671 * fastcgi.active-backends = 6
672 * fastcgi.backend.<key>.load = 24
673 * fastcgi.backend.<key>....
675 * fastcgi.backend.<key>.disconnects = ...
677 array *status;
679 fdevent_handler_t event_handler;
681 int (* network_backend_write)(struct server *srv, connection *con, int fd, chunkqueue *cq, off_t max_bytes);
682 #ifdef USE_OPENSSL
683 int (* network_ssl_backend_write)(struct server *srv, connection *con, SSL *ssl, chunkqueue *cq, off_t max_bytes);
684 #endif
686 uid_t uid;
687 gid_t gid;
688 } server;
691 #endif