chiark / gitweb /
17daacce274326d74cf76b0663a091649ec675e7
[inn-innduct.git] / backends / innduct.c
1 /*
2  * Newsfeeds file entries should look like this:
3  *     host.name.of.site[/exclude,exclude,...]\
4  *             :pattern,pattern...[/distribution,distribution...]\
5  *             :Tf,Wnm
6  *             :
7  * or
8  *     sitename[/exclude,exclude,...]\
9  *             :pattern,pattern...[/distribution,distribution...]\
10  *             :Tf,Wnm
11  *             :host.name.of.site
12  *
13  * Four files full of
14  *    token messageid
15  * or might be blanked out
16  *    <spc><spc><spc><spc>....
17  *
18  * F site.name                 main feed file
19  *                                opened/created, then written, by innd
20  *                                read by duct
21  *                                unlinked by duct
22  *                                tokens blanked out by duct when processed
23  *   site.name_lock            lock preventing multiple ducts
24  *                                to hold lock must open,F_SETLK[W]
25  *                                  and then stat to check that locked file
26  *                                  still has name site.name_lock
27  *                                holder of this lock is "duct"
28  *                                (only) lockholder may remove the lockfile
29  * D site.name_flushing        temporary feed file during flush (or crash)
30  *                                hardlink created by duct
31  *                                unlinked by duct
32  *   site.name_defer           431'd articles, still being written,
33  *                                created, written, used by duct
34  *
35  *   site.name_backlog.<date>.<inum>
36  *                             431'd articles, ready for innxmit or duct
37  *                                created (link/mv) by duct
38  *   site.name_backlog<anything-else>  (where <anything-else> does not
39  *                                      contain '#' or '~') eg
40  *   site.name_backlog.manual
41  *                             anything the sysadmin likes (eg, feed files
42  *                             from old feeds to be merged into this one)
43  *                                created (link/mv) by admin
44  *                                may be symlinks (in which case links
45  *                                may be written through, but only links
46  *                                will be removed.
47  *
48  *                             It is safe to remove backlog files manually,
49  *                             if it's desired to throw away the backlog.
50  *
51  * Backlog files are also processed by innduct.  We find the oldest
52  * backlog file which is at least a certain amount old, and feed it
53  * back into our processing.  When every article in it has been read
54  * and processed, we unlink it and look for another backlog file.
55  *
56  * If we don't have a backlog file that we're reading, we close the
57  * defer file that we're writing and make it into a backlog file at
58  * the first convenient opportunity.
59  * -8<-
60
61
62    OVERALL STATES:
63
64                                                                 START
65                                                                   |
66      ,-->--.                                                 check F, D
67      |     |                                                      |
68      |     |                                                      |
69      |     |  <----------------<---------------------------------'|
70      |     |                                       F exists       |
71      |     |                                       D ENOENT       |
72      |     |  duct opens F                                        |
73      |     V                                                      |
74      |  Normal                                                    |
75      |   F: innd writing, duct reading                            |
76      |   D: ENOENT                                                |
77      |     |                                                      |
78      |     |  duct decides time to flush                          |
79      |     |  duct makes hardlink                                 |
80      |     |                                                      |
81      |     V                            <------------------------'|
82      |  Hardlinked                                  F==D          |
83      |   F == D: innd writing, duct reading         both exist    |
84      ^     |                                                      |
85      |     |  duct unlinks F                                      |
86      |     |                        <-----------<-------------<--'|
87      |     |                           open D         F ENOENT    |
88      |     |                           if exists                  |
89      |     |                                                      |
90      |     V                        <---------------------.       |
91      |  Moved                                             |       |
92      |   F: ENOENT                                        |       |
93      |   D: innd writing, duct reading; or ENOENT         |       |
94      |     |                                              |       |
95      |     |  duct requests flush of feed                 |       |
96      |     |   (others can too, harmlessly)               |       |
97      |     V                                              |       |
98      |  Flushing                                          |       |
99      |   F: ENOENT                                        |       |
100      |   D: innd flushing, duct; or ENOENT                |       |
101      |     |                                              |       |
102      |     |   inndcomm flush fails                       |       |
103      |     |`-------------------------->------------------'       |
104      |     |                                                      |
105      |     |   inndcomm reports no such site                      |
106      |     |`---------------------------------------------------- | -.
107      |     |                                                      |  |
108      |     |  innd finishes writing D, creates F                  |  |
109      |     |  inndcomm reports flush successful                   |  |
110      |     |                                                      |  |
111      |     V                                                      |  |
112      |  Separated                                <----------------'  |
113      |   F: innd writing                            F!=D             /
114      |   D: duct reading; or ENOENT                  both exist     /
115      |     |                                                       /
116      |     |  duct gets to the end of D                           /
117      |     |  duct opens F too                                   /
118      |     V                                                    /
119      |  Finishing                                              /
120      |   F: innd writing, duct reading                        |
121      |   D: duct finishing                                    V
122      |     |                                            Dropping
123      |     |  duct finishes processing D                 F: ENOENT
124      |     V  duct unlinks D                             D: duct reading
125      |     |                                                  |
126      `--<--'                                                  | duct finishes
127                                                               |  processing D
128                                                               | duct unlinks D
129                                                               | duct exits
130                                                               V
131                                                         Dropped
132                                                          F: ENOENT
133                                                          D: ENOENT
134                                                          duct not running
135
136    "duct reading" means innduct is reading the file but also
137    overwriting processed tokens.
138
139  * ->8- -^L-
140  *
141  * rune for printing diagrams:
142
143 perl -ne 'print if m/-8\<-/..m/-\>8-/; print "\f" if m/-\^L-/' backends/innduct.c |a2ps -R -B -ops
144
145  *
146  */
147
148 /*============================== PROGRAM ==============================*/
149
150 #define _GNU_SOURCE
151
152 #include "inn/list.h"
153 #include "config.h"
154 #include "storage.h"
155 #include "nntp.h"
156 #include "libinn.h"
157
158 #include <sys/uio.h>
159 #include <sys/types.h>
160 #include <sys/wait.h>
161 #include <sys/stat.h>
162 #include <sys/socket.h>
163 #include <unistd.h>
164 #include <string.h>
165 #include <signal.h>
166 #include <stdio.h>
167 #include <errno.h>
168 #include <syslog.h>
169 #include <fcntl.h>
170 #include <stdarg.h>
171 #include <assert.h>
172 #include <stdlib.h>
173
174 #include <oop.h>
175 #include <oop-read.h>
176
177 /*----- general definitions, probably best not changed -----*/
178
179 #define PERIOD_SECONDS 60
180
181 #define CONNCHILD_ESTATUS_STREAM   4
182 #define CONNCHILD_ESTATUS_NOSTREAM 5
183
184 #define INNDCOMMCHILD_ESTATUS_FAIL     6
185 #define INNDCOMMCHILD_ESTATUS_NONESUCH 7
186
187 /*----- doubly linked lists -----*/
188
189 #define ISNODE(T)   struct { T *succ, *pred; } node  /* must be at start */
190 #define DEFLIST(T)  typedef struct { T *hd, *tl, *tp; int count; } T##List
191
192 #define NODE(n) (assert((void*)&(n)->node == &(n)), \
193                  (struct node*)&(n)->node)
194
195 #define LIST_CHECKCANHAVENODE(l,n) \
196   ((void)((n) == ((l).hd))) /* just for the type check */
197
198 #define LIST_ADDSOMEHOW(l,n,list_addsomehow)            \
199  ( LIST_CHECKCANHAVENODE(l,n),                          \
200    list_addsomehow((struct list*)&(l), NODE((n))),      \
201    (void)(l).count++                                    \
202    )
203
204 #define LIST_REMSOMEHOW(l,list_remsomehow)      \
205  ( (typeof((l).hd))                             \
206    ( (l).count                                  \
207      ? ( (l).count--,                           \
208          list_remsomehow((struct list*)&(l)) )  \
209      : 0                                        \
210      )                                          \
211    )
212
213
214 #define LIST_ADDHEAD(l,n) LIST_ADDSOMEHOW((l),(n),list_addhead)
215 #define LIST_ADDTAIL(l,n) LIST_ADDSOMEHOW((l),(n),list_addtail)
216 #define LIST_REMHEAD(l) LIST_REMSOMEHOW((l),list_remhead)
217 #define LIST_REMTAIL(l) LIST_REMSOMEHOW((l),list_remtail)
218
219 #define LIST_HEAD(l) ((typeof((l).hd))(list_head((struct list*)&(l))))
220 #define LIST_NEXT(n) ((typeof(n))list_succ(NODE((n))))
221 #define LIST_BACK(n) ((typeof(n))list_pred(NODE((n))))
222
223 #define LIST_REMOVE(l,n)                        \
224  ( LIST_CHECKCANHAVENODE(l,n),                  \
225    list_remove(NODE((n))),                      \
226    (void)(l).count--                            \
227    )
228
229 #define LIST_INSERT(l,n,pred)                                   \
230  ( LIST_CHECKCANHAVENODE(l,n),                                  \
231    LIST_CHECKCANHAVENODE(l,pred),                               \
232    list_insert((struct list*)&(l), NODE((n)), NODE((pred))),    \
233    (void)(l).count++                                            \
234    )
235
236 /*----- type predeclarations -----*/
237
238 typedef struct Conn Conn;
239 typedef struct Article Article;
240 typedef struct InputFile InputFile;
241 typedef struct XmitDetails XmitDetails;
242 typedef enum StateMachineState StateMachineState;
243
244 DEFLIST(Conn);
245 DEFLIST(Article);
246
247 /*----- function predeclarations -----*/
248
249 static void conn_check_work(Conn *conn);
250 static void conn_make_some_xmits(Conn *conn);
251 static void *conn_write_some_xmits(Conn *conn);
252
253 static void xmit_free(XmitDetails *d);
254
255 static int filemon_init(void);
256 static void filemon_setfile(int mainfeed_fd, const char *mainfeed_path);
257 static void filemon_callback(void);
258
259 static void statemc_setstate(StateMachineState newsms, int periods,
260                              const char *forlog, const char *why);
261 static void check_master_queue(void);
262
263 static void postfork(const char *what);
264 static void postfork_inputfile(InputFile *ipf);
265
266 /*----- configuration options -----*/
267
268 static char *sitename, *feedfile;
269 static const char *remote_host;
270 static int quiet_multiple=0, become_daemon=1;
271
272 static int max_connections=10, max_queue_per_conn=200;
273
274 static int connection_setup_timeout=200, port=119, try_stream=1;
275 static int inndcomm_flush_timeout=100;
276 static int reconnect_delay_periods, flushfail_retry_periods, open_wait_periods;
277 static int backlog_retry_minperiods, backlog_spontaneous_rescan_periods;
278 static const char *inndconffile;
279
280 static double accept_proportion;
281 static double nocheck_thresh_pct= 95.0;
282 static double nocheck_thresh; /* computed in main from _pct */
283 static double nocheck_decay_articles= 100; /* converted to _decay */
284 static double nocheck_decay; /* computed in main from _articles */
285 static int nocheck, nocheck_reported;
286
287
288 /*----- statistics -----*/
289
290 typedef enum {      /* in queue                 in conn->sent             */
291   art_Unchecked,    /*   not checked, not sent    checking                */
292   art_Wanted,       /*   checked, wanted          sent body as requested  */
293   art_Unsolicited,  /*   -                        sent body without check */
294   art_MaxState
295 } ArtState;
296
297 #define RESULT_COUNTS(RCS,RCN)                  \
298   RCS(sent)                                     \
299   RCS(accepted)                                 \
300   RCN(unwanted)                                 \
301   RCN(rejected)                                 \
302   RCN(deferred)                                 \
303   RCN(connretry)
304
305 #define RCI_TRIPLE_FMT_BASE "%d(id%d+bd%d+nc%d)"
306 #define RCI_TRIPLE_VALS_BASE(counts,x)          \
307        , counts[art_Unchecked] x                \
308        + counts[art_Wanted] x                   \
309        + counts[art_Unsolicited] x,             \
310        counts[art_Unchecked] x                  \
311        , counts[art_Wanted] x                   \
312        , counts[art_Unsolicited] x
313
314 typedef enum {
315 #define RC_INDEX(x) RCI_##x,
316   RESULT_COUNTS(RC_INDEX, RC_INDEX)
317   RCI_max
318 } ResultCountIndex;
319
320
321 /*----- transmission buffers -----*/
322
323 #define CONNIOVS 128
324
325 typedef enum {
326   xk_Malloc, xk_Const, xk_Artdata
327 } XmitKind;
328
329 struct XmitDetails {
330   XmitKind kind;
331   union {
332     char *malloc_tofree;
333     ARTHANDLE *sm_art;
334   } info;
335 };
336
337
338 /*----- core operational data structure types -----*/
339
340 struct InputFile {
341   /* This is also an instance of struct oop_readable */
342   struct oop_readable readable; /* first */
343   oop_readable_call *readable_callback;
344   void *readable_callback_user;
345
346   int fd;
347   struct Filemon_Perfile *filemon;
348
349   oop_read *rd;
350   long inprogress; /* no. of articles read but not processed */
351   off_t offset;
352
353   int counts[art_MaxState][RCI_max];
354   char path[];
355 };
356
357 struct Article {
358   ISNODE(Article);
359   ArtState state;
360   int midlen;
361   InputFile *ipf;
362   TOKEN token;
363   off_t offset;
364   int blanklen;
365   char messageid[1];
366 };
367
368 #define SMS_LIST(X)                             \
369   X(NORMAL)                                     \
370   X(FLUSHING)                                   \
371   X(FLUSHFAILED)                                \
372   X(SEPARATED)                                  \
373   X(DROPPING)                                   \
374   X(DROPPED)
375
376 enum StateMachineState {
377 #define SMS_DEF_ENUM(s) sm_##s,
378   SMS_LIST(SMS_DEF_ENUM)
379 };
380
381 static const char *sms_names[]= {
382 #define SMS_DEF_NAME(s) #s ,
383   SMS_LIST(SMS_DEF_NAME)
384   0
385 };
386
387 struct Conn {
388   ISNODE(Conn);
389   int fd, max_queue, stream;
390   ArticleList queue; /* not yet told peer, or CHECK said send it */
391   ArticleList sent; /* offered/transmitted - in xmit or waiting reply */
392   struct iovec xmit[CONNIOVS];
393   XmitDetails xmitd[CONNIOVS];
394   int xmitu;
395 };
396
397
398 /*----- operational variables -----*/
399
400 static oop_source *loop;
401
402 static int until_connect;
403 static ConnList conns;
404 static ArticleList queue;
405
406 static char *path_lock, *path_flushing, *path_defer;
407
408 #define SMS(newstate, periods, why) \
409    (statemc_setstate(sm_##newstate,(periods),#newstate,(why)))
410
411 static StateMachineState sms;
412 static FILE *defer;
413 static InputFile *main_input_file, *flushing_input_file, *backlog_input_file;
414 static int sm_period_counter;
415
416
417 /*========== logging ==========*/
418
419 static void logcore(int sysloglevel, const char *fmt, ...)
420      __attribute__((__format__(printf,2,3)));
421 static void logcore(int sysloglevel, const char *fmt, ...) {
422   va_list al;
423   va_start(al,fmt);
424   if (become_daemon) {
425     vsyslog(sysloglevel,fmt,al);
426   } else {
427     vfprintf(stderr,fmt,al);
428     putc('\n',stderr);
429   }
430   va_end(al);
431 }
432
433 static void logv(int sysloglevel, const char *pfx, int errnoval,
434                  int exitstatus, const char *fmt, va_list al)
435      __attribute__((__format__(printf,5,0)));
436 static void logv(int sysloglevel, const char *pfx, int errnoval,
437                  int exitstatus, const char *fmt, va_list al) {
438   char msgbuf[256]; /* NB do not call xvasprintf here or you'll recurse */
439   vsnprintf(msgbuf,sizeof(msgbuf), fmt,al);
440   msgbuf[sizeof(msgbuf)-1]= 0;
441
442   if (sysloglevel >= LOG_ERR && (errnoval==EACCES || errnoval==EPERM))
443     sysloglevel= LOG_ERR; /* run by wrong user, probably */
444
445   logcore(sysloglevel, "<%s>%s: %s%s%s",
446          sitename, pfx, msgbuf,
447          errnoval>=0 ? ": " : "",
448          errnoval>=0 ? strerror(errnoval) : "");
449 }
450
451 #define logwrap(fn, pfx, sysloglevel, err, estatus)     \
452   static void fn(const char *fmt, ...)                  \
453       __attribute__((__format__(printf,1,2)));          \
454   static void fn(const char *fmt, ...) {                \
455     va_list al;                                         \
456     va_start(al,fmt);                                   \
457     logv(sysloglevel, pfx, err, estatus, fmt, al);      \
458   }
459
460 logwrap(sysdie,   " critical", LOG_CRIT,    errno, 16);
461 logwrap(die,      " critical", LOG_CRIT,    -1,    16);
462
463 logwrap(sysfatal, " fatal",    LOG_ERR,     errno, 12);
464 logwrap(fatal,    " fatal",    LOG_ERR,     -1,    12);
465
466 logwrap(syswarn,  " warning",  LOG_WARNING, errno, 0);
467 logwrap(warn,     " warning",  LOG_WARNING, -1,    0);
468
469 logwrap(notice,   "",          LOG_NOTICE,  -1,    0);
470 logwrap(info,     " info",     LOG_INFO,    -1,    0);
471 logwrap(debug,    " debug",    LOG_DEBUG,   -1,    0);
472
473
474 /*========== utility functions etc. ==========*/
475
476 static char *xvasprintf(const char *fmt, va_list al)
477      __attribute__((__format__(printf,1,0)));
478 static char *xvasprintf(const char *fmt, va_list al) {
479   char *str;
480   int rc= vasprintf(&str,fmt,al);
481   if (rc<0) sysdie("vasprintf(\"%s\",...) failed", fmt);
482   return str;
483 }
484 static char *xasprintf(const char *fmt, ...)
485      __attribute__((__format__(printf,1,2)));
486 static char *xasprintf(const char *fmt, ...) {
487   va_list al;
488   va_start(al,fmt);
489   char *str= xvasprintf(fmt,al);
490   va_end(al);
491   return str;
492 }
493
494 static void perhaps_close(int *fd) { if (*fd) { close(*fd); fd=0; } }
495
496 static pid_t xfork(const char *what) {
497   pid_t child;
498
499   child= fork();
500   if (child==-1) sysdie("cannot fork for %s",what);
501   if (!child) postfork(what);
502   debug("forked %s %ld", what, (unsigned long)child);
503   return child;
504 }
505
506 static void on_fd_read_except(int fd, oop_call_fd callback) {
507   loop->on_fd(loop, fd, OOP_READ,      callback, 0);
508   loop->on_fd(loop, fd, OOP_EXCEPTION, callback, 0);
509 }
510 static void cancel_fd_read_except(int fd) {
511   loop->cancel_fd(loop, fd, OOP_READ);
512   loop->cancel_fd(loop, fd, OOP_EXCEPTION);
513 }
514
515 static void report_child_status(const char *what, int status) {
516   if (WIFEXITED(status)) {
517     int es= WEXITSTATUS(status);
518     if (es)
519       warn("%s: child died with error exit status %d",es);
520   } else if (WIFSIGNALED(status)) {
521     int sig= WTERMSIG(status);
522     const char *sigstr= strsignal(sig);
523     const char *coredump= WCOREDUMP(status) ? " (core dumped)" : "";
524     if (sigstr)
525       warn("%s: child died due to fatal signal %s%s", what, sigstr, coredump);
526     else
527       warn("%s: child died due to unknown fatal signal %d%s",
528            what, sig, coredump);
529   } else {
530     warn("%s: child died with unknown wait status %d", status);
531   }
532 }
533
534 static int xwaitpid(pid_t *pid, const char *what) {
535   int status;
536
537   int r= kill(*pid, SIGKILL);
538   if (r) sysdie("cannot kill %s child", what);
539
540   pid_t got= waitpid(*pid, &status, WNOHANG);
541   if (got==-1) sysdie("cannot reap %s child", what);
542
543   *pid= 0;
544
545   return status;
546 }
547
548 static void xunlink(const char *path, const char *what) {
549   int r= unlink(path);
550   if (r) sysdie("can't unlink %s %s", path, what);
551 }
552
553 static void check_isreg(const struct stat *stab, const char *path,
554                         const char *what) {
555   if (!S_ISREG(stab->st_mode))
556     die("%s %s not a plain file (mode 0%lo)",
557         what, path, (unsigned long)stab->st_mode);
558 }
559
560 static void xfstat(int fd, struct stat *stab_r, const char *what) {
561   int r= fstat(fd, stab_r);
562   if (r) sysdie("could not fstat %s", what);
563 }
564
565 static void xfstat_isreg(int fd, struct stat *stab_r,
566                          const char *path, const char *what) {
567   xfstat(fd, stab_r, what);
568   check_isreg(stab_r, path, what);
569 }
570
571 static void xlstat_isreg(const char *path, struct stat *stab,
572                          int *enoent_r /* 0 means ENOENT is fatal */,
573                          const char *what) {
574   int r= lstat(path, stab);
575   if (r) {
576     if (errno==ENOENT && enoent_r) { *enoent_r=1; return; }
577     sysdie("could not lstat %s %s", what, path);
578   }
579   if (enoent_r) *enoent_r= 0;
580   check_isreg(stab, path, what);
581 }
582
583 static void setnonblock(int fd, int nonblocking) {
584   int r= fcntl(fd, F_GETFL);  if (r<0) sysdie("setnonblocking fcntl F_GETFL");
585   if (nonblocking) r |= O_NONBLOCK;
586   else r &= ~O_NONBLOCK;
587   r= fcntl(fd, F_SETFL, r);  if (r<0) sysdie("setnonblocking fcntl F_SETFL");
588 }
589
590 static int samefile(const struct stat *a, const struct stat *b) {
591   assert(S_ISREG(a->st_mode));
592   assert(S_ISREG(b->st_mode));
593   return (a->st_ino == b->st_ino &&
594           a->st_dev == b->st_dev);
595 }
596
597 static char *sanitise(const char *input) {
598   static char sanibuf[100]; /* returns pointer to this buffer! */
599
600   const char *p= input;
601   char *q= sanibuf;
602   *q++= '`';
603   for (;;) {
604     if (q > sanibuf+sizeof(sanibuf)-8) { strcpy(q,"'.."); break; }
605     int c= *p++;
606     if (!c) { *q++= '\''; *q=0; break; }
607     if (c>=' ' && c<=126 && c!='\\') { *q++= c; continue; }
608     sprintf(q,"\\x%02x",c);
609     q += 4;
610   }
611   return sanibuf;
612 }
613
614 /*========== making new connections ==========*/
615
616 static int connecting_sockets[2]= {-1,-1};
617 static pid_t connecting_child;
618
619 static void connect_attempt_discard(void) {
620   if (connecting_sockets[0])
621     cancel_fd_read_except(connecting_sockets[0]);
622
623   perhaps_close(&connecting_sockets[0]);
624   perhaps_close(&connecting_sockets[1]);
625
626   if (connecting_child) {
627     int r= kill(connecting_child, SIGTERM);
628     if (r) syswarn("failed to kill connecting child");
629     int status= xwaitpid(&connecting_child, "connect");
630
631     if (!(WIFEXITED(status) ||
632           (WIFSIGNALED(status) && WTERMSIG(status) == SIGKILL)))
633       report_child_status("connect", status);
634   }
635 }
636
637 #define PREP_DECL_MSG_CMSG(msg)                 \
638   struct msghdr msg;                            \
639   memset(&msg,0,sizeof(msg));                   \
640   char msg##cbuf[CMSG_SPACE(sizeof(fd))];       \
641   msg.msg_control= msg##cbuf;                   \
642   msg.msg_controllen= sizeof(msg##cbuf);
643
644 static void *connchild_event(oop_source *lp, int fd, oop_event e, void *u) {
645   Conn *conn= 0;
646
647   conn= xmalloc(sizeof(*conn));
648   memset(conn,0,sizeof(*conn));
649
650   PREP_DECL_MSG_CMSG(msg);
651   struct cmsghdr *h= 0;
652   ssize_t rs= recvmsg(fd, &msg, MSG_DONTWAIT);
653   if (rs >= 0) h= CMSG_FIRSTHDR(&msg);
654   if (!h) {
655     int status;
656     pid_t got= waitpid(connecting_child, &status, WNOHANG);
657     if (got != -1) {
658       assert(got==connecting_child);
659       connecting_child= 0;
660       if (WIFEXITED(status) &&
661           (WEXITSTATUS(status) != 0 &&
662            WEXITSTATUS(status) != CONNCHILD_ESTATUS_STREAM &&
663            WEXITSTATUS(status) != CONNCHILD_ESTATUS_NOSTREAM)) {
664         /* child already reported the problem */
665       } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
666         warn("connect: connection attempt timed out");
667       } else if (!WIFEXITED(status)) {
668         report_child_status("connect", status);
669         /* that's probably the root cause then */
670       }
671     } else {
672       /* child is still running apparently, report the socket problem */
673       if (rs < 0)
674         syswarn("connect: read from child socket failed");
675       else if (e == OOP_EXCEPTION)
676         warn("connect: unexpected exception on child socket");
677       else
678         warn("connect: unexpected EOF on child socket");
679     }
680     goto x;
681   }
682
683 #define CHK(field, val)                                                   \
684   if (h->cmsg_##field != val) {                                           \
685     die("connect: child sent cmsg with cmsg_" #field "=%d, expected %d"); \
686     goto x;                                                               \
687   }
688   CHK(level, SOL_SOCKET);
689   CHK(type,  SCM_RIGHTS);
690   CHK(len,   CMSG_LEN(sizeof(conn->fd)));
691 #undef CHK
692
693   if (CMSG_NXTHDR(&msg,h)) { die("connect: child sent many cmsgs"); goto x; }
694
695   memcpy(&conn->fd, CMSG_DATA(h), sizeof(conn->fd));
696
697   int status;
698   pid_t got= waitpid(connecting_child, &status, 0);
699   if (got==-1) sysdie("connect: real wait for child");
700   assert(got == connecting_child);
701   connecting_child= 0;
702
703   if (!WIFEXITED(status)) { report_child_status("connect",status); goto x; }
704   int es= WEXITSTATUS(status);
705   switch (es) {
706   case CONNCHILD_ESTATUS_STREAM:    conn->stream= 1;   break;
707   case CONNCHILD_ESTATUS_NOSTREAM:  conn->stream= 0;   break;
708   default:
709     fatal("connect: child gave unexpected exit status %d", es);
710   }
711
712   /* Phew! */
713   setnonblock(conn->fd, 1);
714   conn->max_queue= conn->stream ? max_queue_per_conn : 1;
715   LIST_ADDHEAD(conns, conn);
716   notice("#%d connected %s", conn->fd, conn->stream ? "streaming" : "plain");
717   connect_attempt_discard();
718   check_master_queue();
719   return 0;
720
721  x:
722   if (conn) {
723     perhaps_close(&conn->fd);
724     free(conn);
725   }
726   connect_attempt_discard();
727 }
728
729 static void connect_start(void) {
730   assert(!connecting_sockets[0]);
731   assert(!connecting_sockets[1]);
732   assert(!connecting_child);
733
734   notice("starting connection attempt");
735
736   int r= socketpair(AF_UNIX, SOCK_STREAM, 0, connecting_sockets);
737   if (r) { syswarn("connect: cannot create socketpair for child"); goto x; }
738
739   connecting_child= xfork("connection");
740
741   if (!connecting_child) {
742     FILE *cn_from, *cn_to;
743     char buf[NNTP_STRLEN+100];
744     int exitstatus= CONNCHILD_ESTATUS_NOSTREAM;
745
746     r= close(connecting_sockets[0]);
747     if (r) sysdie("connect: close parent socket in child");
748
749     alarm(connection_setup_timeout);
750     if (NNTPconnect((char*)remote_host, port, &cn_from, &cn_to, buf) < 0) {
751       if (buf[0]) fatal("connect: rejected: %s", sanitise(buf));
752       else sysfatal("connect: connection attempt failed");
753     }
754     if (NNTPsendpassword((char*)remote_host, cn_from, cn_to) < 0)
755       sysfatal("connect: authentication failed");
756     if (try_stream) {
757       if (fputs("MODE STREAM\r\n", cn_to) ||
758           fflush(cn_to))
759         sysfatal("connect: could not send MODE STREAM");
760       buf[sizeof(buf)-1]= 0;
761       if (!fgets(buf, sizeof(buf)-1, cn_from)) {
762         if (ferror(cn_from))
763           sysfatal("connect: could not read response to MODE STREAM");
764         else
765           fatal("connect: connection close in response to MODE STREAM");
766       }
767       int l= strlen(buf);
768       assert(l>=1);
769       if (buf[-1]!='\n')
770         fatal("connect: response to MODE STREAM is too long: %.100s...",
771             remote_host, sanitise(buf));
772       l--;  if (l>0 && buf[l-1]=='\r') l--;
773       buf[l]= 0;
774       char *ep;
775       int rcode= strtoul(buf,&ep,10);
776       if (ep != &buf[3])
777         fatal("connect: bad response to MODE STREAM: %.50s", sanitise(buf));
778
779       switch (rcode) {
780       case 203:
781         exitstatus= CONNCHILD_ESTATUS_STREAM;
782         break;
783       case 480:
784       case 500:
785         break;
786       default:
787         warn("connect: unexpected response to MODE STREAM: %.50s",
788              sanitise(buf));
789         exitstatus= 2;
790         break;
791       }
792     }
793     int fd= fileno(cn_from);
794
795     PREP_DECL_MSG_CMSG(msg);
796     struct cmsghdr *cmsg= CMSG_FIRSTHDR(&msg);
797     cmsg->cmsg_level= SOL_SOCKET;
798     cmsg->cmsg_type=  SCM_RIGHTS;
799     cmsg->cmsg_len=   CMSG_LEN(sizeof(fd));
800     memcpy(CMSG_DATA(cmsg), &fd, sizeof(fd));
801
802     msg.msg_controllen= cmsg->cmsg_len;
803     r= sendmsg(connecting_sockets[1], &msg, 0);
804     if (r) sysdie("sendmsg failed for new connection");
805
806     _exit(exitstatus);
807   }
808
809   r= close(connecting_sockets[1]);  connecting_sockets[1]= 0;
810   if (r) sysdie("connect: close child socket in parent");
811
812   on_fd_read_except(connecting_sockets[0], connchild_event);
813   return;
814
815  x:
816   connect_attempt_discard();
817 }
818
819
820 /*========== overall control of article flow ==========*/
821
822 static void check_master_queue(void) {
823   for (;;) {
824     if (!queue.count)
825       break;
826     
827     Conn *walk, *use=0;
828     int spare;
829     for (walk=LIST_HEAD(conns); walk; walk=LIST_NEXT(walk)) {
830       int inqueue= walk->sent.count + walk->queue.count;
831       spare= walk->max_queue - inqueue;
832       assert(inqueue <= max_queue_per_conn);
833       assert(spare >= 0);
834       if (inqueue==0) /*idle*/ { if (!use) use= walk; }
835       else if (spare>0) /*working*/ { use= walk; break; }
836     }
837     if (use) {
838       while (spare>0) {
839         Article *art= LIST_REMHEAD(queue);
840         LIST_ADDTAIL(use->queue, art);
841         spare--;
842       }
843       conn_check_work(use);
844     } else if (conns.count < max_connections &&
845              !connecting_child && !until_connect) {
846       until_connect= reconnect_delay_periods;
847       connect_start();
848       break;
849     } else {
850       break;
851     }
852   }
853 }
854
855 static void *conn_writeable(oop_source *l, int fd, oop_event ev, void *u) {
856   conn_check_work(u);
857   return OOP_CONTINUE;
858 }
859
860 static void conn_check_work(Conn *conn)  {
861   void *rp= 0;
862   for (;;) {
863     conn_make_some_xmits(conn);
864     if (!conn->xmitu) {
865       loop->cancel_fd(loop, conn->fd, OOP_WRITE);
866       return;
867     }
868
869     void *rp= conn_write_some_xmits(conn);
870     if (rp==OOP_CONTINUE) {
871       loop->on_fd(loop, conn->fd, OOP_WRITE, conn_writeable, conn);
872       return;
873     } else if (rp==OOP_HALT) {
874       return;
875     } else if (!rp) {
876       /* transmitted everything */
877     } else {
878       abort();
879     }
880   }
881 }
882
883 static void vconnfail(Conn *conn, const char *fmt, va_list al)
884      __attribute__((__format__(printf,2,0)));
885
886 static void vconnfail(Conn *conn, const char *fmt, va_list al) {
887   int requeue[art_MaxState];
888
889   Article *art;
890   while ((art= LIST_REMHEAD(conn->queue))) LIST_ADDTAIL(queue, art);
891   while ((art= LIST_REMHEAD(conn->sent))) {
892     requeue[art->state]++;
893     if (art->state==art_Unsolicited) art->state= art_Unchecked;
894     LIST_ADDTAIL(queue,art);
895   }
896
897   int i;
898   XmitDetails *d;
899   for (i=0, d=conn->xmitd; i<conn->xmitu; i++, d++)
900     xmit_free(d);
901
902   char *m= xvasprintf(fmt,al);
903   warn("#%d connection failed, requeueing " RCI_TRIPLE_FMT_BASE ": %s",
904        conn->fd, RCI_TRIPLE_FMT_VALS(requeue, /*nothing*/), m);
905   free(m);
906
907   close(conn->fd);
908   fixme remove conn from the appropriate list;
909   free(conn);
910
911   until_connect= reconnect_delay_periods;
912   check_master_queue();
913 }
914
915 static void connfail(Connection *conn, const char *fmt, ...)
916      __attribute__((__format__(printf,2,3)));
917 static void connfail(Connection *conn, const char *fmt, ...) {
918   va_list al;
919   va_start(al,fmt);
920   vconnfail(fmt,al);
921   va_end(al);
922 }
923
924 /*========== article transmission ==========*/
925
926 static XmitDetails *xmit_core(Conn *conn, const char *data, int len,
927                   XmitKind kind) { /* caller must then fill in details */
928   struct iovec *v= &conn->xmit[conn->xmitu];
929   XmitDetails *d= &conn->xmitd[conn->xmitu++];
930   v->iov_base= data;
931   v->iov_len= len;
932   d->kind= kind;
933   return d;
934 }
935
936 static void xmit_noalloc(Conn *conn, const char *data, int len) {
937   xmit_core(conn,data,len, xk_Const);
938 }
939 #define XMIT_LITERAL(lit) (xmit_noalloc(conn, (lit), sizeof(lit)-1))
940
941 static void xmit_artbody(Conn *conn, ARTHANDLE *ah /* consumed */) {
942   XmitDetails *d= xmit_core(conn, ah->data, ah->len, sk_Artdata);
943   d->info.sm_art= ah;
944 }
945
946 static void xmit_free(XmitDetails *d) {
947   switch (d->kind) {
948   case xk_Malloc:  free(d->info.malloc_tofree);   break;
949   case xk_Artdata: SMfreearticle(d->info.sm_art); break;
950   case xk_Const:                                  break;
951   default: abort();
952   }
953 }
954
955 static void *conn_write_some_xmits(Conn *conn) {
956   /* return values:
957    *      0:            nothing more to write, no need to call us again
958    *      OOP_CONTINUE: more to write but fd not writeable
959    *      OOP_HALT:     disaster, have destroyed conn
960    */
961   for (;;) {
962     int count= conn->xmitu;
963     if (!count) return 0;
964
965     if (count > IOV_MAX) count= IOV_MAX;
966     ssize_t rs= writev(conn->fd, conn->xmit, count);
967     if (rs < 0) {
968       if (errno == EAGAIN) return OOP_CONTINUE;
969       connfail(conn, "write failed: %s", strerror(errno));
970       return OOP_HALT;
971     }
972     assert(rs > 0);
973
974     for (done=0; rs && done<xmitu; done++) {
975       struct iovec *vp= &conn->xmit[done];
976       XmitDetails *dp= &conn->xmitd[done];
977       if (rs > vp->iov_len) {
978         rs -= vp->iov_len;
979         xmit_free(dp);
980       } else {
981         vp->iov_base += rs;
982         vp->iov_len -= rs;
983       }
984     }
985     int newu= conn->xmitu - done;
986     memmove(conn->xmit,  conn->xmit  + done, newu * sizeof(*conn->xmit));
987     memmove(conn->xmitd, conn->xmitd + done, newu * sizeof(*conn->xmitd));
988     conn->xmitu= newu;
989   }
990 }
991
992 static void conn_make_some_xmits(Conn *conn) {
993   for (;;) {
994     if (conn->xmitu+5 > CONNIOVS)
995       break;
996
997     Article *art= LIST_REMHEAD(queue);
998     if (!art) break;
999
1000     if (art->state >= art_Wanted || (conn->stream && nocheck)) {
1001       /* actually send it */
1002
1003       ARTHANDLE *artdata= SMretrieve();
1004
1005       if (conn->stream) {
1006         if (artdata) {
1007           XMIT_LITERAL("TAKETHIS ");
1008           xmit_noalloc(conn, art->mid, art->midlen);
1009           XMIT_LITERAL("\r\n");
1010           xmit_artbody(conn, artdata);
1011         }
1012       } else {
1013         /* we got 235 from IHAVE */
1014         if (artdata) {
1015           xmit_artbody(conn, artdata);
1016         } else {
1017           XMIT_LITERAL(".\r\n");
1018         }
1019       }
1020
1021       art->state=
1022         art->state == art_Unchecked ? art_Unsolicited :
1023         art->state == art_Wanted    ? art_Wanted      :
1024         abort();
1025       art->ipf->counts[art->state].sent++;
1026       LIST_ADDTAIL(conn->sent, art);
1027
1028     } else {
1029       /* check it */
1030
1031       if (conn->stream)
1032         XMIT_LITERAL("IHAVE ");
1033       else
1034         XMIT_LITERAL("CHECK ");
1035       xmit_noalloc(art->mid, art->midlen);
1036       XMIT_LITERAL("\r\n");
1037
1038       assert(art->state == art_Unchecked);
1039       art->ipf->counts[art->state].sent++;
1040       LIST_ADDTAIL(conn->sent, art);
1041     }
1042   }
1043 }
1044
1045
1046 /*========== handling responses from peer ==========*/
1047
1048 static const oop_rd_style peer_rd_style= {
1049   OOP_RD_DELIM_STRIP, '\n',
1050   OOP_RD_NUL_FORBID,
1051   OOP_RD_SHORTREC_FORBID
1052 };
1053
1054 static void *peer_rd_err(oop_source *lp, oop_read *oread, oop_event ev,
1055                          const char *errmsg, int errnoval,
1056                          const char *data, size_t recsz, void *conn_v) {
1057   Conn *conn= conn_v;
1058   connfail(conn, "error receiving from peer: %s", errmsg);
1059   return OOP_CONTINUE;
1060 }
1061
1062 static Article *article_reply_check(Connection *conn, const char *response,
1063                                     int code_indicates_streaming,
1064                                     int must_have_sent
1065                                         /* 1:yes, -1:no, 0:dontcare */,
1066                                     const char *sanitised_response) {
1067   Article *art= conn->sent.head;
1068
1069   if (!art) {
1070     connfail(conn,
1071              "peer gave unexpected response when no commands outstanding: %s",
1072              sanitised_response);
1073     return 0;
1074   }
1075
1076   if (code_indicates_streaming) {
1077     assert(!memchr(response, 0, 4)); /* ensured by peer_rd_ok */
1078     if (!conn->stream) {
1079       connfail("peer gave streaming response code "
1080                " to IHAVE or subsequent body: %s", sanitised_response);
1081       return 0;
1082     }
1083     const char *got_mid= response+4;
1084     int got_midlen= strcspn(got_mid, " \n\r");
1085     if (got_midlen<3 || got_mid[0]!='<' || got_mid[got_midlen-1]!='>') {
1086       connfail("peer gave streaming response with syntactically invalid"
1087                " messageid: %s", sanitised_response);
1088       return 0;
1089     }
1090     if (got_midlen != art->midlen ||
1091         memcmp(got_mid, art->messageid, got_midlen)) {
1092       connfail("peer gave streaming response code to wrong article -"
1093                " probable synchronisation problem; we offered: %s;"
1094                " peer said: %s",
1095                art->messageid, sanitised_response);
1096       return 0;
1097     }
1098   } else {
1099     if (conn->stream) {
1100       connfail("peer gave non-streaming response code to CHECK/TAKETHIS: %s",
1101                sanitised_response);
1102       return 0;
1103     }
1104   }
1105
1106   if (must_have_sent>0 && art->state < art_Wanted) {
1107     connfail("peer says article accepted but we had not sent the body: %s",
1108              sanitised_response);
1109     return 0;
1110   }
1111   if (must_have_sent<0 && art->state >= art_Wanted) {
1112     connfail("peer says please sent the article but we just did: %s",
1113              sanitised_response);
1114     return 0;
1115   }
1116
1117   Article *art_again= LIST_REMHEAD(conn->sent);
1118   assert(art_again == art);
1119   return art;
1120 }
1121
1122 static void update_nocheck(int accepted) {
1123   accept_proportion *= accept_decay;
1124   accept_proportion += accepted;
1125   int new_nocheck= accept_proportion >= nocheck_thresh;
1126   if (new_nocheck && !nocheck_reported) {
1127     notice("entering nocheck mode for the first time");
1128     nocheck_reported= 1;
1129   } else if (new_nocheck != nocheck) {
1130     debug("nocheck mode %s", new_nocheck ? "start" : "stop");
1131   }
1132   nocheck= new_nocheck;
1133 }
1134
1135 static void article_done(Connection *conn, Article *art, int whichcount) {
1136   art->ipf->counts[art->state][whichcount]++;
1137   if (whichcount == RC_accepted) update_nocheck(1);
1138   else if (whichcount == RC_unwanted) update_nocheck(0);
1139
1140   InputFile *ipf= art->ipf;
1141   while (art->blanklen) {
1142     static const char spaces[]=
1143       "                                                                "
1144       "                                                                "
1145       "                                                                "
1146       "                                                                ";
1147     int w= art->blanklen;  if (w >= sizeof(spaces)) w= sizeof(spaces)-1;
1148     int r= pwrite(ipf->fd, spaces, w, art->offset);
1149     if (r==-1) {
1150       if (errno==EINTR) continue;
1151       sysdie("failed to blank entry for %s (length %d at offset %lu) in %s",
1152              art->messageid, art->blanklen, art->offset, ipf->path);
1153     }
1154     assert(r>=0 && r<=w);
1155     art->blanklen -= w;
1156     art->offset += w;
1157   }
1158
1159   ipf->inprogress--;
1160   assert(ipf->inprogress >= 0);
1161
1162   if (!ipf->inprogress && ipf != main_input_file)
1163     queue_check_input_done();
1164
1165   free(art);
1166 }
1167
1168 static void *peer_rd_ok(oop_source *lp, oop_read *oread, oop_event ev,
1169                         const char *errmsg, int errnoval,
1170                         const char *data, size_t recsz, void *conn_v) {
1171   Conn *conn= conn_v;
1172
1173   if (ev == OOP_RD_EOF) {
1174     connfail(conn, "unexpected EOF from peer");
1175     return OOP_CONTINUE;
1176   }
1177   assert(ev == OOP_RD_OK);
1178
1179   char *sani= sanitise(data, recsz);
1180
1181   char *ep;
1182   unsigned long code= strtoul(data, &ep, 10);
1183   if (ep != data+3 || *ep != ' ' || data[0]=='0') {
1184     connfail(conn, "badly formatted response from peer: %s", sani);
1185     return OOP_CONTINUE;
1186   }
1187
1188   if (conn->quitting) {
1189     if (code!=205) {
1190       connfail(conn, "peer gave failure response to QUIT: %s", sani);
1191       return OOP_CONTINUE;
1192     }
1193     conn close ok;
1194     return;
1195   }
1196
1197   Article *art;
1198
1199 #define GET_ARTICLE(musthavesent)                                           \
1200   art= article_reply_check(conn, data, musthavesent, code_streaming, sani); \
1201   if (art) ; else return OOP_CONTINUE /* reply_check has failed the conn */
1202
1203 #define ARTICLE_DEALTWITH(streaming,musthavesent,how)           \
1204   code_streaming= (streaming)                                   \
1205   GET_ARTICLE(musthavesent);                                    \
1206   article_done(conn, art, RC_##how);  break;
1207
1208 #define PEERBADMSG(m) connfail(conn, m ": %s", sani);  return OOP_CONTINUE
1209
1210   int code_streaming= 0;
1211
1212   switch (code) {
1213
1214   case 400: PEERBADMSG("peer stopped accepting articles");
1215   case 503: PEERBADMSG("peer timed us out");
1216   default:  PEERBADMSG("peer sent unexpected message");
1217
1218   case 435: ARTICLE_DEALTWITH(0,0,unwanted); /* IHAVE says they have it */
1219   case 438: ARTICLE_DEALTWITH(1,0,unwanted); /* CHECK/TAKETHIS: they have it */
1220
1221   case 235: ARTICLE_DEALTWITH(0,1,accepted); /* IHAVE says thanks */
1222   case 239: ARTICLE_DEALTWITH(1,1,accepted); /* TAKETHIS says thanks */
1223
1224   case 437: ARTICLE_DEALTWITH(0,0,rejected); /* IHAVE says rejected */
1225   case 439: ARTICLE_DEALTWITH(1,0,rejected); /* TAKETHIS says rejected */
1226
1227   case 238: /* CHECK says send it */
1228     code_streaming= 1;
1229   case 335: /* IHAVE says send it */
1230     GET_ARTICLE(-1);
1231     assert(art->state == art_Unchecked);
1232     art->ipf->counts[art->state].accepted++;
1233     art->state= art_Wanted;
1234     LIST_ADDTAIL(conn->queue);
1235     break;
1236
1237   case 431: /* CHECK or TAKETHIS says try later */
1238     code_streaming= 1;
1239   case 436: /* IHAVE says try later */
1240     GET_ARTICLE(0);
1241     open_defer();
1242     if (fprintf(defer, "%s %s\n", TokenToText(art->token), art->messageid) <0
1243         || fflush(defer))
1244       sysfatal("write to defer file %s",path_defer);
1245     article_done(conn, art, RC_deferred);
1246     break;
1247
1248   }
1249
1250   check_check_work(conn);
1251   return OOP_CONTINUE;
1252 }
1253
1254
1255 /*========== monitoring of input files ==========*/
1256
1257 static void feedfile_eof(InputFile *ipf) {
1258   assert(ipf != main_input_file); /* promised by tailing_try_read */
1259
1260   inputfile_tailing_stop(ipf);
1261   assert(ipf->fd >= 0);
1262   if (close(ipf->fd)) sysdie("could not close input file %s", ipf->path);
1263   ipf->fd= -1;
1264
1265   if (ipf == flushing_input_file) {
1266     assert(sms==sm_SEPARATED || sms==sm_DROPPING);
1267     if (main_input_file) inputfile_tailing_start(main_input_file);
1268     statemc_check_flushing_done();
1269   } else if (ipf == backlog_input_file) {
1270     statemc_check_backlog_done();
1271   } else {
1272     abort(); /* supposed to wait rather than get EOF on main input file */
1273   }
1274 }
1275
1276 static InputFile *open_input_file(const char *path) {
1277   int fd= open(path, O_RDONLY);
1278   if (fd<0) {
1279     if (errno==ENOENT) return 0;
1280     sysfatal("unable to open input file %s", path);
1281   }
1282
1283   InputFile *ipf= xmalloc(sizeof(*ipf) + strlen(path) + 1);
1284   memset(ipf,0,sizeof(*ipf));
1285
1286   ipf->readable.on_readable= tailing_on_readable;
1287   ipf->readable.on_cancel=   tailing_on_cancel;
1288   ipf->readable.try_read=    tailing_try_read;
1289
1290   ipf->fd= fd;
1291   strcpy(ipf->path, path);
1292
1293   return ipf;
1294 }
1295
1296 static void close_input_file(InputFile *ipf) {
1297   assert(!ipf->readable_callback); /* must have had ->on_cancel */
1298   assert(!ipf->filemon); /* must have had inputfile_tailing_stop */
1299   assert(!ipf->rd); /* must have had inputfile_tailing_stop */
1300   assert(!ipf->inprogress); /* no dangling pointers pointing here */
1301
1302   if (ipf->fd >= 0)
1303     if (close(ipf->fd)) sysdie("could not close input file %s", ipf->path);
1304 }
1305
1306
1307 /*---------- dealing with articles read in the input file ----------*/
1308
1309 typedef void *feedfile_got_article(oop_source *lp, oop_read *rd,
1310                                    oop_rd_event ev, const char *errmsg,
1311                                    int errnoval,
1312                                    const char *data, size_t recsz,
1313                                    void *ipf_v) {
1314   InputFile *ipf= ipf_v;
1315   Article *art;
1316   char tokentextbuf[sizeof(TOKEN)*2+3];
1317
1318   if (!data) { feedfile_eof(ipf); return OOP_CONTINUE; }
1319
1320   if (data[0] && data[0]!=' ') {
1321     char *space= strchr(data,' ');
1322     int tokenlen= space-data;
1323     int midlen= (int)recsz-tokenlen-1;
1324     if (midlen < 0) goto bad_data;
1325
1326     if (tokenlen != sizeof(TOKEN)*2+2) goto bad_data;
1327     memcpy(tokentextbuf, data, tokenlen);
1328     tokentextbuf[tokenlen]= 0;
1329     if (!IsToken(tokentextbuf)) goto bad_data;
1330
1331     art= xmalloc(sizeof(*art) - 1 + midlen + 1);
1332     art->offset= ipf->offset;
1333     art->blanklen= recsz;
1334     art->midlen= midlen;
1335     art->state= art_Unchecked;
1336     art->ipf= ipf;  ipf->inprogress++;
1337     art->token= TextToToken(tokentextbuf);
1338     strcpy(art->messageid, space+1);
1339     LIST_ADDTAIL(queue, art);
1340   }
1341   ipf->offset += recsz + 1;
1342
1343   if (sms==sm_NORMAL && ipf==main_input_file &&
1344       ipf->offset >= flush_threshold)
1345     statemc_start_flush("feed file size");
1346
1347   check_master_queue();
1348 }
1349
1350 static void statemc_start_flush(const char *why) { /* Normal => Flushing */
1351   assert(sms == sm_NORMAL);
1352
1353   debug("starting flush (%s) (%lu >= %lu) (%d)",
1354         why,
1355         (unsigned long)ipf->offset, (unsigned long)flush_threshold,
1356         sm_period_counter);
1357
1358   int r= link(feedfile, duct_path);
1359   if (r) sysdie("link feedfile %s to flushing file %s", feedfile,
1360                 path_duct);
1361   /* => Hardlinked */
1362
1363   xunlink(feedfile, "old feedfile link");
1364   /* => Moved */
1365
1366   spawn_inndcomm_flush(why); /* => Flushing FLUSHING */
1367 }
1368
1369 /*========== tailing input file ==========*/
1370
1371 static void filemon_start(InputFile *ipf) {
1372   assert(!ipf->filemon);
1373
1374   ipf->filemon= xmalloc(sizeof(*ipf->filemon));
1375   memset(ipf->filemon, 0, sizeof(*ipf->filemon));
1376   filemon_method_startfile(ipf, ipf->filemon);
1377 }
1378
1379 static void filemon_stop(InputFile *ipf) {
1380   if (!ipf->filemon) return;
1381   filemon_method_stopfile(ipf, ipf->filemon);
1382   free(ipf->filemon);
1383   ipf->filemon= 0;
1384 }
1385
1386 static void filemon_callback(InputFile *ipf) {
1387   ipf->readable_callback(ipf->readable_callback_user);
1388 }
1389
1390 static void *tailing_rable_call_time(oop_source *loop, struct timeval tv,
1391                                      void *user) {
1392   InputFile *ipf= user;
1393   return ipf->readable_callback(ipf->readable_callback_user);
1394 }
1395
1396 static void on_cancel(struct oop_readable *rable) {
1397   InputFile *ipf= (void*)rable;
1398
1399   if (ipf->filemon) filemon_stopfile(ipf);
1400   loop->cancel_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
1401   ipf->readable_callback= 0;
1402 }
1403
1404 static void tailing_queue_readable(InputFile *ipf) {
1405   /* lifetime of ipf here is OK because destruction will cause
1406    * on_cancel which will cancel this callback */
1407   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
1408 }
1409
1410 static int tailing_on_readable(struct oop_readable *rable,
1411                                 oop_readable_call *cb, void *user) {
1412   InputFile *ipf= (void*)rable;
1413
1414   tailing_on_cancel(rable);
1415   ipf->readable_callback= cb;
1416   ipf->readable_callback_user= user;
1417   filemon_startfile(ipf);
1418
1419   tailing_queue_readable(ipf);
1420   return 0;
1421 }
1422
1423 static ssize_t tailing_try_read(struct oop_readable *rable, void *buffer,
1424                                 size_t length) {
1425   InputFile *ipf= (void*)rable;
1426   for (;;) {
1427     ssize_t r= read(ipf->fd, buffer, length);
1428     if (r==-1) {
1429       if (errno==EINTR) continue;
1430       return r;
1431     }
1432     if (!r) {
1433       if (ipf==main_input_file) {
1434         errno=EAGAIN;
1435         return -1;
1436       } else if (ipf==flushing_input_file) {
1437         assert(ipf->fd>=0);
1438         assert(sms==sm_SEPARATED || sms==sm_DROPPING);
1439       } else if (ipf==backlog_input_file) {
1440         assert(ipf->fd>=0);
1441       } else {
1442         abort();
1443       }
1444     }
1445     return r;
1446   }
1447 }
1448
1449 /*---------- filemon implemented with inotify ----------*/
1450
1451 #if defined(HAVE_INOTIFY) && !defined(HAVE_FILEMON)
1452 #define HAVE_FILEMON
1453
1454 #include <linux/inotify.h>
1455
1456 static int filemon_inotify_fd;
1457 static int filemon_inotify_wdmax;
1458 static InputFile **filemon_inotify_wd2ipf;
1459
1460 typedef struct Filemon_Perfile {
1461   int wd;
1462 } Filemon_Inotify_Perfile;
1463
1464 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) {
1465   int wd= inotify_add_watch(filemon_inotify_fd, ipf->path, IN_MODIFY);
1466   if (wd < 0) sysdie("inotify_add_watch %s", ipf->path);
1467
1468   if (wd >= filemon_inotify_wdmax) {
1469     int newmax= wd+2;
1470     filemon_inotify_wd= xrealloc(filemon_inotify_wd2ipf,
1471                                  sizeof(*filemon_inotify_wd2ipf) * newmax);
1472     memset(filemon_inotify_wd2ipf + filemon_inotify_wdmax, 0,
1473            sizeof(*filemon_inotify_wd2ipf) * (newmax - filemon_inotify_wdmax));
1474     filemon_inotify_wdmax= newmax;
1475   }
1476
1477   assert(!filemon_inotify_wd2ipf[wd]);
1478   filemon_inotify_wd2ipf[wd]= ipf;
1479
1480   debug("filemon inotify startfile %p wd=%d wdmax=%d",
1481         ipf, wd, filemon_inotify_wdmax);
1482
1483   pf->wd= wd;
1484 }
1485
1486 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) {
1487   int wd= pf->wd;
1488   debug("filemon inotify stopfile %p wd=%d", ipf, wd);
1489   int r= inotify_rm_watch(filemon_inotify_fd, filemon_inotify_wd);
1490   if (r) sysdie("inotify_rm_watch");
1491   filemon_inotify_wd2ipf[wd]= 0;
1492 }
1493
1494 static void *filemon_inotify_readable(oop_source *lp, int fd,
1495                                       oop_event e, void *u) {
1496   struct inotify_event iev;
1497   for (;;) {
1498     int r= read(filemon_inotify_fd, &iev, sizeof(iev));
1499     if (r==-1) {
1500       if (errno==EAGAIN) break;
1501       sysdie("read from inotify master");
1502     } else if (r==sizeof(iev)) {
1503       assert(iev.wd >= 0 && iev.wd < filemon_inotify_wdmax);
1504     } else {
1505       die("inotify read %d bytes wanted struct of %d", r, (int)sizeof(iev));
1506     }
1507     InputFile *ipf= filemon_inotify_wd2ipf[iev.wd];
1508     debug("filemon inotify readable read %p wd=%p", iev.wd, ipf);
1509     filemon_callback(ipf);
1510   }
1511   return OOP_CONTINUE;
1512 }
1513
1514 static int filemon_method_init(void) {
1515   filemon_inotify_fd= inotify_init();
1516   if (filemon_inotify_fd<0) {
1517     syswarn("could not initialise inotify: inotify_init failed");
1518     return 0;
1519   }
1520   set nonblock;
1521   loop->on_fd(loop, filemon_inotify_fd, OOP_READ, filemon_inotify_readable);
1522
1523   debug("filemon inotify init filemon_inotify_fd=%d", filemon_inotify_fd);
1524   return 1;
1525 }
1526
1527 #endif /* HAVE_INOTIFY && !HAVE_FILEMON *//
1528
1529 /*---------- filemon dummy implementation ----------*/
1530
1531 #if !defined(HAVE_FILEMON)
1532
1533 typedef struct Filemon_Perfile { int dummy; } Filemon_Dummy_Perfile;
1534
1535 static int filemon_method_init(void) { return 0; }
1536 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) { }
1537 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) { }
1538
1539 #endif /* !HAVE_FILEMON */
1540
1541 /*---------- interface to start and stop an input file ----------*/
1542
1543 static const oop_rd_style feedfile_rdstyle= {
1544   OOP_RD_DELIM_STRIP, '\n',
1545   OOP_RD_NUL_FORBID,
1546   OOP_RD_SHORTREC_EOF,
1547 };
1548
1549 static void inputfile_tailing_start(InputFile *ipf) {
1550   assert(!ipf->fd);
1551   ipf->readable->on_readable= tailing_on_readable;
1552   ipf->readable->on_cancel=   tailing_on_cancel;
1553   ipf->readable->try_read=    tailing_try_read;
1554   ipf->readable->delete_tidy= 0; /* we never call oop_rd_delete_{tidy,kill} */
1555   ipf->readable->delete_kill= 0;
1556
1557   ipf->readable_callback= 0;
1558   ipf->readable_callback_user= 0;
1559
1560   ipf->rd= oop_rd_new(loop, &ipf->readable, 0,0);
1561   assert(ipf->fd);
1562
1563   int r= oop_rd_read(ipf->rd, &feedfile_rdstyle, MAX_LINE_FEEDFILE,
1564                      feedfile_got_article,ipf, feedfile_problem,ipf);
1565   if (r) sysdie("unable start reading feedfile %s",ipf->path);
1566 }
1567
1568 static void inputfile_tailing_stop(InputFile *ipf) {
1569   assert(ipf->fd);
1570   oop_rd_cancel(ipf->rd);
1571   oop_rd_delete(ipf->rd);
1572   ipf->rd= 0;
1573   assert(!ipf->filemon); /* we shouldn't be monitoring it now */
1574 }
1575
1576
1577 /*========== interaction with innd - state machine ==========*/
1578
1579 /* See official state diagram at top of file.  We implement
1580  * this as follows:
1581  * -8<-
1582
1583             .=======.
1584             ||START||
1585             `======='
1586                 |
1587                 | open F
1588                 |
1589                 |    F ENOENT
1590                 |`---------------------------------------------------.
1591       F OPEN OK |                                                    |
1592                 |`---------------- - - -                             |
1593        D ENOENT |       D EXISTS   see OVERALL STATES diagram        |
1594                 |                  for full startup logic            |
1595      ,--------->|                                                    |
1596      |          V                                                    |
1597      |     ============                                       try to |
1598      |      NORMAL                                            open D |
1599      |     [Normal]                                                  |
1600      |      main F tail                                              |
1601      |     ============                                              V
1602      |          |                                                    |
1603      |          | F IS SO BIG WE SHOULD FLUSH, OR TIMEOUT            |
1604      ^          | hardlink F to D                                    |
1605      |     [Hardlinked]                                              |
1606      |          | unlink F                                           |
1607      |          | our handle onto F is now onto D                    |
1608      |     [Moved]                                                   |
1609      |          |                                                    |
1610      |          |<-------------------<---------------------<---------+
1611      |          |                                                    |
1612      |          | spawn inndcomm flush                               |
1613      |          V                                                    |
1614      |     ==================                                        |
1615      |      FLUSHING[-ABSENT]                                        |
1616      |     [Flushing]                                                |
1617      |     main D tail/none                                          |
1618      |     ==================                                        |
1619      |          |                                                    |
1620      |          |   INNDCOMM FLUSH FAILS                             ^
1621      |          |`----------------------->----------.                |
1622      |          |                                   |                |
1623      |          |   NO SUCH SITE                    V                |
1624      ^          |`--------------->----.         ==================== |
1625      |          |                      \        FLUSHFAILED[-ABSENT] |
1626      |          |                       \         [Moved]            |
1627      |          | FLUSH OK               \       main D tail/none    |
1628      |          | open F                  \     ==================== |
1629      |          |                          \        |                |
1630      |          |                           \       | TIME TO RETRY  |
1631      |          |`------->----.     ,---<---'\      `----------------'
1632      |          |    D NONE   |     | D NONE  `----.
1633      |          V             |     |              V
1634      |     =============      V     V             ============
1635      |      SEPARATED-1       |     |              DROPPING-1
1636      |      flsh->fd>=0       |     |              flsh->fd>=0
1637      |     [Separated]        |     |             [Dropping]
1638      |      main F idle       |     |              main none
1639      |      old D tail        |     |              old D tail
1640      |     =============      |     |             ============
1641      |          |             |     | install       |
1642      ^          | EOF ON D    |     |  defer        | EOF ON D
1643      |          V             |     |               V
1644      |     ===============    |     |             ===============
1645      |      SEPARATED-2       |     |              DROPPING-2
1646      |      flsh->fd==-1      |     V              flsh->fd==-1
1647      |     [Finishing]        |     |             [Dropping]
1648      |      main F tail       |     `.             main none
1649      |      old D closed      |       `.           old D closed
1650      |     ===============    V         `.        ===============
1651      |          |                         `.          |
1652      |          | ALL D PROCESSED           `.        | ALL D PROCESSED
1653      |          V install defer as backlog    `.      | install defer
1654      ^          | close D                       `.    | close D
1655      |          | unlink D                        `.  | unlink D
1656      |          |                                  |  |
1657      |          |                                  V  V
1658      `----------'                               ==============
1659                                                  DROPPED
1660                                                 [Dropped]
1661                                                  main none
1662                                                  old none
1663                                                  some backlog
1664                                                 ==============
1665                                                       |
1666                                                       | ALL BACKLOG DONE
1667                                                       |
1668                                                       | unlink lock
1669                                                       | exit
1670                                                       V
1671                                                   ==========
1672                                                    (ESRCH)
1673                                                   [Droppped]
1674                                                   ==========
1675  * ->8-
1676  */
1677
1678 static void statemc_init(void) {
1679   struct stat stab, stabf;
1680
1681   path_lock=        xasprintf("%s_lock",      feedfile);
1682   path_flushing=    xasprintf("%s_flushing",  feedfile);
1683   path_defer=       xasprintf("%s_defer",     feedfile);
1684   globpat_backlog=  xasprintf("%s_backlog*",  feedfile);
1685
1686   for (;;) {
1687     int lockfd= open(path_lock, O_CREAT|O_RDWR, 0600);
1688     if (lockfd<0) sysfatal("open lockfile %s", path_lock);
1689
1690     struct flock fl;
1691     memset(&fl,0,sizeof(fl));
1692     fl.l_type= F_WRLCK;
1693     fl.l_whence= SEEK_SET;
1694     r= fcntl(lockfd, F_SETLK, &fl);
1695     if (r==-1) {
1696       if (errno==EACCES || errno==EAGAIN) {
1697         if (quiet_multiple) exit(0);
1698         fatal("another duct holds the lockfile");
1699       }
1700       sysdie("fcntl F_SETLK lockfile %s", path_lock);
1701     }
1702
1703     xfstat_isreg(lockfd, &stabf, "lockfile");
1704     int lock_noent;
1705     xlstat_isreg(path_lock, &stab, &lock_noent, "lockfile");
1706
1707     if (!lock_noent && samefile(&stab, &stabf))
1708       break;
1709
1710     if (close(lockfd))
1711       sysdie("could not close stale lockfile %s", path_lock);
1712   }
1713   debug("startup: locked");
1714
1715   search_backlog_file();
1716
1717   int defer_noent;
1718   xlstat_isreg(path_defer, &stab, &defer_noent, "defer file");
1719   if (defer_noent) {
1720     debug("startup: ductdefer ENOENT");
1721   } else {
1722     debug("startup: ductdefer nlink=%ld", (long)stab.st_nlink);
1723     switch (stab.st_nlink==1) {
1724     case 1:
1725       open_defer(); /* so that we will later close it and rename it */
1726       break;
1727     case 2:
1728       xunlink(path_defer, "stale defer file link"
1729               " (presumably hardlink to backlog file)");
1730       break;
1731     default:
1732       die("defer file %s has unexpected link count %d",
1733           path_defer, stab.st_nlink);
1734     }
1735   }
1736
1737   struct stat stab_f, stab_d;
1738   int noent_f;
1739
1740   InputFile *file_d= open_input_file(path_flushing);
1741   if (file_d) xfstat_isreg(file_d->fd, &stab_d, "flushing file");
1742
1743   xlstat_isreg(feedfile, &stab_f, &noent_f, "feedfile");
1744
1745   if (!noent_f && file_d && samefile(&stab_f, &stab_d)) {
1746     debug("startup: F==D => Hardlinked");
1747     xunlink(feedfile, "feed file (during startup)"); /* => Moved */
1748     noent_f= 1;
1749   }
1750
1751   if (noent_f) {
1752     debug("startup: F ENOENT => Moved");
1753     if (file_d) startup_set_input_file(file_d);
1754     spawn_inndcomm_flush("feedfile missing at startup");
1755     /* => Flushing, sms:=FLUSHING */
1756   } else {
1757     if (file_d) {
1758       debug("startup: F!=D => Separated");
1759       startup_set_input_file(file_d);
1760       SMS(SEPARATED, 0, "found both old and current feed files");
1761     } else {
1762       debug("startup: F exists, D ENOENT => Normal");
1763       FILE *file_f= open_input_file(feedfile);
1764       if (!file_f) die("feed file vanished during startup");
1765       startup_set_input_file(file_f);
1766       SMS(NORMAL, flushfail_retry_periods, "normal startup");
1767     }
1768   }
1769 }
1770
1771 static void statemc_period_poll(void) {
1772   if (!sm_period_counter) return;
1773   sm_period_counter--;
1774   assert(sm_period_counter>=0);
1775
1776   if (sm_period_counter) return;
1777   switch (sms) {
1778   case sm_NORMAL:
1779     statemc_start_flush("periodic"); /* Normal => Flushing; => FLUSHING */
1780     break;
1781   case sm_FLUSHFAILED:
1782     spawn_inndcomm_flush("retry"); /* Moved => Flushing; => FLUSHING */
1783     break;
1784   default:
1785     abort();
1786   }
1787 }
1788
1789 static void startup_set_input_file(InputFile *f) {
1790   assert(!main_input_file);
1791   main_input_file= f;
1792   inputfile_tailing_start(f);
1793 }
1794
1795 static int inputfile_is_done(InputFile *ipf) {
1796   if (!ipf) return 0;
1797   if (ipf->inprogress) return 0; /* new article in the meantime */
1798   if (ipf->fd >= 0); return 0; /* not had EOF */
1799   return 1;
1800 }
1801
1802 static void notice_processed(InputFile *ipf, const char *what,
1803                              const char *spec) {
1804 #define RCI_NOTHING(x) /* nothing */
1805 #define RCI_TRIPLE_FMT(x) " " #x "=" RCI_TRIPLE_FMT_BASE
1806 #define RCI_TRIPLE_VALS(x) RCI_TRIPLE_VALS_BASE(ipf->counts, .x)
1807
1808   info("processed %s%s offered=%d(ch%d,nc%d) accepted=%d(ch%d+nc%d)"
1809        RESULT_COUNTS(RCI_NOTHING, RCI_TRIPLE_FMT)
1810        ,
1811        what,spec,
1812        ipf->counts[art_Unchecked].sent + ipf->counts[art_Unsolicited].sent
1813        , ipf->counts[art_Unchecked].sent, ipf->counts[art_Unsolicited].sent,
1814        ipf->counts[art_Wanted].accepted + ipf->counts[art_Unsolicited].accepted
1815        ,ipf->counts[art_Wanted].accepted,ipf->counts[art_Unsolicited].accepted
1816        RESULT_COUNTS(RCI_NOTHING,  RCI_TRIPLE_VALS)
1817        );
1818 }
1819
1820 static void statemc_check_backlog_done(void) {
1821   InputFile *ipf= backlog_input_file();
1822   if (!inputfile_is_done(ipf)) return;
1823
1824   const char *slash= strrchr(ipf->path, "/");
1825   const char *leaf= slash ? slash+1 : ipf->path;
1826   const char *under= strchr(slash, "_");
1827   const char *rest= under ? under+1 : leaf;
1828   if (!strncmp(rest,"backlog",7)) rest += 7;
1829   notice_processed(ipf,"backlog:",rest);
1830   
1831   close_input_file(ipf);
1832   if (unlink(ipf->path)) {
1833     if (errno != ENOENT)
1834       sysdie("could not unlink processed backlog file %s", ipf->path);
1835     warn("backlog file %s vanished while we were reading it"
1836          " so we couldn't remove it (but it's done now, anyway)",
1837          ipf->path);
1838   }
1839   free(ipf);
1840   backlog_input_file= 0;
1841   search_backlog_file();
1842   return;
1843 }
1844
1845 static void statemc_check_flushing_done(void) {
1846   InputFile *ipf= flushing_input_file;
1847   if (!inputfile_is_done(ipf)) return;
1848
1849   assert(sms==sm_SEPARATED || sms==sm_DROPPING);
1850
1851   notice_processed(ipf,"feedfile",0);
1852
1853   close_defer();
1854
1855   xunlink(path_flushing, "old flushing file");
1856
1857   close_input_file(flushing_input_file);
1858   free(flushing_input_file);
1859   flushing_input_file= 0;
1860
1861   if (sms==sm_SEPARATED) {
1862     notice("flush complete");
1863     SMS(NORMAL, 0, "flush complete");
1864   } else if (sms==sm_DROPPING) {
1865     SMS(DROPPED, 0, "old flush complete");
1866     search_backlog_file();
1867     notice("feed dropped, but will continue until backlog is finished");
1868   }
1869 }
1870
1871 static void *statemc_check_input_done(oop_source *lp, struct timeval now,
1872                                       void *u) {
1873   assert(!inputfile_is_done(main_input_file));
1874   statemc_check_flushing_done();
1875   statemc_check_backlog_done();
1876   return OOP_CONTINUE;
1877 }
1878
1879 static void queue_check_input_done(void) {
1880   loop->on_time(loop, OOP_TIME_NOW, statemc_check_input_done, 0);
1881 }
1882
1883 static void statemc_setstate(StateMachineState newsms, int periods,
1884                              const char *forlog, const char *why) {
1885   sms= newsms;
1886   sm_period_counter= periods;
1887
1888   const char *xtra= "";
1889   switch (sms) {
1890   case sm_FLUSHING: sm_FLUSHFAILED:
1891     if (!main_input_file) xtra= "-ABSENT";
1892     break;
1893   case sm_SEPARATED: case sm_DROPPING:
1894     xtra= flushing_input_file->fd >= 0 ? "-1" : "-2";
1895     break;
1896   default:;
1897   }
1898
1899   if (periods) {
1900     info("%s%s[%d] %s",forlog,xtra,periods,why);
1901   } else {
1902     info("%s%s %s",forlog,xtra,why);
1903   }
1904 }
1905
1906 /*---------- defer and backlog files ----------*/
1907
1908 static void open_defer(void) {
1909   struct stat stab;
1910
1911   if (defer) return;
1912
1913   defer= fopen(path_defer, "a+");
1914   if (!defer) sysfatal("could not open defer file %s", path_defer);
1915
1916   /* truncate away any half-written records */
1917
1918   xfstat_isreg(fileno(defer), &stab, "newly opened defer file");
1919
1920   if (stab.st_size > LONG_MAX)
1921     die("defer file %s size is far too large", path_defer);
1922
1923   if (!stab.st_size)
1924     return;
1925
1926   long orgsize= stab.st_size;
1927   long truncto= stab.st_size;
1928   for (;;) {
1929     if (!truncto) break; /* was only (if anything) one half-truncated record */
1930     if (fseek(defer, truncto-1, SEEK_SET) < 0)
1931       sysdie("seek in defer file %s while truncating partial", path_defer);
1932
1933     r= getc(defer);
1934     if (r==EOF) {
1935       if (ferror(defer))
1936         sysdie("failed read from defer file %s", path_defer);
1937       else
1938         die("defer file %s shrank while we were checking it!", path_defer);
1939     }
1940     if (r=='\n') break;
1941     truncto--;
1942   }
1943
1944   if (stab.st_size != truncto) {
1945     warn("truncating half-record at end of defer file %s -"
1946          " shrinking by %ld bytes from %ld to %ld",
1947          path_defer, orgsize - truncto, orgsize, truncto);
1948
1949     if (fflush(defer))
1950       sysfatal("could not flush defer file %s", path_defer);
1951     if (ftruncate(fileno(defer), truncto))
1952       sysdie("could not truncate defer file %s", path_defer);
1953
1954   } else {
1955     info("continuing existing defer file %s (%ld bytes)",
1956          path_defer, orgsize);
1957   }
1958   if (fseek(defer, truncto, SEEK_SET))
1959     sysdie("could not seek to new end of defer file %s", path_defer);
1960 }
1961
1962 static void close_defer(void) {
1963   if (!defer)
1964     return;
1965
1966   xfstat(fileno(defer), &stab, "defer file");
1967
1968   if (fclose(defer)) sysfatal("could not close defer file %s", path_defer);
1969   defer= 0;
1970
1971   char *backlog= xasprintf("%s_backlog_%lu.%lu", feedfile,
1972                            (unsigned long)now.tv_sec,
1973                            (unsigned long)stab.st_ino);
1974   if (link(path_defer, path_backlog))
1975     sysfatal("could not install defer file %s as backlog file %s",
1976            path_defer, backlog);
1977   if (unlink(path_defer))
1978     sysdie("could not unlink old defer link %s to backlog file %s",
1979            path_defer, backlog);
1980
1981   if (until_backlog_nextscan < 0 ||
1982       until_backlog_nextscan > backlog_retry_minperiods + 1)
1983     until_backlog_nextscan= backlog_retry_minperiods + 1;
1984 }
1985
1986 static void poll_backlog_file(void) {
1987   if (until_backlog_nextscan < 0) return;
1988   if (until_backlog_nextscan-- > 0) return;
1989   search_backlog_file();
1990 }
1991
1992 static void search_backlog_file(void) {
1993   /* returns non-0 iff there are any backlog files */
1994
1995   glob_t gl;
1996   int r;
1997   struct stat stab;
1998   const char *oldest_path=0;
1999   time_t oldest_mtime, now;
2000
2001   if (backlog_input_file) return 3;
2002
2003  try_again:
2004
2005   r= glob(globpat_backlog, GLOB_ERR|GLOB_MARK|GLOB_NOSORT, 0, &gl);
2006
2007   switch (r) {
2008   case GLOB_ABORTED:
2009     sysdie("failed to expand backlog pattern %s", globpat_backlog);
2010   case GLOB_NOSPACE:
2011     die("out of memory expanding backlog pattern %s", globpat_backlog);
2012   case 0:
2013     for (i=0; i<gl.gl_pathc; i++) {
2014       const char *path= gl.gl_pathv[i];
2015
2016       if (strchr(path,'#') || strchr(path,'~')) {
2017         debug("backlog file search skipping %s", path);
2018         continue;
2019       }
2020       r= stat(path, &stab);
2021       if (r) {
2022         syswarn("failed to stat backlog file %s", path);
2023         continue;
2024       }
2025       if (!S_ISREG(stab.st_mode)) {
2026         warn("backlog file %s is not a plain file (or link to one)", path);
2027         continue;
2028       }
2029       if (!oldest_path || stab.st_mtime < oldest_mtime) {
2030         oldest_path= path;
2031         oldest_mtime= stab.st_mtime;
2032       }
2033     }
2034   case GLOB_NOMATCH: /* fall through */
2035     break;
2036   default:
2037     sysdie("glob expansion of backlog pattern %s gave unexpected"
2038            " nonzero (error?) return value %d", globpat_backlog, r);
2039   }
2040
2041   globfree(&gl);
2042
2043   if (!oldest_path) {
2044     debug("backlog scan: none");
2045
2046     if (sms==sm_DROPPED) {
2047       notice("feed dropped and our work is complete");
2048       xunlink(path_lock, "lockfile for old feed");
2049       exit(0);
2050     }
2051     until_backlog_nextscan= backlog_spontaneous_rescan_periods;
2052     return 0;
2053   }
2054
2055   now= time();  if (now==-1) sysdie("time(2) failed");
2056   double age= difftime(now, oldest_mtime);
2057   long age_deficiency= (backlog_retry_minperiods * PERIOD_SECONDS) - age;
2058
2059   if (age_deficiency <= 0) {
2060     debug("backlog scan: found age=%f deficiency=%ld oldest=%s",
2061           age, age_deficiency, oldest_path);
2062
2063     backlog_input_file= open_input_file(oldest_path);
2064     if (!backlog_input_file) {
2065       warn("backlog file %s vanished as we opened it", backlog_input_file);
2066       goto try_again;
2067     }
2068     inputfile_tailing_start(backlog_input_file);
2069     until_backlog_nextscan= -1;
2070     return 1;
2071   }
2072
2073   until_backlog_nextscan= age_deficiency / PERIOD_SECONDS;
2074
2075   if (backlog_spontaneous_rescan_periods >= 0 &&
2076       until_backlog_nextscan > backlog_spontaneous_rescan_periods)
2077     until_backlog_nextscan= backlog_spontaneous_rescan_periods;
2078
2079   debug("backlog scan: young age=%f deficiency=%ld nextscan=%d oldest=%s",
2080         age, age_deficiency, until_backlog_nextscan, oldest_path);
2081   return 2;
2082 }
2083
2084 /*========== flushing the feed ==========*/
2085
2086 static pid_t inndcomm_child;
2087
2088 static void *inndcomm_event(oop_source *lp, int fd, oop_event e, void *u) {
2089   assert(inndcomm_child);
2090   int status= xwaitpid(&inndcomm_child, "inndcomm");
2091   loop->cancel_fd(fd);
2092   close(fd);
2093
2094   assert(!flushing_input_file);
2095
2096   if (WIFEXITED(status)) {
2097     switch (WEXITSTATUS(status)) {
2098
2099     case INNDCOMMCHILD_ESTATUS_FAIL:
2100       goto failed;
2101
2102     case INNDCOMMCHILD_ESTATUS_NONESUCH:
2103       warn("feed has been dropped by innd, finishing up");
2104       flushing_input_file= main_input_file;
2105       tailing_queue_readable(flushing_input_file);
2106         /* we probably previously returned EAGAIN from our fake read method
2107          * when in fact we were at EOF, so signal another readable event
2108          * so we actually see the EOF */
2109
2110       main_input_file= 0;
2111
2112       if (flushing_input_file) {
2113         SMS(DROPPING, 0, "feed dropped by innd, but must finish last flush");
2114       } else {
2115         close_defer();
2116         SMS(DROPPED, 0, "feed dropped by innd");
2117         search_backlog_file();
2118       }
2119       return OOP_CONTINUE;
2120
2121     case 0:
2122       /* as above */
2123       flushing_input_file= main_input_file;
2124       tailing_queue_readable(flushing_input_file);
2125
2126       main_input_file= open_input_file(feedfile);
2127       if (!main_input_file)
2128         die("flush succeeded but feedfile %s does not exist!", feedfile);
2129
2130       if (flushing_input_file) {
2131         SMS(SEPARATED, spontaneous_flush_periods, "recovery flush complete");
2132       } else {
2133         close_defer();
2134         SMS(NORMAL, spontaneous_flush_periods, "flush complete");
2135       }
2136       return OOP_CONTINUE;
2137
2138     default:
2139       goto unexpected_exitstatus;
2140
2141     }
2142   } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
2143     warn("flush timed out trying to talk to innd");
2144     goto failed;
2145   } else {
2146   unexpected_exitstatus:
2147     report_child_status("inndcomm child", status);
2148   }
2149
2150  failed:
2151   SMS(FLUSHFAILED, flushfail_retry_periods, "flush failed, will retry");
2152 }
2153
2154 static void inndcommfail(const char *what) {
2155   syswarn("error communicating with innd: %s failed: %s", what, ICCfailure);
2156   exit(INNDCOMMCHILD_ESTATUS_FAIL);
2157 }
2158
2159 void spawn_inndcomm_flush(const char *why) { /* Moved => Flushing */
2160   int pipefds[2];
2161
2162   notice("flushing %s",why);
2163
2164   assert(sms==sm_NORMAL || sms==sm_FLUSHFAILED);
2165   assert(!inndcomm_child);
2166
2167   if (pipe(pipefds)) sysdie("create pipe for inndcomm child sentinel");
2168
2169   inndcomm_child= xfork();
2170
2171   if (!inndcomm_child) {
2172     static char flushargv[2]= { sitename, 0 };
2173     char *reply;
2174
2175     close(pipefds[0]);
2176
2177     alarm(inndcomm_flush_timeout);
2178     r= ICCopen();                         if (r)   inndcommfail("connect");
2179     r= ICCcommand('f',flushargv,&reply);  if (r<0) inndcommfail("transmit");
2180     if (!r) exit(0); /* yay! */
2181
2182     if (!strcmp(reply, "1 No such site")) exit(INNDCOMMCHILD_ESTATUS_NONESUCH);
2183     syswarn("innd ctlinnd flush failed: innd said %s", reply);
2184     exit(INNDCOMMCHILD_ESTATUS_FAIL);
2185   }
2186
2187   close(pipefds[1]);
2188   int sentinel_fd= pipefds[0];
2189   on_fd_read_except(sentinel_fd, inndcomm_event);
2190
2191   SMS(FLUSHING, 0, why);
2192 }
2193
2194 /*========== main program ==========*/
2195
2196 static void postfork_inputfile(InputFile *ipf) {
2197   if (!ipf) return;
2198   assert(ipf->fd >= 0);
2199   close(ipf->fd);
2200   ipf->fd= -1;
2201 }
2202
2203 static void postfork_stdio(FILE *f) {
2204   /* we have no stdio streams that are buffered long-term */
2205   if (f) fclose(f);
2206 }
2207
2208 static void postfork(const char *what) {
2209   if (signal(SIGPIPE, SIG_DFL) == SIG_ERR)
2210     sysdie("%s child: failed to reset SIGPIPE");
2211
2212   postfork_inputfile(main_input_file);
2213   postfork_inputfile(flushing_input_file);
2214
2215   Conn *conn;
2216   for (conn=LIST_HEAD(conns); conn; conn=LIST_NEXT(conn))
2217     close(conn->fd);
2218
2219   postfork_stdio(defer);
2220 }
2221
2222 #define EVERY(what, interval, body)                                          \
2223   static const struct timeval what##_timeout = { 5, 0 };                     \
2224   static void what##_schedule(void);                                         \
2225   static void *what##_timedout(oop_source *lp, struct timeval tv, void *u) { \
2226     { body }                                                                 \
2227     what##_schedule();                                                       \
2228   }                                                                          \
2229   static void what##_schedule(void) {                                        \
2230     loop->on_time(loop, what##_timeout, what##_timedout, 0);                 \
2231   }
2232
2233 EVERY(filepoll, {5,0}, {
2234   if (main_input_file && main_input_file->readable_callback)
2235     filemon_callback(main_input_file);
2236 });
2237
2238 #define DEBUGF_IPF(wh) " " #wh "=%p/%s:ip=%ld,off=%ld,fd=%d%s"  \
2239 #define DEBUG_IPF(sh)                                           \
2240   wh##_input_file, debug_ipf_path(wh##_input_file),             \
2241   wh##_input_file->inprogress, (long)wh##_input_file->offset,   \
2242   wh##_input_file->fd, wh##_input_file->rd ? "+" : ""
2243 static const char *debug_ipf_path(InputFile *ipf) {
2244   char *slash= strrchr(ipf->path,'/');
2245   return slash ? slash+1 : ipf->path;
2246 }
2247
2248 EVERY(period, {PERIOD_SECONDS,0}, {
2249   debug("PERIOD"
2250         " sms=%s[%d] conns=%d queue=%d until_connect=%d"
2251         " input_files" DEBUGF_IPF(main) DEBUGF_IPF(old) DEBUGF_FMT(flushing)
2252         " children connecting=%ld inndcomm_child"
2253         ,
2254         sms_names[sms], sm_period_counter,
2255         queue.count, conns.count, until_connect,
2256         DEBUG_IPF(main), DEBUG_IPF(flushing), DEBUG_IPF(flushing),
2257         (long)connecting_child, (long)inndcomm_child
2258         );
2259
2260   if (until_connect) until_connect--;
2261
2262   poll_backlog_file();
2263   if (!backlog_input_file) close_defer(); /* want to start on a new backlog */
2264   statemc_period_poll();
2265   check_master_queue();
2266 });
2267
2268
2269 /*========== option parsing ==========*/
2270
2271 enum OptFlags {
2272   of_seconds= 001000u;
2273   of_boolean= 002000u;
2274 };
2275
2276 typedef struct Option Option;
2277 typedef void OptionParser(const Option*, const char *val);
2278
2279 struct Option {
2280   int short;
2281   const char *long;
2282   void *store;
2283   OptionParser *fn;
2284   int noarg;
2285 };
2286
2287 void op_integer(const Option *o, const char *val) {
2288   char *ep;
2289   errno= 0;
2290   unsigned long ul= strtoul(val,&ep,10);
2291   if (*ep || ep==val || errno || ul>INT_MAX)
2292     badusage("bad integer value for %s",o->long);
2293   int *store= o->store;
2294   *store= ul;
2295 }
2296
2297 void op_double(const Option *o, const char *val) {
2298   int *store= o->store;
2299   char *ep;
2300   errno= 0;
2301   *store= strtod(val, &ep);
2302   if (*ep || ep==val || errno)
2303     badusage("bad floating point value for %s",o->long);
2304 }
2305
2306 void op_string(const Option *o, const char *val) {
2307   char **store= o->store;
2308   free(*store);
2309   *store= val;
2310 }
2311
2312 void op_seconds(const Option *o, const char *val) {
2313   int *store= o->store;
2314   char *ep;
2315
2316   double v= strtod(val,&ep);
2317   if (ep==val) badusage("bad time/duration value for %s",o->long);
2318
2319   if (!*ep || !strcmp(ep,"s")) unit= 1;
2320   else if (!strcmp(ep,"m")) unit= 60;
2321   else if (!strcmp(ep,"h")) unit= 3600;
2322   else if (!strcmp(ep,"d")) unit= 86400;
2323   else badusage("bad units %s for time/duration value for %s",ep,o->long);
2324
2325   v *= unit;
2326   v= ceil(v);
2327   if (v > INT_MAX) badusage("time/duration value for %s out of range",o->long);
2328   *store= v;
2329 }
2330
2331 void op_periods_rndup(const Option *o, const char *val) {
2332   int *store= o->store;
2333   op_seconds(o,val);
2334   *store += PERIOD_SECONDS-1;
2335   *store /= PERIOD_SECONDS;
2336 }
2337
2338 void op_periods_booltrue(const Option *o, const char *val) {
2339   int *store= o->store;
2340   *store= 1;
2341 }
2342 void op_periods_boolfalse(const Option *o, const char *val) {
2343   int *store= o->store;
2344   *store= 0;
2345 }
2346
2347 static const Option options[]= {
2348 {'f',"feedfile",              &feedfile,                 op_string           },
2349 {'q',"quiet-multiple",        &quiet_multiple,           op_booltrue,  1     },
2350
2351 { 0, "max-connections",       &max_connections           op_integer          },
2352 { 0, "max-queue-per-conn",    &max_queue_per_conn        op_integer          },
2353
2354
2355 { 0, "streaming",             &try_stream,               op_booltrue,  1     },
2356 { 0, "no-streaming",          &try_stream,               op_boolfalse, 1     },
2357 {'P',"port",                  &port                      op_integer          },
2358 { 0, "inndconf",              &inndconffile,             op_string           },
2359 {'d',"daemon",                &become_daemon,            op_booltrue,  1     },
2360 { 0, "no-daemon",             &become_daemon,            op_boolfalse, 1     },
2361
2362 { 0, "no-check-proportion",   &nocheck_thresh_pct,       op_double           },
2363 { 0, "no-check-filter",       &nocheck_decay_articles,   op_double           },
2364
2365 { 0, "reconnect-interval",    &reconnect_delay_periods,  op_periods_rndup    },
2366 { 0, "flush-retry-interval",  &flushfail_retry_periods,  op_periods_rndup    },
2367 { 0, "connection-timeout",    &connection_timeout,       op_seconds          },
2368 { 0, "inndcomm-timeout",      &inndcomm_flush_timeout,   op_seconds          },
2369 };
2370
2371 int main(int argc, char **argv) {
2372   const char *arg;
2373
2374   for (;;) {
2375     arg= *++argv;
2376     if (!arg) break;
2377     if (*arg != '-') break;
2378     if (!strcmp(arg,"--")) { arg= *++argv; break; }
2379     int a;
2380     while ((a= *++arg)) {
2381       const Option *o;
2382       if (a=='-') {
2383         arg++;
2384         char *equals= strchr(arg,'=');
2385         int len= equals ? (equals - arg) : strlen(arg);
2386         for (o=options; o->long; o++)
2387           if (strlen(o->long) == len && !memcmp(o->long,arg,len))
2388             goto found_long;
2389         badusage("unknown long option --%s",arg);
2390       found_long:
2391         if (o->noarg) {
2392           if (equals) badusage("option --%s does not take a value",o->long);
2393           arg= 0;
2394         } else if (equals) {
2395           arg= equals+1;
2396         } else {
2397           arg= *++argv;
2398           if (!arg) badusage("option --%s needs a value",o->long);
2399         }
2400         o->fn(o, arg);
2401         break; /* eaten the whole argument now */
2402       }
2403       for (o=options; o->long; o++)
2404         if (a == o->short)
2405           goto found_short;
2406       badusage("unknown short option -%c",a);
2407     found_short:
2408       if (o->noarg) {
2409         o->fn(o,0);
2410       } else {
2411         if (!*++arg) {
2412           arg= *++argv;
2413           if (!arg) badusage("option -%c needs a value",o->short);
2414         }
2415         o->fn(o,arg);
2416         break; /* eaten the whole argument now */
2417       }
2418     }
2419   }
2420
2421   if (!arg) badusage("need site name argument");
2422   sitename= arg;
2423
2424   if ((arg= *++argv))
2425     remote_host= arg;
2426
2427   if (*++argv) badusage("too many non-option arguments");
2428
2429   if (nocheck_thresh_pct < 0 || nocheck_thresh_pct > 100)
2430     badusage("nocheck threshold percentage must be between 0..100");
2431   nocheck_thresh= nocheck_thresh_pct * 0.01;
2432
2433   if (nocheck_decay_articles < 0.1)
2434     badusage("nocheck decay articles must be at least 0.1");
2435   nocheck_decay= 1 - 1/nocheck_decay_articles;
2436
2437   if (!pathoutgoing)
2438     pathoutgoing= innconf->pathoutgoing;
2439   innconf_read(inndconffile);
2440
2441   if (!feedfile)
2442     feedfile= xasprintf("%s/%s",pathoutgoing,sitename);
2443   else if (!feedfile[0])
2444     badusage("feed filename must be nonempty");
2445   else if (feedfile[strlen(feedfile)-1]=='/')
2446     feedfile= xasprintf("%s%s",feedfile,sitename);
2447
2448   const char *feedfile_forbidden= "?*[~#";
2449   int c;
2450   while ((c= *feedfile_forbidden++))
2451     if (strchr(feedfile, c))
2452       badusage("feed filename may not contain metacharacter %c",c);
2453
2454   loop= oop_sys_new();
2455   if (!loop) sysdie("could not create liboop event loop");
2456
2457   if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
2458     sysdie("could not ignore SIGPIPE");
2459
2460   if (become_daemon) {
2461     for (i=3; i<255; i++)
2462       /* do this now before we open syslog, etc. */
2463       close(i);
2464     openlog("innduct",LOG_NDELAY|LOG_PID,LOG_NEWS);
2465
2466     int null= open("/dev/null",O_RDWR);
2467     if (null<0) sysdie("failed to open /dev/null");
2468     dup2(null,0);
2469     dup2(null,1);
2470     dup2(null,2);
2471     close(null);
2472
2473     pid_t child1= xfork("daemonise first fork");
2474     if (child1) _exit(0);
2475
2476     pid_t sid= setsid();
2477     if (sid != child1) sysdie("setsid failed");
2478
2479     pid_t child2= xfork("daemonise second fork");
2480     if (child2) _exit(0);
2481   }
2482
2483   notice("starting");
2484
2485   if (!filemon_init()) {
2486     warn("no file monitoring available, polling");
2487     filepoll_schedule();
2488   }
2489
2490   period_schedule();
2491
2492   statemc_init();
2493
2494   loop->execute.
2495 }