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