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