chiark / gitweb /
lowvol fixes
[innduct.git] / doc / man / innduct.8
1 .TH INNDUCT 8
2 .SH NAME
3 innduct \- quickly and reliably stream Usenet articles to remote site
4 .SH SYNOPSIS
5 .B innduct
6 .RI [ options ]
7 .I site
8 .RI [ fqdn ]
9 .SH DESCRIPTION
10 .B innduct
11 implements NNTP peer-to-peer news transmission including the streaming
12 extensions, for sending news articles to a remote site.  It is
13 intended as a replacement for
14 .B innfeed
15 or
16 .BR nntpsend
17 and
18 .BR innxmit .
19
20 You need to run one instance of innduct for each peer site.  innduct
21 manages its interaction with
22 .BR innd ,
23 including flushing the feed as appropriate, etc., so that articles are
24 transmitted quickly, and manages the retransmission of its own
25 backlog.  innduct includes the locking necessary to avoid multiple
26 simutaneous invocations.
27
28 By default, innduct reads the default feedfile corresponding to
29 the site
30 .I site
31 (ie
32 .IR pathoutgoing / site )
33 and feeds it via NNTP, streaming if possible, to the host
34 .IR fqdn .
35 If
36 .I fqdn
37 is not specified, it defaults to
38 .IR site .
39
40 innduct daemonises after argument parsing, and all logging (including
41 error messages) are sent to syslog (facility
42 .BR news ).
43
44 The best way to run innduct is probably to periodically invoke it
45 for each feed (e.g. from cron), passing the
46 .B \-q
47 option to arrange that innduct silently exits if an instance is
48 already running for that site.
49 .SH GENERAL OPTIONS
50 .TP
51 .BR \-f | \-\-feedfile= \fIDIR\fR / |\fIPATH\fR
52 Specifies the
53 .I feedfile
54 to read, and indirectly specifies the paths to
55 be used for various associated files (see FILES, below).
56 If specified as
57 .IB DIR /
58 it is taken as a directory to use, and the actual feed file used is
59 .IR path / site .
60 If
61 .I PATH
62 or
63 .I DIR
64 does not start with a
65 .BR / ,
66 it is taken to be relative to
67 .IR pathoutgoing
68 from inn.conf.
69 The default is
70 .IR site .
71 .TP
72 .BR \-q | \-\-quiet-multiple
73 Makes innduct silently exit (with status 0) if another innduct holds
74 the lock for the site.  Without \fB-q\fR, this causes a fatal error to
75 be logged and a nonzero exit.
76 .TP
77 .BR \-\-no-daemon
78 Do not daemonise.  innduct runs in the foreground and all messages
79 (including all debug messages) are written to stderr rather than
80 syslog.  A control command line is also available on stdin/stdout.
81 .TP
82 .BI \-\-no-streaming
83 Do not try to use the streaming extensions to NNTP (for use eg if the
84 peer can't cope when we send MODE STREAM).
85 .TP
86 .BI \-\-no-filemon
87 Do not try to use the file change monitoring support to watch for
88 writes by innd to the feed file; poll it instead.  (If file monitoring
89 is not compiled in, this option just downgrades the log message which
90 warns about this situation.)
91 .TP
92 .BR \-C | \-\-inndconf= \fIFILE\fR
93 Read
94 .I FILE
95 instead of the default
96 .BR inn.conf .
97 .TP
98 .BI \-\-port= PORT
99 Connect to port
100 .I PORT
101 at the remote site rather than to the NNTP port (119).
102 .TP
103 .BI \-\-chdir= PATHRUN
104 Change directory to
105 .IR pathrun
106 at startup.  The default is
107 .I pathrun
108 from inn.conf.
109 .TP
110 .BR \-\-cli= \fICLI-DIR\fR / |\fICLI-PATH\fR| none
111 Listen for control command line connections on
112 .IB CLI-DIR / site
113 (if the value ends with a
114 .BR /)
115 or
116 .I CLI-PATH
117 (if it doesn't).  See CONTROLLING INNDUCT, below.
118 Note that there is a fairly short limit on the lengths of AF_UNIX
119 socket pathnames.  If specified as
120 .IR CLI-DIR \fB/\fR,
121 the directory will be created with mode 700 if necessary.
122 The default is
123 .B innduct/
124 which means to create that directory in
125 .I PATHRUN
126 and listen on
127 .RB \fIPATHRUN\fR /innduct/ \fIsite\fR.
128 .TP
129 .BI \-\-help
130 Just print a brief usage message and list of the options to stdout.
131 .LP
132 See TUNING OPTIONS below for more options.
133 .SH CONTROLLING INNDUCT
134 If you tell innd to drop the feed, innduct will (when it notices,
135 which will normally be the next time it decides to flush) finish up the
136 articles it has in hand now, and then exit.  It is harmless to cause
137 innd to flush the feed (but innduct won't notice and flushing won't
138 start a new feedfile; you have to leave that to innduct).
139 .LP
140 If you want to stop innduct you can send it SIGTERM or SIGINT, or the
141 .B stop
142 control command, in which case it will report statistics so far and
143 quickly exit.  If innduct receives SIGKILL nothing will be broken or
144 corrupted; you just won't see some of the article stats.
145 .LP
146 innduct listens on an AF_UNIX socket (by default,
147 .IR pathrun \fB/innduct/\fR site ),
148 and provides a command-line interface which can be used to trigger
149 various events and for debugging.  When a connection arrives, innduct
150 writes a prompt, reads commands a line at a time, and writes any
151 output back to the caller.  (Everything uses unix line endings.)  The
152 cli can most easily be accessed with a program like
153 .I netcat-openbsd
154 (eg
155 .B nc.openbsd -U
156 .RI \fB/var/run/news/innduct/\fR site )
157 or
158 .IR socat .
159 The prompt is
160 .IR site \fB|\fR.
161 .LP
162 The following control commands are supported:
163 .TP
164 .B h
165 Print a list of all the commands understood.  This list includes
166 undocumented commands which mess with innduct's internal state and
167 should only be used by a developer in conjuction with the innduct
168 source code.
169 .TP
170 .B flush
171 Start a new feed file and trigger a flush of the feed.  (Or, cause
172 the
173 .I FLUSH-FINISH-PERIOD
174 to expire early, forcibly completing a previously started flush.)
175 .TP
176 .B stop
177 Log statistics and exit.  (Same effect as SIGTERM or SIGINT.)
178 .TP
179 .BR "dump q" | a
180 Writes information about innduct's state to a plain text file
181 .IR feedfile \fB_dump\fR.
182 This overwrites any previous dump.  innduct does not ever delete these
183 dump files.
184 .B "dump q"
185 gives a summary including general state and a list of connections;
186 .B "dump a"
187 also includes information about each article innduct is dealing with.
188 .TP
189 .B next blscan
190 Requests that innduct rescan for new backlog files at the next
191 .I PERIOD
192 poll.  Normally innduct assumes that any backlog files dropped in by
193 the administrator are not urgent, and it may not get around to
194 noticing them for
195 .IR BACKLOG-SCAN-PERIOD .
196 .TP
197 .B next conn
198 Resets the connection startup delay counter so that innduct may
199 consider making a new connection to the peer right away, regardless
200 of the setting of
201 .IR RECONNECT-PERIOD .
202 A connection attempt will still only be made if innduct feels that it
203 needs one, and innduct may wait up to
204 .I PERIOD
205 before actually starting the attempt.
206 .SH TUNING OPTIONS
207 You should not normally need to adjust these.  Time intervals may
208 specified in seconds, or as a number followed by one of the following
209 units:
210 .BR "s m h d" ,
211 .BR "sec min hour day" ,
212 .BR "das hs ks Ms" .
213 .TP
214 .BI \-\-max-connections= max
215 Restricts the maximum number of simultaneous NNTP connections
216 per peer to
217 .IR max .
218 There is no global limit on the number of connections used by all
219 innducts, as the instances for different sites are entirely
220 independent.
221 The default is
222 .BR 10 .
223 .TP
224 .BI \-\-max-queue-per-conn= per-conn-max
225 Restricts the maximum number of outstanding articles queued on any
226 particular connection to
227 .IR max .
228 (Non-streaming connections can only handle one article at a time.)
229 The default is
230 .BR 200 .
231 .TP
232 .BI \-\-max-queue-per-file= max
233 Restricts the maximum number articles read into core from any one
234 input file to
235 .IR max .
236 The default is
237 .B twice
238 .IR per-conn-max .
239 .TP
240 .BI \-\-feedfile-flush-size= bytes
241 Specifies that innduct should flush the feed and start a new feedfile
242 when the existing feedfile size exceeds
243 .IR bytes ;
244 the effect is that the innduct will try to avoid the various
245 batchfiles growing much beyond this size.  The default is
246 .BR 100000 .
247 .TP
248 .BI \-\-period-interval= PERIOD-INTERVAL
249 Specifies wakup interval and period granularity.
250 innduct wakes up every
251 .I PERIOD-INTERVAL
252 to do various housekeeping checks.  Also, many of the timeout and
253 rescan intervals (those specified in this manual as
254 .IR PERIOD )
255 are rounded up to the next multiple of
256 .IR PERIOD-INTERVAL .
257 .TP
258 .BI \-\-connection-timeout= TIME
259 How long to allow for a connection setup attempt before giving up.
260 The default is
261 .BR 200s .
262 .TP
263 .BI \-\-stuck-flush-timeout= TIME
264 How long to wait for innd to respond to a flush request before giving
265 up.  The default is
266 .BR 100s .
267 .TP
268 .BI \-\-feedfile-poll= TIME
269 How often to poll the feedfile for new articles written by innd
270 if file monitoring
271 .RI ( inotify
272 or equivalent) is not available.  (When file monitoring is available,
273 there is no need for periodic checks and we wake immediately up
274 whenever the feedfile changes.)
275 The default is
276 .BR 5s .
277 .TP
278 .BI \-\-no-check-proportion= PERCENT
279 If the moving average of the proportion of articles being accepted
280 (rather than declined) by the peer exceeds this value, innduct uses
281 "no check mode" - ie it just sends the peer the articles with TAKETHIS
282 rather than checking first with CHECK whether the article is wanted.
283 This only affects streaming connections.  The default is
284 .B 95
285 (ie, 95%).
286 .TP
287 .BI \-\-no-check-response-time= ARTICLES
288 The moving average mentioned above is an alpha-smoothed value with a
289 half-life of
290 .IR ARTICLES .
291 The default is
292 .BR 100 .
293 .TP
294 .BI \-\-reconnect-interval= RECONNECT-PERIOD
295 Limits initiation of new connections to one each
296 .IR RECONNECT-PERIOD .
297 This applies to reconnections if the peer has been down, and also to
298 ramping up the number of connections we are using after startup or in
299 response to an article flood.  The default is
300 .BR 1000s .
301 .TP
302 .BI \-\-flush-retry-interval= PERIOD
303 If our attempt to flush the feed failed (usually this will be because
304 innd is not running), try again after
305 .IR PERIOD .
306 The default is
307 .BR 1000s .
308 .TP
309 .BI \-\-earliest-deferred-retry= PERIOD
310 When the peer responds to our offer of an article with a 431 or 436
311 NNTP response code, indicating that the article has already been
312 offered to it by another of its peers, and that we should try again,
313 we wait at least
314 .IR PERIOD .
315 before offering the article again.  The default is
316 .BR 100s .
317 .TP
318 .BI \-\-backlog-rescan-interval= BACKLOG-SCAN-PERIOD
319 We scan the directory containing
320 .I feedfile
321 for backlog files at least every
322 .IR BACKLOG-SCAN-PERIOD ,
323 in case the administrator has manually dropped in a file there for
324 processing.
325 The default is
326 .BR 300s .
327 .TP
328 .BI \-\-max-flush-interval= PERIOD
329 We flush the feed and start a new feedfile at least every
330 .IR PERIOD
331 even if the current instance of the feedfile has not reached the size
332 threshold.
333 The default is
334 .BR 100000s .
335 .TP
336 .BI \-\-flush-finish-timeout= FLUSH-FINISH-PERIOD
337 If we flushed
338 .IR FLUSH-FINISH-PERIOD
339 ago, and are still trying to finish processing articles that were
340 written to the old feed file, we forcibly and violently make sure that
341 we can finish the old feed file: we abandon and defer all the work,
342 which includes unceremoniously dropping any connections on which
343 we've sent some of those articles but not yet had replies, as they're
344 probably stuck somehow.  The default is
345 .BR 2000s .
346 .TP
347 .BI \-\-idle-timeout= PERIOD
348 Connections which have had no activity for
349 .IR PERIOD
350 will be closed.  This includes connections where we have sent commands
351 or articles but have not yet had the responses, so this same value
352 doubles as the timeout after which we conclude that the peer is
353 unresponsive or the connection has become broken.
354 The default is
355 .BR 1000s .
356 .TP
357 .BI \-\-low-volume-thresh= "WIN-THRESH " \-\-low-volume-window= "PERIOD "
358 If innduct has only one connection to the peer, and has processed
359 fewer than
360 .I WIN-THRESH
361 articles in the last
362 .I PERIOD
363 and also no articles in the last
364 .IR PERIOD-INTERVAL
365 it will close the connection quickly.  That is, innduct switches to a
366 mode where it opens a connection for each article (or, perhaps, each
367 handful of articles arriving together).
368 The default is to close if fewer than
369 .BR 3
370 articles in the last
371 .BR 1000s .
372 .TP
373 .BI \-\-max-bad-input-data-ratio= PERCENT
374 We tolerate up to this proportion of badly-formatted lines in the
375 feedfile and other input files.  Every badly-formatted line is logged,
376 but if there are too many we conclude that the corruption to our
377 on-disk data is too severe, and crash; to successfully restart,
378 administrator intervention will be required.  This avoids flooding the
379 logs with warnings and also arranges to abort earlyish if an attempt
380 is made to process a file in the wrong format.  We need to tolerate a
381 small proportion of broken lines, if for no other reason than that a
382 crash might leave a half-blanked-out entry.  The default is
383 .BR 1
384 (ie, 1%).
385 .TP
386 .BI \-\-max-bad-input-data-init= LINES
387 Additionally, we tolerate this number of additional badly-formatted
388 lines, so that if the badly-formatted lines are a few but at the start
389 of the file, we don't crash immediately.
390 The default is
391 .BR 30
392 (which would suffice to ignore one whole corrupt 4096-byte disk block
393 filled with random data, or one corrupt 1024-byte disk block filled
394 with an inappropriate text file with a mean line length of at least
395 35).
396 .SH INNDUCT VS INNFEED/NNTPSEND/INNXMIT
397 .TP
398 .B innfeed
399 does roughly the same thing as innduct.  However, the way it receives
400 information from innd can result in articles being lost (not offered
401 to peers) if innfeed crashes for any reason.  This is an inherent
402 defect in the innd channel feed protocol.  innduct uses a file feed,
403 constantly "tailing" the feed file, and where implemented uses
404 .BR inotify (2)
405 to reduce the latency which would come from having to constantly poll
406 the feed file.  innduct is much smaller and simpler, at <4kloc to
407 innfeed's 25kloc.  innfeed needs a separate helper script or similar
408 infrastructure (of which there is an example in its manpage), whereas
409 innduct can be run directly and doesn't need help from shell scripts.
410 However, innfeed is capable of feeding multiple peers from a single
411 innfeed instance, whereas each innduct process handles exactly one
412 peer.
413 .TP
414 .B nntpsend
415 processes feed files in batch mode.  That is, you have to periodically
416 invoke nntpsend, and when you do, the feed is flushed and articles
417 which arrived before the flush are sent to the peer.  This introduces
418 a batching delay, and also means that the NNTP connection to the peer
419 needs to be remade at each batch.  nntpsend (which uses innxmit)
420 cannot make use of multiple connections to a single peer site.
421 However, nntpsend automatically find which sites need feeding by
422 looking in
423 .IR pathoutgoing ,
424 whereas the administrator needs to arrange to invoke innduct
425 separately for each peer.
426 .TP
427 .B innxmit
428 is the actual NNTP feeder program used by nntpsend.
429 .SH EXIT STATUS
430 .TP
431 .B 0
432 An instance of innduct is already running for this
433 .I feedfile
434 and
435 .B -q
436 was specified.
437 .TP
438 .B 4
439 The feed has been dropped by innd, and we (or previous innducts) have
440 successfully offered all the old articles to the peer site.  Our work
441 is done.
442 .TP
443 .B 8
444 innduct was invoked with bad options or command line arguments.  The
445 error message will be printed to stderr, and also (if any options or
446 arguments were passed at all) to syslog with severity
447 .BR crit .
448 .TP
449 .B 12
450 Things are going wrong, hopefully shortage of memory, system file
451 table entries; disk IO problems; disk full; etc.  The specifics of the
452 error will be logged to syslog with severity
453 .B err
454 (if syslog is working!)
455 .TP
456 .B 16
457 Things are going badly wrong in an unexpected way: system calls which
458 are not expected to fail are doing so, or the protocol for
459 communicating with innd is being violated, or some such.  Details will
460 be logged with severity
461 .B crit
462 (if syslog is working!)
463 .TP
464 .BR 24 - 27
465 These exit statuses are used by children forked by innduct to
466 communicate to the parent.  You should not see them.  If you do, it is
467 a bug.
468 .SH FILES
469 innduct dances a somewhat complicated dance with innd to make sure
470 that everything goes smoothly and that there are no races.  (See the
471 two ascii-art diagrams in innduct.c for details of the protocol.)  Do
472 not mess with the feedfile and other associated files, other than as
473 explained here:
474 .IX Header "FILES"
475 .IP \fIpathrun\fR
476 .IX Item "default directory"
477 Default current working directory for innduct, and also default
478 grandparent directory for the command line socket.
479 .IP \fIpathoutgoing\fR/\fIsite\fR
480 .IX Item "default feedfile"
481 Default
482 .IR feedfile .
483 .IP \fIfeedfile\fR
484 .IX Item feedfile
485 Main feed file as specified in
486 .IR newsfeeds (5).
487 This and other batchfiles used by innduct contains lines each of which
488 is of the form
489 \&    \fItoken\fR \fImessageid\fR
490 where \fItoken\fR is the inn storage API token.  Such lines can be
491 written by \fBTf,Wnm\fR in a \fInewsfeeds\fR(5) entry.  During
492 processing, innduct overwrites lines in the batch files which
493 correspond to articles it has processed: each such line is replaced
494 with one containing only spaces.  Only innd should create
495 .IR feedfile ,
496 and only innduct should remove it.
497 .IP \fIfeedfile\fR_lock
498 .IX Item "lock file"
499 Lockfile, preventing multiple innduct invocations for the same
500 feed.  A process holds this lock after it has opened the lockfile,
501 made an fcntl F_SETLK call, and then checked with stat and fstat that
502 the file it now has open and has locked still has the name
503 \fIfeedfile\fR_lock.  (Only) the lockholder may delete the lockfile.
504 For your convenience, after the lockfile is locked,
505 .IR innfeed 's
506 pid, the
507 .IR site ,
508 .IR feedfile
509 and
510 .IR fqdn
511 are all written to the lockfile.  NB that stale lockfiles may contain
512 stale data so this information should not be relied on other than for
513 troubleshooting.
514 .IP \fIfeedfile\fR_flushing
515 .IX Item "flushing file"
516 Batch file: the main feedfile is renamed to this filename by innduct
517 before it asks inn to flush the feed.  Only innduct should create,
518 modify or remove this file.
519 .IP \fIfeedfile\fR_defer
520 .IX Item "flushing file"
521 Batch file containing details of articles whose transmission has very
522 recently been deferred at the request of the recipient site.  Created,
523 written, read and removed (only) by innduct.
524 .IP \fIfeedfile\fR_backlog.\fItime_t\fR.\fIinum\fR
525 .IX Item "backlog file"
526 Batch file containing details of articles whose transmission has less
527 recently been deferred at the request of the recipient site.  Created
528 by innduct, and will also be read, updated and removed by innduct.
529 However you (the administrator) may also safely remove backlog files.
530 .IP \fIfeedfile\fR_backlog\fIsomething\fR
531 .IX Item "manual backlog file"
532 Batch file manually provided by the administrator.  The file should be
533 complete and ready to process at the time it is renamed or hardlinked
534 to this name.  innduct will then automatically find and read and
535 process it (including blanking out entries for processed articles) and
536 eventually remove it.  \fIsomething\fR may not contain \fB#\fR \fB~\fR
537 or \fB/\fR.
538 .IP
539 Be sure to have finished writing the file before you rename it to
540 match the pattern \fIfeedfile\fR\fB_backlog\fR*, as otherwise innduct
541 may find and process the file, and even think it has finished it,
542 before you have written the complete file.  You may also safely remove
543 backlog files.
544 .IP \fIpathrun\fR\fB/innduct/\fB\fIsite\fR
545 .IX Item "control command line socket"
546 Default AF_UNIX listening socket for the control command line.  See
547 CONTROLLING INNDUCT, above.
548 .IP \fIfeedfile\fR_dump
549 .IX Item "debug dump file"
550 On request via a control connection innduct dumps a summary of its
551 state to this text file.  This is mostly useful for debugging.
552 .IP /etc/news/inn.conf
553 .IX Item inn.conf
554 Used for
555 .IR pathoutgoing
556 (to compute default
557 .IR feedfile
558 and associated paths),
559 .IR pathrun
560 (to compute default
561 .IR PATHRUN
562 and hence effective default
563 .IR CLI-DIR
564 and
565 .IR CLI-PATH ),
566 for finding how to communicate with innd, and also for
567 .IR sourceaddress
568 and/or
569 .IR sourceaddress6 .
570 .SH HISTORY
571 Written by Ian Jackson <ijackson@chiark.greenend.org.uk>
572 .SH "SEE ALSO"
573 inn.conf(5),
574 innd(8),
575 newsfeeds(5)