Go to file
Omar Polo 81bab00246 split out iri.h from gmid.h 2023-07-22 13:49:07 +00:00
compat update imsg 2023-07-02 08:55:38 +00:00
contrib rework the configure script 2023-06-13 16:36:10 +00:00
have add compat for endian (now required by imsg) 2023-07-02 09:14:44 +00:00
regress improve fcgi test: send more than one chunk of data 2023-07-01 18:38:22 +00:00
site update the site for 1.8.6 2022-12-02 15:21:20 +00:00
.cirrus.yml hopefully fix the macos ci 2023-06-23 22:40:58 +00:00
.dockerignore fix the dockerfile 2021-07-11 20:58:42 +00:00
.gitignore rework the configure script 2023-06-13 16:36:10 +00:00
ChangeLog update changelog 2023-06-24 14:25:12 +00:00
LICENSE copyright years 2022-07-04 09:48:39 +00:00
Makefile there's no more any `static' target 2023-06-24 13:10:31 +00:00
README.md enrich the description of the server process 2023-07-01 18:44:42 +00:00
config.c rename do_accept() -> server_accept() 2023-07-01 22:00:08 +00:00
configure add compat for endian (now required by imsg) 2023-07-02 09:14:44 +00:00
configure.local.example add an example configure.local based on mandoc-portable' one 2022-07-04 13:44:53 +00:00
crypto.c fmt 2023-07-22 08:19:26 +00:00
dirs.c don't set d_reclen 2022-07-07 08:54:26 +00:00
fcgi.c parse (and log) the header from fastcgi 2023-07-01 18:37:59 +00:00
ge.1 add ge: gemini export! 2022-09-07 20:47:33 +00:00
ge.c rename do_accept() -> server_accept() 2023-07-01 22:00:08 +00:00
gg.1 gg.1: improve -d description 2023-06-24 13:04:40 +00:00
gg.c avoid arithmetic on void pointers (GNU extension) 2023-06-13 16:36:06 +00:00
gmid.8 multiple -v don't make it more verbose anymore 2023-07-01 14:28:12 +00:00
gmid.c change log_request to take the code and meta unpacked 2023-07-01 18:41:46 +00:00
gmid.conf.5 make `listen on' defaults on port 1965 2023-06-29 15:01:16 +00:00
gmid.h split out iri.h from gmid.h 2023-07-22 13:49:07 +00:00
iri.c more is*() unsigned char cast 2022-11-29 23:03:55 +00:00
iri.h split out iri.h from gmid.h 2023-07-22 13:49:07 +00:00
log.c add missing include of gmid.h 2023-06-06 11:57:33 +00:00
log.h switch to the more usual log.c 2023-06-06 11:46:40 +00:00
logger.c copyright years++ 2023-06-24 10:07:17 +00:00
mime.c copyright years++ 2023-06-24 10:07:17 +00:00
parse.y make `listen on' defaults on port 1965 2023-06-29 15:01:16 +00:00
proc.c rework check 2023-06-24 19:42:31 +00:00
proc.h add a privsep crypto engine 2023-06-11 11:03:59 +00:00
proxy.c typo 2023-07-01 18:42:16 +00:00
puny.c fix various compilation errors 2021-02-12 12:47:20 +00:00
sandbox.c copyright years++ 2023-06-24 10:07:17 +00:00
server.c rename do_accept() -> server_accept() 2023-07-01 22:00:08 +00:00
utf8.c fmt 2021-10-18 10:05:55 +00:00
utils.c copyright years++ 2023-06-24 10:07:17 +00:00

README.md

gmid

Warning The master branch is WIP: it's what gmid 2.0 will be, with breaking changes et al. Please use the latest release from the 1.8 branch for a stable and documented experience, thank you.

gmid is a full-featured Gemini server written with security in mind. It can serve static files, has optional FastCGI and proxying support, and a rich configuration syntax.

gg is a simple command-line Gemini client, and ge a stripped-down config-less gmid version used to quickly serve a directory locally over Gemini.

Internationalisation (IRIs, UNICODE, punycode, all that stuff)

Even thought the current Gemini specification doesn't mention anything in this regard, I do think these are important things and so I tried to 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't even need to know that punycode is a thing. The hostname in the configuration 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: gmid doesn't do that (yet).

Configuration

gmid has a rich configuration file, heavily inspired by OpenBSD' httpd(8), with every detail carefully documented in the manpage. Here's a minimal example of a config file:

server "example.com" {
	listen on * port 1965
	cert "/path/to/cert.pem"
	key  "/path/to/key.pem"
	root "/var/gemini/example.com"
}

and a slightly more complex one

cert_root = "/path/to/keys"

server "example.com" {
	listen on * port 1965

	alias "foobar.com"

	cert $cert_root "/example.com.crt"
	key  $cert_root "/example.com.pem"
	root "/var/gemini/example.com"

	# lang for text/gemini files
	lang "en"

	# only for locations that matches /files/*
	location "/files/*" {
		# generate directory listings
		auto index on
	}

	location "/repo/*" {
		# change the index file name
		index "README.gmi"
		lang "it"
	}
}

Building

gmid depends on libevent2, OpenSSL/LibreSSL and libtls (provided either by LibreSSL or libretls). At build time, yacc (or GNU bison) is also needed.

The build is as simple as

$ ./configure
$ make

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

To install execute:

# make install

Please keep in mind that the master branch, from time to time, may be accidentally broken on some platforms. gmid is developed primarily on OpenBSD/amd64 and commits on the master branch don't get always tested in other OSes. Before tagging a release however, a comprehensive testing on various platform is done to ensure that everything is working as intended.

Testing

Execute

$ make regress

to start the suite. Keep in mind that the regression tests needs to create a few file inside the regress directory and bind the 10965 port.

Contributing

Any form of contribution is welcome, not only patches or bug reports. If you have a sample configuration for some specific use-case, a script or anything that could be useful to others, consider adding it to the contrib directory.

Architecture/Security considerations

The internal architecture was revisited for the 2.0 release. For previous releases, please refer to previous revision of this file.

gmid has a privsep design, where the operations done by the daemon are splitted into multiple processes:

  • main: the main process is the only one that keeps the original privileges. It opens the TLS certificates on the behalf of the server and crypto processes and reloads the configuration upon SIGHUP.

  • logger: logs the requests.

  • server: listen on the binded ports and serves the request. This also include speaking FastCGI and proxying requests.

  • crypto: (used only on OpenBSD at the time of writing.) Holds the TLS private keys to avoid a compromised server process to disclose them.