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