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 <arpa/inet.h>
21 #include <netinet/in.h>
22 #include <sys/socket.h>
24 #include <poll.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <syslog.h>
28 #include <tls.h>
29 #include <unistd.h>
31 #ifndef INFTIM
32 # define INFTIM -1
33 #endif
35 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
37 /* large enough to hold a copy of a gemini URL and still have extra room */
38 #define PATHBUF 2048
40 #define SUCCESS 20
41 #define TEMP_FAILURE 40
42 #define NOT_FOUND 51
43 #define PROXY_REFUSED 53
44 #define BAD_REQUEST 59
46 #define MAX_USERS 64
48 #define HOSTSLEN 64
50 #define LOGE(c, fmt, ...) logs(LOG_ERR, c, fmt, __VA_ARGS__)
51 #define LOGW(c, fmt, ...) logs(LOG_WARNING, c, fmt, __VA_ARGS__)
52 #define LOGN(c, fmt, ...) logs(LOG_NOTICE, c, fmt, __VA_ARGS__)
53 #define LOGI(c, fmt, ...) logs(LOG_INFO, c, fmt, __VA_ARGS__)
54 #define LOGD(c, fmt, ...) logs(LOG_DEBUG, c, fmt, __VA_ARGS__)
56 struct vhost {
57 const char *domain;
58 const char *cert;
59 const char *key;
60 const char *dir;
61 const char *cgi;
62 int dirfd;
63 };
65 extern struct vhost hosts[HOSTSLEN];
67 struct conf {
68 int foreground;
69 int port;
70 int ipv6;
71 };
73 extern struct conf conf;
75 enum {
76 S_HANDSHAKE,
77 S_OPEN,
78 S_INITIALIZING,
79 S_SENDING,
80 S_CLOSING,
81 };
83 struct client {
84 struct tls *ctx;
85 int state;
86 int code;
87 const char *meta;
88 int fd, waiting_on_child;
89 pid_t child;
90 char sbuf[1024]; /* static buffer */
91 void *buf, *i; /* mmap buffer */
92 ssize_t len, off; /* mmap/static buffer */
93 int af;
94 struct sockaddr_storage addr;
95 struct vhost *host; /* host she's talking to */
96 };
98 struct iri {
99 char *schema;
100 char *host;
101 char *port;
102 uint16_t port_no;
103 char *path;
104 char *query;
105 char *fragment;
106 };
108 struct parser {
109 char *iri;
110 struct iri *parsed;
111 const char *err;
112 };
114 enum {
115 FILE_EXISTS,
116 FILE_EXECUTABLE,
117 FILE_DIRECTORY,
118 FILE_MISSING,
119 };
121 /* gmid.c */
122 __attribute__ ((format (printf, 3, 4))) void logs(int, struct client*, const char*, ...);
124 void sig_handler(int);
125 int starts_with(const char*, const char*);
127 int start_reply(struct pollfd*, struct client*, int, const char*);
128 ssize_t filesize(int);
129 const char *path_ext(const char*);
130 const char *mime(const char*);
131 int check_path(struct client*, const char*, int*);
132 int check_for_cgi(char *, char*, struct pollfd*, struct client*);
133 int open_file(char*, char*, struct pollfd*, struct client*);
134 int start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
135 void cgi_poll_on_child(struct pollfd*, struct client*);
136 void cgi_poll_on_client(struct pollfd*, struct client*);
137 void handle_cgi(struct pollfd*, struct client*);
138 void send_file(char*, char*, struct pollfd*, struct client*);
139 void send_dir(char*, struct pollfd*, struct client*);
140 void handle_handshake(struct pollfd*, struct client*);
141 void handle_open_conn(struct pollfd*, struct client*);
142 void handle(struct pollfd*, struct client*);
144 void mark_nonblock(int);
145 int make_soket(int);
146 void do_accept(int, struct tls*, struct pollfd*, struct client*);
147 void goodbye(struct pollfd*, struct client*);
148 void loop(struct tls*, int, int);
150 char *absolutify_path(const char*);
151 void yyerror(const char*);
152 int parse_portno(const char*);
153 void parse_conf(const char*);
154 void load_vhosts(struct tls_config*);
156 void usage(const char*);
158 /* provided by lex/yacc */
159 extern FILE *yyin;
160 extern int yylineno;
161 extern int yyparse(void);
162 extern int yylex(void);
164 /* sandbox.c */
165 void sandbox();
167 /* utf8.c */
168 int valid_multibyte_utf8(struct parser*);
170 /* iri.c */
171 int parse_iri(char*, struct iri*, const char**);
172 int trim_req_iri(char*);
174 #endif