Blob


1 /*
2 * Copyright (c) 2020, 2021, 2022 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 VERSION_STR(n) n " " VERSION
54 #define GE_STRING VERSION_STR("ge")
55 #define GG_STRING VERSION_STR("gg")
56 #define GMID_STRING VERSION_STR("gmid")
58 #define GMID_VERSION "gmid/" VERSION
60 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
62 #define SUCCESS 20
63 #define TEMP_REDIRECT 30
64 #define TEMP_FAILURE 40
65 #define CGI_ERROR 42
66 #define PROXY_ERROR 43
67 #define NOT_FOUND 51
68 #define PROXY_REFUSED 53
69 #define BAD_REQUEST 59
70 #define CLIENT_CERT_REQ 60
71 #define CERT_NOT_AUTH 61
73 /* maximum hostname and label length, +1 for the NUL-terminator */
74 #define DOMAIN_NAME_LEN (253+1)
75 #define LABEL_LEN (63+1)
77 #define MEDIATYPE_NAMEMAX 128 /* file name extension */
78 #define MEDIATYPE_TYPEMAX 128 /* length of type/subtype */
80 #define FCGI_MAX 32
81 #define PROC_MAX 16
83 struct iri {
84 char *schema;
85 char *host;
86 char *port;
87 uint16_t port_no;
88 char *path;
89 char *query;
90 char *fragment;
91 };
93 struct parser {
94 char *iri;
95 struct iri *parsed;
96 const char *err;
97 };
99 struct fcgi {
100 int id;
101 char *path;
102 char *port;
103 char *prog;
104 };
105 extern struct fcgi fcgi[FCGI_MAX];
107 TAILQ_HEAD(proxyhead, proxy);
108 struct proxy {
109 char *match_proto;
110 char *match_host;
111 const char *match_port;
113 char *host;
114 const char *port;
115 char *sni;
116 int notls;
117 uint32_t protocols;
118 int noverifyname;
119 uint8_t *cert;
120 size_t certlen;
121 uint8_t *key;
122 size_t keylen;
123 X509_STORE *reqca;
125 TAILQ_ENTRY(proxy) proxies;
126 };
128 TAILQ_HEAD(lochead, location);
129 struct location {
130 const char *match;
131 const char *lang;
132 const char *default_mime;
133 const char *index;
134 int auto_index; /* 0 auto, -1 off, 1 on */
135 int block_code;
136 const char *block_fmt;
137 int strip;
138 X509_STORE *reqca;
139 int disable_log;
140 int fcgi;
142 const char *dir;
143 int dirfd;
145 TAILQ_ENTRY(location) locations;
146 };
148 TAILQ_HEAD(envhead, envlist);
149 struct envlist {
150 char *name;
151 char *value;
152 TAILQ_ENTRY(envlist) envs;
153 };
155 TAILQ_HEAD(aliashead, alist);
156 struct alist {
157 char *alias;
158 TAILQ_ENTRY(alist) aliases;
159 };
161 extern TAILQ_HEAD(vhosthead, vhost) hosts;
162 struct vhost {
163 const char *domain;
164 const char *cert;
165 const char *key;
166 const char *ocsp;
168 TAILQ_ENTRY(vhost) vhosts;
170 /*
171 * the first location rule is always '*' and holds the default
172 * settings for the vhost, then follows the "real" location
173 * rules as specified in the configuration.
174 */
175 struct lochead locations;
177 struct envhead params;
178 struct aliashead aliases;
179 struct proxyhead proxies;
180 };
182 struct etm { /* extension to mime */
183 char mime[MEDIATYPE_TYPEMAX];
184 char ext[MEDIATYPE_NAMEMAX];
185 };
187 struct mime {
188 struct etm *t;
189 size_t len;
190 size_t cap;
191 };
193 struct conf {
194 /* from command line */
195 int foreground;
196 int verbose;
197 int can_open_sockets;
199 /* in the config */
200 int port;
201 int ipv6;
202 uint32_t protos;
203 struct mime mime;
204 char chroot[PATH_MAX];
205 char user[LOGIN_NAME_MAX];
206 int prefork;
207 };
209 extern const char *config_path;
210 extern struct conf conf;
212 extern struct imsgbuf logibuf, servibuf[PROC_MAX];
214 extern int servpipes[PROC_MAX];
216 typedef void (imsg_handlerfn)(struct imsgbuf*, struct imsg*, size_t);
218 enum {
219 REQUEST_UNDECIDED,
220 REQUEST_FILE,
221 REQUEST_DIR,
222 REQUEST_FCGI,
223 REQUEST_PROXY,
224 REQUEST_DONE,
225 };
227 #define IS_INTERNAL_REQUEST(x) \
228 (x) != REQUEST_FCGI && \
229 (x) != REQUEST_PROXY)
231 struct client {
232 uint32_t id;
233 struct tls *ctx;
234 char *req;
235 size_t reqlen;
236 struct iri iri;
237 char domain[DOMAIN_NAME_LEN];
239 struct bufferevent *bev;
241 int type;
243 struct bufferevent *cgibev;
245 struct proxy *proxy;
246 struct bufferevent *proxybev;
247 struct tls *proxyctx;
248 int proxyevset;
249 struct event proxyev;
251 char *header;
253 int code;
254 const char *meta;
255 int fd, pfd;
256 struct dirent **dir;
257 int dirlen, diroff;
259 /* big enough to store STATUS + SPACE + META + CRLF */
260 char sbuf[1029];
261 ssize_t len, off;
263 struct sockaddr_storage addr;
264 struct vhost *host; /* host they're talking to */
265 size_t loc; /* location matched */
267 SPLAY_ENTRY(client) entry;
268 };
269 SPLAY_HEAD(client_tree_id, client);
270 extern struct client_tree_id clients;
272 struct connreq {
273 char host[NI_MAXHOST];
274 char port[NI_MAXSERV];
275 int flag;
276 };
278 enum {
279 FILE_EXISTS,
280 FILE_DIRECTORY,
281 FILE_MISSING,
282 };
284 enum imsg_type {
285 IMSG_FCGI_REQ,
286 IMSG_FCGI_FD,
287 IMSG_CONN_REQ,
288 IMSG_CONN_FD,
289 IMSG_LOG,
290 IMSG_LOG_REQUEST,
291 IMSG_LOG_TYPE,
292 IMSG_QUIT,
293 };
295 /* gmid.c */
296 char *data_dir(void);
297 void load_local_cert(struct vhost*, const char*, const char*);
298 void load_vhosts(void);
299 int make_socket(int, int);
300 void setup_tls(void);
301 void init_config(void);
302 void free_config(void);
303 void drop_priv(void);
305 void yyerror(const char*, ...);
306 void parse_conf(const char*);
307 void print_conf(void);
308 int cmdline_symset(char *);
310 /* log.c */
311 void fatal(const char*, ...)
312 __attribute__((format (printf, 1, 2)))
313 __attribute__((__noreturn__));
315 #define LOG_ATTR_FMT __attribute__((format (printf, 2, 3)))
316 void log_err(struct client*, const char*, ...) LOG_ATTR_FMT;
317 void log_warn(struct client*, const char*, ...) LOG_ATTR_FMT;
318 void log_notice(struct client*, const char*, ...) LOG_ATTR_FMT;
319 void log_info(struct client*, const char*, ...) LOG_ATTR_FMT;
320 void log_debug(struct client*, const char*, ...) LOG_ATTR_FMT;
321 void log_request(struct client*, char*, size_t);
322 int logger_main(int, struct imsgbuf*);
324 /* mime.c */
325 void init_mime(struct mime*);
326 int add_mime(struct mime*, const char*, const char*);
327 int load_default_mime(struct mime*);
328 void sort_mime(struct mime *);
329 const char *mime(struct vhost*, const char*);
330 void free_mime(struct mime *);
332 /* server.c */
333 extern int shutting_down;
334 const char *vhost_lang(struct vhost*, const char*);
335 const char *vhost_default_mime(struct vhost*, const char*);
336 const char *vhost_index(struct vhost*, const char*);
337 int vhost_auto_index(struct vhost*, const char*);
338 int vhost_block_return(struct vhost*, const char*, int*, const char**);
339 int vhost_fastcgi(struct vhost*, const char*);
340 int vhost_dirfd(struct vhost*, const char*, size_t*);
341 int vhost_strip(struct vhost*, const char*);
342 X509_STORE *vhost_require_ca(struct vhost*, const char*);
343 int vhost_disable_log(struct vhost*, const char*);
345 void mark_nonblock(int);
346 void client_write(struct bufferevent *, void *);
347 void start_reply(struct client*, int, const char*);
348 void client_close(struct client *);
349 struct client *client_by_id(int);
350 void loop(struct tls*, int, int, struct imsgbuf*);
352 int client_tree_cmp(struct client *, struct client *);
353 SPLAY_PROTOTYPE(client_tree_id, client, entry, client_tree_cmp);
355 /* dirs.c */
356 int scandir_fd(int, struct dirent***, int(*)(const struct dirent*),
357 int(*)(const struct dirent**, const struct dirent**));
358 int select_non_dot(const struct dirent*);
359 int select_non_dotdot(const struct dirent*);
361 /* fcgi.c */
362 void fcgi_read(struct bufferevent *, void *);
363 void fcgi_write(struct bufferevent *, void *);
364 void fcgi_error(struct bufferevent *, short, void *);
365 void fcgi_req(struct client *);
367 /* sandbox.c */
368 void sandbox_server_process(int);
369 void sandbox_logger_process(void);
371 /* utf8.c */
372 int valid_multibyte_utf8(struct parser*);
373 char *utf8_nth(char*, size_t);
375 /* iri.c */
376 int parse_iri(char*, struct iri*, const char**);
377 int serialize_iri(struct iri*, char*, size_t);
378 int encode_path(char *, size_t, const char *);
379 char *pct_decode_str(char *);
381 /* proxy.c */
382 int proxy_init(struct client *);
384 /* puny.c */
385 int puny_decode(const char*, char*, size_t, const char**);
387 /* utils.c */
388 void block_signals(void);
389 void unblock_signals(void);
390 int starts_with(const char*, const char*);
391 int ends_with(const char*, const char*);
392 ssize_t filesize(int);
393 char *absolutify_path(const char*);
394 char *xstrdup(const char*);
395 void *xcalloc(size_t, size_t);
396 void gen_certificate(const char*, const char*, const char*);
397 X509_STORE *load_ca(const char*);
398 int validate_against_ca(X509_STORE*, const uint8_t*, size_t);
399 void dispatch_imsg(struct imsgbuf*, imsg_handlerfn**, size_t);
401 #endif