Blame


1 d5aba4c7 2020-12-24 op /*
2 d5aba4c7 2020-12-24 op * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 d5aba4c7 2020-12-24 op *
4 d5aba4c7 2020-12-24 op * Permission to use, copy, modify, and distribute this software for any
5 d5aba4c7 2020-12-24 op * purpose with or without fee is hereby granted, provided that the above
6 d5aba4c7 2020-12-24 op * copyright notice and this permission notice appear in all copies.
7 d5aba4c7 2020-12-24 op *
8 d5aba4c7 2020-12-24 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d5aba4c7 2020-12-24 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d5aba4c7 2020-12-24 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d5aba4c7 2020-12-24 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d5aba4c7 2020-12-24 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d5aba4c7 2020-12-24 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d5aba4c7 2020-12-24 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d5aba4c7 2020-12-24 op */
16 d5aba4c7 2020-12-24 op
17 488f059a 2020-12-24 op #ifndef GMID_H
18 488f059a 2020-12-24 op #define GMID_H
19 488f059a 2020-12-24 op
20 488f059a 2020-12-24 op #include <arpa/inet.h>
21 488f059a 2020-12-24 op #include <netinet/in.h>
22 488f059a 2020-12-24 op
23 488f059a 2020-12-24 op #include <poll.h>
24 488f059a 2020-12-24 op #include <stdio.h>
25 488f059a 2020-12-24 op #include <stdlib.h>
26 488f059a 2020-12-24 op #include <syslog.h>
27 488f059a 2020-12-24 op #include <tls.h>
28 488f059a 2020-12-24 op #include <unistd.h>
29 488f059a 2020-12-24 op
30 488f059a 2020-12-24 op #ifndef __OpenBSD__
31 488f059a 2020-12-24 op # define pledge(a, b) 0
32 488f059a 2020-12-24 op # define unveil(a, b) 0
33 488f059a 2020-12-24 op #endif
34 488f059a 2020-12-24 op
35 488f059a 2020-12-24 op #ifndef INFTIM
36 488f059a 2020-12-24 op # define INFTIM -1
37 488f059a 2020-12-24 op #endif
38 488f059a 2020-12-24 op
39 488f059a 2020-12-24 op #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
40 488f059a 2020-12-24 op
41 488f059a 2020-12-24 op /* large enough to hold a copy of a gemini URL and still have extra room */
42 488f059a 2020-12-24 op #define PATHBUF 2048
43 488f059a 2020-12-24 op
44 488f059a 2020-12-24 op #define SUCCESS 20
45 488f059a 2020-12-24 op #define TEMP_FAILURE 40
46 488f059a 2020-12-24 op #define NOT_FOUND 51
47 488f059a 2020-12-24 op #define BAD_REQUEST 59
48 488f059a 2020-12-24 op
49 488f059a 2020-12-24 op #define MAX_USERS 64
50 488f059a 2020-12-24 op
51 488f059a 2020-12-24 op enum {
52 488f059a 2020-12-24 op S_OPEN,
53 488f059a 2020-12-24 op S_INITIALIZING,
54 488f059a 2020-12-24 op S_SENDING,
55 488f059a 2020-12-24 op S_CLOSING,
56 488f059a 2020-12-24 op };
57 488f059a 2020-12-24 op
58 488f059a 2020-12-24 op struct client {
59 488f059a 2020-12-24 op struct tls *ctx;
60 488f059a 2020-12-24 op int state;
61 488f059a 2020-12-24 op int code;
62 488f059a 2020-12-24 op const char *meta;
63 488f059a 2020-12-24 op int fd, waiting_on_child;
64 488f059a 2020-12-24 op pid_t child;
65 488f059a 2020-12-24 op char sbuf[1024]; /* static buffer */
66 488f059a 2020-12-24 op void *buf, *i; /* mmap buffer */
67 488f059a 2020-12-24 op ssize_t len, off; /* mmap/static buffer */
68 488f059a 2020-12-24 op int af;
69 709d6e5e 2021-01-10 op struct sockaddr_storage addr;
70 488f059a 2020-12-24 op };
71 488f059a 2020-12-24 op
72 33d32d1f 2020-12-25 op struct uri {
73 33d32d1f 2020-12-25 op char *schema;
74 33d32d1f 2020-12-25 op char *host;
75 33d32d1f 2020-12-25 op char *port;
76 33d32d1f 2020-12-25 op uint16_t port_no;
77 33d32d1f 2020-12-25 op char *path;
78 33d32d1f 2020-12-25 op char *query;
79 33d32d1f 2020-12-25 op char *fragment;
80 33d32d1f 2020-12-25 op };
81 33d32d1f 2020-12-25 op
82 ef04b551 2021-01-09 op struct parser {
83 ef04b551 2021-01-09 op char *uri;
84 ef04b551 2021-01-09 op struct uri *parsed;
85 ef04b551 2021-01-09 op const char *err;
86 ef04b551 2021-01-09 op };
87 ef04b551 2021-01-09 op
88 488f059a 2020-12-24 op enum {
89 488f059a 2020-12-24 op FILE_EXISTS,
90 488f059a 2020-12-24 op FILE_EXECUTABLE,
91 488f059a 2020-12-24 op FILE_DIRECTORY,
92 488f059a 2020-12-24 op FILE_MISSING,
93 488f059a 2020-12-24 op };
94 488f059a 2020-12-24 op
95 33d32d1f 2020-12-25 op /* gmid.c */
96 4a28dd01 2020-12-28 op void sig_handler(int);
97 488f059a 2020-12-24 op int starts_with(const char*, const char*);
98 488f059a 2020-12-24 op
99 488f059a 2020-12-24 op int start_reply(struct pollfd*, struct client*, int, const char*);
100 3d9a1c73 2020-12-28 op ssize_t filesize(int);
101 488f059a 2020-12-24 op const char *path_ext(const char*);
102 488f059a 2020-12-24 op const char *mime(const char*);
103 488f059a 2020-12-24 op int check_path(struct client*, const char*, int*);
104 488f059a 2020-12-24 op int check_for_cgi(char *, char*, struct pollfd*, struct client*);
105 488f059a 2020-12-24 op int open_file(char*, char*, struct pollfd*, struct client*);
106 488f059a 2020-12-24 op int start_cgi(const char*, const char*, const char*, struct pollfd*, struct client*);
107 6c6c7a0e 2020-12-28 op void cgi_poll_on_child(struct pollfd*, struct client*);
108 6c6c7a0e 2020-12-28 op void cgi_poll_on_client(struct pollfd*, struct client*);
109 488f059a 2020-12-24 op void handle_cgi(struct pollfd*, struct client*);
110 488f059a 2020-12-24 op void send_file(char*, char*, struct pollfd*, struct client*);
111 488f059a 2020-12-24 op void send_dir(char*, struct pollfd*, struct client*);
112 488f059a 2020-12-24 op void handle(struct pollfd*, struct client*);
113 488f059a 2020-12-24 op
114 488f059a 2020-12-24 op void mark_nonblock(int);
115 488f059a 2020-12-24 op int make_soket(int);
116 488f059a 2020-12-24 op void do_accept(int, struct tls*, struct pollfd*, struct client*);
117 488f059a 2020-12-24 op void goodbye(struct pollfd*, struct client*);
118 33756bd2 2021-01-10 op void loop(struct tls*, int, int);
119 488f059a 2020-12-24 op
120 488f059a 2020-12-24 op void usage(const char*);
121 488f059a 2020-12-24 op
122 ef04b551 2021-01-09 op /* utf8.c */
123 ef04b551 2021-01-09 op int valid_multibyte_utf8(struct parser*);
124 ef04b551 2021-01-09 op
125 33d32d1f 2020-12-25 op /* uri.c */
126 33d32d1f 2020-12-25 op int parse_uri(char*, struct uri*, const char**);
127 33d32d1f 2020-12-25 op int trim_req_uri(char*);
128 33d32d1f 2020-12-25 op
129 488f059a 2020-12-24 op #endif