Blob


1 2021-06-16 Omar Polo <op@omarpolo.com>
3 * parse.y (yylex): drop the dependency on lex by implementing
4 yylex by ourselves (the actual implementation is based off doas'
5 parse.y). This gave us various benefits, like cleaner code, \ to
6 break long lines, better handling of quotes etc...
8 2021-06-11 Omar Polo <op@omarpolo.com>
10 * parse.y (servopt): add `param' keyword
12 * fcgi.c (send_fcgi_req): send GATEWAY_INTERFACE, AUTH_TYPE,
13 REMOTE_USER, TLS_CLIENT_ISSUER, TLS_CLIENT_HASH, TLS_VERSION,
14 TLS_CIPHER, TLS_CIPHER_STRENGTH and TLS_CLIENT_NOT_BEFORE/AFTER.
15 (send_fcgi_req): support a custom list of params
17 2021-05-24 Omar Polo <op@omarpolo.com>
19 * gg.c: move `gg' to regress, as it's only used for the tests
21 2021-05-12 Omar Polo <op@omarpolo.com>
23 * 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
25 2021-05-09 Omar Polo <op@omarpolo.com>
27 * server.c (apply_fastcgi): added fastcgi support!
29 2021-05-03 Omar Polo <op@omarpolo.com>
31 * parse.y: errors on duplicate values instead of silently using only the last value.
33 2021-04-30 Omar Polo <op@omarpolo.com>
35 * server.c (fmt_sbuf): ensure %p (path) is always absolute
37 * gmid.c (load_vhosts): allow ``root'' rule to be specified per-location block
39 2021-04-29 Omar Polo <op@omarpolo.com>
41 * parse.y (servopt): added ``alias'' option to define hostname aliases for a server
43 2021-04-28 Omar Polo <op@omarpolo.com>
45 * gmid.c (main): pidfile support with `-P pidfile'
47 2021-04-27 Omar Polo <op@omarpolo.com>
49 * parse.y (servopt): added ``env'' option to define environment vars for CGI scripts
51 * log.c (fatal): lower the log priority for fatal errors from CRIT to ERR
53 2021-04-25 Omar Polo <op@omarpolo.com>
55 * server.c (open_dir): sort the auto index alphabetically
57 2021-04-21 Omar Polo <op@omarpolo.com>
59 * mime.c (load_default_mime): use `text/x-patch' for .patch and .diff files
61 2021-04-14 Omar Polo <op@omarpolo.com>
63 * log.c (handle_imsg_log): print the datetime when logging to stderr
65 2021-04-13 Omar Polo <op@omarpolo.com>
67 * ex.c (launch_cgi): define TLS_VERSION, TLS_CIPHER and TLS_CIPHER_STRENGTH for CGI scripts
69 2021-04-12 Omar Polo <op@omarpolo.com>
71 * 1.6.1 tagged
73 * iri.c (path_clean): fix possible infinite loop in the IRI parsing code.
75 2021-03-31 Omar Polo <op@omarpolo.com>
77 * gmid.h (struct vhost): remove limits on the number of vhosts and location blocks
79 * gmid.c (mkdirs): fix recursive mkdirs for configless mode
81 2021-03-29 Omar Polo <op@omarpolo.com>
83 * Makefile (static): fixed `static' target
85 2021-03-29 kornellapacz @ github
87 * Dockerfile: add missing libevent-dev dependency, thanks!
89 2021-03-27 Omar Polo <op@omarpolo.com>
91 * gmid.h (struct client): correctly handle CGI scripts that replies with the maximum header length allowed
93 2021-03-20 Omar Polo <op@omarpolo.com>
95 * 1.6 tagged
97 * sandbox.c (sandbox_logger_process): add capsicum to the logger process
99 2021-03-19 Omar Polo <op@omarpolo.com>
101 * gmid.c (main): use imsg for all IPC; only the main process
102 listens for SIGHUP: this means that finally the config reload will
103 work with OpenBSD' rc (and probably other service manager too)
105 2021-02-22 Omar Polo <op@omarpolo.com>
107 * log.c (log_request): add `log on/off' to enable/disable logs per-server or per-location
109 2021-02-09 Omar Polo <op@omarpolo.com>
111 * parse.y (locopt): add `require client ca' rule to require client certs signed by a specified CA
113 2021-02-07 Omar Polo <op@omarpolo.com>
115 * ex.c (do_exec): [cgi] split the query in words if needed and add them to the argv
116 (launch_cgi): define TLS_CLIENT_NOT_BEFORE/NOT_AFTER in CGI scripts
118 * parse.y (option): added prefork option
120 2021-02-06 Omar Polo <op@omarpolo.com>
122 * parse.y (locopt): added ``block return'' and ``strip'' options
123 (servopt): add the ``entrypoint'' option
125 2021-02-05 Omar Polo <op@omarpolo.com>
127 * 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.
129 2021-02-04 Omar Polo <op@omarpolo.com>
131 * gmid.c (main): reload configuration on SIGHUP, without disconnecting the clients
133 2021-02-02 Omar Polo <op@omarpolo.com>
135 * server.c (handle_dirlist_head): print the header in the directory listing
136 (open_file): cgi follows globbing rules, just like location and hostname matching
138 2021-02-01 Omar Polo <op@omarpolo.com>
140 * parse.y (servopt): require absolute paths in config file
142 2021-01-31 Omar Polo <op@omarpolo.com>
144 * gmid.c (main): cgi scripts now have only std{in,out,err} open
146 2021-01-30 Omar Polo <op@omarpolo.com>
148 * 1.5 tagged
149 * server.c: change precedence of location rules
151 2021-01-29 Omar Polo <op@omarpolo.com>
153 * iri.c (parse_authority): accept a wider range of unicode
154 codepoints while parsing the host name.
156 2021-01-26 Omar Polo <op@omarpolo.com>
158 * puny.c (puny_decode): initial punycode support!
160 2021-01-25 Omar Polo <op@omarpolo.com>
162 * gmid.1: manpage improvements (example and usage)
164 * gmid.c (main): Dropping -C, -K, -f, changing the meaning of -d:
165 now it's the certificate directory. Serve the directory given as
166 positional argument (or the current one) when running in
167 config-less mode.
168 (gen_certificate): automatically generate a certificate
170 * parse.y (option): added chroot and user options
172 2021-01-24 Omar Polo <op@omarpolo.com>
174 * server.c (open_dir): add directory listing (disabled by default)
176 * parse.y (vhost): added support for location blocks
178 * server.c (send_dir): make the directory index customizable
180 2021-01-23 Omar Polo <op@omarpolo.com>
182 * gg.c (main): added gg, a barebone gemini client. used by the
183 regress suite
185 2021-01-21 Omar Polo <op@omarpolo.com>
187 * configure: added a configure script
189 * server.c (handle_handshake): glob for vhost domain
191 * gmid.c (log_request): logs the full IRI and the response code (even for CGI)
193 2021-01-19 Omar Polo <op@omarpolo.com>
195 * parse.y (servopt): add "lang" server option
196 (servopt): moving "default type" from global options to server options
198 * Dockerfile: add a dockerfile
200 2021-01-18 Omar Polo <op@omarpolo.com>
202 * parse.y (option): add mime and "default type" options for media types.
204 2021-01-17 Omar Polo <op@omarpolo.com>
206 * sandbox.c (sandbox): added initial seccomp(2) support
208 2021-01-15 Omar Polo <op@omarpolo.com>
210 * cgi.c (start_cgi): set SERVER_NAME to the vhost when executing CGI scripts
212 * parse.y (option): add ability to specify the tls versions with "protocols"
214 * gmid.c (handle_open_conn): ensure the port number of the request matches
216 * sandbox.c (sandbox): sandbox on OpenBSD (pledge/unveil, as before) and on FreeBSD (capsicum) too
218 * sample.conf: added sample configuration
220 * gmid.c (main): changed behaviour: daemon off by default
221 (main): changed -c in -C (cert option)
222 (main): changed -k in -K (key option, for consistency with -C)
223 (main): added -c to load a configuration
224 (main): certs, key and doc (-C -K and -d) doesn't have a default value anymore
225 (handle_handshake): add vhosts support
227 2021-01-13 Omar Polo <op@omarpolo.com>
229 * iri.c (parse_scheme): normalize scheme while parsing, so we're
230 RFC3986 compliant.
232 2021-01-11 Omar Polo <op@omarpolo.com>
234 * 1.4 and 1.4.1 tagged
236 * gmid.c (main): ipv6 disabled by default and -6 flag to enable it
237 (handle): reject non-gemini protocols with 53
239 2021-01-10 Omar Polo <op@omarpolo.com>
241 * gmid.c (logs): log also the port of the client
242 (loop): accept both ipv4 and ipv6
244 2020-12-26 Omar Polo <op@omarpolo.com>
246 * uri.c (parse_uri): IRI support
248 2020-12-21 Omar Polo <op@omarpolo.com>
250 * gmid.c (main): -d supports relative paths
252 2020-12-02 Omar Polo <op@omarpolo.com>
254 * gmid.c: logging reworked and daemonize. The -l option was
255 removed: now it logs on syslog if -f (foreground) is not passed.
257 2020-11-18 Omar Polo <op@omarpolo.com>
259 * 1.3.2 tagged
261 * gmid.c (url_after_proto): fix bug introduced in last version
262 regarding full URLs with explicit gemini protocol.
264 * 1.3.1 tagged
266 * gmid.c (url_after_proto): correct url parsing: accept URLs
267 without explicit protocol
268 (url_start_of_request): correct handling of relative URLs
270 2020-11-17 Omar Polo <op@omarpolo.com>
272 * gmid.c (main): add flag -p to change the port
274 2020-11-10 Omar Polo <op@omarpolo.com>
276 * ChangeLog: 1.3 tagged, fixed ChangeLog format
278 * gmid.c (open_file): added support for path parameters for CGI
279 scripts
281 2020-11-06 Omar Polo <op@omarpolo.com>
283 * gmid.1: great improvements to the documentation
285 * gmid.c (url_after_proto): ensure that the requested protocol is
286 “gemini” and not something else that’s long 6 bytes.
288 * gmid.c (loop): added support for cgi scripts (can handle multiple
289 concurrently)
291 2020-11-06 Omar Polo <op@venera>
293 * gmid.1: added option to log to a file
295 2020-11-05 Omar Polo <op@omarpolo.com>
297 * gmid.c (filetypes): add MIME type for xml files
299 2020-11-03 Omar Polo <op@omarpolo.com>
301 * 1.2 tagged
303 * gmid.c (main): ignore SIGPIPE
305 2020-10-14 Omar Polo <op@omarpolo.com>
307 * 1.1 tagged
309 * switching to mmap() based file handling
311 2020-10-07 Omar Polo <op@omarpolo.com>
313 * 1.0 tagged