chiark / gitweb /
.gitattributes: New file; highlight bad whitespace properly in Python.
[tripe] / server / tripe-admin.5.in
CommitLineData
d6623498 1.\" -*-nroff-*-
fc916a09
MW
2.\".
3.\" Manual for the administration protocol
4.\"
5.\" (c) 2008 Straylight/Edgeware
060ca767 6.\"
13a55605 7.
fc916a09
MW
8.\"----- Licensing notice ---------------------------------------------------
9.\"
10.\" This file is part of Trivial IP Encryption (TrIPE).
11.\"
12.\" TrIPE 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.
16.\"
17.\" TrIPE 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.
21.\"
22.\" You should have received a copy of the GNU General Public License
23.\" along with TrIPE; if not, write to the Free Software Foundation,
24.\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25.
26.\"--------------------------------------------------------------------------
e99aedcf 27.so ../common/defs.man \" @@@PRE@@@
fc916a09
MW
28.
29.\"--------------------------------------------------------------------------
d6623498 30.TH tripe-admin 5 "18 February 2001" "Straylight/Edgeware" "TrIPE: Trivial IP Encryption"
fc916a09
MW
31.
32.\"--------------------------------------------------------------------------
33.SH "NAME"
34.
d6623498 35tripe-admin \- administrator commands for TrIPE
fc916a09
MW
36.
37.\"--------------------------------------------------------------------------
38.SH "DESCRIPTION"
39.
d6623498 40This manual page describes the administration interface provided by the
41.BR tripe (8)
42daemon.
43.PP
44The
45.BR tripectl (8)
46program can be used either interactively or in scripts to communicate
47with the server using this interface. Alternatively, simple custom
48clients can be written in scripting languages such as Perl, Python or
49Tcl, or more advanced clients such as GUI monitors can be written in C
50with little difficulty.
51.PP
37941236 52Administration commands use a textual protocol. Each client command or
53server response consists of a line of ASCII text terminated by a single
54linefeed character. No command may be longer than 255 characters.
d6623498 55.SS "General structure"
56Each command or response line consists of a sequence of
83487ded
MW
57whitespace-separated tokens. The number and nature of whitespace
58characters separating two tokens in a client command is not significant;
59the server always uses a single space character. The first token in a
d6623498 60line is a
61.I keyword
62identifying the type of command or response contained. Keywords in
63client commands are not case-sensitive; the server always uses uppercase
64for its keywords.
83487ded
MW
65.PP
66In order to allow tokens to contain internal whitespace, a quoting
67mechanism is provided. Whitespace within matched pairs of quotes \(en
68either single
69.RB ` ' '
70or double
71.RB ` """" '
72\(en is considered to be internal. Any character (other than newline)
73may be escaped by preceding it with a backslash
74.RB ` \e ':
75in particular, this can be used to include quote characters. It is
76impossible for a token to contain a newline character.
77.PP
78On output, the server will use double quotes when necessary.
de014da6 79.SS "Simple commands"
80For simple client command, the server responds with zero or more
d6623498 81.B INFO
82lines, followed by either an
83.B OK
84line or a
85.B FAIL
86line. Each
87.B INFO
88provides information requested in the command. An
89.B OK
90response contains no further data. A
91.B FAIL
3cdc3f3a 92code is followed by a machine-readable explanation of why the command
d6623498 93failed.
94.PP
de014da6 95Simple command processing is strictly synchronous: the server reads a
96command, processes it, and responds, before reading the next command.
97All commands can be run as simple commands. Long-running commands
98(e.g.,
99.B ADD
100and
101.BR PING )
102block the client until they finish, but the rest of the server continues
bdc44f5b
MW
103running. See
104.B "Background commands"
105to find out how to issue long-running commands without blocking.
106.SS "Asynchronous broadcasts"
107There are three types of asynchronous broadcast messages which aren't
108associated with any particular command. Clients can select which
109broadcast messages they're interested in using the
110.B WATCH
111command.
de014da6 112.PP
113The
d6623498 114.B WARN
3cdc3f3a 115message contains a machine-readable message warning of an error
d6623498 116encountered while processing a command, unexpected or unusual behaviour
117by a peer, or a possible attack by an adversary. Under normal
de014da6 118conditions, the server shouldn't emit any warnings.
119.PP
120The
d6623498 121.B TRACE
3cdc3f3a 122message contains a human-readable tracing message containing diagnostic
d6623498 123information. Trace messages are controlled using the
124.B \-T
125command-line option to the server, or the
126.B TRACE
127administration command (see below). Support for tracing can be disabled
128when the package is being configured, and may not be available in your
de014da6 129version.
130.PP
131Finally, the
3cdc3f3a 132.B NOTE
133message is a machine-readable notification about some routine but
134interesting event such as creation or destruction of peers.
de014da6 135.SS "Background commands"
136Some commands (e.g.,
137.B ADD
138and
139.BR PING )
140take a long time to complete. To prevent these long-running commands
141from tying up a server connection, they can be run in the background.
142Not all commands can be run like this: the ones that can provide a
143.B \-background
144option, which must be supplied with a
145.IR tag .
146.PP
147A command may fail before it starts running in the background. In this
148case, the server emits a
149.B FAIL
150response, as usual. To indicate that a command has started running in
151the background, the server emits a response of the form
152.BI "BGDETACH " tag \fR,
153where
154.I tag
155is the value passed to the
156.B \-background
157option. From this point on, the server is ready to process more
158commands and reply to them.
159.PP
160Responses to background commands are indicated by a line beginning with
e04c2d50 161one of the tokens
de014da6 162.BR BGOK ,
163.BR BGFAIL ,
164or
165.BR BGINFO ,
e04c2d50 166followed by the command tag. These correspond to the
de014da6 167.BR OK ,
168.BR FAIL ,
169and
170.B INFO
171responses for simple commands:
172.B BGINFO
173indicates information from a background command which has not completed
174yet; and
175.B BGOK
176and
177.B BGFAIL
178indicates that a background command succeeded or failed, respectively.
179.PP
180A background command will never issue an
181.B OK
060ca767 182or
9df937a3 183.B INFO
060ca767 184response: it will always detach and then issue any
185.B BGINFO
186lines followed by
de014da6 187.B BGOK
188response.
bdc44f5b
MW
189.SS "Client-provided services"
190.\"* 25 Service-related messages
191An administration client can provide services to other clients.
192Services are given names and versions. A client can attempt to
193.I claim
194a particular service by issuing the
195.B SVCCLAIM
196command. This may fail, for example, if some other client already
197provides the same or later version of the service.
198.PP
199Other clients can issue
200.I "service commands"
201using the
202.B "SVCSUBMIT"
203command; the service provider is expected to handle these commands and
204reply to them.
205.PP
206There are three important asynchronous messages which will be sent to
207service providers.
208.SP
209.BI "SVCCANCEL " jobid
210The named job has been cancelled, either because the issuing client has
211disconnected or explicitly cancelled the job using the
212.B BGCANCEL
213command.
214.SP
215.BI "SVCCLAIM " service " " version
216Another client has claimed a later version of the named
9df937a3
MW
217.IR service .
218The recipient is no longer the provider of this service.
bdc44f5b
MW
219.SP
220.BI "SVCJOB " jobid " " service " " command " " args \fR...
221Announces the arrival of a new job. The
222.I jobid
223is a simple token consisting of alphanumeric characters which
224.B tripe
225uses to identify this job.
226.PP
227The service provider can reply to the job using the commands
228.BR SVCINFO ,
229.B SVCOK
230and
231.BR SVCFAIL .
232The first of these sends an
233.B INFO
234response and leaves the job active; the other two send an
235.B OK
236or
237.B FAIL
238response respectively, and mark the job as being complete.
239.PP
240(Since
241.B SVCSUBMIT
242is a potentially long-running command, it can be run in the background.
243This detail is hidden from service providers:
244.B tripe
245will issue the corresponding
246.BR BG ...
247responses when appropriate.)
3cdc3f3a 248.SS "Network addresses"
83487ded 249A network address is a sequence of tokens. The first is a token
3cdc3f3a 250identifying the network address family. The length of an address and
83487ded 251the meanings of the subsequent tokens depend on the address family.
3cdc3f3a 252Address family tokens are not case-sensitive on input; on output, they
253are always in upper-case.
254.PP
255At present, only one address family is understood.
256.TP
165efde7 257.BI "INET " address " \fR[" port \fR]
3cdc3f3a 258An Internet socket, naming an IPv4 address and UDP port. On output, the
259address is always in numeric dotted-quad form, and the port is given as
260a plain number. On input, DNS hostnames and symbolic port names are
165efde7
MW
261permitted; if omitted, the default port 4070 is used. Name resolution
262does not block the main server, but will block the requesting client,
263unless the command is run in the background.
3cdc3f3a 264.PP
78dcf842 265If, on input, no recognized address family token is found, the following
83487ded 266tokens are assumed to represent an
3cdc3f3a 267.B INET
2acd7cd6
MW
268address. Addresses output by the server always have an address family
269token.
060ca767 270.SS "Key-value output"
271Some commands (e.g.,
272.B STATS
273and
274.BR SERVINFO )
275produce output in the form of
276.IB key = value
83487ded 277pairs, one per token. Neither the
060ca767 278.I key
279nor the
280.I value
281contain spaces.
282.SS "Trace lists"
283Commands which enable or disable kinds of output (e.g.,
284.B TRACE
285and
286.BR WATCH )
287work in similar ways. They take a single optional argument, which
288consists of a string of letters selecting message types, optionally
289interspersed with
290.RB ` + '
291to enable, or
292.RB ` \- '
293to disable, the subsequently listed types.
294.PP
295If the argument is omitted, the available message types are displayed,
296one to an
297.B INFO
298line, in a fixed-column format. Column zero contains the key letter for
299selecting that message type; column one contains either a space or a
e04c2d50 300.RB ` + '
060ca767 301sign, if the message type is disabled or enabled respectively; and a
302textual description of the message type begins at column 3 and continues
303to the end of the line.
304.PP
305Lowercase key letters control individual message types. Uppercase key
306letters control collections of message types.
fc916a09
MW
307.
308.\"--------------------------------------------------------------------------
3cdc3f3a 309.SH "COMMAND REFERENCE"
fc916a09 310.
13a55605 311.\"* 10 Commands
d6623498 312The commands provided are:
13a55605 313.SP
9986f0b5 314.BI "ADD \fR[" options "\fR] " peer " " address "\fR..."
3cdc3f3a 315Adds a new peer. The peer is given the name
316.IR peer ;
317the peer's public key is assumed to be in the file
318.B keyring.pub
319(or whatever alternative file was specified in the
320.B \-K
321option on the command line). The
322.I address
323is the network address (see above for the format) at which the peer can
78dcf842 324be contacted. The following options are recognized.
42da2a58 325.RS
13a55605 326.\"+opts
42da2a58 327.TP
de014da6 328.BI "\-background " tag
329Run the command in the background, using the given
330.IR tag .
331.TP
010e6f63
MW
332.B "\-cork"
333Don't send an immediate challenge to the peer; instead, wait until it
334sends us something before responding.
335.TP
0ba8de86 336.BI "\-keepalive " time
337Send a no-op packet if we've not sent a packet to the peer in the last
338.I time
339interval. This is useful for persuading port-translating firewalls to
340believe that the `connection' is still active. The
341.I time
342is expressed as a nonnegative integer followed optionally by
343.BR d ,
344.BR h ,
345.BR m ,
346or
347.BR s
348for days, hours, minutes, or seconds respectively; if no suffix is
349given, seconds are assumed.
350.TP
48b84569
MW
351.BI "\-key " tag
352Use the public key
353.I tag
354to authenticate the peer. The default is to use the key tagged
355.IR peer .
356.TP
6411163d
MW
357.B "\-mobile"
358The peer is a mobile device, and is likely to change address rapidly.
359If a packet arrives from an unknown address, the server's usual response
360is to log a warning and discard it. If the server knows of any mobile
361peers, however, it will attempt to decrypt the packet using their keys,
362and if one succeeds, the server will update its idea of the peer's
363address and emit an
364.B NEWADDR
365notification.
366.TP
e1f1a2a0
MW
367.BI "\-priv " tag
368Use the private key
369.I tag
370to authenticate to the peer. The default is to use the key named in the
371.RB ` \-t '
372command-line option, or a key with type
373.B tripe
374or
375.BR tripe-dh :
376see
377.BR tripe (8)
378for the details.
379.TP
0ba8de86 380.BI "\-tunnel " tunnel
42da2a58 381Use the named tunnel driver, rather than the default.
13a55605 382.\"-opts
42da2a58 383.RE
13a55605 384.SP
3cdc3f3a 385.BI "ADDR " peer
386Emits an
387.B INFO
388line reporting the IP address and port number stored for
389.IR peer .
13a55605 390.SP
35c8b547 391.BI "ALGS \fR[" peer \fR]
449991a3 392Emits information about the cryptographic algorithms in use, in
35c8b547
MW
393key-value form. If a
394.I peer
395is given, then describe the algorithms used in the association with that
396peer; otherwise describe the default algorithms.
449991a3 397.RS
35c8b547
MW
398.PP
399The keys are as follows.
449991a3
MW
400.TP
401.B kx-group
402Type of key-exchange group in use, currently either
403.B ec
404or
405.BR prime .
406.TP
407.B kx-group-order-bits
408Length of the group order, in bits. This gives an approximate measure
409of the group strength.
410.TP
411.B kx-group-elt-bits
412Length of a group element, in bits. This may be useful when analyzing
413protocol traces.
414.TP
415.B hash
416The hash function in use, e.g.,
417.BR sha256 .
418.TP
419.B mgf
420The mask-generating function in use, e.g.,
421.BR whirlpool-mgf .
422.TP
423.B hashsz
424The size of the hash function's output, in octets.
425.TP
426.B cipher
427The name of the bulk data cipher in use, e.g.,
428.BR blowfish-cbc .
429.TP
430.B cipher-keysz
431The length of key used by the bulk data cipher, in octets.
432.TP
433.B cipher-blksz
434The block size of the bulk data cipher, or zero if it's not based on a
435block cipher.
436.TP
437.B cipher-data-limit
438The maximum amount of data to be encrypted using a single key. (A new
439key exchange is instigated well before the limit is reached, in order to
440allow for a seamless changeover of keys.)
441.TP
442.B mac
443The message authentication algorithm in use, e.g.,
444.BR ripemd160-hmac ..
445.TP
446.B mac-keysz
447The length of the key used by the message authentication algorithm, in
448octets.
449.TP
450.B mac-tagsz
451The length of the message authentication tag, in octets.
452.PP
453The various sizes are useful, for example, when computing the MTU for a
454tunnel interface. If
455.I MTU
456is the MTU of the path to the peer, then the tunnel MTU should be
457.IP
458.I MTU
459\- 33 \-
460.I cipher-blksz
461\-
462.I mac-tagsz
463.PP
464allowing 20 bytes of IP header, 8 bytes of UDP header, a packet type
465octet, a four-octet sequence number, an IV, and a MAC tag.
466.RE
467.SP
ff92ffd3
MW
468.BI "BGCANCEL " tag
469Cancels the background job with the named
470.IR tag .
471.SP
37941236 472.BI "CHECKCHAL " challenge
473Verifies a challenge as being one earlier issued by
474.B GETCHAL
475and not previously either passed to
476.B CHECKCHAL
477or in a greeting message.
13a55605 478.SP
3cdc3f3a 479.B "DAEMON"
480Causes the server to disassociate itself from its terminal and become a
481background task. This only works once. A warning is issued.
2acd7cd6 482.SP
0ba8de86 483.BI "EPING \fR[" options "\fR] " peer
484Sends an encrypted ping to the peer, and expects an encrypted response.
485This checks that the peer is running (and not being impersonated), and
486that it can encrypt and decrypt packets correctly. Options and
487responses are the same as for the
488.B PING
489command.
13a55605 490.SP
de014da6 491.BI "FORCEKX " peer
492Requests the server to begin a new key exchange with
493.I peer
494immediately.
13a55605 495.SP
37941236 496.B "GETCHAL"
497Requests a challenge. The challenge is returned in an
498.B INFO
499line, as a base64-encoded string. See
500.BR CHECKCHAL .
13a55605 501.SP
37941236 502.BI "GREET " peer " " challenge
503Sends a greeting packet containing the
504.I challenge
505(base-64 encoded) to the named
506.IR peer .
507The expectation is that this will cause the peer to recognize us and
508begin a key-exchange.
13a55605 509.SP
d6623498 510.B "HELP"
511Causes the server to emit an
512.B INFO
513line for each command it supports. Each line lists the command name,
514followed by the names of the arguments. This may be helpful as a memory
515aid for interactive use, or for program clients probing for features.
e04c2d50 516.SP
3cdc3f3a 517.BI "IFNAME " peer
518Emits an
519.B INFO
520line containing the name of the network interface used to collect IP
521packets which are to be encrypted and sent to
522.IR peer .
523Used by configuration scripts so that they can set up routing tables
524appropriately after adding new peers.
13a55605 525.SP
ff92ffd3
MW
526.B "JOBS"
527Emits an
528.B INFO
529line giving the tag for each outstanding background job.
530.SP
3cdc3f3a 531.BI "KILL " peer
532Causes the server to forget all about
533.IR peer .
534All keys are destroyed, and no more packets are sent. No notification
535is sent to the peer: if it's important that the peer be notified, you
536must think of a way to do that yourself.
13a55605 537.SP
3cdc3f3a 538.B "LIST"
539For each currently-known peer, an
540.B INFO
541line is written containing the peer's name, as given to
542.BR ADD .
13a55605 543.SP
bd58d532 544.BI "NOTIFY " tokens\fR...
e04c2d50 545Issues a
bd58d532 546.B USER
547notification to all interested administration clients.
13a55605 548.SP
060ca767 549.BI "PEERINFO " peer
550Returns information about a peer, in key-value form. The following keys
551are returned.
552.RS
553.TP
554.B tunnel
555The tunnel driver used for this peer.
556.TP
557.B keepalive
558The keepalive interval, in seconds, or zero if no keepalives are to be
559sent.
48b84569
MW
560.TP
561.B key
fe2a5dcf 562The (short) key tag being used for the peer, as passed to the
48b84569 563.B ADD
fe2a5dcf
MW
564command.
565.TP
566.B current-key
567The full key tag of the peer's public key currently being used. This
568may change during the life of the association.
569.TP
570.B private-key
571The private key tag being used for the peer, as passed to the
572.B ADD
f3c6d21c
MW
573command, or the
574.RB ` \-t '
575command-line option. If neither of these was given explicitly, the
576private key tag is shown as
577.RB ` (default) ',
578since there is no fixed tag used under these circumstances.
fe2a5dcf
MW
579.TP
580.B current-private-key
581The full key tag of the private key currently being used for this
582association. This may change during the life of the association.
060ca767 583.RE
13a55605 584.SP
0ba8de86 585.BI "PING \fR[" options "\fR] " peer
586Send a transport-level ping to the peer. The ping and its response are
587not encrypted or authenticated. This command, possibly in conjunction
588with tracing, is useful for ensuring that UDP packets are actually
589flowing in both directions. See also the
590.B EPING
591command.
592.IP
593An
594.B INFO
595line is printed describing the outcome:
596.RS
597.TP
598.BI "ping-ok " millis
e04c2d50 599A response was received
0ba8de86 600.I millis
601after the ping was sent.
602.TP
603.BI "ping-timeout"
604No response was received within the time allowed.
605.TP
606.BI "ping-peer-died"
607The peer was killed (probably by another admin connection) before a
608response was received.
609.RE
610.IP
611Options recognized for this command are:
612.RS
13a55605 613.\"+opts
0ba8de86 614.TP
de014da6 615.BI "\-background " tag
616Run the command in the background, using the given
617.IR tag .
618.TP
0ba8de86 619.BI "\-timeout " time
620Wait for
621.I time
2acd7cd6
MW
622seconds before giving up on a response. The default is 5 seconds. The
623.I time
624is expressed as a nonnegative integer followed optionally by
625.BR d ,
626.BR h ,
627.BR m ,
628or
629.BR s
630for days, hours, minutes, or seconds respectively; if no suffix is
631given, seconds are assumed.
13a55605 632.\"-opts
0ba8de86 633.RE
13a55605 634.SP
3cdc3f3a 635.B "PORT"
636Emits an
637.B INFO
638line containing just the number of the UDP port used by the
639.B tripe
640server. If you've allowed your server to allocate a port dynamically,
641this is how to find out which one it chose.
13a55605 642.SP
de014da6 643.B "RELOAD"
644Instructs the server to recheck its keyring files. The server checks
645these periodically anyway but it may be necessary to force a recheck,
646for example after adding a new peer key.
13a55605 647.SP
3cdc3f3a 648.B "QUIT"
649Instructs the server to exit immediately. A warning is sent.
13a55605 650.SP
060ca767 651.B "SERVINFO"
652Returns information about the server, in the form of key-value pairs.
653The following keys are used.
654.RS
655.TP
656.B implementation
657A keyword naming the implementation of the
658.BR tripe (8)
659server. The current implementation is called
660.BR edgeware-tripe .
661.TP
662.B version
663The server's version number, as reported by
664.BR VERSION .
665.TP
666.B daemon
667Either
668.B t
669or
670.BR nil ,
671if the server has or hasn't (respectively) become a daemon.
672.RE
13a55605 673.SP
64cf2223
MW
674.BI "SETIFNAME " peer " " new-name
675Informs the server that the
676.IR peer 's
677tunnel-interface name has been changed to
678.IR new-name .
679This is useful if firewalling decisions are made based on interface
680names: a setup script for a particular peer can change the name, and
681then update the server's records so that they're accurate.
682.SP
bdc44f5b
MW
683.BI "SVCCLAIM " service " " version
684Attempts to claim the named
685.IR service ,
686offering the given
687.IR version .
688The claim is successful if the service is currently unclaimed, or if
689a version earlier than
690.I version
691is provided; otherwise the command fails with the error
692.BR "service-exists" .
693.SP
694.BI "SVCENSURE " service " \fR[" version \fR]
e04c2d50 695Ensure that
bdc44f5b
MW
696.I service
697is provided, and (if specified) to at least the given
698.IR version .
699An error is reported if these conditions are not met; otherwise the
700command succeeds silently.
701.SP
702.BI "SVCFAIL " jobid " " tokens \fR...
703Send a
704.B FAIL
705(or
706.BR BGFAIL )
707response to the service job with the given
708.IR jobid ,
e04c2d50 709passing the
bdc44f5b
MW
710.I tokens
711as the reason for failure. The job is closed.
712.SP
713.BI "SVCINFO " jobid " " tokens \fR...
714Send an
715.B INFO
716(or
717.BR BGINFO )
718response to the service job with the given
719.IR jobid ,
720passing the
721.I tokens
722as the info message. The job remains open.
723.SP
724.B "SVCLIST"
725Output a line of the form
726.RS
727.IP
728.B INFO
729.I service
730.I version
731.PP
732for each service currently provided.
733.RE
734.SP
735.BI "SVCOK " jobid
736Send an
737.B OK
738(or
739.BR BGINFO )
740response to the service job with the given
741.IR jobid .
742The job is closed.
743.SP
744.BI "SVCQUERY " service
745Emits a number of
746.B info
747lines in key-value format, describing the named
748.IR service.
749The following keys are used.
750.RS
751.TP
752.B name
753The service's name.
754.TP
755.B version
756The service's version string.
757.RE
758.SP
759.BI "SVCRELEASE " service
760Announce that the client no longer wishes to provide the named
761.IR service .
762.SP
763.BI "SVCSUBMIT \fR[" options "\fR] " service " " command " " arguments \fR...
764Submit a job to the provider of the given
765.IR service ,
766passing it the named
767.I command
768and the given
769.IR arguments .
770The following options are accepted.
771.RS
772.\"+opts
773.TP
774.BI "\-background " tag
775Run the command in the background, using the given
776.IR tag .
777.TP
778.BI "\-version " version
779Ensure that at least the given
780.I version
781of the service is available before submitting the job.
782.RE
783.\"-opts
784.SP
3cdc3f3a 785.BI "STATS " peer
786Emits a number of
787.B INFO
788lines, each containing one or more statistics in the form
789.IB name = value \fR.
790The statistics-gathering is experimental and subject to change.
13a55605 791.SP
d6623498 792.BR "TRACE " [\fIoptions\fP]
060ca767 793Selects trace outputs: see
e04c2d50 794.B "Trace lists"
060ca767 795above. Message types provided are:
d6623498 796.RS
2d752320 797.PP
d6623498 798Currently, the following tracing options are supported:
799.TP
800.B t
801Tunnel events: reception of packets to be encrypted, and injection of
802successfully-decrypted packets.
803.TP
804.B r
805Peer management events: creation and destruction of peer attachments,
806and arrival of messages.
807.TP
808.B a
809Administration interface: acceptance of new connections, and handling of
810the backgroud name-resolution required by the
811.B ADD
812command.
813.TP
d6623498 814.B s
815Handling of symmetric keysets: creation and expiry of keysets, and
816encryption and decryption of messages.
817.TP
818.B x
819Key exchange: reception, parsing and emission of key exchange messages.
820.TP
821.B m
822Key management: loading keys and checking for file modifications.
37941236 823.TP
824.B l
825Display information about challenge issuing and verification.
826.TP
827.B p
828Display contents of packets sent and received by the tunnel and/or peer
829modules.
830.TP
831.B c
832Display inputs, outputs and intermediate results of cryptographic
833operations. This includes plaintext and key material. Use with
834caution.
835.TP
836.B A
837All of the above.
d6623498 838.PP
839Note that the
840.B p
841(packet contents)
842and
843.B c
844(crypto details)
845outputs provide extra detail for other outputs. Specifying
846.B p
847without
37941236 848.BR r
d6623498 849or
850.B t
851isn't useful; neither is specifying
852.B c
853without one of
854.BR s ,
37941236 855.BR l ,
d6623498 856.B x
857or
858.BR m .
859.RE
13a55605 860.SP
060ca767 861.B "TUNNELS"
862For each available tunnel driver, an
863.B INFO
864line is printed giving its name.
13a55605 865.SP
060ca767 866.B "VERSION"
867Causes the server to emit an
868.B INFO
83487ded 869line stating its software version, as two tokens: the server name, and
060ca767 870its version string. The server name
871.B tripe
872is reserved to the Straylight/Edgeware implementation.
13a55605 873.SP
3cdc3f3a 874.BR "WATCH " [\fIoptions\fP]
bdc44f5b 875Enables or disables asynchronous broadcasts
3cdc3f3a 876.IR "for the current connection only" .
060ca767 877See
e04c2d50 878.B "Trace lists"
3cdc3f3a 879above. The default watch state for the connection the server opens
880automatically on stdin/stdout is to show warnings and trace messages;
bdc44f5b
MW
881other connections show no asynchronous broadcast messages. (This is
882done in order to guarantee that a program reading the server's stdout
883does not miss any warnings.)
3cdc3f3a 884.RS
885.PP
060ca767 886Message types provided are:
3cdc3f3a 887.TP
888.B t
889.B TRACE
890messages.
891.TP
892.B n
893.B NOTE
894messages.
895.TP
896.B w
897.B WARN
898messages.
899.TP
37941236 900.B A
3cdc3f3a 901All of the above.
902.RE
13a55605 903.SP
bd58d532 904.BI "WARN " tokens\fR...
e04c2d50 905Issues a
bd58d532 906.B USER
907warning to all interested administration clients.
fc916a09
MW
908.
909.\"--------------------------------------------------------------------------
3cdc3f3a 910.SH "ERROR MESSAGES"
fc916a09 911.
13a55605 912.\"* 20 Error messages (FAIL codes)
3cdc3f3a 913The following
914.B FAIL
de014da6 915(or
916.BR BGFAIL )
3cdc3f3a 917messages are sent to clients as a result of errors during command
918processing.
13a55605 919.SP
3cdc3f3a 920.BI "already-daemon"
921(For
922.BR DAEMON .)
923The
924.B tripe
925server is already running as a daemon.
13a55605 926.SP
f43df819 927.BI "bad-addr-syntax " message
37941236 928(For commands accepting socket addresses.) The address couldn't be
929understood.
13a55605 930.SP
f43df819 931.BI "bad-syntax " cmd " " message
3cdc3f3a 932(For any command.) The command couldn't be understood: e.g., the number
933of arguments was wrong.
13a55605 934.SP
83487ded 935.BI "bad-time-spec " token
0ba8de86 936The
83487ded 937.I token
0ba8de86 938is not a valid time interval specification. Acceptable time
e04c2d50 939specifications are nonnegative integers followed optionally by
0ba8de86 940.BR d ,
941.BR h ,
942.BR m ,
943or
944.BR s ,
945for days, hours, minutes, or seconds, respectively.
13a55605 946.SP
3cdc3f3a 947.BI "bad-trace-option " char
948(For
949.BR TRACE .)
950An unknown trace option was requested.
13a55605 951.SP
3cdc3f3a 952.BI "bad-watch-option " char
953(For
954.BR WATCH .)
955An unknown watch option was requested.
13a55605 956.SP
f43df819 957.BI "daemon-error " ecode " " message
3cdc3f3a 958(For
959.BR DAEMON .)
960An error occurred during the attempt to become a daemon, as reported by
961.IR message .
13a55605 962.SP
3cdc3f3a 963.BI "invalid-port " number
964(For
965.BR ADD .)
966The given port number is out of range.
13a55605 967.SP
bdc44f5b 968.BI "not-service-provider " service
e04c2d50 969(For
bdc44f5b
MW
970.BR SVCRELEASE .)
971The invoking client is not the current provider of the named
972.IR service ,
973and is therefore not allowed to release it.
974.SP
3cdc3f3a 975.BI "peer-create-fail " peer
976(For
977.BR ADD .)
978Adding
979.I peer
980failed for some reason. A warning should have been emitted explaining
981why.
13a55605 982.SP
c8e02c8a
MW
983.BI "peer-addr-exists " address\fR...
984(For
985.BR ADD .)
986There is already a peer with the given
987.IR address .
988.SP
3cdc3f3a 989.BI "peer-exists " peer
990(For
991.BR ADD .)
992There is already a peer named
d6623498 993.IR peer .
13a55605 994.SP
0ba8de86 995.B "ping-send-failed"
996The attempt to send a ping packet failed, probably due to lack of
997encryption keys.
13a55605 998.SP
3cdc3f3a 999.BI "resolve-error " hostname
1000(For
1001.BR ADD .)
1002The DNS name
1003.I hostname
1004could not be resolved.
13a55605 1005.SP
3cdc3f3a 1006.BI "resolver-timeout " hostname
1007(For
1008.BR ADD .)
1009The DNS name
1010.I hostname
1011took too long to resolve.
13a55605 1012.SP
bdc44f5b
MW
1013.BI "service-exists " service " " version
1014(For
1015.BR SVCCLAIM .)
1016Another client is already providing the stated
1017.I version
1018of the
1019.IR service .
1020.SP
1021.BI "service-too-old " service " " version
1022(For
1023.B SVCENSURE
1024and
1025.BR SVCSUBMIT .)
1026Only the given
1027.I version
1028of the requested
1029.I service
1030is available, which does not meet the stated requirements.
1031.SP
ff92ffd3
MW
1032.BI "tag-exists " tag
1033(For long-running commands.) The named
1034.I tag
1035is already the tag of an outstanding job.
1036.SP
3cdc3f3a 1037.BI "unknown-command " token
1038The command
9df937a3 1039.I token
78dcf842 1040was not recognized.
13a55605 1041.SP
72482dfa
MW
1042.BI "unknown-jobid " jobid
1043(For
1044.BR SVCOK ,
1045.BR SVCFAIL ,
1046and
1047.BR SVCINFO .)
1048The token
1049.I jobid
1050is not recognized as identifying an outstanding job. It may have just
1051been cancelled.
1052.SP
3cdc3f3a 1053.BI "unknown-peer " name
1054(For
1055.BR ADDR ,
1056.BR IFNAME ,
1057.BR KILL ,
64cf2223 1058.BR SETIFNAME ,
3cdc3f3a 1059and
1060.BR STATS .)
1061There is no peer called
1062.IR name .
13a55605 1063.SP
fd68efa9 1064.BI "unknown-port " port
3cdc3f3a 1065(For
1066.BR ADD .)
fd68efa9
MW
1067The port name
1068.I port
e04c2d50 1069couldn't be found in
3cdc3f3a 1070.BR /etc/services .
ff92ffd3 1071.TP
bdc44f5b
MW
1072.BI "unknown-service " service
1073(For
1074.BR SVCENSURE ,
1075.BR SVCQUERY ,
1076.BR SVCRELEASE ,
1077and
1078.BR SVCSUBMIT .)
1079The token
1080.I service
1081is not recognized as the name of a client-provided service.
1082.TP
ff92ffd3
MW
1083.BI "unknown-tag " tag
1084(For
1085.BR BGCANCEL .)
1086The given
1087.I tag
1088is not the tag for any outstanding background job. It may have just
1089finished.
fc916a09
MW
1090.
1091.\"--------------------------------------------------------------------------
3cdc3f3a 1092.SH "NOTIFICATIONS"
fc916a09 1093.
13a55605 1094.\"* 30 Notification broadcasts (NOTE codes)
3cdc3f3a 1095The following notifications are sent to clients who request them.
13a55605 1096.SP
42da2a58 1097.BI "ADD " peer " " ifname " " address \fR...
3cdc3f3a 1098A new peer has been added. The peer's name is
42da2a58 1099.IR peer ,
1100its tunnel is network interface
1101.IR ifname ,
3cdc3f3a 1102and its network address is
1103.IR address .
13a55605 1104.SP
3cdc3f3a 1105.BI "DAEMON"
1106The server has forked off into the sunset and become a daemon.
13a55605 1107.SP
37941236 1108.BI "GREET " challenge " " address \fR...
1109A valid greeting was received, with the given challenge (exactly as it
1110was returned by
1111.B GETCHAL
1112earlier).
13a55605 1113.SP
d6623498 1114.BI "KILL " peer
3cdc3f3a 1115The peer
1116.I peer
1117has been killed.
13a55605 1118.SP
3cdc3f3a 1119.BI "KXDONE " peer
1120Key exchange with
1121.I peer
1122finished successfully.
13a55605 1123.SP
3cdc3f3a 1124.BI "KXSTART " peer
1125Key exchange with
1126.I peer
1127has begun or restarted. If key exchange keeps failing, this message
1128will be repeated periodically.
13a55605 1129.SP
6411163d
MW
1130.BI "NEWADDR " peer " " address
1131The given mobile
1132.IR peer 's
1133IP address has been changed to
1134.IR address .
1135.SP
64cf2223
MW
1136.BI "NEWIFNAME " peer " " old-name " " new-name
1137The given
1138.IR peer 's
1139tunnel interface name has been changed from
1140.I old-name
1141to
1142.IR new-name ,
1143as a result of a
1144.B SETIFNAME
1145command.
1146.SP
bdc44f5b
MW
1147.BI "SVCCLAIM " service " " version
1148The named
1149.I service
1150is now available, at the stated
1151.IR version .
1152.SP
1153.BI "SVCRELEASE " service
1154The named
1155.I service
1156is no longer available.
1157.SP
bd58d532 1158.BI "USER " tokens\fR...
1159An administration client issued a notification using the
1160.B NOTIFY
1161command.
fc916a09
MW
1162.
1163.\"--------------------------------------------------------------------------
3cdc3f3a 1164.SH "WARNINGS"
fc916a09 1165.
13a55605
MW
1166.\"* 40 Warning broadcasts (WARN codes)
1167.\"+sep
3cdc3f3a 1168There are many possible warnings. They are categorized according to
1169their first tokens.
f43df819
MW
1170.PP
1171Many of these warnings report system errors. These are reported as a
1172pair of tokens, described below as
1173.I ecode
1174and
1175.IR message .
1176The
1177.I ecode
1178is a string of the form
1179.BI E number
1180giving the
1181.BR errno (3)
1182value of the error; the
1183.I message
1184is the `human-readable' form of the message, as reported by
1185.BR strerror (3).
3cdc3f3a 1186.SS "ABORT warnings"
1187These all indicate that the
d6623498 1188.B tripe
3cdc3f3a 1189server has become unable to continue. If enabled, the server will dump
1190core in its configuration directory.
13a55605 1191.SP
3cdc3f3a 1192.BI "ABORT repeated-select-errors"
1193The main event loop is repeatedly failing. If the server doesn't quit,
1194it will probably waste all available CPU doing nothing.
1195.SS "ADMIN warnings"
1196These indicate a problem with the administration socket interface.
13a55605 1197.SP
f43df819 1198.BI "ADMIN accept-error " ecode " " message
3cdc3f3a 1199There was an error while attempting to accept a connection from a new
1200client.
13a55605 1201.SP
f43df819 1202.BI "ADMIN client-write-error " ecode " " message
3cdc3f3a 1203There was an error sending data to a client. The connection to the
1204client has been closed.
37941236 1205.SS "CHAL warnings"
1206These indicate errors in challenges, either in the
1207.B CHECKCHAL
1208command or in greeting packets.
13a55605 1209.SP
37941236 1210.B "CHAL impossible-challenge"
1211The server hasn't issued any challenges yet. Quite how anyone else
1212thought he could make one up is hard to imagine.
13a55605 1213.SP
37941236 1214.B "CHAL incorrect-tag"
1215Challenge received contained the wrong authentication data. It might be
1216very stale, or a forgery.
13a55605 1217.SP
37941236 1218.B "CHAL invalid-challenge"
1219Challenge received was the wrong length. We might have changed MAC
1220algorithms since the challenge was issued, or it might just be rubbish.
13a55605 1221.SP
37941236 1222.B "CHAL replay duplicated-sequence"
1223Challenge received was a definite replay of an old challenge. Someone's
1224up to something!
13a55605 1225.SP
37941236 1226.B "CHAL replay old-sequence"
1227Challenge received was old, but maybe not actually a replay. Try again.
3cdc3f3a 1228.SS "KEYMGMT warnings"
1229These indicate a problem with the keyring files, or the keys stored in
4d36660a
MW
1230them. The first token is either
1231.B private-keyring
1232or
1233.B public-keyring
1234(notated
1235.IB which -keyring
1236in the descriptions below) indicating which keyring file is problematic,
1237and the second token is the filename of the keyring. Frequently a key
1238tag may be given next, preceded by the token
1239.BR key .
1240.SP
1241.BI "KEYMGMT public-keyring " file " key " tag " algorithm-mismatch"
1242A peer's public key doesn't request the same algorithms as our private
1243key.
1244.SP
1245.BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length " len
1246The key attributes specify the length of MAC tag as
1247.I len
1248but this is an invalid value \(en either too large or not a multiple of
1249eight.
1250.SP
1251.BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length-string " str
1252The key attributes contain
1253.I str
1254where a MAC tag length was expected. The key was generated wrongly.
1255.SP
1256.BI "KEYMGMT private-keyring " file " key " tag " changed-group"
1257The private keyring has been changed, but the new private key can't be
1258used because it uses a different group for Diffie\(enHellman key
1259exchange.
1260.SP
1261.BI "KEYMGMT " which "-keyring " file " io-error " ecode " " message
1262A system error occurred while opening or reading the keyring file.
1263.SP
1264.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-cipher " cipher
1265The key specifies the use of an unknown symmetric encryption algorithm
1266.IR cipher .
1267Maybe the key was generated wrongly, or maybe the version of
1268Catacomb installed is too old.
1269.SP
1270.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-group-type " type
1271The key specifies the use of a Diffie\(enHellman group of an unknown
1272.IR type .
1273Maybe the key was generated wrongly, or maybe the version of
1274.BR tripe (8)
1275is too old.
1276.SP
1277.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-hash " hash
1278The key specifies the use of an unknown hash function
1279.IR hash .
1280Maybe the key was generated wrongly, or maybe the version of Catacomb
1281installed is too old.
1282.SP
1283.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mac " mac
1284The key specifies the use of an unknown message authentication code
1285.IR mac .
1286Maybe the key was generated wrongly, or maybe the version of Catacomb
1287installed is too old.
1288.SP
1289.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mgf-cipher " mgf
1290The key specifies the use of an unknown symmetric encryption function
1291.I mgf
1292for mask generation. Maybe the key was generated wrongly, or maybe the
1293version of Catacomb installed is too old.
1294.SP
1295.BI "KEYMGMT " which "-keyring " file " key " tag " no-hmac-for-hash " hash
1296No message authentication code was given explicitly, and there's no
1297implementation of HMAC for the selected hash function
1298.IR hash .
1299.SP
1300.BI "KEYMGMT " which "-keyring " file " key " tag " " alg " " name " no-key-size " hashsz
1301The
1302.I alg
1303token is either
1304.B cipher
1305or
1306.BR mac .
1307The named algorithm requires more key material than the hash function
1308can provide. You must change either the hash function, or the cipher or
1309MAC.
13a55605 1310.SP
4d36660a
MW
1311.BI "KEYMGMT " which "-keyring " file " key " tag " mgf " mgf " restrictive-key-schedule"
1312The cipher selected for mask-generation is unsuitable because it can't
1313accept arbitrary-sized keys.
13a55605 1314.SP
4d36660a
MW
1315.BI "KEYMGMT " which "-keyring " file " key-not-found " tag
1316A key named
3cdc3f3a 1317.I tag
4d36660a 1318couldn't be found in the keyring.
13a55605 1319.SP
4d36660a
MW
1320.BI "KEYMGMT " which "-keyring " file " line " line " " message
1321The contents of the keyring file are invalid. There may well be a bug
1322in the
1323.BR key (1)
1324program.
3cdc3f3a 1325.SS "KX warnings"
1326These indicate problems during key-exchange. Many indicate either a bug
1327in the server (either yours or the remote one), or some kind of attack
1328in progress. All name a
1329.I peer
1330as the second token: this is the peer the packet is apparently from,
1331though it may have been sent by an attacker instead.
1332.PP
1333In the descriptions below,
1334.I msgtoken
1335is one of the tokens
1336.BR pre-challenge ,
1337.BR cookie ,
1338.BR challenge ,
1339.BR reply ,
1340.BR switch-rq ,
1341or
1342.BR switch-ok .
13a55605 1343.SP
35c8b547
MW
1344.BI "KX " peer " algorithms-mismatch local-private-key " privtag " peer-public-key " pubtag
1345The algorithms specified in the peer's public key
1346.I pubtag
1347don't match the ones described in the private key
1348.IR privtag .
1349.SP
3cdc3f3a 1350.BI "KX " peer " bad-expected-reply-log"
1351The challenges
1352.B tripe
1353uses in its protocol contain a check value which proves that the
1354challenge is honest. This message indicates that the check value
1355supplied is wrong: someone is attempting to use bogus challenges to
1356persuade your
1357.B tripe
1358server to leak private key information. No chance!
13a55605 1359.SP
bd58d532 1360.BI "KX " peer " decrypt-failed reply\fR|\fBswitch-ok"
3cdc3f3a 1361A symmetrically-encrypted portion of a key-exchange message failed to
1362decrypt.
13a55605 1363.SP
3cdc3f3a 1364.BI "KX " peer " invalid " msgtoken
1365A key-exchange message was malformed. This almost certainly indicates a
1366bug somewhere.
13a55605 1367.SP
bd58d532 1368.BI "KX " peer " incorrect cookie\fR|\fBswitch-rq\fR|\fBswitch-ok"
3cdc3f3a 1369A message didn't contain the right magic data. This may be a replay of
1370some old exchange, or random packets being sent in an attempt to waste
1371CPU.
13a55605 1372.SP
35c8b547
MW
1373.BI "KX " peer " " which "-key-expired"
1374The local private key or the peer's public key (distinguished by
1375.IR which )
1376has expired. Either you or the peer's maintainer should have arranged
1377for a replacement before now.
13a55605 1378.SP
3cdc3f3a 1379.BI "KX " peer " sending-cookie"
1380We've received too many bogus pre-challenge messages. Someone is trying
1381to flood us with key-exchange messages and make us waste CPU on doing
1382hard asymmetric crypto sums.
13a55605 1383.SP
3cdc3f3a 1384.BI "KX " peer " unexpected " msgtoken
1385The message received wasn't appropriate for this stage of the key
1386exchange process. This may mean that one of our previous packets got
e04c2d50 1387lost. For
3cdc3f3a 1388.BR pre-challenge ,
1389it may simply mean that the peer has recently restarted.
13a55605 1390.SP
3cdc3f3a 1391.BI "KX " peer " unknown-challenge"
1392The peer is asking for an answer to a challenge which we don't know
1393about. This may mean that we've been inundated with challenges from
1394some malicious source
1395.I who can read our messages
1396and discarded the valid one.
13a55605 1397.SP
3cdc3f3a 1398.BI "KX " peer " unknown-message 0x" nn
1399An unknown key-exchange message arrived.
1400.SS "PEER warnings"
1401These are largely concerned with management of peers and the low-level
83487ded 1402details of the network protocol. The second token is usually the name of
e04c2d50 1403a peer, or
3cdc3f3a 1404.RB ` \- '
1405if none is relevant.
13a55605 1406.SP
3cdc3f3a 1407.BI "PEER " peer " bad-packet no-type"
1408An empty packet arrived. This is very strange.
13a55605 1409.SP
3cdc3f3a 1410.BI "PEER " peer " bad-packet unknown-category 0x" nn
1411The message category
1412.I nn
1413(in hex) isn't understood. Probably a strange random packet from
1414somewhere; could be an unlikely bug.
13a55605 1415.SP
3cdc3f3a 1416.BI "PEER " peer " bad-packet unknown-type 0x" nn
1417The message type
1418.I nn
1419(in hex) isn't understood. Probably a strange random packet from
1420somewhere; could be an unlikely bug.
13a55605 1421.SP
0ba8de86 1422.BI "PEER " peer " corrupt-encrypted-ping"
1423The peer sent a ping response which matches an outstanding ping, but its
1424payload is wrong. There's definitely a bug somewhere.
13a55605 1425.SP
0ba8de86 1426.BI "PEER " peer " corrupt-transport-ping"
1427The peer (apparently) sent a ping response which matches an outstanding
1428ping, but its payload is wrong. Either there's a bug, or the bad guys
1429are playing tricks on you.
13a55605 1430.SP
3cdc3f3a 1431.BI "PEER " peer " decrypt-failed"
1432An encrypted IP packet failed to decrypt. It may have been mangled in
1433transit, or may be a very old packet from an expired previous session
1434key. There is usually a considerable overlap in the validity periods of
1435successive session keys, so this shouldn't occur unless the key exchange
1436takes ages or fails.
13a55605 1437.SP
0ba8de86 1438.BI "PEER " peer " malformed-encrypted-ping"
1439The peer sent a ping response which is hopelessly invalid. There's
1440definitely a bug somewhere.
13a55605 1441.SP
0ba8de86 1442.BI "PEER " peer " malformed-transport-ping"
1443The peer (apparently) sent a ping response which is hopelessly invalid.
1444Either there's a bug, or the bad guys are playing tricks on you.
13a55605 1445.SP
3cdc3f3a 1446.BI "PEER " peer " packet-build-failed"
1447There wasn't enough space in our buffer to put the packet we wanted to
1448send. Shouldn't happen.
13a55605 1449.SP
f43df819 1450.BI "PEER \- socket-read-error " ecode " " message
3cdc3f3a 1451An error occurred trying to read an incoming packet.
13a55605 1452.SP
f43df819 1453.BI "PEER " peer " socket-write-error " ecode " " message
3cdc3f3a 1454An error occurred attempting to send a network packet. We lost that
1455one.
13a55605 1456.SP
0ba8de86 1457.BI "PEER " peer " unexpected-encrypted-ping 0x" id
1458The peer sent an encrypted ping response whose id doesn't match any
1459outstanding ping. Maybe it was delayed for longer than the server was
1460willing to wait, or maybe the peer has gone mad.
13a55605 1461.SP
0ba8de86 1462.BI "PEER \- unexpected-source " address\fR...
1463A packet arrived from
1464.I address
1465(a network address \(en see above), but no peer is known at that
1466address. This may indicate a misconfiguration, or simply be a result of
1467one end of a connection being set up before the other.
13a55605 1468.SP
0ba8de86 1469.BI "PEER " peer " unexpected-transport-ping 0x" id
1470The peer (apparently) sent a transport ping response whose id doesn't
1471match any outstanding ping. Maybe it was delayed for longer than the
1472server was willing to wait, or maybe the peer has gone mad; or maybe
1473there are bad people trying to confuse you.
3cdc3f3a 1474.SS "SERVER warnings"
1475These indicate problems concerning the server process as a whole.
13a55605 1476.SP
3cdc3f3a 1477.BI "SERVER ignore signal " name
1478A signal arrived, but the server ignored it. Currently this happens for
1479.B SIGHUP
1480because that's a popular way of telling daemons to re-read their
1481configuration files. Since
1482.B tripe
1483re-reads its keyrings automatically and has no other configuration
1484files, it's not relevant, but it seemed better to ignore the signal than
1485let the server die.
13a55605 1486.SP
3cdc3f3a 1487.BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
1488A signal arrived and
1489.B tripe
1490is going to quit.
13a55605 1491.SP
3cdc3f3a 1492.BI "SERVER quit admin-request"
1493A client of the administration interface issued a
1494.B QUIT
1495command.
13a55605 1496.SP
46dde080
MW
1497.BI "SERVER quit foreground-eof"
1498The server is running in foreground mode (the
1499.B \-F
1500option), and encountered end-of-file on standard input.
1501.SP
f43df819 1502.BI "SERVER select-error " ecode " " message
3cdc3f3a 1503An error occurred in the server's main event loop. This is bad: if it
1504happens too many times, the server will abort.
1505.SS "SYMM warnings"
1506These are concerned with the symmetric encryption and decryption
1507process.
13a55605 1508.SP
3cdc3f3a 1509.BI "SYMM replay old-sequence"
1510A packet was received with an old sequence number. It may just have
1511been delayed or duplicated, or it may have been an attempt at a replay
1512attack.
13a55605 1513.SP
3cdc3f3a 1514.BI "SYMM replay duplicated-sequence"
1515A packet was received with a sequence number we've definitely seen
1516before. It may be an accidental duplication because the 'net is like
1517that, or a deliberate attempt at a replay.
1518.SS "TUN warnings"
1519These concern the workings of the system-specific tunnel driver. The
83487ded 1520second token is the name of the tunnel interface in question, or
3cdc3f3a 1521.RB ` \- '
1522if none.
13a55605 1523.SP
3cdc3f3a 1524.BI "TUN \- bsd no-tunnel-devices"
1525The driver couldn't find an available tunnel device. Maybe if you
e04c2d50 1526create some more
3cdc3f3a 1527.BI /dev/tun nn
1528files, it will work.
13a55605 1529.SP
72917fe7 1530.BI "TUN \- " tun-name " open-error " device " " ecode " " message
3cdc3f3a 1531An attempt to open the tunnel device file
1532.I device
1533failed.
13a55605 1534.SP
f43df819 1535.BI "TUN \- linux config-error " ecode " " message
3cdc3f3a 1536Configuring the Linux TUN/TAP interface failed.
13a55605 1537.SP
f43df819 1538.BI "TUN " ifname " " tun-name " read-error " ecode " " message
42da2a58 1539Reading from the tunnel device failed.
13a55605 1540.SP
898975ee
MW
1541.BI "TUN " ifname " " tun-name " write-error " ecode " " message
1542Writing from the tunnel device failed.
1543.SP
42da2a58 1544.BI "TUN " ifname " slip bad-escape"
1545The SLIP driver encountered a escaped byte it wasn't expecting to see.
1546The erroneous packet will be ignored.
13a55605 1547.SP
b9066fbb 1548.BI "TUN " ifname " slip eof"
1549The SLIP driver encountered end-of-file on its input descriptor.
1550Pending data is discarded, and no attempt is made to read any more data
1551from that interface ever.
13a55605 1552.SP
b9066fbb 1553.BI "TUN " ifname " slip escape-end"
1554The SLIP driver encountered an escaped `end' marker. This probably
1555means that someone's been sending it junk. The erroneous packet is
1556discarded, and we hope that we've rediscovered synchronization.
13a55605 1557.SP
f43df819 1558.BI "TUN \- slip fork-error " ecode " " message
42da2a58 1559The SLIP driver encountered an error forking a child process while
1560allocating a new dynamic interface.
13a55605 1561.SP
42da2a58 1562.BI "TUN \- slip no-slip-interfaces"
1563The driver ran out of static SLIP interfaces. Either preallocate more,
1564or use dynamic SLIP interface allocation.
13a55605 1565.SP
b9066fbb 1566.BI "TUN " ifname " slip overflow"
1567The SLIP driver gave up reading a packet because it got too large.
13a55605 1568.SP
f43df819 1569.BI "TUN \- slip pipe-error " ecode " " message
42da2a58 1570The SLIP driver encountered an error creating pipes while allocating a
1571new dynamic interface.
13a55605 1572.SP
f43df819 1573.BI "TUN \- slip read-ifname-failed " ecode " " message
42da2a58 1574The SLIP driver encountered an error reading the name of a dynamically
1575allocated interface. Maybe the allocation script is broken.
13a55605 1576.SP
f43df819 1577.BI "TUN \- unet config-error " ecode " " message
42da2a58 1578Configuring the Linux Unet interface failed. Unet is obsolete and
1579shouldn't be used any more.
13a55605 1580.SP
f43df819 1581.BI "TUN \- unet getinfo-error " ecode " " message
42da2a58 1582Reading information about the Unet interface failed. Unet is obsolete
1583and shouldn't be used any more.
bd58d532 1584.SS "USER warnings"
1585These are issued by administration clients using the
1586.B WARN
1587command.
13a55605 1588.SP
bd58d532 1589.BI "USER " tokens\fR...
1590An administration client issued a warning.
13a55605 1591.\"-sep
fc916a09
MW
1592.
1593.\"--------------------------------------------------------------------------
13a55605 1594.SH "SUMMARY"
fc916a09 1595.
13a55605
MW
1596.SS "Command responses"
1597.nf
2acd7cd6 1598.BI "BGDETACH " tag
13a55605
MW
1599.BI "BGFAIL " tag " " tokens \fR...
1600.BI "BGINFO " tag " " tokens \fR...
1601.BI "BGOK " tag
1602.BI "FAIL " tokens \fR...
1603.BI "INFO " tokens \fR...
1604.B OK
1605.fi
1606.\"= summary
fc916a09
MW
1607.
1608.\"--------------------------------------------------------------------------
d6623498 1609.SH "SEE ALSO"
fc916a09 1610.
d6623498 1611.BR tripectl (1),
1612.BR tripe (8).
1613.PP
3cdc3f3a 1614.IR "The Trivial IP Encryption Protocol" .
fc916a09
MW
1615.
1616.\"--------------------------------------------------------------------------
d6623498 1617.SH "AUTHOR"
fc916a09 1618.
d36eda2a 1619Mark Wooding, <mdw@distorted.org.uk>
fc916a09
MW
1620.
1621.\"----- That's all, folks --------------------------------------------------