chiark / gitweb /
build, debian: Add a suffix to the main TrIPE-specific manpages.
[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.\"--------------------------------------------------------------------------
0647ba7c 30.TH tripe-admin 5tripe "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
a93aacce
MW
426.B bulk-transform
427The name of the bulk-crypto transform.
428.TP
429.B bulk-overhead
430The amount of overhead, in bytes, caused by the crypto transform.
431.TP
449991a3
MW
432.B cipher
433The name of the bulk data cipher in use, e.g.,
434.BR blowfish-cbc .
435.TP
436.B cipher-keysz
437The length of key used by the bulk data cipher, in octets.
438.TP
439.B cipher-blksz
440The block size of the bulk data cipher, or zero if it's not based on a
441block cipher.
442.TP
443.B cipher-data-limit
444The maximum amount of data to be encrypted using a single key. (A new
445key exchange is instigated well before the limit is reached, in order to
446allow for a seamless changeover of keys.)
447.TP
448.B mac
449The message authentication algorithm in use, e.g.,
494a7ac0 450.BR ripemd160-hmac .
449991a3
MW
451.TP
452.B mac-keysz
453The length of the key used by the message authentication algorithm, in
454octets.
455.TP
456.B mac-tagsz
457The length of the message authentication tag, in octets.
b87bffcb
MW
458.TP
459.B blkc
460The block cipher in use, e.g.,
461.BR blowfish .
462.TP
463.B blkc-keysz
464The length of key used by the block cipher, in octets.
465.TP
466.B blkc-blksz
467The block size of the block cipher.
449991a3
MW
468.PP
469The various sizes are useful, for example, when computing the MTU for a
470tunnel interface. If
471.I MTU
472is the MTU of the path to the peer, then the tunnel MTU should be
473.IP
474.I MTU
a93aacce
MW
475\- 29 \-
476.I bulk-overhead
449991a3
MW
477.PP
478allowing 20 bytes of IP header, 8 bytes of UDP header, a packet type
a93aacce
MW
479octet, and the bulk-crypto transform overhead (which includes the
480sequence number).
449991a3
MW
481.RE
482.SP
ff92ffd3
MW
483.BI "BGCANCEL " tag
484Cancels the background job with the named
485.IR tag .
486.SP
37941236 487.BI "CHECKCHAL " challenge
488Verifies a challenge as being one earlier issued by
489.B GETCHAL
490and not previously either passed to
491.B CHECKCHAL
492or in a greeting message.
13a55605 493.SP
3cdc3f3a 494.B "DAEMON"
495Causes the server to disassociate itself from its terminal and become a
c37b77e0 496background task. This only works once. A notification is issued.
2acd7cd6 497.SP
0ba8de86 498.BI "EPING \fR[" options "\fR] " peer
499Sends an encrypted ping to the peer, and expects an encrypted response.
500This checks that the peer is running (and not being impersonated), and
501that it can encrypt and decrypt packets correctly. Options and
502responses are the same as for the
503.B PING
504command.
13a55605 505.SP
de014da6 506.BI "FORCEKX " peer
507Requests the server to begin a new key exchange with
508.I peer
509immediately.
13a55605 510.SP
37941236 511.B "GETCHAL"
512Requests a challenge. The challenge is returned in an
513.B INFO
514line, as a base64-encoded string. See
515.BR CHECKCHAL .
13a55605 516.SP
37941236 517.BI "GREET " peer " " challenge
518Sends a greeting packet containing the
519.I challenge
520(base-64 encoded) to the named
521.IR peer .
522The expectation is that this will cause the peer to recognize us and
523begin a key-exchange.
13a55605 524.SP
d6623498 525.B "HELP"
526Causes the server to emit an
527.B INFO
528line for each command it supports. Each line lists the command name,
529followed by the names of the arguments. This may be helpful as a memory
530aid for interactive use, or for program clients probing for features.
e04c2d50 531.SP
3cdc3f3a 532.BI "IFNAME " peer
533Emits an
534.B INFO
535line containing the name of the network interface used to collect IP
536packets which are to be encrypted and sent to
537.IR peer .
538Used by configuration scripts so that they can set up routing tables
539appropriately after adding new peers.
13a55605 540.SP
ff92ffd3
MW
541.B "JOBS"
542Emits an
543.B INFO
544line giving the tag for each outstanding background job.
545.SP
3cdc3f3a 546.BI "KILL " peer
547Causes the server to forget all about
548.IR peer .
549All keys are destroyed, and no more packets are sent. No notification
550is sent to the peer: if it's important that the peer be notified, you
551must think of a way to do that yourself.
13a55605 552.SP
3cdc3f3a 553.B "LIST"
554For each currently-known peer, an
555.B INFO
556line is written containing the peer's name, as given to
557.BR ADD .
13a55605 558.SP
bd58d532 559.BI "NOTIFY " tokens\fR...
e04c2d50 560Issues a
bd58d532 561.B USER
562notification to all interested administration clients.
13a55605 563.SP
060ca767 564.BI "PEERINFO " peer
565Returns information about a peer, in key-value form. The following keys
566are returned.
567.RS
568.TP
569.B tunnel
570The tunnel driver used for this peer.
571.TP
572.B keepalive
573The keepalive interval, in seconds, or zero if no keepalives are to be
574sent.
48b84569
MW
575.TP
576.B key
fe2a5dcf 577The (short) key tag being used for the peer, as passed to the
48b84569 578.B ADD
fe2a5dcf
MW
579command.
580.TP
581.B current-key
582The full key tag of the peer's public key currently being used. This
583may change during the life of the association.
584.TP
585.B private-key
586The private key tag being used for the peer, as passed to the
587.B ADD
f3c6d21c
MW
588command, or the
589.RB ` \-t '
590command-line option. If neither of these was given explicitly, the
591private key tag is shown as
592.RB ` (default) ',
593since there is no fixed tag used under these circumstances.
fe2a5dcf
MW
594.TP
595.B current-private-key
596The full key tag of the private key currently being used for this
597association. This may change during the life of the association.
060ca767 598.RE
13a55605 599.SP
0ba8de86 600.BI "PING \fR[" options "\fR] " peer
601Send a transport-level ping to the peer. The ping and its response are
602not encrypted or authenticated. This command, possibly in conjunction
603with tracing, is useful for ensuring that UDP packets are actually
604flowing in both directions. See also the
605.B EPING
606command.
607.IP
608An
609.B INFO
610line is printed describing the outcome:
611.RS
612.TP
613.BI "ping-ok " millis
e04c2d50 614A response was received
0ba8de86 615.I millis
616after the ping was sent.
617.TP
618.BI "ping-timeout"
619No response was received within the time allowed.
620.TP
621.BI "ping-peer-died"
622The peer was killed (probably by another admin connection) before a
623response was received.
624.RE
625.IP
626Options recognized for this command are:
627.RS
13a55605 628.\"+opts
0ba8de86 629.TP
de014da6 630.BI "\-background " tag
631Run the command in the background, using the given
632.IR tag .
633.TP
0ba8de86 634.BI "\-timeout " time
635Wait for
636.I time
2acd7cd6
MW
637seconds before giving up on a response. The default is 5 seconds. The
638.I time
639is expressed as a nonnegative integer followed optionally by
640.BR d ,
641.BR h ,
642.BR m ,
643or
644.BR s
645for days, hours, minutes, or seconds respectively; if no suffix is
646given, seconds are assumed.
13a55605 647.\"-opts
0ba8de86 648.RE
13a55605 649.SP
3cdc3f3a 650.B "PORT"
651Emits an
652.B INFO
653line containing just the number of the UDP port used by the
654.B tripe
655server. If you've allowed your server to allocate a port dynamically,
656this is how to find out which one it chose.
13a55605 657.SP
de014da6 658.B "RELOAD"
659Instructs the server to recheck its keyring files. The server checks
660these periodically anyway but it may be necessary to force a recheck,
661for example after adding a new peer key.
13a55605 662.SP
3cdc3f3a 663.B "QUIT"
664Instructs the server to exit immediately. A warning is sent.
13a55605 665.SP
060ca767 666.B "SERVINFO"
667Returns information about the server, in the form of key-value pairs.
668The following keys are used.
669.RS
670.TP
671.B implementation
672A keyword naming the implementation of the
673.BR tripe (8)
674server. The current implementation is called
675.BR edgeware-tripe .
676.TP
677.B version
678The server's version number, as reported by
679.BR VERSION .
680.TP
681.B daemon
682Either
683.B t
684or
685.BR nil ,
686if the server has or hasn't (respectively) become a daemon.
687.RE
13a55605 688.SP
64cf2223
MW
689.BI "SETIFNAME " peer " " new-name
690Informs the server that the
691.IR peer 's
692tunnel-interface name has been changed to
693.IR new-name .
694This is useful if firewalling decisions are made based on interface
695names: a setup script for a particular peer can change the name, and
696then update the server's records so that they're accurate.
697.SP
bdc44f5b
MW
698.BI "SVCCLAIM " service " " version
699Attempts to claim the named
700.IR service ,
701offering the given
702.IR version .
703The claim is successful if the service is currently unclaimed, or if
704a version earlier than
705.I version
706is provided; otherwise the command fails with the error
707.BR "service-exists" .
708.SP
709.BI "SVCENSURE " service " \fR[" version \fR]
e04c2d50 710Ensure that
bdc44f5b
MW
711.I service
712is provided, and (if specified) to at least the given
713.IR version .
714An error is reported if these conditions are not met; otherwise the
715command succeeds silently.
716.SP
717.BI "SVCFAIL " jobid " " tokens \fR...
718Send a
719.B FAIL
720(or
721.BR BGFAIL )
722response to the service job with the given
723.IR jobid ,
e04c2d50 724passing the
bdc44f5b
MW
725.I tokens
726as the reason for failure. The job is closed.
727.SP
728.BI "SVCINFO " jobid " " tokens \fR...
729Send an
730.B INFO
731(or
732.BR BGINFO )
733response to the service job with the given
734.IR jobid ,
735passing the
736.I tokens
737as the info message. The job remains open.
738.SP
739.B "SVCLIST"
740Output a line of the form
741.RS
742.IP
743.B INFO
744.I service
745.I version
746.PP
747for each service currently provided.
748.RE
749.SP
750.BI "SVCOK " jobid
751Send an
752.B OK
753(or
754.BR BGINFO )
755response to the service job with the given
756.IR jobid .
757The job is closed.
758.SP
759.BI "SVCQUERY " service
760Emits a number of
761.B info
762lines in key-value format, describing the named
763.IR service.
764The following keys are used.
765.RS
766.TP
767.B name
768The service's name.
769.TP
770.B version
771The service's version string.
772.RE
773.SP
774.BI "SVCRELEASE " service
775Announce that the client no longer wishes to provide the named
776.IR service .
777.SP
778.BI "SVCSUBMIT \fR[" options "\fR] " service " " command " " arguments \fR...
779Submit a job to the provider of the given
780.IR service ,
781passing it the named
782.I command
783and the given
784.IR arguments .
785The following options are accepted.
786.RS
787.\"+opts
788.TP
789.BI "\-background " tag
790Run the command in the background, using the given
791.IR tag .
792.TP
793.BI "\-version " version
794Ensure that at least the given
795.I version
796of the service is available before submitting the job.
797.RE
798.\"-opts
799.SP
3cdc3f3a 800.BI "STATS " peer
801Emits a number of
802.B INFO
803lines, each containing one or more statistics in the form
804.IB name = value \fR.
805The statistics-gathering is experimental and subject to change.
13a55605 806.SP
d6623498 807.BR "TRACE " [\fIoptions\fP]
060ca767 808Selects trace outputs: see
e04c2d50 809.B "Trace lists"
060ca767 810above. Message types provided are:
d6623498 811.RS
2d752320 812.PP
d6623498 813Currently, the following tracing options are supported:
814.TP
815.B t
816Tunnel events: reception of packets to be encrypted, and injection of
817successfully-decrypted packets.
818.TP
819.B r
820Peer management events: creation and destruction of peer attachments,
821and arrival of messages.
822.TP
823.B a
824Administration interface: acceptance of new connections, and handling of
825the backgroud name-resolution required by the
826.B ADD
827command.
828.TP
d6623498 829.B s
830Handling of symmetric keysets: creation and expiry of keysets, and
831encryption and decryption of messages.
832.TP
833.B x
834Key exchange: reception, parsing and emission of key exchange messages.
835.TP
836.B m
837Key management: loading keys and checking for file modifications.
37941236 838.TP
839.B l
840Display information about challenge issuing and verification.
841.TP
842.B p
843Display contents of packets sent and received by the tunnel and/or peer
844modules.
845.TP
846.B c
847Display inputs, outputs and intermediate results of cryptographic
848operations. This includes plaintext and key material. Use with
849caution.
850.TP
851.B A
852All of the above.
d6623498 853.PP
854Note that the
855.B p
856(packet contents)
857and
858.B c
859(crypto details)
860outputs provide extra detail for other outputs. Specifying
861.B p
862without
37941236 863.BR r
d6623498 864or
865.B t
866isn't useful; neither is specifying
867.B c
868without one of
869.BR s ,
37941236 870.BR l ,
d6623498 871.B x
872or
873.BR m .
874.RE
13a55605 875.SP
060ca767 876.B "TUNNELS"
877For each available tunnel driver, an
878.B INFO
879line is printed giving its name.
13a55605 880.SP
060ca767 881.B "VERSION"
882Causes the server to emit an
883.B INFO
83487ded 884line stating its software version, as two tokens: the server name, and
060ca767 885its version string. The server name
886.B tripe
887is reserved to the Straylight/Edgeware implementation.
13a55605 888.SP
3cdc3f3a 889.BR "WATCH " [\fIoptions\fP]
bdc44f5b 890Enables or disables asynchronous broadcasts
3cdc3f3a 891.IR "for the current connection only" .
060ca767 892See
e04c2d50 893.B "Trace lists"
3cdc3f3a 894above. The default watch state for the connection the server opens
895automatically on stdin/stdout is to show warnings and trace messages;
bdc44f5b
MW
896other connections show no asynchronous broadcast messages. (This is
897done in order to guarantee that a program reading the server's stdout
898does not miss any warnings.)
3cdc3f3a 899.RS
900.PP
060ca767 901Message types provided are:
3cdc3f3a 902.TP
903.B t
904.B TRACE
905messages.
906.TP
907.B n
908.B NOTE
909messages.
910.TP
911.B w
912.B WARN
913messages.
914.TP
37941236 915.B A
3cdc3f3a 916All of the above.
917.RE
13a55605 918.SP
bd58d532 919.BI "WARN " tokens\fR...
e04c2d50 920Issues a
bd58d532 921.B USER
922warning to all interested administration clients.
fc916a09
MW
923.
924.\"--------------------------------------------------------------------------
3cdc3f3a 925.SH "ERROR MESSAGES"
fc916a09 926.
13a55605 927.\"* 20 Error messages (FAIL codes)
3cdc3f3a 928The following
929.B FAIL
de014da6 930(or
931.BR BGFAIL )
3cdc3f3a 932messages are sent to clients as a result of errors during command
933processing.
13a55605 934.SP
3cdc3f3a 935.BI "already-daemon"
936(For
937.BR DAEMON .)
938The
939.B tripe
940server is already running as a daemon.
13a55605 941.SP
f43df819 942.BI "bad-addr-syntax " message
37941236 943(For commands accepting socket addresses.) The address couldn't be
944understood.
13a55605 945.SP
f43df819 946.BI "bad-syntax " cmd " " message
3cdc3f3a 947(For any command.) The command couldn't be understood: e.g., the number
948of arguments was wrong.
13a55605 949.SP
83487ded 950.BI "bad-time-spec " token
0ba8de86 951The
83487ded 952.I token
0ba8de86 953is not a valid time interval specification. Acceptable time
e04c2d50 954specifications are nonnegative integers followed optionally by
0ba8de86 955.BR d ,
956.BR h ,
957.BR m ,
958or
959.BR s ,
960for days, hours, minutes, or seconds, respectively.
13a55605 961.SP
3cdc3f3a 962.BI "bad-trace-option " char
963(For
964.BR TRACE .)
965An unknown trace option was requested.
13a55605 966.SP
3cdc3f3a 967.BI "bad-watch-option " char
968(For
969.BR WATCH .)
970An unknown watch option was requested.
13a55605 971.SP
f43df819 972.BI "daemon-error " ecode " " message
3cdc3f3a 973(For
974.BR DAEMON .)
975An error occurred during the attempt to become a daemon, as reported by
976.IR message .
13a55605 977.SP
3cdc3f3a 978.BI "invalid-port " number
979(For
980.BR ADD .)
981The given port number is out of range.
13a55605 982.SP
bdc44f5b 983.BI "not-service-provider " service
e04c2d50 984(For
bdc44f5b
MW
985.BR SVCRELEASE .)
986The invoking client is not the current provider of the named
987.IR service ,
988and is therefore not allowed to release it.
989.SP
3cdc3f3a 990.BI "peer-create-fail " peer
991(For
992.BR ADD .)
993Adding
994.I peer
995failed for some reason. A warning should have been emitted explaining
996why.
13a55605 997.SP
c8e02c8a
MW
998.BI "peer-addr-exists " address\fR...
999(For
1000.BR ADD .)
1001There is already a peer with the given
1002.IR address .
1003.SP
3cdc3f3a 1004.BI "peer-exists " peer
1005(For
1006.BR ADD .)
1007There is already a peer named
d6623498 1008.IR peer .
13a55605 1009.SP
0ba8de86 1010.B "ping-send-failed"
1011The attempt to send a ping packet failed, probably due to lack of
1012encryption keys.
13a55605 1013.SP
3cdc3f3a 1014.BI "resolve-error " hostname
1015(For
1016.BR ADD .)
1017The DNS name
1018.I hostname
1019could not be resolved.
13a55605 1020.SP
3cdc3f3a 1021.BI "resolver-timeout " hostname
1022(For
1023.BR ADD .)
1024The DNS name
1025.I hostname
1026took too long to resolve.
13a55605 1027.SP
bdc44f5b
MW
1028.BI "service-exists " service " " version
1029(For
1030.BR SVCCLAIM .)
1031Another client is already providing the stated
1032.I version
1033of the
1034.IR service .
1035.SP
1036.BI "service-too-old " service " " version
1037(For
1038.B SVCENSURE
1039and
1040.BR SVCSUBMIT .)
1041Only the given
1042.I version
1043of the requested
1044.I service
1045is available, which does not meet the stated requirements.
1046.SP
ff92ffd3
MW
1047.BI "tag-exists " tag
1048(For long-running commands.) The named
1049.I tag
1050is already the tag of an outstanding job.
1051.SP
3cdc3f3a 1052.BI "unknown-command " token
1053The command
9df937a3 1054.I token
78dcf842 1055was not recognized.
13a55605 1056.SP
72482dfa
MW
1057.BI "unknown-jobid " jobid
1058(For
1059.BR SVCOK ,
1060.BR SVCFAIL ,
1061and
1062.BR SVCINFO .)
1063The token
1064.I jobid
1065is not recognized as identifying an outstanding job. It may have just
1066been cancelled.
1067.SP
3cdc3f3a 1068.BI "unknown-peer " name
1069(For
1070.BR ADDR ,
1071.BR IFNAME ,
1072.BR KILL ,
64cf2223 1073.BR SETIFNAME ,
3cdc3f3a 1074and
1075.BR STATS .)
1076There is no peer called
1077.IR name .
13a55605 1078.SP
fd68efa9 1079.BI "unknown-port " port
3cdc3f3a 1080(For
1081.BR ADD .)
fd68efa9
MW
1082The port name
1083.I port
e04c2d50 1084couldn't be found in
3cdc3f3a 1085.BR /etc/services .
ff92ffd3 1086.TP
bdc44f5b
MW
1087.BI "unknown-service " service
1088(For
1089.BR SVCENSURE ,
1090.BR SVCQUERY ,
1091.BR SVCRELEASE ,
1092and
1093.BR SVCSUBMIT .)
1094The token
1095.I service
1096is not recognized as the name of a client-provided service.
1097.TP
ff92ffd3
MW
1098.BI "unknown-tag " tag
1099(For
1100.BR BGCANCEL .)
1101The given
1102.I tag
1103is not the tag for any outstanding background job. It may have just
1104finished.
fc916a09
MW
1105.
1106.\"--------------------------------------------------------------------------
3cdc3f3a 1107.SH "NOTIFICATIONS"
fc916a09 1108.
13a55605 1109.\"* 30 Notification broadcasts (NOTE codes)
3cdc3f3a 1110The following notifications are sent to clients who request them.
13a55605 1111.SP
42da2a58 1112.BI "ADD " peer " " ifname " " address \fR...
3cdc3f3a 1113A new peer has been added. The peer's name is
42da2a58 1114.IR peer ,
1115its tunnel is network interface
1116.IR ifname ,
3cdc3f3a 1117and its network address is
1118.IR address .
13a55605 1119.SP
3cdc3f3a 1120.BI "DAEMON"
1121The server has forked off into the sunset and become a daemon.
13a55605 1122.SP
37941236 1123.BI "GREET " challenge " " address \fR...
1124A valid greeting was received, with the given challenge (exactly as it
1125was returned by
1126.B GETCHAL
1127earlier).
13a55605 1128.SP
d6623498 1129.BI "KILL " peer
3cdc3f3a 1130The peer
1131.I peer
1132has been killed.
13a55605 1133.SP
3cdc3f3a 1134.BI "KXDONE " peer
1135Key exchange with
1136.I peer
1137finished successfully.
13a55605 1138.SP
3cdc3f3a 1139.BI "KXSTART " peer
1140Key exchange with
1141.I peer
1142has begun or restarted. If key exchange keeps failing, this message
1143will be repeated periodically.
13a55605 1144.SP
6411163d
MW
1145.BI "NEWADDR " peer " " address
1146The given mobile
1147.IR peer 's
1148IP address has been changed to
1149.IR address .
1150.SP
64cf2223
MW
1151.BI "NEWIFNAME " peer " " old-name " " new-name
1152The given
1153.IR peer 's
1154tunnel interface name has been changed from
1155.I old-name
1156to
1157.IR new-name ,
1158as a result of a
1159.B SETIFNAME
1160command.
1161.SP
bdc44f5b
MW
1162.BI "SVCCLAIM " service " " version
1163The named
1164.I service
1165is now available, at the stated
1166.IR version .
1167.SP
1168.BI "SVCRELEASE " service
1169The named
1170.I service
1171is no longer available.
1172.SP
bd58d532 1173.BI "USER " tokens\fR...
1174An administration client issued a notification using the
1175.B NOTIFY
1176command.
fc916a09
MW
1177.
1178.\"--------------------------------------------------------------------------
3cdc3f3a 1179.SH "WARNINGS"
fc916a09 1180.
13a55605
MW
1181.\"* 40 Warning broadcasts (WARN codes)
1182.\"+sep
3cdc3f3a 1183There are many possible warnings. They are categorized according to
1184their first tokens.
f43df819
MW
1185.PP
1186Many of these warnings report system errors. These are reported as a
1187pair of tokens, described below as
1188.I ecode
1189and
1190.IR message .
1191The
1192.I ecode
1193is a string of the form
1194.BI E number
1195giving the
1196.BR errno (3)
1197value of the error; the
1198.I message
1199is the `human-readable' form of the message, as reported by
1200.BR strerror (3).
3cdc3f3a 1201.SS "ABORT warnings"
1202These all indicate that the
d6623498 1203.B tripe
3cdc3f3a 1204server has become unable to continue. If enabled, the server will dump
1205core in its configuration directory.
13a55605 1206.SP
3cdc3f3a 1207.BI "ABORT repeated-select-errors"
1208The main event loop is repeatedly failing. If the server doesn't quit,
1209it will probably waste all available CPU doing nothing.
1210.SS "ADMIN warnings"
1211These indicate a problem with the administration socket interface.
13a55605 1212.SP
f43df819 1213.BI "ADMIN accept-error " ecode " " message
3cdc3f3a 1214There was an error while attempting to accept a connection from a new
1215client.
13a55605 1216.SP
f43df819 1217.BI "ADMIN client-write-error " ecode " " message
3cdc3f3a 1218There was an error sending data to a client. The connection to the
1219client has been closed.
37941236 1220.SS "CHAL warnings"
1221These indicate errors in challenges, either in the
1222.B CHECKCHAL
1223command or in greeting packets.
13a55605 1224.SP
37941236 1225.B "CHAL impossible-challenge"
1226The server hasn't issued any challenges yet. Quite how anyone else
1227thought he could make one up is hard to imagine.
13a55605 1228.SP
37941236 1229.B "CHAL incorrect-tag"
1230Challenge received contained the wrong authentication data. It might be
1231very stale, or a forgery.
13a55605 1232.SP
37941236 1233.B "CHAL invalid-challenge"
1234Challenge received was the wrong length. We might have changed MAC
1235algorithms since the challenge was issued, or it might just be rubbish.
13a55605 1236.SP
37941236 1237.B "CHAL replay duplicated-sequence"
1238Challenge received was a definite replay of an old challenge. Someone's
1239up to something!
13a55605 1240.SP
37941236 1241.B "CHAL replay old-sequence"
1242Challenge received was old, but maybe not actually a replay. Try again.
3cdc3f3a 1243.SS "KEYMGMT warnings"
1244These indicate a problem with the keyring files, or the keys stored in
4d36660a
MW
1245them. The first token is either
1246.B private-keyring
1247or
1248.B public-keyring
1249(notated
1250.IB which -keyring
1251in the descriptions below) indicating which keyring file is problematic,
1252and the second token is the filename of the keyring. Frequently a key
1253tag may be given next, preceded by the token
1254.BR key .
1255.SP
1256.BI "KEYMGMT public-keyring " file " key " tag " algorithm-mismatch"
1257A peer's public key doesn't request the same algorithms as our private
1258key.
1259.SP
1260.BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length " len
1261The key attributes specify the length of MAC tag as
1262.I len
1263but this is an invalid value \(en either too large or not a multiple of
1264eight.
1265.SP
1266.BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length-string " str
1267The key attributes contain
1268.I str
1269where a MAC tag length was expected. The key was generated wrongly.
1270.SP
1271.BI "KEYMGMT private-keyring " file " key " tag " changed-group"
1272The private keyring has been changed, but the new private key can't be
1273used because it uses a different group for Diffie\(enHellman key
1274exchange.
1275.SP
1276.BI "KEYMGMT " which "-keyring " file " io-error " ecode " " message
1277A system error occurred while opening or reading the keyring file.
1278.SP
a93aacce
MW
1279.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-bulk-transform " bulk
1280The key specifies the use of an unknown bulk-crypto transform
1281.IR bulk .
1282Maybe the key was generated wrongly, or maybe the version of Catacomb
1283installed is too old.
1284.SP
4d36660a
MW
1285.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-cipher " cipher
1286The key specifies the use of an unknown symmetric encryption algorithm
1287.IR cipher .
1288Maybe the key was generated wrongly, or maybe the version of
1289Catacomb installed is too old.
1290.SP
1291.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-group-type " type
1292The key specifies the use of a Diffie\(enHellman group of an unknown
1293.IR type .
1294Maybe the key was generated wrongly, or maybe the version of
1295.BR tripe (8)
1296is too old.
1297.SP
1298.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-hash " hash
1299The key specifies the use of an unknown hash function
1300.IR hash .
1301Maybe the key was generated wrongly, or maybe the version of Catacomb
1302installed is too old.
1303.SP
1304.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mac " mac
1305The key specifies the use of an unknown message authentication code
1306.IR mac .
1307Maybe the key was generated wrongly, or maybe the version of Catacomb
1308installed is too old.
1309.SP
1310.BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mgf-cipher " mgf
1311The key specifies the use of an unknown symmetric encryption function
1312.I mgf
1313for mask generation. Maybe the key was generated wrongly, or maybe the
1314version of Catacomb installed is too old.
1315.SP
1316.BI "KEYMGMT " which "-keyring " file " key " tag " no-hmac-for-hash " hash
1317No message authentication code was given explicitly, and there's no
1318implementation of HMAC for the selected hash function
1319.IR hash .
1320.SP
1321.BI "KEYMGMT " which "-keyring " file " key " tag " " alg " " name " no-key-size " hashsz
1322The
1323.I alg
1324token is either
1325.B cipher
1326or
1327.BR mac .
1328The named algorithm requires more key material than the hash function
1329can provide. You must change either the hash function, or the cipher or
1330MAC.
13a55605 1331.SP
4d36660a
MW
1332.BI "KEYMGMT " which "-keyring " file " key " tag " mgf " mgf " restrictive-key-schedule"
1333The cipher selected for mask-generation is unsuitable because it can't
1334accept arbitrary-sized keys.
13a55605 1335.SP
4d36660a
MW
1336.BI "KEYMGMT " which "-keyring " file " key-not-found " tag
1337A key named
3cdc3f3a 1338.I tag
4d36660a 1339couldn't be found in the keyring.
13a55605 1340.SP
4d36660a
MW
1341.BI "KEYMGMT " which "-keyring " file " line " line " " message
1342The contents of the keyring file are invalid. There may well be a bug
1343in the
1344.BR key (1)
1345program.
3cdc3f3a 1346.SS "KX warnings"
1347These indicate problems during key-exchange. Many indicate either a bug
1348in the server (either yours or the remote one), or some kind of attack
1349in progress. All name a
1350.I peer
1351as the second token: this is the peer the packet is apparently from,
1352though it may have been sent by an attacker instead.
1353.PP
1354In the descriptions below,
1355.I msgtoken
1356is one of the tokens
1357.BR pre-challenge ,
1358.BR cookie ,
1359.BR challenge ,
1360.BR reply ,
1361.BR switch-rq ,
1362or
1363.BR switch-ok .
13a55605 1364.SP
35c8b547
MW
1365.BI "KX " peer " algorithms-mismatch local-private-key " privtag " peer-public-key " pubtag
1366The algorithms specified in the peer's public key
1367.I pubtag
1368don't match the ones described in the private key
1369.IR privtag .
1370.SP
3cdc3f3a 1371.BI "KX " peer " bad-expected-reply-log"
1372The challenges
1373.B tripe
1374uses in its protocol contain a check value which proves that the
1375challenge is honest. This message indicates that the check value
1376supplied is wrong: someone is attempting to use bogus challenges to
1377persuade your
1378.B tripe
1379server to leak private key information. No chance!
13a55605 1380.SP
bd58d532 1381.BI "KX " peer " decrypt-failed reply\fR|\fBswitch-ok"
3cdc3f3a 1382A symmetrically-encrypted portion of a key-exchange message failed to
1383decrypt.
13a55605 1384.SP
3cdc3f3a 1385.BI "KX " peer " invalid " msgtoken
1386A key-exchange message was malformed. This almost certainly indicates a
1387bug somewhere.
13a55605 1388.SP
bd58d532 1389.BI "KX " peer " incorrect cookie\fR|\fBswitch-rq\fR|\fBswitch-ok"
3cdc3f3a 1390A message didn't contain the right magic data. This may be a replay of
1391some old exchange, or random packets being sent in an attempt to waste
1392CPU.
13a55605 1393.SP
35c8b547
MW
1394.BI "KX " peer " " which "-key-expired"
1395The local private key or the peer's public key (distinguished by
1396.IR which )
1397has expired. Either you or the peer's maintainer should have arranged
1398for a replacement before now.
13a55605 1399.SP
3cdc3f3a 1400.BI "KX " peer " sending-cookie"
1401We've received too many bogus pre-challenge messages. Someone is trying
1402to flood us with key-exchange messages and make us waste CPU on doing
1403hard asymmetric crypto sums.
13a55605 1404.SP
3cdc3f3a 1405.BI "KX " peer " unexpected " msgtoken
1406The message received wasn't appropriate for this stage of the key
1407exchange process. This may mean that one of our previous packets got
e04c2d50 1408lost. For
3cdc3f3a 1409.BR pre-challenge ,
1410it may simply mean that the peer has recently restarted.
13a55605 1411.SP
3cdc3f3a 1412.BI "KX " peer " unknown-challenge"
1413The peer is asking for an answer to a challenge which we don't know
1414about. This may mean that we've been inundated with challenges from
1415some malicious source
1416.I who can read our messages
1417and discarded the valid one.
13a55605 1418.SP
3cdc3f3a 1419.BI "KX " peer " unknown-message 0x" nn
1420An unknown key-exchange message arrived.
1421.SS "PEER warnings"
1422These are largely concerned with management of peers and the low-level
83487ded 1423details of the network protocol. The second token is usually the name of
e04c2d50 1424a peer, or
3cdc3f3a 1425.RB ` \- '
1426if none is relevant.
13a55605 1427.SP
3cdc3f3a 1428.BI "PEER " peer " bad-packet no-type"
1429An empty packet arrived. This is very strange.
13a55605 1430.SP
3cdc3f3a 1431.BI "PEER " peer " bad-packet unknown-category 0x" nn
1432The message category
1433.I nn
1434(in hex) isn't understood. Probably a strange random packet from
1435somewhere; could be an unlikely bug.
13a55605 1436.SP
3cdc3f3a 1437.BI "PEER " peer " bad-packet unknown-type 0x" nn
1438The message type
1439.I nn
1440(in hex) isn't understood. Probably a strange random packet from
1441somewhere; could be an unlikely bug.
13a55605 1442.SP
0ba8de86 1443.BI "PEER " peer " corrupt-encrypted-ping"
1444The peer sent a ping response which matches an outstanding ping, but its
1445payload is wrong. There's definitely a bug somewhere.
13a55605 1446.SP
0ba8de86 1447.BI "PEER " peer " corrupt-transport-ping"
1448The peer (apparently) sent a ping response which matches an outstanding
1449ping, but its payload is wrong. Either there's a bug, or the bad guys
1450are playing tricks on you.
13a55605 1451.SP
3cdc3f3a 1452.BI "PEER " peer " decrypt-failed"
1453An encrypted IP packet failed to decrypt. It may have been mangled in
1454transit, or may be a very old packet from an expired previous session
1455key. There is usually a considerable overlap in the validity periods of
1456successive session keys, so this shouldn't occur unless the key exchange
1457takes ages or fails.
13a55605 1458.SP
0ba8de86 1459.BI "PEER " peer " malformed-encrypted-ping"
1460The peer sent a ping response which is hopelessly invalid. There's
1461definitely a bug somewhere.
13a55605 1462.SP
0ba8de86 1463.BI "PEER " peer " malformed-transport-ping"
1464The peer (apparently) sent a ping response which is hopelessly invalid.
1465Either there's a bug, or the bad guys are playing tricks on you.
13a55605 1466.SP
3cdc3f3a 1467.BI "PEER " peer " packet-build-failed"
1468There wasn't enough space in our buffer to put the packet we wanted to
1469send. Shouldn't happen.
13a55605 1470.SP
f43df819 1471.BI "PEER \- socket-read-error " ecode " " message
3cdc3f3a 1472An error occurred trying to read an incoming packet.
13a55605 1473.SP
f43df819 1474.BI "PEER " peer " socket-write-error " ecode " " message
3cdc3f3a 1475An error occurred attempting to send a network packet. We lost that
1476one.
13a55605 1477.SP
0ba8de86 1478.BI "PEER " peer " unexpected-encrypted-ping 0x" id
1479The peer sent an encrypted ping response whose id doesn't match any
1480outstanding ping. Maybe it was delayed for longer than the server was
1481willing to wait, or maybe the peer has gone mad.
13a55605 1482.SP
0ba8de86 1483.BI "PEER \- unexpected-source " address\fR...
1484A packet arrived from
1485.I address
1486(a network address \(en see above), but no peer is known at that
1487address. This may indicate a misconfiguration, or simply be a result of
1488one end of a connection being set up before the other.
13a55605 1489.SP
0ba8de86 1490.BI "PEER " peer " unexpected-transport-ping 0x" id
1491The peer (apparently) sent a transport ping response whose id doesn't
1492match any outstanding ping. Maybe it was delayed for longer than the
1493server was willing to wait, or maybe the peer has gone mad; or maybe
1494there are bad people trying to confuse you.
3cdc3f3a 1495.SS "SERVER warnings"
1496These indicate problems concerning the server process as a whole.
13a55605 1497.SP
3cdc3f3a 1498.BI "SERVER ignore signal " name
1499A signal arrived, but the server ignored it. Currently this happens for
1500.B SIGHUP
1501because that's a popular way of telling daemons to re-read their
1502configuration files. Since
1503.B tripe
1504re-reads its keyrings automatically and has no other configuration
1505files, it's not relevant, but it seemed better to ignore the signal than
1506let the server die.
13a55605 1507.SP
3cdc3f3a 1508.BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
1509A signal arrived and
1510.B tripe
1511is going to quit.
13a55605 1512.SP
3cdc3f3a 1513.BI "SERVER quit admin-request"
1514A client of the administration interface issued a
1515.B QUIT
1516command.
13a55605 1517.SP
46dde080
MW
1518.BI "SERVER quit foreground-eof"
1519The server is running in foreground mode (the
1520.B \-F
1521option), and encountered end-of-file on standard input.
1522.SP
f43df819 1523.BI "SERVER select-error " ecode " " message
3cdc3f3a 1524An error occurred in the server's main event loop. This is bad: if it
1525happens too many times, the server will abort.
1526.SS "SYMM warnings"
1527These are concerned with the symmetric encryption and decryption
1528process.
13a55605 1529.SP
3cdc3f3a 1530.BI "SYMM replay old-sequence"
1531A packet was received with an old sequence number. It may just have
1532been delayed or duplicated, or it may have been an attempt at a replay
1533attack.
13a55605 1534.SP
3cdc3f3a 1535.BI "SYMM replay duplicated-sequence"
1536A packet was received with a sequence number we've definitely seen
1537before. It may be an accidental duplication because the 'net is like
1538that, or a deliberate attempt at a replay.
1539.SS "TUN warnings"
1540These concern the workings of the system-specific tunnel driver. The
83487ded 1541second token is the name of the tunnel interface in question, or
3cdc3f3a 1542.RB ` \- '
1543if none.
13a55605 1544.SP
3cdc3f3a 1545.BI "TUN \- bsd no-tunnel-devices"
1546The driver couldn't find an available tunnel device. Maybe if you
e04c2d50 1547create some more
3cdc3f3a 1548.BI /dev/tun nn
1549files, it will work.
13a55605 1550.SP
72917fe7 1551.BI "TUN \- " tun-name " open-error " device " " ecode " " message
3cdc3f3a 1552An attempt to open the tunnel device file
1553.I device
1554failed.
13a55605 1555.SP
f43df819 1556.BI "TUN \- linux config-error " ecode " " message
3cdc3f3a 1557Configuring the Linux TUN/TAP interface failed.
13a55605 1558.SP
f43df819 1559.BI "TUN " ifname " " tun-name " read-error " ecode " " message
42da2a58 1560Reading from the tunnel device failed.
13a55605 1561.SP
898975ee
MW
1562.BI "TUN " ifname " " tun-name " write-error " ecode " " message
1563Writing from the tunnel device failed.
1564.SP
42da2a58 1565.BI "TUN " ifname " slip bad-escape"
1566The SLIP driver encountered a escaped byte it wasn't expecting to see.
1567The erroneous packet will be ignored.
13a55605 1568.SP
b9066fbb 1569.BI "TUN " ifname " slip eof"
1570The SLIP driver encountered end-of-file on its input descriptor.
1571Pending data is discarded, and no attempt is made to read any more data
1572from that interface ever.
13a55605 1573.SP
b9066fbb 1574.BI "TUN " ifname " slip escape-end"
1575The SLIP driver encountered an escaped `end' marker. This probably
1576means that someone's been sending it junk. The erroneous packet is
1577discarded, and we hope that we've rediscovered synchronization.
13a55605 1578.SP
f43df819 1579.BI "TUN \- slip fork-error " ecode " " message
42da2a58 1580The SLIP driver encountered an error forking a child process while
1581allocating a new dynamic interface.
13a55605 1582.SP
42da2a58 1583.BI "TUN \- slip no-slip-interfaces"
1584The driver ran out of static SLIP interfaces. Either preallocate more,
1585or use dynamic SLIP interface allocation.
13a55605 1586.SP
b9066fbb 1587.BI "TUN " ifname " slip overflow"
1588The SLIP driver gave up reading a packet because it got too large.
13a55605 1589.SP
f43df819 1590.BI "TUN \- slip pipe-error " ecode " " message
42da2a58 1591The SLIP driver encountered an error creating pipes while allocating a
1592new dynamic interface.
13a55605 1593.SP
f43df819 1594.BI "TUN \- slip read-ifname-failed " ecode " " message
42da2a58 1595The SLIP driver encountered an error reading the name of a dynamically
1596allocated interface. Maybe the allocation script is broken.
13a55605 1597.SP
f43df819 1598.BI "TUN \- unet config-error " ecode " " message
42da2a58 1599Configuring the Linux Unet interface failed. Unet is obsolete and
1600shouldn't be used any more.
13a55605 1601.SP
f43df819 1602.BI "TUN \- unet getinfo-error " ecode " " message
42da2a58 1603Reading information about the Unet interface failed. Unet is obsolete
1604and shouldn't be used any more.
bd58d532 1605.SS "USER warnings"
1606These are issued by administration clients using the
1607.B WARN
1608command.
13a55605 1609.SP
bd58d532 1610.BI "USER " tokens\fR...
1611An administration client issued a warning.
13a55605 1612.\"-sep
fc916a09
MW
1613.
1614.\"--------------------------------------------------------------------------
13a55605 1615.SH "SUMMARY"
fc916a09 1616.
13a55605
MW
1617.SS "Command responses"
1618.nf
2acd7cd6 1619.BI "BGDETACH " tag
13a55605
MW
1620.BI "BGFAIL " tag " " tokens \fR...
1621.BI "BGINFO " tag " " tokens \fR...
1622.BI "BGOK " tag
1623.BI "FAIL " tokens \fR...
1624.BI "INFO " tokens \fR...
1625.B OK
1626.fi
1627.\"= summary
fc916a09
MW
1628.
1629.\"--------------------------------------------------------------------------
d6623498 1630.SH "SEE ALSO"
fc916a09 1631.
d6623498 1632.BR tripectl (1),
1633.BR tripe (8).
1634.PP
3cdc3f3a 1635.IR "The Trivial IP Encryption Protocol" .
fc916a09
MW
1636.
1637.\"--------------------------------------------------------------------------
d6623498 1638.SH "AUTHOR"
fc916a09 1639.
d36eda2a 1640Mark Wooding, <mdw@distorted.org.uk>
fc916a09
MW
1641.
1642.\"----- That's all, folks --------------------------------------------------