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