Blob


1 .\" Copyright (c) 2021 Omar Polo <op@omarpolo.com>
2 .\"
3 .\" Permission to use, copy, modify, and distribute this software for any
4 .\" purpose with or without fee is hereby granted, provided that the above
5 .\" copyright notice and this permission notice appear in all copies.
6 .\"
7 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
13 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 .Dd $Mdocdate: January 30 2021$
15 .Dt GMID 1
16 .Os
17 .Sh NAME
18 .Nm gmid
19 .Nd simple and secure Gemini server
20 .Sh SYNOPSIS
21 .Nm
22 .Bk -words
23 .Op Fl fnv
24 .Op Fl c Ar config
25 .Op Fl P Ar pidfile
26 .Ek
27 .Nm
28 .Bk -words
29 .Op Fl 6hv
30 .Op Fl d Pa certs-dir
31 .Op Fl H Ar hostname
32 .Op Fl p Ar port
33 .Op Fl x Pa cgi
34 .Op Pa dir
35 .Ek
36 .Sh DESCRIPTION
37 .Nm
38 is a simple and minimal gemini server that can serve static files and
39 execute CGI scripts.
40 It can run without a configuration file with a limited set of features
41 available.
42 .Pp
43 .Nm
44 rereads the configuration file when it receives
45 .Dv SIGHUP .
46 .Pp
47 The options are as follows:
48 .Bl -tag -width 14m
49 .It Fl c Pa config
50 Specify the configuration file.
51 .It Fl f
52 Stays and logs on the foreground.
53 .It Fl n
54 Check that the configuration is valid, but don't start the server.
55 .It Fl P Pa pidfile
56 Write
57 .Nm
58 pid to the given path.
59 .El
60 .Pp
61 If no configuration file is given,
62 .Nm
63 will look for the following options
64 .Bl -tag -width 14m
65 .It Fl 6
66 Enable IPv6.
67 .It Fl d Pa certs-path
68 Directory where certificates for the config-less mode are stored.
69 By default is
70 .Pa $XDG_DATA_HOME/gmid ,
71 i.e.
72 .Pa ~/.local/share/gmid .
73 .It Fl H Ar hostname
74 The hostname, by default
75 .Ar localhost .
76 Certificates for the given
77 .Ar hostname
78 are searched inside the
79 .Pa certs-dir
80 directory given with the
81 .Fl d
82 option.
83 They have the form
84 .Pa hostname.cert.pem
85 and
86 .Pa hostname.key.pem .
87 If a certificate or key don't exists for a given hostname they
88 will be automatically generated.
89 .It Fl h
90 Print the usage and exit.
91 .It Fl p Ar port
92 The port to listen on, by default 1965.
93 .It Fl v
94 Verbose mode.
95 Multiple
96 .Fl v
97 options increase the verbosity.
98 .It Fl x Pa path
99 Enable execution of CGI scripts.
100 See the description of the
101 .Ic cgi
102 option in the section
103 .Sq Servers
104 below to learn how
105 .Pa path
106 is processed.
107 Cannot be provided more than once.
108 .It Pa dir
109 The root directory to serve.
110 By default the current working directory is assumed.
111 .El
112 .Sh CONFIGURATION FILE
113 The configuration file is divided into two sections:
114 .Bl -tag -width xxxx
115 .It Sy Global Options
116 Global settings for
117 .Nm .
118 .It Sy Servers
119 Virtual hosts definition.
120 .El
121 .Pp
122 Within the sections, empty lines are ignored and comments can be put
123 anywhere in the file using a hash mark
124 .Pq Sq # ,
125 and extend to the end of the current line.
126 A boolean is either the symbol
127 .Sq on
128 or
129 .Sq off .
130 A string is a sequence of characters wrapped in double quotes,
131 .Dq like this .
132 .Ss Global Options
133 .Bl -tag -width 12m
134 .It Ic chroot Pa path
135 .Xr chroot 2
136 the process to the given
137 .Pa path .
138 The daemon has to be run with root privileges and thus the option
139 .Ic user
140 needs to be provided, so privileges can be dropped.
141 Note that
142 .Nm
143 will enter the chroot after loading the TLS keys, but before opening
144 the virtual host root directories.
145 It's recommended to keep the TLS keys outside the chroot.
146 Future version of
147 .Nm
148 may enforce this.
149 .It Ic ipv6 Ar bool
150 Enable or disable IPv6 support.
151 By default is off.
152 .It Ic mime Ar mime-type Ar file-extension
153 Add a mapping for the given
154 .Ar file-extension
155 to the given
156 .Ar mime-type .
157 Both argument are strings.
158 .It Ic port Ar portno
159 The port to listen on.
160 By default is 1965.
161 .It Ic prefork Ar number
162 Run the specified number of server processes.
163 This increases the performance and prevents delays when connecting to
164 a server.
165 .Nm
166 runs 3 server processes by default, when not in config-less mode.
167 The maximum number allowed is 16.
168 .It Ic protocols Ar string
169 Specify the TLS protocols to enable.
170 Refer to
171 .Xr tls_config_parse_protocols 3
172 for the valid protocol string values.
173 By default, both TLSv1.3 and TLSv1.2 are enabled.
174 Use
175 .Dq tlsv1.3
176 to enable only TLSv1.3.
177 .It Ic user Ar string
178 Run the daemon as the given user.
179 .El
180 .Ss Servers
181 Every virtual host is defined by a
182 .Ic server
183 block:
184 .Bl -tag -width Ds
185 .It Ic server Ar hostname Brq ...
186 Match the server name using shell globbing rules.
187 This can be an explicit name,
188 .Ar www.example.com ,
189 or a name including a wildcards,
190 .Ar *.example.com .
191 .El
192 .Pp
193 Followed by a block of options that is enclosed in curly brackets:
194 .Bl -tag -width Ds
195 .It Ic alias Ar name
196 Specify an additional alias
197 .Ar name
198 for this server.
199 .It Ic auto Ic index Ar bool
200 If no index file is found, automatically generate a directory listing.
201 It's disabled by default.
202 .It Ic block Op Ic return Ar code Op Ar meta
203 Send a reply and close the connection;
204 .Ar code
205 is 40
206 and
207 .Ar meta
208 is
209 .Dq temporary failure
210 by default.
211 If
212 .Ar code
213 is in the 3x range, then
214 .Ar meta
215 must be provided.
216 Inside
217 .Ar meta ,
218 the following special sequences are replaced:
219 .Bl -tag -compact
220 .It \&%\&%
221 is replaced with a single
222 .Sq \&% .
223 .It \&%p
224 is replaced with the request path.
225 .It \&%q
226 is replaced with the query string of the request.
227 .It \&%P
228 is replaced with the server port.
229 .It \&%N
230 is replaced with the server name.
231 .El
232 .It Ic cert Pa file
233 Path to the certificate to use for this server.
234 The
235 .Pa file
236 should contain a PEM encoded certificate.
237 This option is mandatory.
238 .It Ic cgi Pa path
239 Execute CGI scripts that matches
240 .Pa path
241 using shell globbing rules.
242 .It Ic default type Ar string
243 Set the default media type that is used if the media type for a
244 specified extension is not found.
245 If not specified, the
246 .Ic default type
247 is set to
248 .Dq application/octet-stream .
249 .It Ic entrypoint Pa path
250 Handle all the requests for the current virtual host using the
251 CGI script at
252 .Pa path .
253 .It Ic env Ar name Ar value
254 Set the environment variable
255 .Ar name
256 to
257 .Ar value
258 when executing CGI scripts.
259 Can be provided more than once.
260 .It Ic index Ar string
261 Set the directory index file.
262 If not specified, it defaults to
263 .Pa index.gmi .
264 .It Ic key Pa file
265 Specify the private key to use for this server.
266 The
267 .Pa file
268 should contain a PEM encoded private key.
269 This option is mandatory.
270 .It Ic lang Ar string
271 Specify the language tag for the text/gemini content served.
272 If not specified, no
273 .Dq lang
274 parameter will be added in the response.
275 .It Ic location Pa path Brq ...
276 Specify server configuration rules for a specific location.
277 The
278 .Pa path
279 argument will be matched against the request path with shell globbing
280 rules.
281 In case of multiple location statements in the same context, the first
282 matching location will be put into effect and the later ones ignored.
283 Therefore is advisable to match for more specific paths first and for
284 generic ones later on.
286 .Ic location
287 section may include most of the server configuration rules
288 except
289 .Ic alias , Ic cert , Ic env , Ic key , Ic location ,
290 .Ic entrypoint No and Ic cgi .
291 .It Ic root Pa directory
292 Specify the root directory for this server.
293 It's relative to the chroot, if enabled.
294 .It Ic require Ic client Ic ca Pa path
295 Allow requests only from clients that provide a certificate signed by
296 the CA certificate in
297 .Pa path .
298 It needs to be a PEM-encoded certificate and it's not relative to the
299 chroot.
300 .It Ic strip Ar number
301 Strip
302 .Ar number
303 components from the beginning of the path before doing a lookup in the
304 root directory.
305 It's also considered for the
306 .Ar meta
307 parameter in the scope of a
308 .Ic block return .
309 .El
310 .Sh CGI
311 When a request for an executable file matches the
312 .Ic cgi
313 rule, that file will be execute and its output fed to the client.
314 .Pp
315 The CGI scripts are executed in the directory they reside and inherit
316 the environment from
317 .Nm
318 with these additional variables set:
319 .Bl -tag -width 24m
320 .It Ev GATEWAY_INTERFACE
321 .Dq CGI/1.1
322 .It Ev GEMINI_DOCUMENT_ROOT
323 The root directory of the virtual host.
324 .It Ev GEMINI_SCRIPT_FILENAME
325 Full path to the CGI script being executed.
326 .It Ev GEMINI_URL
327 The full IRI of the request.
328 .It Ev GEMINI_URL_PATH
329 The path of the request.
330 .It Ev PATH_INFO
331 The portion of the requested path that is derived from the the IRI
332 path hierarchy following the part that identifies the script itself.
333 Can be unset.
334 .It Ev PATH_TRANSLATED
335 Present if and only if
336 .Ev PATH_INFO
337 is set.
338 It represent the translation of the
339 .Ev PATH_INFO .
340 .Nm
341 builds this by appending the
342 .Ev PATH_INFO
343 to the virtual host directory root.
344 .It Ev QUERY_STRING
345 The decoded query string.
346 .It Ev REMOTE_ADDR , Ev REMOTE_HOST
347 Textual representation of the client IP.
348 .It Ev REQUEST_METHOD
349 This is present only for RFC3875 (CGI) compliance.
350 It's always set to the empty string.
351 .It Ev SCRIPT_NAME
352 The part of the
353 .Ev GEMINI_URL_PATH
354 that identifies the current CGI script.
355 .It Ev SERVER_NAME
356 The name of the server
357 .It Ev SERVER_PORT
358 The port the server is listening on.
359 .It Ev SERVER_PROTOCOL
360 .Dq GEMINI
361 .It Ev SERVER_SOFTWARE
362 The name and version of the server, i.e.
363 .Dq gmid/1.5
364 .It Ev AUTH_TYPE
365 The string "Certificate" if the client used a certificate, otherwise
366 unset.
367 .It Ev REMOTE_USER
368 The subject of the client certificate if provided, otherwise unset.
369 .It Ev TLS_CLIENT_ISSUER
370 The is the issuer of the client certificate if provided, otherwise
371 unset.
372 .It Ev TLS_CLIENT_HASH
373 The hash of the client certificate if provided, otherwise unset.
374 The format is
375 .Dq ALGO:HASH .
376 .It Ev TLS_VERSION
377 The TLS version negotiated with the peer.
378 .It Ev TLS_CIPHER
379 The cipher suite negotiated with the peer.
380 .It Ev TLS_CIPHER_STRENGTH
381 The strength in bits for the symmetric cipher that is being used with
382 the peer.
383 .It Ev TLS_CLIENT_NOT_AFTER
384 The time corresponding to the end of the validity period of the peer
385 certificate in the ISO 8601 format
386 .Pq e.g. Dq 2021-02-07T20:17:41Z .
387 .It Ev TLS_CLIENT_NOT_BEFORE
388 The time corresponding to the start of the validity period of the peer
389 certificate in the ISO 8601 format.
390 .El
391 .Pp
392 .Sh MIME
393 To auto-detect the MIME type of the response
394 .Nm
395 looks at the file extension and consults its internal table.
396 By default the following mappings are loaded, but they can be
397 overridden or extended using the
398 .Ic mime
399 configuration option.
400 If no MIME is found, the value of
401 .Ic default type
402 matching the file
403 .Ic location
404 will be used, which is
405 .Dq application/octet-stream
406 by default.
407 .Pp
408 .Bl -tag -offset indent -width 14m -compact
409 .It diff
410 text/x-patch
411 .It gemini, gmi
412 text/gemini
413 .It gif
414 image/gif
415 .It jpeg
416 image/jpeg
417 .It jpg
418 image/jpeg
419 .It markdown, md
420 text/markdown
421 .It patch
422 text/x-patch
423 .It pdf
424 application/pdf
425 .It png
426 image/png
427 .It svg
428 image/svg+xml
429 .It txt
430 text/plain
431 .It xml
432 text/xml
433 .El
434 .Sh EXAMPLES
435 Serve the current directory
436 .Bd -literal -offset indent
437 $ gmid .
438 .Ed
439 .Pp
440 To serve the directory
441 .Pa docs
442 and enable CGI scripts inside
443 .Pa docs/cgi ,
444 you can
445 .Bd -literal -offset indent
446 $ mkdir docs/cgi
447 $ cat <<EOF > docs/cgi/hello
448 #!/bin/sh
449 printf "20 text/plain\\r\\n"
450 echo "hello world"
451 EOF
452 $ chmod +x docs/cgi/hello
453 $ gmid -x '/cgi/*' docs
454 .Ed
455 .Pp
456 The following is an example of a possible configuration for a site
457 that enables only TLSv1.3, adds a mime type for the file extension
458 "rtf" and defines two virtual host:
459 .Bd -literal -offset indent
460 ipv6 on # enable ipv6
462 protocols "tlsv1.3"
464 mime "application/rtf" "rtf"
466 server "example.com" {
467 cert "/path/to/cert.pem"
468 key "/path/to/key.pem"
469 root "/var/gemini/example.com"
472 server "it.example.com" {
473 cert "/path/to/cert.pem"
474 key "/path/to/key.pem"
475 root "/var/gemini/it.example.com"
476 cgi "/cgi-bin/*"
477 lang "it"
479 .Ed
480 .Pp
481 Yet another example, showing how to enable a
482 .Ic chroot
483 and use
484 .Ic location
485 rule
486 .Bd -literal -offset indent
487 chroot "/var/gemini"
488 user "_gmid"
490 server "example.com" {
491 cert "/path/to/cert.pem"
492 key "/path/to/key.pem"
493 root "/example.com" # in the /var/gemini chroot
495 location "/static/*" {
496 auto index on
497 index "index.gemini"
500 .Ed
501 .Sh ACKNOWLEDGEMENTS
502 .Nm
503 uses the
504 .Dq Flexible and Economical
505 UTF-8 decoder written by
506 .An Bjoern Hoehrmann .
507 .Sh AUTHORS
508 .An -nosplit
509 The
510 .Nm
511 program was written by
512 .An Omar Polo Aq Mt op@omarpolo.com .
513 .Sh CAVEATS
514 .Bl -bullet
515 .It
516 The root directories of all virtual hosts are opened during the daemon
517 startup; this means that if a root directory gets deleted and then
518 re-created,
519 .Nm
520 won't be able to serve files inside that directory until a restart.
521 This restriction applies only to the root directories and not their content.
522 .It
523 a %2F sequence is indistinguishable from a literal slash: this is not
524 RFC3986-compliant.
525 .It
526 a %00 sequence is treated as invalid character and thus rejected.
527 .El