Go to file
Omar Polo 2b15ad2860 adding openssl test 2021-01-25 15:06:59 +00:00
compat fixing compat compilation 2021-01-22 17:00:56 +00:00
have adding openssl test 2021-01-25 15:06:59 +00:00
regress added support for location blocks 2021-01-24 18:53:26 +00:00
.gitignore add gg, a barebones Gemini client 2021-01-23 16:56:24 +00:00
ChangeLog sync 2021-01-25 14:31:40 +00:00
Dockerfile fix dockerfile 2021-01-21 13:49:52 +00:00
LICENSE added license 2020-10-02 19:54:59 +02:00
Makefile gg may need some compat 2021-01-23 17:39:12 +00:00
README.md fix docker example 2021-01-25 14:55:03 +00:00
configure rework the configless mode: change flags and generate certs 2021-01-25 14:08:31 +00:00
ex.c unveil x the vhosts directories 2021-01-25 15:02:55 +00:00
gg.1 add gg, a barebones Gemini client 2021-01-23 16:56:24 +00:00
gg.c reuse the same buffer for the request and response 2021-01-23 17:45:56 +00:00
gmid.1 added missing argument for -H 2021-01-25 14:32:16 +00:00
gmid.c rework the configless mode: change flags and generate certs 2021-01-25 14:08:31 +00:00
gmid.h rework the configless mode: change flags and generate certs 2021-01-25 14:08:31 +00:00
iri.c trim initial forward slashes 2021-01-21 22:48:16 +00:00
lex.l chroot & drop privileges 2021-01-25 10:30:07 +00:00
mime.c added support for location blocks 2021-01-24 14:11:40 +00:00
parse.y chroot & drop privileges 2021-01-25 10:30:07 +00:00
sample.conf added support for location blocks 2021-01-24 18:53:26 +00:00
sandbox.c we don't need unveil "x" in listener 2021-01-25 14:58:54 +00:00
server.c rework the configless mode: change flags and generate certs 2021-01-25 14:08:31 +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.

It 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.

gmid can be used from the command line to serve local directories

# serve the directory docs
gmid docs

or you can pass a configuration file and have access to all the features

gmid -c /etc/gmid.conf

Please consult the manpage for more information.

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
  • rules per-location
  • directory listings
  • mime types configurable
  • index file configurable
  • sandboxed by default on OpenBSD, Linux and FreeBSD
  • chroot support

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

If the configure scripts fails to pick up something, please open an issue or notify me via email.

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/gmid.conf:...:ro \
    -v /path/to/docs:/var/gemini \
    gmid -c .../gmid.conf

ellipses for brevity.

Local libretls

This is NOT recommended, please try to port LibreSSL/LibreTLS to your distribution of choice or use docker instead.

However, it's possible to link gmid to locally-installed libtls quite easily. (It's how I test gmid on Fedora, for instance)

Let's say you have compiled and installed libretls in $LIBRETLS, then you can build gmid with

./configure CFLAGS="-I$LIBRETLS/include" \
            LDFLAGS="$LIBRETLS/lib/libtls.a -lssl -lcrypto -lpthread"
make

Testing

Execute

make regress

to start the suite. Keep in mind that the suite will create files inside the regress directory and bind the 10965 port.

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/chroot.