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 __OpenBSD__
32 # define pledge(a, b) 0
33 # define unveil(a, b) 0
34 #endif
36 #ifndef INFTIM
37 # define INFTIM -1
38 #endif
40 #ifndef __dead
41 # define __dead
42 #endif
44 #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
46 /* large enough to hold a copy of a gemini URL and still have extra room */
47 #define PATHBUF 2048
49 #define SUCCESS 20
50 #define TEMP_FAILURE 40
51 #define NOT_FOUND 51
52 #define PROXY_REFUSED 53
53 #define BAD_REQUEST 59
55 #define MAX_USERS 64
57 enum {
58 S_OPEN,
59 S_INITIALIZING,
60 S_SENDING,
61 S_CLOSING,
62 };
64 struct client {
65 struct tls *ctx;
66 int state;
67 int code;
68 const char *meta;
69 int fd, waiting_on_child;
70 pid_t child;
71 char sbuf[1024]; /* static buffer */
72 void *buf, *i; /* mmap buffer */
73 ssize_t len, off; /* mmap/static buffer */
74 int af;
75 struct sockaddr_storage addr;
76 };
78 struct iri {
79 char *schema;
80 char *host;
81 char *port;
82 uint16_t port_no;
83 char *path;
84 char *query;
85 char *fragment;
86 };
88 struct parser {
89 char *iri;
90 struct iri *parsed;
91 const char *err;
92 };
94 enum {
95 FILE_EXISTS,
96 FILE_EXECUTABLE,
97 FILE_DIRECTORY,
98 FILE_MISSING,
99 };
101 /* gmid.c */
102 void sig_handler(int);
103 int starts_with(const char*, const char*);
105 int start_reply(struct pollfd*, struct client*, int, const char*);
106 ssize_t filesize(int);
107 const char *path_ext(const char*);
108 const char *mime(const char*);
109 int check_path(struct client*, const char*, int*);
110 int check_for_cgi(char *, char*, struct pollfd*, struct client*);
111 int open_file(char*, char*, struct pollfd*, struct client*);
112 int start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
113 void cgi_poll_on_child(struct pollfd*, struct client*);
114 void cgi_poll_on_client(struct pollfd*, struct client*);
115 void handle_cgi(struct pollfd*, struct client*);
116 void send_file(char*, char*, struct pollfd*, struct client*);
117 void send_dir(char*, struct pollfd*, struct client*);
118 void handle(struct pollfd*, struct client*);
120 void mark_nonblock(int);
121 int make_soket(int);
122 void do_accept(int, struct tls*, struct pollfd*, struct client*);
123 void goodbye(struct pollfd*, struct client*);
124 void loop(struct tls*, int, int);
126 void usage(const char*);
128 /* utf8.c */
129 int valid_multibyte_utf8(struct parser*);
131 /* iri.c */
132 int parse_iri(char*, struct iri*, const char**);
133 int trim_req_iri(char*);
135 #endif