uhttpd: add basic auth infrastructure
[project/luci.git] / contrib / package / uhttpd / src / uhttpd.h
1 /*
2  * uhttpd - Tiny non-forking httpd - Main header
3  *
4  *   Copyright (C) 2010 Jo-Philipp Wich <xm@subsignal.org>
5  *
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  */
18
19 #ifndef _UHTTPD_
20
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <string.h>
24 #include <unistd.h>
25 #include <signal.h>
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <sys/select.h>
29 #include <netinet/in.h>
30 #include <arpa/inet.h>
31 #include <linux/limits.h>
32 #include <netdb.h>
33 #include <ctype.h>
34
35 #ifdef HAVE_TLS
36 #include <openssl/ssl.h>
37 #endif
38
39
40 #define UH_LIMIT_MSGHEAD        4096
41 #define UH_LIMIT_HEADERS        64
42
43 #define UH_LIMIT_LISTENERS      16
44 #define UH_LIMIT_CLIENTS        64
45 #define UH_LIMIT_AUTHREALMS     8
46
47 #define UH_HTTP_MSG_GET         0
48 #define UH_HTTP_MSG_HEAD        1
49 #define UH_HTTP_MSG_POST        2
50
51
52 struct config {
53         char docroot[PATH_MAX];
54 #ifdef HAVE_CGI
55         char *cgi_prefix;
56 #endif
57 #ifdef HAVE_LUA
58         char *lua_prefix;
59         char *lua_handler;
60 #endif
61 #ifdef HAVE_TLS
62         char *cert;
63         char *key;
64         SSL_CTX *tls;
65 #endif
66 };
67
68 struct listener {
69         int socket;
70         struct sockaddr_in6 addr;
71         struct config *conf;
72 #ifdef HAVE_TLS
73         SSL_CTX *tls;
74 #endif
75 };
76
77 struct client {
78         int socket;
79         int peeklen;
80         char peekbuf[UH_LIMIT_MSGHEAD];
81         struct listener *server;
82         struct sockaddr_in6 servaddr;
83         struct sockaddr_in6 peeraddr;
84 #ifdef HAVE_TLS
85         SSL *tls;
86 #endif
87 };
88
89 struct auth_realm {
90         char path[PATH_MAX];
91         char realm[128];
92         char user[32];
93         char pass[128];
94 };
95
96 struct http_request {
97         int     method;
98         float version;
99         char *url;
100         char *headers[UH_LIMIT_HEADERS];
101         struct auth_realm *realm;
102 };
103
104 struct http_response {
105         int statuscode;
106         char *statusmsg;
107         char *headers[UH_LIMIT_HEADERS];
108 };
109
110 #endif
111