chiark / gitweb /
Issue ADD and KXSTART notifications in the right order!
[tripe] / doc / tripe-admin.5
1 .\" -*-nroff-*-
2 .TH tripe-admin 5 "18 February 2001" "Straylight/Edgeware" "TrIPE: Trivial IP Encryption"
3 .SH NAME
4 tripe-admin \- administrator commands for TrIPE
5 .SH DESCRIPTION
6 This manual page describes the administration interface provided by the
7 .BR tripe (8)
8 daemon.
9 .PP
10 The
11 .BR tripectl (8)
12 program can be used either interactively or in scripts to communicate
13 with the server using this interface.  Alternatively, simple custom
14 clients can be written in scripting languages such as Perl, Python or
15 Tcl, or more advanced clients such as GUI monitors can be written in C
16 with little difficulty.
17 .PP
18 By default, the server listens for admin connections on the Unix-domain
19 socket
20 .BR /var/lib/tripe/tripesock .
21 Administration commands use a simple textual protocol.  Each client
22 command or server response consists of a line of ASCII text terminated
23 by a single linefeed character.  No command may be longer than 255
24 characters.
25 .SS "General structure"
26 Each command or response line consists of a sequence of
27 whitespace-separated words.  The number and nature of whitespace
28 characters separating two words in a client command is not significant;
29 the server always uses a single space character.  The first word in a
30 line is a
31 .I keyword
32 identifying the type of command or response contained.  Keywords in
33 client commands are not case-sensitive; the server always uses uppercase
34 for its keywords.
35 .SS "Server responses"
36 For client command, the server responds with zero or more
37 .B INFO
38 lines, followed by either an
39 .B OK
40 line or a
41 .B FAIL
42 line.  Each
43 .B INFO
44 provides information requested in the command.  An
45 .B OK
46 response contains no further data.  A
47 .B FAIL
48 code is followed by a machine-readable explanation of why the command
49 failed.
50 .PP
51 In addition, there are three types of asynchronous messages which
52 aren't associated with any particular command.  The
53 .B WARN
54 message contains a machine-readable message warning of an error
55 encountered while processing a command, unexpected or unusual behaviour
56 by a peer, or a possible attack by an adversary.  Under normal
57 conditions, the server shouldn't emit any warnings.  The
58 .B TRACE
59 message contains a human-readable tracing message containing diagnostic
60 information.  Trace messages are controlled using the
61 .B \-T
62 command-line option to the server, or the
63 .B TRACE
64 administration command (see below).  Support for tracing can be disabled
65 when the package is being configured, and may not be available in your
66 version.  Finally, the
67 .B NOTE
68 message is a machine-readable notification about some routine but
69 interesting event such as creation or destruction of peers.
70 .PP
71 The presence of asynchronous messages can be controlled using the
72 .B WATCH
73 command.
74 .SS "Network addresses"
75 A network address is a sequence of words.  The first is a token
76 identifying the network address family.  The length of an address and
77 the meanings of the subsequent words depend on the address family.
78 Address family tokens are not case-sensitive on input; on output, they
79 are always in upper-case.
80 .PP
81 At present, only one address family is understood.
82 .TP
83 .BI "INET " address " " port
84 An Internet socket, naming an IPv4 address and UDP port.  On output, the
85 address is always in numeric dotted-quad form, and the port is given as
86 a plain number.  On input, DNS hostnames and symbolic port names are
87 permitted.  Name resolution does not block the main server, but will
88 block the requesting client.  This hopefully makes life simpler for
89 stupid clients.  Complex clients which don't wish to be held up can open
90 extra connections or do the resolution themselves.)
91 .PP
92 If, on input, no recognised address family token is found, the following
93 words are assumed to represent an
94 .B INET
95 address.
96 .SH "COMMAND REFERENCE"
97 The commands provided are:
98 .TP
99 .BI "ADD " peer " " address\fR...
100 Adds a new peer.  The peer is given the name
101 .IR peer ;
102 the peer's public key is assumed to be in the file
103 .B keyring.pub
104 (or whatever alternative file was specified in the
105 .B \-K
106 option on the command line).  The
107 .I address
108 is the network address (see above for the format) at which the peer can
109 be contacted.
110 .TP
111 .BI "ADDR " peer
112 Emits an
113 .B INFO
114 line reporting the IP address and port number stored for
115 .IR peer .
116 .TP
117 .B "DAEMON"
118 Causes the server to disassociate itself from its terminal and become a
119 background task.  This only works once.  A warning is issued.
120 .TP
121 .B "HELP"
122 Causes the server to emit an
123 .B INFO
124 line for each command it supports.  Each line lists the command name,
125 followed by the names of the arguments.  This may be helpful as a memory
126 aid for interactive use, or for program clients probing for features.
127 .TP 
128 .BI "IFNAME " peer
129 Emits an
130 .B INFO
131 line containing the name of the network interface used to collect IP
132 packets which are to be encrypted and sent to
133 .IR peer .
134 Used by configuration scripts so that they can set up routing tables
135 appropriately after adding new peers.
136 .TP
137 .BI "KILL " peer
138 Causes the server to forget all about
139 .IR peer .
140 All keys are destroyed, and no more packets are sent.  No notification
141 is sent to the peer: if it's important that the peer be notified, you
142 must think of a way to do that yourself.
143 .TP
144 .B "LIST"
145 For each currently-known peer, an
146 .B INFO
147 line is written containing the peer's name, as given to
148 .BR ADD .
149 .TP
150 .B "PORT"
151 Emits an
152 .B INFO
153 line containing just the number of the UDP port used by the
154 .B tripe
155 server.  If you've allowed your server to allocate a port dynamically,
156 this is how to find out which one it chose.
157 .TP
158 .B "QUIT"
159 Instructs the server to exit immediately.  A warning is sent.
160 .TP
161 .BI "STATS " peer
162 Emits a number of
163 .B INFO
164 lines, each containing one or more statistics in the form
165 .IB name = value \fR.
166 The statistics-gathering is experimental and subject to change.
167 .TP
168 .BR "TRACE " [\fIoptions\fP]
169 A trace argument consists of a string of letters (listed below)
170 selecting trace outputs, optionally interspersed with
171 .RB ` + '
172 to enable, or
173 .RB ` \- '
174 to disable, the subsequently listed outputs; the initial behaviour is to
175 enable listed outputs.  For example, the string
176 .B ra\-st+x
177 enables tracing of peer management, admin-connection handling and
178 key-exchange processing, and disables tracing of symmetric keyset
179 management and the system-specific tunnel driver.  If no argument is
180 given, a table is returned showing the available tracing option letters
181 and their meanings.  Programs should not attempt to parse this table:
182 its format is not guaranteed to remain the same.
183 .RS
184 .PP
185 Currently, the following tracing options are supported:
186 .TP
187 .B t
188 Tunnel events: reception of packets to be encrypted, and injection of
189 successfully-decrypted packets.
190 .TP
191 .B r
192 Peer management events: creation and destruction of peer attachments,
193 and arrival of messages.
194 .TP
195 .B a
196 Administration interface: acceptance of new connections, and handling of
197 the backgroud name-resolution required by the
198 .B ADD
199 command.
200 .TP
201 .B p
202 Display contents of packets sent and received by the tunnel and/or peer
203 modules.
204 .TP
205 .B c
206 Display inputs, outputs and intermediate results of cryptographic
207 operations.  This includes plaintext and key material.  Use with
208 caution.
209 .TP
210 .B s
211 Handling of symmetric keysets: creation and expiry of keysets, and
212 encryption and decryption of messages.
213 .TP
214 .B x
215 Key exchange: reception, parsing and emission of key exchange messages.
216 .TP
217 .B m
218 Key management: loading keys and checking for file modifications.
219 .PP
220 Note that the
221 .B p
222 (packet contents)
223 and
224 .B c
225 (crypto details)
226 outputs provide extra detail for other outputs.  Specifying
227 .B p
228 without
229 .B r
230 or
231 .B t
232 isn't useful; neither is specifying
233 .B c
234 without one of
235 .BR s ,
236 .B x
237 or
238 .BR m .
239 .TP
240 .B A
241 All of the above.
242 .RE
243 .TP
244 .BR "WATCH " [\fIoptions\fP]
245 Enables or disables asynchronous messages
246 .IR "for the current connection only" .
247 This command has no effect on other connections.  A watch argument
248 consists of a string of letters (listed below) selecting message types,
249 optionally interspersed with
250 .RB ` + '
251 to enable, or
252 .RB ` \- '
253 to disable, the subsequently listed types, similar to
254 .B trace
255 above.  The default watch state for the connection the server opens
256 automatically on stdin/stdout is to show warnings and trace messages;
257 other connections show no asynchronous messages.  (This is done in order
258 to guarantee that a program reading the server's stdout does not miss
259 any warnings.)
260 .RS
261 .PP
262 Currently, the following watch options are supported:
263 .TP
264 .B t
265 .B TRACE
266 messages.
267 .TP
268 .B n
269 .B NOTE
270 messages.
271 .TP
272 .B w
273 .B WARN
274 messages.
275 .TP
276 .B a
277 All of the above.
278 .RE
279 .TP
280 .B "VERSION"
281 Causes the server to emit an
282 .B INFO
283 line stating its software version, as two words: the server name, and
284 its version string.  The server name
285 .B tripe
286 is reserved to the Straylight/Edgeware implementation.
287 .SH "ERROR MESSAGES"
288 The following
289 .B FAIL
290 messages are sent to clients as a result of errors during command
291 processing.
292 .TP
293 .BI "already-daemon"
294 (For
295 .BR DAEMON .)
296 The
297 .B tripe
298 server is already running as a daemon.
299 .TP
300 .BI "bad-syntax \-\- " message
301 (For any command.)  The command couldn't be understood: e.g., the number
302 of arguments was wrong.
303 .TP
304 .BI "bad-trace-option " char
305 (For
306 .BR TRACE .)
307 An unknown trace option was requested.
308 .TP
309 .BI "bad-watch-option " char
310 (For
311 .BR WATCH .)
312 An unknown watch option was requested.
313 .TP
314 .BI "daemon-error \-\- " message
315 (For
316 .BR DAEMON .)
317 An error occurred during the attempt to become a daemon, as reported by
318 .IR message .
319 .TP
320 .BI "invalid-port " number
321 (For
322 .BR ADD .)
323 The given port number is out of range.
324 .TP
325 .BI "peer-create-fail " peer
326 (For
327 .BR ADD .)
328 Adding
329 .I peer
330 failed for some reason.  A warning should have been emitted explaining
331 why.
332 .TP
333 .BI "peer-exists " peer
334 (For
335 .BR ADD .)
336 There is already a peer named
337 .IR peer .
338 .TP
339 .BI "resolve-error " hostname
340 (For
341 .BR ADD .)
342 The DNS name
343 .I hostname
344 could not be resolved.
345 .TP
346 .BI "resolver-timeout " hostname
347 (For
348 .BR ADD .)
349 The DNS name
350 .I hostname
351 took too long to resolve.
352 .TP
353 .BI "unknown-command " token
354 The command
355 .B token
356 was not recognised.
357 .TP
358 .BI "unknown-peer " name
359 (For
360 .BR ADDR ,
361 .BR IFNAME ,
362 .BR KILL ,
363 and
364 .BR STATS .)
365 There is no peer called
366 .IR name .
367 .TP
368 .BI "unknown-service " service
369 (For
370 .BR ADD .)
371 The service name
372 .I service
373 couldn't be found in 
374 .BR /etc/services .
375 .SH "NOTIFICATIONS"
376 The following notifications are sent to clients who request them.
377 .TP
378 .BI "ADD " peer " " address \fR...
379 A new peer has been added.  The peer's name is
380 .I peer
381 and its network address is
382 .IR address .
383 .TP
384 .BI "DAEMON"
385 The server has forked off into the sunset and become a daemon.
386 .TP
387 .BI "KILL " peer
388 The peer
389 .I peer
390 has been killed.
391 .TP
392 .BI "KXDONE " peer
393 Key exchange with
394 .I peer
395 finished successfully.
396 .TP
397 .BI "KXSTART " peer
398 Key exchange with
399 .I peer
400 has begun or restarted.  If key exchange keeps failing, this message
401 will be repeated periodically.
402 .SH "WARNINGS"
403 There are many possible warnings.  They are categorized according to
404 their first tokens.
405 .SS "ABORT warnings"
406 These all indicate that the
407 .B tripe
408 server has become unable to continue.  If enabled, the server will dump
409 core in its configuration directory.
410 .TP
411 .BI "ABORT repeated-select-errors"
412 The main event loop is repeatedly failing.  If the server doesn't quit,
413 it will probably waste all available CPU doing nothing.
414 .SS "ADMIN warnings"
415 These indicate a problem with the administration socket interface.
416 .TP
417 .BI "ADMIN accept-error \-\- " message
418 There was an error while attempting to accept a connection from a new
419 client.
420 .TP
421 .BI "ADMIN client-read-error \-\- " message
422 There was an error sending data to a client.  The connection to the
423 client has been closed.
424 .SS "KEYMGMT warnings"
425 These indicate a problem with the keyring files, or the keys stored in
426 them.
427 .TP
428 .BI "KEYMGMT bad-private-key \-\- " message
429 The private key could not be read, or failed a consistency check.  If
430 there was a problem with the file, usually there will have been
431 .B key-file-error
432 warnings before this.
433 .TP
434 .BI "KEYMGMT bad-public-keyring \-\- " message
435 The public keyring couldn't be read.  Usually, there will have been 
436 .B key-file-error
437 warnings before this.
438 .TP
439 .BI "KEYMGMT key-file-error " file ":" line " \-\- " message
440 Reports a specific error with the named keyring file.  This probably
441 indicates a bug in
442 .BR key (1).
443 .TP
444 .BI "KEYMGMT public-key " tag " " tokens\fR...
445 These messages all indicate a problem with the public key named
446 .IR tag .
447 .TP
448 .BI "KEYMGMT public-key " tag " algorithm-mismatch"
449 The algorithms specified on the public key don't match the ones for our
450 private key.  All the peers in a network have to use the same
451 algorithms.
452 .TP
453 .BI "KEYMGMT public-key " tag " bad \-\- " message
454 The public key couldn't be read, or is invalid.
455 .TP
456 .BI "KEYMGMT public-key " tag " bad-public-group-element"
457 The public key is invalid.  This may indicate a malicious attempt to
458 introduce a bogus key.
459 .TP
460 .BI "KEYMGMT public-key " tag " bad-algorithm-selection"
461 The algorithms listed on the public key couldn't be understood.  The
462 algorithm selection attributes are probably malformed and need fixing.
463 .TP
464 .BI "KEYMGMT public-key " tag " incorrect-group"
465 The public key doesn't use the same group as our private key.  All the
466 peers in a network have to use the same group.
467 .TP
468 .BI "KEYMGMT public-key " tag " not-found"
469 The public key for peer
470 .I tag
471 wasn't in the public keyring.
472 .TP
473 .BI "KEYMGMT public-key " tag " unknown-type"
474 The type of the public key isn't understood.  Maybe you need to upgrade
475 your copy of
476 .BR tripe .
477 (Even if you do, you'll have to regenerate your keys.)
478 .SS "KX warnings"
479 These indicate problems during key-exchange.  Many indicate either a bug
480 in the server (either yours or the remote one), or some kind of attack
481 in progress.  All name a
482 .I peer
483 as the second token: this is the peer the packet is apparently from,
484 though it may have been sent by an attacker instead.
485 .PP
486 In the descriptions below,
487 .I msgtoken
488 is one of the tokens
489 .BR pre-challenge ,
490 .BR cookie ,
491 .BR challenge ,
492 .BR reply ,
493 .BR switch-rq ,
494 or
495 .BR switch-ok .
496 .TP
497 .BI "KX " peer " bad-expected-reply-log"
498 The challenges
499 .B tripe
500 uses in its protocol contain a check value which proves that the
501 challenge is honest.  This message indicates that the check value
502 supplied is wrong: someone is attempting to use bogus challenges to
503 persuade your
504 .B tripe
505 server to leak private key information.  No chance!
506 .TP
507 .BI "KX " peer " decrypt-failed \fR[\fBreply\fR|\fBswitch-ok\fR]"
508 A symmetrically-encrypted portion of a key-exchange message failed to
509 decrypt.
510 .TP
511 .BI "KX " peer " invalid " msgtoken
512 A key-exchange message was malformed.  This almost certainly indicates a
513 bug somewhere.
514 .TP
515 .BI "KX " peer " incorrect \fR[\fBcookie\fR|\fBswitch-rq\fR|\fBswitch-ok\fR]"
516 A message didn't contain the right magic data.  This may be a replay of
517 some old exchange, or random packets being sent in an attempt to waste
518 CPU.
519 .TP
520 .BI "KX " peer " public-key-expired"
521 The peer's public key has expired.  It's maintainer should have given
522 you a replacement before now.
523 .TP
524 .BI "KX " peer " sending-cookie"
525 We've received too many bogus pre-challenge messages.  Someone is trying
526 to flood us with key-exchange messages and make us waste CPU on doing
527 hard asymmetric crypto sums.
528 .TP
529 .BI "KX " peer " unexpected " msgtoken
530 The message received wasn't appropriate for this stage of the key
531 exchange process.  This may mean that one of our previous packets got
532 lost.  For 
533 .BR pre-challenge ,
534 it may simply mean that the peer has recently restarted.
535 .TP
536 .BI "KX " peer " unknown-challenge"
537 The peer is asking for an answer to a challenge which we don't know
538 about.  This may mean that we've been inundated with challenges from
539 some malicious source
540 .I who can read our messages
541 and discarded the valid one.
542 .TP
543 .BI "KX " peer " unknown-message 0x" nn
544 An unknown key-exchange message arrived.
545 .SS "PEER warnings"
546 These are largely concerned with management of peers and the low-level
547 details of the network protocol.  The second word is usually the name of
548 a peer, or 
549 .RB ` \- '
550 if none is relevant.
551 .TP
552 .BI "PEER \- unexpected-source " address\fR...
553 A packet arrived from
554 .I address
555 (a network address \(en see above), but no peer is known at that
556 address.  This may indicate a misconfiguration, or simply be a result of
557 one end of a connection being set up before the other.
558 .TP
559 .BI "PEER " peer " bad-packet no-type"
560 An empty packet arrived.  This is very strange.
561 .TP
562 .BI "PEER " peer " bad-packet unknown-category 0x" nn
563 The message category
564 .I nn
565 (in hex) isn't understood.  Probably a strange random packet from
566 somewhere; could be an unlikely bug.
567 .TP
568 .BI "PEER " peer " bad-packet unknown-type 0x" nn
569 The message type
570 .I nn
571 (in hex) isn't understood.  Probably a strange random packet from
572 somewhere; could be an unlikely bug.
573 .TP
574 .BI "PEER " peer " decrypt-failed"
575 An encrypted IP packet failed to decrypt.  It may have been mangled in
576 transit, or may be a very old packet from an expired previous session
577 key.  There is usually a considerable overlap in the validity periods of
578 successive session keys, so this shouldn't occur unless the key exchange
579 takes ages or fails.
580 .TP
581 .BI "PEER " peer " packet-build-failed"
582 There wasn't enough space in our buffer to put the packet we wanted to
583 send.  Shouldn't happen.
584 .TP
585 .BI "PEER \- socket-read-error \-\- " message
586 An error occurred trying to read an incoming packet.
587 .TP
588 .BI "PEER " peer " socket-write-error \-\- " message
589 An error occurred attempting to send a network packet.  We lost that
590 one.
591 .SS "SERVER warnings"
592 These indicate problems concerning the server process as a whole.
593 .TP
594 .BI "SERVER ignore signal " name
595 A signal arrived, but the server ignored it.  Currently this happens for
596 .B SIGHUP
597 because that's a popular way of telling daemons to re-read their
598 configuration files.  Since
599 .B tripe
600 re-reads its keyrings automatically and has no other configuration
601 files, it's not relevant, but it seemed better to ignore the signal than
602 let the server die.
603 .TP
604 .BI "SERVER quit signal " \fR[\fInn\fR|\fIname\fR]
605 A signal arrived and
606 .B tripe
607 is going to quit.
608 .TP
609 .BI "SERVER quit admin-request"
610 A client of the administration interface issued a
611 .B QUIT
612 command.
613 .TP
614 .BI "SERVER select-error \-\- " message
615 An error occurred in the server's main event loop.  This is bad: if it
616 happens too many times, the server will abort.
617 .SS "SYMM warnings"
618 These are concerned with the symmetric encryption and decryption
619 process.
620 .TP
621 .BI "SYMM replay old-sequence"
622 A packet was received with an old sequence number.  It may just have
623 been delayed or duplicated, or it may have been an attempt at a replay
624 attack.
625 .TP
626 .BI "SYMM replay duplicated-sequence"
627 A packet was received with a sequence number we've definitely seen
628 before.  It may be an accidental duplication because the 'net is like
629 that, or a deliberate attempt at a replay.
630 .SS "TUN warnings"
631 These concern the workings of the system-specific tunnel driver.  The
632 second word is the name of the tunnel interface in question, or
633 .RB ` \- '
634 if none.
635 .TP
636 .BI "TUN \- bsd no-tunnel-devices"
637 The driver couldn't find an available tunnel device.  Maybe if you
638 create some more 
639 .BI /dev/tun nn
640 files, it will work.
641 .TP
642 .BI "TUN - open-error " device " \-\- " message
643 An attempt to open the tunnel device file
644 .I device
645 failed.
646 .TP
647 .BI "TUN " ifname " read-error \-\- " message
648 Reading from the tunnel device failed.
649 .TP
650 .BI "TUN \- linux config-error \-\- " message
651 Configuring the Linux TUN/TAP interface failed.
652 .TP
653 .BI "TUN \- unet config-error \-\- " message
654 Configuring the Linux Unet interface failed.  Unet is obsolete and
655 shouldn't be used any more.
656 .TP
657 .BI "TUN \- unet getinfo-error \-\- " message
658 Reading information about the Unet interface failed.  Unet is obsolete
659 and shouldn't be used any more.
660 .TP
661 .BI "TUN \- unet ifname-too-long \-\- " message
662 The Unet interface's name overflowed, so we couldn't read it properly.
663 Unet is obsolete and shouldn't be used any more.
664 .SH "SEE ALSO"
665 .BR tripectl (1),
666 .BR tripe (8).
667 .PP
668 .IR "The Trivial IP Encryption Protocol" .
669 .SH "AUTHOR"
670 Mark Wooding, <mdw@nsict.org>