Blame


1 d5aba4c7 2020-12-24 op /*
2 d5aba4c7 2020-12-24 op * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 d5aba4c7 2020-12-24 op *
4 d5aba4c7 2020-12-24 op * Permission to use, copy, modify, and distribute this software for any
5 d5aba4c7 2020-12-24 op * purpose with or without fee is hereby granted, provided that the above
6 d5aba4c7 2020-12-24 op * copyright notice and this permission notice appear in all copies.
7 d5aba4c7 2020-12-24 op *
8 d5aba4c7 2020-12-24 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d5aba4c7 2020-12-24 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d5aba4c7 2020-12-24 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d5aba4c7 2020-12-24 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d5aba4c7 2020-12-24 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d5aba4c7 2020-12-24 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d5aba4c7 2020-12-24 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d5aba4c7 2020-12-24 op */
16 d5aba4c7 2020-12-24 op
17 488f059a 2020-12-24 op #ifndef GMID_H
18 488f059a 2020-12-24 op #define GMID_H
19 488f059a 2020-12-24 op
20 252908e6 2021-01-24 op #include <sys/socket.h>
21 252908e6 2021-01-24 op #include <sys/types.h>
22 252908e6 2021-01-24 op
23 488f059a 2020-12-24 op #include <arpa/inet.h>
24 488f059a 2020-12-24 op #include <netinet/in.h>
25 488f059a 2020-12-24 op
26 252908e6 2021-01-24 op #include <dirent.h>
27 488f059a 2020-12-24 op #include <poll.h>
28 488f059a 2020-12-24 op #include <stdio.h>
29 488f059a 2020-12-24 op #include <stdlib.h>
30 488f059a 2020-12-24 op #include <syslog.h>
31 488f059a 2020-12-24 op #include <tls.h>
32 488f059a 2020-12-24 op #include <unistd.h>
33 488f059a 2020-12-24 op
34 12042ad7 2021-01-21 op #include "config.h"
35 12042ad7 2021-01-21 op
36 488f059a 2020-12-24 op #ifndef INFTIM
37 488f059a 2020-12-24 op # define INFTIM -1
38 488f059a 2020-12-24 op #endif
39 488f059a 2020-12-24 op
40 488f059a 2020-12-24 op #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
41 488f059a 2020-12-24 op
42 488f059a 2020-12-24 op /* large enough to hold a copy of a gemini URL and still have extra room */
43 488f059a 2020-12-24 op #define PATHBUF 2048
44 488f059a 2020-12-24 op
45 488f059a 2020-12-24 op #define SUCCESS 20
46 0be51733 2021-01-20 op #define TEMP_REDIRECT 30
47 488f059a 2020-12-24 op #define TEMP_FAILURE 40
48 488f059a 2020-12-24 op #define NOT_FOUND 51
49 7b1d9790 2021-01-11 op #define PROXY_REFUSED 53
50 488f059a 2020-12-24 op #define BAD_REQUEST 59
51 488f059a 2020-12-24 op
52 488f059a 2020-12-24 op #define MAX_USERS 64
53 488f059a 2020-12-24 op
54 15902770 2021-01-15 op #define HOSTSLEN 64
55 c8b74339 2021-01-24 op #define LOCLEN 32
56 15902770 2021-01-15 op
57 3300cbe0 2021-01-27 op /* RFC1034 imposes this limit. 63+1 for the NUL-terminator */
58 3300cbe0 2021-01-27 op #define DOMAIN_NAME_LEN (63+1)
59 3300cbe0 2021-01-27 op
60 dafb57b8 2021-01-15 op #define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
61 dafb57b8 2021-01-15 op #define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
62 dafb57b8 2021-01-15 op #define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
63 dafb57b8 2021-01-15 op #define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
64 dafb57b8 2021-01-15 op #define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
65 dafb57b8 2021-01-15 op
66 c8b74339 2021-01-24 op struct location {
67 c8b74339 2021-01-24 op char *match;
68 c8b74339 2021-01-24 op char *lang;
69 c8b74339 2021-01-24 op char *default_mime;
70 c8b74339 2021-01-24 op char *index;
71 252908e6 2021-01-24 op int auto_index; /* 0 auto, -1 off, 1 on */
72 c8b74339 2021-01-24 op };
73 c8b74339 2021-01-24 op
74 15902770 2021-01-15 op struct vhost {
75 15902770 2021-01-15 op const char *domain;
76 15902770 2021-01-15 op const char *cert;
77 15902770 2021-01-15 op const char *key;
78 15902770 2021-01-15 op const char *dir;
79 15902770 2021-01-15 op const char *cgi;
80 15902770 2021-01-15 op int dirfd;
81 c8b74339 2021-01-24 op struct location locations[LOCLEN];
82 15902770 2021-01-15 op };
83 15902770 2021-01-15 op
84 15902770 2021-01-15 op extern struct vhost hosts[HOSTSLEN];
85 15902770 2021-01-15 op
86 a010b0dd 2021-01-18 op struct etm { /* extension to mime */
87 a010b0dd 2021-01-18 op const char *mime;
88 a010b0dd 2021-01-18 op const char *ext;
89 a010b0dd 2021-01-18 op };
90 a010b0dd 2021-01-18 op
91 b2a6b613 2021-01-21 op struct mime {
92 a010b0dd 2021-01-18 op struct etm *t;
93 a010b0dd 2021-01-18 op size_t len;
94 a010b0dd 2021-01-18 op size_t cap;
95 a010b0dd 2021-01-18 op };
96 a010b0dd 2021-01-18 op
97 15902770 2021-01-15 op struct conf {
98 ae08ec7d 2021-01-25 op int port;
99 ae08ec7d 2021-01-25 op int ipv6;
100 ae08ec7d 2021-01-25 op uint32_t protos;
101 ae08ec7d 2021-01-25 op struct mime mime;
102 ae08ec7d 2021-01-25 op char *chroot;
103 ae08ec7d 2021-01-25 op char *user;
104 15902770 2021-01-15 op };
105 15902770 2021-01-15 op
106 15902770 2021-01-15 op extern struct conf conf;
107 881a9dd9 2021-01-16 op extern int exfd;
108 15902770 2021-01-15 op
109 0be51733 2021-01-20 op struct iri {
110 0be51733 2021-01-20 op char *schema;
111 0be51733 2021-01-20 op char *host;
112 0be51733 2021-01-20 op char *port;
113 0be51733 2021-01-20 op uint16_t port_no;
114 0be51733 2021-01-20 op char *path;
115 0be51733 2021-01-20 op char *query;
116 0be51733 2021-01-20 op char *fragment;
117 0be51733 2021-01-20 op };
118 0be51733 2021-01-20 op
119 0be51733 2021-01-20 op struct parser {
120 0be51733 2021-01-20 op char *iri;
121 0be51733 2021-01-20 op struct iri *parsed;
122 0be51733 2021-01-20 op const char *err;
123 0be51733 2021-01-20 op };
124 0be51733 2021-01-20 op
125 488f059a 2020-12-24 op enum {
126 9862b637 2021-01-13 op S_HANDSHAKE,
127 488f059a 2020-12-24 op S_OPEN,
128 488f059a 2020-12-24 op S_INITIALIZING,
129 a87f6625 2021-01-24 op S_SENDING_FILE,
130 252908e6 2021-01-24 op S_SENDING_DIR,
131 a87f6625 2021-01-24 op S_SENDING_CGI,
132 488f059a 2020-12-24 op S_CLOSING,
133 488f059a 2020-12-24 op };
134 488f059a 2020-12-24 op
135 488f059a 2020-12-24 op struct client {
136 488f059a 2020-12-24 op struct tls *ctx;
137 0be51733 2021-01-20 op char req[GEMINI_URL_LEN];
138 0be51733 2021-01-20 op struct iri iri;
139 3300cbe0 2021-01-27 op char domain[DOMAIN_NAME_LEN];
140 a87f6625 2021-01-24 op int state, next;
141 488f059a 2020-12-24 op int code;
142 488f059a 2020-12-24 op const char *meta;
143 488f059a 2020-12-24 op int fd, waiting_on_child;
144 488f059a 2020-12-24 op char sbuf[1024]; /* static buffer */
145 488f059a 2020-12-24 op void *buf, *i; /* mmap buffer */
146 488f059a 2020-12-24 op ssize_t len, off; /* mmap/static buffer */
147 252908e6 2021-01-24 op DIR *dir;
148 709d6e5e 2021-01-10 op struct sockaddr_storage addr;
149 f7b816dc 2021-01-15 op struct vhost *host; /* host she's talking to */
150 488f059a 2020-12-24 op };
151 488f059a 2020-12-24 op
152 488f059a 2020-12-24 op enum {
153 488f059a 2020-12-24 op FILE_EXISTS,
154 488f059a 2020-12-24 op FILE_EXECUTABLE,
155 488f059a 2020-12-24 op FILE_DIRECTORY,
156 488f059a 2020-12-24 op FILE_MISSING,
157 488f059a 2020-12-24 op };
158 488f059a 2020-12-24 op
159 33d32d1f 2020-12-25 op /* gmid.c */
160 d3a08f4d 2021-01-17 op __attribute__((format (printf, 1, 2)))
161 d3a08f4d 2021-01-17 op __attribute__((__noreturn__))
162 d3a08f4d 2021-01-17 op void fatal(const char*, ...);
163 d3a08f4d 2021-01-17 op
164 d3a08f4d 2021-01-17 op __attribute__((format (printf, 3, 4)))
165 d3a08f4d 2021-01-17 op void logs(int, struct client*, const char*, ...);
166 0be51733 2021-01-20 op void log_request(struct client*, char*, size_t);
167 d3a08f4d 2021-01-17 op
168 4a28dd01 2020-12-28 op void sig_handler(int);
169 15902770 2021-01-15 op char *absolutify_path(const char*);
170 8443bff7 2021-01-25 op void gen_certificate(const char*, const char*, const char*);
171 8443bff7 2021-01-25 op void mkdirs(const char*);
172 8443bff7 2021-01-25 op char *data_dir(void);
173 8443bff7 2021-01-25 op void load_local_cert(const char*, const char*);
174 15902770 2021-01-15 op void yyerror(const char*);
175 15902770 2021-01-15 op int parse_portno(const char*);
176 15902770 2021-01-15 op void parse_conf(const char*);
177 ae08ec7d 2021-01-25 op void load_vhosts(void);
178 33ac26a0 2021-01-21 op int make_socket(int, int);
179 ae08ec7d 2021-01-25 op void setup_tls(void);
180 33ac26a0 2021-01-21 op int listener_main(void);
181 c8b74339 2021-01-24 op void init_config(void);
182 ae08ec7d 2021-01-25 op void drop_priv(void);
183 488f059a 2020-12-24 op void usage(const char*);
184 488f059a 2020-12-24 op
185 f7b816dc 2021-01-15 op /* provided by lex/yacc */
186 15902770 2021-01-15 op extern FILE *yyin;
187 15902770 2021-01-15 op extern int yylineno;
188 15902770 2021-01-15 op extern int yyparse(void);
189 15902770 2021-01-15 op extern int yylex(void);
190 15902770 2021-01-15 op
191 0fbe79b3 2021-01-18 op /* mime.c */
192 b2a6b613 2021-01-21 op void init_mime(struct mime*);
193 b2a6b613 2021-01-21 op void add_mime(struct mime*, const char*, const char*);
194 b2a6b613 2021-01-21 op void load_default_mime(struct mime*);
195 6119e13e 2021-01-19 op const char *mime(struct vhost*, const char*);
196 0fbe79b3 2021-01-18 op
197 d3a08f4d 2021-01-17 op /* server.c */
198 c8b74339 2021-01-24 op const char *vhost_lang(struct vhost*, const char*);
199 c8b74339 2021-01-24 op const char *vhost_default_mime(struct vhost*, const char*);
200 c8b74339 2021-01-24 op const char *vhost_index(struct vhost*, const char*);
201 252908e6 2021-01-24 op int vhost_auto_index(struct vhost*, const char*);
202 d3a08f4d 2021-01-17 op int check_path(struct client*, const char*, int*);
203 07b0a142 2021-01-24 op void open_file(struct pollfd*, struct client*);
204 252908e6 2021-01-24 op void load_file(struct pollfd*, struct client*);
205 07b0a142 2021-01-24 op void check_for_cgi(char *, char*, struct pollfd*, struct client*);
206 d3a08f4d 2021-01-17 op void mark_nonblock(int);
207 d3a08f4d 2021-01-17 op void handle_handshake(struct pollfd*, struct client*);
208 d3a08f4d 2021-01-17 op void handle_open_conn(struct pollfd*, struct client*);
209 a87f6625 2021-01-24 op void start_reply(struct pollfd*, struct client*, int, const char*);
210 07b0a142 2021-01-24 op void start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
211 0be51733 2021-01-20 op void send_file(struct pollfd*, struct client*);
212 252908e6 2021-01-24 op void open_dir(struct pollfd*, struct client*);
213 252908e6 2021-01-24 op void redirect_canonical_dir(struct pollfd*, struct client*);
214 252908e6 2021-01-24 op int read_next_dir_entry(struct client*);
215 252908e6 2021-01-24 op void send_directory_listing(struct pollfd*, struct client*);
216 d3a08f4d 2021-01-17 op void cgi_poll_on_child(struct pollfd*, struct client*);
217 d3a08f4d 2021-01-17 op void cgi_poll_on_client(struct pollfd*, struct client*);
218 d3a08f4d 2021-01-17 op void handle_cgi(struct pollfd*, struct client*);
219 36162ed8 2021-01-22 op void close_conn(struct pollfd*, struct client*);
220 d3a08f4d 2021-01-17 op void do_accept(int, struct tls*, struct pollfd*, struct client*);
221 d3a08f4d 2021-01-17 op void handle(struct pollfd*, struct client*);
222 d3a08f4d 2021-01-17 op void loop(struct tls*, int, int);
223 d3a08f4d 2021-01-17 op
224 881a9dd9 2021-01-16 op /* ex.c */
225 881a9dd9 2021-01-16 op int send_string(int, const char*);
226 881a9dd9 2021-01-16 op int recv_string(int, char**);
227 881a9dd9 2021-01-16 op int send_vhost(int, struct vhost*);
228 881a9dd9 2021-01-16 op int recv_vhost(int, struct vhost**);
229 881a9dd9 2021-01-16 op int send_fd(int, int);
230 881a9dd9 2021-01-16 op int recv_fd(int);
231 881a9dd9 2021-01-16 op int executor_main(int);
232 881a9dd9 2021-01-16 op
233 dafb57b8 2021-01-15 op /* sandbox.c */
234 33ac26a0 2021-01-21 op void sandbox(void);
235 dafb57b8 2021-01-15 op
236 ef04b551 2021-01-09 op /* utf8.c */
237 ef04b551 2021-01-09 op int valid_multibyte_utf8(struct parser*);
238 3300cbe0 2021-01-27 op char *utf8_nth(char*, size_t);
239 ef04b551 2021-01-09 op
240 3c1cf9d0 2021-01-11 op /* iri.c */
241 3c1cf9d0 2021-01-11 op int parse_iri(char*, struct iri*, const char**);
242 c4f682f8 2021-01-27 op int trim_req_iri(char*, const char **);
243 33d32d1f 2020-12-25 op
244 3300cbe0 2021-01-27 op /* puny.c */
245 7957cbd9 2021-01-27 op int puny_decode(const char*, char*, size_t);
246 3300cbe0 2021-01-27 op
247 44ee1bac 2021-01-27 op /* utils.c */
248 44ee1bac 2021-01-27 op int starts_with(const char*, const char*);
249 44ee1bac 2021-01-27 op int ends_with(const char*, const char*);
250 44ee1bac 2021-01-27 op ssize_t filesize(int);
251 44ee1bac 2021-01-27 op
252 488f059a 2020-12-24 op #endif