chiark / gitweb /
c2aeb9dbf0b4824d1fc07c3cc6cda1ef7460b514
[inn-innduct.git] / backends / innduct.c
1 /*
2  *  innduct
3  *  tailing reliable realtime streaming feeder for inn
4  *
5  *  Copyright (C) 2010 Ian Jackson <ijackson@chiark.greenend.org.uk>
6  * 
7  *  This program is free software: you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation, either version 3 of the License, or
10  *  (at your option) any later version.
11  * 
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  * 
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  *
20  *  (I believe that when you compile and link this as part of the inn2
21  *  build, with the Makefile runes I have provided, all the libraries
22  *  and files which end up included in innduct are licence-compatible
23  *  with GPLv3.  If not then please let me know.  -Ian Jackson.)
24  */
25
26 /*
27  * Newsfeeds file entries should look like this:
28  *     host.name.of.site[/exclude,exclude,...]\
29  *             :pattern,pattern...[/distribution,distribution...]\
30  *             :Tf,Wnm
31  *             :
32  * or
33  *     sitename[/exclude,exclude,...]\
34  *             :pattern,pattern...[/distribution,distribution...]\
35  *             :Tf,Wnm
36  *             :host.name.of.site
37  *
38  * Four files full of
39  *    token messageid
40  * or might be blanked out
41  *    <spc><spc><spc><spc>....
42  *
43  * F site.name                 main feed file
44  *                                opened/created, then written, by innd
45  *                                read by duct
46  *                                unlinked by duct
47  *                                tokens blanked out by duct when processed
48  *   site.name_lock            lock preventing multiple ducts
49  *                                to hold lock must open,F_SETLK[W]
50  *                                  and then stat to check that locked file
51  *                                  still has name site.name_lock
52  *                                holder of this lock is "duct"
53  *                                (only) lockholder may remove the lockfile
54  * D site.name_flushing        temporary feed file during flush (or crash)
55  *                                hardlink created by duct
56  *                                unlinked by duct
57  *   site.name_defer           431'd articles, still being written,
58  *                                created, written, used by duct
59  *
60  *   site.name_backlog.<date>.<inum>
61  *                             431'd articles, ready for innxmit or duct
62  *                                created (link/mv) by duct
63  *   site.name_backlog<anything-else>  (where <anything-else> does not
64  *                                      contain '#' or '~') eg
65  *   site.name_backlog.manual
66  *                             anything the sysadmin likes (eg, feed files
67  *                             from old feeds to be merged into this one)
68  *                                created (link/mv) by admin
69  *                                may be symlinks (in which case links
70  *                                may be written through, but only links
71  *                                will be removed.
72  *
73  *                             It is safe to remove backlog files manually,
74  *                             if it's desired to throw away the backlog.
75  *
76  * Backlog files are also processed by innduct.  We find the oldest
77  * backlog file which is at least a certain amount old, and feed it
78  * back into our processing.  When every article in it has been read
79  * and processed, we unlink it and look for another backlog file.
80  *
81  * If we don't have a backlog file that we're reading, we close the
82  * defer file that we're writing and make it into a backlog file at
83  * the first convenient opportunity.
84  * -8<-
85
86
87    OVERALL STATES:
88
89                                                                 START
90                                                                   |
91      ,-->--.                                                 check F, D
92      |     |                                                      |
93      |     |                                                      |
94      |     |  <----------------<---------------------------------'|
95      |     |                                       F exists       |
96      |     |                                       D ENOENT       |
97      |     |  duct opens F                                        |
98      |     V                                                      |
99      |  Normal                                                    |
100      |   F: innd writing, duct reading                            |
101      |   D: ENOENT                                                |
102      |     |                                                      |
103      |     |  duct decides time to flush                          |
104      |     |  duct makes hardlink                                 |
105      |     |                                                      |
106      |     V                            <------------------------'|
107      |  Hardlinked                                  F==D          |
108      |   F == D: innd writing, duct reading         both exist    |
109      ^     |                                                      |
110      |     |  duct unlinks F                                      |
111      |     |                        <-----------<-------------<--'|
112      |     |                           open D         F ENOENT    |
113      |     |                           if exists                  |
114      |     |                                                      |
115      |     V                        <---------------------.       |
116      |  Moved                                             |       |
117      |   F: ENOENT                                        |       |
118      |   D: innd writing, duct reading; or ENOENT         |       |
119      |     |                                              |       |
120      |     |  duct requests flush of feed                 |       |
121      |     |   (others can too, harmlessly)               |       |
122      |     V                                              |       |
123      |  Flushing                                          |       |
124      |   F: ENOENT                                        |       |
125      |   D: innd flushing, duct; or ENOENT                |       |
126      |     |                                              |       |
127      |     |   inndcomm flush fails                       |       |
128      |     |`-------------------------->------------------'       |
129      |     |                                                      |
130      |     |   inndcomm reports no such site                      |
131      |     |`---------------------------------------------------- | -.
132      |     |                                                      |  |
133      |     |  innd finishes writing D, creates F                  |  |
134      |     |  inndcomm reports flush successful                   |  |
135      |     |                                                      |  |
136      |     V                                                      |  |
137      |  Separated                                <----------------'  |
138      |   F: innd writing                            F!=D             /
139      |   D: duct reading; or ENOENT                  both exist     /
140      |     |                                                       /
141      |     |  duct gets to the end of D                           /
142      |     |  duct opens F too                                   /
143      |     V                                                    /
144      |  Finishing                                              /
145      |   F: innd writing, duct reading                        |
146      |   D: duct finishing                                    V
147      |     |                                            Dropping
148      |     |  duct finishes processing D                 F: ENOENT
149      |     V  duct unlinks D                             D: duct reading
150      |     |                                                  |
151      `--<--'                                                  | duct finishes
152                                                               |  processing D
153                                                               | duct unlinks D
154                                                               | duct exits
155                                                               V
156                                                         Dropped
157                                                          F: ENOENT
158                                                          D: ENOENT
159                                                          duct not running
160
161    "duct reading" means innduct is reading the file but also
162    overwriting processed tokens.
163
164  * ->8- -^L-
165  *
166  * rune for printing diagrams:
167
168 perl -ne 'print if m/-8\<-/..m/-\>8-/; print "\f" if m/-\^L-/' backends/innduct.c |a2ps -R -B -ops
169
170  *
171  */
172
173 /*============================== PROGRAM ==============================*/
174
175 #define _GNU_SOURCE 1
176
177 #include "config.h"
178 #include "storage.h"
179 #include "nntp.h"
180 #include "libinn.h"
181 #include "inndcomm.h"
182
183 #include "inn/list.h"
184 #include "inn/innconf.h"
185 #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 const 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
2183   if (ipf->autodefer >= 0) {
2184     article_autodefer(ipf, art);
2185   } else {
2186     LIST_ADDTAIL(ipf->queue, art);
2187
2188     if (ipf==backlog_input_file)
2189       article_check_expired(art);
2190   }
2191
2192   if (sms==sm_NORMAL && ipf==main_input_file &&
2193       ipf->offset >= target_max_feedfile_size)
2194     statemc_start_flush("feed file size");
2195
2196   check_assign_articles(); /* may destroy conn but that's OK */
2197   check_reading_pause_resume(ipf);
2198   return OOP_CONTINUE;
2199 }
2200
2201 /*========== tailing input file ==========*/
2202
2203 static void *tailing_rable_call_time(oop_source *loop, struct timeval tv,
2204                                      void *user) {
2205   /* lifetime of ipf here is OK because destruction will cause
2206    * on_cancel which will cancel this callback */
2207   InputFile *ipf= user;
2208
2209   if (!ipf->fake_readable) return OOP_CONTINUE;
2210
2211   /* we just keep calling readable until our caller (oop_rd)
2212    * has called try_read, and try_read has found EOF so given EAGAIN */
2213   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2214
2215   return ipf->readable_callback(loop, &ipf->readable,
2216                                 ipf->readable_callback_user);
2217 }
2218
2219 static void tailing_on_cancel(struct oop_readable *rable) {
2220   InputFile *ipf= (void*)rable;
2221
2222   if (ipf->filemon) filemon_stop(ipf);
2223   loop->cancel_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2224   ipf->readable_callback= 0;
2225 }
2226
2227 static void tailing_make_readable(InputFile *ipf) {
2228   if (!ipf || !ipf->readable_callback) /* so callers can be naive */
2229     return;
2230   ipf->fake_readable= 1;
2231   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2232 }
2233
2234 static int tailing_on_readable(struct oop_readable *rable,
2235                                 oop_readable_call *cb, void *user) {
2236   InputFile *ipf= (void*)rable;
2237
2238   tailing_on_cancel(rable);
2239   ipf->readable_callback= cb;
2240   ipf->readable_callback_user= user;
2241   filemon_start(ipf);
2242   tailing_make_readable(ipf);
2243   return 0;
2244 }
2245
2246 static ssize_t tailing_try_read(struct oop_readable *rable, void *buffer,
2247                                 size_t length) {
2248   InputFile *ipf= (void*)rable;
2249   for (;;) {
2250     ssize_t r= read(ipf->fd, buffer, length);
2251     if (r==-1) {
2252       if (errno==EINTR) continue;
2253       ipf->fake_readable= 0;
2254       return r;
2255     }
2256     if (!r) {
2257       if (ipf==main_input_file) {
2258         errno=EAGAIN;
2259         ipf->fake_readable= 0;
2260         return -1;
2261       } else if (ipf==flushing_input_file) {
2262         assert(ipf->rd);
2263         assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2264       } else if (ipf==backlog_input_file) {
2265         assert(ipf->rd);
2266       } else {
2267         abort();
2268       }
2269     }
2270     return r;
2271   }
2272 }
2273
2274 /*---------- filemon implemented with inotify ----------*/
2275
2276 #if defined(HAVE_SYS_INOTIFY_H) && !defined(HAVE_FILEMON)
2277 #define HAVE_FILEMON
2278
2279 #include <sys/inotify.h>
2280
2281 static int filemon_inotify_fd;
2282 static int filemon_inotify_wdmax;
2283 static InputFile **filemon_inotify_wd2ipf;
2284
2285 struct Filemon_Perfile {
2286   int wd;
2287 };
2288
2289 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) {
2290   int wd= inotify_add_watch(filemon_inotify_fd, ipf->path, IN_MODIFY);
2291   if (wd < 0) sysdie("inotify_add_watch %s", ipf->path);
2292
2293   if (wd >= filemon_inotify_wdmax) {
2294     int newmax= wd+2;
2295     filemon_inotify_wd2ipf= xrealloc(filemon_inotify_wd2ipf,
2296                                  sizeof(*filemon_inotify_wd2ipf) * newmax);
2297     memset(filemon_inotify_wd2ipf + filemon_inotify_wdmax, 0,
2298            sizeof(*filemon_inotify_wd2ipf) * (newmax - filemon_inotify_wdmax));
2299     filemon_inotify_wdmax= newmax;
2300   }
2301
2302   assert(!filemon_inotify_wd2ipf[wd]);
2303   filemon_inotify_wd2ipf[wd]= ipf;
2304
2305   dbg("filemon inotify startfile %p wd=%d wdmax=%d",
2306       ipf, wd, filemon_inotify_wdmax);
2307
2308   pf->wd= wd;
2309 }
2310
2311 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) {
2312   int wd= pf->wd;
2313   dbg("filemon inotify stopfile %p wd=%d", ipf, wd);
2314   int r= inotify_rm_watch(filemon_inotify_fd, wd);
2315   if (r) syscrash("inotify_rm_watch");
2316   filemon_inotify_wd2ipf[wd]= 0;
2317 }
2318
2319 static void *filemon_inotify_readable(oop_source *lp, int fd,
2320                                       oop_event e, void *u) {
2321   struct inotify_event iev;
2322   for (;;) {
2323     int r= read(filemon_inotify_fd, &iev, sizeof(iev));
2324     if (r==-1) {
2325       if (isewouldblock(errno)) break;
2326       syscrash("read from inotify master");
2327     } else if (r==sizeof(iev)) {
2328       assert(iev.wd >= 0 && iev.wd < filemon_inotify_wdmax);
2329     } else {
2330       crash("inotify read %d bytes wanted struct of %d", r, (int)sizeof(iev));
2331     }
2332     InputFile *ipf= filemon_inotify_wd2ipf[iev.wd];
2333     /*dbg("filemon inotify readable read %p wd=%d", ipf, iev.wd);*/
2334     tailing_make_readable(ipf);
2335   }
2336   return OOP_CONTINUE;
2337 }
2338
2339 static int filemon_method_init(void) {
2340   filemon_inotify_fd= inotify_init();
2341   if (filemon_inotify_fd<0) {
2342     syswarn("filemon/inotify: inotify_init failed");
2343     return 0;
2344   }
2345   xsetnonblock(filemon_inotify_fd, 1);
2346   loop->on_fd(loop, filemon_inotify_fd, OOP_READ, filemon_inotify_readable, 0);
2347
2348   dbg("filemon inotify init filemon_inotify_fd=%d", filemon_inotify_fd);
2349   return 1;
2350 }
2351
2352 static void filemon_method_dump_info(FILE *f) {
2353   int i;
2354   fprintf(f,"inotify");
2355   DUMPV("%d",,filemon_inotify_fd);
2356   DUMPV("%d",,filemon_inotify_wdmax);
2357   for (i=0; i<filemon_inotify_wdmax; i++)
2358     fprintf(f," wd2ipf[%d]=%p\n", i, filemon_inotify_wd2ipf[i]);
2359 }
2360
2361 #endif /* HAVE_INOTIFY && !HAVE_FILEMON */
2362
2363 /*---------- filemon dummy implementation ----------*/
2364
2365 #if !defined(HAVE_FILEMON)
2366
2367 struct Filemon_Perfile { int dummy; };
2368
2369 static int filemon_method_init(void) {
2370   warn("filemon/dummy: no filemon method compiled in");
2371   return 0;
2372 }
2373 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) { }
2374 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) { }
2375 static void filemon_method_dump_info(FILE *f) { fprintf(f,"dummy\n"); }
2376
2377 #endif /* !HAVE_FILEMON */
2378
2379 /*---------- filemon generic interface ----------*/
2380
2381 static void filemon_start(InputFile *ipf) {
2382   assert(!ipf->filemon);
2383
2384   NEW(ipf->filemon);
2385   filemon_method_startfile(ipf, ipf->filemon);
2386 }
2387
2388 static void filemon_stop(InputFile *ipf) {
2389   if (!ipf->filemon) return;
2390   filemon_method_stopfile(ipf, ipf->filemon);
2391   free(ipf->filemon);
2392   ipf->filemon= 0;
2393 }
2394
2395 /*---------- interface to start and stop an input file ----------*/
2396
2397 static const oop_rd_style feedfile_rdstyle= {
2398   OOP_RD_DELIM_STRIP, '\n',
2399   OOP_RD_NUL_PERMIT,
2400   OOP_RD_SHORTREC_LONG,
2401 };
2402
2403 static void inputfile_reading_resume(InputFile *ipf) {
2404   if (!ipf->rd) return;
2405   if (!ipf->paused) return;
2406
2407   int r= oop_rd_read(ipf->rd, &feedfile_rdstyle, MAX_LINE_FEEDFILE,
2408                      feedfile_got_article,ipf, feedfile_read_err, ipf);
2409   if (r) syscrash("unable start reading feedfile %s",ipf->path);
2410
2411   ipf->paused= 0;
2412 }
2413
2414 static void inputfile_reading_pause(InputFile *ipf) {
2415   if (!ipf->rd) return;
2416   if (ipf->paused) return;
2417   oop_rd_cancel(ipf->rd);
2418   ipf->paused= 1;
2419 }
2420
2421 static void inputfile_reading_start(InputFile *ipf) {
2422   assert(!ipf->rd);
2423   ipf->readable.on_readable= tailing_on_readable;
2424   ipf->readable.on_cancel=   tailing_on_cancel;
2425   ipf->readable.try_read=    tailing_try_read;
2426   ipf->readable.delete_tidy= 0; /* we never call oop_rd_delete_{tidy,kill} */
2427   ipf->readable.delete_kill= 0;
2428
2429   ipf->readable_callback= 0;
2430   ipf->readable_callback_user= 0;
2431
2432   ipf->rd= oop_rd_new(loop, &ipf->readable, 0,0);
2433   assert(ipf->rd);
2434
2435   ipf->paused= 1;
2436   inputfile_reading_resume(ipf);
2437 }
2438
2439 static void inputfile_reading_stop(InputFile *ipf) {
2440   assert(ipf->rd);
2441   inputfile_reading_pause(ipf);
2442   oop_rd_delete(ipf->rd);
2443   ipf->rd= 0;
2444   assert(!ipf->filemon); /* we shouldn't be monitoring it now */
2445 }
2446
2447
2448 /*========== interaction with innd - state machine ==========*/
2449
2450 /* See official state diagram at top of file.  We implement
2451  * this as follows:
2452  * -8<-
2453
2454             .=======.
2455             ||START||
2456             `======='
2457                 |
2458                 | open F
2459                 |
2460                 |    F ENOENT
2461                 |`---------------------------------------------------.
2462       F OPEN OK |                                                    |
2463                 |`---------------- - - -                             |
2464        D ENOENT |       D EXISTS   see OVERALL STATES diagram        |
2465                 |                  for full startup logic            |
2466      ,--------->|                                                    |
2467      |          V                                                    |
2468      |     ============                                       try to |
2469      |      NORMAL                                            open D |
2470      |     [Normal]                                                  |
2471      |      main F tail                                              |
2472      |     ============                                              V
2473      |          |                                                    |
2474      |          | F IS SO BIG WE SHOULD FLUSH, OR TIMEOUT            |
2475      ^          | hardlink F to D                                    |
2476      |     [Hardlinked]                                              |
2477      |          | unlink F                                           |
2478      |          | our handle onto F is now onto D                    |
2479      |     [Moved]                                                   |
2480      |          |                                                    |
2481      |          |<-------------------<---------------------<---------+
2482      |          |                                                    |
2483      |          | spawn inndcomm flush                               |
2484      |          V                                                    |
2485      |     ==================                                        |
2486      |      FLUSHING[-ABSENT]                                        |
2487      |     [Flushing]                                                |
2488      |     main D tail/none                                          |
2489      |     ==================                                        |
2490      |          |                                                    |
2491      |          |   INNDCOMM FLUSH FAILS                             ^
2492      |          |`----------------------->----------.                |
2493      |          |                                   |                |
2494      |          |   NO SUCH SITE                    V                |
2495      ^          |`--------------->----.         ==================== |
2496      |          |                      \        FLUSHFAILED[-ABSENT] |
2497      |          |                       \         [Moved]            |
2498      |          | FLUSH OK               \       main D tail/none    |
2499      |          | open F                  \     ==================== |
2500      |          |                          \        |                |
2501      |          |                           \       | TIME TO RETRY  |
2502      |          |`------->----.     ,---<---'\      `----------------'
2503      |          |    D NONE   |     | D NONE  `----.
2504      |          V             |     |              V
2505      |     =============      V     V             ============
2506      |      SEPARATED-1       |     |              DROPPING-1
2507      |      flsh->rd!=0       |     |              flsh->rd!=0
2508      |     [Separated]        |     |             [Dropping]
2509      |      main F idle       |     |              main none
2510      |      flsh D tail       |     |              flsh D tail
2511      |     =============      |     |             ============
2512      |          |             |     | install       |
2513      ^          | EOF ON D    |     |  defer        | EOF ON D
2514      |          V             |     |               V
2515      |     ===============    |     |             ===============
2516      |      SEPARATED-2       |     |              DROPPING-2
2517      |      flsh->rd==0       |     V              flsh->rd==0
2518      |     [Finishing]        |     |             [Dropping]
2519      |      main F tail       |     `.             main none
2520      |      flsh D closed     |       `.           flsh D closed
2521      |     ===============    V         `.        ===============
2522      |          |                         `.          |
2523      |          | ALL D PROCESSED           `.        | ALL D PROCESSED
2524      |          V install defer as backlog    `.      | install defer
2525      ^          | close D                       `.    | close D
2526      |          | unlink D                        `.  | unlink D
2527      |          |                                  |  |
2528      |          |                                  V  V
2529      `----------'                               ==============
2530                                                  DROPPED
2531                                                 [Dropped]
2532                                                  main none
2533                                                  flsh none
2534                                                  some backlog
2535                                                 ==============
2536                                                       |
2537                                                       | ALL BACKLOG DONE
2538                                                       |
2539                                                       | unlink lock
2540                                                       | exit
2541                                                       V
2542                                                   ==========
2543                                                    (ESRCH)
2544                                                   [Droppped]
2545                                                   ==========
2546  * ->8-
2547  */
2548
2549 static void startup_set_input_file(InputFile *f) {
2550   assert(!main_input_file);
2551   main_input_file= f;
2552   inputfile_reading_start(f);
2553 }
2554
2555 static void statemc_lock(void) {
2556   int lockfd;
2557   struct stat stab, stabf;
2558   
2559   for (;;) {
2560     lockfd= open(path_lock, O_CREAT|O_RDWR, 0600);
2561     if (lockfd<0) sysdie("open lockfile %s", path_lock);
2562
2563     struct flock fl;
2564     memset(&fl,0,sizeof(fl));
2565     fl.l_type= F_WRLCK;
2566     fl.l_whence= SEEK_SET;
2567     int r= fcntl(lockfd, F_SETLK, &fl);
2568     if (r==-1) {
2569       if (errno==EACCES || isewouldblock(errno)) {
2570         if (quiet_multiple) exit(0);
2571         die("another duct holds the lockfile");
2572       }
2573       sysdie("fcntl F_SETLK lockfile %s", path_lock);
2574     }
2575
2576     xfstat_isreg(lockfd, &stabf, path_lock, "lockfile");
2577     int lock_noent;
2578     xlstat_isreg(path_lock, &stab, &lock_noent, "lockfile");
2579
2580     if (!lock_noent && samefile(&stab, &stabf))
2581       break;
2582
2583     xclose(lockfd, "stale lockfile ", path_lock);
2584   }
2585
2586   FILE *lockfile= fdopen(lockfd, "w");
2587   if (!lockfile) syscrash("fdopen lockfile");
2588
2589   int r= ftruncate(lockfd, 0);
2590   if (r) syscrash("truncate lockfile to write new info");
2591
2592   if (fprintf(lockfile, "pid %ld\nsite %s\nfeedfile %s\nfqdn %s\n",
2593               (unsigned long)self_pid,
2594               sitename, feedfile, remote_host) == EOF ||
2595       fflush(lockfile))
2596     sysdie("write info to lockfile %s", path_lock);
2597
2598   dbg("startup: locked");
2599 }
2600
2601 static void statemc_init(void) {
2602   struct stat stabdefer;
2603
2604   search_backlog_file();
2605
2606   int defer_noent;
2607   xlstat_isreg(path_defer, &stabdefer, &defer_noent, "defer file");
2608   if (defer_noent) {
2609     dbg("startup: ductdefer ENOENT");
2610   } else {
2611     dbg("startup: ductdefer nlink=%ld", (long)stabdefer.st_nlink);
2612     switch (stabdefer.st_nlink==1) {
2613     case 1:
2614       open_defer(); /* so that we will later close it and rename it */
2615       break;
2616     case 2:
2617       xunlink(path_defer, "stale defer file link"
2618               " (presumably hardlink to backlog file)");
2619       break;
2620     default:
2621       crash("defer file %s has unexpected link count %d",
2622             path_defer, stabdefer.st_nlink);
2623     }
2624   }
2625
2626   struct stat stab_f, stab_d;
2627   int noent_f;
2628
2629   InputFile *file_d= open_input_file(path_flushing);
2630   if (file_d) xfstat_isreg(file_d->fd, &stab_d, path_flushing,"flushing file");
2631
2632   xlstat_isreg(feedfile, &stab_f, &noent_f, "feedfile");
2633
2634   if (!noent_f && file_d && samefile(&stab_f, &stab_d)) {
2635     dbg("startup: F==D => Hardlinked");
2636     xunlink(feedfile, "feed file (during startup)"); /* => Moved */
2637     noent_f= 1;
2638   }
2639
2640   if (noent_f) {
2641     dbg("startup: F ENOENT => Moved");
2642     if (file_d) startup_set_input_file(file_d);
2643     spawn_inndcomm_flush("feedfile missing at startup");
2644     /* => Flushing, sms:=FLUSHING */
2645   } else {
2646     if (file_d) {
2647       dbg("startup: F!=D => Separated");
2648       startup_set_input_file(file_d);
2649       flushing_input_file= main_input_file;
2650       main_input_file= open_input_file(feedfile);
2651       if (!main_input_file) crash("feedfile vanished during startup");
2652       SMS(SEPARATED, max_separated_periods,
2653           "found both old and current feed files");
2654     } else {
2655       dbg("startup: F exists, D ENOENT => Normal");
2656       InputFile *file_f= open_input_file(feedfile);
2657       if (!file_f) crash("feed file vanished during startup");
2658       startup_set_input_file(file_f);
2659       SMS(NORMAL, spontaneous_flush_periods, "normal startup");
2660     }
2661   }
2662 }
2663
2664 static void statemc_start_flush(const char *why) { /* Normal => Flushing */
2665   assert(sms == sm_NORMAL);
2666
2667   dbg("starting flush (%s) (%lu >?= %lu) (%d)",
2668         why,
2669         (unsigned long)(main_input_file ? main_input_file->offset : 0),
2670         (unsigned long)target_max_feedfile_size,
2671         until_flush);
2672
2673   int r= link(feedfile, path_flushing);
2674   if (r) sysdie("link feedfile %s to flushing file %s",
2675                 feedfile, path_flushing);
2676   /* => Hardlinked */
2677
2678   xunlink(feedfile, "old feedfile link");
2679   /* => Moved */
2680
2681   spawn_inndcomm_flush(why); /* => Flushing FLUSHING */
2682 }
2683
2684 static int trigger_flush_ok(const char *why) {
2685   switch (sms) {
2686
2687   case sm_NORMAL:
2688     statemc_start_flush(why ? why : "periodic");
2689     return 1;                           /* Normal => Flushing; => FLUSHING */
2690
2691   case sm_FLUSHFAILED:
2692     spawn_inndcomm_flush(why ? why : "retry");
2693     return 1;                            /* Moved => Flushing; => FLUSHING */
2694
2695   case sm_SEPARATED:
2696   case sm_DROPPING:
2697     warn("abandoning old feedfile after flush (%s), autodeferring",
2698          why ? why : "took too long to complete");
2699     assert(flushing_input_file);
2700     autodefer_input_file(flushing_input_file);
2701     return 1;
2702
2703   default:
2704     return 0;
2705   }
2706 }
2707
2708 static void statemc_period_poll(void) {
2709   if (!until_flush) return;
2710   until_flush--;
2711   assert(until_flush>=0);
2712
2713   if (until_flush) return;
2714   int ok= trigger_flush_ok(0);
2715   assert(ok);
2716 }
2717
2718 static int inputfile_is_done(InputFile *ipf) {
2719   if (!ipf) return 0;
2720   if (ipf->inprogress) return 0; /* new article in the meantime */
2721   if (ipf->rd) return 0; /* not had EOF */
2722   return 1;
2723 }
2724
2725 static void notice_processed(InputFile *ipf, int completed,
2726                              const char *what, const char *spec) {
2727   if (!ipf) return; /* allows preterminate to be lazy */
2728
2729 #define RCI_NOTHING(x) /* nothing */
2730 #define RCI_TRIPLE_FMT(x) " " #x "=" RCI_TRIPLE_FMT_BASE
2731 #define RCI_TRIPLE_VALS(x) , RCI_TRIPLE_VALS_BASE(ipf->counts, [RC_##x])
2732
2733 #define CNT(art,rc) (ipf->counts[art_##art][RC_##rc])
2734
2735   char *inprog= completed
2736     ? xasprintf("%s","") /* GCC produces a stupid warning for printf("") ! */
2737     : xasprintf(" inprogress=%ld", ipf->inprogress);
2738   char *autodefer= ipf->autodefer >= 0
2739     ? xasprintf(" autodeferred=%ld", ipf->autodefer)
2740     : xasprintf("%s","");
2741
2742   info("%s %s%s read=%d (+bl=%d,+err=%d)%s%s"
2743        " missing=%d offered=%d (ch=%d,nc=%d) accepted=%d (ch=%d,nc=%d)"
2744        RESULT_COUNTS(RCI_NOTHING, RCI_TRIPLE_FMT)
2745        ,
2746        completed?"completed":"processed", what, spec,
2747        ipf->readcount_ok, ipf->readcount_blank, ipf->readcount_err,
2748        inprog, autodefer, ipf->count_nooffer_missing,
2749        CNT(Unchecked,sent) + CNT(Unsolicited,sent)
2750        , CNT(Unchecked,sent), CNT(Unsolicited,sent),
2751        CNT(Wanted,accepted) + CNT(Unsolicited,accepted)
2752        , CNT(Wanted,accepted), CNT(Unsolicited,accepted)
2753        RESULT_COUNTS(RCI_NOTHING,  RCI_TRIPLE_VALS)
2754        );
2755
2756   free(inprog);
2757   free(autodefer);
2758
2759 #undef CNT
2760 }
2761
2762 static void statemc_check_backlog_done(void) {
2763   InputFile *ipf= backlog_input_file;
2764   if (!inputfile_is_done(ipf)) return;
2765
2766   const char *slash= strrchr(ipf->path, '/');
2767   const char *leaf= slash ? slash+1 : ipf->path;
2768   const char *under= strchr(slash, '_');
2769   const char *rest= under ? under+1 : leaf;
2770   if (!strncmp(rest,"backlog",7)) rest += 7;
2771   notice_processed(ipf,1,"backlog ",rest);
2772
2773   close_input_file(ipf);
2774   if (unlink(ipf->path)) {
2775     if (errno != ENOENT)
2776       syscrash("could not unlink processed backlog file %s", ipf->path);
2777     warn("backlog file %s vanished while we were reading it"
2778          " so we couldn't remove it (but it's done now, anyway)",
2779          ipf->path);
2780   }
2781   free(ipf);
2782   backlog_input_file= 0;
2783   search_backlog_file();
2784   return;
2785 }
2786
2787 static void statemc_check_flushing_done(void) {
2788   InputFile *ipf= flushing_input_file;
2789   if (!inputfile_is_done(ipf)) return;
2790
2791   assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2792
2793   notice_processed(ipf,1,"feedfile","");
2794
2795   close_defer();
2796
2797   xunlink(path_flushing, "old flushing file");
2798
2799   close_input_file(flushing_input_file);
2800   free(flushing_input_file);
2801   flushing_input_file= 0;
2802
2803   if (sms==sm_SEPARATED) {
2804     notice("flush complete");
2805     SMS(NORMAL, spontaneous_flush_periods, "flush complete");
2806   } else if (sms==sm_DROPPING) {
2807     SMS(DROPPED, max_separated_periods, "old flush complete");
2808     search_backlog_file();
2809     notice("feed dropped, but will continue until backlog is finished");
2810   }
2811 }
2812
2813 static void *statemc_check_input_done(oop_source *lp, struct timeval now,
2814                                       void *u) {
2815   /* main input file may be idle but if so that's because
2816    * we haven't got to it yet, but that doesn't mean it's really done */
2817   statemc_check_flushing_done();
2818   statemc_check_backlog_done();
2819   return OOP_CONTINUE;
2820 }
2821
2822 static void queue_check_input_done(void) {
2823   loop->on_time(loop, OOP_TIME_NOW, statemc_check_input_done, 0);
2824 }
2825
2826 static void statemc_setstate(StateMachineState newsms, int periods,
2827                              const char *forlog, const char *why) {
2828   sms= newsms;
2829   until_flush= periods;
2830
2831   const char *xtra= "";
2832   switch (sms) {
2833   case sm_FLUSHING:
2834   case sm_FLUSHFAILED:
2835     if (!main_input_file) xtra= "-ABSENT";
2836     break;
2837   case sm_SEPARATED:
2838   case sm_DROPPING:
2839     xtra= flushing_input_file->rd ? "-1" : "-2";
2840     break;
2841   default:;
2842   }
2843
2844   if (periods) {
2845     info("state %s%s[%d] %s",forlog,xtra,periods,why);
2846   } else {
2847     info("state %s%s %s",forlog,xtra,why);
2848   }
2849 }
2850
2851 /*---------- defer and backlog files ----------*/
2852
2853 static void open_defer(void) {
2854   struct stat stab;
2855
2856   if (defer) return;
2857
2858   defer= fopen(path_defer, "a+");
2859   if (!defer) sysdie("could not open defer file %s", path_defer);
2860
2861   /* truncate away any half-written records */
2862
2863   xfstat_isreg(fileno(defer), &stab, path_defer, "newly opened defer file");
2864
2865   if (stab.st_size > LONG_MAX)
2866     crash("defer file %s size is far too large", path_defer);
2867
2868   if (!stab.st_size)
2869     return;
2870
2871   long orgsize= stab.st_size;
2872   long truncto= stab.st_size;
2873   for (;;) {
2874     if (!truncto) break; /* was only (if anything) one half-truncated record */
2875     if (fseek(defer, truncto-1, SEEK_SET) < 0)
2876       syscrash("seek in defer file %s while truncating partial", path_defer);
2877
2878     int r= getc(defer);
2879     if (r==EOF) {
2880       if (ferror(defer))
2881         syscrash("failed read from defer file %s", path_defer);
2882       else
2883         crash("defer file %s shrank while we were checking it!", path_defer);
2884     }
2885     if (r=='\n') break;
2886     truncto--;
2887   }
2888
2889   if (stab.st_size != truncto) {
2890     warn("truncating half-record at end of defer file %s -"
2891          " shrinking by %ld bytes from %ld to %ld",
2892          path_defer, orgsize - truncto, orgsize, truncto);
2893
2894     if (fflush(defer))
2895       sysdie("could not flush defer file %s", path_defer);
2896     if (ftruncate(fileno(defer), truncto))
2897       syscrash("could not truncate defer file %s", path_defer);
2898
2899   } else {
2900     info("continuing existing defer file %s (%ld bytes)",
2901          path_defer, orgsize);
2902   }
2903   if (fseek(defer, truncto, SEEK_SET))
2904     syscrash("could not seek to new end of defer file %s", path_defer);
2905 }
2906
2907 static void close_defer(void) {
2908   if (!defer)
2909     return;
2910
2911   struct stat stab;
2912   xfstat_isreg(fileno(defer), &stab, path_defer, "defer file");
2913
2914   if (fclose(defer)) sysdie("could not close defer file %s", path_defer);
2915   defer= 0;
2916
2917   time_t now= xtime();
2918
2919   char *backlog= xasprintf("%s_backlog_%lu.%lu", feedfile,
2920                            (unsigned long)now,
2921                            (unsigned long)stab.st_ino);
2922   if (link(path_defer, backlog))
2923     sysdie("could not install defer file %s as backlog file %s",
2924            path_defer, backlog);
2925   if (unlink(path_defer))
2926     syscrash("could not unlink old defer link %s to backlog file %s",
2927              path_defer, backlog);
2928
2929   free(backlog);
2930
2931   if (until_backlog_nextscan < 0 ||
2932       until_backlog_nextscan > backlog_retry_minperiods + 1)
2933     until_backlog_nextscan= backlog_retry_minperiods + 1;
2934 }
2935
2936 static void poll_backlog_file(void) {
2937   if (until_backlog_nextscan < 0) return;
2938   if (until_backlog_nextscan-- > 0) return;
2939   search_backlog_file();
2940 }
2941
2942 static void search_backlog_file(void) {
2943   /* returns non-0 iff there are any backlog files */
2944
2945   glob_t gl;
2946   int r, i;
2947   struct stat stab;
2948   const char *oldest_path=0;
2949   time_t oldest_mtime=0, now;
2950
2951   if (backlog_input_file) return;
2952
2953  try_again:
2954
2955   r= glob(globpat_backlog, GLOB_ERR|GLOB_MARK|GLOB_NOSORT, 0, &gl);
2956
2957   switch (r) {
2958   case GLOB_ABORTED:
2959     sysdie("failed to expand backlog pattern %s", globpat_backlog);
2960   case GLOB_NOSPACE:
2961     die("out of memory expanding backlog pattern %s", globpat_backlog);
2962   case 0:
2963     for (i=0; i<gl.gl_pathc; i++) {
2964       const char *path= gl.gl_pathv[i];
2965
2966       if (strchr(path,'#') || strchr(path,'~')) {
2967         dbg("backlog file search skipping %s", path);
2968         continue;
2969       }
2970       r= stat(path, &stab);
2971       if (r) {
2972         syswarn("failed to stat backlog file %s", path);
2973         continue;
2974       }
2975       if (!S_ISREG(stab.st_mode)) {
2976         warn("backlog file %s is not a plain file (or link to one)", path);
2977         continue;
2978       }
2979       if (!oldest_path || stab.st_mtime < oldest_mtime) {
2980         oldest_path= path;
2981         oldest_mtime= stab.st_mtime;
2982       }
2983     }
2984   case GLOB_NOMATCH: /* fall through */
2985     break;
2986   default:
2987     syscrash("glob expansion of backlog pattern %s gave unexpected"
2988              " nonzero (error?) return value %d", globpat_backlog, r);
2989   }
2990
2991   if (!oldest_path) {
2992     dbg("backlog scan: none");
2993
2994     if (sms==sm_DROPPED) {
2995       preterminate();
2996       notice("feed dropped and our work is complete");
2997
2998       int r= unlink(path_cli);
2999       if (r && errno!=ENOENT)
3000         syswarn("failed to unlink cli socket for old feed");
3001
3002       xunlink(path_lock, "lockfile for old feed");
3003       exit(4);
3004     }
3005     until_backlog_nextscan= backlog_spontrescan_periods;
3006     goto xfree;
3007   }
3008
3009   now= xtime();
3010   double age= difftime(now, oldest_mtime);
3011   long age_deficiency= (backlog_retry_minperiods * period_seconds) - age;
3012
3013   if (age_deficiency <= 0) {
3014     dbg("backlog scan: found age=%f deficiency=%ld oldest=%s",
3015           age, age_deficiency, oldest_path);
3016
3017     backlog_input_file= open_input_file(oldest_path);
3018     if (!backlog_input_file) {
3019       warn("backlog file %s vanished as we opened it", oldest_path);
3020       globfree(&gl);
3021       goto try_again;
3022     }
3023     inputfile_reading_start(backlog_input_file);
3024     until_backlog_nextscan= -1;
3025     goto xfree;
3026   }
3027
3028   until_backlog_nextscan= age_deficiency / period_seconds;
3029
3030   if (backlog_spontrescan_periods >= 0 &&
3031       until_backlog_nextscan > backlog_spontrescan_periods)
3032     until_backlog_nextscan= backlog_spontrescan_periods;
3033
3034   dbg("backlog scan: young age=%f deficiency=%ld nextscan=%d oldest=%s",
3035         age, age_deficiency, until_backlog_nextscan, oldest_path);
3036
3037  xfree:
3038   globfree(&gl);
3039   return;
3040 }
3041
3042 /*---------- shutdown and signal handling ----------*/
3043
3044 static void preterminate(void) {
3045   if (in_child) return;
3046   notice_processed(main_input_file,0,"feedfile","");
3047   notice_processed(flushing_input_file,0,"flushing","");
3048   if (backlog_input_file)
3049     notice_processed(backlog_input_file,0, "backlog file ",
3050                      backlog_input_file->path);
3051 }
3052
3053 static int signal_self_pipe[2];
3054 static sig_atomic_t terminate_sig_flag;
3055
3056 static void raise_default(int signo) {
3057   xsigsetdefault(signo);
3058   raise(signo);
3059   abort();
3060 }
3061
3062 static void *sigarrived_event(oop_source *lp, int fd, oop_event e, void *u) {
3063   assert(fd=signal_self_pipe[0]);
3064   char buf[PIPE_BUF];
3065   int r= read(signal_self_pipe[0], buf, sizeof(buf));
3066   if (r<0 && !isewouldblock(errno))
3067     syscrash("failed to read signal self pipe");
3068   if (r==0) crash("eof on signal self pipe");
3069   if (terminate_sig_flag) {
3070     preterminate();
3071     notice("terminating (%s)", strsignal(terminate_sig_flag));
3072     raise_default(terminate_sig_flag);
3073   }
3074   return OOP_CONTINUE;
3075 }
3076
3077 static void sigarrived_handler(int signum) {
3078   static char x;
3079   switch (signum) {
3080   case SIGTERM:
3081   case SIGINT:
3082     if (!terminate_sig_flag) terminate_sig_flag= signum;
3083     break;
3084   default:
3085     abort();
3086   }
3087   write(signal_self_pipe[1],&x,1);
3088 }
3089
3090 static void init_signals(void) {
3091   if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
3092     syscrash("could not ignore SIGPIPE");
3093
3094   if (pipe(signal_self_pipe)) sysdie("create self-pipe for signals");
3095
3096   xsetnonblock(signal_self_pipe[0],1);
3097   xsetnonblock(signal_self_pipe[1],1);
3098
3099   struct sigaction sa;
3100   memset(&sa,0,sizeof(sa));
3101   sa.sa_handler= sigarrived_handler;
3102   sa.sa_flags= SA_RESTART;
3103   xsigaction(SIGTERM,&sa);
3104   xsigaction(SIGINT,&sa);
3105
3106   on_fd_read_except(signal_self_pipe[0], sigarrived_event);
3107 }
3108
3109 /*========== flushing the feed ==========*/
3110
3111 static pid_t inndcomm_child;
3112 static int inndcomm_sentinel_fd;
3113
3114 static void *inndcomm_event(oop_source *lp, int fd, oop_event e, void *u) {
3115   assert(inndcomm_child);
3116   assert(fd == inndcomm_sentinel_fd);
3117   int status= xwaitpid(&inndcomm_child, "inndcomm");
3118   inndcomm_child= 0;
3119   
3120   cancel_fd_read_except(fd);
3121   xclose_perhaps(&fd, "inndcomm sentinel pipe",0);
3122   inndcomm_sentinel_fd= 0;
3123
3124   assert(!flushing_input_file);
3125
3126   if (WIFEXITED(status)) {
3127     switch (WEXITSTATUS(status)) {
3128
3129     case INNDCOMMCHILD_ESTATUS_FAIL:
3130       goto failed;
3131
3132     case INNDCOMMCHILD_ESTATUS_NONESUCH:
3133       notice("feed has been dropped by innd, finishing up");
3134       flushing_input_file= main_input_file;
3135       tailing_make_readable(flushing_input_file);
3136         /* we probably previously returned EAGAIN from our fake read method
3137          * when in fact we were at EOF, so signal another readable event
3138          * so we actually see the EOF */
3139
3140       main_input_file= 0;
3141
3142       if (flushing_input_file) {
3143         SMS(DROPPING, max_separated_periods,
3144             "feed dropped by innd, but must finish last flush");
3145       } else {
3146         close_defer();
3147         SMS(DROPPED, 0, "feed dropped by innd");
3148         search_backlog_file();
3149       }
3150       return OOP_CONTINUE;
3151
3152     case 0:
3153       /* as above */
3154       flushing_input_file= main_input_file;
3155       tailing_make_readable(flushing_input_file);
3156
3157       main_input_file= open_input_file(feedfile);
3158       if (!main_input_file)
3159         crash("flush succeeded but feedfile %s does not exist!"
3160               " (this probably means feedfile does not correspond"
3161               " to site %s in newsfeeds)", feedfile, sitename);
3162
3163       if (flushing_input_file) {
3164         SMS(SEPARATED, max_separated_periods, "flush complete");
3165       } else {
3166         close_defer();
3167         SMS(NORMAL, spontaneous_flush_periods, "recovery flush complete");
3168       }
3169       return OOP_CONTINUE;
3170
3171     default:
3172       goto unexpected_exitstatus;
3173
3174     }
3175   } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
3176     warn("flush timed out trying to talk to innd");
3177     goto failed;
3178   } else {
3179   unexpected_exitstatus:
3180     report_child_status("inndcomm child", status);
3181   }
3182
3183  failed:
3184   SMS(FLUSHFAILED, flushfail_retry_periods, "flush failed, will retry");
3185   return OOP_CONTINUE;
3186 }
3187
3188 static void inndcommfail(const char *what) {
3189   syswarn("error communicating with innd: %s failed: %s", what, ICCfailure);
3190   exit(INNDCOMMCHILD_ESTATUS_FAIL);
3191 }
3192
3193 void spawn_inndcomm_flush(const char *why) { /* Moved => Flushing */
3194   int pipefds[2];
3195
3196   notice("flushing %s",why);
3197
3198   assert(sms==sm_NORMAL || sms==sm_FLUSHFAILED);
3199   assert(!inndcomm_child);
3200   assert(!inndcomm_sentinel_fd);
3201
3202   if (pipe(pipefds)) sysdie("create pipe for inndcomm child sentinel");
3203
3204   inndcomm_child= xfork("inndcomm child");
3205
3206   if (!inndcomm_child) {
3207     const char *flushargv[2]= { sitename, 0 };
3208     char *reply;
3209     int r;
3210
3211     xclose(pipefds[0], "(in child) inndcomm sentinel parent's end",0);
3212     /* parent spots the autoclose of pipefds[1] when we die or exit */
3213
3214     if (simulate_flush>=0) {
3215       warn("SIMULATING flush child status %d", simulate_flush);
3216       if (simulate_flush>128) raise(simulate_flush-128);
3217       else exit(simulate_flush);
3218     }
3219
3220     alarm(inndcomm_flush_timeout);
3221     r= ICCopen();                         if (r)   inndcommfail("connect");
3222     r= ICCcommand('f',flushargv,&reply);  if (r<0) inndcommfail("transmit");
3223     if (!r) exit(0); /* yay! */
3224
3225     if (!strcmp(reply, "1 No such site")) exit(INNDCOMMCHILD_ESTATUS_NONESUCH);
3226     syswarn("innd ctlinnd flush failed: innd said %s", reply);
3227     exit(INNDCOMMCHILD_ESTATUS_FAIL);
3228   }
3229
3230   simulate_flush= -1;
3231
3232   xclose(pipefds[1], "inndcomm sentinel child's end",0);
3233   inndcomm_sentinel_fd= pipefds[0];
3234   assert(inndcomm_sentinel_fd);
3235   on_fd_read_except(inndcomm_sentinel_fd, inndcomm_event);
3236
3237   SMS(FLUSHING, 0, why);
3238 }
3239
3240 /*========== main program ==========*/
3241
3242 static void postfork_inputfile(InputFile *ipf) {
3243   if (!ipf) return;
3244   xclose(ipf->fd, "(in child) input file ", ipf->path);
3245 }
3246
3247 static void postfork_stdio(FILE *f, const char *what, const char *what2) {
3248   /* we have no stdio streams that are buffered long-term */
3249   if (!f) return;
3250   if (fclose(f)) syscrash("(in child) close %s%s", what, what2?what2:0);
3251 }
3252
3253 static void postfork(void) {
3254   in_child= 1;
3255
3256   xsigsetdefault(SIGTERM);
3257   xsigsetdefault(SIGINT);
3258   xsigsetdefault(SIGPIPE);
3259   if (terminate_sig_flag) raise(terminate_sig_flag);
3260
3261   postfork_inputfile(main_input_file);
3262   postfork_inputfile(flushing_input_file);
3263
3264   Conn *conn;
3265   FOR_CONN(conn)
3266     conn_closefd(conn,"(in child) ");
3267
3268   postfork_stdio(defer, "defer file ", path_defer);
3269 }
3270
3271 typedef struct Every Every;
3272 struct Every {
3273   struct timeval interval;
3274   int fixed_rate;
3275   void (*f)(void);
3276 };
3277
3278 static void every_schedule(Every *e, struct timeval base);
3279
3280 static void *every_happens(oop_source *lp, struct timeval base, void *e_v) {
3281   Every *e= e_v;
3282   e->f();
3283   if (!e->fixed_rate) xgettimeofday(&base);
3284   every_schedule(e, base);
3285   return OOP_CONTINUE;
3286 }
3287
3288 static void every_schedule(Every *e, struct timeval base) {
3289   struct timeval when;
3290   timeradd(&base, &e->interval, &when);
3291   loop->on_time(loop, when, every_happens, e);
3292 }
3293
3294 static void every(int interval, int fixed_rate, void (*f)(void)) {
3295   NEW_DECL(Every *,e);
3296   e->interval.tv_sec= interval;
3297   e->interval.tv_usec= 0;
3298   e->fixed_rate= fixed_rate;
3299   e->f= f;
3300   struct timeval now;
3301   xgettimeofday(&now);
3302   every_schedule(e, now);
3303 }
3304
3305 static void filepoll(void) {
3306   tailing_make_readable(main_input_file);
3307   tailing_make_readable(flushing_input_file);
3308 }
3309
3310 static char *dbg_report_ipf(InputFile *ipf) {
3311   if (!ipf) return xasprintf("none");
3312
3313   const char *slash= strrchr(ipf->path,'/');
3314   const char *path= slash ? slash+1 : ipf->path;
3315
3316   return xasprintf("%p/%s:queue=%d,ip=%ld,autodef=%ld,off=%ld,fd=%d%s%s%s",
3317                    ipf, path,
3318                    ipf->queue.count, ipf->inprogress, ipf->autodefer,
3319                    (long)ipf->offset, ipf->fd,
3320                    ipf->rd ? "" : ",!rd",
3321                    ipf->skippinglong ? "*skiplong" : "",
3322                    ipf->rd && ipf->paused ? "*paused" : "");
3323 }
3324
3325 static void period(void) {
3326   char *dipf_main=     dbg_report_ipf(main_input_file);
3327   char *dipf_flushing= dbg_report_ipf(flushing_input_file);
3328   char *dipf_backlog=  dbg_report_ipf(backlog_input_file);
3329
3330   dbg("PERIOD"
3331       " sms=%s[%d] conns=%d until_connect=%d"
3332       " input_files main:%s flushing:%s backlog:%s[%d]"
3333       " children connecting=%ld inndcomm=%ld lowvol_total=%d"
3334       ,
3335       sms_names[sms], until_flush, conns.count, until_connect,
3336       dipf_main, dipf_flushing, dipf_backlog, until_backlog_nextscan,
3337       (long)connecting_child, (long)inndcomm_child, lowvol_total
3338       );
3339
3340   free(dipf_main);
3341   free(dipf_flushing);
3342   free(dipf_backlog);
3343
3344   if (until_connect) until_connect--;
3345
3346   inputfile_queue_check_expired(backlog_input_file);
3347   poll_backlog_file();
3348   if (!backlog_input_file) close_defer(); /* want to start on a new backlog */
3349   statemc_period_poll();
3350   check_assign_articles();
3351   check_idle_conns();
3352 }
3353
3354
3355 /*========== dumping state ==========*/
3356
3357 static void dump_article_list(FILE *f, const CliCommand *c,
3358                               const ArticleList *al) {
3359   fprintf(f, " count=%d\n", al->count);
3360   if (!c->xval) return;
3361   
3362   int i; Article *art;
3363   for (i=0, art=LIST_HEAD(*al); art; i++, art=LIST_NEXT(art)) {
3364     fprintf(f," #%05d %-11s", i, artstate_names[art->state]);
3365     DUMPV("%p", art->,ipf);
3366     DUMPV("%d", art->,missing);
3367     DUMPV("%lu", (unsigned long)art->,offset);
3368     DUMPV("%d", art->,blanklen);
3369     DUMPV("%d", art->,midlen);
3370     fprintf(f, " %s %s\n", TokenToText(art->token), art->messageid);
3371   }
3372 }
3373   
3374 static void dump_input_file(FILE *f, const CliCommand *c,
3375                             InputFile *ipf, const char *wh) {
3376   char *dipf= dbg_report_ipf(ipf);
3377   fprintf(f,"input %s %s", wh, dipf);
3378   free(dipf);
3379   
3380   if (ipf) {
3381     DUMPV("%d", ipf->,readcount_ok);
3382     DUMPV("%d", ipf->,readcount_blank);
3383     DUMPV("%d", ipf->,readcount_err);
3384     DUMPV("%d", ipf->,count_nooffer_missing);
3385   }
3386   fprintf(f,"\n");
3387   if (ipf) {
3388     ArtState state; const char *const *statename; 
3389     for (state=0, statename=artstate_names; *statename; state++,statename++) {
3390 #define RC_DUMP_FMT(x) " " #x "=%d"
3391 #define RC_DUMP_VAL(x) ,ipf->counts[state][RC_##x]
3392       fprintf(f,"input %s counts %-11s"
3393               RESULT_COUNTS(RC_DUMP_FMT,RC_DUMP_FMT) "\n",
3394               wh, *statename
3395               RESULT_COUNTS(RC_DUMP_VAL,RC_DUMP_VAL));
3396     }
3397     fprintf(f,"input %s queue", wh);
3398     dump_article_list(f,c,&ipf->queue);
3399   }
3400 }
3401
3402 CCMD(dump) {
3403   int i;
3404   fprintf(cc->out, "dumping state to %s\n", path_dump);
3405   FILE *f= fopen(path_dump, "w");
3406   if (!f) { fprintf(cc->out, "failed: open: %s\n", strerror(errno)); return; }
3407
3408   fprintf(f,"general");
3409   DUMPV("%s", sms_names,[sms]);
3410   DUMPV("%d", ,until_flush);
3411   DUMPV("%ld", (long),self_pid);
3412   DUMPV("%p", , defer);
3413   DUMPV("%d", , until_connect);
3414   DUMPV("%d", , until_backlog_nextscan);
3415   DUMPV("%d", , simulate_flush);
3416   fprintf(f,"\nnocheck");
3417   DUMPV("%#.10f", , accept_proportion);
3418   DUMPV("%d", , nocheck);
3419   DUMPV("%d", , nocheck_reported);
3420   fprintf(f,"\n");
3421
3422   fprintf(f,"special");
3423   DUMPV("%ld", (long),connecting_child);
3424   DUMPV("%d", , connecting_fdpass_sock);
3425   DUMPV("%d", , cli_master);
3426   fprintf(f,"\n");
3427
3428   fprintf(f,"lowvol");
3429   DUMPV("%d", , lowvol_circptr);
3430   DUMPV("%d", , lowvol_total);
3431   fprintf(f,":");
3432   for (i=0; i<lowvol_periods; i++) {
3433     fprintf(f," ");
3434     if (i==lowvol_circptr) fprintf(f,"*");
3435     fprintf(f,"%d",lowvol_perperiod[i]);
3436   }
3437   fprintf(f,"\n");
3438
3439   fprintf(f,"filemon ");
3440   filemon_method_dump_info(f);
3441
3442   dump_input_file(f,c, main_input_file,     "main"    );
3443   dump_input_file(f,c, flushing_input_file, "flushing");
3444   dump_input_file(f,c, backlog_input_file,  "backlog" );
3445
3446   fprintf(f,"conns count=%d\n", conns.count);
3447
3448   Conn *conn;
3449   FOR_CONN(conn) {
3450
3451     fprintf(f,"C%d",conn->fd);
3452     DUMPV("%p",conn->,rd);             DUMPV("%d",conn->,max_queue);
3453     DUMPV("%d",conn->,stream);         DUMPV("\"%s\"",conn->,quitting);
3454     DUMPV("%d",conn->,since_activity);
3455     fprintf(f,"\n");
3456
3457     fprintf(f,"C%d waiting", conn->fd); dump_article_list(f,c,&conn->waiting);
3458     fprintf(f,"C%d priority",conn->fd); dump_article_list(f,c,&conn->priority);
3459     fprintf(f,"C%d sent",    conn->fd); dump_article_list(f,c,&conn->sent);
3460
3461     fprintf(f,"C%d xmit xmitu=%d\n", conn->fd, conn->xmitu);
3462     for (i=0; i<conn->xmitu; i++) {
3463       const struct iovec *iv= &conn->xmit[i];
3464       const XmitDetails *xd= &conn->xmitd[i];
3465       char *dinfo;
3466       switch (xd->kind) {
3467       case xk_Const:    dinfo= xasprintf("Const");                 break;
3468       case xk_Artdata:  dinfo= xasprintf("A%p", xd->info.sm_art);  break;
3469       default:
3470         abort();
3471       }
3472       fprintf(f," #%03d %-11s l=%d %s\n", i, dinfo, iv->iov_len,
3473               sanitise(iv->iov_base, iv->iov_len));
3474       free(dinfo);
3475     }
3476   }
3477
3478   fprintf(f,"paths");
3479   DUMPV("%s", , feedfile);
3480   DUMPV("%s", , path_cli);
3481   DUMPV("%s", , path_lock);
3482   DUMPV("%s", , path_flushing);
3483   DUMPV("%s", , path_defer);
3484   DUMPV("%s", , path_dump);
3485   DUMPV("%s", , globpat_backlog);
3486   fprintf(f,"\n");
3487
3488   if (!!ferror(f) + !!fclose(f)) {
3489     fprintf(cc->out, "failed: write: %s\n", strerror(errno));
3490     return;
3491   }
3492 }
3493
3494 /*========== option parsing ==========*/
3495
3496 static void vbadusage(const char *fmt, va_list al) NORET_PRINTF(1,0);
3497 static void vbadusage(const char *fmt, va_list al) {
3498   char *m= xvasprintf(fmt,al);
3499   fprintf(stderr, "bad usage: %s\n"
3500           "say --help for help, or read the manpage\n",
3501           m);
3502   if (interactive < 2)
3503     syslog(LOG_ERR,"innduct: invoked with bad usage: %s",m);
3504   exit(8);
3505 }
3506
3507 /*---------- generic option parser ----------*/
3508
3509 static void badusage(const char *fmt, ...) NORET_PRINTF(1,2);
3510 static void badusage(const char *fmt, ...) {
3511   va_list al;
3512   va_start(al,fmt);
3513   vbadusage(fmt,al);
3514 }
3515
3516 enum OptFlags {
3517   of_seconds= 001000u,
3518   of_boolean= 002000u,
3519 };
3520
3521 typedef struct Option Option;
3522 typedef void OptionParser(const Option*, const char *val);
3523
3524 struct Option {
3525   int shrt;
3526   const char *lng, *formarg;
3527   void *store;
3528   OptionParser *fn;
3529   int intval;
3530 };
3531
3532 static void parse_options(const Option *options, char ***argvp) {
3533   /* on return *argvp is first non-option arg; argc is not updated */
3534
3535   for (;;) {
3536     const char *arg= *++(*argvp);
3537     if (!arg) break;
3538     if (*arg != '-') break;
3539     if (!strcmp(arg,"--")) { arg= *++(*argvp); break; }
3540     int a;
3541     while ((a= *++arg)) {
3542       const Option *o;
3543       if (a=='-') {
3544         arg++;
3545         char *equals= strchr(arg,'=');
3546         int len= equals ? (equals - arg) : strlen(arg);
3547         for (o=options; o->shrt || o->lng; o++)
3548           if (strlen(o->lng) == len && !memcmp(o->lng,arg,len))
3549             goto found_long;
3550         badusage("unknown long option --%s",arg);
3551       found_long:
3552         if (!o->formarg) {
3553           if (equals) badusage("option --%s does not take a value",o->lng);
3554           arg= 0;
3555         } else if (equals) {
3556           arg= equals+1;
3557         } else {
3558           arg= *++(*argvp);
3559           if (!arg) badusage("option --%s needs a value for %s",
3560                              o->lng, o->formarg);
3561         }
3562         o->fn(o, arg);
3563         break; /* eaten the whole argument now */
3564       }
3565       for (o=options; o->shrt || o->lng; o++)
3566         if (a == o->shrt)
3567           goto found_short;
3568       badusage("unknown short option -%c",a);
3569     found_short:
3570       if (!o->formarg) {
3571         o->fn(o,0);
3572       } else {
3573         if (!*++arg) {
3574           arg= *++(*argvp);
3575           if (!arg) badusage("option -%c needs a value for %s",
3576                              o->shrt, o->formarg);
3577         }
3578         o->fn(o,arg);
3579         break; /* eaten the whole argument now */
3580       }
3581     }
3582   }
3583 }
3584
3585 #define DELIMPERHAPS(delim,str)  (str) ? (delim) : "", (str) ? (str) : ""
3586
3587 static void print_options(const Option *options, FILE *f) {
3588   const Option *o;
3589   for (o=options; o->shrt || o->lng; o++) {
3590     char shrt[2] = { o->shrt, 0 };
3591     char *optspec= xasprintf("%s%s%s%s%s",
3592                              o->shrt ? "-" : "", shrt,
3593                              o->shrt && o->lng ? "|" : "",
3594                              DELIMPERHAPS("--", o->lng));
3595     fprintf(f, "  %s%s%s\n", optspec, DELIMPERHAPS(" ", o->formarg));
3596     free(optspec);
3597   }
3598 }
3599
3600 /*---------- specific option types ----------*/
3601
3602 static void op_integer(const Option *o, const char *val) {
3603   char *ep;
3604   errno= 0;
3605   unsigned long ul= strtoul(val,&ep,10);
3606   if (*ep || ep==val || errno || ul>INT_MAX)
3607     badusage("bad integer value for %s",o->lng);
3608   int *store= o->store;
3609   *store= ul;
3610 }
3611
3612 static void op_double(const Option *o, const char *val) {
3613   int *store= o->store;
3614   char *ep;
3615   errno= 0;
3616   *store= strtod(val, &ep);
3617   if (*ep || ep==val || errno)
3618     badusage("bad floating point value for %s",o->lng);
3619 }
3620
3621 static void op_string(const Option *o, const char *val) {
3622   const char **store= o->store;
3623   *store= val;
3624 }
3625
3626 static void op_seconds(const Option *o, const char *val) {
3627   int *store= o->store;
3628   char *ep;
3629   int unit;
3630
3631   double v= strtod(val,&ep);
3632   if (ep==val) badusage("bad time/duration value for %s",o->lng);
3633
3634   if (!*ep || !strcmp(ep,"s") || !strcmp(ep,"sec")) unit= 1;
3635   else if (!strcmp(ep,"m") || !strcmp(ep,"min"))    unit= 60;
3636   else if (!strcmp(ep,"h") || !strcmp(ep,"hour"))   unit= 3600;
3637   else if (!strcmp(ep,"d") || !strcmp(ep,"day"))    unit= 86400;
3638   else if (!strcmp(ep,"das")) unit= 10;
3639   else if (!strcmp(ep,"hs"))  unit= 100;
3640   else if (!strcmp(ep,"ks"))  unit= 1000;
3641   else if (!strcmp(ep,"Ms"))  unit= 1000000;
3642   else badusage("bad units %s for time/duration value for %s",ep,o->lng);
3643
3644   v *= unit;
3645   v= ceil(v);
3646   if (v > INT_MAX) badusage("time/duration value for %s out of range",o->lng);
3647   *store= v;
3648 }
3649
3650 static void op_setint(const Option *o, const char *val) {
3651   int *store= o->store;
3652   *store= o->intval;
3653 }
3654
3655 /*---------- specific options ----------*/
3656
3657 static void help(const Option *o, const char *val);
3658
3659 static const Option innduct_options[]= {
3660 {'f',"feedfile",         "F",     &feedfile,                 op_string      },
3661 {'q',"quiet-multiple",   0,       &quiet_multiple,           op_setint, 1   },
3662 {0,"no-daemon",          0,       &interactive,              op_setint, 1   },
3663 {0,"interactive",        0,       &interactive,              op_setint, 2   },
3664 {0,"no-streaming",       0,       &try_stream,               op_setint, 0   },
3665 {0,"no-filemon",         0,       &try_filemon,              op_setint, 0   },
3666 {'C',"inndconf",         "F",     &inndconffile,             op_string      },
3667 {'P',"port",             "PORT",  &port,                     op_integer     },
3668 {0,"chdir",              "DIR",   &path_run,                 op_string      },
3669 {0,"cli",            "DIR/|PATH", &path_cli,                 op_string      },
3670 {0,"help",               0,       0,                         help           },
3671
3672 {0,"max-connections",    "N",     &max_connections,          op_integer     },
3673 {0,"max-queue-per-conn", "N",     &max_queue_per_conn,       op_integer     },
3674 {0,"max-queue-per-file", "N",     &max_queue_per_ipf,        op_integer     },
3675 {0,"feedfile-flush-size","BYTES", &target_max_feedfile_size, op_integer     },
3676 {0,"period-interval",    "TIME",  &period_seconds,           op_seconds     },
3677
3678 {0,"connection-timeout",   "TIME",  &connection_setup_timeout, op_seconds   },
3679 {0,"stuck-flush-timeout",  "TIME",  &inndcomm_flush_timeout,   op_seconds   },
3680 {0,"feedfile-poll",        "TIME",  &filepoll_seconds,         op_seconds   },
3681
3682 {0,"no-check-proportion",   "PERCENT",   &nocheck_thresh,       op_double   },
3683 {0,"no-check-response-time","ARTICLES",  &nocheck_decay,        op_double   },
3684
3685 {0,"reconnect-interval",     "PERIOD", &reconnect_delay_periods,  op_seconds },
3686 {0,"flush-retry-interval",   "PERIOD", &flushfail_retry_periods,  op_seconds },
3687 {0,"earliest-deferred-retry","PERIOD", &backlog_retry_minperiods, op_seconds },
3688 {0,"backlog-rescan-interval","PERIOD",&backlog_spontrescan_periods,op_seconds},
3689 {0,"max-flush-interval",     "PERIOD", &spontaneous_flush_periods,op_seconds },
3690 {0,"flush-finish-timeout",   "PERIOD", &max_separated_periods,    op_seconds },
3691 {0,"idle-timeout",           "PERIOD", &need_activity_periods,    op_seconds },
3692 {0,"low-volume-thresh",      "PERIOD", &lowvol_thresh,            op_integer },
3693 {0,"low-volume-window",      "PERIOD", &lowvol_periods,           op_seconds },
3694
3695 {0,"max-bad-input-data-ratio","PERCENT", &max_bad_data_ratio,   op_double    },
3696 {0,"max-bad-input-data-init", "PERCENT", &max_bad_data_initial, op_integer   },
3697
3698 {0,0}
3699 };
3700
3701 static void printusage(FILE *f) {
3702   fputs("usage: innduct [options] site [fqdn]\n"
3703         "available options are:\n", f);
3704   print_options(innduct_options, f);
3705 }
3706
3707 static void help(const Option *o, const char *val) {
3708   printusage(stdout);
3709   if (ferror(stdout) || fflush(stdout)) {
3710     perror("innduct: writing help");
3711     exit(12);
3712   }
3713   exit(0);
3714 }
3715
3716 static void convert_to_periods_rndup(int *store) {
3717   *store += period_seconds-1;
3718   *store /= period_seconds;
3719 }
3720
3721 static int path_ends_slash(const char *specified) {
3722   int l= strlen(specified);
3723   assert(l);
3724   return specified[l-1] == '/';
3725 }
3726
3727 int main(int argc, char **argv) {
3728   /* set up libinn logging */
3729   message_program_name= "innduct";
3730   message_fatal_cleanup= innduct_fatal_cleanup;
3731   INNLOGSETS(INNLOGSET_CALL)
3732
3733   if (!argv[1]) {
3734     printusage(stderr);
3735     exit(8);
3736   }
3737
3738   parse_options(innduct_options, &argv);
3739
3740   /* arguments */
3741
3742   sitename= *argv++;
3743   if (!sitename) badusage("need site name argument");
3744
3745   if (*argv) remote_host= *argv++;
3746   else remote_host= sitename;
3747   
3748   if (*argv) badusage("too many non-option arguments");
3749
3750   /* defaults */
3751
3752   int r= innconf_read(inndconffile);
3753   if (!r) badusage("could not read inn.conf");
3754
3755   if (!remote_host) remote_host= sitename;
3756
3757   if (nocheck_thresh < 0 || nocheck_thresh > 100)
3758     badusage("nocheck threshold percentage must be between 0..100");
3759   nocheck_thresh *= 0.01;
3760
3761   if (nocheck_decay < 0.1)
3762     badusage("nocheck decay articles must be at least 0.1");
3763   nocheck_decay= pow(0.5, 1.0/nocheck_decay);
3764
3765   convert_to_periods_rndup(&reconnect_delay_periods);
3766   convert_to_periods_rndup(&flushfail_retry_periods);
3767   convert_to_periods_rndup(&backlog_retry_minperiods);
3768   convert_to_periods_rndup(&backlog_spontrescan_periods);
3769   convert_to_periods_rndup(&spontaneous_flush_periods);
3770   convert_to_periods_rndup(&max_separated_periods);
3771   convert_to_periods_rndup(&need_activity_periods);
3772   convert_to_periods_rndup(&lowvol_periods);
3773
3774   if (max_bad_data_ratio < 0 || max_bad_data_ratio > 100)
3775     badusage("bad input data ratio must be between 0..100");
3776   max_bad_data_ratio *= 0.01;
3777
3778   if (!path_run)
3779     path_run= innconf->pathrun;
3780
3781   if (!feedfile) feedfile= sitename;
3782   if (!feedfile[0]) badusage("feed filename, if specified, must be nonempty");
3783   if (path_ends_slash(feedfile))
3784     feedfile= xasprintf("%s%s", feedfile, sitename);
3785   if (feedfile[0] != '/')
3786     feedfile= xasprintf("%s/%s", innconf->pathoutgoing, feedfile);
3787
3788   if (!path_cli) {
3789     path_cli_dir= "innduct";
3790   } else if (!path_cli[0] || !strcmp(path_cli,"none")) {
3791     path_cli= 0; /* ok, don't then */
3792   } else if (path_ends_slash(path_cli)) {
3793     path_cli_dir= xasprintf("%.*s", strlen(path_cli)-1, path_cli);
3794   }
3795   if (path_cli_dir)
3796     path_cli= xasprintf("%s/%s", path_cli_dir, sitename);
3797
3798   if (max_queue_per_ipf<0)
3799     max_queue_per_ipf= max_queue_per_conn * 2;
3800
3801   const char *feedfile_forbidden= "?*[~#";
3802   int c;
3803   while ((c= *feedfile_forbidden++))
3804     if (strchr(feedfile, c))
3805       badusage("feed filename may not contain metacharacter %c",c);
3806
3807   int i;
3808   lowvol_perperiod= xcalloc(sizeof(*lowvol_perperiod), lowvol_periods);
3809   for (i=0; i<lowvol_periods; i++) {
3810     lowvol_perperiod[i]= lowvol_thresh;
3811     lowvol_total += lowvol_thresh;
3812   }
3813   lowvol_total -= lowvol_thresh;
3814
3815   /* set things up */
3816
3817   path_lock=        xasprintf("%s_lock",      feedfile);
3818   path_flushing=    xasprintf("%s_flushing",  feedfile);
3819   path_defer=       xasprintf("%s_defer",     feedfile);
3820   path_dump=        xasprintf("%s_dump",      feedfile);
3821   globpat_backlog=  xasprintf("%s_backlog*",  feedfile);
3822
3823   oop_source_sys *sysloop= oop_sys_new();
3824   if (!sysloop) syscrash("could not create liboop event loop");
3825   loop= (oop_source*)sysloop;
3826
3827   LIST_INIT(conns);
3828
3829   if (interactive < 1) {
3830     int i;
3831     for (i=3; i<255; i++)
3832       /* do this now before we open syslog, etc. */
3833       close(i);
3834   }
3835
3836   logv_prefix= xasprintf("<%s> ", sitename);
3837   if (interactive < 2) {
3838     openlog("innduct",LOG_NDELAY|LOG_PID,LOG_NEWS);
3839     logv_use_syslog= 1;
3840   }
3841
3842   if (interactive < 1) {
3843     int null= open("/dev/null",O_RDWR);
3844     if (null<0) sysdie("failed to open /dev/null");
3845     dup2(null,0);
3846     dup2(null,1);
3847     dup2(null,2);
3848     xclose(null, "/dev/null original fd",0);
3849
3850     pid_t child1= xfork("daemonise first fork");
3851     if (child1) _exit(0);
3852
3853     pid_t sid= setsid();
3854     if (sid == -1) sysdie("setsid failed");
3855
3856     pid_t child2= xfork("daemonise second fork");
3857     if (child2) _exit(0);
3858   }
3859
3860   self_pid= getpid();
3861   if (self_pid==-1) syscrash("getpid");
3862
3863   r= chdir(path_run);
3864   if (r) sysdie("could not chdir to pathrun %s", path_run);
3865
3866   statemc_lock();
3867
3868   init_signals();
3869
3870   notice("starting");
3871
3872   int val= 1;
3873   r= SMsetup(SM_PREOPEN, &val); if (!r) warn("SMsetup SM_PREOPEN failed");
3874   r= SMinit(); if (!r) die("storage manager initialisation (SMinit) failed");
3875
3876   if (interactive >= 2)
3877     cli_stdio();
3878
3879   cli_init();
3880
3881   int filemon_ok= 0;
3882   if (!try_filemon) {
3883     notice("filemon: suppressed by command line option, polling");
3884   } else {
3885     filemon_ok= filemon_method_init();
3886     if (!filemon_ok)
3887       warn("filemon: no file monitoring available, polling");
3888   }
3889   if (!filemon_ok)
3890     every(filepoll_seconds,0,filepoll);
3891
3892   every(period_seconds,1,period);
3893
3894   statemc_init();
3895
3896   /* let's go */
3897
3898   void *run= oop_sys_run(sysloop);
3899   assert(run == OOP_ERROR);
3900   syscrash("event loop failed");
3901 }