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