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 /* large enough to hold a copy of a gemini URL and still have extra room */
43 #define PATHBUF 2048
45 #define SUCCESS 20
46 #define TEMP_REDIRECT 30
47 #define TEMP_FAILURE 40
48 #define NOT_FOUND 51
49 #define PROXY_REFUSED 53
50 #define BAD_REQUEST 59
52 #define MAX_USERS 64
54 #define HOSTSLEN 64
55 #define LOCLEN 32
57 /* RFC1034 imposes this limit. 63+1 for the NUL-terminator */
58 #define DOMAIN_NAME_LEN (63+1)
60 #define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
61 #define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
62 #define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
63 #define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
64 #define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
66 struct location {
67 char *match;
68 char *lang;
69 char *default_mime;
70 char *index;
71 int auto_index; /* 0 auto, -1 off, 1 on */
72 };
74 struct vhost {
75 const char *domain;
76 const char *cert;
77 const char *key;
78 const char *dir;
79 const char *cgi;
80 int dirfd;
81 struct location locations[LOCLEN];
82 };
84 extern struct vhost hosts[HOSTSLEN];
86 struct etm { /* extension to mime */
87 const char *mime;
88 const char *ext;
89 };
91 struct mime {
92 struct etm *t;
93 size_t len;
94 size_t cap;
95 };
97 struct conf {
98 int port;
99 int ipv6;
100 uint32_t protos;
101 struct mime mime;
102 char *chroot;
103 char *user;
104 };
106 extern struct conf conf;
107 extern int exfd;
109 struct iri {
110 char *schema;
111 char *host;
112 char *port;
113 uint16_t port_no;
114 char *path;
115 char *query;
116 char *fragment;
117 };
119 struct parser {
120 char *iri;
121 struct iri *parsed;
122 const char *err;
123 };
125 enum {
126 S_HANDSHAKE,
127 S_OPEN,
128 S_INITIALIZING,
129 S_SENDING_FILE,
130 S_SENDING_DIR,
131 S_SENDING_CGI,
132 S_CLOSING,
133 };
135 struct client {
136 struct tls *ctx;
137 char req[GEMINI_URL_LEN];
138 struct iri iri;
139 char domain[DOMAIN_NAME_LEN];
140 int state, next;
141 int code;
142 const char *meta;
143 int fd, waiting_on_child;
144 char sbuf[1024]; /* static buffer */
145 void *buf, *i; /* mmap buffer */
146 ssize_t len, off; /* mmap/static buffer */
147 DIR *dir;
148 struct sockaddr_storage addr;
149 struct vhost *host; /* host she's talking to */
150 };
152 enum {
153 FILE_EXISTS,
154 FILE_EXECUTABLE,
155 FILE_DIRECTORY,
156 FILE_MISSING,
157 };
159 /* gmid.c */
160 __attribute__((format (printf, 1, 2)))
161 __attribute__((__noreturn__))
162 void fatal(const char*, ...);
164 __attribute__((format (printf, 3, 4)))
165 void logs(int, struct client*, const char*, ...);
166 void log_request(struct client*, char*, size_t);
168 void sig_handler(int);
169 char *absolutify_path(const char*);
170 void gen_certificate(const char*, const char*, const char*);
171 void mkdirs(const char*);
172 char *data_dir(void);
173 void load_local_cert(const char*, const char*);
174 void yyerror(const char*);
175 int parse_portno(const char*);
176 void parse_conf(const char*);
177 void load_vhosts(void);
178 int make_socket(int, int);
179 void setup_tls(void);
180 int listener_main(void);
181 void init_config(void);
182 void drop_priv(void);
183 void usage(const char*);
185 /* provided by lex/yacc */
186 extern FILE *yyin;
187 extern int yylineno;
188 extern int yyparse(void);
189 extern int yylex(void);
191 /* mime.c */
192 void init_mime(struct mime*);
193 void add_mime(struct mime*, const char*, const char*);
194 void load_default_mime(struct mime*);
195 const char *mime(struct vhost*, const char*);
197 /* server.c */
198 const char *vhost_lang(struct vhost*, const char*);
199 const char *vhost_default_mime(struct vhost*, const char*);
200 const char *vhost_index(struct vhost*, const char*);
201 int vhost_auto_index(struct vhost*, const char*);
202 int check_path(struct client*, const char*, int*);
203 void open_file(struct pollfd*, struct client*);
204 void load_file(struct pollfd*, struct client*);
205 void check_for_cgi(char *, char*, struct pollfd*, struct client*);
206 void mark_nonblock(int);
207 void handle_handshake(struct pollfd*, struct client*);
208 void handle_open_conn(struct pollfd*, struct client*);
209 void start_reply(struct pollfd*, struct client*, int, const char*);
210 void start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
211 void send_file(struct pollfd*, struct client*);
212 void open_dir(struct pollfd*, struct client*);
213 void redirect_canonical_dir(struct pollfd*, struct client*);
214 int read_next_dir_entry(struct client*);
215 void send_directory_listing(struct pollfd*, struct client*);
216 void cgi_poll_on_child(struct pollfd*, struct client*);
217 void cgi_poll_on_client(struct pollfd*, struct client*);
218 void handle_cgi(struct pollfd*, struct client*);
219 void close_conn(struct pollfd*, struct client*);
220 void do_accept(int, struct tls*, struct pollfd*, struct client*);
221 void handle(struct pollfd*, struct client*);
222 void loop(struct tls*, int, int);
224 /* ex.c */
225 int send_string(int, const char*);
226 int recv_string(int, char**);
227 int send_vhost(int, struct vhost*);
228 int recv_vhost(int, struct vhost**);
229 int send_fd(int, int);
230 int recv_fd(int);
231 int executor_main(int);
233 /* sandbox.c */
234 void sandbox(void);
236 /* utf8.c */
237 int valid_multibyte_utf8(struct parser*);
238 char *utf8_nth(char*, size_t);
240 /* iri.c */
241 int parse_iri(char*, struct iri*, const char**);
242 int trim_req_iri(char*, const char **);
244 /* puny.c */
245 int puny_decode(const char*, char*, size_t);
247 /* utils.c */
248 int starts_with(const char*, const char*);
249 int ends_with(const char*, const char*);
250 ssize_t filesize(int);
252 #endif