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