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