Blob


1 /*
2 * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #ifndef GMID_H
18 #define GMID_H
20 #include "config.h"
22 #include <sys/socket.h>
23 #include <sys/types.h>
25 #include <arpa/inet.h>
26 #include <netinet/in.h>
28 #include <dirent.h>
29 #include <signal.h>
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <time.h>
33 #include <tls.h>
34 #include <unistd.h>
36 #include <openssl/x509.h>
38 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
40 #define SUCCESS 20
41 #define TEMP_REDIRECT 30
42 #define TEMP_FAILURE 40
43 #define CGI_ERROR 42
44 #define NOT_FOUND 51
45 #define PROXY_REFUSED 53
46 #define BAD_REQUEST 59
47 #define CLIENT_CERT_REQ 60
48 #define CERT_NOT_AUTH 61
50 #define MAX_USERS 64
52 #define HOSTSLEN 64
53 #define LOCLEN 32
55 /* maximum hostname and label length, +1 for the NUL-terminator */
56 #define DOMAIN_NAME_LEN (253+1)
57 #define LABEL_LEN (63+1)
59 struct location {
60 const char *match;
61 const char *lang;
62 const char *default_mime;
63 const char *index;
64 int auto_index; /* 0 auto, -1 off, 1 on */
65 int block_code;
66 const char *block_fmt;
67 int strip;
68 X509_STORE *reqca;
69 int disable_log;
70 };
72 struct vhost {
73 const char *domain;
74 const char *cert;
75 const char *key;
76 const char *dir;
77 const char *cgi;
78 const char *entrypoint;
79 int dirfd;
81 /* the first location rule is always '*' and holds the default
82 * settings for the vhost, from locations[1] onwards there are
83 * the "real" location rules specified in the configuration. */
84 struct location locations[LOCLEN];
85 };
87 extern struct vhost hosts[HOSTSLEN];
89 struct etm { /* extension to mime */
90 const char *mime;
91 const char *ext;
92 };
94 struct mime {
95 struct etm *t;
96 size_t len;
97 size_t cap;
98 };
100 struct conf {
101 /* from command line */
102 int foreground;
103 int verbose;
105 /* in the config */
106 int port;
107 int ipv6;
108 uint32_t protos;
109 struct mime mime;
110 char *chroot;
111 char *user;
112 int prefork;
113 };
115 extern const char *config_path;
116 extern struct conf conf;
117 extern int exfd, logfd;
119 extern struct imsgbuf logpibuf, logcibuf;
121 extern volatile sig_atomic_t hupped;
123 struct iri {
124 char *schema;
125 char *host;
126 char *port;
127 uint16_t port_no;
128 char *path;
129 char *query;
130 char *fragment;
131 };
133 struct parser {
134 char *iri;
135 struct iri *parsed;
136 const char *err;
137 };
139 struct client;
141 typedef void (*statefn)(int, short, void*);
143 /*
144 * DFA: handle_handshake is the initial state, close_conn the final.
145 * Sometimes we have an enter_* function to handle the state switch.
147 * handle_handshake -> handle_open_conn
148 * handle_handshake -> close_conn // on err
150 * handle_open_conn -> handle_cgi_reply // via open_file/dir/...
151 * handle_open_conn -> handle_dirlist // ...same
152 * handle_open_conn -> send_file // ...same
153 * handle_open_conn -> start_reply // on error
155 * handle_cgi_reply -> handle_cgi // after logging the CGI reply
156 * handle_cgi_reply -> start_reply // on error
158 * handle_cgi -> close_conn
160 * handle_dirlist -> send_directory_listing
161 * handle_dirlist -> close_conn // on error
163 * send_directory_listing -> close_conn
165 * send_file -> close_conn
166 */
167 struct client {
168 struct tls *ctx;
169 char req[GEMINI_URL_LEN];
170 struct iri iri;
171 char domain[DOMAIN_NAME_LEN];
172 statefn next;
173 int code;
174 const char *meta;
175 int fd, pfd;
176 DIR *dir;
177 char sbuf[1024];
178 ssize_t len, off;
179 struct sockaddr_storage addr;
180 struct vhost *host; /* host she's talking to */
181 };
183 enum {
184 FILE_EXISTS,
185 FILE_EXECUTABLE,
186 FILE_DIRECTORY,
187 FILE_MISSING,
188 };
190 /* gmid.c */
191 void sig_handler(int);
192 void mkdirs(const char*);
193 char *data_dir(void);
194 void load_local_cert(const char*, const char*);
195 void load_vhosts(void);
196 int make_socket(int, int);
197 void setup_tls(void);
198 void init_config(void);
199 void free_config(void);
200 void drop_priv(void);
202 /* provided by lex/yacc */
203 extern FILE *yyin;
204 extern int yylineno;
205 extern int yyparse(void);
206 extern int yylex(void);
208 void yyerror(const char*, ...);
209 int parse_portno(const char*);
210 void parse_conf(const char*);
212 /* log.c */
213 void fatal(const char*, ...)
214 __attribute__((format (printf, 1, 2)))
215 __attribute__((__noreturn__));
217 #define LOG_ATTR_FMT __attribute__((format (printf, 2, 3)))
218 void log_err(struct client*, const char*, ...) LOG_ATTR_FMT;
219 void log_warn(struct client*, const char*, ...) LOG_ATTR_FMT;
220 void log_notice(struct client*, const char*, ...) LOG_ATTR_FMT;
221 void log_info(struct client*, const char*, ...) LOG_ATTR_FMT;
222 void log_debug(struct client*, const char*, ...) LOG_ATTR_FMT;
223 void log_request(struct client*, char*, size_t);
224 int logger_main(int, struct imsgbuf*);
226 /* mime.c */
227 void init_mime(struct mime*);
228 void add_mime(struct mime*, const char*, const char*);
229 void load_default_mime(struct mime*);
230 const char *mime(struct vhost*, const char*);
232 /* server.c */
233 const char *vhost_lang(struct vhost*, const char*);
234 const char *vhost_default_mime(struct vhost*, const char*);
235 const char *vhost_index(struct vhost*, const char*);
236 int vhost_auto_index(struct vhost*, const char*);
237 int vhost_block_return(struct vhost*, const char*, int*, const char**);
238 int vhost_strip(struct vhost*, const char*);
239 X509_STORE *vhost_require_ca(struct vhost*, const char*);
240 int vhost_disable_log(struct vhost*, const char*);
241 void mark_nonblock(int);
242 void loop(struct tls*, int, int);
244 /* ex.c */
245 int send_string(int, const char*);
246 int recv_string(int, char**);
247 int send_iri(int, struct iri*);
248 int recv_iri(int, struct iri*);
249 void free_recvd_iri(struct iri*);
250 int send_vhost(int, struct vhost*);
251 int recv_vhost(int, struct vhost**);
252 int send_time(int, time_t);
253 int recv_time(int, time_t*);
254 int send_fd(int, int);
255 int recv_fd(int);
256 int executor_main(void);
258 /* sandbox.c */
259 void sandbox(void);
261 /* utf8.c */
262 int valid_multibyte_utf8(struct parser*);
263 char *utf8_nth(char*, size_t);
265 /* iri.c */
266 int parse_iri(char*, struct iri*, const char**);
267 int trim_req_iri(char*, const char **);
268 int serialize_iri(struct iri*, char*, size_t);
269 char *pct_decode_str(char *);
271 /* puny.c */
272 int puny_decode(const char*, char*, size_t, const char**);
274 /* utils.c */
275 void block_signals(void);
276 void unblock_signals(void);
277 int starts_with(const char*, const char*);
278 int ends_with(const char*, const char*);
279 ssize_t filesize(int);
280 char *absolutify_path(const char*);
281 char *xstrdup(const char*);
282 void gen_certificate(const char*, const char*, const char*);
283 X509_STORE *load_ca(const char*);
284 int validate_against_ca(X509_STORE*, const uint8_t*, size_t);
286 #endif