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 #define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
58 #define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
59 #define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
60 #define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
61 #define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
63 struct location {
64 char *match;
65 char *lang;
66 char *default_mime;
67 char *index;
68 int auto_index; /* 0 auto, -1 off, 1 on */
69 };
71 struct vhost {
72 const char *domain;
73 const char *cert;
74 const char *key;
75 const char *dir;
76 const char *cgi;
77 int dirfd;
78 struct location locations[LOCLEN];
79 };
81 extern struct vhost hosts[HOSTSLEN];
83 struct etm { /* extension to mime */
84 const char *mime;
85 const char *ext;
86 };
88 struct mime {
89 struct etm *t;
90 size_t len;
91 size_t cap;
92 };
94 struct conf {
95 int foreground;
96 int port;
97 int ipv6;
98 uint32_t protos;
99 struct mime mime;
100 };
102 extern struct conf conf;
103 extern int exfd;
105 struct iri {
106 char *schema;
107 char *host;
108 char *port;
109 uint16_t port_no;
110 char *path;
111 char *query;
112 char *fragment;
113 };
115 struct parser {
116 char *iri;
117 struct iri *parsed;
118 const char *err;
119 };
121 enum {
122 S_HANDSHAKE,
123 S_OPEN,
124 S_INITIALIZING,
125 S_SENDING_FILE,
126 S_SENDING_DIR,
127 S_SENDING_CGI,
128 S_CLOSING,
129 };
131 struct client {
132 struct tls *ctx;
133 char req[GEMINI_URL_LEN];
134 struct iri iri;
135 int state, next;
136 int code;
137 const char *meta;
138 int fd, waiting_on_child;
139 char sbuf[1024]; /* static buffer */
140 void *buf, *i; /* mmap buffer */
141 ssize_t len, off; /* mmap/static buffer */
142 DIR *dir;
143 struct sockaddr_storage addr;
144 struct vhost *host; /* host she's talking to */
145 };
147 enum {
148 FILE_EXISTS,
149 FILE_EXECUTABLE,
150 FILE_DIRECTORY,
151 FILE_MISSING,
152 };
154 /* gmid.c */
156 __attribute__((format (printf, 1, 2)))
157 __attribute__((__noreturn__))
158 void fatal(const char*, ...);
160 __attribute__((format (printf, 3, 4)))
161 void logs(int, struct client*, const char*, ...);
162 void log_request(struct client*, char*, size_t);
164 void sig_handler(int);
165 int starts_with(const char*, const char*);
166 int ends_with(const char*, const char*);
167 ssize_t filesize(int);
168 char *absolutify_path(const char*);
169 void yyerror(const char*);
170 int parse_portno(const char*);
171 void parse_conf(const char*);
172 void load_vhosts(struct tls_config*);
173 int make_socket(int, int);
174 int listener_main(void);
175 void init_config(void);
176 void usage(const char*);
178 /* provided by lex/yacc */
179 extern FILE *yyin;
180 extern int yylineno;
181 extern int yyparse(void);
182 extern int yylex(void);
184 /* mime.c */
185 void init_mime(struct mime*);
186 void add_mime(struct mime*, const char*, const char*);
187 void load_default_mime(struct mime*);
188 const char *mime(struct vhost*, const char*);
190 /* server.c */
191 const char *vhost_lang(struct vhost*, const char*);
192 const char *vhost_default_mime(struct vhost*, const char*);
193 const char *vhost_index(struct vhost*, const char*);
194 int vhost_auto_index(struct vhost*, const char*);
195 int check_path(struct client*, const char*, int*);
196 void open_file(struct pollfd*, struct client*);
197 void load_file(struct pollfd*, struct client*);
198 void check_for_cgi(char *, char*, struct pollfd*, struct client*);
199 void mark_nonblock(int);
200 void handle_handshake(struct pollfd*, struct client*);
201 void handle_open_conn(struct pollfd*, struct client*);
202 void start_reply(struct pollfd*, struct client*, int, const char*);
203 void start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
204 void send_file(struct pollfd*, struct client*);
205 void open_dir(struct pollfd*, struct client*);
206 void redirect_canonical_dir(struct pollfd*, struct client*);
207 int read_next_dir_entry(struct client*);
208 void send_directory_listing(struct pollfd*, struct client*);
209 void cgi_poll_on_child(struct pollfd*, struct client*);
210 void cgi_poll_on_client(struct pollfd*, struct client*);
211 void handle_cgi(struct pollfd*, struct client*);
212 void close_conn(struct pollfd*, struct client*);
213 void do_accept(int, struct tls*, struct pollfd*, struct client*);
214 void handle(struct pollfd*, struct client*);
215 void loop(struct tls*, int, int);
217 /* ex.c */
218 int send_string(int, const char*);
219 int recv_string(int, char**);
220 int send_vhost(int, struct vhost*);
221 int recv_vhost(int, struct vhost**);
222 int send_fd(int, int);
223 int recv_fd(int);
224 int executor_main(int);
226 /* sandbox.c */
227 void sandbox(void);
229 /* utf8.c */
230 int valid_multibyte_utf8(struct parser*);
232 /* iri.c */
233 int parse_iri(char*, struct iri*, const char**);
234 int trim_req_iri(char*);
236 #endif