diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-09-02 05:21:42 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-09-02 05:21:42 +0000 |
commit | 587a3eb1ae3f4e39ba293b5f397b5241c0fee54d (patch) | |
tree | 1a36c43e4d00626696bcb49ca3cbd5a4ae0cad5f /doc | |
parent | ccdf2a1af57d2ee5012ac1c3d46be24519b4f31d (diff) | |
download | tipidee-587a3eb1ae3f4e39ba293b5f397b5241c0fee54d.tar.gz tipidee-587a3eb1ae3f4e39ba293b5f397b5241c0fee54d.tar.xz tipidee-587a3eb1ae3f4e39ba293b5f397b5241c0fee54d.zip |
More doc; unify tipidee-config exit codes
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/tipidee-config-preprocess.html | 46 | ||||
-rw-r--r-- | doc/tipidee-config.html | 91 | ||||
-rw-r--r-- | doc/tipidee.conf.html | 2 | ||||
-rw-r--r-- | doc/tipideed.html | 18 |
4 files changed, 147 insertions, 10 deletions
diff --git a/doc/tipidee-config-preprocess.html b/doc/tipidee-config-preprocess.html index 86fb22e..9b6ea38 100644 --- a/doc/tipidee-config-preprocess.html +++ b/doc/tipidee-config-preprocess.html @@ -49,17 +49,55 @@ appropriately included files. </li> <li> tipidee-config-preprocess then exits 0. </li> </ul> +<h2> Exit codes </h2> + <p> - TODO: write this page. +If tipidee-config-preprocess exits nonzero, +<a href="tipidee-config.html">tipidee-config</a> will immediately exit +with the same error code. </p> -<h2> Exit codes </h2> - -<h2> Options </h2> +<dl> + <dt> 0 </dt> <dd> success </dd> + <dt> 1 </dt> <dd> syntax error </dd> + <dt> 2 </dt> <dd> invalid inclusion (cycle or unauthorized duplicate) </dd> + <dt> 100 </dt> <dd> wrong usage </dd> + <dt> 111 </dt> <dd> system call failed </dd> +</dl> <h2> Detailed operation </h2> +<ul> + <li> tipidee-config-preprocess reads <em>file</em>, looking for lines +that start with a <tt>!</tt> (bang). It prints other lines as is to its +stdout. </li> + <li> A line that starts with <tt>!</tt> is not printed. Instead, it +is parsed for an <tt>!include</tt>, <tt>!includedir</tt> or <tt>!included:</tt> +directive. </li> + <li> <tt>!included:</tt> directives immediately inform the file currently +being preprocessed. </li> + <li> <tt>!include <em>foo</em></tt> and <tt>!includedir <em>bar</em></tt> +directives cause tipidee-config-preprocess to immediately start preprocessing +file <em>foo</em> or all files in directory <em>bar</em>; this can happen +recursively. When it's done preprocessing <em>foo</em> or <em>bar</em>, +tipidee-config-preprocess resumes its current file where it had left it. </li> + <li> Around inclusions, tipidee-config-preprocess prints special lines +starting with a single <tt>!</tt> (bang) and containing line and file +information. This helps <a href="tipidee-config.html">tipidee-config</a> +track which file the data it's reading comes from and accurately report +errors. </li> +</ul> + <h2> Notes </h2> +<ul> + <li> tipidee-config-preprocess does not know anything about the +<a href="tipidee.conf.html"><tt>/etc/tipidee.conf</tt></a> file format. +It was purposefully written to be generic: it only reads lines and +includes files based on <tt>!include</tt> information, and inserts +<tt>!</tt> lines into the output stream to help with error reporting. +It can be used as a preprocessor for other tools. </li> +</ul> + </body> </html> diff --git a/doc/tipidee-config.html b/doc/tipidee-config.html index d6a6f56..66953ab 100644 --- a/doc/tipidee-config.html +++ b/doc/tipidee-config.html @@ -27,7 +27,7 @@ web server. <h2> Interface </h2> <pre> - tipidee-config [ -i <em>ifile</em> ] [ -o <em>ofile</em> ] + tipidee-config [ -i <em>textfile</em> ] [ -o <em>cdbfile</em> ] [ -m <em>mode</em> ] </pre> <ul> @@ -36,17 +36,98 @@ configuration file, parses it, and outputs a cdb file to <tt>/etc/tipidee.conf.c <li> It then exits 0. </li> </ul> -<p> - TODO: write this page. -</p> - <h2> Exit codes </h2> +<dl> + <dt> 0 </dt> <dd> success </dd> + <dt> 1 </dt> <dd> syntax error </dd> + <dt> 2 </dt> <dd> invalid inclusion (cycle or unauthorized duplicate) </dd> + <dt> 100 </dt> <dd> wrong usage </dd> + <dt> 111 </dt> <dd> system call failed </dd> + <dt> 129+ </dt> <dd> <a href="tipidee-config-preprocess.html">tipidee-config-preprocess</a> was killed </dd> +</dl> + <h2> Options </h2> +<dl> + <dt> -i <em>textfile</em> </dt> + <dd> Use <em>textfile</em> as input instead of <tt>/etc/tipidee.conf</tt> </dd> + <dt> -o <em>cdbfile</em> </dt> + <dd> Use <em>cdbfile</em> as output instead of <tt>/etc/tipidee.conf.cdb</tt>. +You can then use the <tt>-f <em>cdbfile</em> option to +<a href="tipideed.html">tipideed</>. </dd> + <dt> -m <em>mode</em> </dt> + <dd> Create the output file with permissions <em>mode</em> (given in octal). +Default is <strong>0644</strong>. Note that the output file should be readable +by the user <a href="tipideed.html">tipideed</> is started as. If +<a href="tipideed.html">tipideed</> is started as root and drops its privileges +itself, the file can be made private. </dd> +</dl> + <h2> Detailed operation </h2> +<ul> + <li> tipidee-config spawns a +<a href="tipidee-config-preprocess.html">tipidee-config-preprocess</a> helper +that reads <tt>/etc/tipidee.conf</tt>, takes care of all the inclusions, and +feeds it a single stream of data. If +<a href="tipidee-config-preprocess.html">tipidee-config-preprocess</a> dies +with a nonzero exit code at any point, tipidee-config exits with the same +error code, or 128 plus the signal number if +<a href="tipidee-config-preprocess.html">tipidee-config-preprocess</a> was +killed by a signal. </li> + <li> It reads the data and parses it, expecting it to follow the +<a href="tipidee.conf.html">/etc/tipidee.conf file format</a>. </li> + </li> On failure, it exits nonzero with an error message. </li> + <li> It supplies sane defaults for configuration values that have not +been provided. </li> + <li> It writes the data as a <a href="https://cr.yp.to/cdb/cdb.txt">cdb file</a>, +<tt>/etc/tipidee.conf.cdb</tt>. A previously existing file is replaced +atomically. </li> + <li> Running instances of <a href="tipideed.html">tipideed</a> will keep +using the old <tt>/etc/tipidee.conf.cdb</tt> data until their connection is closed; +new instances will use the new one. </li> +</ul> + <h2> Notes </h2> +<ul> + <li> It is by design that tipidee uses this unconventional "compile the +configuration file" approach. There are several benefits to it: + <ul> + <li> Parsing a configuration file is not very efficient. Every instance of +<a href="tipideed.html">tipideed</a> would have to do it on startup, and +there is an instance of <a href="tipideed.html">tipideed</a> for every +HTTP connection. Pre-parsing the configuration makes the initial server +response faster. </li> + <li> Data parsed by <a href="tipideed.html">tipideed</a> needs to use +<em>private dirty</em> memory for every instance, even if the data is +static — and that means incompressible RAM. By contrast, a cdb file +is mapped read-only, so its pages are <em>shared clean</em>, which means it's +essentially free. </li> + <li> <a href="tipideed.html">tipideed</a> is exposed to the network. You +want to its attack surface to be as small as possible. Taking the parsing code +out of it goes a long way — admittedly, having to parse HTTP in the +first place is more attack surface than a simple config file can ever hope +to be, but every little bit helps. </li> + <li> Run time is the worst time to detect errors. Nobody wants their +service to go down because Bob edited the live config file and made a typo. +Having the parsing done <em>offline</em> prevents that: tipidee-config +doubles as a syntax checker, and when it runs successfully, you know the +service will pick up the new config and be fine. </li> + <li> In general, decoupling the <em>live configuration</em>, which is +the one used by live services (here, <tt>/etc/tipidee.conf.cdb</tt>), from +the <em>working configuration</em>, which is the one that humans can +tinker with (here, <tt>/etc/tipidee.conf</tt>), is a good idea. Don't +touch production until you're ready to flip the switch atomically; +tipidee-config is the switch. </li> + </ul> </li> +</ul> + +<p> + Just remember to run <tt>tipidee-config</tt> whenever you make +a modification to your config file. It not insurmountable. +</p> + </body> </html> diff --git a/doc/tipidee.conf.html b/doc/tipidee.conf.html index eb2b7f4..64e3d30 100644 --- a/doc/tipidee.conf.html +++ b/doc/tipidee.conf.html @@ -366,7 +366,7 @@ Except for <tt>domain</tt>, they can only be used after a <tt>domain</tt> direct </p> <ul> - <tt>domain</tt> is a special directive in that it is stateful. Instead of + <li> <tt>domain</tt> is a special directive in that it is stateful. Instead of having a direct effect on the configuration, it merely defines the domain that the next local directives will apply to. <tt>domain example.com</tt> means that a subsequent <tt>cgi /cgi-bin/</tt> line will declare that a resource diff --git a/doc/tipideed.html b/doc/tipideed.html index 97102c5..ce8f5e5 100644 --- a/doc/tipideed.html +++ b/doc/tipideed.html @@ -48,6 +48,18 @@ current working directory, one subdirectory for every domain it hosts. </li> <h2> Exit codes </h2> +<dl> + <dt> 0 </dt> <dd> clean exit. The client closed the connection after a stream of +HTTP exchanges. </dd> + <dt> 100 </dt> <dd> bad usage. tipideed has been run in an incorrect way: bad command +line options, or missing environment variables, etc. </dd> + <dt> 101 </dt> <dd> cannot happen. This signals a bug in tipideed, and comes with an +error message asking you to report the bug. Please do so. </dd> + <dt> 111 </dt> <dd> system call failed. If this happens while serving a request, +tipideed likely has sent a 500 (Internal Server Error) response to the +client before exiting. </dd> +</dl> + <h2> Environment variables </h2> <h2> Options </h2> @@ -56,5 +68,11 @@ current working directory, one subdirectory for every domain it hosts. </li> <h2> Notes </h2> +<ul> + <li> <tt>tipideed</tt> is pronounced <em>tipi-deed</em>. You can also say +<em>tipi-dee-dee</em>, but only if you're the type of person who says +<em>PC computer</em>, <em>NIC card</em> or <em>ATM machine</em>. </li> +</ul> + </body> </html> |