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