build: Actually compile the `blast' helper program.
[fwd] / fw.1.in
CommitLineData
10a454ad 1.\" -*-nroff-*-
667fb920 2.\"
667fb920 3.\" Manual page for fw
4.\"
5.\" (c) 1999 Straylight/Edgeware
6.\"
7.
8.\"----- Licensing notice ---------------------------------------------------
206212ca 9.\"
667fb920 10.\" This file is part of the `fw' port forwarder.
206212ca 11.\"
667fb920 12.\" `fw' is free software; you can redistribute it and/or modify
13.\" it under the terms of the GNU General Public License as published by
14.\" the Free Software Foundation; either version 2 of the License, or
15.\" (at your option) any later version.
206212ca 16.\"
667fb920 17.\" `fw' is distributed in the hope that it will be useful,
18.\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19.\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20.\" GNU General Public License for more details.
206212ca 21.\"
667fb920 22.\" You should have received a copy of the GNU General Public License
23.\" along with `fw'; if not, write to the Free Software Foundation,
24.\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25.
667fb920 26.\"----- Various bits of fancy styling --------------------------------------
27.
28.\" --- Indented paragraphs with right-aligned tags ---
29.
10a454ad 30.de hP
31.IP
32\h'-\w'\fB\\$1\ \fP'u'\fB\\$1\ \fP\c
33..
667fb920 34.
35.\" --- Verbatim-oid typesetting ---
36.de VS
37.sp 1
38.RS
39.nf
40.ft B
41..
42.de VE
43.ft R
44.fi
45.RE
46.sp 1
47..
48.
333c51f4 49.\" --- Grammar markup ---
50.\"
51.\" This is mainly for the benefit of the automatic scripts which
52.\" generate the grammar summary.
53.
54.de GS
55.PP
56..
57.de GE
58.PP
59..
8cf7c7c2
MW
60.de GL
61..
333c51f4 62.
63.de OS
64.PP
65..
66.de OD
67.RS
68..
69.de OE
70.RE
71..
8cf7c7c2
MW
72.de OL
73..
333c51f4 74.
667fb920 75.\" --- Other bits of styling ---
76.
77.ie t \{\
78. ds o \(bu
79. ds ss \s8\u
80. ds se \d\s0
81. if \n(.g \{\
82. fam P
83. \}
84.\}
85.el \{\
86. ds o o
87. ds ss ^
88. ds se
89.\}
90.
91.\"--------------------------------------------------------------------------
92.
d1c182e7 93.TH fw 1 "1 July 1999" "Straylight/Edgeware" "fw port forwarder"
667fb920 94.
95.\"--------------------------------------------------------------------------
10a454ad 96.SH NAME
667fb920 97.
10a454ad 98fw \- port forwarder
667fb920 99.
100.\"--------------------------------------------------------------------------
10a454ad 101.SH SYNOPSIS
667fb920 102.
10a454ad 103.B fw
c42fddf3 104.RB [ \-dlq ]
105.RB [ \-p
faf9726e 106.IR file ]
10a454ad 107.RB [ \-f
108.IR file ]
fc170a33 109.RB [ \-s
110.IR user ]
111.RB [ \-g
112.IR group ]
10a454ad 113.IR config-stmt ...
667fb920 114.
115.\"--------------------------------------------------------------------------
116.SH "DESCRIPTION"
117.
10a454ad 118The
119.B fw
120program is a simple port forwarder. It supports a number of features
121the author hasn't found in similar programs:
122.TP
123.I "Connection logging"
124Each connection attempt to the forwarder is logged, giving the time of
125the connection, the DNS-resolved hostname (if available), and the user
126name resulting from an RFC931 lookup. These lookups are done
127asynchronously to the main forwarder's operation.
128.TP
129.I "Access control"
130Each forwarded port may have an access control list attached to it.
131Only authorized hosts are allowed to connect. Access control checks are
132performed by quick checks on the client's IP address.
133.TP
134.I "Nonblocking single-process design"
135The internal structure of the server is completely nonblocking. The
136connections don't block; the reading and writing don't block; the name
137lookups don't block. This is all done in a single process, with the
138single exception of the DNS resolver.
667fb920 139.TP
140.I "Support for Unix-domain sockets"
141Connections from and to Unix-domain sockets can be handled just as
96bc31ba 142easily as more normal Internet sockets. Access control doesn't work on
667fb920 143Unix domain sockets, though. (Yet.)
10a454ad 144.SS "Command line options"
145The
146.B fw
147program understands a few simple command line options:
148.TP
149.B "\-h, \-\-help"
150Displays a screen of help text on standard output and exits
151successfully.
152.TP
153.B "\-v, \-\-version"
154Writes the version number to standard output and exits successfully.
155.TP
156.B "\-u, \-\-usage"
157Writes a terse usage summary to standard output and exits successfully.
158.TP
fc170a33 159.B "\-G, \-\-grammar"
160Writes a summary of the configuration file grammar to standard output
161and exits successfully.
162.TP
163.B "\-O, \-\-options"
164Writes a summary of the source and target options to standard output and
165exits successfully.
166.TP
10a454ad 167.BI "\-f, \-\-file=" file
168Read configuration information from
169.IR file .
667fb920 170Equivalent to an
171.RB ` include
172.IR file '
173configuration file statement.
10a454ad 174.TP
667fb920 175.B "\-d, \-\-daemon, \-\-fork"
10a454ad 176Forks into the background after reading the configuration and
177initializing properly.
667fb920 178.TP
370e3c14 179.B "\-l, \-\-syslog, \-\-log"
180Emit logging information to the system log, rather than standard error.
181.TP
faf9726e 182.BI "\-p, \-\-pidfile=" file
4166ea7c 183Write
184.BR fw 's
185process-id to
186.I file
187during start-up. If
188.B \-d
189is given too, then the process-id is written after forking (obviously).
190.TP
fc170a33 191.B "\-q, \-\-quiet"
667fb920 192Don't output any logging information. This option is not recommended
193for normal use, although it can make system call traces clearer so I use
194it when debugging.
fc170a33 195.TP
196.BI "\-s, \-\-setuid=" user
197Change uid to that of
198.IR user ,
199which may be either a user name or uid number, after initializing all
200the sources. This will usually require elevated privileges.
201.TP
202.BI "\-g, \-\-setgid=" group
203Change gid to that of
204.IR group ,
205which may be either a group name or gid number, after initializing all
206the sources. If the operating system understands supplementary groups
207then the supplementary groups list is altered to include only
208.IR group .
10a454ad 209.PP
210Any further command line arguments are interpreted as configuration
211lines to be read. Configuration supplied in command line arguments has
212precisely the same syntax as configuration in files. If there are no
96bc31ba 213configuration statements on the command line, and no
10a454ad 214.B \-f
215options were supplied, configuration is read from standard input, if
216stdin is not a terminal.
667fb920 217.
218.\"--------------------------------------------------------------------------
219.SH "CONFIGURATION LANGUAGE"
220.
221The
222.B fw
223program has a fairly sophisticated configuration language to let you
224describe which things should be forwarded where and what special
225features there should be.
226.SS "Lexical structure"
227There are four types of characters.
228.TP
229.I "word constituent characters"
96bc31ba 230Word constituent characters are gathered together into words.
667fb920 231Depending on its surrounding context, a word might act as a keyword or a
232string. All alphanumerics are word constituents, as is the hyphen
233.RB ` \- '.
234Other characters may change their status in future versions.
235.TP
236.I "self-delimiting characters"
237Self-delimiting characters always stand alone. They act as punctuation,
238shaping the sequence of words into more complex grammatical forms. The
239characters
240.RB ` { ',
241.RB ` } ',
242.RB ` [ ',
243.RB ` ] ',
244.RB ` / ',
245.RB ` , ',
246.RB ` = ',
247.RB ` : ',
248.RB ` ; '
249and
250.RB ` . '
251are self-delimiting. Note that while some characters, e.g.,
252.RB ` [ '
253and
254.RB ` ; ',
372a98e2 255require escaping by the shell, they are mostly optional in the grammar
256and can tend to be omitted in quick hacks at the shell prompt.
667fb920 257.TP
258.I "whitespace characters"
259Whitespace characters separate words but are otherwise ignored. All
260`normal' whitespace characters (e.g., space, tab and newline) are
261considered to be whitespace for these purposes.
262.TP
263.I "special characters"
206212ca 264There are three special characters. The
667fb920 265.RB ` # '
266character, if it appears at the start of a word, introduces a
267.I comment
268which extends to the end of the current line or command-line argument.
269Within a word, it behaves like a normal word-constituent character. The
270backslash
271.RB ` \e '
272escapes the following character causing it to be interpreted as a word
273constituent regardless of its normal type. The double-quote
274.RB ` """" '
275escapes all characters other than backslashes up to the next
276double-quote and causes them to be regarded as word constituents. Note
277that you don't have to quote a whole word. The backslash can escape a
278quote character allowing you to insert it into a word if really
279necessary.
280.
281.SS "Basic syntax"
282The overall syntax looks a bit like this:
333c51f4 283.GS "Basic syntax"
667fb920 284.I file
10a454ad 285::=
667fb920 286.I empty
287|
288.I file
289.I stmt
290.RB [ ; ]
10a454ad 291.br
292.I stmt
293::=
667fb920 294.I option-stmt
295|
296.I fw-stmt
297.br
298.I fw-stmt
299::=
300.B fw
301.I source
302.I options
303.RB [ to | \-> ]
304.I target
305.I options
306.br
307.I options
308::=
309.B {
310.I option-seq
311.B }
312.br
313.I option-seq
314::=
315.I empty
316|
317.I option-stmt
318.RB [ ; ]
319.I option-seq
333c51f4 320.GE
667fb920 321If you prefer, the keyword
322.RB ` fw '
323may be spelt
324.RB ` forward '
325or
326.RB ` from '.
327All are equivalent.
328.
329.SS "Sources and targets"
330Forwarding is set up by attaching
331.I targets
332to
333.IR sources .
334Sources are things which are capable of
335.I initiating
336one end of a data flow on their own, while targets are things which are
337capable of setting up the other end on demand. In the case of a TCP
338port forwarder, the part which listens for incoming client connections
339is the source, while the part which sets up outgoing connections to the
340destination server is the target.
341.PP
342Essentially, all
343.B fw
344does is set up a collection of sources and targets based on your
345configuration file so that when a source decides to initiate a data
346flow, it tells its target to set its end up, and then squirts data back
347and forth between the two until there's no more.
348.PP
349Some sources are
350.IR persistent :
351they stay around indefinitely setting up multiple attachments to
352targets. Others are
353.IR transient :
354they set up one connection and then disappear. If all the sources
355defined are transient, then
356.B fw
357will quit when no more active sources remain and all connections have
358terminated.
359.PP
360The
361.B fw
362program is fairly versatile. It allows you to attach any supported type
363of source to any supported type of target. This will, I hope, be the
364case in all future versions.
365.PP
366The syntax of a
367.I source
368or
369.I target
370depend on the source or target type, and are therefore described in the
371sections specific to the various types.
372.
373.SS "Options structure"
374Most of the objects that
375.B fw
376knows about (including sources and targets, but also other more specific
377things such as socket address types) can have their behaviour modified
378by
379.IR options .
380The options available at a particular point in the configuration depend
381on the
382.IR context .
383A global option, outside of a
384.I fw-stmt
385has no context unless it is explicitly qualified, and affects global
723210e6 386behaviour. A local option, applied to a source or target in a
387.IR fw-stmt ,
667fb920 388has the context of the type of source or target to which it is applied,
389and affects only that source or target.
390.PP
391Note that it's important to distinguish between an option's context
392(which is affected by its qualification) and its local or global
393status. No matter how qualified, a global option will always control
394default options for objects, and a local option will only affect a
395specific source or target.
396.PP
397The syntax for qualifying options is like this:
333c51f4 398.GS "Option syntax"
667fb920 399.I option-stmt
400::=
401.I q-option
402.br
403.I q-option
404::=
405.I option
406.br
407 |
408.I prefix
23be5eb0 409.B .\&
667fb920 410.I q-option
411.br
412 |
413.I prefix
414.B {
415.I option-seq
416.B }
417.br
418.I prefix
419::=
420.I word
333c51f4 421.GE
667fb920 422Thus, you may qualify either an individual option or a sequence of
423options. The two are equivalent; for example,
424.VS
425exec.rlimit {
426 core = 0;
427 cpu = 60;
428}
429.VE
723210e6 430means the same as
667fb920 431.VS
432exec.rlimit.core = 0;
433exec.rlimit.cpu = 0;
434.VE
435For each option, there is a sequence of prefixes which maximally qualify
436that option. An option prefixed with this sequence is
437.IR "fully qualified" .
438In actual use, some or all of those prefixes may be omitted. However,
439it's possible for the option to become
440.I ambiguous
441if you do this. For example, the option
442.B fattr.owner
443may refer either to
444.B file.fattr.owner
445or to
446.BR socket.unix.fattr.owner .
447In this case, the ambiguity is benign: a local option will have as its
448context an appropriate source or target, and both global options
449actually control the same default. However, the option
450.B logging
451may mean either
452.B socket.logging
453or
454.BR exec.logging ,
455which have separate defaults, and which one you actually get depends on
456the exact implementation of
457.BR fw 's
458option parser. (Currently this would resolve to
459.BR exec.logging ,
460although this may change in a later version.)
461.PP
462In this manual, options are usually shown in their fully-qualified form.
463.
333c51f4 464.SS "File attributes for created files: `fattr'"
465Both the
466.B file
467and
468.B socket
469sources and targets can create new filesystem objects. The
470.B fattr
471options allow control over the attributes of the newly-created objects.
472Both
473.B file
474and
475.B socket
476use the same set of defaults, so a prefix of
477.B fattr
478is good enough for setting global options, and the implicit context
479disambiguates local options.
480.PP
481The following file attribute options are supported:
8cf7c7c2 482.OS "File attributes (`fattr')"
333c51f4 483.IB prefix .fattr.mode
484.RB [ = ]
485.I mode
486.OD
487Sets the permissions mode for a new file. The
488.I mode
489argument may be either an octal number or a
490.BR chmod (1)-style
491string which acts on the default permissions established by the
492prevailing
493.BR umask (2)
494setting. The characters
495.RB ` = '
496and
497.RB ` , '
498do not have to be quoted within the mode string.
499.OE
8cf7c7c2 500.OS "File attributes (`fattr')"
333c51f4 501.IB prefix .fattr.owner
502.RB [ = ]
503.I user
504.OD
505Sets the owner for newly created files. On non-broken systems you will
506need to be the superuser to set the owner on a file. The
507.I user
508may either be a numeric uid or a username. The default is not to change
509the owner of the file once it's created. The synonyms
510.B uid
511and
512.B user
513are accepted in place of
514.BR owner .
515.OE
8cf7c7c2 516.OS "File attributes (`fattr')"
333c51f4 517.IB prefix .fattr.group
518.RB [ = ]
519.I group
520.OD
521Sets the group for newly created files. You will usually need to be a
522member of the group in question order to set the group of a file. The
523.I group
524may either be a numeric gid or a group name. The default is not to
525change the group of the file once it's created. The synonym
526.B gid
527is accepted in place of
528.BR group .
529.OE
530.
667fb920 531.SS "The `file' source and target types"
532The
533.B file
534source and target allow data to move to and from objects other
535than sockets within the Unix filesystem. (Unix-domain sockets are
536handled using the
537.B socket
538source and target.)
539.PP
540If a
541.B file
542is used as a source, it is set up immediately.
543.PP
544The syntax of
545.B file
546sources and targets is like this:
8cf7c7c2 547.GS "File source and target"
667fb920 548.I source
549::=
550.I file
551.br
552.I target
553::=
554.I file
555.br
556.I file
557::=
558.B file
23be5eb0 559.RB [ .\& ]
667fb920 560.I fspec
561.RB [ ,
562.IR fspec ]
563.br
564.I fspec
565::=
566.I fd-spec
567|
568.I name-spec
569|
570.I null-spec
571.br
572.I fd-spec
573::=
574.RB [[ : ] fd [ : ]]
575.IR number \c
576.RB | stdin | stdout
577.br
578.I name-spec
579::=
b69a615b 580.RB [[ : ] name [ : ]]
667fb920 581.I file-name
582.br
583.I file-name
584::=
585.I path-seq
586|
587.B [
588.I path-seq
589.B ]
590.br
591.I path-seq
592::=
593.I path-elt
594|
595.I path-seq
596.I path-elt
597.br
598.I path-elt
599::=
600.B /
601|
602.I word
603.br
604.I null-spec
605::=
e73034b0 606.RB [ : ] null [ : ]
333c51f4 607.GE
667fb920 608The
609.I file
610specification describes two files, the first to be used as input, the
611second to be used as output, each described by an
612.IR fspec .
613.PP
614If none of the keywords
615.RB ` fd ',
616.RB ` name '
617or
618.RB ` null '
619are given, the type of an
620.I fspec
621is deduced from its nature: if it matches one of the strings
622.RB ` stdin '
623or
624.RB ` stdout ',
625or begins with a digit, it's considered to be a file descriptor;
626otherwise it's interpreted as a filename.
627.PP
628A
629.RB ` name '
630spec describes a file by its name within the filesystem. It is opened
631when needed and closed again after use. For output files, the precise
632behaviour is controlled by options described below.
633.PP
634A
635.RB ` null '
636spec attaches the input or output of the source or target to
637.BR /dev/null .
638.PP
639An
640.RB ` fd '
641spec uses an existing open file descriptor, given either by number or a
642symbolic name. The name
643.RB ` stdin '
644refers to standard input (file descriptor 0 on normal systems) and
645.RB ` stdout '
646refers to standard output (file descriptor 1). The names work in
647exactly the same way as the equivalent file descriptor numbers.
648.PP
649If the output
650.I fspec
651is omitted, the input
652.I fspec
653is used for both input and output. Exception: if the input refers to
654standard input then the output will refer to standard output instead.
655.PP
656All
657.B file
658options apply equally to sources and targets. The options are as
659follows:
333c51f4 660.OS "File options"
667fb920 661.B file.create
662.RB [ = ]
663.BR yes | no
333c51f4 664.OD
667fb920 665Whether to create the output file if it doesn't exist. If
666.B no
667(the default), an error is reported if the file doesn't exist. If
668.BR yes ,
669the file is created if it doesn't exist.
333c51f4 670.OE
671.OS "File options"
667fb920 672.B file.open
673.RB [ = ]
674.BR no | truncate | append
333c51f4 675.OD
667fb920 676Controls the behaviour if the output file already exists. If
677.BR no ,
678an error is reported. If
206212ca 679.B truncate
667fb920 680(the default), the existing file is replaced by the new data. If
681.BR append ,
682the new data is appended to the file.
333c51f4 683.OE
684.OS "File options"
8cf7c7c2 685.BR file.fattr. *
333c51f4 686.OD
667fb920 687The
688.B file
689source and target also accept
690.B fattr
333c51f4 691options for controlling the attributes of the created file.
692.OE
667fb920 693.PP
333c51f4 694Under no circumstances will
695.B fw
696create a file through a `dangling' symbolic link.
667fb920 697.
698.SS "The `exec' source and target types"
699The
700.B exec
701source and target execute programs and allow access to their standard
702input and output streams. Both source and target have the same syntax,
703which is as follows:
333c51f4 704.GS "Exec source and target"
667fb920 705.I source
706::=
707.I exec
708.br
709.I target
710::=
8cf7c7c2 711.I exec
667fb920 712.br
713.I exec
714::=
715.BR exec
23be5eb0 716.RB [ .\& ]
667fb920 717.I cmd-spec
718.br
719.I cmd-spec
720::=
721.I shell-cmd
10a454ad 722|
667fb920 723.RI [ prog-name ]
724.B [
725.I argv0
726.I arg-seq
727.B ]
728.br
729.I arg-seq
730::=
731.I word
732|
733.I arg-seq
734.I word
735.br
736.I shell-cmd
737::=
738.I word
739.br
740.I argv0
741::=
742.I word
333c51f4 743.GE
667fb920 744If a single word is given, it is a
745.I shell-cmd
746and will be passed to the Bourne shell for execution. If a
747bracket-enclosed sequence of words is given, it is considered to be a
748list of arguments to pass to the program: if a
749.I prog-name
750is also supplied, it names the file containing the program to execute;
751otherwise the file named by the first argument
752.RI ( argv0 )
753is used.
754.PP
49f5947b 755Note that the shell command or program name string must, if present,
756have any delimiter characters (including
757.RB ` / '
206212ca 758and
49f5947b 759.RB ` . ')
760quoted; this is not required in the
761.RB ` [ '-enclosed
762argument list.
763.PP
667fb920 764The standard input and output of the program are forwarded to the other
765end of the connection. The standard error stream is caught by
766.B fw
767and logged.
768.PP
769The
770.B exec
771source and target both understand the same set of options. The list of
772options supported is as follows:
333c51f4 773.OS "Exec options"
667fb920 774.B exec.logging
775.RB [ = ]
776.BR yes | no
333c51f4 777.OD
667fb920 778Whether to log the start and end of executed programs. If
779.B yes
780(the default), a log message is emitted when the program is started
781listing its process id, and another is emitted when the program finishes
782giving its process id and exit status. If
783.BR no ,
784these messages are not emitted. However the standard error stream is
785still logged. The
786.B log
787abbreviation is accepted as a synonym for
788.BR logging .
333c51f4 789.OE
790.OS "Exec options"
667fb920 791.B exec.dir
792.RB [ = ]
793.I file-name
333c51f4 794.OD
667fb920 795Sets the current directory from which the the program should be run.
796The default is not to change directory. The synonyms
797.BR cd ,
798.B chdir
799and
800.B cwd
801are accepted in place of
802.BR dir .
333c51f4 803.OE
804.OS "Exec options"
667fb920 805.B exec.root
806.RB [ = ]
807.I file-name
333c51f4 808.OD
667fb920 809Sets the root directory for the program, using the
810.BR chroot (2)
811system call. You must be the superuser for this option to work. The
372a98e2 812default is not to set a root directory. The synonym
813.B chroot
814is accepted in place of
815.BR root .
333c51f4 816.OE
817.OS "Exec options"
667fb920 818.B exec.user
819.RB [ = ]
820.I user
333c51f4 821.OD
667fb920 822Sets the user (real and effective uid) to run the program as. This will
823usually require superuser privileges to work. The default is not to
824change uid. The synonym
825.B uid
826is accepted in place of
827.BR user .
333c51f4 828.OE
829.OS "Exec options"
667fb920 830.B exec.group
831.RB [ = ]
832.I group
333c51f4 833.OD
667fb920 834Sets the group (real and effective gid) to run the program as. If
835running with superuser privileges, the supplementary groups list is
836cleared at the same time. The default is not to change gid (or clear
837the supplementary groups list). The synonym
838.B gid
839is accepted in place of
840.BR group .
333c51f4 841.OE
842.OS "Exec options"
667fb920 843.BI exec.rlimit. limit \c
844.RB [ .hard | .soft ]
845.RB [ = ]
846.I value
333c51f4 847.OD
667fb920 848Set resource limits for the program. The
849.I limit
850may be one of the resource limit names described in
851.BR setrlimit (2),
852in lower-case and without the
853.B RLIMIT_
854prefix; for example,
855.B RLIMIT_CORE
856becomes simply
857.BR core .
858The
859.I value
860is a number, followed optionally by
861.B k
862to multiply by 1024 (2\*(ss10\*(se),
863.B m
864to multiply by 1048576 (2\*(ss20\*(se), or
865.B g
866to multiply by 1073741824 (2\*(ss30\*(se); purists can use upper-case
867versions of these if they want. If
868.B .hard
869or
870.B .soft
871was specified, only the hard or soft limit is set; otherwise both are
872set to the same value. Only the superuser can raise the hard limit.
873The soft limit cannot be set above the hard limit.
333c51f4 874.OE
875.OS "Exec options"
667fb920 876.B exec.env.clear
333c51f4 877.OD
667fb920 878Clears the program's environment.
333c51f4 879.OE
8cf7c7c2 880.OS "Exec options"
667fb920 881.B exec.env.unset
882.I var
333c51f4 883.OD
667fb920 884Removes
885.I var
886from the program's environment. It is not an error if no variable named
887.I var
888exists.
333c51f4 889.OE
890.OS "Exec options"
667fb920 891.BR exec.env. [ set ]
892.I var
893.RB [ = ]
894.I value
333c51f4 895.OD
96bc31ba 896Assigns the variable
667fb920 897.I var
898the value
899.I value
900in the program's environment, possibly replacing the existing value.
901The
902.B set
903may be omitted if the
904.B env
905qualifier is present.
333c51f4 906.OE
667fb920 907.PP
908Note that environment variable modifications are performed in order,
909global modifications before local ones.
910.
911.SS "The `socket' source and target types"
912The
913.B socket
914source and target provide access to network services. Support is
915currently provided for TCP/IP and Unix-domain sockets, although other
916address types can be added with reasonable ease.
917.PP
918The syntax for socket sources and targets is:
333c51f4 919.GS "Socket source and target"
667fb920 920.ll +8i
921.I source
922::=
923.I socket-source
10a454ad 924.br
667fb920 925.I target
926::=
927.I socket-target
928.br
929.I socket-source
930::=
23be5eb0 931.RB [ socket [ .\& ]]
667fb920 932.RB [[ : ] \c
933.IR addr-type \c
934.RB [ : ]]
935.I source-addr
936.br
937.I socket-target
938::=
23be5eb0 939.RB [ socket [ .\& ]]
667fb920 940.RB [[ : ] \c
941.IR addr-type \c
942.RB [ : ]]
943.I target-addr
944.ll -8i
333c51f4 945.GE
667fb920 946The syntax of the source and target addresses depend on the address
947types, which are described below. The default address type, if no
948.I addr-type
949is given, is
950.BR inet .
951.PP
952Socket sources support options; socket targets do not. The source
953options provided are:
333c51f4 954.OS "Socket options"
667fb920 955.B socket.conn
956.RB [ = ]
d857515e 957.IR number | \c
958.BR unlimited | one-shot
333c51f4 959.OD
d857515e 960Controls the behaviour of the source when it receives connections. A
667fb920 961.I number
d857515e 962limits the number of simultaneous connections. The value
963.B unlimited
964(or
965.BR infinite )
966removes any limit on the number of connections possible. The value
967.B one-shot
968will remove the socket source after a single successful connection.
969(Connections refused by access control systems don't count here.)
970The default is to apply a limit of 256 concurrent connections. Use of
971the
972.B unlimited
973option is not recommended.
333c51f4 974.OE
975.OS "Socket options"
6f427571 976.B socket.listen
977.RB [ = ]
978.I number
979.OD
980Sets the maximum of the kernel incoming connection queue for this socket
981source. This is the number given to the
982.BR listen (2)
983system call. The default is 5.
984.OE
985.OS "Socket options"
667fb920 986.B socket.logging
987.RB [ = ]
988.BR yes | no
333c51f4 989.OD
206212ca 990Whether to log incoming connections. If
667fb920 991.B yes
992(the default) incoming connections are logged, together with information
993about the client (where available) and whether the connection was
994accepted or refused. If
995.BR no ,
996log messages are not generated.
333c51f4 997.OE
667fb920 998.PP
999Address types also provide their own options.
1000.
1001.SS "The `inet' socket address type"
8cf7c7c2
MW
1002.GL "Socket source and target"
1003.OL "Socket options"
667fb920 1004The
1005.B inet
1006address type provides access to TCP ports. The
1007.B inet
1008source and target addresses have the following syntax:
333c51f4 1009.GS "Socket source and target"
667fb920 1010.I inet-source-addr
10a454ad 1011::=
10a454ad 1012.RB [ port ]
1013.I port
667fb920 1014.br
1015.I inet-target-addr
1016::=
1017.I address
10a454ad 1018.RB [ : ]
1019.I port
10a454ad 1020.br
667fb920 1021.I address
10a454ad 1022::=
667fb920 1023.I addr-elt
1024|
1025.I address
1026.I addr-elt
10a454ad 1027.br
667fb920 1028.I addr-elt
10a454ad 1029::=
23be5eb0 1030.B .\&
10a454ad 1031|
667fb920 1032.I word
333c51f4 1033.GE
667fb920 1034A
1035.I port
1036may be given as a port number or a service name from the
1037.B /etc/services
1038file (or YP map if you do that sort of thing). A
1039.B hostname
1040may be a textual hostname or a numerical IP address.
1041.PP
1042The
1043.B inet
1044source address accepts the following options:
333c51f4 1045.OS "Socket options"
1c2054c7 1046.B socket.inet.source.addr
1047.RB [ = ]
8cf7c7c2 1048.BR any | \c
1c2054c7 1049.I addr
1050.OD
1051Specify the IP address on which to listen for incoming connections. The
1052default is
1053.BR any ,
1054which means to listen on all addresses, though it may be useful to
1055specify this explicitly, if the global setting is different.
1056.OE
1057.OS "Socket options"
1058.BR socket.inet.source. [ allow | deny ]
1059.RB [ host ]
1060.I addr
10a454ad 1061.RB [ /
1c2054c7 1062.IR addr ]
333c51f4 1063.OD
667fb920 1064Adds an entry to the source's access control list. If only one
1065.I address
1066is given, the entry applies only to that address; if two are given, the
1067first is a network address and the second is a netmask either in
1068dotted-quad format or a simple number of bits (e.g.,
1069.B /255.255.255.192
1070and
1071.B /26
1072mean the same), and the entry applies to any address which, when masked
1073by the netmask, is equal to the masked network address.
333c51f4 1074.OE
1c2054c7 1075.OS "Socket options"
1076.BR socket.inet.source. [ allow | deny ]
1077.B priv-port
1078.OD
1079Accept or reject connections from low-numbered `privileged' ports, in
1080the range 0--1023.
1081.OE
1082.OS "Socket options"
1083.B socket.inet.dest.addr
1084.RB [ = ]
8cf7c7c2 1085.BR any | \c
1c2054c7 1086.I addr
1087.OD
1088Specify the IP address to bind the local socket to when making an
1089outbound connection. The default is
1090.BR any ,
1091which means to use whichever address the kernel thinks is most
1092convenient. This option is useful if the destination is doing
1093host-based access control and your server is multi-homed.
1094.OE
ee599f55 1095.OS "Socket options"
1096.B socket.inet.dest.priv-port
1097.RB [=]
1098.BR yes | no
1099.OD
1100Make a privileged connection (i.e., from a low-numbered port) to the
1101target. This only works if
1102.B fw
1103was started with root privileges. However, it still works if
1104.B fw
1105has
1106.I dropped
1107privileges after initialization (the
1108.B \-s
206212ca 1109option). Before dropping privileges,
ee599f55 1110.B fw
1111forks off a separate process which continues to run with root
1112privileges, and on demand passes sockets bound to privileged ports and
1113connected to the appropriate peer back to the main program. The
1114privileged child only passes back sockets connected to peer addresses
1115named in the configuration; even if the
1116.B fw
1117process is compromised, it can't make privileged connections to other
1118addresses. Note that because of this privilege separation, it's also
1119not possible to reconfigure
1120.B fw
69c8e834 1121to make privileged connections to different peer addresses later by
ee599f55 1122changing configuration files and sending the daemon a
1123.BR SIGHUP .
1124.OE
10a454ad 1125.PP
333c51f4 1126The access control rules are examined in the order: local entries first,
1127then global ones, each in the order given in the configuration file.
1128The first matching entry is used. If no entries match, the behaviour is
1129the
667fb920 1130.I opposite
1131of the last entry tried. If there are no entries defined, the default
1132is to allow all clients.
667fb920 1133.
1134.SS "The `unix' socket address type"
8cf7c7c2
MW
1135.GL "Socket source and target"
1136.OL "Socket options"
10a454ad 1137The
667fb920 1138.B unix
1139address type allows access to Unix-domain sockets. The syntax for
1140.B unix
1141source and target addresses is like this:
333c51f4 1142.GS "Socket source and target"
1143.I unix-source-addr
667fb920 1144::=
333c51f4 1145.I file-name
667fb920 1146.br
333c51f4 1147.I unix-target-addr
667fb920 1148::=
1149.I file-name
333c51f4 1150.GE
1151The following options are supported by the
1152.B unix
1153source address type:
1154.OS "Socket options"
1155.BR socket.unix.fattr. *
1156.OD
667fb920 1157The
1158.B unix
1159source address accepts
1160.B fattr
333c51f4 1161options to control the attributes of the socket file created.
1162.OE
1163.PP
1164Sockets are removed if
10a454ad 1165.B fw
667fb920 1166exits normally (which it will do if it runs out of sources or
372a98e2 1167connections, or if
1168.B fw
1169shuts down in a clean way).
667fb920 1170.SH "EXAMPLES"
1171To forward the local port 25 to a main mail server:
1172.VS
1173from 25 to mailserv:25
1174.VE
1175To attach a fortune server to a Unix-domain socket:
1176.VS
1177from unix:/tmp/fortunes
1178to exec [/usr/games/fortune] { user nobody }
1179.VE
1180To fetch a fortune from the server:
1181.VS
1182from file stdin, stdout to unix:/tmp/fortunes
1183.VE
1184To emulate
1185.BR cat (1):
1186.VS
49f5947b 1187from file stdin, null to file null, stdout
667fb920 1188.VE
69c8e834 1189.sp -1 \" undo final space
667fb920 1190.
1191.\"--------------------------------------------------------------------------
372a98e2 1192.SH "SIGNAL HANDLING"
1193.
1194The
1195.B fw
1196program responds to various signals when it's running. If it receives
1197.B SIGTERM
1198or
1199.BR SIGINT ,
1200.B fw
1201performs a
1202.I graceful
1203shutdown: it removes all of its sources, and will exit when no more
1204connections are running. (Note that if the disposition
1205.B SIGINT
1206was to ignore it,
1207.B fw
1208does not re-enable the signal. You'll have to send
1209.B SIGTERM
1210in that case.) If
1211.B fw
1212receives
1213.BR SIGQUIT ,
1214it performs an
1215.I abrupt
1216shutdown: it removes all sources and extant connections and closes down
1217more-or-less immediately.
1218.PP
1219Finally, if any configuration files (other than standard input) were
1220provided to
1221.B fw
1222on its command line using the
1223.B \-f
1224option, a
1225.B SIGHUP
1226signal may be sent to instruct
1227.B fw
1228to reload its configuration. Any existing connections are allowed to
1229run their course. If no such configuration files are available,
1230.B fw
1231just logs a message about the signal and continues.
372a98e2 1232.
1233.\"--------------------------------------------------------------------------
333c51f4 1234.SH "GRAMMAR SUMMARY"
1235.
8cf7c7c2 1236@@@ grammar
333c51f4 1237.\"--------------------------------------------------------------------------
1238.SH "OPTION SUMMARY"
1239.
8cf7c7c2 1240@@@ option
333c51f4 1241.\"--------------------------------------------------------------------------
10a454ad 1242.SH "BUGS"
667fb920 1243.
cdc917d3 1244The syntax for IP addresses and filenames is nasty.
10a454ad 1245.PP
d857515e 1246IPv6 is not supported yet. Because of
1247.BR fw 's
1248socket address architecture, it's probably not a major piece of work to
667fb920 1249add.
10a454ad 1250.PP
667fb920 1251Please inform me of any security problems you think you've identified in
1252this program. I take security very seriously, and I will fix security
1253holes as a matter of priority when I find out about them. I will be
1254annoyed if I have to read about problems on Bugtraq because they weren't
1255mailed to me first.
723210e6 1256.PP
1257The program is too complicated, and this manual page is too long.
667fb920 1258.
1259.\"--------------------------------------------------------------------------
10a454ad 1260.SH "AUTHOR"
667fb920 1261.
f65809f7 1262Mark Wooding, <mdw@distorted.org.uk>
667fb920 1263.
1264.\"----- That's all, folks --------------------------------------------------