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