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 <sys/socket.h>
21 #include <sys/types.h>
23 #include <arpa/inet.h>
24 #include <netinet/in.h>
26 #include <dirent.h>
27 #include <poll.h>
28 #include <stdio.h>
29 #include <stdlib.h>
30 #include <syslog.h>
31 #include <tls.h>
32 #include <unistd.h>
34 #include "config.h"
36 #ifndef INFTIM
37 # define INFTIM -1
38 #endif
40 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
42 #define SUCCESS 20
43 #define TEMP_REDIRECT 30
44 #define TEMP_FAILURE 40
45 #define CGI_ERROR 42
46 #define NOT_FOUND 51
47 #define PROXY_REFUSED 53
48 #define BAD_REQUEST 59
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 #define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
60 #define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
61 #define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
62 #define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
63 #define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
65 struct location {
66 const char *match;
67 const char *lang;
68 const char *default_mime;
69 const char *index;
70 int auto_index; /* 0 auto, -1 off, 1 on */
71 };
73 struct vhost {
74 const char *domain;
75 const char *cert;
76 const char *key;
77 const char *dir;
78 const char *cgi;
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 int port;
102 int ipv6;
103 uint32_t protos;
104 struct mime mime;
105 char *chroot;
106 char *user;
107 };
109 extern struct conf conf;
110 extern int exfd;
112 struct iri {
113 char *schema;
114 char *host;
115 char *port;
116 uint16_t port_no;
117 char *path;
118 char *query;
119 char *fragment;
120 };
122 struct parser {
123 char *iri;
124 struct iri *parsed;
125 const char *err;
126 };
128 struct client;
130 typedef void (*statefn)(struct pollfd*, struct client*);
132 /*
133 * DFA: handle_handshake is the initial state, close_conn the final.
135 * handle_handshake -> handle_open_conn
136 * handle_handshake -> close_conn // on err
138 * handle_open_conn -> handle_cgi_reply // via open_file/dir/...
139 * handle_open_conn -> send_directory_listing // ...same
140 * handle_open_conn -> send_file // ...same
141 * handle_open_conn -> start_reply // on error
143 * handle_cgi_reply -> handle_cgi // after logging the CGI reply
144 * handle_cgi_reply -> start_reply // on error
146 * handle_cgi -> close_conn
148 * send_directory_listing -> close_conn
150 * send_file -> close_conn
151 */
152 struct client {
153 struct tls *ctx;
154 char req[GEMINI_URL_LEN];
155 struct iri iri;
156 char domain[DOMAIN_NAME_LEN];
157 statefn state, next;
158 int code;
159 const char *meta;
160 int fd, waiting_on_child;
161 char sbuf[1024]; /* static buffer */
162 void *buf, *i; /* mmap buffer */
163 ssize_t len, off; /* mmap/static buffer */
164 DIR *dir;
165 struct sockaddr_storage addr;
166 struct vhost *host; /* host she's talking to */
167 };
169 enum {
170 FILE_EXISTS,
171 FILE_EXECUTABLE,
172 FILE_DIRECTORY,
173 FILE_MISSING,
174 };
176 /* gmid.c */
177 __attribute__((format (printf, 1, 2)))
178 __attribute__((__noreturn__))
179 void fatal(const char*, ...);
181 __attribute__((format (printf, 3, 4)))
182 void logs(int, struct client*, const char*, ...);
183 void log_request(struct client*, char*, size_t);
185 void sig_handler(int);
186 void gen_certificate(const char*, const char*, const char*);
187 void mkdirs(const char*);
188 char *data_dir(void);
189 void load_local_cert(const char*, const char*);
190 void load_vhosts(void);
191 int make_socket(int, int);
192 void setup_tls(void);
193 int listener_main(void);
194 void init_config(void);
195 void drop_priv(void);
196 void usage(const char*);
198 /* provided by lex/yacc */
199 extern FILE *yyin;
200 extern int yylineno;
201 extern int yyparse(void);
202 extern int yylex(void);
204 void yyerror(const char*);
205 int parse_portno(const char*);
206 void parse_conf(const char*);
208 /* mime.c */
209 void init_mime(struct mime*);
210 void add_mime(struct mime*, const char*, const char*);
211 void load_default_mime(struct mime*);
212 const char *mime(struct vhost*, const char*);
214 /* server.c */
215 const char *vhost_lang(struct vhost*, const char*);
216 const char *vhost_default_mime(struct vhost*, const char*);
217 const char *vhost_index(struct vhost*, const char*);
218 int vhost_auto_index(struct vhost*, const char*);
219 int check_path(struct client*, const char*, int*);
220 void open_file(struct pollfd*, struct client*);
221 void load_file(struct pollfd*, struct client*);
222 void check_for_cgi(struct pollfd*, struct client*);
223 void mark_nonblock(int);
224 void handle_handshake(struct pollfd*, struct client*);
225 void handle_open_conn(struct pollfd*, struct client*);
226 void start_reply(struct pollfd*, struct client*, int, const char*);
227 void handle_start_reply(struct pollfd*, struct client*);
228 void start_cgi(const char*, const char*, struct pollfd*, struct client*);
229 void send_file(struct pollfd*, struct client*);
230 void open_dir(struct pollfd*, struct client*);
231 void redirect_canonical_dir(struct pollfd*, struct client*);
232 int read_next_dir_entry(struct client*);
233 void send_directory_listing(struct pollfd*, struct client*);
234 void cgi_poll_on_child(struct pollfd*, struct client*);
235 void cgi_poll_on_client(struct pollfd*, struct client*);
236 void handle_cgi_reply(struct pollfd*, struct client*);
237 void handle_cgi(struct pollfd*, struct client*);
238 void close_conn(struct pollfd*, struct client*);
239 void do_accept(int, struct tls*, struct pollfd*, struct client*);
240 void loop(struct tls*, int, int);
242 /* ex.c */
243 int send_string(int, const char*);
244 int recv_string(int, char**);
245 int send_iri(int, struct iri*);
246 int recv_iri(int, struct iri*);
247 void free_recvd_iri(struct iri*);
248 int send_vhost(int, struct vhost*);
249 int recv_vhost(int, struct vhost**);
250 int send_fd(int, int);
251 int recv_fd(int);
252 int executor_main(int);
254 /* sandbox.c */
255 void sandbox(void);
257 /* utf8.c */
258 int valid_multibyte_utf8(struct parser*);
259 char *utf8_nth(char*, size_t);
261 /* iri.c */
262 int parse_iri(char*, struct iri*, const char**);
263 int trim_req_iri(char*, const char **);
264 int serialize_iri(struct iri*, char*, size_t);
266 /* puny.c */
267 int puny_decode(const char*, char*, size_t, const char**);
269 /* utils.c */
270 int starts_with(const char*, const char*);
271 int ends_with(const char*, const char*);
272 ssize_t filesize(int);
273 char *absolutify_path(const char*);
275 #endif