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 <limits.h>
30 #include <netdb.h>
31 #include <signal.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <time.h>
35 #include <tls.h>
36 #include <unistd.h>
38 #include <openssl/x509.h>
40 #if HAVE_EVENT2
41 # include <event2/event.h>
42 # include <event2/event_compat.h>
43 # include <event2/event_struct.h>
44 # include <event2/buffer.h>
45 # include <event2/buffer_compat.h>
46 # include <event2/bufferevent.h>
47 # include <event2/bufferevent_struct.h>
48 # include <event2/bufferevent_compat.h>
49 #else
50 # include <event.h>
51 #endif
53 #define GMID_STRING "gmid " VERSION
54 #define GMID_VERSION "gmid/" VERSION
56 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
58 #define SUCCESS 20
59 #define TEMP_REDIRECT 30
60 #define TEMP_FAILURE 40
61 #define CGI_ERROR 42
62 #define NOT_FOUND 51
63 #define PROXY_REFUSED 53
64 #define BAD_REQUEST 59
65 #define CLIENT_CERT_REQ 60
66 #define CERT_NOT_AUTH 61
68 /* maximum hostname and label length, +1 for the NUL-terminator */
69 #define DOMAIN_NAME_LEN (253+1)
70 #define LABEL_LEN (63+1)
72 #define FCGI_MAX 32
73 #define PROC_MAX 16
75 struct fcgi {
76 int id;
77 char *path;
78 char *port;
79 char *prog;
80 };
81 extern struct fcgi fcgi[FCGI_MAX];
83 TAILQ_HEAD(lochead, location);
84 struct location {
85 const char *match;
86 const char *lang;
87 const char *default_mime;
88 const char *index;
89 int auto_index; /* 0 auto, -1 off, 1 on */
90 int block_code;
91 const char *block_fmt;
92 int strip;
93 X509_STORE *reqca;
94 int disable_log;
95 int fcgi;
97 const char *dir;
98 int dirfd;
100 TAILQ_ENTRY(location) locations;
101 };
103 TAILQ_HEAD(envhead, envlist);
104 struct envlist {
105 char *name;
106 char *value;
107 TAILQ_ENTRY(envlist) envs;
108 };
110 TAILQ_HEAD(aliashead, alist);
111 struct alist {
112 char *alias;
113 TAILQ_ENTRY(alist) aliases;
114 };
116 extern TAILQ_HEAD(vhosthead, vhost) hosts;
117 struct vhost {
118 const char *domain;
119 const char *cert;
120 const char *key;
121 const char *cgi;
122 const char *entrypoint;
124 TAILQ_ENTRY(vhost) vhosts;
126 /*
127 * the first location rule is always '*' and holds the default
128 * settings for the vhost, then follows the "real" location
129 * rules as specified in the configuration.
130 */
131 struct lochead locations;
133 struct envhead env;
134 struct envhead params;
135 struct aliashead aliases;
136 };
138 struct etm { /* extension to mime */
139 const char *mime;
140 const char *ext;
141 };
143 struct mime {
144 struct etm *t;
145 size_t len;
146 size_t cap;
147 };
149 struct conf {
150 /* from command line */
151 int foreground;
152 int verbose;
154 /* in the config */
155 int port;
156 int ipv6;
157 uint32_t protos;
158 struct mime mime;
159 char *chroot;
160 char *user;
161 int prefork;
162 };
164 extern const char *config_path;
165 extern struct conf conf;
167 extern struct imsgbuf logibuf, exibuf, servibuf[PROC_MAX];
169 extern int servpipes[PROC_MAX];
171 struct iri {
172 char *schema;
173 char *host;
174 char *port;
175 uint16_t port_no;
176 char *path;
177 char *query;
178 char *fragment;
179 };
181 struct parser {
182 char *iri;
183 struct iri *parsed;
184 const char *err;
185 };
187 typedef void (imsg_handlerfn)(struct imsgbuf*, struct imsg*, size_t);
189 enum {
190 REQUEST_UNDECIDED,
191 REQUEST_FILE,
192 REQUEST_DIR,
193 REQUEST_CGI,
194 REQUEST_FCGI,
195 REQUEST_DONE,
196 };
198 #define IS_INTERNAL_REQUEST(x) ((x) != REQUEST_CGI && (x) != REQUEST_FCGI)
200 struct client {
201 uint32_t id;
202 struct tls *ctx;
203 char *req;
204 struct iri iri;
205 char domain[DOMAIN_NAME_LEN];
207 struct bufferevent *bev;
209 int type;
211 struct bufferevent *cgibev;
213 char *header;
215 int code;
216 const char *meta;
217 int fd, pfd;
218 struct dirent **dir;
219 int dirlen, diroff;
221 /* big enough to store STATUS + SPACE + META + CRLF */
222 char sbuf[1029];
223 ssize_t len, off;
225 struct sockaddr_storage addr;
226 struct vhost *host; /* host they're talking to */
227 size_t loc; /* location matched */
229 SPLAY_ENTRY(client) entry;
230 };
231 SPLAY_HEAD(client_tree_id, client);
232 extern struct client_tree_id clients;
234 struct cgireq {
235 char buf[GEMINI_URL_LEN];
237 size_t iri_schema_off;
238 size_t iri_host_off;
239 size_t iri_port_off;
240 size_t iri_path_off;
241 size_t iri_query_off;
242 size_t iri_fragment_off;
243 int iri_portno;
245 char spath[PATH_MAX+1];
246 char relpath[PATH_MAX+1];
247 char addr[NI_MAXHOST+1];
249 /* AFAIK there isn't an upper limit for these two fields. */
250 char subject[64+1];
251 char issuer[64+1];
253 char hash[128+1];
254 char version[8];
255 char cipher[32];
256 int cipher_strength;
257 time_t notbefore;
258 time_t notafter;
260 size_t host_off;
261 size_t loc_off;
262 };
264 enum {
265 FILE_EXISTS,
266 FILE_EXECUTABLE,
267 FILE_DIRECTORY,
268 FILE_MISSING,
269 };
271 enum imsg_type {
272 IMSG_CGI_REQ,
273 IMSG_CGI_RES,
274 IMSG_FCGI_REQ,
275 IMSG_FCGI_FD,
276 IMSG_LOG,
277 IMSG_LOG_REQUEST,
278 IMSG_LOG_TYPE,
279 IMSG_QUIT,
280 };
282 /* gmid.c */
283 char *data_dir(void);
284 void load_local_cert(const char*, const char*);
285 void load_vhosts(void);
286 int make_socket(int, int);
287 void setup_tls(void);
288 void init_config(void);
289 void free_config(void);
290 void drop_priv(void);
292 void yyerror(const char*, ...);
293 void parse_conf(const char*);
294 int cmdline_symset(char *);
296 /* log.c */
297 void fatal(const char*, ...)
298 __attribute__((format (printf, 1, 2)))
299 __attribute__((__noreturn__));
301 #define LOG_ATTR_FMT __attribute__((format (printf, 2, 3)))
302 void log_err(struct client*, const char*, ...) LOG_ATTR_FMT;
303 void log_warn(struct client*, const char*, ...) LOG_ATTR_FMT;
304 void log_notice(struct client*, const char*, ...) LOG_ATTR_FMT;
305 void log_info(struct client*, const char*, ...) LOG_ATTR_FMT;
306 void log_debug(struct client*, const char*, ...) LOG_ATTR_FMT;
307 void log_request(struct client*, char*, size_t);
308 int logger_main(int, struct imsgbuf*);
310 /* mime.c */
311 void init_mime(struct mime*);
312 void add_mime(struct mime*, const char*, const char*);
313 void load_default_mime(struct mime*);
314 const char *mime(struct vhost*, const char*);
316 /* server.c */
317 extern int shutting_down;
318 const char *vhost_lang(struct vhost*, const char*);
319 const char *vhost_default_mime(struct vhost*, const char*);
320 const char *vhost_index(struct vhost*, const char*);
321 int vhost_auto_index(struct vhost*, const char*);
322 int vhost_block_return(struct vhost*, const char*, int*, const char**);
323 int vhost_fastcgi(struct vhost*, const char*);
324 int vhost_dirfd(struct vhost*, const char*, size_t*);
325 int vhost_strip(struct vhost*, const char*);
326 X509_STORE *vhost_require_ca(struct vhost*, const char*);
327 int vhost_disable_log(struct vhost*, const char*);
329 void mark_nonblock(int);
330 void client_write(struct bufferevent *, void *);
331 void start_reply(struct client*, int, const char*);
332 void client_close(struct client *);
333 struct client *try_client_by_id(int);
334 void loop(struct tls*, int, int, struct imsgbuf*);
336 int client_tree_cmp(struct client *, struct client *);
337 SPLAY_PROTOTYPE(client_tree_id, client, entry, client_tree_cmp);
339 /* dirs.c */
340 int scandir_fd(int, struct dirent***, int(*)(const struct dirent*),
341 int(*)(const struct dirent**, const struct dirent**));
342 int select_non_dot(const struct dirent*);
343 int select_non_dotdot(const struct dirent*);
345 /* ex.c */
346 int send_string(int, const char*);
347 int recv_string(int, char**);
348 int send_iri(int, struct iri*);
349 int recv_iri(int, struct iri*);
350 void free_recvd_iri(struct iri*);
351 int send_vhost(int, struct vhost*);
352 int recv_vhost(int, struct vhost**);
353 int send_time(int, time_t);
354 int recv_time(int, time_t*);
355 int send_fd(int, int);
356 int recv_fd(int);
357 int executor_main(struct imsgbuf*);
359 /* fcgi.c */
360 void fcgi_read(struct bufferevent *, void *);
361 void fcgi_write(struct bufferevent *, void *);
362 void fcgi_error(struct bufferevent *, short, void *);
363 void fcgi_req(struct client *);
365 /* sandbox.c */
366 void sandbox_server_process(void);
367 void sandbox_executor_process(void);
368 void sandbox_logger_process(void);
370 /* utf8.c */
371 int valid_multibyte_utf8(struct parser*);
372 char *utf8_nth(char*, size_t);
374 /* iri.c */
375 int parse_iri(char*, struct iri*, const char**);
376 int serialize_iri(struct iri*, char*, size_t);
377 char *pct_decode_str(char *);
379 /* puny.c */
380 int puny_decode(const char*, char*, size_t, const char**);
382 /* utils.c */
383 void block_signals(void);
384 void unblock_signals(void);
385 int starts_with(const char*, const char*);
386 int ends_with(const char*, const char*);
387 ssize_t filesize(int);
388 char *absolutify_path(const char*);
389 char *xstrdup(const char*);
390 void *xcalloc(size_t, size_t);
391 void gen_certificate(const char*, const char*, const char*);
392 X509_STORE *load_ca(const char*);
393 int validate_against_ca(X509_STORE*, const uint8_t*, size_t);
394 void dispatch_imsg(struct imsgbuf*, imsg_handlerfn**, size_t);
396 #endif