Blame


1 137def5f 2021-07-02 op 2021-07-02 Omar Polo <op@omarpolo.com>
2 137def5f 2021-07-02 op
3 137def5f 2021-07-02 op * sandbox.c (filter): seccomp filter reworked: now it should work on x86 and possibly other arches too!
4 137def5f 2021-07-02 op
5 5777923b 2021-06-29 op 2021-06-29 Omar Polo <op@omarpolo.com>
6 6b86655a 2021-06-29 op
7 6b86655a 2021-06-29 op * parse.y (conf): don't require the strict order macro > options > servers
8 98f52178 2021-06-29 op c-like strings: when two or more strings are next to each others, concat them
9 f98e9045 2021-06-29 op
10 f98e9045 2021-06-29 op * gmid.c (main): add -D to define macros from the cmd line
11 3b21cca3 2021-06-29 op
12 3b21cca3 2021-06-29 op * parse.y (yylex): allow to define macros in the config file
13 5777923b 2021-06-29 op
14 5777923b 2021-06-29 op * gmid.c (main): use getopt_long, add --help as synonym of -h and -V/--version
15 5777923b 2021-06-29 op
16 2c43dcce 2021-06-17 op 2021-06-17 Omar Polo <op@omarpolo.com>
17 2c43dcce 2021-06-17 op
18 2c43dcce 2021-06-17 op * gmid.1: document `log' option
19 2c43dcce 2021-06-17 op
20 74f0778b 2021-06-16 op 2021-06-16 Omar Polo <op@omarpolo.com>
21 74f0778b 2021-06-16 op
22 74f0778b 2021-06-16 op * parse.y (yylex): drop the dependency on lex by implementing
23 74f0778b 2021-06-16 op yylex by ourselves (the actual implementation is based off doas'
24 74f0778b 2021-06-16 op parse.y). This gave us various benefits, like cleaner code, \ to
25 74f0778b 2021-06-16 op break long lines, better handling of quotes etc...
26 74f0778b 2021-06-16 op
27 f740b61b 2021-06-11 op 2021-06-11 Omar Polo <op@omarpolo.com>
28 c92b802b 2021-06-11 op
29 c92b802b 2021-06-11 op * parse.y (servopt): add `param' keyword
30 f740b61b 2021-06-11 op
31 f740b61b 2021-06-11 op * fcgi.c (send_fcgi_req): send GATEWAY_INTERFACE, AUTH_TYPE,
32 f740b61b 2021-06-11 op REMOTE_USER, TLS_CLIENT_ISSUER, TLS_CLIENT_HASH, TLS_VERSION,
33 f740b61b 2021-06-11 op TLS_CIPHER, TLS_CIPHER_STRENGTH and TLS_CLIENT_NOT_BEFORE/AFTER.
34 f740b61b 2021-06-11 op (send_fcgi_req): support a custom list of params
35 f740b61b 2021-06-11 op
36 3a1bd9ab 2021-05-27 op 2021-05-24 Omar Polo <op@omarpolo.com>
37 3a1bd9ab 2021-05-27 op
38 3a1bd9ab 2021-05-27 op * gg.c: move `gg' to regress, as it's only used for the tests
39 3a1bd9ab 2021-05-27 op
40 1eb3631d 2021-05-12 op 2021-05-12 Omar Polo <op@omarpolo.com>
41 1eb3631d 2021-05-12 op
42 1eb3631d 2021-05-12 op * utils.c (gen_certificate): don't add gmid as organisation when generating the certificate, and now it set the version 3, so it's compatible with java/android
43 1eb3631d 2021-05-12 op
44 84821dc0 2021-05-09 op 2021-05-09 Omar Polo <op@omarpolo.com>
45 84821dc0 2021-05-09 op
46 84821dc0 2021-05-09 op * server.c (apply_fastcgi): added fastcgi support!
47 84821dc0 2021-05-09 op
48 419e32b0 2021-05-03 op 2021-05-03 Omar Polo <op@omarpolo.com>
49 419e32b0 2021-05-03 op
50 419e32b0 2021-05-03 op * parse.y: errors on duplicate values instead of silently using only the last value.
51 419e32b0 2021-05-03 op
52 fdea6aa0 2021-04-30 op 2021-04-30 Omar Polo <op@omarpolo.com>
53 737a6b50 2021-04-30 op
54 737a6b50 2021-04-30 op * server.c (fmt_sbuf): ensure %p (path) is always absolute
55 fdea6aa0 2021-04-30 op
56 fdea6aa0 2021-04-30 op * gmid.c (load_vhosts): allow ``root'' rule to be specified per-location block
57 fdea6aa0 2021-04-30 op
58 cc8c2901 2021-04-29 op 2021-04-29 Omar Polo <op@omarpolo.com>
59 cc8c2901 2021-04-29 op
60 cc8c2901 2021-04-29 op * parse.y (servopt): added ``alias'' option to define hostname aliases for a server
61 cc8c2901 2021-04-29 op
62 8e8b2e25 2021-04-28 op 2021-04-28 Omar Polo <op@omarpolo.com>
63 8e8b2e25 2021-04-28 op
64 8e8b2e25 2021-04-28 op * gmid.c (main): pidfile support with `-P pidfile'
65 8e8b2e25 2021-04-28 op
66 e6ca8eb1 2021-04-28 op 2021-04-27 Omar Polo <op@omarpolo.com>
67 9cc630aa 2021-04-28 op
68 9cc630aa 2021-04-28 op * parse.y (servopt): added ``env'' option to define environment vars for CGI scripts
69 e6ca8eb1 2021-04-28 op
70 e6ca8eb1 2021-04-28 op * log.c (fatal): lower the log priority for fatal errors from CRIT to ERR
71 e6ca8eb1 2021-04-28 op
72 11c98667 2021-04-25 op 2021-04-25 Omar Polo <op@omarpolo.com>
73 11c98667 2021-04-25 op
74 11c98667 2021-04-25 op * server.c (open_dir): sort the auto index alphabetically
75 11c98667 2021-04-25 op
76 4d820b6c 2021-04-21 op 2021-04-21 Omar Polo <op@omarpolo.com>
77 4d820b6c 2021-04-21 op
78 4d820b6c 2021-04-21 op * mime.c (load_default_mime): use `text/x-patch' for .patch and .diff files
79 4d820b6c 2021-04-21 op
80 b3342582 2021-04-14 op 2021-04-14 Omar Polo <op@omarpolo.com>
81 b3342582 2021-04-14 op
82 b3342582 2021-04-14 op * log.c (handle_imsg_log): print the datetime when logging to stderr
83 b3342582 2021-04-14 op
84 89541eee 2021-04-13 op 2021-04-13 Omar Polo <op@omarpolo.com>
85 89541eee 2021-04-13 op
86 89541eee 2021-04-13 op * ex.c (launch_cgi): define TLS_VERSION, TLS_CIPHER and TLS_CIPHER_STRENGTH for CGI scripts
87 89541eee 2021-04-13 op
88 b211d0f7 2021-04-12 op 2021-04-12 Omar Polo <op@omarpolo.com>
89 b211d0f7 2021-04-12 op
90 b211d0f7 2021-04-12 op * 1.6.1 tagged
91 b211d0f7 2021-04-12 op
92 b211d0f7 2021-04-12 op * iri.c (path_clean): fix possible infinite loop in the IRI parsing code.
93 b211d0f7 2021-04-12 op
94 e0ebdf2d 2021-03-31 op 2021-03-31 Omar Polo <op@omarpolo.com>
95 e0ebdf2d 2021-03-31 op
96 b8e64ccd 2021-03-31 op * gmid.h (struct vhost): remove limits on the number of vhosts and location blocks
97 b8e64ccd 2021-03-31 op
98 e0ebdf2d 2021-03-31 op * gmid.c (mkdirs): fix recursive mkdirs for configless mode
99 e0ebdf2d 2021-03-31 op
100 33b455ad 2021-03-31 op 2021-03-29 Omar Polo <op@omarpolo.com>
101 33b455ad 2021-03-31 op
102 33b455ad 2021-03-31 op * Makefile (static): fixed `static' target
103 33b455ad 2021-03-31 op
104 33b455ad 2021-03-31 op 2021-03-29 kornellapacz @ github
105 33b455ad 2021-03-31 op
106 33b455ad 2021-03-31 op * Dockerfile: add missing libevent-dev dependency, thanks!
107 33b455ad 2021-03-31 op
108 c836cdfa 2021-03-29 op 2021-03-27 Omar Polo <op@omarpolo.com>
109 c836cdfa 2021-03-29 op
110 c836cdfa 2021-03-29 op * gmid.h (struct client): correctly handle CGI scripts that replies with the maximum header length allowed
111 c836cdfa 2021-03-29 op
112 7e3aaf37 2021-03-20 op 2021-03-20 Omar Polo <op@omarpolo.com>
113 7e3aaf37 2021-03-20 op
114 c8249bad 2021-03-20 op * 1.6 tagged
115 c8249bad 2021-03-20 op
116 7e3aaf37 2021-03-20 op * sandbox.c (sandbox_logger_process): add capsicum to the logger process
117 7e3aaf37 2021-03-20 op
118 ad5301d1 2021-03-20 op 2021-03-19 Omar Polo <op@omarpolo.com>
119 ad5301d1 2021-03-20 op
120 ad5301d1 2021-03-20 op * gmid.c (main): use imsg for all IPC; only the main process
121 ad5301d1 2021-03-20 op listens for SIGHUP: this means that finally the config reload will
122 ad5301d1 2021-03-20 op work with OpenBSD' rc (and probably other service manager too)
123 ad5301d1 2021-03-20 op
124 793835cb 2021-02-23 op 2021-02-22 Omar Polo <op@omarpolo.com>
125 793835cb 2021-02-23 op
126 793835cb 2021-02-23 op * log.c (log_request): add `log on/off' to enable/disable logs per-server or per-location
127 793835cb 2021-02-23 op
128 02be96c6 2021-02-09 op 2021-02-09 Omar Polo <op@omarpolo.com>
129 02be96c6 2021-02-09 op
130 02be96c6 2021-02-09 op * parse.y (locopt): add `require client ca' rule to require client certs signed by a specified CA
131 02be96c6 2021-02-09 op
132 a709ddf5 2021-02-07 op 2021-02-07 Omar Polo <op@omarpolo.com>
133 a709ddf5 2021-02-07 op
134 9f006a21 2021-02-07 op * ex.c (do_exec): [cgi] split the query in words if needed and add them to the argv
135 b63e30ff 2021-02-07 op (launch_cgi): define TLS_CLIENT_NOT_BEFORE/NOT_AFTER in CGI scripts
136 9f006a21 2021-02-07 op
137 a709ddf5 2021-02-07 op * parse.y (option): added prefork option
138 a709ddf5 2021-02-07 op
139 6abda252 2021-02-06 op 2021-02-06 Omar Polo <op@omarpolo.com>
140 6abda252 2021-02-06 op
141 6abda252 2021-02-06 op * parse.y (locopt): added ``block return'' and ``strip'' options
142 e3ddf390 2021-02-06 op (servopt): add the ``entrypoint'' option
143 6abda252 2021-02-06 op
144 8404ec30 2021-02-05 op 2021-02-05 Omar Polo <op@omarpolo.com>
145 8404ec30 2021-02-05 op
146 8404ec30 2021-02-05 op * iri.c (parse_query): don't %-decode the query part. This affects the value of QUERY_STRING for CGI scripts too, since that must be %-encoded and we're currently shipping it decoded.
147 8404ec30 2021-02-05 op
148 ca21e100 2021-02-04 op 2021-02-04 Omar Polo <op@omarpolo.com>
149 ca21e100 2021-02-04 op
150 ca21e100 2021-02-04 op * gmid.c (main): reload configuration on SIGHUP, without disconnecting the clients
151 ca21e100 2021-02-04 op
152 5f715ce4 2021-02-02 op 2021-02-02 Omar Polo <op@omarpolo.com>
153 5f715ce4 2021-02-02 op
154 5f715ce4 2021-02-02 op * server.c (handle_dirlist_head): print the header in the directory listing
155 87f2b68b 2021-02-02 op (open_file): cgi follows globbing rules, just like location and hostname matching
156 5f715ce4 2021-02-02 op
157 e17642a7 2021-02-01 op 2021-02-01 Omar Polo <op@omarpolo.com>
158 e17642a7 2021-02-01 op
159 e17642a7 2021-02-01 op * parse.y (servopt): require absolute paths in config file
160 e17642a7 2021-02-01 op
161 ee29b5a6 2021-01-31 op 2021-01-31 Omar Polo <op@omarpolo.com>
162 ee29b5a6 2021-01-31 op
163 ee29b5a6 2021-01-31 op * gmid.c (main): cgi scripts now have only std{in,out,err} open
164 ee29b5a6 2021-01-31 op
165 e9992347 2021-01-30 op 2021-01-30 Omar Polo <op@omarpolo.com>
166 e9992347 2021-01-30 op
167 38f8a798 2021-02-01 op * 1.5 tagged
168 e9992347 2021-01-30 op * server.c: change precedence of location rules
169 e9992347 2021-01-30 op
170 dceca3b6 2021-01-29 op 2021-01-29 Omar Polo <op@omarpolo.com>
171 dceca3b6 2021-01-29 op
172 dceca3b6 2021-01-29 op * iri.c (parse_authority): accept a wider range of unicode
173 dceca3b6 2021-01-29 op codepoints while parsing the host name.
174 dceca3b6 2021-01-29 op
175 3300cbe0 2021-01-27 op 2021-01-26 Omar Polo <op@omarpolo.com>
176 3300cbe0 2021-01-27 op
177 3300cbe0 2021-01-27 op * puny.c (puny_decode): initial punycode support!
178 3300cbe0 2021-01-27 op
179 145ba43e 2021-01-25 op 2021-01-25 Omar Polo <op@omarpolo.com>
180 145ba43e 2021-01-25 op
181 a5d04ea0 2021-01-25 op * gmid.1: manpage improvements (example and usage)
182 a5d04ea0 2021-01-25 op
183 a5d04ea0 2021-01-25 op * gmid.c (main): Dropping -C, -K, -f, changing the meaning of -d:
184 a5d04ea0 2021-01-25 op now it's the certificate directory. Serve the directory given as
185 a5d04ea0 2021-01-25 op positional argument (or the current one) when running in
186 a5d04ea0 2021-01-25 op config-less mode.
187 a5d04ea0 2021-01-25 op (gen_certificate): automatically generate a certificate
188 a5d04ea0 2021-01-25 op
189 145ba43e 2021-01-25 op * parse.y (option): added chroot and user options
190 145ba43e 2021-01-25 op
191 ba7b2faa 2021-01-24 op 2021-01-24 Omar Polo <op@omarpolo.com>
192 ba7b2faa 2021-01-24 op
193 252908e6 2021-01-24 op * server.c (open_dir): add directory listing (disabled by default)
194 252908e6 2021-01-24 op
195 c8b74339 2021-01-24 op * parse.y (vhost): added support for location blocks
196 c8b74339 2021-01-24 op
197 ba7b2faa 2021-01-24 op * server.c (send_dir): make the directory index customizable
198 ba7b2faa 2021-01-24 op
199 ba7b2faa 2021-01-24 op 2021-01-23 Omar Polo <op@omarpolo.com>
200 ba7b2faa 2021-01-24 op
201 ba7b2faa 2021-01-24 op * gg.c (main): added gg, a barebone gemini client. used by the
202 ba7b2faa 2021-01-24 op regress suite
203 ba7b2faa 2021-01-24 op
204 1213c735 2021-01-21 op 2021-01-21 Omar Polo <op@omarpolo.com>
205 1213c735 2021-01-21 op
206 0ac2dcec 2021-01-21 op * configure: added a configure script
207 0ac2dcec 2021-01-21 op
208 1213c735 2021-01-21 op * server.c (handle_handshake): glob for vhost domain
209 1213c735 2021-01-21 op
210 1213c735 2021-01-21 op * gmid.c (log_request): logs the full IRI and the response code (even for CGI)
211 1213c735 2021-01-21 op
212 17b09e3c 2021-01-18 op 2021-01-19 Omar Polo <op@omarpolo.com>
213 17b09e3c 2021-01-18 op
214 05c23a54 2021-01-19 op * parse.y (servopt): add "lang" server option
215 6119e13e 2021-01-19 op (servopt): moving "default type" from global options to server options
216 05c23a54 2021-01-19 op
217 17b09e3c 2021-01-18 op * Dockerfile: add a dockerfile
218 17b09e3c 2021-01-18 op
219 e7ecf9a5 2021-01-18 op 2021-01-18 Omar Polo <op@omarpolo.com>
220 e7ecf9a5 2021-01-18 op
221 d89aa763 2021-01-18 op * parse.y (option): add mime and "default type" options for media types.
222 e7ecf9a5 2021-01-18 op
223 7a11e8a5 2021-01-17 op 2021-01-17 Omar Polo <op@omarpolo.com>
224 7a11e8a5 2021-01-17 op
225 7a11e8a5 2021-01-17 op * sandbox.c (sandbox): added initial seccomp(2) support
226 7a11e8a5 2021-01-17 op
227 15902770 2021-01-15 op 2021-01-15 Omar Polo <op@omarpolo.com>
228 15902770 2021-01-15 op
229 bd726b55 2021-01-15 op * cgi.c (start_cgi): set SERVER_NAME to the vhost when executing CGI scripts
230 bd726b55 2021-01-15 op
231 5bc3c98e 2021-01-15 op * parse.y (option): add ability to specify the tls versions with "protocols"
232 5bc3c98e 2021-01-15 op
233 8696c5ea 2021-01-15 op * gmid.c (handle_open_conn): ensure the port number of the request matches
234 8696c5ea 2021-01-15 op
235 dafb57b8 2021-01-15 op * sandbox.c (sandbox): sandbox on OpenBSD (pledge/unveil, as before) and on FreeBSD (capsicum) too
236 dafb57b8 2021-01-15 op
237 6214c127 2021-01-15 op * sample.conf: added sample configuration
238 6214c127 2021-01-15 op
239 15902770 2021-01-15 op * gmid.c (main): changed behaviour: daemon off by default
240 15902770 2021-01-15 op (main): changed -c in -C (cert option)
241 15902770 2021-01-15 op (main): changed -k in -K (key option, for consistency with -C)
242 15902770 2021-01-15 op (main): added -c to load a configuration
243 15902770 2021-01-15 op (main): certs, key and doc (-C -K and -d) doesn't have a default value anymore
244 15902770 2021-01-15 op (handle_handshake): add vhosts support
245 15902770 2021-01-15 op
246 9939ddcf 2021-01-13 op 2021-01-13 Omar Polo <op@omarpolo.com>
247 9939ddcf 2021-01-13 op
248 9939ddcf 2021-01-13 op * iri.c (parse_scheme): normalize scheme while parsing, so we're
249 9939ddcf 2021-01-13 op RFC3986 compliant.
250 9939ddcf 2021-01-13 op
251 85dff1f9 2021-01-11 op 2021-01-11 Omar Polo <op@omarpolo.com>
252 85dff1f9 2021-01-11 op
253 9939ddcf 2021-01-13 op * 1.4 and 1.4.1 tagged
254 9939ddcf 2021-01-13 op
255 85dff1f9 2021-01-11 op * gmid.c (main): ipv6 disabled by default and -6 flag to enable it
256 7b1d9790 2021-01-11 op (handle): reject non-gemini protocols with 53
257 85dff1f9 2021-01-11 op
258 709d6e5e 2021-01-10 op 2021-01-10 Omar Polo <op@omarpolo.com>
259 709d6e5e 2021-01-10 op
260 709d6e5e 2021-01-10 op * gmid.c (logs): log also the port of the client
261 33756bd2 2021-01-10 op (loop): accept both ipv4 and ipv6
262 709d6e5e 2021-01-10 op
263 60ff0355 2020-12-26 op 2020-12-26 Omar Polo <op@omarpolo.com>
264 60ff0355 2020-12-26 op
265 60ff0355 2020-12-26 op * uri.c (parse_uri): IRI support
266 60ff0355 2020-12-26 op
267 4f12842d 2020-12-21 op 2020-12-21 Omar Polo <op@omarpolo.com>
268 4f12842d 2020-12-21 op
269 4f12842d 2020-12-21 op * gmid.c (main): -d supports relative paths
270 4f12842d 2020-12-21 op
271 d7802bb4 2020-12-02 op 2020-12-02 Omar Polo <op@omarpolo.com>
272 d7802bb4 2020-12-02 op
273 d7802bb4 2020-12-02 op * gmid.c: logging reworked and daemonize. The -l option was
274 d7802bb4 2020-12-02 op removed: now it logs on syslog if -f (foreground) is not passed.
275 d7802bb4 2020-12-02 op
276 ae2ad03e 2020-11-18 op 2020-11-18 Omar Polo <op@omarpolo.com>
277 ae2ad03e 2020-11-18 op
278 c603f126 2020-11-18 op * 1.3.2 tagged
279 c603f126 2020-11-18 op
280 c603f126 2020-11-18 op * gmid.c (url_after_proto): fix bug introduced in last version
281 c603f126 2020-11-18 op regarding full URLs with explicit gemini protocol.
282 c603f126 2020-11-18 op
283 dd389558 2020-11-18 op * 1.3.1 tagged
284 dd389558 2020-11-18 op
285 ae2ad03e 2020-11-18 op * gmid.c (url_after_proto): correct url parsing: accept URLs
286 ae2ad03e 2020-11-18 op without explicit protocol
287 dd389558 2020-11-18 op (url_start_of_request): correct handling of relative URLs
288 ae2ad03e 2020-11-18 op
289 721e2325 2020-11-18 op 2020-11-17 Omar Polo <op@omarpolo.com>
290 721e2325 2020-11-18 op
291 721e2325 2020-11-18 op * gmid.c (main): add flag -p to change the port
292 721e2325 2020-11-18 op
293 a5d310bc 2020-11-10 op 2020-11-10 Omar Polo <op@omarpolo.com>
294 a5d310bc 2020-11-10 op
295 d431188c 2020-11-10 op * ChangeLog: 1.3 tagged, fixed ChangeLog format
296 d431188c 2020-11-10 op
297 a5d310bc 2020-11-10 op * gmid.c (open_file): added support for path parameters for CGI
298 a5d310bc 2020-11-10 op scripts
299 a5d310bc 2020-11-10 op
300 3c19febb 2020-11-06 op 2020-11-06 Omar Polo <op@omarpolo.com>
301 3c19febb 2020-11-06 op
302 0ed56567 2020-11-06 op * gmid.1: great improvements to the documentation
303 0ed56567 2020-11-06 op
304 3c19febb 2020-11-06 op * gmid.c (url_after_proto): ensure that the requested protocol is
305 3c19febb 2020-11-06 op “gemini” and not something else that’s long 6 bytes.
306 3c19febb 2020-11-06 op
307 aff8d190 2020-11-06 op * gmid.c (loop): added support for cgi scripts (can handle multiple
308 aff8d190 2020-11-06 op concurrently)
309 aff8d190 2020-11-06 op
310 2c3a40fa 2020-11-06 op 2020-11-06 Omar Polo <op@venera>
311 2c3a40fa 2020-11-06 op
312 2c3a40fa 2020-11-06 op * gmid.1: added option to log to a file
313 2c3a40fa 2020-11-06 op
314 dd080e1f 2020-11-05 op 2020-11-05 Omar Polo <op@omarpolo.com>
315 dd080e1f 2020-11-05 op
316 dd080e1f 2020-11-05 op * gmid.c (filetypes): add MIME type for xml files
317 dd080e1f 2020-11-05 op
318 19f68393 2020-11-03 op 2020-11-03 Omar Polo <op@omarpolo.com>
319 19f68393 2020-11-03 op
320 19f68393 2020-11-03 op * 1.2 tagged
321 19f68393 2020-11-03 op
322 d431188c 2020-11-10 op * gmid.c (main): ignore SIGPIPE
323 d431188c 2020-11-10 op
324 2b897a2c 2020-10-14 op 2020-10-14 Omar Polo <op@omarpolo.com>
325 2b897a2c 2020-10-14 op
326 4f6eb772 2020-10-14 op * 1.1 tagged
327 2b897a2c 2020-10-14 op
328 d431188c 2020-11-10 op * switching to mmap() based file handling
329 d431188c 2020-11-10 op
330 2b897a2c 2020-10-14 op 2020-10-07 Omar Polo <op@omarpolo.com>
331 2b897a2c 2020-10-14 op
332 2b897a2c 2020-10-14 op * 1.0 tagged