Blob
Date:
Tue Sep 6 16:11:09 2022
UTC
Message:
get rid of the CGI support
I really want to get rid of the `executor' process hack for CGI scripts
and its escalation to allow fastcgi and proxying to work on non-OpenBSD.
This drops the CGI support and the `executor' process entirely and is
the first step towards gmid 2.0. It also allows to have more secure
defaults.
On non-OpenBSD systems this means that the sandbox will be deactivated
as soon as fastcgi or proxying are used: you can't open sockets under
FreeBSD' capsicum(4) and I don't want to go thru the pain of making it
work under linux' seccomp/landlock. Patches are always welcome however.
For folks using CGI scripts (hey, I'm one of you!) not all hope is lost:
fcgiwrap or OpenBSD' slowcgi(8) are ways to run CGI scripts as they were
FastCGI applications.
fixes for the documentation and to the non-OpenBSD sandboxes will
follow.
# gmidgmid is a fast Gemini server written with security in mind. Iinitially wrote it to serve static files, but it has grown into afeatureful server.## Features(random order)- sandboxed by default on OpenBSD, Linux and FreeBSD- reconfiguration: reload the running configuration withoutinterruption- automatic redirect/error pages (see `block return`)- IRI support (RFC3987)- automatic certificate generation for config-less mode- reverse proxying- FastCGI support- virtual hosts- location rules- event-based asynchronous I/O model- low memory footprint- small codebase, easily hackable## Internationalisation (IRIs, UNICODE, punycode, all that stuff)Even thought the current Gemini specification doesn't mention anythingin this regard, I do think these are important things and so I triedto implement them in the most user-friendly way I could think of.For starters, gmid has full support for IRI (RFC3987 —Internationalized Resource Identifiers). IRIs are a superset of URIs,so there aren't incompatibilities with URI-only clients.There is full support also for punycode. In theory, the user doesn'teven need to know that punycode is a thing. The hostname in theconfiguration file can (and must be) in the decoded form (e.g. `naïve`and not `xn--nave-6pa`), gmid will do the rest.The only missing piece is UNICODE normalisation of the IRI path: gmiddoesn't do that (yet).## Configurationgmid has a rich configuration file, heavily inspired by OpenBSD'httpd, with every detail carefully documented in the manpage. Here'sa minimal example of a config file:```confserver "example.com" {cert "/path/to/cert.pem"key "/path/to/key.pem"root "/var/gemini/example.com"}```and a slightly more complex one```confipv6 on # enable ipv6# define a macrocert_root = "/path/to/keys"server "example.com" {alias "foobar.com"cert $cert_root "/example.com.crt"key $cert_root "/example.com.pem"root "/var/gemini/example.com"# lang for text/gemini fileslang "en"# only for locations that matches /files/*location "/files/*" {# generate directory listingsauto index on}location "/repo/*" {# change the index file nameindex "README.gmi"lang "it"}}```## Buildinggmid depends on libevent2, OpenSSL/LibreSSL and libtls (providedeither by LibreSSL or libretls). At build time, yacc (or GNU bison)is also needed.The build is as simple as./configuremakeor `make static` to build a statically-linked executable.If the configure scripts fails to pick up something, please open anissue or notify me via email.To install execute:make installPlease keep in mind that the master branch, from time to time, may beaccidentally broken on some platforms. gmid is developed primarily onOpenBSD/amd64 and commits on the master branch don't get always testedin other OSes. Before tagging a release however, a comprehensivetesting on various platform is done to ensure that everything isworking as intended.### TestingExecutemake regressto start the suite. Keep in mind that the regression tests needs tocreate files inside the `regress` directory and bind the 10965 port.## ContributingAny form of contribution is welcome, not only patches or bug reports.If you have a sample configuration for some specific use-case, ascript or anything that could be useful to others, consider adding itto the `contrib` directory.## Architecture/Security considerations**outdated: revisit for gmid 2.0**gmid is composed by four processes: the parent process, the logger,the listener and the executor. The parent process is the only onethat doesn't drop privileges, but all it does is to wait for a SIGHUPto reload the configuration and spawn a new generation of childrenprocess. The logger process gathers the logs and prints 'em tostderr or syslog (for the time being.) The listener process is theonly one that needs internet access and is sandboxed by default. Theexecutor process exists only to fork and execute CGI scripts, andoptionally to connect to FastCGI applications.On OpenBSD the processes are all `pledge(2)`d and `unveil(2)`ed.On FreeBSD, the listener and logger process are sandboxed with `capsicum(4)`.On Linux, a `seccomp(2)` filter is installed in the listener to allowonly certain syscalls, see [sandbox.c](sandbox.c) for more informationabout the BPF program. If available, landlock is used to limit theportion of the file system gmid can access (requires linux 5.13+.)In any case, it's advisable to run gmid inside some sort ofcontainer/jail/chroot.
Omar Polo