]> Cypherpunks.ru repositories - nncp.git/blob - doc/cmds.texi
Rename nncp-*cfg commands to have the common prefix
[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 overrided by @env{NNCPCFG}
9     environment variable.
10 @item -debug
11     Print debug messages. Normally this option should not be used.
12 @item -minsize
13     @anchor{OptMinSize}
14     Minimal required resulting packet size, in KiBs. For example if you
15     send 2 KiB file and set @option{-minsize 4}, then resulting packet
16     will be 4 KiB (containing file itself and some junk).
17 @item -nice
18     Set desired outgoing packet @ref{Niceness, niceness level}.
19     1-255 values are allowed.
20 @item -node
21     Process only single specified node.
22 @item -quiet
23     Print only errors, omit simple informational messages. In any case
24     those messages are logged, so you can reread them using
25     @ref{nncp-log} command.
26 @item -version
27     Print version information.
28 @item -warranty
29     Print warranty information (no warranty).
30 @end table
31
32 @node nncp-call
33 @section nncp-call
34
35 @verbatim
36 % nncp-call [options] [-onlinedeadline INT] [-maxonlinetime INT] [-rx|-tx]
37                       NODE[:ADDR] [FORCEADDR]
38 @end verbatim
39
40 Call (connect to) specified @option{NODE} and run @ref{Sync,
41 synchronization} protocol with the @ref{nncp-daemon, daemon} on the
42 remote side. Normally this command could be run any time you wish to
43 either check for incoming packets, or to send out queued ones.
44 Synchronization protocol allows resuming and bidirectional packets
45 transfer.
46
47 If @option{-rx} option is specified then only inbound packets
48 transmission is performed. If @option{-tx} option is specified, then
49 only outbound transmission is performed. @option{-onlinedeadline}
50 overrides @ref{CfgOnlineDeadline, @emph{onlinedeadline}}.
51 @option{-maxonlinetime} overrides @ref{CfgMaxOnlineTime,
52 @emph{maxonlinetime}}.
53
54 @node nncp-caller
55 @section nncp-caller
56
57 @verbatim
58 % nncp-caller [options] [NODE ...]
59 @end verbatim
60
61 Croned daemon that calls remote nodes from time to time, according to
62 their @ref{CfgCalls, @emph{calls}} configuration field.
63
64 Optional number of @option{NODE}s tells to ignore other ones.
65 Otherwise all nodes with specified @emph{calls} configuration
66 field will be called.
67
68 @option{-onlinedeadline} overrides @ref{CfgOnlineDeadline,
69 @emph{onlinedeadline}} configuration option.
70
71 Each @option{NODE} can contain several uniquely identified
72 @option{ADDR}esses in @ref{CfgAddrs, configuration} file. If you do
73 not specify the exact one, then all will be tried until the first
74 success. Optionally you can force @option{FORCEADDR} address usage,
75 instead of addresses taken from configuration file.
76
77 Pay attention that this command runs integrity check for each completely
78 received packet in the background. This can be time consuming.
79 Connection could be lost during that check and remote node won't be
80 notified that file is done. But after successful integrity check that
81 file is renamed from @file{.part} one and when you rerun
82 @command{nncp-call} again, remote node will receive completion
83 notification.
84
85 @node nncp-cfgmin
86 @section nncp-cfgmin
87
88 @verbatim
89 % nncp-cfgmin [options] > stripped.yaml
90 @end verbatim
91
92 Print out stripped configuration version: only path to @ref{Spool,
93 spool}, path to log file, neighbours public keys are stayed. This is
94 useful mainly for usage with @ref{nncp-xfer} that has to know only
95 neighbours, without private keys involving.
96
97 @node nncp-cfgnew
98 @section nncp-cfgnew
99
100 @verbatim
101 % nncp-cfgnew [options] > new.yaml
102 @end verbatim
103
104 Generate new node configuration: private keys, example configuration
105 file and print it to stdout. You must use this command when you setup
106 the new node.
107
108 Pay attention that private keys generation consumes an entropy from your
109 operating system.
110
111 @node nncp-check
112 @section nncp-check
113
114 @verbatim
115 % nncp-check [options]
116 @end verbatim
117
118 Perform @ref{Spool, spool} directory integrity check. Read all files
119 that has Base32-encoded filenames and compare it with recalculated
120 BLAKE2b hash output of their contents. That supplementary command is
121 not used often in practice, if ever.
122
123 @node nncp-daemon
124 @section nncp-daemon
125
126 @verbatim
127 % nncp-daemon [options] [-maxconn INT] [-bind ADDR]
128 @end verbatim
129
130 Start listening TCP daemon, wait for incoming connections and run
131 @ref{Sync, synchronization protocol} with each of them. You can run
132 @ref{nncp-toss} utility in background to process inbound packets from
133 time to time.
134
135 @option{-maxconn} option specifies how many simultaneous clients daemon
136 can handle. @option{-bind} option specifies @option{addr:port} it must
137 bind to and listen.
138
139 @node nncp-file
140 @section nncp-file
141
142 @verbatim
143 % nncp-file [options] [-chunked INT] SRC NODE:[DST]
144 @end verbatim
145
146 Send @file{SRC} file to remote @option{NODE}. @file{DST} specifies
147 destination file name in remote's @ref{CfgIncoming, incoming}
148 directory. If this file already exists there, then counter will be
149 appended to it.
150
151 This command queues file in @ref{Spool, spool} directory immediately
152 (through the temporary file of course) -- so pay attention that sending
153 2 GiB file will create 2 GiB outbound encrypted packet.
154
155 If @file{SRC} equals to @file{-}, then create an encrypted temporary
156 file and copy everything taken from stdin to it and use for outbound
157 packet creation. Pay attention that if you want to send 1 GiB of data
158 taken from stdin, then you have to have 2 GiB of disk space for that
159 temporary file and resulting encrypted packet. You can control where
160 temporary file will be stored using @env{TMPDIR} environment variable.
161 Encryption is performed with
162 @url{https://www.schneier.com/academic/twofish/, Twofish} algorithm, 256
163 bit random key, zero IV, in
164 @url{https://en.wikipedia.org/wiki/Counter_mode#Counter_.28CTR.29, CTR}
165 mode.
166
167 If @option{-chunked} is specified, then source file will be split
168 @ref{Chunked, on chunks}. @option{INT} is the desired chunk size in
169 KiBs. This mode is more CPU hungry. Pay attention that chunk is saved in
170 spool directory immediately and it is not deleted if any error occurs.
171 @option{-minsize} option is applied per each chunk.
172
173 If @ref{CfgNotify, notification} is enabled on the remote side for
174 file transmissions, then it will sent simple letter after successful
175 file receiving.
176
177 @node nncp-freq
178 @section nncp-freq
179
180 @verbatim
181 % nncp-freq [options] NODE:SRC DST
182 @end verbatim
183
184 Send file request to @option{NODE}, asking it to send its @file{SRC}
185 file from @ref{CfgFreq, freq} directory to our node under @file{DST}
186 filename in our @ref{CfgIncoming, incoming} one.
187
188 If @ref{CfgNotify, notification} is enabled on the remote side for
189 file request, then it will sent simple letter after successful file
190 queuing.
191
192 @node nncp-log
193 @section nncp-log
194
195 @verbatim
196 % nncp-log [options]
197 @end verbatim
198
199 Parse @ref{Log, log} file and print out its records in human-readable form.
200
201 @node nncp-mail
202 @section nncp-mail
203
204 @verbatim
205 % nncp-mail [options] NODE USER ...
206 @end verbatim
207
208 Send mail, that is read from stdin, to @option{NODE} and specified
209 @option{USER}s. Mail message will be compressed. After receiving, remote
210 side will execute specified @ref{CfgSendmail, sendmail} command with
211 @option{USER}s appended as a command line argument and feed decompressed
212 mail body to that command's stdin.
213
214 @node nncp-pkt
215 @section nncp-pkt
216
217 @verbatim
218 % nncp-pkt [options] < pkt
219 % nncp-pkt [options] [-decompress] -dump < pkt > payload
220 @end verbatim
221
222 Low level packet parser. Normally it should not be used, but can help in
223 debugging.
224
225 By default it will print packet's type, for example:
226 @verbatim
227 Packet type: encrypted
228 Niceness: 64
229 Sender: 2WHBV3TPZHDOZGUJEH563ZEK7M33J4UESRFO4PDKWD5KZNPROABQ
230 @end verbatim
231
232 If you specify @option{-dump} option and provide an @ref{Encrypted,
233 encrypted} packet, then it will verify and decrypt it to stdout.
234 Encrypted packets contain @ref{Plain, plain} ones, that also can be fed
235 to @command{nncp-pkt}:
236
237 @verbatim
238 Packet type: plain
239 Payload type: transitional
240 Path: VHMTRWDOXPLK7BR55ICZ5N32ZJUMRKZEMFNGGCEAXV66GG43PEBQ
241
242 Packet type: plain
243 Payload type: mail
244 Path: stargrave@stargrave.org
245 @end verbatim
246
247 And with the @option{-dump} option it will give you the actual payload
248 (the whole file, mail message, and so on). @option{-decompress} option
249 tries to zlib-decompress the data from plain packet (useful for mail
250 packets).
251
252 @node nncp-reass
253 @section nncp-reass
254
255 @verbatim
256 % nncp-reass [options] [-dryrun] [-keep] [-dump] [-stdout] FILE.nncp.meta
257 % nncp-reass [options] [-dryrun] [-keep] {-all | -node NODE}
258 @end verbatim
259
260 Reassemble @ref{Chunked, chunked file} after @ref{nncp-toss, tossing}.
261
262 When called with @option{FILE} option, this command will reassemble only
263 it. When called with @option{-node} option, this command will try to
264 reassemble all @file{.nncp.meta} files found in @option{NODE}'s
265 @ref{CfgIncoming, incoming} directory. When called with @option{-all}
266 option, then cycle through all known nodes to do the same.
267
268 Reassembling process does the following:
269
270 @enumerate
271 @item Parses @ref{Chunked, @file{.nncp.meta}} file.
272 @item Checks existence and size of every @file{.nncp.chunkXXX}.
273 @item Verifies integrity of every chunk.
274 @item Concatenates all chunks, simultaneously removing them from filesystem.
275 @end enumerate
276
277 That process reads the whole data twice. Be sure to have free disk
278 space for at least one chunk. Decrypted chunk files as a rule are saved
279 in pseudo-random order, so removing them during reassembly process will
280 likely lead to filesystem fragmentation. Reassembly process on
281 filesystems with deduplication capability should be rather lightweight.
282
283 If @option{-dryrun} option is specified, then only existence and
284 integrity checking are performed.
285
286 If @option{-keep} option is specified, then no
287 @file{.nncp.meta}/@file{.nncp.chunkXXX} files are deleted during
288 reassembly process.
289
290 @option{-stdout} option outputs reassembled file to stdout, instead of
291 saving to temporary file with renaming after. This could be useful for
292 reassembling on separate filesystem to lower fragmentation effect,
293 and/or separate storage device for higher performance.
294
295 @option{-dump} option prints meta-file contents in human-friendly form.
296 It is useful mainly for debugging purposes. For example:
297 @verbatim
298 Original filename: testfile
299 File size: 3.8 MiB (3987795 bytes)
300 Chunk size: 1.0 MiB (1048576 bytes)
301 Number of chunks: 4
302 Checksums:
303     0: eac60d819edf40b8ecdacd0b9a5a8c62de2d15eef3c8ca719eafa0be9b894017
304     1: 013a07e659f2e353d0e4339c3375c96c7fffaa2fa00875635f440bbc4631052a
305     2: f4f883975a663f2252328707a30e71b2678f933b2f3103db8475b03293e4316e
306     3: 0e9e229501bf0ca42d4aa07393d19406d40b179f3922a3986ef12b41019b45a3
307 @end verbatim
308
309 @node nncp-rm
310 @section nncp-rm
311
312 @verbatim
313 % nncp-rm [options] NODE PKT
314 @end verbatim
315
316 Remove specified packet (Base32 name) in @option{NODE}'s queues. This
317 command is useful when you want to remove the packet that is failing to
318 be processed.
319
320 @node nncp-stat
321 @section nncp-stat
322
323 @verbatim
324 % nncp-stat [options]
325 @end verbatim
326
327 Print current @ref{Spool, spool} statistics about unsent and unprocessed
328 packets. For each node and each niceness level there will be printed how
329 many packets (with the total size) are in inbound (Rx) and outbound (Tx)
330 queues.
331
332 @node nncp-toss
333 @section nncp-toss
334
335 @verbatim
336 % nncp-toss [options] [-dryrun] [-cycle INT]
337 @end verbatim
338
339 Perform "tossing" operation on all inbound packets. This is the tool
340 that decrypts all packets and processes all payload packets in them:
341 copies files, sends mails, sends out file requests and relays transition
342 packets. It should be run after each online/offline exchange.
343
344 @option{-dryrun} option does not perform any writing and sending, just
345 tells what it will do.
346
347 @option{-cycle} option tells not to quit, but to repeat tossing every
348 @option{INT} seconds in an infinite loop. That can be useful when
349 running this command as a daemon.
350
351 @node nncp-xfer
352 @section nncp-xfer
353
354 @verbatim
355 % nncp-xfer [options] [-mkdir] [-keep] [-rx|-tx] DIR
356 @end verbatim
357
358 Search for directory in @file{DIR} containing inbound packets for us and
359 move them to local @ref{Spool, spool} directory. Also search for known
360 neighbours directories and move locally queued outbound packets to them.
361 This command is used for offline packets transmission.
362
363 If @option{-mkdir} option is specified, then outbound neighbour(s)
364 directories will be created. This is useful for the first time usage,
365 when storage device does not have any directories tree.
366
367 If @option{-keep} option is specified, then keep copied files, do not
368 remove them.
369
370 @option{-rx} option tells only to move inbound packets addressed to us.
371 @option{-tx} option tells exactly the opposite: move only outbound packets.
372
373 @ref{nncp-cfgmin} could be useful for creating stripped minimalistic
374 configuration file version without any private keys.
375
376 @file{DIR} directory has the following structure:
377 @file{RECIPIENT/SENDER/PACKET}, where @file{RECIPIENT} is Base32 encoded
378 destination node, @file{SENDER} is Base32 encoded sender node.