]> Cypherpunks.ru repositories - nncp.git/blob - doc/cmds.texi
nncp-daemon can be run under inetd
[nncp.git] / doc / cmds.texi
1 @node Commands
2 @unnumbered Commands
3
4 Nearly all commands have the following common options:
5
6 @table @option
7 @item -cfg
8     Path to configuration file. May be overridden by @env{NNCPCFG}
9     environment variable. If file file is an encrypted @ref{EBlob,
10     eblob}, then ask for passphrase to decrypt it first.
11 @item -debug
12     Print debug messages. Normally this option should not be used.
13 @item -minsize
14     @anchor{OptMinSize}
15     Minimal required resulting packet size, in KiBs. For example if you
16     send 2 KiB file and set @option{-minsize 4}, then resulting packet
17     will be 4 KiB (containing file itself and some junk).
18 @item -nice
19     Set desired outgoing packet @ref{Niceness, niceness level}.
20 @item -replynice
21     Set desired reply packet @ref{Niceness, niceness level}. Only freq
22     and exec packets look at that niceness level.
23 @item -node
24     Process only single specified node.
25 @item -via
26     Override @ref{CfgVia, via} configuration option for destination node.
27     Specified nodes must be separated with comma: @verb{|NODE1,NODE2|}.
28     With @verb{|-via -|} you can disable relaying at all.
29 @item -spool
30     Override path to spool directory. May be specified by
31     @env{NNCPSPOOL} environment variable.
32 @item -log
33     Override path to logfile. May be specified by @env{NNCPLOG}
34     environment variable.
35 @item -quiet
36     Print only errors, omit simple informational messages. In any case
37     those messages are logged, so you can reread them using
38     @ref{nncp-log} command.
39 @item -version
40     Print version information.
41 @item -warranty
42     Print warranty information (no warranty).
43 @end table
44
45 @node nncp-bundle
46 @section nncp-bundle
47
48 @verbatim
49 % nncp-bundle [options] -tx [-delete] NODE [NODE ...] > ...
50 % nncp-bundle [options] -rx -delete [-dryrun] [NODE ...] < ...
51 % nncp-bundle [options] -rx [-check] [-dryrun] [NODE ...] < ...
52 @end verbatim
53
54 With @option{-tx} option, this command creates @ref{Bundles, bundle} of
55 @ref{Encrypted, encrypted packets} from the spool directory and writes
56 it to stdout.
57
58 With @option{-rx} option, this command takes bundle from stdin and
59 copies all found packets for our node to the spool directory. Pay
60 attention that @strong{no} integrity checking is done by default. Modern
61 tape drives could easily provide too much throughput your CPU won't be
62 able to verify on the fly. So if you won't @ref{nncp-toss, toss}
63 received packets at the place, it is advisable either to run
64 @ref{nncp-check} utility for packets integrity verification, or to use
65 @option{-check} option to enable on the fly integrity check.
66
67 You can specify multiple @option{NODE} arguments, telling for what nodes
68 you want to create the stream, or take it from. If no nodes are
69 specified for @option{-rx} mode, then all packets aimed at us will be
70 processed.
71
72 When packets are sent through the stream, they are still kept in the
73 spool directory, because there is no assurance that they are transferred
74 to the media (media (CD-ROM, tape drive, raw hard drive) can end). If
75 you want to forcefully delete them (after they are successfully flushed
76 to stdout) anyway, use @option{-delete} option.
77
78 But you can verify produced stream after, by digesting it by yourself
79 with @option{-rx} and @option{-delete} options -- in that mode, stream
80 packets integrity will be checked and they will be deleted from the
81 spool if everything is good. So it is advisable to recheck your streams:
82
83 @verbatim
84 % nncp-bundle -tx ALICE BOB WHATEVER | cdrecord -tao -
85 % dd if=/dev/cd0 bs=2048 | nncp-bundle -rx -delete
86 @end verbatim
87
88 @option{-dryrun} option prevents any writes to the spool. This is
89 useful when you need to see what packets will pass by and possibly check
90 their integrity.
91
92 @node nncp-call
93 @section nncp-call
94
95 @verbatim
96 % nncp-call [options]
97     [-onlinedeadline INT]
98     [-maxonlinetime INT]
99     [-rx|-tx]
100     [-rxrate INT]
101     [-txrate INT]
102     NODE[:ADDR] [FORCEADDR]
103 @end verbatim
104
105 Call (connect to) specified @option{NODE} and run @ref{Sync,
106 synchronization} protocol with the @ref{nncp-daemon, daemon} on the
107 remote side. Normally this command could be run any time you wish to
108 either check for incoming packets, or to send out queued ones.
109 Synchronization protocol allows resuming and bidirectional packets
110 transfer.
111
112 If @option{-rx} option is specified then only inbound packets
113 transmission is performed. If @option{-tx} option is specified, then
114 only outbound transmission is performed. @option{-onlinedeadline}
115 overrides @ref{CfgOnlineDeadline, @emph{onlinedeadline}}.
116 @option{-maxonlinetime} overrides @ref{CfgMaxOnlineTime,
117 @emph{maxonlinetime}}. @option{-rxrate}/@option{-txrate} override
118 @ref{CfgXxRate, rxrate/txrate}.
119
120 @node nncp-caller
121 @section nncp-caller
122
123 @verbatim
124 % nncp-caller [options] [NODE ...]
125 @end verbatim
126
127 Croned daemon that calls remote nodes from time to time, according to
128 their @ref{CfgCalls, @emph{calls}} configuration field.
129
130 Optional number of @option{NODE}s tells to ignore other ones.
131 Otherwise all nodes with specified @emph{calls} configuration
132 field will be called.
133
134 @option{-onlinedeadline} overrides @ref{CfgOnlineDeadline,
135 @emph{onlinedeadline}} configuration option.
136
137 Each @option{NODE} can contain several uniquely identified
138 @option{ADDR}esses in @ref{CfgAddrs, configuration} file. If you do
139 not specify the exact one, then all will be tried until the first
140 success. Optionally you can force @option{FORCEADDR} address usage,
141 instead of addresses taken from configuration file.
142
143 Pay attention that this command runs integrity check for each completely
144 received packet in the background. This can be time consuming.
145 Connection could be lost during that check and remote node won't be
146 notified that file is done. But after successful integrity check that
147 file is renamed from @file{.part} one and when you rerun
148 @command{nncp-call} again, remote node will receive completion
149 notification.
150
151 @node nncp-cfgenc
152 @section nncp-cfgenc
153
154 @verbatim
155 % nncp-cfgmin [options] [-s INT] [-t INT] [-p INT] cfg.yaml > cfg.yaml.eblob
156 % nncp-cfgmin [options] -d cfg.yaml.eblob > cfg.yaml
157 @end verbatim
158
159 This command allows you to encrypt provided @file{cfg.yaml} file with
160 the passphrase, producing @ref{EBlob, eblob}, to safely keep your
161 configuration file with private keys. This utility was written for users
162 who do not want (or can not) to use either @url{https://gnupg.org/,
163 GnuPG} or similar tools. That @file{eblob} file can be used directly in
164 @option{-cfg} option of nearly all commands.
165
166 @option{-s}, @option{-t}, @option{-p} are used to tune @file{eblob}'s
167 password strengthening function. Space memory cost (@option{-s}),
168 specified in number of BLAKE2b-256 blocks (32 bytes), tells how many
169 memory must be used for hashing -- bigger values are better, but slower.
170 Time cost (@option{-t}) tells how many rounds/iterations must be
171 performed -- bigger is better, but slower. Number of parallel jobs
172 (@option{-p}) tells how many computation processes will be run: this is
173 the same as running that number of independent hashers and then joining
174 their result together.
175
176 When invoked for encryption, passphrase is entered manually twice. When
177 invoked for decryption (@option{-d} option), it is asked once and exits
178 if passphrase can not decrypt @file{eblob}.
179
180 @option{-dump} options parses @file{eblob} and prints parameters used
181 during its creation. For example:
182 @verbatim
183 % nncp-cfgenc -dump /usr/local/etc/nncp.yaml.eblob
184 Strengthening function: Balloon with BLAKE2b-256
185 Memory space cost: 1048576 bytes
186 Number of rounds: 16
187 Number of parallel jobs: 2
188 Blob size: 2494
189 @end verbatim
190
191 @node nncp-cfgmin
192 @section nncp-cfgmin
193
194 @verbatim
195 % nncp-cfgmin [options] > stripped.yaml
196 @end verbatim
197
198 Print out stripped configuration version: only path to @ref{Spool,
199 spool}, path to log file, neighbours public keys are stayed. This is
200 useful mainly for usage with @ref{nncp-xfer} that has to know only
201 neighbours, without private keys involving.
202
203 @node nncp-cfgnew
204 @section nncp-cfgnew
205
206 @verbatim
207 % nncp-cfgnew [options] > new.yaml
208 @end verbatim
209
210 Generate new node configuration: private keys, example configuration
211 file and print it to stdout. You must use this command when you setup
212 the new node.
213
214 Pay attention that private keys generation consumes an entropy from your
215 operating system.
216
217 @node nncp-check
218 @section nncp-check
219
220 @verbatim
221 % nncp-check [options]
222 @end verbatim
223
224 Perform @ref{Spool, spool} directory integrity check. Read all files
225 that has Base32-encoded filenames and compare it with recalculated
226 BLAKE2b hash output of their contents. That supplementary command is
227 not used often in practice, if ever.
228
229 @node nncp-daemon
230 @section nncp-daemon
231
232 @verbatim
233 % nncp-daemon [options] [-maxconn INT] [-bind ADDR] [-inetd]
234 @end verbatim
235
236 Start listening TCP daemon, wait for incoming connections and run
237 @ref{Sync, synchronization protocol} with each of them. You can run
238 @ref{nncp-toss} utility in background to process inbound packets from
239 time to time.
240
241 @option{-maxconn} option specifies how many simultaneous clients daemon
242 can handle. @option{-bind} option specifies @option{addr:port} it must
243 bind to and listen.
244
245 It could be run as @command{inetd} service, by specifying
246 @option{-inetd} option. Example inetd-entry:
247
248 @verbatim
249 uucp    stream  tcp6    nowait  nncpuser        /usr/local/bin/nncp-daemon      nncp-daemon -inetd
250 @end verbatim
251
252 @node nncp-exec
253 @section nncp-exec
254
255 @verbatim
256 % nncp-exec [options] NODE HANDLE [ARG0 ARG1 ...]
257 @end verbatim
258
259 Send execution command to @option{NODE} for specified @option{HANDLE}.
260 Body is read from stdin and compressed. After receiving, remote side
261 will execute specified @ref{CfgExec, handle} command with @option{ARG*}
262 appended and decompressed body fed to command's stdin.
263
264 For example, if remote side has following configuration file for your
265 node:
266
267 @verbatim
268 exec:
269   sendmail: [/usr/sbin/sendmail, "-t"]
270   appender: ["/bin/sh", "-c", "cat >> /append"]
271 @end verbatim
272
273 then executing @verb{|echo My message | nncp-exec -replynice 123 REMOTE
274 sendmail root@localhost|} will lead to executing of:
275
276 @verbatim
277 echo My message |
278     NNCP_SELF=REMOTE \
279     NNCP_SENDER=OurNodeId \
280     NNCP_NICE=123 \
281     /usr/sbin/sendmail -t root@localhost
282 @end verbatim
283
284
285 @node nncp-file
286 @section nncp-file
287
288 @verbatim
289 % nncp-file [options] [-chunked INT] SRC NODE:[DST]
290 @end verbatim
291
292 Send @file{SRC} file to remote @option{NODE}. @file{DST} specifies
293 destination file name in remote's @ref{CfgIncoming, incoming}
294 directory. If this file already exists there, then counter will be
295 appended to it.
296
297 This command queues file in @ref{Spool, spool} directory immediately
298 (through the temporary file of course) -- so pay attention that sending
299 2 GiB file will create 2 GiB outbound encrypted packet.
300
301 If @file{SRC} equals to @file{-}, then create an encrypted temporary
302 file and copy everything taken from stdin to it and use for outbound
303 packet creation. Pay attention that if you want to send 1 GiB of data
304 taken from stdin, then you have to have 2 GiB of disk space for that
305 temporary file and resulting encrypted packet. You can control where
306 temporary file will be stored using @env{TMPDIR} environment variable.
307 Encryption is performed with @url{https://cr.yp.to/chacha.html,
308 ChaCha20} algorithm. Data is splitted on 128 KiB blocks. Each block is
309 encrypted with increasing nonce counter.
310
311 If @option{-chunked} is specified, then source file will be split
312 @ref{Chunked, on chunks}. @option{INT} is the desired chunk size in
313 KiBs. This mode is more CPU hungry. Pay attention that chunk is saved in
314 spool directory immediately and it is not deleted if any error occurs.
315 @option{-minsize} option is applied per each chunk. Do not forget about
316 @ref{ChunkedZFS, possible} ZFS deduplication issues.
317
318 If @ref{CfgNotify, notification} is enabled on the remote side for
319 file transmissions, then it will sent simple letter after successful
320 file receiving.
321
322 @node nncp-freq
323 @section nncp-freq
324
325 @verbatim
326 % nncp-freq [options] NODE:SRC [DST]
327 @end verbatim
328
329 Send file request to @option{NODE}, asking it to send its @file{SRC}
330 file from @ref{CfgFreq, freq} directory to our node under @file{DST}
331 filename in our @ref{CfgIncoming, incoming} one. If @file{DST} is not
332 specified, then last element of @file{SRC} will be used.
333
334 If @ref{CfgNotify, notification} is enabled on the remote side for
335 file request, then it will sent simple letter after successful file
336 queuing.
337
338 @node nncp-log
339 @section nncp-log
340
341 @verbatim
342 % nncp-log [options]
343 @end verbatim
344
345 Parse @ref{Log, log} file and print out its records in human-readable form.
346
347 @node nncp-pkt
348 @section nncp-pkt
349
350 @verbatim
351 % nncp-pkt [options] < pkt
352 % nncp-pkt [options] [-decompress] -dump < pkt > payload
353 @end verbatim
354
355 Low level packet parser. Normally it should not be used, but can help in
356 debugging.
357
358 By default it will print packet's type, for example:
359 @verbatim
360 Packet type: encrypted
361 Niceness: 64
362 Sender: 2WHBV3TPZHDOZGUJEH563ZEK7M33J4UESRFO4PDKWD5KZNPROABQ
363 @end verbatim
364
365 If you specify @option{-dump} option and provide an @ref{Encrypted,
366 encrypted} packet, then it will verify and decrypt it to stdout.
367 Encrypted packets contain @ref{Plain, plain} ones, that also can be fed
368 to @command{nncp-pkt}:
369
370 @verbatim
371 Packet type: plain
372 Payload type: transitional
373 Path: VHMTRWDOXPLK7BR55ICZ5N32ZJUMRKZEMFNGGCEAXV66GG43PEBQ
374
375 Packet type: plain
376 Payload type: mail
377 Path: stargrave@stargrave.org
378 @end verbatim
379
380 And with the @option{-dump} option it will give you the actual payload
381 (the whole file, mail message, and so on). @option{-decompress} option
382 tries to zlib-decompress the data from plain packet (useful for mail
383 packets).
384
385 @node nncp-reass
386 @section nncp-reass
387
388 @verbatim
389 % nncp-reass [options] [-dryrun] [-keep] [-dump] [-stdout] FILE.nncp.meta
390 % nncp-reass [options] [-dryrun] [-keep] {-all | -node NODE}
391 @end verbatim
392
393 Reassemble @ref{Chunked, chunked file} after @ref{nncp-toss, tossing}.
394
395 When called with @option{FILE} option, this command will reassemble only
396 it. When called with @option{-node} option, this command will try to
397 reassemble all @file{.nncp.meta} files found in @option{NODE}'s
398 @ref{CfgIncoming, incoming} directory. When called with @option{-all}
399 option, then cycle through all known nodes to do the same.
400
401 Reassembling process does the following:
402
403 @enumerate
404 @item Parses @ref{Chunked, @file{.nncp.meta}} file.
405 @item Checks existence and size of every @file{.nncp.chunkXXX}.
406 @item Verifies integrity of every chunk.
407 @item Concatenates all chunks, simultaneously removing them from filesystem.
408 @end enumerate
409
410 That process reads the whole data twice. Be sure to have free disk
411 space for at least one chunk. Decrypted chunk files as a rule are saved
412 in pseudo-random order, so removing them during reassembly process will
413 likely lead to filesystem fragmentation. Reassembly process on
414 filesystems with deduplication capability should be rather lightweight.
415
416 If @option{-dryrun} option is specified, then only existence and
417 integrity checking are performed.
418
419 If @option{-keep} option is specified, then no
420 @file{.nncp.meta}/@file{.nncp.chunkXXX} files are deleted during
421 reassembly process.
422
423 @option{-stdout} option outputs reassembled file to stdout, instead of
424 saving to temporary file with renaming after. This could be useful for
425 reassembling on separate filesystem to lower fragmentation effect,
426 and/or separate storage device for higher performance.
427
428 @option{-dump} option prints meta-file contents in human-friendly form.
429 It is useful mainly for debugging purposes. For example:
430 @verbatim
431 Original filename: testfile
432 File size: 3.8 MiB (3987795 bytes)
433 Chunk size: 1.0 MiB (1048576 bytes)
434 Number of chunks: 4
435 Checksums:
436     0: eac60d819edf40b8ecdacd0b9a5a8c62de2d15eef3c8ca719eafa0be9b894017
437     1: 013a07e659f2e353d0e4339c3375c96c7fffaa2fa00875635f440bbc4631052a
438     2: f4f883975a663f2252328707a30e71b2678f933b2f3103db8475b03293e4316e
439     3: 0e9e229501bf0ca42d4aa07393d19406d40b179f3922a3986ef12b41019b45a3
440 @end verbatim
441
442  Do not forget about @ref{ChunkedZFS, possible} ZFS deduplication issues.
443
444 @node nncp-rm
445 @section nncp-rm
446
447 @verbatim
448 % nncp-rm [options] -tmp
449 % nncp-rm [options] -lock
450 % nncp-rm [options] -node NODE -part
451 % nncp-rm [options] -node NODE -seen
452 % nncp-rm [options] -node NODE [-rx] [-tx]
453 % nncp-rm [options] -node NODE -pkt PKT
454 @end verbatim
455
456 This command is aimed to delete various files from your spool directory:
457
458 @itemize
459 @item If @option{-tmp} option is specified, then it will delete all
460 temporary files in @file{spool/tmp} directory. Files may stay in it when
461 commands like @ref{nncp-file} fail for some reason.
462 @item If @option{-lock} option is specified, then all @file{.lock} files
463 will be deleted in your spool directory.
464 @item If @option{-pkt} option is specified, then @file{PKT} packet (its
465 Base32 name) will be deleted. This is useful when you see some packet
466 failing to be processed.
467 @item When either @option{-rx} or @option{-tx} options are specified
468 (maybe both of them), then delete all packets from that given queues. If
469 @option{-part} is given, then delete only @file{.part}ly downloaded
470 ones. If @option{-seen} option is specified, then delete only
471 @file{.seen} files.
472 @end itemize
473
474 @node nncp-stat
475 @section nncp-stat
476
477 @verbatim
478 % nncp-stat [options]
479 @end verbatim
480
481 Print current @ref{Spool, spool} statistics about unsent and unprocessed
482 packets. For each node and each niceness level there will be printed how
483 many packets (with the total size) are in inbound (Rx) and outbound (Tx)
484 queues.
485
486 @node nncp-toss
487 @section nncp-toss
488
489 @verbatim
490 % nncp-toss [options]
491     [-dryrun]
492     [-cycle INT]
493     [-seen]
494     [-nofile]
495     [-nofreq]
496     [-nomail]
497     [-notrns]
498 @end verbatim
499
500 Perform "tossing" operation on all inbound packets. This is the tool
501 that decrypts all packets and processes all payload packets in them:
502 copies files, sends mails, sends out file requests and relays transition
503 packets. It should be run after each online/offline exchange.
504
505 @option{-dryrun} option does not perform any writing and sending, just
506 tells what it will do.
507
508 @option{-cycle} option tells not to quit, but to repeat tossing every
509 @option{INT} seconds in an infinite loop. That can be useful when
510 running this command as a daemon.
511
512 @option{-seen} option creates empty @file{XXX.seen} file after
513 successful tossing of @file{XXX} packet. @ref{nncp-xfer},
514 @ref{nncp-bundle}, @ref{nncp-daemon} and @ref{nncp-call} commands skip
515 inbound packets that has been already seen, processed and tossed. This
516 is helpful to prevent duplicates.
517
518 @option{-nofile}, @option{-nofreq}, @option{-nomail}, @option{-notrns}
519 options allow to disable any kind of packet types processing.
520
521 @node nncp-xfer
522 @section nncp-xfer
523
524 @verbatim
525 % nncp-xfer [options] [-mkdir] [-keep] [-rx|-tx] DIR
526 @end verbatim
527
528 Search for directory in @file{DIR} containing inbound packets for us and
529 move them to local @ref{Spool, spool} directory. Also search for known
530 neighbours directories and move locally queued outbound packets to them.
531 This command is used for offline packets transmission.
532
533 If @option{-mkdir} option is specified, then outbound neighbour(s)
534 directories will be created. This is useful for the first time usage,
535 when storage device does not have any directories tree.
536
537 If @option{-keep} option is specified, then keep copied files, do not
538 remove them.
539
540 @option{-rx} option tells only to move inbound packets addressed to us.
541 @option{-tx} option tells exactly the opposite: move only outbound packets.
542
543 @ref{nncp-cfgmin} could be useful for creating stripped minimalistic
544 configuration file version without any private keys.
545
546 @file{DIR} directory has the following structure:
547 @file{RECIPIENT/SENDER/PACKET}, where @file{RECIPIENT} is Base32 encoded
548 destination node, @file{SENDER} is Base32 encoded sender node.
549
550 Also look for @ref{nncp-bundle}, especially if you deal with CD-ROM and
551 tape drives.