1 | /*
|
---|
2 | Unix SMB/CIFS implementation.
|
---|
3 |
|
---|
4 | Copyright (C) Andrew Tridgell 2005
|
---|
5 |
|
---|
6 | This program is free software; you can redistribute it and/or modify
|
---|
7 | it under the terms of the GNU General Public License as published by
|
---|
8 | the Free Software Foundation; either version 3 of the License, or
|
---|
9 | (at your option) any later version.
|
---|
10 |
|
---|
11 | This program is distributed in the hope that it will be useful,
|
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
14 | GNU General Public License for more details.
|
---|
15 |
|
---|
16 | You should have received a copy of the GNU General Public License
|
---|
17 | along with this program. If not, see <http://www.gnu.org/licenses/>.
|
---|
18 | */
|
---|
19 |
|
---|
20 | #ifndef __WEB_SERVER_H__
|
---|
21 | #define __WEB_SERVER_H__
|
---|
22 |
|
---|
23 | #include "smbd/process_model.h"
|
---|
24 |
|
---|
25 | struct websrv_context;
|
---|
26 |
|
---|
27 | struct web_server_data {
|
---|
28 | struct tls_params *tls_params;
|
---|
29 | void (*http_process_input)(struct web_server_data *wdata,
|
---|
30 | struct websrv_context *web);
|
---|
31 | void *private_data;
|
---|
32 | };
|
---|
33 |
|
---|
34 | struct http_header {
|
---|
35 | char *name;
|
---|
36 | char *value;
|
---|
37 | struct http_header *prev, *next;
|
---|
38 | };
|
---|
39 |
|
---|
40 | /*
|
---|
41 | context of one open web connection
|
---|
42 | */
|
---|
43 | struct websrv_context {
|
---|
44 | struct task_server *task;
|
---|
45 | struct stream_connection *conn;
|
---|
46 | struct websrv_request_input {
|
---|
47 | bool tls_detect;
|
---|
48 | bool tls_first_char;
|
---|
49 | uint8_t first_byte;
|
---|
50 | DATA_BLOB partial;
|
---|
51 | bool end_of_headers;
|
---|
52 | char *url;
|
---|
53 | unsigned content_length;
|
---|
54 | bool post_request;
|
---|
55 | struct http_header *headers;
|
---|
56 | } input;
|
---|
57 | struct websrv_request_output {
|
---|
58 | bool output_pending;
|
---|
59 | DATA_BLOB content;
|
---|
60 | bool headers_sent;
|
---|
61 | unsigned nsent;
|
---|
62 | } output;
|
---|
63 | struct session_data *session;
|
---|
64 | };
|
---|
65 |
|
---|
66 | bool wsgi_initialize(struct web_server_data *wdata);
|
---|
67 | void http_error(struct websrv_context *web, const char *status, const char *info);
|
---|
68 | void websrv_output_headers(struct websrv_context *web, const char *status, struct http_header *headers);
|
---|
69 | void websrv_output(struct websrv_context *web, void *data, size_t length);
|
---|
70 | NTSTATUS http_parse_header(struct websrv_context *web, const char *line);
|
---|
71 |
|
---|
72 | #endif /* __WEB_SERVER_H__ */
|
---|