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 #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_FAILURE 40
47 #define NOT_FOUND 51
48 #define PROXY_REFUSED 53
49 #define BAD_REQUEST 59
51 #define MAX_USERS 64
53 enum {
54 S_OPEN,
55 S_INITIALIZING,
56 S_SENDING,
57 S_CLOSING,
58 };
60 struct client {
61 struct tls *ctx;
62 int state;
63 int code;
64 const char *meta;
65 int fd, waiting_on_child;
66 pid_t child;
67 char sbuf[1024]; /* static buffer */
68 void *buf, *i; /* mmap buffer */
69 ssize_t len, off; /* mmap/static buffer */
70 int af;
71 struct sockaddr_storage addr;
72 };
74 struct iri {
75 char *schema;
76 char *host;
77 char *port;
78 uint16_t port_no;
79 char *path;
80 char *query;
81 char *fragment;
82 };
84 struct parser {
85 char *iri;
86 struct iri *parsed;
87 const char *err;
88 };
90 enum {
91 FILE_EXISTS,
92 FILE_EXECUTABLE,
93 FILE_DIRECTORY,
94 FILE_MISSING,
95 };
97 /* gmid.c */
98 void sig_handler(int);
99 int starts_with(const char*, const char*);
101 int start_reply(struct pollfd*, struct client*, int, const char*);
102 ssize_t filesize(int);
103 const char *path_ext(const char*);
104 const char *mime(const char*);
105 int check_path(struct client*, const char*, int*);
106 int check_for_cgi(char *, char*, struct pollfd*, struct client*);
107 int open_file(char*, char*, struct pollfd*, struct client*);
108 int start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
109 void cgi_poll_on_child(struct pollfd*, struct client*);
110 void cgi_poll_on_client(struct pollfd*, struct client*);
111 void handle_cgi(struct pollfd*, struct client*);
112 void send_file(char*, char*, struct pollfd*, struct client*);
113 void send_dir(char*, struct pollfd*, struct client*);
114 void handle(struct pollfd*, struct client*);
116 void mark_nonblock(int);
117 int make_soket(int);
118 void do_accept(int, struct tls*, struct pollfd*, struct client*);
119 void goodbye(struct pollfd*, struct client*);
120 void loop(struct tls*, int, int);
122 void usage(const char*);
124 /* utf8.c */
125 int valid_multibyte_utf8(struct parser*);
127 /* iri.c */
128 int parse_iri(char*, struct iri*, const char**);
129 int trim_req_iri(char*);
131 #endif