Go to file
Omar Polo 12042ad700 add a configure script and some compat
tested on openbsd, alpine and void
2021-01-21 11:57:46 +00:00
compat add a configure script and some compat 2021-01-21 11:57:46 +00:00
have add a configure script and some compat 2021-01-21 11:57:46 +00:00
test fix runtime test on linux 2021-01-17 11:49:32 +00:00
.gitignore add a configure script and some compat 2021-01-21 11:57:46 +00:00
ChangeLog sync 2021-01-21 09:17:19 +00:00
Dockerfile add a dockerfile 2021-01-18 23:15:45 +00:00
LICENSE added license 2020-10-02 19:54:59 +02:00
Makefile add a configure script and some compat 2021-01-21 11:57:46 +00:00
README.md drop mention to the static target 2021-01-21 09:19:13 +00:00
configure add a configure script and some compat 2021-01-21 11:57:46 +00:00
ex.c don't leak file descriptors 2021-01-19 18:16:09 +00:00
gmid.1 add globbing notice and sync example with actual flags 2021-01-21 09:17:13 +00:00
gmid.c don't crash on wrong vhost or missing SNI 2021-01-21 08:26:21 +00:00
gmid.h add a configure script and some compat 2021-01-21 11:57:46 +00:00
iri.c wording 2021-01-16 20:14:02 +00:00
iri_test.c normalize host name when parsing the IRI 2021-01-15 09:27:42 +00:00
lex.l add "lang" server option 2021-01-19 10:58:29 +00:00
mime.c moving "default type" from global options to server options 2021-01-19 11:28:41 +00:00
parse.y moving "default type" from global options to server options 2021-01-19 11:28:41 +00:00
sample.conf add "lang" server option 2021-01-19 10:58:29 +00:00
sandbox.c drop seccomp.h: not needed 2021-01-21 11:55:52 +00:00
server.c use fnmatch on the domain name 2021-01-21 09:07:26 +00:00
utf8.c s/uri/iri since we accept IRIs 2021-01-11 13:08:00 +00:00

README.md

gmid

dead simple, zero configuration Gemini server

gmid is a simple and minimal Gemini server. It can run without configuration, so it's well suited for local development, but at the same time has a configuration file flexible enough to meet the requirements of most capsules.

gmid was initially written to serve static files, but can also optionally execute CGI scripts. It was also written with security in mind: on Linux, FreeBSD and OpenBSD is sandboxed via seccomp(2), capsicum(4)and pledge(2)+unveil(2) respectively.

Features

  • IRI support (RFC3987)
  • dual stack: can serve over both IPv4 and IPv6
  • CGI scripts
  • (very) low memory footprint
  • small codebase, easily hackable
  • virtual hosts
  • sandboxed by default on OpenBSD, Linux and FreeBSD

Drawbacks

  • not suited for very busy hosts. If you receive an high number of connection per-second you'd probably want to run multiple gmid instances behind relayd/haproxy or a different server.

Building

gmid depends on a POSIX libc and libtls (provided either by LibreSSL or libretls). At build time, flex and yacc (or GNU bison) are also needed.

The build is as simple as

make

To install execute:

make install

If you have trouble installing LibreSSL or libretls, as they aren't available as package on various Linux distribution, you can use Docker to build a gmid image with:

docker build -t gmid .

and then run it with something along the lines of

docker run --rm -it -p 1965:1965 \
    -v /path/to/cert.pem:...:ro \
    -v /path/to/key.pem:...:ro \
    -v /path/to/docs:/var/gemini \
    gmid -f -d /var/gemini -K ... -C ...

ellipses used for brevity.

Architecture/Security considerations

gmid is composed by two processes: a listener and an executor. The listener process is the only one that needs internet access and is sandboxed. When a CGI script needs to be executed, the executor (outside of the sandbox) sets up a pipe and gives one end to the listener, while the other is bound to the CGI script standard output. This way, is still possible to execute CGI scripts without restriction even in the presence of a sandbox.

On OpenBSD, the listener process runs with the stdio recvfd rpath inet pledges and has unveil(2)ed only the directories that it serves; the executor has stdio sendfd proc exec as pledges.

On FreeBSD, the executor process is sandboxed with capsicum(4).

On Linux, a seccomp(2) filter is installed to allow only certain syscalls, see sandbox.c for more information on the BPF program.

In any case, you are invited to run gmid inside some sort of container/jail.