Merge remote-tracking branch 'origin/mdw/master.found-crybaby'
[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 .B "\-ephemeral"
365 The association with the peer is not intended to persist indefinitely.
366 When a peer is killed, or the
367 .BR tripe (8)
368 daemon is shut down, a
369 .B bye
370 packet is to the peer(s). If a peer marked as ephemeral sends us a
371 .B bye
372 packet then it is killed (but in this case no further
373 .B bye
374 packet is sent). A
375 .B bye
376 packet from a peer which isn't marked as ephemeral leaves the peer alone
377 in the hope that the connection can be reestablished.
378 .TP
379 .BI "\-keepalive " time
380 Send a no-op packet if we've not sent a packet to the peer in the last
381 .I time
382 interval. This is useful for persuading port-translating firewalls to
383 believe that the `connection' is still active. The
384 .I time
385 is expressed as a nonnegative integer followed optionally by
386 .BR d ,
387 .BR h ,
388 .BR m ,
389 or
390 .BR s
391 for days, hours, minutes, or seconds respectively; if no suffix is
392 given, seconds are assumed.
393 .TP
394 .BI "\-key " tag
395 Use the public key
396 .I tag
397 to authenticate the peer. The default is to use the key tagged
398 .IR peer .
399 .TP
400 .BI "\-knock \fR[" prefix .\fR] tag
401 Send the string
402 .RI [ prefix\fB. ] tag
403 in
404 .B token-rq
405 and
406 .B knock
407 messages to the peer during key-exchange. The string as a whole should
408 name the local machine to the peer, and
409 .I tag
410 should name its public key. When such messages are received from a
411 currently unknown peer,
412 .BR tripe (8)
413 emits a
414 .B KNOCK
415 notification stating the peer's (claimed) name and address. The server
416 will already have verified that the sender is using the peer's private
417 key by this point. Prior to version 1.6.0, this option used to imply
418 .BR \-ephemeral .
419 .TP
420 .B "\-mobile"
421 The peer is a mobile device, and is likely to change address rapidly.
422 If a packet arrives from an unknown address, the server's usual response
423 is to log a warning and discard it. If the server knows of any mobile
424 peers, however, it will attempt to decrypt the packet using their keys,
425 and if one succeeds, the server will update its idea of the peer's
426 address and emit an
427 .B NEWADDR
428 notification. Prior to version 1.6.0, this option used to imply
429 .BR \-ephemeral .
430 .TP
431 .BI "\-priv " tag
432 Use the private key
433 .I tag
434 to authenticate to the peer. The default is to use the key named in the
435 .RB ` \-t '
436 command-line option, or a key with type
437 .B tripe
438 or
439 .BR tripe-dh :
440 see
441 .BR tripe (8)
442 for the details.
443 .TP
444 .BI "\-tunnel " tunnel
445 Use the named tunnel driver, rather than the default.
446 .\"-opts
447 .RE
448 .SP
449 .BI "ADDR " peer
450 Emits an
451 .B INFO
452 line reporting the IP address and port number stored for
453 .IR peer .
454 .SP
455 .BI "ALGS \fR[" peer \fR]
456 Emits information about the cryptographic algorithms in use, in
457 key-value form. If a
458 .I peer
459 is given, then describe the algorithms used in the association with that
460 peer; otherwise describe the default algorithms.
461 .RS
462 .PP
463 The keys are as follows.
464 .TP
465 .B kx-group
466 Type of key-exchange group in use, currently either
467 .B ec
468 or
469 .BR prime .
470 .TP
471 .B kx-group-order-bits
472 Length of the group order, in bits. This gives an approximate measure
473 of the group strength.
474 .TP
475 .B kx-group-elt-bits
476 Length of a group element, in bits. This may be useful when analyzing
477 protocol traces.
478 .TP
479 .B hash
480 The hash function in use, e.g.,
481 .BR sha256 .
482 .TP
483 .B mgf
484 The mask-generating function in use, e.g.,
485 .BR whirlpool-mgf .
486 .TP
487 .B hashsz
488 The size of the hash function's output, in octets.
489 .TP
490 .B bulk-transform
491 The name of the bulk-crypto transform.
492 .TP
493 .B bulk-overhead
494 The amount of overhead, in bytes, caused by the crypto transform.
495 .TP
496 .B cipher
497 The name of the bulk data cipher in use, e.g.,
498 .BR blowfish-cbc .
499 .TP
500 .B cipher-keysz
501 The length of key used by the bulk data cipher, in octets.
502 .TP
503 .B cipher-blksz
504 The block size of the bulk data cipher, or zero if it's not based on a
505 block cipher.
506 .TP
507 .B cipher-data-limit
508 The maximum amount of data to be encrypted using a single key. (A new
509 key exchange is instigated well before the limit is reached, in order to
510 allow for a seamless changeover of keys.)
511 .TP
512 .B mac
513 The message authentication algorithm in use, e.g.,
514 .BR ripemd160-hmac .
515 .TP
516 .B mac-keysz
517 The length of the key used by the message authentication algorithm, in
518 octets.
519 .TP
520 .B mac-tagsz
521 The length of the message authentication tag, in octets.
522 .TP
523 .B blkc
524 The block cipher in use, e.g.,
525 .BR blowfish .
526 .TP
527 .B blkc-keysz
528 The length of key used by the block cipher, in octets.
529 .TP
530 .B blkc-blksz
531 The block size of the block cipher.
532 .PP
533 The various sizes are useful, for example, when computing the MTU for a
534 tunnel interface. If
535 .I MTU
536 is the MTU of the path to the peer, then the tunnel MTU should be
537 .IP
538 .I MTU
539 \-
540 .I header-length
541 \- 9 \-
542 .I bulk-overhead
543 .PP
544 allowing
545 .I header-length
546 = 20 (IPv4) or 40 (IPv6) bytes of IP header, 8 bytes of UDP header, a
547 packet type octet, and the bulk-crypto transform overhead (which
548 includes the sequence number).
549 .RE
550 .SP
551 .BI "BGCANCEL " tag
552 Cancels the background job with the named
553 .IR tag .
554 .SP
555 .BI "CHECKCHAL " challenge
556 Verifies a challenge as being one earlier issued by
557 .B GETCHAL
558 and not previously either passed to
559 .B CHECKCHAL
560 or in a greeting message.
561 .SP
562 .B "DAEMON"
563 Causes the server to disassociate itself from its terminal and become a
564 background task. This only works once. A notification is issued.
565 .SP
566 .BI "EPING \fR[" options "\fR] " peer
567 Sends an encrypted ping to the peer, and expects an encrypted response.
568 This checks that the peer is running (and not being impersonated), and
569 that it can encrypt and decrypt packets correctly. Options and
570 responses are the same as for the
571 .B PING
572 command.
573 .SP
574 .BI "FORCEKX " peer
575 Requests the server to begin a new key exchange with
576 .I peer
577 immediately.
578 .SP
579 .B "GETCHAL"
580 Requests a challenge. The challenge is returned in an
581 .B INFO
582 line, as a base64-encoded string. See
583 .BR CHECKCHAL .
584 .SP
585 .BI "GREET " peer " " challenge
586 Sends a greeting packet containing the
587 .I challenge
588 (base-64 encoded) to the named
589 .IR peer .
590 The expectation is that this will cause the peer to recognize us and
591 begin a key-exchange.
592 .SP
593 .B "HELP"
594 Causes the server to emit an
595 .B INFO
596 line for each command it supports. Each line lists the command name,
597 followed by the names of the arguments. This may be helpful as a memory
598 aid for interactive use, or for program clients probing for features.
599 .SP
600 .BI "IFNAME " peer
601 Emits an
602 .B INFO
603 line containing the name of the network interface used to collect IP
604 packets which are to be encrypted and sent to
605 .IR peer .
606 Used by configuration scripts so that they can set up routing tables
607 appropriately after adding new peers.
608 .SP
609 .B "JOBS"
610 Emits an
611 .B INFO
612 line giving the tag for each outstanding background job.
613 .SP
614 .BI "KILL " peer
615 Causes the server to forget all about
616 .IR peer .
617 All keys are destroyed, and no more packets are sent. A
618 .B bye
619 message is sent to the peer if it's marked as
620 .B "\-ephemeral"
621 \(en see the
622 .B "ADD"
623 command.
624 .SP
625 .B "LIST"
626 For each currently-known peer, an
627 .B INFO
628 line is written containing the peer's name, as given to
629 .BR ADD .
630 .SP
631 .BI "NOTIFY " tokens\fR...
632 Issues a
633 .B USER
634 notification to all interested administration clients.
635 .SP
636 .BI "PEERINFO " peer
637 Returns information about a peer, in key-value form. The following keys
638 are returned.
639 .RS
640 .TP
641 .B tunnel
642 The tunnel driver used for this peer.
643 .TP
644 .B keepalive
645 The keepalive interval, in seconds, or zero if no keepalives are to be
646 sent.
647 .TP
648 .B knock
649 If present, the string sent to the peer to set up the association; see
650 the
651 .B \-knock
652 option to
653 .BR ADD ,
654 and the
655 .B KNOCK
656 notification.
657 .TP
658 .B key
659 The (short) key tag being used for the peer, as passed to the
660 .B ADD
661 command.
662 .TP
663 .B current-key
664 The full key tag of the peer's public key currently being used. This
665 may change during the life of the association.
666 .TP
667 .B private-key
668 The private key tag being used for the peer, as passed to the
669 .B ADD
670 command, or the
671 .RB ` \-t '
672 command-line option. If neither of these was given explicitly, the
673 private key tag is shown as
674 .RB ` (default) ',
675 since there is no fixed tag used under these circumstances.
676 .TP
677 .B current-private-key
678 The full key tag of the private key currently being used for this
679 association. This may change during the life of the association.
680 .TP
681 .B corked
682 Either
683 .B t
684 or
685 .B nil
686 depending on whether or not (respectively) key-exchange is waiting for
687 the peer to initiate.
688 .TP
689 .B mobile
690 Either
691 .B t
692 or
693 .B nil
694 depending on whether or not (respectively) the peer is expected to
695 change its address unpredictably.
696 .TP
697 .B ephemeral
698 Either
699 .B t
700 or
701 .B nil
702 depending on whether the association with the peer is expected to be
703 temporary or persistent (respectively).
704 .RE
705 .SP
706 .BI "PING \fR[" options "\fR] " peer
707 Send a transport-level ping to the peer. The ping and its response are
708 not encrypted or authenticated. This command, possibly in conjunction
709 with tracing, is useful for ensuring that UDP packets are actually
710 flowing in both directions. See also the
711 .B EPING
712 command.
713 .IP
714 An
715 .B INFO
716 line is printed describing the outcome:
717 .RS
718 .TP
719 .BI "ping-ok " millis
720 A response was received
721 .I millis
722 after the ping was sent.
723 .TP
724 .BI "ping-timeout"
725 No response was received within the time allowed.
726 .TP
727 .BI "ping-peer-died"
728 The peer was killed (probably by another admin connection) before a
729 response was received.
730 .RE
731 .IP
732 Options recognized for this command are:
733 .RS
734 .\"+opts
735 .TP
736 .BI "\-background " tag
737 Run the command in the background, using the given
738 .IR tag .
739 .TP
740 .BI "\-timeout " time
741 Wait for
742 .I time
743 seconds before giving up on a response. The default is 5 seconds. The
744 .I time
745 is expressed as a nonnegative integer followed optionally by
746 .BR d ,
747 .BR h ,
748 .BR m ,
749 or
750 .BR s
751 for days, hours, minutes, or seconds respectively; if no suffix is
752 given, seconds are assumed.
753 .\"-opts
754 .RE
755 .SP
756 .B "PORT"
757 .RI [ family ]
758 Emits an
759 .B INFO
760 line containing just the number of the UDP port used by the
761 .B tripe
762 server, for the given address
763 .I family
764 (or one chosen arbitrarily if omitted -- though
765 .B tripe
766 tries to use the same port number consistently so this is not a likely
767 problem in practice). If you've allowed your server to allocate a port
768 dynamically, this is how to find out which one it chose.
769 .SP
770 .B "RELOAD"
771 Instructs the server to recheck its keyring files. The server checks
772 these periodically anyway but it may be necessary to force a recheck,
773 for example after adding a new peer key.
774 .SP
775 .B "QUIT"
776 Instructs the server to exit immediately. A warning is sent.
777 .SP
778 .B "SERVINFO"
779 Returns information about the server, in the form of key-value pairs.
780 The following keys are used.
781 .RS
782 .TP
783 .B implementation
784 A keyword naming the implementation of the
785 .BR tripe (8)
786 server. The current implementation is called
787 .BR edgeware-tripe .
788 .TP
789 .B version
790 The server's version number, as reported by
791 .BR VERSION .
792 .TP
793 .B daemon
794 Either
795 .B t
796 or
797 .BR nil ,
798 if the server has or hasn't (respectively) become a daemon.
799 .RE
800 .SP
801 .BI "SETIFNAME " peer " " new-name
802 Informs the server that the
803 .IR peer 's
804 tunnel-interface name has been changed to
805 .IR new-name .
806 This is useful if firewalling decisions are made based on interface
807 names: a setup script for a particular peer can change the name, and
808 then update the server's records so that they're accurate.
809 .SP
810 .BI "STATS " peer
811 Emits a number of
812 .B INFO
813 lines, each containing one or more statistics in the form
814 .IB name = value \fR.
815 The statistics-gathering is experimental and subject to change.
816 .SP
817 .BI "SVCCLAIM " service " " version
818 Attempts to claim the named
819 .IR service ,
820 offering the given
821 .IR version .
822 The claim is successful if the service is currently unclaimed, or if
823 a version earlier than
824 .I version
825 is provided; otherwise the command fails with the error
826 .BR "service-exists" .
827 .SP
828 .BI "SVCENSURE " service " \fR[" version \fR]
829 Ensure that
830 .I service
831 is provided, and (if specified) to at least the given
832 .IR version .
833 An error is reported if these conditions are not met; otherwise the
834 command succeeds silently.
835 .SP
836 .BI "SVCFAIL " jobid " " tokens \fR...
837 Send a
838 .B FAIL
839 (or
840 .BR BGFAIL )
841 response to the service job with the given
842 .IR jobid ,
843 passing the
844 .I tokens
845 as the reason for failure. The job is closed.
846 .SP
847 .BI "SVCINFO " jobid " " tokens \fR...
848 Send an
849 .B INFO
850 (or
851 .BR BGINFO )
852 response to the service job with the given
853 .IR jobid ,
854 passing the
855 .I tokens
856 as the info message. The job remains open.
857 .SP
858 .B "SVCLIST"
859 Output a line of the form
860 .RS
861 .IP
862 .B INFO
863 .I service
864 .I version
865 .PP
866 for each service currently provided.
867 .RE
868 .SP
869 .BI "SVCOK " jobid
870 Send an
871 .B OK
872 (or
873 .BR BGINFO )
874 response to the service job with the given
875 .IR jobid .
876 The job is closed.
877 .SP
878 .BI "SVCQUERY " service
879 Emits a number of
880 .B info
881 lines in key-value format, describing the named
882 .IR service.
883 The following keys are used.
884 .RS
885 .TP
886 .B name
887 The service's name.
888 .TP
889 .B version
890 The service's version string.
891 .RE
892 .SP
893 .BI "SVCRELEASE " service
894 Announce that the client no longer wishes to provide the named
895 .IR service .
896 .SP
897 .BI "SVCSUBMIT \fR[" options "\fR] " service " " command " " arguments \fR...
898 Submit a job to the provider of the given
899 .IR service ,
900 passing it the named
901 .I command
902 and the given
903 .IR arguments .
904 The following options are accepted.
905 .RS
906 .\"+opts
907 .TP
908 .BI "\-background " tag
909 Run the command in the background, using the given
910 .IR tag .
911 .TP
912 .BI "\-version " version
913 Ensure that at least the given
914 .I version
915 of the service is available before submitting the job.
916 .RE
917 .\"-opts
918 .SP
919 .BR "TRACE " [\fIoptions\fP]
920 Selects trace outputs: see
921 .B "Trace lists"
922 above. Message types provided are:
923 .RS
924 .PP
925 Currently, the following tracing options are supported:
926 .TP
927 .B t
928 Tunnel events: reception of packets to be encrypted, and injection of
929 successfully-decrypted packets.
930 .TP
931 .B r
932 Peer management events: creation and destruction of peer attachments,
933 and arrival of messages.
934 .TP
935 .B a
936 Administration interface: acceptance of new connections, and handling of
937 the backgroud name-resolution required by the
938 .B ADD
939 command.
940 .TP
941 .B s
942 Handling of symmetric keysets: creation and expiry of keysets, and
943 encryption and decryption of messages.
944 .TP
945 .B x
946 Key exchange: reception, parsing and emission of key exchange messages.
947 .TP
948 .B m
949 Key management: loading keys and checking for file modifications.
950 .TP
951 .B l
952 Display information about challenge issuing and verification.
953 .TP
954 .B p
955 Display contents of packets sent and received by the tunnel and/or peer
956 modules.
957 .TP
958 .B c
959 Display inputs, outputs and intermediate results of cryptographic
960 operations. This includes plaintext and key material. Use with
961 caution.
962 .TP
963 .B A
964 All of the above.
965 .PP
966 Note that the
967 .B p
968 (packet contents)
969 and
970 .B c
971 (crypto details)
972 outputs provide extra detail for other outputs. Specifying
973 .B p
974 without
975 .BR r
976 or
977 .B t
978 isn't useful; neither is specifying
979 .B c
980 without one of
981 .BR s ,
982 .BR l ,
983 .B x
984 or
985 .BR m .
986 .RE
987 .SP
988 .B "TUNNELS"
989 For each available tunnel driver, an
990 .B INFO
991 line is printed giving its name.
992 .SP
993 .B "VERSION"
994 Causes the server to emit an
995 .B INFO
996 line stating its software version, as two tokens: the server name, and
997 its version string. The server name
998 .B tripe
999 is reserved to the Straylight/Edgeware implementation.
1000 .SP
1001 .BR "WATCH " [\fIoptions\fP]
1002 Enables or disables asynchronous broadcasts
1003 .IR "for the current connection only" .
1004 See
1005 .B "Trace lists"
1006 above. The default watch state for the connection the server opens
1007 automatically on stdin/stdout is to show warnings and trace messages;
1008 other connections show no asynchronous broadcast messages. (This is
1009 done in order to guarantee that a program reading the server's stdout
1010 does not miss any warnings.)
1011 .RS
1012 .PP
1013 Message types provided are:
1014 .TP
1015 .B t
1016 .B TRACE
1017 messages.
1018 .TP
1019 .B n
1020 .B NOTE
1021 messages.
1022 .TP
1023 .B w
1024 .B WARN
1025 messages.
1026 .TP
1027 .B A
1028 All of the above.
1029 .RE
1030 .SP
1031 .BI "WARN " tokens\fR...
1032 Issues a
1033 .B USER
1034 warning to all interested administration clients.
1035 .
1036 .\"--------------------------------------------------------------------------
1037 .SH "ERROR MESSAGES"
1038 .
1039 .\"* 20 Error messages (FAIL codes)
1040 The following
1041 .B FAIL
1042 (or
1043 .BR BGFAIL )
1044 messages are sent to clients as a result of errors during command
1045 processing.
1046 .SP
1047 .BI "already-daemon"
1048 (For
1049 .BR DAEMON .)
1050 The
1051 .B tripe
1052 server is already running as a daemon.
1053 .SP
1054 .BI "bad-addr-syntax " message
1055 (For commands accepting socket addresses.) The address couldn't be
1056 understood.
1057 .SP
1058 .BI "bad-base64 " message
1059 (For commands accepting Base64-encoded input.) The Base64-encoded
1060 string was invalid.
1061 .SP
1062 .BI "bad-syntax " cmd " " message
1063 (For any command.) The command couldn't be understood: e.g., the number
1064 of arguments was wrong.
1065 .SP
1066 .BI "bad-time-spec " token
1067 (For commands accepting a
1068 .I time
1069 argument.) The
1070 .I token
1071 is not a valid time interval specification. Acceptable time
1072 specifications are nonnegative integers followed optionally by
1073 .BR d ,
1074 .BR h ,
1075 .BR m ,
1076 or
1077 .BR s ,
1078 for days, hours, minutes, or seconds, respectively.
1079 .SP
1080 .BI "bad-trace-option " char
1081 (For
1082 .BR TRACE .)
1083 An unknown trace option was requested.
1084 .SP
1085 .BI "bad-watch-option " char
1086 (For
1087 .BR WATCH .)
1088 An unknown watch option was requested.
1089 .SP
1090 .BI "daemon-error " ecode " " message
1091 (For
1092 .BR DAEMON .)
1093 An error occurred during the attempt to become a daemon, as reported by
1094 .IR message .
1095 See
1096 .B WARNINGS
1097 below for the meanings of
1098 .I ecode
1099 and
1100 .IR message .
1101 .SP
1102 .BI "disabled-address-family " afam
1103 (For
1104 .B ADD
1105 and
1106 .BR PORT .)
1107 The address family
1108 .I afam
1109 is supported, but was disabled using command-line arguments.
1110 .SP
1111 .BI "invalid-port " number
1112 (For
1113 .BR ADD .)
1114 The given port number is out of range.
1115 .SP
1116 .BI "not-service-provider " service
1117 (For
1118 .BR SVCRELEASE .)
1119 The invoking client is not the current provider of the named
1120 .IR service ,
1121 and is therefore not allowed to release it.
1122 .SP
1123 .BI "peer-create-fail " peer
1124 (For
1125 .BR ADD .)
1126 Adding
1127 .I peer
1128 failed for some reason. A warning should have been emitted explaining
1129 why.
1130 .SP
1131 .BI "peer-addr-exists " address\fR...
1132 (For
1133 .BR ADD .)
1134 There is already a peer with the given
1135 .IR address .
1136 .SP
1137 .BI "peer-exists " peer
1138 (For
1139 .BR ADD .)
1140 There is already a peer named
1141 .IR peer .
1142 .SP
1143 .B "ping-send-failed"
1144 (For
1145 .BR EPING .)
1146 The attempt to send a ping packet failed, probably due to lack of
1147 encryption keys.
1148 .SP
1149 .B "provider-failed"
1150 (For
1151 .BR SVCSUBMIT .)
1152 The service provider disconnected without sending back a final reply to
1153 the job.
1154 .SP
1155 .B "provider-overloaded"
1156 (For
1157 .BR SVCSUBMIT .)
1158 The service provider has too many jobs queued up for it already.
1159 .SP
1160 .BI "resolve-error " hostname
1161 (For
1162 .BR ADD .)
1163 The DNS name
1164 .I hostname
1165 could not be resolved.
1166 .SP
1167 .BI "resolver-timeout " hostname
1168 (For
1169 .BR ADD .)
1170 The DNS name
1171 .I hostname
1172 took too long to resolve.
1173 .SP
1174 .BI "service-exists " service " " version
1175 (For
1176 .BR SVCCLAIM .)
1177 Another client is already providing the stated
1178 .I version
1179 of the
1180 .IR service .
1181 .SP
1182 .BI "service-too-old " service " " version
1183 (For
1184 .B SVCENSURE
1185 and
1186 .BR SVCSUBMIT .)
1187 Only the given
1188 .I version
1189 of the requested
1190 .I service
1191 is available, which does not meet the stated requirements.
1192 .SP
1193 .BI "tag-exists " tag
1194 (For long-running commands.) The named
1195 .I tag
1196 is already the tag of an outstanding job.
1197 .SP
1198 .BI "unknown-address-family " afam
1199 (For
1200 .BR PORT .)
1201 The address family
1202 .I afam
1203 is unrecognized.
1204 .SP
1205 .BI "unknown-command " token
1206 The command
1207 .I token
1208 was not recognized.
1209 .SP
1210 .BI "unknown-jobid " jobid
1211 (For
1212 .BR SVCOK ,
1213 .BR SVCFAIL ,
1214 and
1215 .BR SVCINFO .)
1216 The token
1217 .I jobid
1218 is not recognized as identifying an outstanding job. It may have just
1219 been cancelled.
1220 .SP
1221 .BI "unknown-peer " name
1222 (For
1223 .BR ADDR ,
1224 .BR IFNAME ,
1225 .BR KILL ,
1226 .BR SETIFNAME ,
1227 and
1228 .BR STATS .)
1229 There is no peer called
1230 .IR name .
1231 .SP
1232 .BI "unknown-port " port
1233 (For
1234 .BR ADD .)
1235 The port name
1236 .I port
1237 couldn't be found in
1238 .BR /etc/services .
1239 .SP
1240 .BI "unknown-service " service
1241 (For
1242 .BR SVCENSURE ,
1243 .BR SVCQUERY ,
1244 .BR SVCRELEASE ,
1245 and
1246 .BR SVCSUBMIT .)
1247 The token
1248 .I service
1249 is not recognized as the name of a client-provided service.
1250 .SP
1251 .BI "unknown-tag " tag
1252 (For
1253 .BR BGCANCEL .)
1254 The given
1255 .I tag
1256 is not the tag for any outstanding background job. It may have just
1257 finished.
1258 .SP
1259 .BI "unknown-tunnel " tun
1260 (For
1261 .BR ADD .)
1262 The given
1263 .I tun
1264 is not the name of any known tunnel driver.
1265 .
1266 .\"--------------------------------------------------------------------------
1267 .SH "NOTIFICATIONS"
1268 .
1269 .\"* 30 Notification broadcasts (NOTE codes)
1270 The following notifications are sent to clients who request them.
1271 .SP
1272 .BI "ADD " peer " " ifname " " address \fR...
1273 A new peer has been added. The peer's name is
1274 .IR peer ,
1275 its tunnel is network interface
1276 .IR ifname ,
1277 and its network address is
1278 .IR address .
1279 .SP
1280 .BI "DAEMON"
1281 The server has forked off into the sunset and become a daemon.
1282 .SP
1283 .BI "GREET " challenge " " address \fR...
1284 A valid greeting was received, with the given challenge (exactly as it
1285 was returned by
1286 .B GETCHAL
1287 earlier).
1288 .SP
1289 .BI "KILL " peer
1290 The peer
1291 .I peer
1292 has been killed.
1293 .SP
1294 .BI "KNOCK " peer " " address
1295 The currently unknown
1296 .I peer
1297 is attempting to connect from
1298 .IR address .
1299 .SP
1300 .BI "KXDONE " peer
1301 Key exchange with
1302 .I peer
1303 finished successfully.
1304 .SP
1305 .BI "KXSTART " peer
1306 Key exchange with
1307 .I peer
1308 has begun or restarted. If key exchange keeps failing, this message
1309 will be repeated periodically.
1310 .SP
1311 .BI "NEWADDR " peer " " address
1312 The given mobile
1313 .IR peer 's
1314 IP address has been changed to
1315 .IR address .
1316 .SP
1317 .BI "NEWIFNAME " peer " " old-name " " new-name
1318 The given
1319 .IR peer 's
1320 tunnel interface name has been changed from
1321 .I old-name
1322 to
1323 .IR new-name ,
1324 as a result of a
1325 .B SETIFNAME
1326 command.
1327 .SP
1328 .BI "SVCCLAIM " service " " version
1329 The named
1330 .I service
1331 is now available, at the stated
1332 .IR version .
1333 .SP
1334 .BI "SVCRELEASE " service
1335 The named
1336 .I service
1337 is no longer available.
1338 .SP
1339 .BI "USER " tokens\fR...
1340 An administration client issued a notification using the
1341 .B NOTIFY
1342 command.
1343 .
1344 .\"--------------------------------------------------------------------------
1345 .SH "WARNINGS"
1346 .
1347 .\"* 40 Warning broadcasts (WARN codes)
1348 .\"+sep
1349 There are many possible warnings. They are categorized according to
1350 their first tokens.
1351 .PP
1352 Many of these warnings report system errors. These are reported as a
1353 pair of tokens, described below as
1354 .I ecode
1355 and
1356 .IR message .
1357 The
1358 .I ecode
1359 is a string of the form
1360 .BI E number
1361 giving the
1362 .BR errno (3)
1363 value of the error; the
1364 .I message
1365 is the `human-readable' form of the message, as reported by
1366 .BR strerror (3).
1367 .SS "ABORT warnings"
1368 These all indicate that the
1369 .B tripe
1370 server has become unable to continue. If enabled, the server will dump
1371 core in its configuration directory.
1372 .SP
1373 .BI "ABORT repeated-select-errors"
1374 The main event loop is repeatedly failing. If the server doesn't quit,
1375 it will probably waste all available CPU doing nothing.
1376 .SP
1377 .BI "ABORT hash-size-too-large hash " name " size " sz " limit " max
1378 An internal inconsistency: the hash function
1379 .I name
1380 produces a
1381 .IR sz -byte
1382 hash, but the server has been compiled to assume that no hash function
1383 returns more than
1384 .I max
1385 bytes.
1386 .SS "ADMIN warnings"
1387 These indicate a problem with the administration socket interface.
1388 .SP
1389 .BI "ADMIN accept-error " ecode " " message
1390 There was an error while attempting to accept a connection from a new
1391 client.
1392 .SP
1393 .BI "ADMIN client-write-error " ecode " " message
1394 There was an error sending data to a client. The connection to the
1395 client has been closed.
1396 .SP
1397 .BI "ADMIN admin-socket " path " already-in-use"
1398 The server failed to create the Unix-domain socket object in the
1399 filesystem, because there's already a socket there, and some other
1400 process is actively listening for incoming connections.
1401 .SP
1402 .BI "ADMIN admin-socket " path " bind-failed " ecode " " message
1403 The server failed to create the Unix-domain socket object in the
1404 filesystem for an unusual reason. (The usual reason is
1405 .BR EADDRINUSE ,
1406 but this is handled specially.)
1407 .SP
1408 .BI "ADMIN admin-socket " path " chmod-failed " ecode " " message
1409 The server failed to set the correct permissions of the Unix-domain
1410 socket object.
1411 .SP
1412 .BI "ADMIN admin-socket " path " chown-failed " ecode " " message
1413 The server failed to set the correct ownership of the Unix-domain socket
1414 object.
1415 .SP
1416 .BI "ADMIN admin-socket " path " create-failed " ecode " " message
1417 The server failed to create its administration socket. This is usually
1418 because some system resource is unavailable.
1419 .SP
1420 .BI "ADMIN admin-socket " path " listen-failed " ecode " " message
1421 The server failed to arrange to receive incoming connections on its
1422 Unix-domain socket.
1423 .SP
1424 .BI "ADMIN admin-socket " path " name-too-long"
1425 The server can't create its administration socket, because the chosen
1426 pathname
1427 .I path
1428 is too long. There is, for historical reasons, a rather tight limit on
1429 the length of name permitted for Unix-domain sockets, usually around 108
1430 bytes.
1431 .SP
1432 .BI "ADMIN admin-socket " path " stat-failed " ecode " " message
1433 The server failed to create the Unix-domain socket object in the
1434 filesystem, because there's already something there, but the server
1435 couldn't discover what.
1436 .SP
1437 .BI "ADMIN admin-socket " path " too-many-retries"
1438 The server failed to create the Unix-domain socket object in the
1439 filesystem. This error indicates that another process is also
1440 repeatedly trying to create a Unix-domain socket at the same
1441 .IR path ,
1442 and then failing to actually listen for connections on it, but the
1443 server always loses the applicable race for some reason. This situation
1444 merits investigation.
1445 .SP
1446 .BI "ADMIN adns-init-failed " ecode " " message
1447 The server failed to initialize the ADNS asynchronous DNS-resolution
1448 library.
1449 .SS "CHAL warnings"
1450 These indicate errors in challenges, either in the
1451 .B CHECKCHAL
1452 command or in greeting packets.
1453 .SP
1454 .B "CHAL impossible-challenge"
1455 The server hasn't issued any challenges yet. Quite how anyone else
1456 thought they could make one up is hard to imagine.
1457 .SP
1458 .B "CHAL incorrect-tag"
1459 Challenge received contained the wrong authentication data. It might be
1460 very stale, or a forgery.
1461 .SP
1462 .B "CHAL invalid-challenge"
1463 Challenge received was the wrong length. We might have changed MAC
1464 algorithms since the challenge was issued, or it might just be rubbish.
1465 .SP
1466 .B "CHAL replay duplicated-sequence"
1467 Challenge received was a definite replay of an old challenge. Someone's
1468 up to something!
1469 .SP
1470 .B "CHAL replay old-sequence"
1471 Challenge received was old, but maybe not actually a replay. Try again.
1472 .SS "KEYMGMT warnings"
1473 These indicate a problem with the keyring files, or the keys stored in
1474 them. The first token is either
1475 .B private-keyring
1476 or
1477 .B public-keyring
1478 (notated
1479 .IB which -keyring
1480 in the descriptions below) indicating which keyring file is problematic,
1481 and the second token is the filename of the keyring. Frequently a key
1482 tag may be given next, preceded by the token
1483 .BR key .
1484 .SP
1485 .BI "KEYMGMT public-keyring " file " key " tag " algorithm-mismatch"
1486 A peer's public key doesn't request the same algorithms as our private
1487 key.
1488 .SP
1489 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length " len
1490 The key attributes specify the length of MAC tag as
1491 .I len
1492 but this is an invalid value \(en either too large or not a multiple of
1493 eight.
1494 .SP
1495 .BI "KEYMGMT " which "-keyring " file " key " tag " bad-tag-length-string " str
1496 The key attributes contain
1497 .I str
1498 where a MAC tag length was expected. The key was generated wrongly.
1499 .SP
1500 .BI "KEYMGMT private-keyring " file " key " tag " incorrect-public-key"
1501 The private key doesn't record the correct corresponding public key.
1502 .SP
1503 .BI "KEYMGMT " which "-keyring " file " io-error " ecode " " message
1504 A system error occurred while opening or reading the keyring file.
1505 .SP
1506 .BI "KEYMGMT private-keyring " file " key " tag " changed-group"
1507 The private keyring has been changed, but the new private key can't be
1508 used because it uses a different group for Diffie\(enHellman key
1509 exchange.
1510 .SP
1511 .BI "KEYMGMT " which "-keyring " file " key " tag " no-hmac-for-hash " hash
1512 No message authentication code was given explicitly, and there's no
1513 implementation of HMAC for the selected hash function
1514 .IR hash .
1515 .SP
1516 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-bulk-transform " bulk
1517 The key specifies the use of an unknown bulk-crypto transform
1518 .IR bulk .
1519 Maybe the key was generated wrongly, or maybe the version of
1520 .BR tripe (8)
1521 is too old.
1522 .SP
1523 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-cipher " cipher
1524 The key specifies the use of an unknown symmetric encryption algorithm
1525 .IR cipher .
1526 Maybe the key was generated wrongly, or maybe the version of
1527 Catacomb installed is too old.
1528 .SP
1529 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-group-type " type
1530 The key specifies the use of a Diffie\(enHellman group of an unknown
1531 .IR type .
1532 Maybe the key was generated wrongly, or maybe the version of
1533 .BR tripe (8)
1534 is too old.
1535 .SP
1536 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-hash " hash
1537 The key specifies the use of an unknown hash function
1538 .IR hash .
1539 Maybe the key was generated wrongly, or maybe the version of Catacomb
1540 installed is too old.
1541 .SP
1542 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mac " mac
1543 The key specifies the use of an unknown message authentication code
1544 .IR mac .
1545 Maybe the key was generated wrongly, or maybe the version of Catacomb
1546 installed is too old.
1547 .SP
1548 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-mgf-cipher " mgf
1549 The key specifies the use of an unknown symmetric encryption function
1550 .I mgf
1551 for mask generation. Maybe the key was generated wrongly, or maybe the
1552 version of Catacomb installed is too old.
1553 .SP
1554 .BI "KEYMGMT " which "-keyring " file " key " tag " unknown-serialization-format " ser
1555 The key specifies the use of an unknown serialization format
1556 .I ser
1557 for hashing group elements. Maybe the key was generated wrongly, or
1558 maybe the version of
1559 .BR tripe (8)
1560 is too old.
1561 .SP
1562 .BI "KEYMGMT " which "-keyring " file " key " tag " unsuitable-aead-cipher " cipher "no-aad"
1563 The key specifies the use of an authenticated encryption scheme
1564 .I cipher
1565 which does not support the processing of additional authenticated data.
1566 The most prominent examples of such schemes are the
1567 .IB cipher -naclbox
1568 collection, where
1569 .I cipher
1570 is
1571 .BR salsa20 ,
1572 .BR salsa20/12 ,
1573 .BR salsa20/8 ,
1574 .BR chacha20 ,
1575 .BR chacha12 ,
1576 or
1577 .BR chacha8 ;
1578 use the
1579 .B naclbox
1580 bulk transform rather than
1581 .B aead
1582 for these, or switch to one of the IETF
1583 .IB cipher -poly1305
1584 schemes instead.
1585 .SP
1586 .BI "KEYMGMT " which "-keyring " file " key " tag " unsuitable-aead-cipher " cipher "nonce-too-small"
1587 The key specifies the use of an authenticated encryption scheme
1588 .I cipher
1589 which doesn't even allow a 5-byte (40-bit) nonce. Catacomb doesn't
1590 implement any such limited AE schemes: you must be doing something
1591 strange.
1592 .SP
1593 .BI "KEYMGMT " which "-keyring " file " key " tag " unsuitable-aead-cipher " cipher "nonce-too-large"
1594 The key specifies the use of an authenticated encryption scheme
1595 .I cipher
1596 which doesn't support any nonce size smaller than 64 bytes (512 bits).
1597 Catacomb doesn't implement any such extravagant AE schemes: you must be
1598 doing something strange.
1599 .SP
1600 .BI "KEYMGMT " which "-keyring " file " key " tag " unsuitable-aead-cipher " cipher "nonempty-ciphertext-for-empty-message"
1601 The key specifies the use of an authenticated encryption scheme
1602 .I cipher
1603 which produces ciphertext output even when given a completely empty
1604 message. Catacomb doesn't implement any such unhelpful AE schemes: you
1605 must be doing something strange.
1606 .SP
1607 .BI "KEYMGMT " which "-keyring " file " key " tag " " alg " " name " no-key-size " hashsz
1608 The
1609 .I alg
1610 token is either
1611 .B cipher
1612 or
1613 .BR mac .
1614 The named algorithm requires more key material than the hash function
1615 can provide. You must change either the hash function, or the cipher or
1616 MAC.
1617 .SP
1618 .BI "KEYMGMT " which "-keyring " file " key " tag " mgf " mgf " restrictive-key-schedule"
1619 The cipher selected for mask-generation is unsuitable because it can't
1620 accept arbitrary-sized keys.
1621 .SP
1622 .BI "KEYMGMT " which "-keyring " file " key-not-found " tag
1623 A key named
1624 .I tag
1625 couldn't be found in the keyring.
1626 .SP
1627 .BI "KEYMGMT " which "-keyring " file " unknown-key-id 0x" keyid
1628 A key with the given
1629 .I keyid
1630 (in hex) was requested but not found.
1631 .SP
1632 .BI "KEYMGMT " which "-keyring " file " line " line " " message
1633 The contents of the keyring file are invalid. There may well be a bug
1634 in the
1635 .BR key (1)
1636 program.
1637 .SS "KX warnings"
1638 These indicate problems during key-exchange. Many indicate either a bug
1639 in the server (either yours or the remote one), or some kind of attack
1640 in progress. All name a
1641 .I peer
1642 as the second token: this is the peer the packet is apparently from,
1643 though it may have been sent by an attacker instead.
1644 .PP
1645 In the descriptions below,
1646 .I msgtoken
1647 is one of the tokens
1648 .BR pre-challenge ,
1649 .BR cookie ,
1650 .BR challenge ,
1651 .BR reply ,
1652 .BR switch-rq ,
1653 .BR switch-ok .
1654 .BR token-rq ,
1655 .BR token ,
1656 or
1657 .BR knock .
1658 .SP
1659 .BI "KX " peer " algorithms-mismatch local-private-key " privtag " peer-public-key " pubtag
1660 The algorithms specified in the peer's public key
1661 .I pubtag
1662 don't match the ones described in the private key
1663 .IR privtag .
1664 .SP
1665 .BI "KX " peer " bad-expected-reply-log"
1666 The challenges
1667 .B tripe
1668 uses in its protocol contain a check value which proves that the
1669 challenge is honest. This message indicates that the check value
1670 supplied is wrong: someone is attempting to use bogus challenges to
1671 persuade your
1672 .B tripe
1673 server to leak private key information. No chance!
1674 .SP
1675 .BI "KX " peer " decrypt-failed reply\fR|\fBswitch-ok"
1676 A symmetrically-encrypted portion of a key-exchange message failed to
1677 decrypt.
1678 .SP
1679 .BI "KX " peer " invalid " msgtoken
1680 A key-exchange message was malformed. This almost certainly indicates a
1681 bug somewhere.
1682 .SP
1683 .BI "KX " peer " incorrect cookie\fR|\fBswitch-rq\fR|\fBswitch-ok"
1684 A message didn't contain the right magic data. This may be a replay of
1685 some old exchange, or random packets being sent in an attempt to waste
1686 CPU.
1687 .SP
1688 .BI "KX " peer " " which "-key-expired"
1689 The local private key or the peer's public key (distinguished by
1690 .IR which )
1691 has expired. Either you or the peer's maintainer should have arranged
1692 for a replacement before now.
1693 .SP
1694 .BI "KX " peer " sending-cookie"
1695 We've received too many bogus pre-challenge messages. Someone is trying
1696 to flood us with key-exchange messages and make us waste CPU on doing
1697 hard asymmetric crypto sums.
1698 .SP
1699 .BI "KX " peer " unexpected " msgtoken
1700 The message received wasn't appropriate for this stage of the key
1701 exchange process. This may mean that one of our previous packets got
1702 lost. For
1703 .BR pre-challenge ,
1704 it may simply mean that the peer has recently restarted.
1705 .SP
1706 .BI "KX " peer " unknown-challenge"
1707 The peer is asking for an answer to a challenge which we don't know
1708 about. This may mean that we've been inundated with challenges from
1709 some malicious source
1710 .I who can read our messages
1711 and discarded the valid one.
1712 .SP
1713 .BI "KX " peer " unknown-message 0x" nn
1714 An unknown key-exchange message arrived.
1715 .SS "PEER warnings"
1716 These are largely concerned with management of peers and the low-level
1717 details of the network protocol. The second token is usually the name of
1718 a peer, or
1719 .RB ` \- '
1720 if none is relevant.
1721 .SP
1722 .BI "PEER " peer " bad-packet no-type"
1723 An empty packet arrived. This is very strange.
1724 .SP
1725 .BI "PEER " peer " bad-packet unknown-category 0x" nn
1726 The message category
1727 .I nn
1728 (in hex) isn't understood. Probably a strange random packet from
1729 somewhere; could be an unlikely bug.
1730 .SP
1731 .BI "PEER " peer " bad-packet unknown-type 0x" nn
1732 The message type
1733 .I nn
1734 (in hex) isn't understood. Probably a strange random packet from
1735 somewhere; could be an unlikely bug.
1736 .SP
1737 .BI "PEER " peer " corrupt-encrypted-ping"
1738 The peer sent a ping response which matches an outstanding ping, but its
1739 payload is wrong. There's definitely a bug somewhere.
1740 .SP
1741 .BI "PEER " peer " corrupt-transport-ping"
1742 The peer (apparently) sent a ping response which matches an outstanding
1743 ping, but its payload is wrong. Either there's a bug, or the bad guys
1744 are playing tricks on you.
1745 .SP
1746 .BI "PEER " peer " decrypt-failed"
1747 An encrypted IP packet failed to decrypt. It may have been mangled in
1748 transit, or may be a very old packet from an expired previous session
1749 key. There is usually a considerable overlap in the validity periods of
1750 successive session keys, so this shouldn't occur unless the key exchange
1751 takes ages or fails.
1752 .SP
1753 .BI "PEER " peer " malformed-encrypted-ping"
1754 The peer sent a ping response which is hopelessly invalid. There's
1755 definitely a bug somewhere.
1756 .SP
1757 .BI "PEER " peer " malformed-transport-ping"
1758 The peer (apparently) sent a ping response which is hopelessly invalid.
1759 Either there's a bug, or the bad guys are playing tricks on you.
1760 .SP
1761 .BI "PEER " peer " packet-build-failed"
1762 There wasn't enough space in our buffer to put the packet we wanted to
1763 send. Shouldn't happen.
1764 .SP
1765 .BI "PEER \- socket-read-error " ecode " " message
1766 An error occurred trying to read an incoming packet.
1767 .SP
1768 .BI "PEER " peer " socket-write-error " ecode " " message
1769 An error occurred attempting to send a network packet. We lost that
1770 one.
1771 .SP
1772 .BI "PEER " address\fR... " disabled-address-family"
1773 An attempt was made to send a packet to an address for which support was
1774 switched off by command-line options.
1775 .SP
1776 .BI "PEER " address\fR... " socket-write-error " ecode " " message
1777 An error occurred attempting to send a network packet. We lost that
1778 one.
1779 .SP
1780 .BI "PEER \- udp-socket " address-family " bind-failed " ecode " " message
1781 The server failed to associate a UDP socket with a local address.
1782 .SP
1783 .BI "PEER \- udp-socket " address-family " create-failed " ecode " " message
1784 The server failed to create a UDP socket for the
1785 .IR address-family .
1786 .SP
1787 .BI "PEER \- udp-socket " address-family " read-local-address-failed " ecode " " message
1788 The server failed to discover the local address for one of its own UDP
1789 sockets.
1790 .SP
1791 .BI "PEER \- udp-socket " address-family " set-buffers-failed " ecode " " message
1792 The server failed to configure appropriate buffer sizes on a UDP socket.
1793 .SP
1794 .BI "PEER \- udp-socket INET6 set-v6only-failed " ecode " " message
1795 The server failed to configure an IPv6 socket not to try to collect IPv4
1796 traffic too.
1797 .SP
1798 .BI "PEER " peer " unexpected-encrypted-ping 0x" id
1799 The peer sent an encrypted ping response whose id doesn't match any
1800 outstanding ping. Maybe it was delayed for longer than the server was
1801 willing to wait, or maybe the peer has gone mad.
1802 .SP
1803 .BI "PEER \- unexpected-source " address\fR...
1804 A packet arrived from
1805 .I address
1806 (a network address \(en see above), but no peer is known at that
1807 address. This may indicate a misconfiguration, or simply be a result of
1808 one end of a connection being set up before the other.
1809 .SP
1810 .BI "PEER " peer " unexpected-transport-ping 0x" id
1811 The peer (apparently) sent a transport ping response whose id doesn't
1812 match any outstanding ping. Maybe it was delayed for longer than the
1813 server was willing to wait, or maybe the peer has gone mad; or maybe
1814 there are bad people trying to confuse you.
1815 .SS "PRIVSEP warnings"
1816 These indicate problems with the privilege-separation helper process.
1817 (The server tries to drop its privileges when it starts up, leaving a
1818 privileged helper process behind which will create and hand over tunnel
1819 descriptors on request, but hopefully not do anything else especially
1820 dangerous. Tunnel descriptors are not completely safe, but this is
1821 probably better than nothing.)
1822 .SP
1823 .BI "PRIVSEP child-exited " rc
1824 The helper process exited normally with status
1825 .IR rc .
1826 Status 0 means that it thought the server didn't want it any more; 1
1827 means that it was invoked incorrectly; 127 means that some system call
1828 failed.
1829 .SP
1830 .BI "PRIVSEP child-killed " sig
1831 The helper process was killed by signal number
1832 .IR sig .
1833 .SP
1834 .BI "PRIVSEP child-died " status
1835 The helper process died in some unexpected way;
1836 .I status is the raw status code returned by
1837 .BR waitpid (2),
1838 because the server didn't understand how to decode it.
1839 .SP
1840 .BI "PRIVSEP helper-died"
1841 A tunnel driver requires a tunnel descriptor from the helper, but the
1842 helper isn't running so this won't work.
1843 .SP
1844 .BI "PRIVSEP helper-read-error " ecode " " message
1845 The server failed to read a response from the helper process.
1846 .SP
1847 .BI "PRIVSEP helper-short-read"
1848 The helper process didn't send back enough data, and has likely crashed.
1849 .SP
1850 .BI "PRIVSEP helper-write-error " ecode " " message
1851 The server failed to send a message to the helper process.
1852 .SP
1853 .BI "PRIVSEP no-fd-from-helper"
1854 The helper process sent back a positive response, but didn't include the
1855 requested tunnel descriptor.
1856 .SP
1857 .BI "PRIVSEP socketpair-create-failed " ecode " " message
1858 The server couldn't create the socketpair it's supposed to use to
1859 communicate with the helper process.
1860 .SP
1861 .BI "PRIVSEP unknown-response-code"
1862 The helper process sent back an incomprehensible reply. It's probably
1863 very confused and may crash.
1864 .SS "SERVER warnings"
1865 These indicate problems concerning the server process as a whole.
1866 .SP
1867 .BI "SERVER ignore signal " name
1868 A signal arrived, but the server ignored it. Currently this happens for
1869 .B SIGHUP
1870 because that's a popular way of telling daemons to re-read their
1871 configuration files. Since
1872 .B tripe
1873 re-reads its keyrings automatically and has no other configuration
1874 files, it's not relevant, but it seemed better to ignore the signal than
1875 let the server die.
1876 .SP
1877 .BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
1878 A signal arrived and
1879 .B tripe
1880 is going to quit.
1881 .SP
1882 .BI "SERVER quit admin-request"
1883 A client of the administration interface issued a
1884 .B QUIT
1885 command.
1886 .SP
1887 .BI "SERVER daemon-error " ecode " " message
1888 The server failed to become a daemon during initialization.
1889 .SP
1890 .BI "SERVER quit foreground-eof"
1891 The server is running in foreground mode (the
1892 .B \-F
1893 option), and encountered end-of-file on standard input.
1894 .SP
1895 .BI "SERVER select-error " ecode " " message
1896 An error occurred in the server's main event loop. This is bad: if it
1897 happens too many times, the server will abort.
1898 .SP
1899 .BI "SERVER waitpid-error " ecode " " message
1900 The server was informed that one of its child processes had exited, but
1901 couldn't retrieve the child's status.
1902 .SS "SYMM warnings"
1903 These are concerned with the symmetric encryption and decryption
1904 process.
1905 .SP
1906 .BI "SYMM replay old-sequence"
1907 A packet was received with an old sequence number. It may just have
1908 been delayed or duplicated, or it may have been an attempt at a replay
1909 attack.
1910 .SP
1911 .BI "SYMM replay duplicated-sequence"
1912 A packet was received with a sequence number we've definitely seen
1913 before. It may be an accidental duplication because the 'net is like
1914 that, or a deliberate attempt at a replay.
1915 .SS "TUN warnings"
1916 These concern the workings of the system-specific tunnel driver. The
1917 second token is the name of the tunnel interface in question, or
1918 .RB ` \- '
1919 if none.
1920 .SP
1921 .BI "TUN \- bsd no-tunnel-devices"
1922 The driver couldn't find an available tunnel device. Maybe if you
1923 create some more
1924 .BI /dev/tun nn
1925 files, it will work.
1926 .SP
1927 .BI "TUN \- " tun-name " open-error " device " " ecode " " message
1928 An attempt to open the tunnel device file
1929 .I device
1930 failed.
1931 .SP
1932 .BI "TUN \- linux config-error " ecode " " message
1933 Configuring the Linux TUN/TAP interface failed.
1934 .SP
1935 .BI "TUN " ifname " " tun-name " read-error " ecode " " message
1936 Reading from the tunnel device failed.
1937 .SP
1938 .BI "TUN " ifname " " tun-name " write-error " ecode " " message
1939 Writing from the tunnel device failed.
1940 .SP
1941 .BI "TUN " ifname " slip bad-escape"
1942 The SLIP driver encountered a escaped byte it wasn't expecting to see.
1943 The erroneous packet will be ignored.
1944 .SP
1945 .BI "TUN \- slip bad-interface-list"
1946 The interface list, in the
1947 .B TRIPE_SLIPIF
1948 environment variable, is malformed.
1949 .SP
1950 .BI "TUN " ifname " slip eof"
1951 The SLIP driver encountered end-of-file on its input descriptor.
1952 Pending data is discarded, and no attempt is made to read any more data
1953 from that interface ever.
1954 .SP
1955 .BI "TUN " ifname " slip escape-end"
1956 The SLIP driver encountered an escaped `end' marker. This probably
1957 means that someone's been sending it junk. The erroneous packet is
1958 discarded, and we hope that we've rediscovered synchronization.
1959 .SP
1960 .BI "TUN \- slip fork-error " ecode " " message
1961 The SLIP driver encountered an error forking a child process while
1962 allocating a new dynamic interface.
1963 .SP
1964 .BI "TUN \- slip no-slip-interfaces"
1965 The driver ran out of static SLIP interfaces. Either preallocate more,
1966 or use dynamic SLIP interface allocation.
1967 .SP
1968 .BI "TUN " ifname " slip overflow"
1969 The SLIP driver gave up reading a packet because it got too large.
1970 .SP
1971 .BI "TUN \- slip pipe-error " ecode " " message
1972 The SLIP driver encountered an error creating pipes while allocating a
1973 new dynamic interface.
1974 .SP
1975 .BI "TUN \- slip read-ifname-failed " ecode " " message
1976 The SLIP driver encountered an error reading the name of a dynamically
1977 allocated interface. Maybe the allocation script is broken.
1978 .SP
1979 .BI "TUN \- unet config-error " ecode " " message
1980 Configuring the Linux Unet interface failed. Unet is obsolete and
1981 shouldn't be used any more.
1982 .SP
1983 .BI "TUN \- unet getinfo-error " ecode " " message
1984 Reading information about the Unet interface failed. Unet is obsolete
1985 and shouldn't be used any more.
1986 .SS "USER warnings"
1987 These are issued by administration clients using the
1988 .B WARN
1989 command.
1990 .SP
1991 .BI "USER " tokens\fR...
1992 An administration client issued a warning.
1993 .\"-sep
1994 .
1995 .\"--------------------------------------------------------------------------
1996 .SH "SUMMARY"
1997 .
1998 .SS "Command responses"
1999 .nf
2000 .BI "BGDETACH " tag
2001 .BI "BGFAIL " tag " " tokens \fR...
2002 .BI "BGINFO " tag " " tokens \fR...
2003 .BI "BGOK " tag
2004 .BI "FAIL " tokens \fR...
2005 .BI "INFO " tokens \fR...
2006 .B OK
2007 .fi
2008 .\"= summary
2009 .
2010 .\"--------------------------------------------------------------------------
2011 .SH "SEE ALSO"
2012 .
2013 .BR tripectl (1),
2014 .BR tripe (8).
2015 .PP
2016 .IR "The Trivial IP Encryption Protocol" .
2017 .
2018 .\"--------------------------------------------------------------------------
2019 .SH "AUTHOR"
2020 .
2021 Mark Wooding, <mdw@distorted.org.uk>
2022 .
2023 .\"----- That's all, folks --------------------------------------------------