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