chiark / gitweb /
ab992673ca150f5e5bdee9d0dfaa1a8c4e8b2c1d
[inn-innduct.git] / backends / innduct.c
1 /*
2  *  innduct
3  *  tailing reliable realtime streaming feeder for inn
4  *
5  *  Copyright (C) 2010 Ian Jackson <ijackson@chiark.greenend.org.uk>
6  * 
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  * 
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  *  (I believe that when you compile and link this as part of the inn2
21  *  build, with the Makefile runes I have provided, all the libraries
22  *  and files which end up included in innduct are licence-compatible
23  *  with GPLv3.  If not then please let me know.  -Ian Jackson.)
24  */
25
26 /*
27  * Newsfeeds file entries should look like this:
28  *     host.name.of.site[/exclude,exclude,...]\
29  *             :pattern,pattern...[/distribution,distribution...]\
30  *             :Tf,Wnm
31  *             :
32  * or
33  *     sitename[/exclude,exclude,...]\
34  *             :pattern,pattern...[/distribution,distribution...]\
35  *             :Tf,Wnm
36  *             :host.name.of.site
37  *
38  * Four files full of
39  *    token messageid
40  * or might be blanked out
41  *    <spc><spc><spc><spc>....
42  *
43  * F site.name                 main feed file
44  *                                opened/created, then written, by innd
45  *                                read by duct
46  *                                unlinked by duct
47  *                                tokens blanked out by duct when processed
48  *   site.name_lock            lock preventing multiple ducts
49  *                                to hold lock must open,F_SETLK[W]
50  *                                  and then stat to check that locked file
51  *                                  still has name site.name_lock
52  *                                holder of this lock is "duct"
53  *                                (only) lockholder may remove the lockfile
54  * D site.name_flushing        temporary feed file during flush (or crash)
55  *                                hardlink created by duct
56  *                                unlinked by duct
57  *   site.name_defer           431'd articles, still being written,
58  *                                created, written, used by duct
59  *
60  *   site.name_backlog.<date>.<inum>
61  *                             431'd articles, ready for innxmit or duct
62  *                                created (link/mv) by duct
63  *   site.name_backlog<anything-else>  (where <anything-else> does not
64  *                                      contain '#' or '~') eg
65  *   site.name_backlog.manual
66  *                             anything the sysadmin likes (eg, feed files
67  *                             from old feeds to be merged into this one)
68  *                                created (link/mv) by admin
69  *                                may be symlinks (in which case links
70  *                                may be written through, but only links
71  *                                will be removed.
72  *
73  *                             It is safe to remove backlog files manually,
74  *                             if it's desired to throw away the backlog.
75  *
76  * Backlog files are also processed by innduct.  We find the oldest
77  * backlog file which is at least a certain amount old, and feed it
78  * back into our processing.  When every article in it has been read
79  * and processed, we unlink it and look for another backlog file.
80  *
81  * If we don't have a backlog file that we're reading, we close the
82  * defer file that we're writing and make it into a backlog file at
83  * the first convenient opportunity.
84  * -8<-
85
86
87    OVERALL STATES:
88
89                                                                 START
90                                                                   |
91      ,-->--.                                                 check F, D
92      |     |                                                      |
93      |     |                                                      |
94      |     |  <----------------<---------------------------------'|
95      |     |                                       F exists       |
96      |     |                                       D ENOENT       |
97      |     |  duct opens F                                        |
98      |     V                                                      |
99      |  Normal                                                    |
100      |   F: innd writing, duct reading                            |
101      |   D: ENOENT                                                |
102      |     |                                                      |
103      |     |  duct decides time to flush                          |
104      |     |  duct makes hardlink                                 |
105      |     |                                                      |
106      |     V                            <------------------------'|
107      |  Hardlinked                                  F==D          |
108      |   F == D: innd writing, duct reading         both exist    |
109      ^     |                                                      |
110      |     |  duct unlinks F                                      |
111      |     |                        <-----------<-------------<--'|
112      |     |                           open D         F ENOENT    |
113      |     |                           if exists                  |
114      |     |                                                      |
115      |     V                        <---------------------.       |
116      |  Moved                                             |       |
117      |   F: ENOENT                                        |       |
118      |   D: innd writing, duct reading; or ENOENT         |       |
119      |     |                                              |       |
120      |     |  duct requests flush of feed                 |       |
121      |     |   (others can too, harmlessly)               |       |
122      |     V                                              |       |
123      |  Flushing                                          |       |
124      |   F: ENOENT                                        |       |
125      |   D: innd flushing, duct; or ENOENT                |       |
126      |     |                                              |       |
127      |     |   inndcomm flush fails                       |       |
128      |     |`-------------------------->------------------'       |
129      |     |                                                      |
130      |     |   inndcomm reports no such site                      |
131      |     |`---------------------------------------------------- | -.
132      |     |                                                      |  |
133      |     |  innd finishes writing D, creates F                  |  |
134      |     |  inndcomm reports flush successful                   |  |
135      |     |                                                      |  |
136      |     V                                                      |  |
137      |  Separated                                <----------------'  |
138      |   F: innd writing                            F!=D             /
139      |   D: duct reading; or ENOENT                  both exist     /
140      |     |                                                       /
141      |     |  duct gets to the end of D                           /
142      |     |  duct opens F too                                   /
143      |     V                                                    /
144      |  Finishing                                              /
145      |   F: innd writing, duct reading                        |
146      |   D: duct finishing                                    V
147      |     |                                            Dropping
148      |     |  duct finishes processing D                 F: ENOENT
149      |     V  duct unlinks D                             D: duct reading
150      |     |                                                  |
151      `--<--'                                                  | duct finishes
152                                                               |  processing D
153                                                               | duct unlinks D
154                                                               | duct exits
155                                                               V
156                                                         Dropped
157                                                          F: ENOENT
158                                                          D: ENOENT
159                                                          duct not running
160
161    "duct reading" means innduct is reading the file but also
162    overwriting processed tokens.
163
164  * ->8- -^L-
165  *
166  * rune for printing diagrams:
167
168 perl -ne 'print if m/-8\<-/..m/-\>8-/; print "\f" if m/-\^L-/' backends/innduct.c |a2ps -R -B -ops
169
170  *
171  */
172
173 /*============================== PROGRAM ==============================*/
174
175 #define _GNU_SOURCE 1
176
177 #include "config.h"
178 #include "storage.h"
179 #include "nntp.h"
180 #include "libinn.h"
181 #include "inndcomm.h"
182
183 #include "inn/list.h"
184 #include "inn/innconf.h"
185
186 #include <sys/uio.h>
187 #include <sys/types.h>
188 #include <sys/wait.h>
189 #include <sys/stat.h>
190 #include <sys/socket.h>
191 #include <sys/un.h>
192 #include <unistd.h>
193 #include <string.h>
194 #include <signal.h>
195 #include <stdio.h>
196 #include <errno.h>
197 #include <syslog.h>
198 #include <fcntl.h>
199 #include <stdarg.h>
200 #include <assert.h>
201 #include <stdlib.h>
202 #include <stddef.h>
203 #include <glob.h>
204 #include <time.h>
205 #include <math.h>
206 #include <ctype.h>
207
208 #include <oop.h>
209 #include <oop-read.h>
210
211 /*----- general definitions, probably best not changed -----*/
212
213 #define CONNCHILD_ESTATUS_STREAM   24
214 #define CONNCHILD_ESTATUS_NOSTREAM 25
215
216 #define INNDCOMMCHILD_ESTATUS_FAIL     26
217 #define INNDCOMMCHILD_ESTATUS_NONESUCH 27
218
219 #define MAX_LINE_FEEDFILE (NNTP_MSGID_MAXLEN + sizeof(TOKEN)*2 + 10)
220 #define MAX_CLI_COMMAND 1000
221
222 #define VA                va_list al;  va_start(al,fmt)
223 #define PRINTF(f,a)       __attribute__((__format__(printf,f,a)))
224 #define NORET_PRINTF(f,a) __attribute__((__noreturn__,__format__(printf,f,a)))
225 #define NORET             __attribute__((__noreturn__))
226
227 #define NEW(ptr)              ((ptr)= zxmalloc(sizeof(*(ptr))))
228 #define NEW_DECL(type,ptr) type ptr = zxmalloc(sizeof(*(ptr)))
229
230 #define DUMPV(fmt,pfx,v) fprintf(f, " " #v "=" fmt, pfx v);
231
232 #define FOR_CONN(conn) \
233   for ((conn)=LIST_HEAD(conns); (conn); (conn)=LIST_NEXT((conn)))
234
235 /*----- doubly linked lists -----*/
236
237 #define ISNODE(T)   struct node list_node
238 #define DEFLIST(T)                              \
239    typedef struct {                             \
240      union { struct list li; T *for_type; } u;  \
241      int count;                                 \
242    } T##List
243
244 #define NODE(n) (assert((void*)&(n)->list_node == (n)), &(n)->list_node)
245
246 #define LIST_CHECKCANHAVENODE(l,n) \
247   ((void)((n) == ((l).u.for_type))) /* just for the type check */
248
249 #define LIST_ADDSOMEHOW(l,n,list_addsomehow)    \
250  ( LIST_CHECKCANHAVENODE(l,n),                  \
251    list_addsomehow(&(l).u.li, NODE((n))),       \
252    (void)(l).count++                            \
253    )
254
255 #define LIST_REMSOMEHOW(l,list_remsomehow)      \
256  ( (typeof((l).u.for_type))                     \
257    ( (l).count                                  \
258      ? ( (l).count--,                           \
259          list_remsomehow(&(l).u.li) )           \
260      : 0                                        \
261      )                                          \
262    )
263
264
265 #define LIST_ADDHEAD(l,n) LIST_ADDSOMEHOW((l),(n),list_addhead)
266 #define LIST_ADDTAIL(l,n) LIST_ADDSOMEHOW((l),(n),list_addtail)
267 #define LIST_REMHEAD(l) LIST_REMSOMEHOW((l),list_remhead)
268 #define LIST_REMTAIL(l) LIST_REMSOMEHOW((l),list_remtail)
269
270 #define LIST_INIT(l) ((l).count=0, list_new(&(l).u.li))
271 #define LIST_HEAD(l) ((typeof((l).u.for_type))(list_head((struct list*)&(l))))
272 #define LIST_NEXT(n) ((typeof(n))list_succ(NODE((n))))
273 #define LIST_BACK(n) ((typeof(n))list_pred(NODE((n))))
274
275 #define LIST_REMOVE(l,n)                        \
276  ( LIST_CHECKCANHAVENODE(l,n),                  \
277    list_remove(NODE((n))),                      \
278    (void)(l).count--                            \
279    )
280
281 #define LIST_INSERT(l,n,pred)                                   \
282  ( LIST_CHECKCANHAVENODE(l,n),                                  \
283    LIST_CHECKCANHAVENODE(l,pred),                               \
284    list_insert((struct list*)&(l), NODE((n)), NODE((pred))),    \
285    (void)(l).count++                                            \
286    )
287
288 /*----- type predeclarations -----*/
289
290 typedef struct Conn Conn;
291 typedef struct Article Article;
292 typedef struct InputFile InputFile;
293 typedef struct XmitDetails XmitDetails;
294 typedef struct Filemon_Perfile Filemon_Perfile;
295 typedef enum StateMachineState StateMachineState;
296 typedef struct CliCommand CliCommand;
297
298 DEFLIST(Conn);
299 DEFLIST(Article);
300
301 /*----- function predeclarations -----*/
302
303 static void conn_maybe_write(Conn *conn);
304 static void conn_make_some_xmits(Conn *conn);
305 static void *conn_write_some_xmits(Conn *conn);
306
307 static void xmit_free(XmitDetails *d);
308
309 #define SMS(newstate, periods, why) \
310    (statemc_setstate(sm_##newstate,(periods),#newstate,(why)))
311 static void statemc_setstate(StateMachineState newsms, int periods,
312                              const char *forlog, const char *why);
313
314 static void statemc_start_flush(const char *why); /* Normal => Flushing */
315 static void spawn_inndcomm_flush(const char *why); /* Moved => Flushing */
316 static int trigger_flush_ok(const char *why /* 0 means timeout */);
317                                   /* => Flushing,FLUSHING, ret 1; or ret 0 */
318
319 static void article_done(Article *art, int whichcount);
320
321 static void check_assign_articles(void);
322 static void queue_check_input_done(void);
323 static void check_reading_pause_resume(InputFile *ipf);
324
325 static void statemc_check_flushing_done(void);
326 static void statemc_check_backlog_done(void);
327
328 static void postfork(void);
329 static void period(void);
330
331 static void open_defer(void);
332 static void close_defer(void);
333 static void search_backlog_file(void);
334 static void preterminate(void);
335 static void raise_default(int signo) NORET;
336 static char *debug_report_ipf(InputFile *ipf);
337
338 static void inputfile_reading_start(InputFile *ipf);
339 static void inputfile_reading_stop(InputFile *ipf);
340 static void inputfile_reading_pause(InputFile *ipf);
341 static void inputfile_reading_resume(InputFile *ipf);
342   /* pause and resume are idempotent, and no-op if not done _reading_start */
343
344 static void filemon_start(InputFile *ipf);
345 static void filemon_stop(InputFile *ipf);
346 static void tailing_make_readable(InputFile *ipf);
347
348 static void vconnfail(Conn *conn, const char *fmt, va_list al) PRINTF(2,0);
349 static void connfail(Conn *conn, const char *fmt, ...)         PRINTF(2,3);
350
351 static const oop_rd_style peer_rd_style;
352 static oop_rd_call peer_rd_err, peer_rd_ok;
353
354
355 /*----- configuration options -----*/
356 /* when changing defaults, remember to update the manpage */
357
358 static const char *sitename, *remote_host;
359 static const char *feedfile, *path_run, *path_cli, *path_cli_dir;
360 static int quiet_multiple=0;
361 static int become_daemon=1, try_filemon=1;
362 static int try_stream=1;
363 static int port=119;
364 static const char *inndconffile;
365
366 static int max_connections=10;
367 static int max_queue_per_conn=200;
368 static int target_max_feedfile_size=100000;
369 static int period_seconds=60;
370 static int filepoll_seconds=5;
371 static int max_queue_per_ipf=-1;
372
373 static int connection_setup_timeout=200;
374 static int inndcomm_flush_timeout=100;
375
376 static double nocheck_thresh= 95.0; /* converted from percentage by main */
377 static double nocheck_decay= 100; /* conv'd from articles to lambda by main */
378
379 /* all these are initialised to seconds, and converted to periods in main */
380 static int reconnect_delay_periods=1000;
381 static int flushfail_retry_periods=1000;
382 static int backlog_retry_minperiods=100;
383 static int backlog_spontrescan_periods=300;
384 static int spontaneous_flush_periods=100000;
385 static int max_separated_periods=2000;
386 static int need_activity_periods=1000;
387
388 static double max_bad_data_ratio= 1; /* conv'd from percentage by main */
389 static int max_bad_data_initial= 30;
390   /* in one corrupt 4096-byte block the number of newlines has
391    * mean 16 and standard deviation 3.99.  30 corresponds to z=+3.5 */
392
393
394 /*----- statistics -----*/
395
396 typedef enum {      /* in queue                 in conn->sent             */
397   art_Unchecked,    /*   not checked, not sent    checking                */
398   art_Wanted,       /*   checked, wanted          sent body as requested  */
399   art_Unsolicited,  /*   -                        sent body without check */
400   art_MaxState,
401 } ArtState;
402
403 static const char *const artstate_names[]=
404   { "Unchecked", "Wanted", "Unsolicited", 0 };
405
406 #define RESULT_COUNTS(RCS,RCN)                  \
407   RCS(sent)                                     \
408   RCS(accepted)                                 \
409   RCN(unwanted)                                 \
410   RCN(rejected)                                 \
411   RCN(deferred)                                 \
412   RCN(missing)                                  \
413   RCN(connretry)
414
415 #define RCI_TRIPLE_FMT_BASE "%d (id=%d,bod=%d,nc=%d)"
416 #define RCI_TRIPLE_VALS_BASE(counts,x)          \
417        counts[art_Unchecked] x                  \
418        + counts[art_Wanted] x                   \
419        + counts[art_Unsolicited] x,             \
420        counts[art_Unchecked] x                  \
421        , counts[art_Wanted] x                   \
422        , counts[art_Unsolicited] x
423
424 typedef enum {
425 #define RC_INDEX(x) RC_##x,
426   RESULT_COUNTS(RC_INDEX, RC_INDEX)
427   RCI_max
428 } ResultCountIndex;
429
430
431 /*----- transmission buffers -----*/
432
433 #define CONNIOVS 128
434
435 typedef enum {
436   xk_Const, xk_Artdata
437 } XmitKind;
438
439 struct XmitDetails {
440   XmitKind kind;
441   union {
442     ARTHANDLE *sm_art;
443   } info;
444 };
445
446
447 /*----- core operational data structure types -----*/
448
449 struct InputFile {
450   /* This is also an instance of struct oop_readable */
451   struct oop_readable readable; /* first */
452   oop_readable_call *readable_callback;
453   void *readable_callback_user;
454
455   int fd;
456   Filemon_Perfile *filemon;
457
458   oop_read *rd; /* non-0: reading; 0: constructing, or had EOF */
459   off_t offset;
460   int skippinglong, paused, fake_readable;
461
462   ArticleList queue;
463   long inprogress; /* includes queue.count and also articles in conns */
464   long autodefer; /* -1 means not doing autodefer */
465
466   int counts[art_MaxState][RCI_max];
467   int readcount_ok, readcount_blank, readcount_err, count_nooffer_missing;
468   char path[];
469 };
470
471 struct Article {
472   ISNODE(Article);
473   ArtState state;
474   int midlen, missing;
475   InputFile *ipf;
476   TOKEN token;
477   off_t offset;
478   int blanklen;
479   char messageid[1];
480 };
481
482 #define SMS_LIST(X)                             \
483   X(NORMAL)                                     \
484   X(FLUSHING)                                   \
485   X(FLUSHFAILED)                                \
486   X(SEPARATED)                                  \
487   X(DROPPING)                                   \
488   X(DROPPED)
489
490 enum StateMachineState {
491 #define SMS_DEF_ENUM(s) sm_##s,
492   SMS_LIST(SMS_DEF_ENUM)
493 };
494
495 static const char *sms_names[]= {
496 #define SMS_DEF_NAME(s) #s ,
497   SMS_LIST(SMS_DEF_NAME)
498   0
499 };
500
501 struct Conn {
502   ISNODE(Conn);
503   int fd; /* may be 0, meaning closed (during construction/destruction) */
504   oop_read *rd; /* likewise */
505   int max_queue, stream, quitting;
506   int since_activity; /* periods */
507   ArticleList waiting; /* not yet told peer */
508   ArticleList priority; /* peer says send it now */
509   ArticleList sent; /* offered/transmitted - in xmit or waiting reply */
510   struct iovec xmit[CONNIOVS];
511   XmitDetails xmitd[CONNIOVS];
512   int xmitu;
513 };
514
515
516 /*----- general operational variables -----*/
517
518 /* main initialises */
519 static oop_source *loop;
520 static ConnList conns;
521 static char *path_lock, *path_flushing, *path_defer, *path_dump;
522 static char *globpat_backlog;
523 static pid_t self_pid;
524
525 /* statemc_init initialises */
526 static StateMachineState sms;
527 static int until_flush;
528 static InputFile *main_input_file, *flushing_input_file, *backlog_input_file;
529 static FILE *defer;
530
531 /* initialisation to 0 is good */
532 static int until_connect, until_backlog_nextscan;
533 static double accept_proportion;
534 static int nocheck, nocheck_reported, in_child;
535
536 /* for simulation, debugging, etc. */
537 int simulate_flush= -1;
538
539 /*========== logging ==========*/
540
541 static void logcore(int sysloglevel, const char *fmt, ...) PRINTF(2,3);
542 static void logcore(int sysloglevel, const char *fmt, ...) {
543   VA;
544   if (become_daemon) {
545     vsyslog(sysloglevel,fmt,al);
546   } else {
547     if (self_pid) fprintf(stderr,"[%lu] ",(unsigned long)self_pid);
548     vfprintf(stderr,fmt,al);
549     putc('\n',stderr);
550   }
551   va_end(al);
552 }
553
554 static void logv(int sysloglevel, const char *pfx, int errnoval,
555                  const char *fmt, va_list al) PRINTF(5,0);
556 static void logv(int sysloglevel, const char *pfx, int errnoval,
557                  const char *fmt, va_list al) {
558   char msgbuf[1024]; /* NB do not call xvasprintf here or you'll recurse */
559   vsnprintf(msgbuf,sizeof(msgbuf), fmt,al);
560   msgbuf[sizeof(msgbuf)-1]= 0;
561
562   if (sysloglevel >= LOG_ERR && (errnoval==EACCES || errnoval==EPERM))
563     sysloglevel= LOG_ERR; /* run by wrong user, probably */
564
565   logcore(sysloglevel, "<%s>%s: %s%s%s",
566          sitename, pfx, msgbuf,
567          errnoval>=0 ? ": " : "",
568          errnoval>=0 ? strerror(errnoval) : "");
569 }
570
571 #define diewrap(fn, pfx, sysloglevel, err, estatus)             \
572   static void fn(const char *fmt, ...) NORET_PRINTF(1,2);       \
573   static void fn(const char *fmt, ...) {                        \
574     preterminate();                                             \
575     VA;                                                         \
576     logv(sysloglevel, pfx, err, fmt, al);                       \
577     exit(estatus);                                              \
578   }
579
580 #define logwrap(fn, pfx, sysloglevel, err)              \
581   static void fn(const char *fmt, ...) PRINTF(1,2);     \
582   static void fn(const char *fmt, ...) {                \
583     VA;                                                 \
584     logv(sysloglevel, pfx, err, fmt, al);               \
585     va_end(al);                                         \
586   }
587
588 diewrap(sysdie,   " critical", LOG_CRIT,    errno, 16);
589 diewrap(die,      " critical", LOG_CRIT,    -1,    16);
590
591 diewrap(sysfatal, " fatal",    LOG_ERR,     errno, 12);
592 diewrap(fatal,    " fatal",    LOG_ERR,     -1,    12);
593
594 logwrap(syswarn,  " warning",  LOG_WARNING, errno);
595 logwrap(warn,     " warning",  LOG_WARNING, -1);
596
597 logwrap(notice,   " notice",   LOG_NOTICE,  -1);
598 logwrap(info,     " info",     LOG_INFO,    -1);
599 logwrap(debug,    " debug",    LOG_DEBUG,   -1);
600
601
602 /*========== utility functions etc. ==========*/
603
604 static char *xvasprintf(const char *fmt, va_list al) PRINTF(1,0);
605 static char *xvasprintf(const char *fmt, va_list al) {
606   char *str;
607   int rc= vasprintf(&str,fmt,al);
608   if (rc<0) sysdie("vasprintf(\"%s\",...) failed", fmt);
609   return str;
610 }
611 static char *xasprintf(const char *fmt, ...) PRINTF(1,2);
612 static char *xasprintf(const char *fmt, ...) {
613   VA;
614   char *str= xvasprintf(fmt,al);
615   va_end(al);
616   return str;
617 }
618
619 static int close_perhaps(int *fd) {
620   if (*fd <= 0) return 0;
621   int r= close(*fd);
622   *fd=0;
623   return r;
624 }
625 static void xclose(int fd, const char *what, const char *what2) {
626   int r= close(fd);
627   if (r) sysdie("close %s%s",what,what2?what2:"");
628 }
629 static void xclose_perhaps(int *fd, const char *what, const char *what2) {
630   if (*fd <= 0) return;
631   xclose(*fd,what,what2);
632   *fd=0;
633 }
634
635 static pid_t xfork(const char *what) {
636   pid_t child;
637
638   child= fork();
639   if (child==-1) sysfatal("cannot fork for %s",what);
640   debug("forked %s %ld", what, (unsigned long)child);
641   if (!child) postfork();
642   return child;
643 }
644
645 static void on_fd_read_except(int fd, oop_call_fd callback) {
646   loop->on_fd(loop, fd, OOP_READ,      callback, 0);
647   loop->on_fd(loop, fd, OOP_EXCEPTION, callback, 0);
648 }
649 static void cancel_fd_read_except(int fd) {
650   loop->cancel_fd(loop, fd, OOP_READ);
651   loop->cancel_fd(loop, fd, OOP_EXCEPTION);
652 }
653
654 static void report_child_status(const char *what, int status) {
655   if (WIFEXITED(status)) {
656     int es= WEXITSTATUS(status);
657     if (es)
658       warn("%s: child died with error exit status %d", what, es);
659   } else if (WIFSIGNALED(status)) {
660     int sig= WTERMSIG(status);
661     const char *sigstr= strsignal(sig);
662     const char *coredump= WCOREDUMP(status) ? " (core dumped)" : "";
663     if (sigstr)
664       warn("%s: child died due to fatal signal %s%s", what, sigstr, coredump);
665     else
666       warn("%s: child died due to unknown fatal signal %d%s",
667            what, sig, coredump);
668   } else {
669     warn("%s: child died with unknown wait status %d", what,status);
670   }
671 }
672
673 static int xwaitpid(pid_t *pid, const char *what) {
674   int status;
675
676   int r= kill(*pid, SIGKILL);
677   if (r) sysdie("cannot kill %s child", what);
678
679   pid_t got= waitpid(*pid, &status, 0);
680   if (got==-1) sysdie("cannot reap %s child", what);
681   if (got==0) die("cannot reap %s child", what);
682
683   *pid= 0;
684
685   return status;
686 }
687
688 static void *zxmalloc(size_t sz) {
689   void *p= xmalloc(sz);
690   memset(p,0,sz);
691   return p;
692 }
693
694 static void xunlink(const char *path, const char *what) {
695   int r= unlink(path);
696   if (r) sysdie("can't unlink %s %s", path, what);
697 }
698
699 static time_t xtime(void) {
700   time_t now= time(0);
701   if (now==-1) sysdie("time(2) failed");
702   return now;
703 }
704
705 static void xsigaction(int signo, const struct sigaction *sa) {
706   int r= sigaction(signo,sa,0);
707   if (r) sysdie("sigaction failed for \"%s\"", strsignal(signo));
708 }
709
710 static void xsigsetdefault(int signo) {
711   struct sigaction sa;
712   memset(&sa,0,sizeof(sa));
713   sa.sa_handler= SIG_DFL;
714   xsigaction(signo,&sa);
715 }
716
717 static void xgettimeofday(struct timeval *tv_r) {
718   int r= gettimeofday(tv_r,0);
719   if (r) sysdie("gettimeofday(2) failed");
720 }
721
722 static void xsetnonblock(int fd, int nonblocking) {
723   int errnoval= oop_fd_nonblock(fd, nonblocking);
724   if (errnoval) { errno= errnoval; sysdie("setnonblocking"); }
725 }
726
727 static void check_isreg(const struct stat *stab, const char *path,
728                         const char *what) {
729   if (!S_ISREG(stab->st_mode))
730     die("%s %s not a plain file (mode 0%lo)",
731         what, path, (unsigned long)stab->st_mode);
732 }
733
734 static void xfstat(int fd, struct stat *stab_r, const char *what) {
735   int r= fstat(fd, stab_r);
736   if (r) sysdie("could not fstat %s", what);
737 }
738
739 static void xfstat_isreg(int fd, struct stat *stab_r,
740                          const char *path, const char *what) {
741   xfstat(fd, stab_r, what);
742   check_isreg(stab_r, path, what);
743 }
744
745 static void xlstat_isreg(const char *path, struct stat *stab,
746                          int *enoent_r /* 0 means ENOENT is fatal */,
747                          const char *what) {
748   int r= lstat(path, stab);
749   if (r) {
750     if (errno==ENOENT && enoent_r) { *enoent_r=1; return; }
751     sysdie("could not lstat %s %s", what, path);
752   }
753   if (enoent_r) *enoent_r= 0;
754   check_isreg(stab, path, what);
755 }
756
757 static int samefile(const struct stat *a, const struct stat *b) {
758   assert(S_ISREG(a->st_mode));
759   assert(S_ISREG(b->st_mode));
760   return (a->st_ino == b->st_ino &&
761           a->st_dev == b->st_dev);
762 }
763
764 static char *sanitise(const char *input, int len) {
765   static char sanibuf[100]; /* returns pointer to this buffer! */
766
767   const char *p= input;
768   const char *endp= len>=0 ? input+len : 0;
769   char *q= sanibuf;
770   *q++= '`';
771   for (;;) {
772     if (q > sanibuf+sizeof(sanibuf)-8) { strcpy(q,"'.."); break; }
773     int c= (!endp || p<endp) ? *p++ : 0;
774     if (!c) { *q++= '\''; *q=0; break; }
775     if (c>=' ' && c<=126 && c!='\\') { *q++= c; continue; }
776     sprintf(q,"\\x%02x",c);
777     q += 4;
778   }
779   return sanibuf;
780 }
781
782 static int isewouldblock(int errnoval) {
783   return errnoval==EWOULDBLOCK || errnoval==EAGAIN;
784 }
785
786 /*========== command and control (CLI) connections ==========*/
787
788 static int cli_master;
789
790 typedef struct CliConn CliConn;
791 struct CliConn {
792   void (*destroy)(CliConn*);
793   int fd;
794   oop_read *rd;
795   FILE *out;
796   union {
797     struct sockaddr sa;
798     struct sockaddr_un un;
799   } sa;
800   socklen_t salen;
801 };
802
803 static const oop_rd_style cli_rd_style= {
804   OOP_RD_DELIM_STRIP, '\n',
805   OOP_RD_NUL_FORBID,
806   OOP_RD_SHORTREC_FORBID
807 };
808
809 static void cli_destroy(CliConn *cc) {
810   cc->destroy(cc);
811 }
812
813 static void cli_checkouterr(CliConn *cc /* may destroy*/) {
814   if (ferror(cc->out) | fflush(cc->out)) {
815     info("CTRL%d write error %s", cc->fd, strerror(errno));
816     cli_destroy(cc);
817   }
818 }
819
820 static void cli_prompt(CliConn *cc /* may destroy*/) {
821   fprintf(cc->out, "%s| ", sitename);
822   cli_checkouterr(cc);
823 }
824
825 struct CliCommand {
826   const char *cmd;
827   void (*f)(CliConn *cc, const CliCommand *ccmd,
828             const char *arg, size_t argsz);
829   void *xdata;
830   int xval;
831 };
832
833 static const CliCommand cli_commands[];
834
835 #define CCMD(wh)                                                \
836   static void ccmd_##wh(CliConn *cc, const CliCommand *c,       \
837                         const char *arg, size_t argsz)
838
839 CCMD(help) {
840   fputs("commands:\n", cc->out);
841   const CliCommand *ccmd;
842   for (ccmd=cli_commands; ccmd->cmd; ccmd++)
843     fprintf(cc->out, " %s\n", ccmd->cmd);
844   fputs("NB: permissible arguments are not shown above."
845         "  Not all commands listed are safe.  See innduct(8).\n", cc->out);
846 }
847
848 CCMD(flush) {
849   int ok= trigger_flush_ok("manual request");
850   if (!ok) fprintf(cc->out,"already flushing (state is %s)\n", sms_names[sms]);
851 }
852
853 CCMD(stop) {
854   preterminate();
855   notice("terminating (CTRL%d)",cc->fd);
856   raise_default(SIGTERM);
857   abort();
858 }
859
860 CCMD(dump);
861
862 /* messing with our head: */
863 CCMD(period) { period(); }
864 CCMD(setintarg) { *(int*)c->xdata= atoi(arg); }
865 CCMD(setint) { *(int*)c->xdata= c->xval; }
866 CCMD(setint_period) { *(int*)c->xdata= c->xval; period(); }
867
868 static const CliCommand cli_commands[]= {
869   { "h",             ccmd_help      },
870   { "flush",         ccmd_flush     },
871   { "stop",          ccmd_stop      },
872   { "dump q",        ccmd_dump, 0,0 },
873   { "dump a",        ccmd_dump, 0,1 },
874
875   { "p",             ccmd_period    },
876
877 #define POKES(cmd,func)                                                 \
878   { cmd "flush",     func,           &until_flush,             1 },     \
879   { cmd "conn",      func,           &until_connect,           0 },     \
880   { cmd "blscan",    func,           &until_backlog_nextscan,  0 },
881 POKES("next ", ccmd_setint)
882 POKES("prod ", ccmd_setint_period)
883
884   { "pretend flush", ccmd_setintarg, &simulate_flush             },
885   { "wedge blscan",  ccmd_setint,    &until_backlog_nextscan, -1 },
886   { 0 }
887 };
888
889 static void *cli_rd_ok(oop_source *lp, oop_read *oread, oop_rd_event ev,
890                        const char *errmsg, int errnoval,
891                        const char *data, size_t recsz, void *cc_v) {
892   CliConn *cc= cc_v;
893
894   if (!data) {
895     info("CTRL%d closed", cc->fd);
896     cc->destroy(cc);
897     return OOP_CONTINUE;
898   }
899
900   if (recsz == 0) goto prompt;
901
902   const CliCommand *ccmd;
903   for (ccmd=cli_commands; ccmd->cmd; ccmd++) {
904     int l= strlen(ccmd->cmd);
905     if (recsz < l) continue;
906     if (recsz > l && data[l] != ' ') continue;
907     if (memcmp(data, ccmd->cmd, l)) continue;
908
909     int argl= (int)recsz - (l+1); 
910     ccmd->f(cc, ccmd, argl>=0 ? data+l+1 : 0, argl);
911     goto prompt;
912   }
913
914   fputs("unknown command; h for help\n", cc->out);
915
916  prompt:
917   cli_prompt(cc);
918   return OOP_CONTINUE;
919 }
920
921 static void *cli_rd_err(oop_source *lp, oop_read *oread, oop_rd_event ev,
922                         const char *errmsg, int errnoval,
923                         const char *data, size_t recsz, void *cc_v) {
924   CliConn *cc= cc_v;
925   
926   info("CTRL%d read error %s", cc->fd, errmsg);
927   cc->destroy(cc);
928   return OOP_CONTINUE;
929 }
930
931 static int cli_conn_startup(CliConn *cc /* may destroy*/,
932                                 const char *how) {
933   cc->rd= oop_rd_new_fd(loop, cc->fd, 0,0);
934   if (!cc->rd) { warn("oop_rd_new_fd cli failed"); return -1; }
935
936   int er= oop_rd_read(cc->rd, &cli_rd_style, MAX_CLI_COMMAND,
937                       cli_rd_ok, cc,
938                       cli_rd_err, cc);
939   if (er) { errno= er; syswarn("oop_rd_read cli failed"); return -1; }
940
941   info("CTRL%d %s ready", cc->fd, how);
942   cli_prompt(cc);
943   return 0;
944 }
945
946 static void cli_stdio_destroy(CliConn *cc) {
947   if (cc->rd) {
948     oop_rd_cancel(cc->rd);
949     errno= oop_rd_delete_tidy(cc->rd);
950     if (errno) syswarn("oop_rd_delete tidy failed (no-nonblock stdin?)");
951   }
952   free(cc);
953 }
954
955 static void cli_stdio(void) {
956   NEW_DECL(CliConn *,cc);
957   cc->destroy= cli_stdio_destroy;
958
959   cc->fd= 0;
960   cc->out= stdout;
961   int r= cli_conn_startup(cc,"stdio");
962   if (r) cc->destroy(cc);
963 }
964
965 static void cli_accepted_destroy(CliConn *cc) {
966   if (cc->rd) {
967     oop_rd_cancel(cc->rd);
968     oop_rd_delete_kill(cc->rd);
969   }
970   if (cc->out) { fclose(cc->out); cc->fd=0; }
971   close_perhaps(&cc->fd);
972   free(cc);
973 }
974
975 static void *cli_master_readable(oop_source *lp, int master,
976                                  oop_event ev, void *u) {
977   NEW_DECL(CliConn *,cc);
978   cc->destroy= cli_accepted_destroy;
979
980   cc->salen= sizeof(cc->sa);
981   cc->fd= accept(master, &cc->sa.sa, &cc->salen);
982   if (cc->fd<0) { syswarn("error accepting cli connection"); goto x; }
983
984   cc->out= fdopen(cc->fd, "w");
985   if (!cc->out) { syswarn("error fdopening accepted cli connection"); goto x; }
986
987   int r= cli_conn_startup(cc, "accepted");
988   if (r) goto x;
989
990   return OOP_CONTINUE;
991
992  x:
993   cc->destroy(cc);
994   return OOP_CONTINUE;
995 }
996
997 #define NOCLI(...) do{                                          \
998     syswarn("no cli listener, because failed to " __VA_ARGS__); \
999     goto nocli;                                                 \
1000   }while(0)
1001
1002 static void cli_init(void) {
1003   union {
1004     struct sockaddr sa;
1005     struct sockaddr_un un;
1006   } sa;
1007
1008   memset(&sa,0,sizeof(sa));
1009   int maxlen= sizeof(sa.un.sun_path);
1010
1011   if (!path_cli) {
1012     info("control command line disabled");
1013     return;
1014   }
1015
1016   int pathlen= strlen(path_cli);
1017   if (pathlen > maxlen) {
1018     warn("no cli listener, because cli socket path %s too long (%d>%d)",
1019          path_cli, pathlen, maxlen);
1020     return;
1021   }
1022
1023   if (path_cli_dir) {
1024     int r= mkdir(path_cli_dir, 0700);
1025     if (r && errno!=EEXIST)
1026       NOCLI("create cli socket directory %s", path_cli_dir);
1027   }
1028
1029   int r= unlink(path_cli);
1030   if (r && errno!=ENOENT)
1031     NOCLI("remove old cli socket %s", path_cli);
1032
1033   cli_master= socket(PF_UNIX, SOCK_STREAM, 0);
1034   if (cli_master<0) NOCLI("create new cli master socket");
1035
1036   int sl= pathlen + offsetof(struct sockaddr_un, sun_path);
1037   sa.un.sun_family= AF_UNIX;
1038   memcpy(sa.un.sun_path, path_cli, pathlen);
1039
1040   r= bind(cli_master, &sa.sa, sl);
1041   if (r) NOCLI("bind to cli socket path %s", sa.un.sun_path);
1042
1043   r= listen(cli_master, 5);
1044   if (r) NOCLI("listen to cli master socket");
1045
1046   xsetnonblock(cli_master, 1);
1047
1048   loop->on_fd(loop, cli_master, OOP_READ, cli_master_readable, 0);
1049   info("cli ready, listening on %s", path_cli);
1050
1051   return;
1052
1053  nocli:
1054   xclose_perhaps(&cli_master, "cli master",0);
1055   return;
1056 }
1057
1058 /*========== management of connections ==========*/
1059
1060 static void conn_closefd(Conn *conn, const char *msgprefix) {
1061   int r= close_perhaps(&conn->fd);
1062   if (r) info("C%d %serror closing socket: %s",
1063               conn->fd, msgprefix, strerror(errno));
1064 }
1065
1066 static void conn_dispose(Conn *conn) {
1067   if (!conn) return;
1068   if (conn->rd) {
1069     oop_rd_cancel(conn->rd);
1070     oop_rd_delete_kill(conn->rd);
1071     conn->rd= 0;
1072   }
1073   if (conn->fd) {
1074     loop->cancel_fd(loop, conn->fd, OOP_WRITE);
1075     loop->cancel_fd(loop, conn->fd, OOP_EXCEPTION);
1076   }
1077   conn_closefd(conn,"");
1078   free(conn);
1079   until_connect= reconnect_delay_periods;
1080 }
1081
1082 static void *conn_exception(oop_source *lp, int fd,
1083                             oop_event ev, void *conn_v) {
1084   Conn *conn= conn_v;
1085   unsigned char ch;
1086   assert(fd == conn->fd);
1087   assert(ev == OOP_EXCEPTION);
1088   int r= read(conn->fd, &ch, 1);
1089   if (r<0) connfail(conn,"read failed: %s",strerror(errno));
1090   else connfail(conn,"exceptional condition on socket (peer sent urgent"
1091                 " data? read(,&ch,1)=%d,ch='\\x%02x')",r,ch);
1092   return OOP_CONTINUE;
1093 }  
1094
1095 static void vconnfail(Conn *conn, const char *fmt, va_list al) {
1096   int requeue[art_MaxState];
1097   memset(requeue,0,sizeof(requeue));
1098
1099   Article *art;
1100   
1101   while ((art= LIST_REMHEAD(conn->priority)))
1102     LIST_ADDTAIL(art->ipf->queue, art);
1103
1104   while ((art= LIST_REMHEAD(conn->waiting)))
1105     LIST_ADDTAIL(art->ipf->queue, art);
1106
1107   while ((art= LIST_REMHEAD(conn->sent))) {
1108     requeue[art->state]++;
1109     if (art->state==art_Unsolicited) art->state= art_Unchecked;
1110     LIST_ADDTAIL(art->ipf->queue,art);
1111     check_reading_pause_resume(art->ipf);
1112   }
1113
1114   int i;
1115   XmitDetails *d;
1116   for (i=0, d=conn->xmitd; i<conn->xmitu; i++, d++)
1117     xmit_free(d);
1118
1119   LIST_REMOVE(conns,conn);
1120
1121   char *m= xvasprintf(fmt,al);
1122   warn("C%d (now %d) connection failed requeueing " RCI_TRIPLE_FMT_BASE ": %s",
1123        conn->fd, conns.count, RCI_TRIPLE_VALS_BASE(requeue, /*nothing*/), m);
1124   free(m);
1125
1126   conn_dispose(conn);
1127   check_assign_articles();
1128 }
1129
1130 static void connfail(Conn *conn, const char *fmt, ...) {
1131   va_list al;
1132   va_start(al,fmt);
1133   vconnfail(conn,fmt,al);
1134   va_end(al);
1135 }
1136
1137 static void check_idle_conns(void) {
1138   Conn *conn;
1139   FOR_CONN(conn)
1140     conn->since_activity++;
1141  search_again:
1142   FOR_CONN(conn) {
1143     if (conn->since_activity <= need_activity_periods) continue;
1144
1145     /* We need to shut this down */
1146     if (conn->quitting)
1147       connfail(conn,"timed out waiting for response to QUIT");
1148     else if (conn->sent.count)
1149       connfail(conn,"timed out waiting for responses");
1150     else if (conn->waiting.count || conn->priority.count)
1151       connfail(conn,"BUG IN INNDUCT conn has queue but nothing sent");
1152     else if (conn->xmitu)
1153       connfail(conn,"peer has been sending responses"
1154                " before receiving our commands!");
1155     else {
1156       static const char quitcmd[]= "QUIT\r\n";
1157       int todo= sizeof(quitcmd)-1;
1158       const char *p= quitcmd;
1159       for (;;) {
1160         int r= write(conn->fd, p, todo);
1161         if (r<0) {
1162           if (isewouldblock(errno))
1163             connfail(conn, "blocked writing QUIT to idle connection");
1164           else
1165             connfail(conn, "failed to write QUIT to idle connection: %s",
1166                      strerror(errno));
1167           break;
1168         }
1169         assert(r<=todo);
1170         todo -= r;
1171         if (!todo) {
1172           conn->quitting= 1;
1173           conn->since_activity= 0;
1174           debug("C%d is idle, quitting", conn->fd);
1175           break;
1176         }
1177       }
1178     }
1179     goto search_again;
1180   }
1181 }  
1182
1183 /*---------- making new connections ----------*/
1184
1185 static pid_t connecting_child;
1186 static int connecting_fdpass_sock;
1187
1188 static void connect_attempt_discard(void) {
1189   if (connecting_child) {
1190     int status= xwaitpid(&connecting_child, "connect");
1191     if (!(WIFEXITED(status) ||
1192           (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL)))
1193       report_child_status("connect", status);
1194   }
1195   if (connecting_fdpass_sock) {
1196     cancel_fd_read_except(connecting_fdpass_sock);
1197     xclose_perhaps(&connecting_fdpass_sock, "connecting fdpass socket",0);
1198   }
1199 }
1200
1201 #define PREP_DECL_MSG_CMSG(msg)                 \
1202   char msgbyte= 0;                              \
1203   struct iovec msgiov;                          \
1204   msgiov.iov_base= &msgbyte;                    \
1205   msgiov.iov_len= 1;                            \
1206   struct msghdr msg;                            \
1207   memset(&msg,0,sizeof(msg));                   \
1208   char msg##cbuf[CMSG_SPACE(sizeof(int))];      \
1209   msg.msg_iov= &msgiov;                         \
1210   msg.msg_iovlen= 1;                            \
1211   msg.msg_control= msg##cbuf;                   \
1212   msg.msg_controllen= sizeof(msg##cbuf);
1213
1214 static void *connchild_event(oop_source *lp, int fd, oop_event e, void *u) {
1215   Conn *conn= 0;
1216
1217   assert(fd == connecting_fdpass_sock);
1218
1219   PREP_DECL_MSG_CMSG(msg);
1220   
1221   ssize_t rs= recvmsg(fd, &msg, 0);
1222   if (rs<0) {
1223     if (isewouldblock(errno)) return OOP_CONTINUE;
1224     syswarn("failed to read socket from connecting child");
1225     goto x;
1226   }
1227
1228   NEW(conn);
1229   LIST_INIT(conn->waiting);
1230   LIST_INIT(conn->priority);
1231   LIST_INIT(conn->sent);
1232
1233   struct cmsghdr *h= 0;
1234   if (rs >= 0) h= CMSG_FIRSTHDR(&msg);
1235   if (!h) {
1236     int status= xwaitpid(&connecting_child, "connect child (broken)");
1237
1238     if (WIFEXITED(status)) {
1239       if (WEXITSTATUS(status) != 0 &&
1240           WEXITSTATUS(status) != CONNCHILD_ESTATUS_STREAM &&
1241           WEXITSTATUS(status) != CONNCHILD_ESTATUS_NOSTREAM)
1242         /* child already reported the problem */;
1243       else {
1244         if (e == OOP_EXCEPTION)
1245           warn("connect: connection child exited code %d but"
1246                " unexpected exception on fdpass socket",
1247                WEXITSTATUS(status));
1248         else
1249           warn("connect: connection child exited code %d but"
1250                " no cmsg (rs=%d)",
1251                WEXITSTATUS(status), (int)rs);
1252       }
1253     } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
1254       warn("connect: connection attempt timed out");
1255     } else {
1256       report_child_status("connect", status);
1257     }
1258     goto x;
1259   }
1260
1261 #define CHK(field, val)                                                  \
1262   if (h->cmsg_##field != val) {                                          \
1263     die("connect: child sent cmsg with cmsg_" #field "=%d, expected %d", \
1264         h->cmsg_##field, val);                                           \
1265     goto x;                                                              \
1266   }
1267   CHK(level, SOL_SOCKET);
1268   CHK(type,  SCM_RIGHTS);
1269   CHK(len,   CMSG_LEN(sizeof(conn->fd)));
1270 #undef CHK
1271
1272   if (CMSG_NXTHDR(&msg,h)) die("connect: child sent many cmsgs");
1273
1274   memcpy(&conn->fd, CMSG_DATA(h), sizeof(conn->fd));
1275
1276   int status;
1277   pid_t got= waitpid(connecting_child, &status, 0);
1278   if (got==-1) sysdie("connect: real wait for child");
1279   assert(got == connecting_child);
1280   connecting_child= 0;
1281
1282   if (!WIFEXITED(status)) { report_child_status("connect",status); goto x; }
1283   int es= WEXITSTATUS(status);
1284   switch (es) {
1285   case CONNCHILD_ESTATUS_STREAM:    conn->stream= 1;   break;
1286   case CONNCHILD_ESTATUS_NOSTREAM:  conn->stream= 0;   break;
1287   default:
1288     fatal("connect: child gave unexpected exit status %d", es);
1289   }
1290
1291   /* Phew! */
1292   conn->max_queue= conn->stream ? max_queue_per_conn : 1;
1293
1294   loop->on_fd(loop, conn->fd, OOP_EXCEPTION, conn_exception, conn);
1295   conn->rd= oop_rd_new_fd(loop,conn->fd, 0, 0); /* sets nonblocking, too */
1296   if (!conn->fd) die("oop_rd_new_fd conn failed (fd=%d)",conn->fd);
1297   int r= oop_rd_read(conn->rd, &peer_rd_style, NNTP_STRLEN,
1298                      &peer_rd_ok, conn,
1299                      &peer_rd_err, conn);
1300   if (r) sysdie("oop_rd_read for peer (fd=%d)",conn->fd);
1301
1302   LIST_ADDHEAD(conns, conn);
1303   notice("C%d (now %d) connected %s",
1304          conn->fd, conns.count, conn->stream ? "streaming" : "plain");
1305
1306   connect_attempt_discard();
1307   check_assign_articles();
1308   return OOP_CONTINUE;
1309
1310  x:
1311   conn_dispose(conn);
1312   connect_attempt_discard();
1313   return OOP_CONTINUE;
1314 }
1315
1316 static int allow_connect_start(void) {
1317   return conns.count < max_connections
1318     && !connecting_child
1319     && !until_connect;
1320 }
1321
1322 static void connect_start(void) {
1323   assert(!connecting_child);
1324   assert(!connecting_fdpass_sock);
1325
1326   info("starting connection attempt");
1327
1328   int socks[2];
1329   int r= socketpair(AF_UNIX, SOCK_STREAM, 0, socks);
1330   if (r) { syswarn("connect: cannot create socketpair for child"); return; }
1331
1332   connecting_child= xfork("connection");
1333
1334   if (!connecting_child) {
1335     FILE *cn_from, *cn_to;
1336     char buf[NNTP_STRLEN+100];
1337     int exitstatus= CONNCHILD_ESTATUS_NOSTREAM;
1338
1339     xclose(socks[0], "(in child) parent's connection fdpass socket",0);
1340
1341     alarm(connection_setup_timeout);
1342     if (NNTPconnect((char*)remote_host, port, &cn_from, &cn_to, buf) < 0) {
1343       int l= strlen(buf);
1344       int stripped=0;
1345       while (l>0) {
1346         unsigned char c= buf[l-1];
1347         if (!isspace(c)) break;
1348         if (c=='\n' || c=='\r') stripped=1;
1349         --l;
1350       }
1351       if (!buf[0]) {
1352         sysfatal("connect: connection attempt failed");
1353       } else {
1354         buf[l]= 0;
1355         fatal("connect: %s: %s", stripped ? "rejected" : "failed",
1356               sanitise(buf,-1));
1357       }
1358     }
1359     if (NNTPsendpassword((char*)remote_host, cn_from, cn_to) < 0)
1360       sysfatal("connect: authentication failed");
1361     if (try_stream) {
1362       if (fputs("MODE STREAM\r\n", cn_to)==EOF ||
1363           fflush(cn_to))
1364         sysfatal("connect: could not send MODE STREAM");
1365       buf[sizeof(buf)-1]= 0;
1366       if (!fgets(buf, sizeof(buf)-1, cn_from)) {
1367         if (ferror(cn_from))
1368           sysfatal("connect: could not read response to MODE STREAM");
1369         else
1370           fatal("connect: connection close in response to MODE STREAM");
1371       }
1372       int l= strlen(buf);
1373       assert(l>=1);
1374       if (buf[l-1]!='\n')
1375         fatal("connect: response to MODE STREAM is too long: %.100s...",
1376               sanitise(buf,-1));
1377       l--;  if (l>0 && buf[l-1]=='\r') l--;
1378       buf[l]= 0;
1379       char *ep;
1380       int rcode= strtoul(buf,&ep,10);
1381       if (ep != &buf[3])
1382         fatal("connect: bad response to MODE STREAM: %.50s", sanitise(buf,-1));
1383
1384       switch (rcode) {
1385       case 203:
1386         exitstatus= CONNCHILD_ESTATUS_STREAM;
1387         break;
1388       case 480:
1389       case 500:
1390         break;
1391       default:
1392         warn("connect: unexpected response to MODE STREAM: %.50s",
1393              sanitise(buf,-1));
1394         exitstatus= 2;
1395         break;
1396       }
1397     }
1398     int fd= fileno(cn_from);
1399
1400     PREP_DECL_MSG_CMSG(msg);
1401     struct cmsghdr *cmsg= CMSG_FIRSTHDR(&msg);
1402     cmsg->cmsg_level= SOL_SOCKET;
1403     cmsg->cmsg_type=  SCM_RIGHTS;
1404     cmsg->cmsg_len=   CMSG_LEN(sizeof(fd));
1405     memcpy(CMSG_DATA(cmsg), &fd, sizeof(fd));
1406
1407     msg.msg_controllen= cmsg->cmsg_len;
1408     r= sendmsg(socks[1], &msg, 0);
1409     if (r<0) sysdie("sendmsg failed for new connection");
1410     if (r!=1) die("sendmsg for new connection gave wrong result %d",r);
1411
1412     _exit(exitstatus);
1413   }
1414
1415   xclose(socks[1], "connecting fdpass child's socket",0);
1416   connecting_fdpass_sock= socks[0];
1417   xsetnonblock(connecting_fdpass_sock, 1);
1418   on_fd_read_except(connecting_fdpass_sock, connchild_event);
1419 }
1420
1421 /*---------- assigning articles to conns, and transmitting ----------*/
1422
1423 static Article *dequeue_from(int peek, InputFile *ipf) {
1424   if (!ipf) return 0;
1425   if (peek) return LIST_HEAD(ipf->queue);
1426
1427   Article *art= LIST_REMHEAD(ipf->queue);
1428   if (!art) return 0;
1429   check_reading_pause_resume(ipf);
1430   return art;
1431 }
1432
1433 static Article *dequeue(int peek) {
1434   Article *art;
1435   art= dequeue_from(peek, flushing_input_file);  if (art) return art;
1436   art= dequeue_from(peek, backlog_input_file);   if (art) return art;
1437   art= dequeue_from(peek, main_input_file);      if (art) return art;
1438   return 0;
1439 }
1440
1441 static void check_assign_articles(void) {
1442   for (;;) {
1443     if (!dequeue(1))
1444       break;
1445
1446     Conn *walk, *use=0;
1447     int spare=0, inqueue=0;
1448
1449     /* Find a connection to offer this article.  We prefer a busy
1450      * connection to an idle one, provided it's not full.  We take the
1451      * first (oldest) and since that's stable, it will mean we fill up
1452      * connections in order.  That way if we have too many
1453      * connections, the spare ones will go away eventually.
1454      */
1455     FOR_CONN(walk) {
1456       if (walk->quitting) continue;
1457       inqueue= walk->sent.count + walk->priority.count
1458              + walk->waiting.count;
1459       spare= walk->max_queue - inqueue;
1460       assert(inqueue <= max_queue_per_conn);
1461       assert(spare >= 0);
1462       if (inqueue==0) /*idle*/ { if (!use) use= walk; }
1463       else if (spare>0) /*working*/ { use= walk; break; }
1464     }
1465     if (use) {
1466       if (!inqueue) use->since_activity= 0; /* reset idle counter */
1467       while (spare>0) {
1468         Article *art= dequeue(0);
1469         if (!art) break;
1470         LIST_ADDTAIL(use->waiting, art);
1471         spare--;
1472       }
1473       conn_maybe_write(use);
1474     } else if (allow_connect_start()) {
1475       until_connect= reconnect_delay_periods;
1476       connect_start();
1477       break;
1478     } else {
1479       break;
1480     }
1481   }
1482 }
1483
1484 static void *conn_writeable(oop_source *l, int fd, oop_event ev, void *u) {
1485   conn_maybe_write(u);
1486   return OOP_CONTINUE;
1487 }
1488
1489 static void conn_maybe_write(Conn *conn)  {
1490   for (;;) {
1491     conn_make_some_xmits(conn);
1492     if (!conn->xmitu) {
1493       loop->cancel_fd(loop, conn->fd, OOP_WRITE);
1494       return;
1495     }
1496
1497     void *rp= conn_write_some_xmits(conn);
1498     if (rp==OOP_CONTINUE) {
1499       loop->on_fd(loop, conn->fd, OOP_WRITE, conn_writeable, conn);
1500       return;
1501     } else if (rp==OOP_HALT) {
1502       return;
1503     } else if (!rp) {
1504       /* transmitted everything */
1505     } else {
1506       abort();
1507     }
1508   }
1509 }
1510
1511 /*---------- expiry, flow control and deferral ----------*/
1512
1513 /*
1514  * flow control notes
1515  * to ensure articles go away eventually
1516  * separate queue for each input file
1517  *   queue expiry
1518  *     every period, check head of backlog queue for expiry with SMretrieve
1519  *       if too old: discard, and check next article
1520  *     also check every backlog article as we read it
1521  *   flush expiry
1522  *     after too long in SEPARATED/DROPPING ie Separated/Finishing/Dropping
1523  *     one-off: eat queued articles from flushing and write them to defer
1524  *     one-off: connfail all connections which have any articles from flushing
1525  *     newly read articles from flushing go straight to defer
1526  *     this should take care of it and get us out of this state
1527  * to avoid filling up ram needlessly
1528  *   input control
1529  *     limit number of queued articles for each ipf
1530  *     pause/resume inputfile tailing
1531  */
1532
1533 static void check_reading_pause_resume(InputFile *ipf) {
1534   if (ipf->queue.count >= max_queue_per_ipf)
1535     inputfile_reading_pause(ipf);
1536   else
1537     inputfile_reading_resume(ipf);
1538 }
1539
1540 static void article_defer(Article *art /* not on a queue */, int whichcount) {
1541   open_defer();
1542   if (fprintf(defer, "%s %s\n", TokenToText(art->token), art->messageid) <0
1543       || fflush(defer))
1544     sysfatal("write to defer file %s",path_defer);
1545   article_done(art, whichcount);
1546 }
1547
1548 static int article_check_expired(Article *art /* must be queued, not conn */) {
1549   ARTHANDLE *artdata= SMretrieve(art->token, RETR_STAT);
1550   if (artdata) { SMfreearticle(artdata); return 0; }
1551
1552   LIST_REMOVE(art->ipf->queue, art);
1553   art->missing= 1;
1554   art->ipf->count_nooffer_missing++;
1555   article_done(art,-1);
1556   return 1;
1557 }
1558
1559 static void inputfile_queue_check_expired(InputFile *ipf) {
1560   if (!ipf) return;
1561
1562   for (;;) {
1563     Article *art= LIST_HEAD(ipf->queue);
1564     int exp= article_check_expired(art);
1565     if (!exp) break;
1566   }
1567   check_reading_pause_resume(ipf);
1568 }
1569
1570 static void article_autodefer(InputFile *ipf, Article *art) {
1571   ipf->autodefer++;
1572   article_defer(art,-1);
1573 }
1574
1575 static int has_article_in(const ArticleList *al, InputFile *ipf) {
1576   Article *art;
1577   for (art=LIST_HEAD(*al); art; art=LIST_NEXT(art))
1578     if (art->ipf == ipf) return 1;
1579   return 0;
1580 }
1581
1582 static void autodefer_input_file_articles(InputFile *ipf) {
1583   Article *art;
1584   while ((art= LIST_REMHEAD(ipf->queue)))
1585     article_autodefer(ipf, art);
1586 }
1587
1588 static void autodefer_input_file(InputFile *ipf) {
1589   ipf->autodefer= 0;
1590
1591   autodefer_input_file_articles(ipf);
1592
1593   if (ipf->inprogress) {
1594     Conn *walk;
1595     FOR_CONN(walk) {
1596       if (has_article_in(&walk->waiting,  ipf) ||
1597           has_article_in(&walk->priority, ipf) ||
1598           has_article_in(&walk->sent,     ipf))
1599         walk->quitting= -1;
1600     }
1601     while (ipf->inprogress) {
1602       FOR_CONN(walk)
1603         if (walk->quitting < 0) goto found;
1604       abort(); /* where are they ?? */
1605
1606     found:
1607       connfail(walk, "connection is stuck or crawling,"
1608                " and we need to finish flush");
1609       autodefer_input_file_articles(ipf);
1610     }
1611   }
1612
1613   check_reading_pause_resume(ipf);
1614 }
1615
1616 /*========== article transmission ==========*/
1617
1618 static XmitDetails *xmit_core(Conn *conn, const char *data, int len,
1619                   XmitKind kind) { /* caller must then fill in details */
1620   struct iovec *v= &conn->xmit[conn->xmitu];
1621   XmitDetails *d= &conn->xmitd[conn->xmitu++];
1622   v->iov_base= (char*)data;
1623   v->iov_len= len;
1624   d->kind= kind;
1625   return d;
1626 }
1627
1628 static void xmit_noalloc(Conn *conn, const char *data, int len) {
1629   xmit_core(conn,data,len, xk_Const);
1630 }
1631 #define XMIT_LITERAL(lit) (xmit_noalloc(conn, (lit), sizeof(lit)-1))
1632
1633 static void xmit_artbody(Conn *conn, ARTHANDLE *ah /* consumed */) {
1634   XmitDetails *d= xmit_core(conn, ah->data, ah->len, xk_Artdata);
1635   d->info.sm_art= ah;
1636 }
1637
1638 static void xmit_free(XmitDetails *d) {
1639   switch (d->kind) {
1640   case xk_Artdata: SMfreearticle(d->info.sm_art); break;
1641   case xk_Const:                                  break;
1642   default: abort();
1643   }
1644 }
1645
1646 static void *conn_write_some_xmits(Conn *conn) {
1647   /* return values:
1648    *      0:            nothing more to write, no need to call us again
1649    *      OOP_CONTINUE: more to write but fd not writeable
1650    *      OOP_HALT:     disaster, have destroyed conn
1651    */
1652   for (;;) {
1653     int count= conn->xmitu;
1654     if (!count) return 0;
1655
1656     if (count > IOV_MAX) count= IOV_MAX;
1657     ssize_t rs= writev(conn->fd, conn->xmit, count);
1658     if (rs < 0) {
1659       if (isewouldblock(errno)) return OOP_CONTINUE;
1660       connfail(conn, "write failed: %s", strerror(errno));
1661       return OOP_HALT;
1662     }
1663     assert(rs > 0);
1664
1665     int done;
1666     for (done=0; rs && done<conn->xmitu; done++) {
1667       struct iovec *vp= &conn->xmit[done];
1668       XmitDetails *dp= &conn->xmitd[done];
1669       if (rs > vp->iov_len) {
1670         rs -= vp->iov_len;
1671         xmit_free(dp);
1672       } else {
1673         vp->iov_base= (char*)vp->iov_base + rs;
1674         vp->iov_len -= rs;
1675       }
1676     }
1677     int newu= conn->xmitu - done;
1678     memmove(conn->xmit,  conn->xmit  + done, newu * sizeof(*conn->xmit));
1679     memmove(conn->xmitd, conn->xmitd + done, newu * sizeof(*conn->xmitd));
1680     conn->xmitu= newu;
1681   }
1682 }
1683
1684 static void conn_make_some_xmits(Conn *conn) {
1685   for (;;) {
1686     if (conn->xmitu+5 > CONNIOVS)
1687       break;
1688
1689     Article *art= LIST_REMHEAD(conn->priority);
1690     if (!art) art= LIST_REMHEAD(conn->waiting);
1691     if (!art) break;
1692
1693     if (art->state >= art_Wanted || (conn->stream && nocheck)) {
1694       /* actually send it */
1695
1696       ARTHANDLE *artdata= SMretrieve(art->token, RETR_ALL);
1697
1698       art->state=
1699         art->state == art_Unchecked ? art_Unsolicited :
1700         art->state == art_Wanted    ? art_Wanted      :
1701         (abort(),-1);
1702
1703       if (!artdata) art->missing= 1;
1704       art->ipf->counts[art->state][ artdata ? RC_sent : RC_missing ]++;
1705
1706       if (conn->stream) {
1707         if (artdata) {
1708           XMIT_LITERAL("TAKETHIS ");
1709           xmit_noalloc(conn, art->messageid, art->midlen);
1710           XMIT_LITERAL("\r\n");
1711           xmit_artbody(conn, artdata);
1712         } else {
1713           article_done(art, -1);
1714           continue;
1715         }
1716       } else {
1717         /* we got 235 from IHAVE */
1718         if (artdata) {
1719           xmit_artbody(conn, artdata);
1720         } else {
1721           XMIT_LITERAL(".\r\n");
1722         }
1723       }
1724
1725       LIST_ADDTAIL(conn->sent, art);
1726
1727     } else {
1728       /* check it */
1729
1730       if (conn->stream)
1731         XMIT_LITERAL("CHECK ");
1732       else
1733         XMIT_LITERAL("IHAVE ");
1734       xmit_noalloc(conn, art->messageid, art->midlen);
1735       XMIT_LITERAL("\r\n");
1736
1737       assert(art->state == art_Unchecked);
1738       art->ipf->counts[art->state][RC_sent]++;
1739       LIST_ADDTAIL(conn->sent, art);
1740     }
1741   }
1742 }
1743
1744 /*========== handling responses from peer ==========*/
1745
1746 static const oop_rd_style peer_rd_style= {
1747   OOP_RD_DELIM_STRIP, '\n',
1748   OOP_RD_NUL_FORBID,
1749   OOP_RD_SHORTREC_FORBID
1750 };
1751
1752 static void *peer_rd_err(oop_source *lp, oop_read *oread, oop_rd_event ev,
1753                          const char *errmsg, int errnoval,
1754                          const char *data, size_t recsz, void *conn_v) {
1755   Conn *conn= conn_v;
1756   connfail(conn, "error receiving from peer: %s", errmsg);
1757   return OOP_CONTINUE;
1758 }
1759
1760 static Article *article_reply_check(Conn *conn, const char *response,
1761                                     int code_indicates_streaming,
1762                                     int must_have_sent
1763                                         /* 1:yes, -1:no, 0:dontcare */,
1764                                     const char *sanitised_response) {
1765   Article *art= LIST_HEAD(conn->sent);
1766
1767   if (!art) {
1768     connfail(conn,
1769              "peer gave unexpected response when no commands outstanding: %s",
1770              sanitised_response);
1771     return 0;
1772   }
1773
1774   if (code_indicates_streaming) {
1775     assert(!memchr(response, 0, 4)); /* ensured by peer_rd_ok */
1776     if (!conn->stream) {
1777       connfail(conn, "peer gave streaming response code "
1778                " to IHAVE or subsequent body: %s", sanitised_response);
1779       return 0;
1780     }
1781     const char *got_mid= response+4;
1782     int got_midlen= strcspn(got_mid, " \n\r");
1783     if (got_midlen<3 || got_mid[0]!='<' || got_mid[got_midlen-1]!='>') {
1784       connfail(conn, "peer gave streaming response with syntactically invalid"
1785                " messageid: %s", sanitised_response);
1786       return 0;
1787     }
1788     if (got_midlen != art->midlen ||
1789         memcmp(got_mid, art->messageid, got_midlen)) {
1790       connfail(conn, "peer gave streaming response code to wrong article -"
1791                " probable synchronisation problem; we offered: %s;"
1792                " peer said: %s",
1793                art->messageid, sanitised_response);
1794       return 0;
1795     }
1796   } else {
1797     if (conn->stream) {
1798       connfail(conn, "peer gave non-streaming response code to"
1799                " CHECK/TAKETHIS: %s", sanitised_response);
1800       return 0;
1801     }
1802   }
1803
1804   if (must_have_sent>0 && art->state < art_Wanted) {
1805     connfail(conn, "peer says article accepted but"
1806              " we had not sent the body: %s", sanitised_response);
1807     return 0;
1808   }
1809   if (must_have_sent<0 && art->state >= art_Wanted) {
1810     connfail(conn, "peer says please sent the article but we just did: %s",
1811              sanitised_response);
1812     return 0;
1813   }
1814
1815   Article *art_again= LIST_REMHEAD(conn->sent);
1816   assert(art_again == art);
1817   return art;
1818 }
1819
1820 static void update_nocheck(int accepted) {
1821   accept_proportion *= nocheck_decay;
1822   accept_proportion += accepted * (1.0 - nocheck_decay);
1823   int new_nocheck= accept_proportion >= nocheck_thresh;
1824   if (new_nocheck && !nocheck_reported) {
1825     notice("entering nocheck mode for the first time");
1826     nocheck_reported= 1;
1827   } else if (new_nocheck != nocheck) {
1828     debug("nocheck mode %s", new_nocheck ? "start" : "stop");
1829   }
1830   nocheck= new_nocheck;
1831 }
1832
1833 static void article_done(Article *art, int whichcount) {
1834   if (whichcount>=0 && !art->missing)
1835     art->ipf->counts[art->state][whichcount]++;
1836
1837   if (whichcount == RC_accepted) update_nocheck(1);
1838   else if (whichcount == RC_unwanted) update_nocheck(0);
1839
1840   InputFile *ipf= art->ipf;
1841
1842   while (art->blanklen) {
1843     static const char spaces[]=
1844       "                                                                "
1845       "                                                                "
1846       "                                                                "
1847       "                                                                "
1848       "                                                                "
1849       "                                                                "
1850       "                                                                "
1851       "                                                                "
1852       "                                                                ";
1853     int w= art->blanklen;  if (w >= sizeof(spaces)) w= sizeof(spaces)-1;
1854     int r= pwrite(ipf->fd, spaces, w, art->offset);
1855     if (r==-1) {
1856       if (errno==EINTR) continue;
1857       sysdie("failed to blank entry for %s (length %d at offset %lu) in %s",
1858              art->messageid, art->blanklen,
1859              (unsigned long)art->offset, ipf->path);
1860     }
1861     assert(r>=0 && r<=w);
1862     art->blanklen -= w;
1863     art->offset += w;
1864   }
1865
1866   ipf->inprogress--;
1867   assert(ipf->inprogress >= 0);
1868   free(art);
1869
1870   if (!ipf->inprogress && ipf != main_input_file)
1871     queue_check_input_done();
1872 }
1873
1874 static void *peer_rd_ok(oop_source *lp, oop_read *oread, oop_rd_event ev,
1875                         const char *errmsg, int errnoval,
1876                         const char *data, size_t recsz, void *conn_v) {
1877   Conn *conn= conn_v;
1878
1879   if (ev == OOP_RD_EOF) {
1880     connfail(conn, "unexpected EOF from peer");
1881     return OOP_CONTINUE;
1882   }
1883   assert(ev == OOP_RD_OK);
1884
1885   char *sani= sanitise(data,-1);
1886
1887   char *ep;
1888   unsigned long code= strtoul(data, &ep, 10);
1889   if (ep != data+3 || *ep != ' ' || data[0]=='0') {
1890     connfail(conn, "badly formatted response from peer: %s", sani);
1891     return OOP_CONTINUE;
1892   }
1893
1894   int conn_busy=
1895     conn->waiting.count ||
1896     conn->priority.count ||
1897     conn->sent.count ||
1898     conn->xmitu;
1899
1900   if (conn->quitting) {
1901     if (code!=205 && code!=503) {
1902       connfail(conn, "peer gave unexpected response to QUIT: %s", sani);
1903     } else {
1904       LIST_REMOVE(conns,conn);
1905       notice("C%d (now %d) idle connection closed by us",
1906              conn->fd, conns.count);
1907       assert(!conn_busy);
1908       conn_dispose(conn);
1909     }
1910     return OOP_CONTINUE;
1911   }
1912
1913   conn->since_activity= 0;
1914   Article *art;
1915
1916 #define GET_ARTICLE(musthavesent) do{                                         \
1917     art= article_reply_check(conn, data, code_streaming, musthavesent, sani); \
1918     if (!art) return OOP_CONTINUE; /* reply_check has failed the conn */      \
1919   }while(0) 
1920
1921 #define ARTICLE_DEALTWITH(streaming,musthavesent,how) do{       \
1922     code_streaming= (streaming);                                \
1923     GET_ARTICLE(musthavesent);                                  \
1924     article_done(art, RC_##how);                                \
1925     goto dealtwith;                                             \
1926   }while(0)
1927
1928 #define PEERBADMSG(m) do {                                      \
1929     connfail(conn, m ": %s", sani);  return OOP_CONTINUE;       \
1930   }while(0)
1931
1932   int code_streaming= 0;
1933
1934   switch (code) {
1935
1936   default:  PEERBADMSG("peer sent unexpected message");
1937
1938   case 400:
1939     if (conn_busy)
1940       PEERBADMSG("peer timed us out or stopped accepting articles");
1941
1942     LIST_REMOVE(conns,conn);
1943     notice("C%d (now %d) idle connection closed by peer",
1944            conns.count, conn->fd);
1945     conn_dispose(conn);
1946     return OOP_CONTINUE;
1947
1948   case 435: ARTICLE_DEALTWITH(0,0,unwanted); /* IHAVE says they have it */
1949   case 438: ARTICLE_DEALTWITH(1,0,unwanted); /* CHECK/TAKETHIS: they have it */
1950
1951   case 235: ARTICLE_DEALTWITH(0,1,accepted); /* IHAVE says thanks */
1952   case 239: ARTICLE_DEALTWITH(1,1,accepted); /* TAKETHIS says thanks */
1953
1954   case 437: ARTICLE_DEALTWITH(0,0,rejected); /* IHAVE says rejected */
1955   case 439: ARTICLE_DEALTWITH(1,0,rejected); /* TAKETHIS says rejected */
1956
1957   case 238: /* CHECK says send it */
1958     code_streaming= 1;
1959   case 335: /* IHAVE says send it */
1960     GET_ARTICLE(-1);
1961     assert(art->state == art_Unchecked);
1962     art->ipf->counts[art->state][RC_accepted]++;
1963     art->state= art_Wanted;
1964     LIST_ADDTAIL(conn->priority, art);
1965     break;
1966
1967   case 431: /* CHECK or TAKETHIS says try later */
1968     code_streaming= 1;
1969   case 436: /* IHAVE says try later */
1970     GET_ARTICLE(0);
1971     article_defer(art, RC_deferred);
1972     break;
1973
1974   }
1975 dealtwith:
1976
1977   conn_maybe_write(conn);
1978   check_assign_articles();
1979   return OOP_CONTINUE;
1980 }
1981
1982
1983 /*========== monitoring of input files ==========*/
1984
1985 static void feedfile_eof(InputFile *ipf) {
1986   assert(ipf != main_input_file); /* promised by tailing_try_read */
1987   inputfile_reading_stop(ipf);
1988
1989   if (ipf == flushing_input_file) {
1990     assert(sms==sm_SEPARATED || sms==sm_DROPPING);
1991     if (main_input_file) inputfile_reading_start(main_input_file);
1992     statemc_check_flushing_done();
1993   } else if (ipf == backlog_input_file) {
1994     statemc_check_backlog_done();
1995   } else {
1996     abort(); /* supposed to wait rather than get EOF on main input file */
1997   }
1998 }
1999
2000 static InputFile *open_input_file(const char *path) {
2001   int fd= open(path, O_RDWR);
2002   if (fd<0) {
2003     if (errno==ENOENT) return 0;
2004     sysfatal("unable to open input file %s", path);
2005   }
2006   assert(fd>0);
2007
2008   InputFile *ipf= xmalloc(sizeof(*ipf) + strlen(path) + 1);
2009   memset(ipf,0,sizeof(*ipf));
2010
2011   ipf->fd= fd;
2012   ipf->autodefer= -1;
2013   LIST_INIT(ipf->queue);
2014   strcpy(ipf->path, path);
2015
2016   return ipf;
2017 }
2018
2019 static void close_input_file(InputFile *ipf) { /* does not free */
2020   assert(!ipf->readable_callback); /* must have had ->on_cancel */
2021   assert(!ipf->filemon); /* must have had inputfile_reading_stop */
2022   assert(!ipf->rd); /* must have had inputfile_reading_stop */
2023   assert(!ipf->inprogress); /* no dangling pointers pointing here */
2024   xclose_perhaps(&ipf->fd, "input file ", ipf->path);
2025 }
2026
2027
2028 /*---------- dealing with articles read in the input file ----------*/
2029
2030 static void *feedfile_got_bad_data(InputFile *ipf, off_t offset,
2031                                    const char *data, const char *how) {
2032   warn("corrupted file: %s, offset %lu: %s: in %s",
2033        ipf->path, (unsigned long)offset, how, sanitise(data,-1));
2034   ipf->readcount_err++;
2035   if (ipf->readcount_err > max_bad_data_initial +
2036       (ipf->readcount_ok+ipf->readcount_blank) / max_bad_data_ratio)
2037     die("too much garbage in input file!  (%d errs, %d ok, %d blank)",
2038         ipf->readcount_err, ipf->readcount_ok, ipf->readcount_blank);
2039   return OOP_CONTINUE;
2040 }
2041
2042 static void *feedfile_read_err(oop_source *lp, oop_read *rd,
2043                                oop_rd_event ev, const char *errmsg,
2044                                int errnoval, const char *data, size_t recsz,
2045                                void *ipf_v) {
2046   InputFile *ipf= ipf_v;
2047   assert(ev == OOP_RD_SYSTEM);
2048   errno= errnoval;
2049   sysdie("error reading input file: %s, offset %lu",
2050          ipf->path, (unsigned long)ipf->offset);
2051 }
2052
2053 static void *feedfile_got_article(oop_source *lp, oop_read *rd,
2054                                   oop_rd_event ev, const char *errmsg,
2055                                   int errnoval, const char *data, size_t recsz,
2056                                   void *ipf_v) {
2057   InputFile *ipf= ipf_v;
2058   Article *art;
2059   char tokentextbuf[sizeof(TOKEN)*2+3];
2060
2061   if (!data) { feedfile_eof(ipf); return OOP_CONTINUE; }
2062
2063   off_t old_offset= ipf->offset;
2064   ipf->offset += recsz + !!(ev == OOP_RD_OK);
2065
2066 #define X_BAD_DATA(m) return feedfile_got_bad_data(ipf,old_offset,data,m);
2067
2068   if (ev==OOP_RD_PARTREC)
2069     feedfile_got_bad_data(ipf,old_offset,data,"missing final newline");
2070     /* but process it anyway */
2071
2072   if (ipf->skippinglong) {
2073     if (ev==OOP_RD_OK) ipf->skippinglong= 0; /* fine now */
2074     return OOP_CONTINUE;
2075   }
2076   if (ev==OOP_RD_LONG) {
2077     ipf->skippinglong= 1;
2078     X_BAD_DATA("overly long line");
2079   }
2080
2081   if (memchr(data,'\0',recsz)) X_BAD_DATA("nul byte");
2082   if (!recsz) X_BAD_DATA("empty line");
2083
2084   if (data[0]==' ') {
2085     if (strspn(data," ") != recsz) X_BAD_DATA("line partially blanked");
2086     ipf->readcount_blank++;
2087     return OOP_CONTINUE;
2088   }
2089
2090   char *space= strchr(data,' ');
2091   int tokenlen= space-data;
2092   int midlen= (int)recsz-tokenlen-1;
2093   if (midlen <= 2) X_BAD_DATA("no room for messageid");
2094   if (space[1]!='<' || space[midlen]!='>') X_BAD_DATA("invalid messageid");
2095
2096   if (tokenlen != sizeof(TOKEN)*2+2) X_BAD_DATA("token wrong length");
2097   memcpy(tokentextbuf, data, tokenlen);
2098   tokentextbuf[tokenlen]= 0;
2099   if (!IsToken(tokentextbuf)) X_BAD_DATA("token wrong syntax");
2100
2101   ipf->readcount_ok++;
2102
2103   art= xmalloc(sizeof(*art) - 1 + midlen + 1);
2104   memset(art,0,sizeof(*art));
2105   art->state= art_Unchecked;
2106   art->midlen= midlen;
2107   art->ipf= ipf;  ipf->inprogress++;
2108   art->token= TextToToken(tokentextbuf);
2109   art->offset= old_offset;
2110   art->blanklen= recsz;
2111   strcpy(art->messageid, space+1);
2112   LIST_ADDTAIL(ipf->queue, art);
2113
2114   if (ipf->autodefer >= 0)
2115     article_autodefer(ipf, art);
2116   else if (ipf==backlog_input_file)
2117     article_check_expired(art);
2118
2119   if (sms==sm_NORMAL && ipf==main_input_file &&
2120       ipf->offset >= target_max_feedfile_size)
2121     statemc_start_flush("feed file size");
2122
2123   check_assign_articles(); /* may destroy conn but that's OK */
2124   check_reading_pause_resume(ipf);
2125   return OOP_CONTINUE;
2126 }
2127
2128 /*========== tailing input file ==========*/
2129
2130 static void *tailing_rable_call_time(oop_source *loop, struct timeval tv,
2131                                      void *user) {
2132   /* lifetime of ipf here is OK because destruction will cause
2133    * on_cancel which will cancel this callback */
2134   InputFile *ipf= user;
2135
2136   if (!ipf->fake_readable) return OOP_CONTINUE;
2137
2138   /* we just keep calling readable until our caller (oop_rd)
2139    * has called try_read, and try_read has found EOF so given EAGAIN */
2140   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2141
2142   return ipf->readable_callback(loop, &ipf->readable,
2143                                 ipf->readable_callback_user);
2144 }
2145
2146 static void tailing_on_cancel(struct oop_readable *rable) {
2147   InputFile *ipf= (void*)rable;
2148
2149   if (ipf->filemon) filemon_stop(ipf);
2150   loop->cancel_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2151   ipf->readable_callback= 0;
2152 }
2153
2154 static void tailing_make_readable(InputFile *ipf) {
2155   if (!ipf || !ipf->readable_callback) /* so callers can be naive */
2156     return;
2157   ipf->fake_readable= 1;
2158   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2159 }
2160
2161 static int tailing_on_readable(struct oop_readable *rable,
2162                                 oop_readable_call *cb, void *user) {
2163   InputFile *ipf= (void*)rable;
2164
2165   tailing_on_cancel(rable);
2166   ipf->readable_callback= cb;
2167   ipf->readable_callback_user= user;
2168   filemon_start(ipf);
2169   tailing_make_readable(ipf);
2170   return 0;
2171 }
2172
2173 static ssize_t tailing_try_read(struct oop_readable *rable, void *buffer,
2174                                 size_t length) {
2175   InputFile *ipf= (void*)rable;
2176   for (;;) {
2177     ssize_t r= read(ipf->fd, buffer, length);
2178     if (r==-1) {
2179       if (errno==EINTR) continue;
2180       ipf->fake_readable= 0;
2181       return r;
2182     }
2183     if (!r) {
2184       if (ipf==main_input_file) {
2185         errno=EAGAIN;
2186         ipf->fake_readable= 0;
2187         return -1;
2188       } else if (ipf==flushing_input_file) {
2189         assert(ipf->rd);
2190         assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2191       } else if (ipf==backlog_input_file) {
2192         assert(ipf->rd);
2193       } else {
2194         abort();
2195       }
2196     }
2197     return r;
2198   }
2199 }
2200
2201 /*---------- filemon implemented with inotify ----------*/
2202
2203 #if defined(HAVE_SYS_INOTIFY_H) && !defined(HAVE_FILEMON)
2204 #define HAVE_FILEMON
2205
2206 #include <sys/inotify.h>
2207
2208 static int filemon_inotify_fd;
2209 static int filemon_inotify_wdmax;
2210 static InputFile **filemon_inotify_wd2ipf;
2211
2212 struct Filemon_Perfile {
2213   int wd;
2214 };
2215
2216 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) {
2217   int wd= inotify_add_watch(filemon_inotify_fd, ipf->path, IN_MODIFY);
2218   if (wd < 0) sysfatal("inotify_add_watch %s", ipf->path);
2219
2220   if (wd >= filemon_inotify_wdmax) {
2221     int newmax= wd+2;
2222     filemon_inotify_wd2ipf= xrealloc(filemon_inotify_wd2ipf,
2223                                  sizeof(*filemon_inotify_wd2ipf) * newmax);
2224     memset(filemon_inotify_wd2ipf + filemon_inotify_wdmax, 0,
2225            sizeof(*filemon_inotify_wd2ipf) * (newmax - filemon_inotify_wdmax));
2226     filemon_inotify_wdmax= newmax;
2227   }
2228
2229   assert(!filemon_inotify_wd2ipf[wd]);
2230   filemon_inotify_wd2ipf[wd]= ipf;
2231
2232   debug("filemon inotify startfile %p wd=%d wdmax=%d",
2233         ipf, wd, filemon_inotify_wdmax);
2234
2235   pf->wd= wd;
2236 }
2237
2238 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) {
2239   int wd= pf->wd;
2240   debug("filemon inotify stopfile %p wd=%d", ipf, wd);
2241   int r= inotify_rm_watch(filemon_inotify_fd, wd);
2242   if (r) sysdie("inotify_rm_watch");
2243   filemon_inotify_wd2ipf[wd]= 0;
2244 }
2245
2246 static void *filemon_inotify_readable(oop_source *lp, int fd,
2247                                       oop_event e, void *u) {
2248   struct inotify_event iev;
2249   for (;;) {
2250     int r= read(filemon_inotify_fd, &iev, sizeof(iev));
2251     if (r==-1) {
2252       if (isewouldblock(errno)) break;
2253       sysdie("read from inotify master");
2254     } else if (r==sizeof(iev)) {
2255       assert(iev.wd >= 0 && iev.wd < filemon_inotify_wdmax);
2256     } else {
2257       die("inotify read %d bytes wanted struct of %d", r, (int)sizeof(iev));
2258     }
2259     InputFile *ipf= filemon_inotify_wd2ipf[iev.wd];
2260     /*debug("filemon inotify readable read %p wd=%d", ipf, iev.wd);*/
2261     tailing_make_readable(ipf);
2262   }
2263   return OOP_CONTINUE;
2264 }
2265
2266 static int filemon_method_init(void) {
2267   filemon_inotify_fd= inotify_init();
2268   if (filemon_inotify_fd<0) {
2269     syswarn("filemon/inotify: inotify_init failed");
2270     return 0;
2271   }
2272   xsetnonblock(filemon_inotify_fd, 1);
2273   loop->on_fd(loop, filemon_inotify_fd, OOP_READ, filemon_inotify_readable, 0);
2274
2275   debug("filemon inotify init filemon_inotify_fd=%d", filemon_inotify_fd);
2276   return 1;
2277 }
2278
2279 static void filemon_method_dump_info(FILE *f) {
2280   int i;
2281   fprintf(f,"inotify");
2282   DUMPV("%d",,filemon_inotify_fd);
2283   DUMPV("%d",,filemon_inotify_wdmax);
2284   for (i=0; i<filemon_inotify_wdmax; i++)
2285     fprintf(f," wd2ipf[%d]=%p\n", i, filemon_inotify_wd2ipf[i]);
2286 }
2287
2288 #endif /* HAVE_INOTIFY && !HAVE_FILEMON */
2289
2290 /*---------- filemon dummy implementation ----------*/
2291
2292 #if !defined(HAVE_FILEMON)
2293
2294 struct Filemon_Perfile { int dummy; };
2295
2296 static int filemon_method_init(void) {
2297   warn("filemon/dummy: no filemon method compiled in");
2298   return 0;
2299 }
2300 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) { }
2301 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) { }
2302 static void filemon_method_dump_info(FILE *f) { fprintf(f,"dummy\n"); }
2303
2304 #endif /* !HAVE_FILEMON */
2305
2306 /*---------- filemon generic interface ----------*/
2307
2308 static void filemon_start(InputFile *ipf) {
2309   assert(!ipf->filemon);
2310
2311   NEW(ipf->filemon);
2312   filemon_method_startfile(ipf, ipf->filemon);
2313 }
2314
2315 static void filemon_stop(InputFile *ipf) {
2316   if (!ipf->filemon) return;
2317   filemon_method_stopfile(ipf, ipf->filemon);
2318   free(ipf->filemon);
2319   ipf->filemon= 0;
2320 }
2321
2322 /*---------- interface to start and stop an input file ----------*/
2323
2324 static const oop_rd_style feedfile_rdstyle= {
2325   OOP_RD_DELIM_STRIP, '\n',
2326   OOP_RD_NUL_PERMIT,
2327   OOP_RD_SHORTREC_LONG,
2328 };
2329
2330 static void inputfile_reading_resume(InputFile *ipf) {
2331   if (!ipf->rd) return;
2332   if (!ipf->paused) return;
2333
2334   int r= oop_rd_read(ipf->rd, &feedfile_rdstyle, MAX_LINE_FEEDFILE,
2335                      feedfile_got_article,ipf, feedfile_read_err, ipf);
2336   if (r) sysdie("unable start reading feedfile %s",ipf->path);
2337
2338   ipf->paused= 0;
2339 }
2340
2341 static void inputfile_reading_pause(InputFile *ipf) {
2342   if (!ipf->rd) return;
2343   if (ipf->paused) return;
2344   oop_rd_cancel(ipf->rd);
2345   ipf->paused= 1;
2346 }
2347
2348 static void inputfile_reading_start(InputFile *ipf) {
2349   assert(!ipf->rd);
2350   ipf->readable.on_readable= tailing_on_readable;
2351   ipf->readable.on_cancel=   tailing_on_cancel;
2352   ipf->readable.try_read=    tailing_try_read;
2353   ipf->readable.delete_tidy= 0; /* we never call oop_rd_delete_{tidy,kill} */
2354   ipf->readable.delete_kill= 0;
2355
2356   ipf->readable_callback= 0;
2357   ipf->readable_callback_user= 0;
2358
2359   ipf->rd= oop_rd_new(loop, &ipf->readable, 0,0);
2360   assert(ipf->rd);
2361
2362   ipf->paused= 1;
2363   inputfile_reading_resume(ipf);
2364 }
2365
2366 static void inputfile_reading_stop(InputFile *ipf) {
2367   assert(ipf->rd);
2368   inputfile_reading_pause(ipf);
2369   oop_rd_delete(ipf->rd);
2370   ipf->rd= 0;
2371   assert(!ipf->filemon); /* we shouldn't be monitoring it now */
2372 }
2373
2374
2375 /*========== interaction with innd - state machine ==========*/
2376
2377 /* See official state diagram at top of file.  We implement
2378  * this as follows:
2379  * -8<-
2380
2381             .=======.
2382             ||START||
2383             `======='
2384                 |
2385                 | open F
2386                 |
2387                 |    F ENOENT
2388                 |`---------------------------------------------------.
2389       F OPEN OK |                                                    |
2390                 |`---------------- - - -                             |
2391        D ENOENT |       D EXISTS   see OVERALL STATES diagram        |
2392                 |                  for full startup logic            |
2393      ,--------->|                                                    |
2394      |          V                                                    |
2395      |     ============                                       try to |
2396      |      NORMAL                                            open D |
2397      |     [Normal]                                                  |
2398      |      main F tail                                              |
2399      |     ============                                              V
2400      |          |                                                    |
2401      |          | F IS SO BIG WE SHOULD FLUSH, OR TIMEOUT            |
2402      ^          | hardlink F to D                                    |
2403      |     [Hardlinked]                                              |
2404      |          | unlink F                                           |
2405      |          | our handle onto F is now onto D                    |
2406      |     [Moved]                                                   |
2407      |          |                                                    |
2408      |          |<-------------------<---------------------<---------+
2409      |          |                                                    |
2410      |          | spawn inndcomm flush                               |
2411      |          V                                                    |
2412      |     ==================                                        |
2413      |      FLUSHING[-ABSENT]                                        |
2414      |     [Flushing]                                                |
2415      |     main D tail/none                                          |
2416      |     ==================                                        |
2417      |          |                                                    |
2418      |          |   INNDCOMM FLUSH FAILS                             ^
2419      |          |`----------------------->----------.                |
2420      |          |                                   |                |
2421      |          |   NO SUCH SITE                    V                |
2422      ^          |`--------------->----.         ==================== |
2423      |          |                      \        FLUSHFAILED[-ABSENT] |
2424      |          |                       \         [Moved]            |
2425      |          | FLUSH OK               \       main D tail/none    |
2426      |          | open F                  \     ==================== |
2427      |          |                          \        |                |
2428      |          |                           \       | TIME TO RETRY  |
2429      |          |`------->----.     ,---<---'\      `----------------'
2430      |          |    D NONE   |     | D NONE  `----.
2431      |          V             |     |              V
2432      |     =============      V     V             ============
2433      |      SEPARATED-1       |     |              DROPPING-1
2434      |      flsh->rd!=0       |     |              flsh->rd!=0
2435      |     [Separated]        |     |             [Dropping]
2436      |      main F idle       |     |              main none
2437      |      flsh D tail       |     |              flsh D tail
2438      |     =============      |     |             ============
2439      |          |             |     | install       |
2440      ^          | EOF ON D    |     |  defer        | EOF ON D
2441      |          V             |     |               V
2442      |     ===============    |     |             ===============
2443      |      SEPARATED-2       |     |              DROPPING-2
2444      |      flsh->rd==0       |     V              flsh->rd==0
2445      |     [Finishing]        |     |             [Dropping]
2446      |      main F tail       |     `.             main none
2447      |      flsh D closed     |       `.           flsh D closed
2448      |     ===============    V         `.        ===============
2449      |          |                         `.          |
2450      |          | ALL D PROCESSED           `.        | ALL D PROCESSED
2451      |          V install defer as backlog    `.      | install defer
2452      ^          | close D                       `.    | close D
2453      |          | unlink D                        `.  | unlink D
2454      |          |                                  |  |
2455      |          |                                  V  V
2456      `----------'                               ==============
2457                                                  DROPPED
2458                                                 [Dropped]
2459                                                  main none
2460                                                  flsh none
2461                                                  some backlog
2462                                                 ==============
2463                                                       |
2464                                                       | ALL BACKLOG DONE
2465                                                       |
2466                                                       | unlink lock
2467                                                       | exit
2468                                                       V
2469                                                   ==========
2470                                                    (ESRCH)
2471                                                   [Droppped]
2472                                                   ==========
2473  * ->8-
2474  */
2475
2476 static void startup_set_input_file(InputFile *f) {
2477   assert(!main_input_file);
2478   main_input_file= f;
2479   inputfile_reading_start(f);
2480 }
2481
2482 static void statemc_lock(void) {
2483   int lockfd;
2484   struct stat stab, stabf;
2485   
2486   for (;;) {
2487     lockfd= open(path_lock, O_CREAT|O_RDWR, 0600);
2488     if (lockfd<0) sysfatal("open lockfile %s", path_lock);
2489
2490     struct flock fl;
2491     memset(&fl,0,sizeof(fl));
2492     fl.l_type= F_WRLCK;
2493     fl.l_whence= SEEK_SET;
2494     int r= fcntl(lockfd, F_SETLK, &fl);
2495     if (r==-1) {
2496       if (errno==EACCES || isewouldblock(errno)) {
2497         if (quiet_multiple) exit(0);
2498         fatal("another duct holds the lockfile");
2499       }
2500       sysfatal("fcntl F_SETLK lockfile %s", path_lock);
2501     }
2502
2503     xfstat_isreg(lockfd, &stabf, path_lock, "lockfile");
2504     int lock_noent;
2505     xlstat_isreg(path_lock, &stab, &lock_noent, "lockfile");
2506
2507     if (!lock_noent && samefile(&stab, &stabf))
2508       break;
2509
2510     xclose(lockfd, "stale lockfile ", path_lock);
2511   }
2512
2513   FILE *lockfile= fdopen(lockfd, "w");
2514   if (!lockfile) sysdie("fdopen lockfile");
2515
2516   int r= ftruncate(lockfd, 0);
2517   if (r) sysdie("truncate lockfile to write new info");
2518
2519   if (fprintf(lockfile, "pid %ld\nsite %s\nfeedfile %s\nfqdn %s\n",
2520               (unsigned long)self_pid,
2521               sitename, feedfile, remote_host) == EOF ||
2522       fflush(lockfile))
2523     sysfatal("write info to lockfile %s", path_lock);
2524
2525   debug("startup: locked");
2526 }
2527
2528 static void statemc_init(void) {
2529   struct stat stabdefer;
2530
2531   search_backlog_file();
2532
2533   int defer_noent;
2534   xlstat_isreg(path_defer, &stabdefer, &defer_noent, "defer file");
2535   if (defer_noent) {
2536     debug("startup: ductdefer ENOENT");
2537   } else {
2538     debug("startup: ductdefer nlink=%ld", (long)stabdefer.st_nlink);
2539     switch (stabdefer.st_nlink==1) {
2540     case 1:
2541       open_defer(); /* so that we will later close it and rename it */
2542       break;
2543     case 2:
2544       xunlink(path_defer, "stale defer file link"
2545               " (presumably hardlink to backlog file)");
2546       break;
2547     default:
2548       die("defer file %s has unexpected link count %d",
2549           path_defer, stabdefer.st_nlink);
2550     }
2551   }
2552
2553   struct stat stab_f, stab_d;
2554   int noent_f;
2555
2556   InputFile *file_d= open_input_file(path_flushing);
2557   if (file_d) xfstat_isreg(file_d->fd, &stab_d, path_flushing,"flushing file");
2558
2559   xlstat_isreg(feedfile, &stab_f, &noent_f, "feedfile");
2560
2561   if (!noent_f && file_d && samefile(&stab_f, &stab_d)) {
2562     debug("startup: F==D => Hardlinked");
2563     xunlink(feedfile, "feed file (during startup)"); /* => Moved */
2564     noent_f= 1;
2565   }
2566
2567   if (noent_f) {
2568     debug("startup: F ENOENT => Moved");
2569     if (file_d) startup_set_input_file(file_d);
2570     spawn_inndcomm_flush("feedfile missing at startup");
2571     /* => Flushing, sms:=FLUSHING */
2572   } else {
2573     if (file_d) {
2574       debug("startup: F!=D => Separated");
2575       startup_set_input_file(file_d);
2576       flushing_input_file= main_input_file;
2577       main_input_file= open_input_file(feedfile);
2578       if (!main_input_file) die("feedfile vanished during startup");
2579       SMS(SEPARATED, max_separated_periods,
2580           "found both old and current feed files");
2581     } else {
2582       debug("startup: F exists, D ENOENT => Normal");
2583       InputFile *file_f= open_input_file(feedfile);
2584       if (!file_f) die("feed file vanished during startup");
2585       startup_set_input_file(file_f);
2586       SMS(NORMAL, spontaneous_flush_periods, "normal startup");
2587     }
2588   }
2589 }
2590
2591 static void statemc_start_flush(const char *why) { /* Normal => Flushing */
2592   assert(sms == sm_NORMAL);
2593
2594   debug("starting flush (%s) (%lu >?= %lu) (%d)",
2595         why,
2596         (unsigned long)(main_input_file ? main_input_file->offset : 0),
2597         (unsigned long)target_max_feedfile_size,
2598         until_flush);
2599
2600   int r= link(feedfile, path_flushing);
2601   if (r) sysfatal("link feedfile %s to flushing file %s",
2602                   feedfile, path_flushing);
2603   /* => Hardlinked */
2604
2605   xunlink(feedfile, "old feedfile link");
2606   /* => Moved */
2607
2608   spawn_inndcomm_flush(why); /* => Flushing FLUSHING */
2609 }
2610
2611 static int trigger_flush_ok(const char *why) {
2612   switch (sms) {
2613
2614   case sm_NORMAL:
2615     statemc_start_flush(why ? why : "periodic");
2616     return 1;                           /* Normal => Flushing; => FLUSHING */
2617
2618   case sm_FLUSHFAILED:
2619     spawn_inndcomm_flush(why ? why : "retry");
2620     return 1;                            /* Moved => Flushing; => FLUSHING */
2621
2622   case sm_SEPARATED:
2623   case sm_DROPPING:
2624     warn("abandoning old feedfile after flush (%s), autodeferring",
2625          why ? why : "took too long to complete");
2626     assert(flushing_input_file);
2627     autodefer_input_file(flushing_input_file);
2628     return 1;
2629
2630   default:
2631     return 0;
2632   }
2633 }
2634
2635 static void statemc_period_poll(void) {
2636   if (!until_flush) return;
2637   until_flush--;
2638   assert(until_flush>=0);
2639
2640   if (until_flush) return;
2641   int ok= trigger_flush_ok(0);
2642   assert(ok);
2643 }
2644
2645 static int inputfile_is_done(InputFile *ipf) {
2646   if (!ipf) return 0;
2647   if (ipf->inprogress) return 0; /* new article in the meantime */
2648   if (ipf->rd) return 0; /* not had EOF */
2649   return 1;
2650 }
2651
2652 static void notice_processed(InputFile *ipf, int completed,
2653                              const char *what, const char *spec) {
2654   if (!ipf) return; /* allows preterminate to be lazy */
2655
2656 #define RCI_NOTHING(x) /* nothing */
2657 #define RCI_TRIPLE_FMT(x) " " #x "=" RCI_TRIPLE_FMT_BASE
2658 #define RCI_TRIPLE_VALS(x) , RCI_TRIPLE_VALS_BASE(ipf->counts, [RC_##x])
2659
2660 #define CNT(art,rc) (ipf->counts[art_##art][RC_##rc])
2661
2662   char *inprog= completed
2663     ? xasprintf("%s","") /* GCC produces a stupid warning for printf("") ! */
2664     : xasprintf(" inprogress=%ld", ipf->inprogress);
2665   char *autodefer= ipf->autodefer >= 0
2666     ? xasprintf(" autodeferred=%ld", ipf->autodefer)
2667     : xasprintf("%s","");
2668
2669   info("%s %s%s read=%d (+bl=%d,+err=%d)%s%s"
2670        " missing=%d offered=%d (ch=%d,nc=%d) accepted=%d (ch=%d,nc=%d)"
2671        RESULT_COUNTS(RCI_NOTHING, RCI_TRIPLE_FMT)
2672        ,
2673        completed?"completed":"processed", what, spec,
2674        ipf->readcount_ok, ipf->readcount_blank, ipf->readcount_err,
2675        inprog, autodefer, ipf->count_nooffer_missing,
2676        CNT(Unchecked,sent) + CNT(Unsolicited,sent)
2677        , CNT(Unchecked,sent), CNT(Unsolicited,sent),
2678        CNT(Wanted,accepted) + CNT(Unsolicited,accepted)
2679        , CNT(Wanted,accepted), CNT(Unsolicited,accepted)
2680        RESULT_COUNTS(RCI_NOTHING,  RCI_TRIPLE_VALS)
2681        );
2682
2683   free(inprog);
2684   free(autodefer);
2685
2686 #undef CNT
2687 }
2688
2689 static void statemc_check_backlog_done(void) {
2690   InputFile *ipf= backlog_input_file;
2691   if (!inputfile_is_done(ipf)) return;
2692
2693   const char *slash= strrchr(ipf->path, '/');
2694   const char *leaf= slash ? slash+1 : ipf->path;
2695   const char *under= strchr(slash, '_');
2696   const char *rest= under ? under+1 : leaf;
2697   if (!strncmp(rest,"backlog",7)) rest += 7;
2698   notice_processed(ipf,1,"backlog ",rest);
2699
2700   close_input_file(ipf);
2701   if (unlink(ipf->path)) {
2702     if (errno != ENOENT)
2703       sysdie("could not unlink processed backlog file %s", ipf->path);
2704     warn("backlog file %s vanished while we were reading it"
2705          " so we couldn't remove it (but it's done now, anyway)",
2706          ipf->path);
2707   }
2708   free(ipf);
2709   backlog_input_file= 0;
2710   search_backlog_file();
2711   return;
2712 }
2713
2714 static void statemc_check_flushing_done(void) {
2715   InputFile *ipf= flushing_input_file;
2716   if (!inputfile_is_done(ipf)) return;
2717
2718   assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2719
2720   notice_processed(ipf,1,"feedfile","");
2721
2722   close_defer();
2723
2724   xunlink(path_flushing, "old flushing file");
2725
2726   close_input_file(flushing_input_file);
2727   free(flushing_input_file);
2728   flushing_input_file= 0;
2729
2730   if (sms==sm_SEPARATED) {
2731     notice("flush complete");
2732     SMS(NORMAL, spontaneous_flush_periods, "flush complete");
2733   } else if (sms==sm_DROPPING) {
2734     SMS(DROPPED, max_separated_periods, "old flush complete");
2735     search_backlog_file();
2736     notice("feed dropped, but will continue until backlog is finished");
2737   }
2738 }
2739
2740 static void *statemc_check_input_done(oop_source *lp, struct timeval now,
2741                                       void *u) {
2742   assert(!inputfile_is_done(main_input_file));
2743   statemc_check_flushing_done();
2744   statemc_check_backlog_done();
2745   return OOP_CONTINUE;
2746 }
2747
2748 static void queue_check_input_done(void) {
2749   loop->on_time(loop, OOP_TIME_NOW, statemc_check_input_done, 0);
2750 }
2751
2752 static void statemc_setstate(StateMachineState newsms, int periods,
2753                              const char *forlog, const char *why) {
2754   sms= newsms;
2755   until_flush= periods;
2756
2757   const char *xtra= "";
2758   switch (sms) {
2759   case sm_FLUSHING:
2760   case sm_FLUSHFAILED:
2761     if (!main_input_file) xtra= "-ABSENT";
2762     break;
2763   case sm_SEPARATED:
2764   case sm_DROPPING:
2765     xtra= flushing_input_file->rd ? "-1" : "-2";
2766     break;
2767   default:;
2768   }
2769
2770   if (periods) {
2771     info("state %s%s[%d] %s",forlog,xtra,periods,why);
2772   } else {
2773     info("state %s%s %s",forlog,xtra,why);
2774   }
2775 }
2776
2777 /*---------- defer and backlog files ----------*/
2778
2779 static void open_defer(void) {
2780   struct stat stab;
2781
2782   if (defer) return;
2783
2784   defer= fopen(path_defer, "a+");
2785   if (!defer) sysfatal("could not open defer file %s", path_defer);
2786
2787   /* truncate away any half-written records */
2788
2789   xfstat_isreg(fileno(defer), &stab, path_defer, "newly opened defer file");
2790
2791   if (stab.st_size > LONG_MAX)
2792     die("defer file %s size is far too large", path_defer);
2793
2794   if (!stab.st_size)
2795     return;
2796
2797   long orgsize= stab.st_size;
2798   long truncto= stab.st_size;
2799   for (;;) {
2800     if (!truncto) break; /* was only (if anything) one half-truncated record */
2801     if (fseek(defer, truncto-1, SEEK_SET) < 0)
2802       sysdie("seek in defer file %s while truncating partial", path_defer);
2803
2804     int r= getc(defer);
2805     if (r==EOF) {
2806       if (ferror(defer))
2807         sysdie("failed read from defer file %s", path_defer);
2808       else
2809         die("defer file %s shrank while we were checking it!", path_defer);
2810     }
2811     if (r=='\n') break;
2812     truncto--;
2813   }
2814
2815   if (stab.st_size != truncto) {
2816     warn("truncating half-record at end of defer file %s -"
2817          " shrinking by %ld bytes from %ld to %ld",
2818          path_defer, orgsize - truncto, orgsize, truncto);
2819
2820     if (fflush(defer))
2821       sysfatal("could not flush defer file %s", path_defer);
2822     if (ftruncate(fileno(defer), truncto))
2823       sysdie("could not truncate defer file %s", path_defer);
2824
2825   } else {
2826     info("continuing existing defer file %s (%ld bytes)",
2827          path_defer, orgsize);
2828   }
2829   if (fseek(defer, truncto, SEEK_SET))
2830     sysdie("could not seek to new end of defer file %s", path_defer);
2831 }
2832
2833 static void close_defer(void) {
2834   if (!defer)
2835     return;
2836
2837   struct stat stab;
2838   xfstat_isreg(fileno(defer), &stab, path_defer, "defer file");
2839
2840   if (fclose(defer)) sysfatal("could not close defer file %s", path_defer);
2841   defer= 0;
2842
2843   time_t now= xtime();
2844
2845   char *backlog= xasprintf("%s_backlog_%lu.%lu", feedfile,
2846                            (unsigned long)now,
2847                            (unsigned long)stab.st_ino);
2848   if (link(path_defer, backlog))
2849     sysfatal("could not install defer file %s as backlog file %s",
2850            path_defer, backlog);
2851   if (unlink(path_defer))
2852     sysdie("could not unlink old defer link %s to backlog file %s",
2853            path_defer, backlog);
2854
2855   free(backlog);
2856
2857   if (until_backlog_nextscan < 0 ||
2858       until_backlog_nextscan > backlog_retry_minperiods + 1)
2859     until_backlog_nextscan= backlog_retry_minperiods + 1;
2860 }
2861
2862 static void poll_backlog_file(void) {
2863   if (until_backlog_nextscan < 0) return;
2864   if (until_backlog_nextscan-- > 0) return;
2865   search_backlog_file();
2866 }
2867
2868 static void search_backlog_file(void) {
2869   /* returns non-0 iff there are any backlog files */
2870
2871   glob_t gl;
2872   int r, i;
2873   struct stat stab;
2874   const char *oldest_path=0;
2875   time_t oldest_mtime=0, now;
2876
2877   if (backlog_input_file) return;
2878
2879  try_again:
2880
2881   r= glob(globpat_backlog, GLOB_ERR|GLOB_MARK|GLOB_NOSORT, 0, &gl);
2882
2883   switch (r) {
2884   case GLOB_ABORTED:
2885     sysfatal("failed to expand backlog pattern %s", globpat_backlog);
2886   case GLOB_NOSPACE:
2887     fatal("out of memory expanding backlog pattern %s", globpat_backlog);
2888   case 0:
2889     for (i=0; i<gl.gl_pathc; i++) {
2890       const char *path= gl.gl_pathv[i];
2891
2892       if (strchr(path,'#') || strchr(path,'~')) {
2893         debug("backlog file search skipping %s", path);
2894         continue;
2895       }
2896       r= stat(path, &stab);
2897       if (r) {
2898         syswarn("failed to stat backlog file %s", path);
2899         continue;
2900       }
2901       if (!S_ISREG(stab.st_mode)) {
2902         warn("backlog file %s is not a plain file (or link to one)", path);
2903         continue;
2904       }
2905       if (!oldest_path || stab.st_mtime < oldest_mtime) {
2906         oldest_path= path;
2907         oldest_mtime= stab.st_mtime;
2908       }
2909     }
2910   case GLOB_NOMATCH: /* fall through */
2911     break;
2912   default:
2913     sysdie("glob expansion of backlog pattern %s gave unexpected"
2914            " nonzero (error?) return value %d", globpat_backlog, r);
2915   }
2916
2917   if (!oldest_path) {
2918     debug("backlog scan: none");
2919
2920     if (sms==sm_DROPPED) {
2921       preterminate();
2922       notice("feed dropped and our work is complete");
2923
2924       int r= unlink(path_cli);
2925       if (r && errno!=ENOENT)
2926         syswarn("failed to unlink cli socket for old feed");
2927
2928       xunlink(path_lock, "lockfile for old feed");
2929       exit(4);
2930     }
2931     until_backlog_nextscan= backlog_spontrescan_periods;
2932     goto xfree;
2933   }
2934
2935   now= xtime();
2936   double age= difftime(now, oldest_mtime);
2937   long age_deficiency= (backlog_retry_minperiods * period_seconds) - age;
2938
2939   if (age_deficiency <= 0) {
2940     debug("backlog scan: found age=%f deficiency=%ld oldest=%s",
2941           age, age_deficiency, oldest_path);
2942
2943     backlog_input_file= open_input_file(oldest_path);
2944     if (!backlog_input_file) {
2945       warn("backlog file %s vanished as we opened it", oldest_path);
2946       globfree(&gl);
2947       goto try_again;
2948     }
2949     inputfile_reading_start(backlog_input_file);
2950     until_backlog_nextscan= -1;
2951     goto xfree;
2952   }
2953
2954   until_backlog_nextscan= age_deficiency / period_seconds;
2955
2956   if (backlog_spontrescan_periods >= 0 &&
2957       until_backlog_nextscan > backlog_spontrescan_periods)
2958     until_backlog_nextscan= backlog_spontrescan_periods;
2959
2960   debug("backlog scan: young age=%f deficiency=%ld nextscan=%d oldest=%s",
2961         age, age_deficiency, until_backlog_nextscan, oldest_path);
2962
2963  xfree:
2964   globfree(&gl);
2965   return;
2966 }
2967
2968 /*---------- shutdown and signal handling ----------*/
2969
2970 static void preterminate(void) {
2971   if (in_child) return;
2972   notice_processed(main_input_file,0,"feedfile","");
2973   notice_processed(flushing_input_file,0,"flushing","");
2974   if (backlog_input_file)
2975     notice_processed(backlog_input_file,0, "backlog file ",
2976                      backlog_input_file->path);
2977 }
2978
2979 static int signal_self_pipe[2];
2980 static sig_atomic_t terminate_sig_flag;
2981
2982 static void raise_default(int signo) {
2983   xsigsetdefault(signo);
2984   raise(signo);
2985   abort();
2986 }
2987
2988 static void *sigarrived_event(oop_source *lp, int fd, oop_event e, void *u) {
2989   assert(fd=signal_self_pipe[0]);
2990   char buf[PIPE_BUF];
2991   int r= read(signal_self_pipe[0], buf, sizeof(buf));
2992   if (r<0 && !isewouldblock(errno)) sysdie("failed to read signal self pipe");
2993   if (r==0) die("eof on signal self pipe");
2994   if (terminate_sig_flag) {
2995     preterminate();
2996     notice("terminating (%s)", strsignal(terminate_sig_flag));
2997     raise_default(terminate_sig_flag);
2998   }
2999   return OOP_CONTINUE;
3000 }
3001
3002 static void sigarrived_handler(int signum) {
3003   static char x;
3004   switch (signum) {
3005   case SIGTERM:
3006   case SIGINT:
3007     if (!terminate_sig_flag) terminate_sig_flag= signum;
3008     break;
3009   default:
3010     abort();
3011   }
3012   write(signal_self_pipe[1],&x,1);
3013 }
3014
3015 static void init_signals(void) {
3016   if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
3017     sysdie("could not ignore SIGPIPE");
3018
3019   if (pipe(signal_self_pipe)) sysfatal("create self-pipe for signals");
3020
3021   xsetnonblock(signal_self_pipe[0],1);
3022   xsetnonblock(signal_self_pipe[1],1);
3023
3024   struct sigaction sa;
3025   memset(&sa,0,sizeof(sa));
3026   sa.sa_handler= sigarrived_handler;
3027   sa.sa_flags= SA_RESTART;
3028   xsigaction(SIGTERM,&sa);
3029   xsigaction(SIGINT,&sa);
3030
3031   on_fd_read_except(signal_self_pipe[0], sigarrived_event);
3032 }
3033
3034 /*========== flushing the feed ==========*/
3035
3036 static pid_t inndcomm_child;
3037 static int inndcomm_sentinel_fd;
3038
3039 static void *inndcomm_event(oop_source *lp, int fd, oop_event e, void *u) {
3040   assert(inndcomm_child);
3041   assert(fd == inndcomm_sentinel_fd);
3042   int status= xwaitpid(&inndcomm_child, "inndcomm");
3043   inndcomm_child= 0;
3044   
3045   cancel_fd_read_except(fd);
3046   xclose_perhaps(&fd, "inndcomm sentinel pipe",0);
3047   inndcomm_sentinel_fd= 0;
3048
3049   assert(!flushing_input_file);
3050
3051   if (WIFEXITED(status)) {
3052     switch (WEXITSTATUS(status)) {
3053
3054     case INNDCOMMCHILD_ESTATUS_FAIL:
3055       goto failed;
3056
3057     case INNDCOMMCHILD_ESTATUS_NONESUCH:
3058       notice("feed has been dropped by innd, finishing up");
3059       flushing_input_file= main_input_file;
3060       tailing_make_readable(flushing_input_file);
3061         /* we probably previously returned EAGAIN from our fake read method
3062          * when in fact we were at EOF, so signal another readable event
3063          * so we actually see the EOF */
3064
3065       main_input_file= 0;
3066
3067       if (flushing_input_file) {
3068         SMS(DROPPING, max_separated_periods,
3069             "feed dropped by innd, but must finish last flush");
3070       } else {
3071         close_defer();
3072         SMS(DROPPED, 0, "feed dropped by innd");
3073         search_backlog_file();
3074       }
3075       return OOP_CONTINUE;
3076
3077     case 0:
3078       /* as above */
3079       flushing_input_file= main_input_file;
3080       tailing_make_readable(flushing_input_file);
3081
3082       main_input_file= open_input_file(feedfile);
3083       if (!main_input_file)
3084         die("flush succeeded but feedfile %s does not exist!"
3085             " (this probably means feedfile does not correspond"
3086             " to site %s in newsfeeds)", feedfile, sitename);
3087
3088       if (flushing_input_file) {
3089         SMS(SEPARATED, max_separated_periods, "flush complete");
3090       } else {
3091         close_defer();
3092         SMS(NORMAL, spontaneous_flush_periods, "recovery flush complete");
3093       }
3094       return OOP_CONTINUE;
3095
3096     default:
3097       goto unexpected_exitstatus;
3098
3099     }
3100   } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
3101     warn("flush timed out trying to talk to innd");
3102     goto failed;
3103   } else {
3104   unexpected_exitstatus:
3105     report_child_status("inndcomm child", status);
3106   }
3107
3108  failed:
3109   SMS(FLUSHFAILED, flushfail_retry_periods, "flush failed, will retry");
3110   return OOP_CONTINUE;
3111 }
3112
3113 static void inndcommfail(const char *what) {
3114   syswarn("error communicating with innd: %s failed: %s", what, ICCfailure);
3115   exit(INNDCOMMCHILD_ESTATUS_FAIL);
3116 }
3117
3118 void spawn_inndcomm_flush(const char *why) { /* Moved => Flushing */
3119   int pipefds[2];
3120
3121   notice("flushing %s",why);
3122
3123   assert(sms==sm_NORMAL || sms==sm_FLUSHFAILED);
3124   assert(!inndcomm_child);
3125   assert(!inndcomm_sentinel_fd);
3126
3127   if (pipe(pipefds)) sysfatal("create pipe for inndcomm child sentinel");
3128
3129   inndcomm_child= xfork("inndcomm child");
3130
3131   if (!inndcomm_child) {
3132     const char *flushargv[2]= { sitename, 0 };
3133     char *reply;
3134     int r;
3135
3136     xclose(pipefds[0], "(in child) inndcomm sentinel parent's end",0);
3137     /* parent spots the autoclose of pipefds[1] when we die or exit */
3138
3139     if (simulate_flush>=0) {
3140       warn("SIMULATING flush child status %d", simulate_flush);
3141       if (simulate_flush>128) raise(simulate_flush-128);
3142       else exit(simulate_flush);
3143     }
3144
3145     alarm(inndcomm_flush_timeout);
3146     r= ICCopen();                         if (r)   inndcommfail("connect");
3147     r= ICCcommand('f',flushargv,&reply);  if (r<0) inndcommfail("transmit");
3148     if (!r) exit(0); /* yay! */
3149
3150     if (!strcmp(reply, "1 No such site")) exit(INNDCOMMCHILD_ESTATUS_NONESUCH);
3151     syswarn("innd ctlinnd flush failed: innd said %s", reply);
3152     exit(INNDCOMMCHILD_ESTATUS_FAIL);
3153   }
3154
3155   simulate_flush= -1;
3156
3157   xclose(pipefds[1], "inndcomm sentinel child's end",0);
3158   inndcomm_sentinel_fd= pipefds[0];
3159   assert(inndcomm_sentinel_fd);
3160   on_fd_read_except(inndcomm_sentinel_fd, inndcomm_event);
3161
3162   SMS(FLUSHING, 0, why);
3163 }
3164
3165 /*========== main program ==========*/
3166
3167 static void postfork_inputfile(InputFile *ipf) {
3168   if (!ipf) return;
3169   xclose(ipf->fd, "(in child) input file ", ipf->path);
3170 }
3171
3172 static void postfork_stdio(FILE *f, const char *what, const char *what2) {
3173   /* we have no stdio streams that are buffered long-term */
3174   if (!f) return;
3175   if (fclose(f)) sysdie("(in child) close %s%s", what, what2?what2:0);
3176 }
3177
3178 static void postfork(void) {
3179   in_child= 1;
3180
3181   xsigsetdefault(SIGTERM);
3182   xsigsetdefault(SIGINT);
3183   xsigsetdefault(SIGPIPE);
3184   if (terminate_sig_flag) raise(terminate_sig_flag);
3185
3186   postfork_inputfile(main_input_file);
3187   postfork_inputfile(flushing_input_file);
3188
3189   Conn *conn;
3190   FOR_CONN(conn)
3191     conn_closefd(conn,"(in child) ");
3192
3193   postfork_stdio(defer, "defer file ", path_defer);
3194 }
3195
3196 typedef struct Every Every;
3197 struct Every {
3198   struct timeval interval;
3199   int fixed_rate;
3200   void (*f)(void);
3201 };
3202
3203 static void every_schedule(Every *e, struct timeval base);
3204
3205 static void *every_happens(oop_source *lp, struct timeval base, void *e_v) {
3206   Every *e= e_v;
3207   e->f();
3208   if (!e->fixed_rate) xgettimeofday(&base);
3209   every_schedule(e, base);
3210   return OOP_CONTINUE;
3211 }
3212
3213 static void every_schedule(Every *e, struct timeval base) {
3214   struct timeval when;
3215   timeradd(&base, &e->interval, &when);
3216   loop->on_time(loop, when, every_happens, e);
3217 }
3218
3219 static void every(int interval, int fixed_rate, void (*f)(void)) {
3220   NEW_DECL(Every *,e);
3221   e->interval.tv_sec= interval;
3222   e->interval.tv_usec= 0;
3223   e->fixed_rate= fixed_rate;
3224   e->f= f;
3225   struct timeval now;
3226   xgettimeofday(&now);
3227   every_schedule(e, now);
3228 }
3229
3230 static void filepoll(void) {
3231   tailing_make_readable(main_input_file);
3232   tailing_make_readable(flushing_input_file);
3233 }
3234
3235 static char *debug_report_ipf(InputFile *ipf) {
3236   if (!ipf) return xasprintf("none");
3237
3238   const char *slash= strrchr(ipf->path,'/');
3239   const char *path= slash ? slash+1 : ipf->path;
3240
3241   return xasprintf("%p/%s:queue=%d,ip=%ld,autodef=%ld,off=%ld,fd=%d%s%s%s",
3242                    ipf, path,
3243                    ipf->queue.count, ipf->inprogress, ipf->autodefer,
3244                    (long)ipf->offset, ipf->fd,
3245                    ipf->rd ? "" : ",!rd",
3246                    ipf->skippinglong ? "*skiplong" : "",
3247                    ipf->rd && ipf->paused ? "*paused" : "");
3248 }
3249
3250 static void period(void) {
3251   char *dipf_main=     debug_report_ipf(main_input_file);
3252   char *dipf_flushing= debug_report_ipf(flushing_input_file);
3253   char *dipf_backlog=  debug_report_ipf(backlog_input_file);
3254
3255   debug("PERIOD"
3256         " sms=%s[%d] conns=%d until_connect=%d"
3257         " input_files main:%s flushing:%s backlog:%s[%d]"
3258         " children connecting=%ld inndcomm=%ld"
3259         ,
3260         sms_names[sms], until_flush, conns.count, until_connect,
3261         dipf_main, dipf_flushing, dipf_backlog, until_backlog_nextscan,
3262         (long)connecting_child, (long)inndcomm_child
3263         );
3264
3265   free(dipf_main);
3266   free(dipf_flushing);
3267   free(dipf_backlog);
3268
3269   if (until_connect) until_connect--;
3270
3271   inputfile_queue_check_expired(backlog_input_file);
3272   poll_backlog_file();
3273   if (!backlog_input_file) close_defer(); /* want to start on a new backlog */
3274   statemc_period_poll();
3275   check_assign_articles();
3276   check_idle_conns();
3277 }
3278
3279
3280 /*========== dumping state ==========*/
3281
3282 static void dump_article_list(FILE *f, const CliCommand *c,
3283                               const ArticleList *al) {
3284   fprintf(f, " count=%d\n", al->count);
3285   if (!c->xval) return;
3286   
3287   int i; Article *art;
3288   for (i=0, art=LIST_HEAD(*al); art; i++, art=LIST_NEXT(art)) {
3289     fprintf(f," #%05d %-11s", i, artstate_names[art->state]);
3290     DUMPV("%p", art->,ipf);
3291     DUMPV("%d", art->,missing);
3292     DUMPV("%lu", (unsigned long)art->,offset);
3293     DUMPV("%d", art->,blanklen);
3294     DUMPV("%d", art->,midlen);
3295     fprintf(f, " %s %s\n", TokenToText(art->token), art->messageid);
3296   }
3297 }
3298   
3299 static void dump_input_file(FILE *f, const CliCommand *c,
3300                             InputFile *ipf, const char *wh) {
3301   char *dipf= debug_report_ipf(ipf);
3302   fprintf(f,"input %s %s", wh, dipf);
3303   free(dipf);
3304   
3305   if (ipf) {
3306     DUMPV("%d", ipf->,readcount_ok);
3307     DUMPV("%d", ipf->,readcount_blank);
3308     DUMPV("%d", ipf->,readcount_err);
3309     DUMPV("%d", ipf->,count_nooffer_missing);
3310   }
3311   fprintf(f,"\n");
3312   if (ipf) {
3313     ArtState state; const char *const *statename; 
3314     for (state=0, statename=artstate_names; *statename; state++,statename++) {
3315 #define RC_DUMP_FMT(x) " " #x "=%d"
3316 #define RC_DUMP_VAL(x) ,ipf->counts[state][RC_##x]
3317       fprintf(f,"input %s counts %-11s"
3318               RESULT_COUNTS(RC_DUMP_FMT,RC_DUMP_FMT) "\n",
3319               wh, *statename
3320               RESULT_COUNTS(RC_DUMP_VAL,RC_DUMP_VAL));
3321     }
3322     fprintf(f,"input %s queue", wh);
3323     dump_article_list(f,c,&ipf->queue);
3324   }
3325 }
3326
3327 CCMD(dump) {
3328   int i;
3329   fprintf(cc->out, "dumping state to %s\n", path_dump);
3330   FILE *f= fopen(path_dump, "w");
3331   if (!f) { fprintf(cc->out, "failed: open: %s\n", strerror(errno)); return; }
3332
3333   fprintf(f,"general");
3334   DUMPV("%s", sms_names,[sms]);
3335   DUMPV("%d", ,until_flush);
3336   DUMPV("%ld", (long),self_pid);
3337   DUMPV("%p", , defer);
3338   DUMPV("%d", , until_connect);
3339   DUMPV("%d", , until_backlog_nextscan);
3340   DUMPV("%d", , simulate_flush);
3341   fprintf(f,"\nnocheck");
3342   DUMPV("%#.10f", , accept_proportion);
3343   DUMPV("%d", , nocheck);
3344   DUMPV("%d", , nocheck_reported);
3345   fprintf(f,"\n");
3346
3347   fprintf(f,"special");
3348   DUMPV("%ld", (long),connecting_child);
3349   DUMPV("%d", , connecting_fdpass_sock);
3350   DUMPV("%d", , cli_master);
3351   fprintf(f,"\n");
3352
3353   fprintf(f,"filemon ");
3354   filemon_method_dump_info(f);
3355
3356   dump_input_file(f,c, main_input_file,     "main"    );
3357   dump_input_file(f,c, flushing_input_file, "flushing");
3358   dump_input_file(f,c, backlog_input_file,  "backlog" );
3359
3360   fprintf(f,"conns count=%d\n", conns.count);
3361
3362   Conn *conn;
3363   FOR_CONN(conn) {
3364
3365     fprintf(f,"C%d",conn->fd);
3366     DUMPV("%p",conn->,rd);             DUMPV("%d",conn->,max_queue);
3367     DUMPV("%d",conn->,stream);         DUMPV("%d",conn->,quitting);
3368     DUMPV("%d",conn->,since_activity);
3369     fprintf(f,"\n");
3370
3371     fprintf(f,"C%d waiting", conn->fd); dump_article_list(f,c,&conn->waiting);
3372     fprintf(f,"C%d priority",conn->fd); dump_article_list(f,c,&conn->priority);
3373     fprintf(f,"C%d sent",    conn->fd); dump_article_list(f,c,&conn->sent);
3374
3375     fprintf(f,"C%d xmit xmitu=%d\n", conn->fd, conn->xmitu);
3376     for (i=0; i<conn->xmitu; i++) {
3377       const struct iovec *iv= &conn->xmit[i];
3378       const XmitDetails *xd= &conn->xmitd[i];
3379       char *dinfo;
3380       switch (xd->kind) {
3381       case xk_Const:    dinfo= xasprintf("Const");                 break;
3382       case xk_Artdata:  dinfo= xasprintf("A%p", xd->info.sm_art);  break;
3383       default:
3384         abort();
3385       }
3386       fprintf(f," #%03d %-11s l=%d %s\n", i, dinfo, iv->iov_len,
3387               sanitise(iv->iov_base, iv->iov_len));
3388       free(dinfo);
3389     }
3390   }
3391
3392   fprintf(f,"paths");
3393   DUMPV("%s", , feedfile);
3394   DUMPV("%s", , path_cli);
3395   DUMPV("%s", , path_lock);
3396   DUMPV("%s", , path_flushing);
3397   DUMPV("%s", , path_defer);
3398   DUMPV("%s", , path_dump);
3399   DUMPV("%s", , globpat_backlog);
3400   fprintf(f,"\n");
3401
3402   if (!!ferror(f) + !!fclose(f)) {
3403     fprintf(cc->out, "failed: write: %s\n", strerror(errno));
3404     return;
3405   }
3406 }
3407
3408 /*========== option parsing ==========*/
3409
3410 static void vbadusage(const char *fmt, va_list al) NORET_PRINTF(1,0);
3411 static void vbadusage(const char *fmt, va_list al) {
3412   char *m= xvasprintf(fmt,al);
3413   fprintf(stderr, "bad usage: %s\n"
3414           "say --help for help, or read the manpage\n",
3415           m);
3416   if (become_daemon)
3417     syslog(LOG_CRIT,"innduct: invoked with bad usage: %s",m);
3418   exit(8);
3419 }
3420
3421 /*---------- generic option parser ----------*/
3422
3423 static void badusage(const char *fmt, ...) NORET_PRINTF(1,2);
3424 static void badusage(const char *fmt, ...) {
3425   va_list al;
3426   va_start(al,fmt);
3427   vbadusage(fmt,al);
3428 }
3429
3430 enum OptFlags {
3431   of_seconds= 001000u,
3432   of_boolean= 002000u,
3433 };
3434
3435 typedef struct Option Option;
3436 typedef void OptionParser(const Option*, const char *val);
3437
3438 struct Option {
3439   int shrt;
3440   const char *lng, *formarg;
3441   void *store;
3442   OptionParser *fn;
3443   int intval;
3444 };
3445
3446 static void parse_options(const Option *options, char ***argvp) {
3447   /* on return *argvp is first non-option arg; argc is not updated */
3448
3449   for (;;) {
3450     const char *arg= *++(*argvp);
3451     if (!arg) break;
3452     if (*arg != '-') break;
3453     if (!strcmp(arg,"--")) { arg= *++(*argvp); break; }
3454     int a;
3455     while ((a= *++arg)) {
3456       const Option *o;
3457       if (a=='-') {
3458         arg++;
3459         char *equals= strchr(arg,'=');
3460         int len= equals ? (equals - arg) : strlen(arg);
3461         for (o=options; o->shrt || o->lng; o++)
3462           if (strlen(o->lng) == len && !memcmp(o->lng,arg,len))
3463             goto found_long;
3464         badusage("unknown long option --%s",arg);
3465       found_long:
3466         if (!o->formarg) {
3467           if (equals) badusage("option --%s does not take a value",o->lng);
3468           arg= 0;
3469         } else if (equals) {
3470           arg= equals+1;
3471         } else {
3472           arg= *++(*argvp);
3473           if (!arg) badusage("option --%s needs a value for %s",
3474                              o->lng, o->formarg);
3475         }
3476         o->fn(o, arg);
3477         break; /* eaten the whole argument now */
3478       }
3479       for (o=options; o->shrt || o->lng; o++)
3480         if (a == o->shrt)
3481           goto found_short;
3482       badusage("unknown short option -%c",a);
3483     found_short:
3484       if (!o->formarg) {
3485         o->fn(o,0);
3486       } else {
3487         if (!*++arg) {
3488           arg= *++(*argvp);
3489           if (!arg) badusage("option -%c needs a value for %s",
3490                              o->shrt, o->formarg);
3491         }
3492         o->fn(o,arg);
3493         break; /* eaten the whole argument now */
3494       }
3495     }
3496   }
3497 }
3498
3499 #define DELIMPERHAPS(delim,str)  (str) ? (delim) : "", (str) ? (str) : ""
3500
3501 static void print_options(const Option *options, FILE *f) {
3502   const Option *o;
3503   for (o=options; o->shrt || o->lng; o++) {
3504     char shrt[2] = { o->shrt, 0 };
3505     char *optspec= xasprintf("%s%s%s%s%s",
3506                              o->shrt ? "-" : "", shrt,
3507                              o->shrt && o->lng ? "|" : "",
3508                              DELIMPERHAPS("--", o->lng));
3509     fprintf(f, "  %s%s%s\n", optspec, DELIMPERHAPS(" ", o->formarg));
3510     free(optspec);
3511   }
3512 }
3513
3514 /*---------- specific option types ----------*/
3515
3516 static void op_integer(const Option *o, const char *val) {
3517   char *ep;
3518   errno= 0;
3519   unsigned long ul= strtoul(val,&ep,10);
3520   if (*ep || ep==val || errno || ul>INT_MAX)
3521     badusage("bad integer value for %s",o->lng);
3522   int *store= o->store;
3523   *store= ul;
3524 }
3525
3526 static void op_double(const Option *o, const char *val) {
3527   int *store= o->store;
3528   char *ep;
3529   errno= 0;
3530   *store= strtod(val, &ep);
3531   if (*ep || ep==val || errno)
3532     badusage("bad floating point value for %s",o->lng);
3533 }
3534
3535 static void op_string(const Option *o, const char *val) {
3536   const char **store= o->store;
3537   *store= val;
3538 }
3539
3540 static void op_seconds(const Option *o, const char *val) {
3541   int *store= o->store;
3542   char *ep;
3543   int unit;
3544
3545   double v= strtod(val,&ep);
3546   if (ep==val) badusage("bad time/duration value for %s",o->lng);
3547
3548   if (!*ep || !strcmp(ep,"s") || !strcmp(ep,"sec")) unit= 1;
3549   else if (!strcmp(ep,"m") || !strcmp(ep,"min"))    unit= 60;
3550   else if (!strcmp(ep,"h") || !strcmp(ep,"hour"))   unit= 3600;
3551   else if (!strcmp(ep,"d") || !strcmp(ep,"day"))    unit= 86400;
3552   else if (!strcmp(ep,"das")) unit= 10;
3553   else if (!strcmp(ep,"hs"))  unit= 100;
3554   else if (!strcmp(ep,"ks"))  unit= 1000;
3555   else if (!strcmp(ep,"Ms"))  unit= 1000000;
3556   else badusage("bad units %s for time/duration value for %s",ep,o->lng);
3557
3558   v *= unit;
3559   v= ceil(v);
3560   if (v > INT_MAX) badusage("time/duration value for %s out of range",o->lng);
3561   *store= v;
3562 }
3563
3564 static void op_setint(const Option *o, const char *val) {
3565   int *store= o->store;
3566   *store= o->intval;
3567 }
3568
3569 /*---------- specific options ----------*/
3570
3571 static void help(const Option *o, const char *val);
3572
3573 static const Option innduct_options[]= {
3574 {'f',"feedfile",         "F",     &feedfile,                 op_string      },
3575 {'q',"quiet-multiple",   0,       &quiet_multiple,           op_setint, 1   },
3576 {0,"no-daemon",          0,       &become_daemon,            op_setint, 0   },
3577 {0,"no-streaming",       0,       &try_stream,               op_setint, 0   },
3578 {0,"no-filemon",         0,       &try_filemon,              op_setint, 0   },
3579 {'C',"inndconf",         "F",     &inndconffile,             op_string      },
3580 {'P',"port",             "PORT",  &port,                     op_integer     },
3581 {0,"chdir",              "DIR",   &path_run,                 op_string      },
3582 {0,"cli",            "DIR/|PATH", &path_cli,                 op_string      },
3583 {0,"help",               0,       0,                         help           },
3584
3585 {0,"max-connections",    "N",     &max_connections,          op_integer     },
3586 {0,"max-queue-per-conn", "N",     &max_queue_per_conn,       op_integer     },
3587 {0,"max-queue-per-file", "N",     &max_queue_per_ipf,        op_integer     },
3588 {0,"feedfile-flush-size","BYTES", &target_max_feedfile_size, op_integer     },
3589 {0,"period-interval",    "TIME",  &period_seconds,           op_seconds     },
3590
3591 {0,"connection-timeout",   "TIME",  &connection_setup_timeout, op_seconds   },
3592 {0,"stuck-flush-timeout",  "TIME",  &inndcomm_flush_timeout,   op_seconds   },
3593 {0,"feedfile-poll",        "TIME",  &filepoll_seconds,         op_seconds   },
3594
3595 {0,"no-check-proportion",   "PERCENT",   &nocheck_thresh,       op_double   },
3596 {0,"no-check-response-time","ARTICLES",  &nocheck_decay,        op_double   },
3597
3598 {0,"reconnect-interval",     "PERIOD", &reconnect_delay_periods,  op_seconds },
3599 {0,"flush-retry-interval",   "PERIOD", &flushfail_retry_periods,  op_seconds },
3600 {0,"earliest-deferred-retry","PERIOD", &backlog_retry_minperiods, op_seconds },
3601 {0,"backlog-rescan-interval","PERIOD",&backlog_spontrescan_periods,op_seconds},
3602 {0,"max-flush-interval",     "PERIOD", &spontaneous_flush_periods,op_seconds },
3603 {0,"flush-finish-timeout",   "PERIOD", &max_separated_periods,    op_seconds },
3604 {0,"idle-timeout",           "PERIOD", &need_activity_periods,    op_seconds },
3605
3606 {0,"max-bad-input-data-ratio","PERCENT", &max_bad_data_ratio,   op_double    },
3607 {0,"max-bad-input-data-init", "PERCENT", &max_bad_data_initial, op_integer   },
3608
3609 {0,0}
3610 };
3611
3612 static void printusage(FILE *f) {
3613   fputs("usage: innduct [options] site [fqdn]\n"
3614         "available options are:\n", f);
3615   print_options(innduct_options, f);
3616 }
3617
3618 static void help(const Option *o, const char *val) {
3619   printusage(stdout);
3620   if (ferror(stdout) || fflush(stdout)) {
3621     perror("innduct: writing help");
3622     exit(12);
3623   }
3624   exit(0);
3625 }
3626
3627 static void convert_to_periods_rndup(int *store) {
3628   *store += period_seconds-1;
3629   *store /= period_seconds;
3630 }
3631
3632 static int path_ends_slash(const char *specified) {
3633   int l= strlen(specified);
3634   assert(l);
3635   return specified[l-1] == '/';
3636 }
3637
3638 int main(int argc, char **argv) {
3639   if (!argv[1]) {
3640     printusage(stderr);
3641     exit(8);
3642   }
3643
3644   parse_options(innduct_options, &argv);
3645
3646   /* arguments */
3647
3648   sitename= *argv++;
3649   if (!sitename) badusage("need site name argument");
3650
3651   if (*argv) remote_host= *argv++;
3652   else remote_host= sitename;
3653   
3654   if (*argv) badusage("too many non-option arguments");
3655
3656   /* defaults */
3657
3658   int r= innconf_read(inndconffile);
3659   if (!r) badusage("could not read inn.conf (more info on stderr)");
3660
3661   if (!remote_host) remote_host= sitename;
3662
3663   if (nocheck_thresh < 0 || nocheck_thresh > 100)
3664     badusage("nocheck threshold percentage must be between 0..100");
3665   nocheck_thresh *= 0.01;
3666
3667   if (nocheck_decay < 0.1)
3668     badusage("nocheck decay articles must be at least 0.1");
3669   nocheck_decay= pow(0.5, 1.0/nocheck_decay);
3670
3671   convert_to_periods_rndup(&reconnect_delay_periods);
3672   convert_to_periods_rndup(&flushfail_retry_periods);
3673   convert_to_periods_rndup(&backlog_retry_minperiods);
3674   convert_to_periods_rndup(&backlog_spontrescan_periods);
3675   convert_to_periods_rndup(&spontaneous_flush_periods);
3676   convert_to_periods_rndup(&max_separated_periods);
3677   convert_to_periods_rndup(&need_activity_periods);
3678
3679   if (max_bad_data_ratio < 0 || max_bad_data_ratio > 100)
3680     badusage("bad input data ratio must be between 0..100");
3681   max_bad_data_ratio *= 0.01;
3682
3683   if (!path_run)
3684     path_run= innconf->pathrun;
3685
3686   if (!feedfile) feedfile= sitename;
3687   if (!feedfile[0]) badusage("feed filename, if specified, must be nonempty");
3688   if (path_ends_slash(feedfile))
3689     feedfile= xasprintf("%s%s", feedfile, sitename);
3690   if (feedfile[0] != '/')
3691     feedfile= xasprintf("%s/%s", innconf->pathoutgoing, feedfile);
3692
3693   if (!path_cli) {
3694     path_cli_dir= "innduct";
3695   } else if (!path_cli[0] || !strcmp(path_cli,"none")) {
3696     path_cli= 0; /* ok, don't then */
3697   } else if (path_ends_slash(path_cli)) {
3698     path_cli_dir= xasprintf("%.*s", strlen(path_cli)-1, path_cli);
3699   }
3700   if (path_cli_dir)
3701     path_cli= xasprintf("%s/%s", path_cli_dir, sitename);
3702
3703   if (max_queue_per_ipf<0)
3704     max_queue_per_ipf= max_queue_per_conn * 2;
3705
3706   const char *feedfile_forbidden= "?*[~#";
3707   int c;
3708   while ((c= *feedfile_forbidden++))
3709     if (strchr(feedfile, c))
3710       badusage("feed filename may not contain metacharacter %c",c);
3711
3712   /* set things up */
3713
3714   path_lock=        xasprintf("%s_lock",      feedfile);
3715   path_flushing=    xasprintf("%s_flushing",  feedfile);
3716   path_defer=       xasprintf("%s_defer",     feedfile);
3717   path_dump=        xasprintf("%s_dump",      feedfile);
3718   globpat_backlog=  xasprintf("%s_backlog*",  feedfile);
3719
3720   oop_source_sys *sysloop= oop_sys_new();
3721   if (!sysloop) sysdie("could not create liboop event loop");
3722   loop= (oop_source*)sysloop;
3723
3724   LIST_INIT(conns);
3725
3726   if (become_daemon) {
3727     int i;
3728     for (i=3; i<255; i++)
3729       /* do this now before we open syslog, etc. */
3730       close(i);
3731     openlog("innduct",LOG_NDELAY|LOG_PID,LOG_NEWS);
3732
3733     int null= open("/dev/null",O_RDWR);
3734     if (null<0) sysfatal("failed to open /dev/null");
3735     dup2(null,0);
3736     dup2(null,1);
3737     dup2(null,2);
3738     xclose(null, "/dev/null original fd",0);
3739
3740     pid_t child1= xfork("daemonise first fork");
3741     if (child1) _exit(0);
3742
3743     pid_t sid= setsid();
3744     if (sid == -1) sysfatal("setsid failed");
3745
3746     pid_t child2= xfork("daemonise second fork");
3747     if (child2) _exit(0);
3748   }
3749
3750   self_pid= getpid();
3751   if (self_pid==-1) sysdie("getpid");
3752
3753   r= chdir(path_run);
3754   if (r) sysdie("could not chdir to pathrun %s", path_run);
3755
3756   statemc_lock();
3757
3758   init_signals();
3759
3760   notice("starting");
3761
3762   int val= 1;
3763   r= SMsetup(SM_PREOPEN, &val); if (!r) warn("SMsetup SM_PREOPEN failed");
3764   r= SMinit(); if (!r) die("storage manager initialisation (SMinit) failed");
3765
3766   if (!become_daemon)
3767     cli_stdio();
3768
3769   cli_init();
3770
3771   int filemon_ok= 0;
3772   if (!try_filemon) {
3773     notice("filemon: suppressed by command line option, polling");
3774   } else {
3775     filemon_ok= filemon_method_init();
3776     if (!filemon_ok)
3777       warn("filemon: no file monitoring available, polling");
3778   }
3779   if (!filemon_ok)
3780     every(filepoll_seconds,0,filepoll);
3781
3782   every(period_seconds,1,period);
3783
3784   statemc_init();
3785
3786   /* let's go */
3787
3788   void *run= oop_sys_run(sysloop);
3789   assert(run == OOP_ERROR);
3790   sysdie("event loop failed");
3791 }