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