summaryrefslogtreecommitdiff
path: root/uhttpd.h
blob: c755df6a70bf0be74f2cfffb85a2fadf306024df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
/*
 * uhttpd - Tiny single-threaded httpd
 *
 *   Copyright (C) 2010-2013 Jo-Philipp Wich <xm@subsignal.org>
 *   Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef __UHTTPD_H
#define __UHTTPD_H

#include <netinet/in.h>
#include <limits.h>
#include <dirent.h>

#include <libubox/list.h>
#include <libubox/uloop.h>
#include <libubox/ustream.h>
#include <libubox/blob.h>
#include <libubox/utils.h>
#ifdef HAVE_UBUS
#include <libubus.h>
#include <json-c/json.h>
#endif
#ifdef HAVE_UCODE
#include <ucode/vm.h>
#endif
#ifdef HAVE_TLS
#include <libubox/ustream-ssl.h>
#endif

#include "utils.h"

#define UH_LIMIT_CLIENTS	64

#define __enum_header(_name, _val) HDR_##_name,
#define __blobmsg_header(_name, _val) [HDR_##_name] = { .name = #_val, .type = BLOBMSG_TYPE_STRING },

struct client;

struct alias {
	struct list_head list;
	char *alias;
	char *path;
};

struct lua_prefix {
	struct list_head list;
	const char *handler;
	const char *prefix;
	void *ctx;
};

#ifdef HAVE_UCODE
struct ucode_prefix {
	struct list_head list;
	const char *handler;
	const char *prefix;
	uc_vm_t ctx;
};
#endif

struct config {
	const char *docroot;
	const char *realm;
	const char *file;
	const char *error_handler;
	const char *cgi_prefix;
	const char *cgi_docroot_path;
	const char *cgi_path;
	const char *ubus_prefix;
	const char *ubus_socket;
	const char *dirlist_charset;
	int no_symlinks;
	int no_dirlists;
	int network_timeout;
	int rfc1918_filter;
	int tls_redirect;
	int tcp_keepalive;
	int max_script_requests;
	int max_connections;
	int http_keepalive;
	int script_timeout;
	int ubus_noauth;
	int ubus_cors;
	int cgi_prefix_len;
	int events_retry;
	struct list_head cgi_alias;
	struct list_head lua_prefix;
#ifdef HAVE_UCODE
	struct list_head ucode_prefix;
#endif
};

struct auth_realm {
	struct list_head list;
	const char *path;
	const char *user;
	const char *pass;
};

enum http_method {
	UH_HTTP_MSG_GET,
	UH_HTTP_MSG_POST,
	UH_HTTP_MSG_HEAD,
	UH_HTTP_MSG_OPTIONS,
	UH_HTTP_MSG_PUT,
	UH_HTTP_MSG_PATCH,
	UH_HTTP_MSG_DELETE,
};

enum http_version {
	UH_HTTP_VER_0_9,
	UH_HTTP_VER_1_0,
	UH_HTTP_VER_1_1,
};

enum http_user_agent {
	UH_UA_UNKNOWN,
	UH_UA_GECKO,
	UH_UA_CHROME,
	UH_UA_SAFARI,
	UH_UA_MSIE,
	UH_UA_KONQUEROR,
	UH_UA_OPERA,
	UH_UA_MSIE_OLD,
	UH_UA_MSIE_NEW,
};

struct http_request {
	enum http_method method;
	enum http_version version;
	enum http_user_agent ua;
	int redirect_status;
	int content_length;
	bool expect_cont;
	bool connection_close;
	bool disable_chunked;
	uint8_t transfer_chunked;
	const struct auth_realm *realm;
};

enum client_state {
	CLIENT_STATE_INIT,
	CLIENT_STATE_HEADER,
	CLIENT_STATE_DATA,
	CLIENT_STATE_DONE,
	CLIENT_STATE_CLOSE,
	CLIENT_STATE_CLEANUP,
};

struct interpreter {
	struct list_head list;
	const char *path;
	const char *ext;
};

struct path_info {
	const char *root;
	const char *phys;
	const char *name;
	const char *info;
	const char *query;
	bool redirected;
	struct stat stat;
	const struct interpreter *ip;
};

struct env_var {
	const char *name;
	const char *value;
};

struct relay {
	struct ustream_fd sfd;
	struct uloop_process proc;
	struct uloop_timeout timeout;
	struct client *cl;

	bool process_done;
	bool error;
	bool skip_data;

	int ret;
	int header_ofs;

	void (*header_cb)(struct relay *r, const char *name, const char *value);
	void (*header_end)(struct relay *r);
	void (*close)(struct relay *r, int ret);
};

struct dispatch_proc {
	struct uloop_timeout timeout;
	struct blob_buf hdr;
	struct uloop_fd wrfd;
	struct relay r;
	int status_code;
	char *status_msg;
};

struct dispatch_handler {
	struct list_head list;
	bool script;

	bool (*check_url)(const char *url);
	bool (*check_path)(struct path_info *pi, const char *url);
	void (*handle_request)(struct client *cl, char *url, struct path_info *pi);
};

#ifdef HAVE_UBUS
struct dispatch_ubus {
	struct ubus_request req;

	struct uloop_timeout timeout;
	struct json_tokener *jstok;
	struct json_object *jsobj;
	struct json_object *jsobj_cur;
	char *url_path;
	int post_len;

	uint32_t obj;
	const char *func;

	struct blob_buf buf;
	bool req_pending;
	bool array;
	int array_idx;
	bool legacy; /* Got legacy request => use legacy reply */

	struct ubus_subscriber sub;
};
#endif

