clean up uh_urldecode, null-terminate string
[project/uhttpd.git] / uhttpd.h
1 /*
2  * uhttpd - Tiny single-threaded httpd - Main header
3  *
4  *   Copyright (C) 2010-2012 Jo-Philipp Wich <xm@subsignal.org>
5  *   Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
6  *
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  */
19
20 #ifndef __UHTTPD_H
21 #define __UHTTPD_H
22
23 #include <netinet/in.h>
24 #include <limits.h>
25 #include <dirent.h>
26
27 #include <libubox/list.h>
28 #include <libubox/uloop.h>
29 #include <libubox/ustream.h>
30 #include <libubox/blob.h>
31
32 #include "utils.h"
33
34 #define UH_LIMIT_CLIENTS        64
35 #define UH_LIMIT_HEADERS        64
36 #define UH_LIMIT_MSGHEAD        4096
37
38 struct config {
39         char docroot[PATH_MAX];
40         char *realm;
41         char *file;
42         char *error_handler;
43         int no_symlinks;
44         int no_dirlists;
45         int network_timeout;
46         int rfc1918_filter;
47         int tcp_keepalive;
48         int max_requests;
49         int http_keepalive;
50 };
51
52 struct auth_realm {
53         struct list_head list;
54         char path[PATH_MAX];
55         char user[32];
56         char pass[128];
57 };
58
59 enum http_method {
60         UH_HTTP_MSG_GET,
61         UH_HTTP_MSG_POST,
62         UH_HTTP_MSG_HEAD,
63 };
64
65 enum http_version {
66         UH_HTTP_VER_0_9,
67         UH_HTTP_VER_1_0,
68         UH_HTTP_VER_1_1,
69 };
70
71 struct http_request {
72         enum http_method method;
73         enum http_version version;
74         int redirect_status;
75         char *url;
76         struct auth_realm *realm;
77 };
78
79 struct http_response {
80         int statuscode;
81         char *statusmsg;
82         char *headers[UH_LIMIT_HEADERS];
83 };
84
85 enum client_state {
86         CLIENT_STATE_INIT,
87         CLIENT_STATE_HEADER,
88         CLIENT_STATE_DATA,
89         CLIENT_STATE_DONE,
90         CLIENT_STATE_CLOSE,
91 };
92
93 struct client {
94         struct list_head list;
95         int id;
96
97         struct ustream *us;
98         struct ustream_fd sfd;
99 #ifdef HAVE_TLS
100         struct ustream_ssl stream_ssl;
101 #endif
102         struct uloop_fd rpipe;
103         struct uloop_fd wpipe;
104         struct uloop_process proc;
105         struct uloop_timeout timeout;
106         bool (*cb)(struct client *);
107         void *priv;
108
109         enum client_state state;
110
111         struct http_request request;
112         struct http_response response;
113         struct sockaddr_in6 servaddr;
114         struct sockaddr_in6 peeraddr;
115
116         struct blob_buf hdr;
117
118         void (*dispatch_write_cb)(struct client *cl);
119         void (*dispatch_free)(struct client *cl);
120
121         union {
122                 struct {
123                         struct blob_attr **hdr;
124                         int fd;
125                 } file;
126         } data;
127 };
128
129 extern int n_clients;
130 extern struct config conf;
131
132 void uh_index_add(const char *filename);
133
134 void uh_accept_client(int fd);
135
136 void uh_unblock_listeners(void);
137 void uh_setup_listeners(void);
138 int uh_socket_bind(const char *host, const char *port, bool tls);
139
140 bool uh_use_chunked(struct client *cl);
141 void uh_chunk_write(struct client *cl, const void *data, int len);
142 void uh_chunk_vprintf(struct client *cl, const char *format, va_list arg);
143
144 void __printf(2, 3)
145 uh_chunk_printf(struct client *cl, const char *format, ...);
146
147 void uh_chunk_eof(struct client *cl);
148 void uh_request_done(struct client *cl);
149
150 void uh_http_header(struct client *cl, int code, const char *summary);
151 void __printf(4, 5)
152 uh_client_error(struct client *cl, int code, const char *summary, const char *fmt, ...);
153
154 void uh_handle_file_request(struct client *cl);
155
156 void uh_auth_add(const char *path, const char *user, const char *pass);
157
158 #endif