struct dispatch {
	int (*data_send)(struct client *cl, const char *data, int len);
	void (*data_done)(struct client *cl);
	void (*write_cb)(struct client *cl);
	void (*close_fds)(struct client *cl);
	void (*free)(struct client *cl);

	void *req_data;
	void (*req_free)(struct client *cl);

	bool data_blocked;
	bool no_cache;

	union {
		struct {
			struct blob_attr **hdr;
			int fd;
		} file;
		struct dispatch_proc proc;
#ifdef HAVE_UBUS
		struct dispatch_ubus ubus;
#endif
	};
};

struct client {
	struct list_head list;
	int refcount;
	int id;

	struct ustream *us;
	struct ustream_fd sfd;
#ifdef HAVE_TLS
	struct ustream_ssl ssl;
#endif
	struct uloop_timeout timeout;
	int requests;

	enum client_state state;
	bool tls;

	int http_code;
	struct http_request request;
	struct uh_addr srv_addr, peer_addr;

	struct blob_buf hdr;
	struct blob_buf hdr_response;
	struct dispatch dispatch;
};

extern char uh_buf[4096];
extern int n_clients;
extern struct config conf;
extern const char * const http_versions[];
extern const char * const http_methods[];
extern struct dispatch_handler cgi_dispatch;

void uh_index_add(const char *filename);

bool uh_accept_client(int fd, bool tls);

void uh_unblock_listeners(void);
void uh_setup_listeners(void);
int uh_socket_bind(const char *host, const char *port, bool tls);

int uh_first_tls_port(int family);

bool uh_use_chunked(struct client *cl);
void uh_chunk_write(struct client *cl, const void *data, int len);
void uh_chunk_vprintf(struct client *cl, const char *format, va_list arg);

void __printf(2, 3)
uh_chunk_printf(struct client *cl, const char *format, ...);

void uh_chunk_eof(struct client *cl);
void uh_request_done(struct client *cl);

void uh_http_header(struct client *cl, int code, const char *summary);
void __printf(4, 5)
uh_client_error(struct client *cl, int code, const char *summary, const char *fmt, ...);

void uh_handle_request(struct client *cl);
void client_poll_post_data(struct client *cl);
void uh_client_read_cb(struct client *cl);
void uh_client_notify_state(struct client *cl);

void uh_auth_add(const char *path, const char *user, const char *pass);
bool uh_auth_check(struct client *cl, const char *path, const char *auth,
                   char **uptr, char **pptr);

void uh_close_listen_fds(void);
void uh_close_fds(void);

void uh_interpreter_add(const char *ext, const char *path);
void uh_dispatch_add(struct dispatch_handler *d);

void uh_relay_open(struct client *cl, struct relay *r, int fd, int pid);
void uh_relay_close(struct relay *r, int ret);
void uh_relay_free(struct relay *r);
void uh_relay_kill(struct client *cl, struct relay *r);

struct env_var *uh_get_process_vars(struct client *cl, struct path_info *pi);
bool uh_create_process(struct client *cl, struct path_info *pi, char *url,
		       void (*cb)(struct client *cl, struct path_info *pi, char *url));

int uh_plugin_init(const char *name);
void uh_plugin_post_init(void);

int uh_handler_add(const char *file);
int uh_handler_run(struct client *cl, char **url, bool fallback);

struct path_info *uh_path_lookup(struct client *cl, const char *url);

static inline void uh_client_ref(struct client *cl)
{
	cl->refcount++;
}

static inline void uh_client_unref(struct client *cl)
{
	if (--cl->refcount)
		return;

	if (cl->state == CLIENT_STATE_CLEANUP)
		ustream_state_change(cl->us);
}

#endif