chiark / gitweb /
8c9d769fee9a04f5f35d5773033b527b4191feea
[inn-innduct.git] / backends / innduct.c
1 /*
2  * todo
3  *  - rename sm_period_counter as it's just about flushes
4  *  - manpage: document control master stuff
5  *
6  * debugging rune:
7  *  build-lfs/backends/innduct --connection-timeout=30 --no-daemon -C ../inn.conf -f `pwd`/fee sit localhost
8  */
9
10 /*
11  * Newsfeeds file entries should look like this:
12  *     host.name.of.site[/exclude,exclude,...]\
13  *             :pattern,pattern...[/distribution,distribution...]\
14  *             :Tf,Wnm
15  *             :
16  * or
17  *     sitename[/exclude,exclude,...]\
18  *             :pattern,pattern...[/distribution,distribution...]\
19  *             :Tf,Wnm
20  *             :host.name.of.site
21  *
22  * Four files full of
23  *    token messageid
24  * or might be blanked out
25  *    <spc><spc><spc><spc>....
26  *
27  * F site.name                 main feed file
28  *                                opened/created, then written, by innd
29  *                                read by duct
30  *                                unlinked by duct
31  *                                tokens blanked out by duct when processed
32  *   site.name_lock            lock preventing multiple ducts
33  *                                to hold lock must open,F_SETLK[W]
34  *                                  and then stat to check that locked file
35  *                                  still has name site.name_lock
36  *                                holder of this lock is "duct"
37  *                                (only) lockholder may remove the lockfile
38  * D site.name_flushing        temporary feed file during flush (or crash)
39  *                                hardlink created by duct
40  *                                unlinked by duct
41  *   site.name_defer           431'd articles, still being written,
42  *                                created, written, used by duct
43  *
44  *   site.name_backlog.<date>.<inum>
45  *                             431'd articles, ready for innxmit or duct
46  *                                created (link/mv) by duct
47  *   site.name_backlog<anything-else>  (where <anything-else> does not
48  *                                      contain '#' or '~') eg
49  *   site.name_backlog.manual
50  *                             anything the sysadmin likes (eg, feed files
51  *                             from old feeds to be merged into this one)
52  *                                created (link/mv) by admin
53  *                                may be symlinks (in which case links
54  *                                may be written through, but only links
55  *                                will be removed.
56  *
57  *                             It is safe to remove backlog files manually,
58  *                             if it's desired to throw away the backlog.
59  *
60  * Backlog files are also processed by innduct.  We find the oldest
61  * backlog file which is at least a certain amount old, and feed it
62  * back into our processing.  When every article in it has been read
63  * and processed, we unlink it and look for another backlog file.
64  *
65  * If we don't have a backlog file that we're reading, we close the
66  * defer file that we're writing and make it into a backlog file at
67  * the first convenient opportunity.
68  * -8<-
69
70
71    OVERALL STATES:
72
73                                                                 START
74                                                                   |
75      ,-->--.                                                 check F, D
76      |     |                                                      |
77      |     |                                                      |
78      |     |  <----------------<---------------------------------'|
79      |     |                                       F exists       |
80      |     |                                       D ENOENT       |
81      |     |  duct opens F                                        |
82      |     V                                                      |
83      |  Normal                                                    |
84      |   F: innd writing, duct reading                            |
85      |   D: ENOENT                                                |
86      |     |                                                      |
87      |     |  duct decides time to flush                          |
88      |     |  duct makes hardlink                                 |
89      |     |                                                      |
90      |     V                            <------------------------'|
91      |  Hardlinked                                  F==D          |
92      |   F == D: innd writing, duct reading         both exist    |
93      ^     |                                                      |
94      |     |  duct unlinks F                                      |
95      |     |                        <-----------<-------------<--'|
96      |     |                           open D         F ENOENT    |
97      |     |                           if exists                  |
98      |     |                                                      |
99      |     V                        <---------------------.       |
100      |  Moved                                             |       |
101      |   F: ENOENT                                        |       |
102      |   D: innd writing, duct reading; or ENOENT         |       |
103      |     |                                              |       |
104      |     |  duct requests flush of feed                 |       |
105      |     |   (others can too, harmlessly)               |       |
106      |     V                                              |       |
107      |  Flushing                                          |       |
108      |   F: ENOENT                                        |       |
109      |   D: innd flushing, duct; or ENOENT                |       |
110      |     |                                              |       |
111      |     |   inndcomm flush fails                       |       |
112      |     |`-------------------------->------------------'       |
113      |     |                                                      |
114      |     |   inndcomm reports no such site                      |
115      |     |`---------------------------------------------------- | -.
116      |     |                                                      |  |
117      |     |  innd finishes writing D, creates F                  |  |
118      |     |  inndcomm reports flush successful                   |  |
119      |     |                                                      |  |
120      |     V                                                      |  |
121      |  Separated                                <----------------'  |
122      |   F: innd writing                            F!=D             /
123      |   D: duct reading; or ENOENT                  both exist     /
124      |     |                                                       /
125      |     |  duct gets to the end of D                           /
126      |     |  duct opens F too                                   /
127      |     V                                                    /
128      |  Finishing                                              /
129      |   F: innd writing, duct reading                        |
130      |   D: duct finishing                                    V
131      |     |                                            Dropping
132      |     |  duct finishes processing D                 F: ENOENT
133      |     V  duct unlinks D                             D: duct reading
134      |     |                                                  |
135      `--<--'                                                  | duct finishes
136                                                               |  processing D
137                                                               | duct unlinks D
138                                                               | duct exits
139                                                               V
140                                                         Dropped
141                                                          F: ENOENT
142                                                          D: ENOENT
143                                                          duct not running
144
145    "duct reading" means innduct is reading the file but also
146    overwriting processed tokens.
147
148  * ->8- -^L-
149  *
150  * rune for printing diagrams:
151
152 perl -ne 'print if m/-8\<-/..m/-\>8-/; print "\f" if m/-\^L-/' backends/innduct.c |a2ps -R -B -ops
153
154  *
155  */
156
157 /*============================== PROGRAM ==============================*/
158
159 #define _GNU_SOURCE 1
160
161 #include "config.h"
162 #include "storage.h"
163 #include "nntp.h"
164 #include "libinn.h"
165 #include "inndcomm.h"
166
167 #include "inn/list.h"
168 #include "inn/innconf.h"
169
170 #include <sys/uio.h>
171 #include <sys/types.h>
172 #include <sys/wait.h>
173 #include <sys/stat.h>
174 #include <sys/socket.h>
175 #include <sys/un.h>
176 #include <unistd.h>
177 #include <string.h>
178 #include <signal.h>
179 #include <stdio.h>
180 #include <errno.h>
181 #include <syslog.h>
182 #include <fcntl.h>
183 #include <stdarg.h>
184 #include <assert.h>
185 #include <stdlib.h>
186 #include <stddef.h>
187 #include <glob.h>
188 #include <time.h>
189 #include <math.h>
190 #include <ctype.h>
191
192 #include <oop.h>
193 #include <oop-read.h>
194
195 /*----- general definitions, probably best not changed -----*/
196
197 #define CONNCHILD_ESTATUS_STREAM   24
198 #define CONNCHILD_ESTATUS_NOSTREAM 25
199
200 #define INNDCOMMCHILD_ESTATUS_FAIL     26
201 #define INNDCOMMCHILD_ESTATUS_NONESUCH 27
202
203 #define MAX_LINE_FEEDFILE (NNTP_MSGID_MAXLEN + sizeof(TOKEN)*2 + 10)
204 #define MAX_CONTROL_COMMAND 1000
205
206 #define VA                va_list al;  va_start(al,fmt)
207 #define PRINTF(f,a)       __attribute__((__format__(printf,f,a)))
208 #define NORET_PRINTF(f,a) __attribute__((__noreturn__,__format__(printf,f,a)))
209 #define NORET             __attribute__((__noreturn__))
210
211 #define NEW(ptr)              ((ptr)= zxmalloc(sizeof(*(ptr))))
212 #define NEW_DECL(type,ptr) type ptr = zxmalloc(sizeof(*(ptr)))
213
214 #define DUMPV(fmt,pfx,v) fprintf(f, " " #v "=" fmt, pfx v);
215
216 #define FOR_CONN(conn) \
217   for ((conn)=LIST_HEAD(conns); (conn); (conn)=LIST_NEXT((conn)))
218
219 /*----- doubly linked lists -----*/
220
221 #define ISNODE(T)   struct node list_node
222 #define DEFLIST(T)                              \
223    typedef struct {                             \
224      union { struct list li; T *for_type; } u;  \
225      int count;                                 \
226    } T##List
227
228 #define NODE(n) (assert((void*)&(n)->list_node == (n)), &(n)->list_node)
229
230 #define LIST_CHECKCANHAVENODE(l,n) \
231   ((void)((n) == ((l).u.for_type))) /* just for the type check */
232
233 #define LIST_ADDSOMEHOW(l,n,list_addsomehow)    \
234  ( LIST_CHECKCANHAVENODE(l,n),                  \
235    list_addsomehow(&(l).u.li, NODE((n))),       \
236    (void)(l).count++                            \
237    )
238
239 #define LIST_REMSOMEHOW(l,list_remsomehow)      \
240  ( (typeof((l).u.for_type))                     \
241    ( (l).count                                  \
242      ? ( (l).count--,                           \
243          list_remsomehow(&(l).u.li) )           \
244      : 0                                        \
245      )                                          \
246    )
247
248
249 #define LIST_ADDHEAD(l,n) LIST_ADDSOMEHOW((l),(n),list_addhead)
250 #define LIST_ADDTAIL(l,n) LIST_ADDSOMEHOW((l),(n),list_addtail)
251 #define LIST_REMHEAD(l) LIST_REMSOMEHOW((l),list_remhead)
252 #define LIST_REMTAIL(l) LIST_REMSOMEHOW((l),list_remtail)
253
254 #define LIST_INIT(l) ((l).count=0, list_new(&(l).u.li))
255 #define LIST_HEAD(l) ((typeof((l).u.for_type))(list_head((struct list*)&(l))))
256 #define LIST_NEXT(n) ((typeof(n))list_succ(NODE((n))))
257 #define LIST_BACK(n) ((typeof(n))list_pred(NODE((n))))
258
259 #define LIST_REMOVE(l,n)                        \
260  ( LIST_CHECKCANHAVENODE(l,n),                  \
261    list_remove(NODE((n))),                      \
262    (void)(l).count--                            \
263    )
264
265 #define LIST_INSERT(l,n,pred)                                   \
266  ( LIST_CHECKCANHAVENODE(l,n),                                  \
267    LIST_CHECKCANHAVENODE(l,pred),                               \
268    list_insert((struct list*)&(l), NODE((n)), NODE((pred))),    \
269    (void)(l).count++                                            \
270    )
271
272 /*----- type predeclarations -----*/
273
274 typedef struct Conn Conn;
275 typedef struct Article Article;
276 typedef struct InputFile InputFile;
277 typedef struct XmitDetails XmitDetails;
278 typedef struct Filemon_Perfile Filemon_Perfile;
279 typedef enum StateMachineState StateMachineState;
280 typedef struct ControlCommand ControlCommand;
281
282 DEFLIST(Conn);
283 DEFLIST(Article);
284
285 /*----- function predeclarations -----*/
286
287 static void conn_maybe_write(Conn *conn);
288 static void conn_make_some_xmits(Conn *conn);
289 static void *conn_write_some_xmits(Conn *conn);
290
291 static void xmit_free(XmitDetails *d);
292
293 #define SMS(newstate, periods, why) \
294    (statemc_setstate(sm_##newstate,(periods),#newstate,(why)))
295 static void statemc_setstate(StateMachineState newsms, int periods,
296                              const char *forlog, const char *why);
297
298 static void statemc_start_flush(const char *why); /* Normal => Flushing */
299 static void spawn_inndcomm_flush(const char *why); /* Moved => Flushing */
300 static int trigger_flush_ok(void); /* => Flushing,FLUSHING, ret 1; or ret 0 */
301
302 static void article_done(Conn *conn, Article *art, int whichcount);
303
304 static void check_assign_articles(void);
305 static void queue_check_input_done(void);
306
307 static void statemc_check_flushing_done(void);
308 static void statemc_check_backlog_done(void);
309
310 static void postfork(void);
311 static void period(void);
312
313 static void open_defer(void);
314 static void close_defer(void);
315 static void search_backlog_file(void);
316 static void preterminate(void);
317 static void raise_default(int signo) NORET;
318 static char *debug_report_ipf(InputFile *ipf);
319
320 static void inputfile_reading_start(InputFile *ipf);
321 static void inputfile_reading_stop(InputFile *ipf);
322
323 static void filemon_start(InputFile *ipf);
324 static void filemon_stop(InputFile *ipf);
325 static void filemon_callback(InputFile *ipf);
326
327 static void vconnfail(Conn *conn, const char *fmt, va_list al) PRINTF(2,0);
328 static void connfail(Conn *conn, const char *fmt, ...)         PRINTF(2,3);
329
330 static const oop_rd_style peer_rd_style;
331 static oop_rd_call peer_rd_err, peer_rd_ok;
332
333 /*----- configuration options -----*/
334 /* when changing defaults, remember to update the manpage */
335
336 static const char *sitename, *remote_host;
337 static const char *feedfile, *realsockdir="/tmp/innduct.control";
338 static int quiet_multiple=0;
339 static int become_daemon=1, try_filemon=1;
340 static int try_stream=1;
341 static int port=119;
342 static const char *inndconffile;
343
344 static int max_connections=10;
345 static int max_queue_per_conn=200;
346 static int target_max_feedfile_size=100000;
347 static int period_seconds=60;
348 static int filepoll_seconds=5;
349
350 static int connection_setup_timeout=200;
351 static int inndcomm_flush_timeout=100;
352
353 static double nocheck_thresh= 95.0; /* converted from percentage by main */
354 static double nocheck_decay= 100; /* conv'd from articles to lambda by main */
355
356 /* all these are initialised to seconds, and converted to periods in main */
357 static int reconnect_delay_periods=1000;
358 static int flushfail_retry_periods=1000;
359 static int backlog_retry_minperiods=50;
360 static int backlog_spontrescan_periods=300;
361 static int spontaneous_flush_periods=100000;
362 static int need_activity_periods=1000;
363
364 static double max_bad_data_ratio= 1; /* conv'd from percentage by main */
365 static int max_bad_data_initial= 30;
366   /* in one corrupt 4096-byte block the number of newlines has
367    * mean 16 and standard deviation 3.99.  30 corresponds to z=+3.5 */
368
369
370 /*----- statistics -----*/
371
372 typedef enum {      /* in queue                 in conn->sent             */
373   art_Unchecked,    /*   not checked, not sent    checking                */
374   art_Wanted,       /*   checked, wanted          sent body as requested  */
375   art_Unsolicited,  /*   -                        sent body without check */
376   art_MaxState,
377 } ArtState;
378
379 static const char *const artstate_names[]=
380   { "Unchecked", "Wanted", "Unsolicited", 0 };
381
382 #define RESULT_COUNTS(RCS,RCN)                  \
383   RCS(sent)                                     \
384   RCS(accepted)                                 \
385   RCN(unwanted)                                 \
386   RCN(rejected)                                 \
387   RCN(deferred)                                 \
388   RCN(missing)                                  \
389   RCN(connretry)
390
391 #define RCI_TRIPLE_FMT_BASE "%d (id=%d,bod=%d,nc=%d)"
392 #define RCI_TRIPLE_VALS_BASE(counts,x)          \
393        counts[art_Unchecked] x                  \
394        + counts[art_Wanted] x                   \
395        + counts[art_Unsolicited] x,             \
396        counts[art_Unchecked] x                  \
397        , counts[art_Wanted] x                   \
398        , counts[art_Unsolicited] x
399
400 typedef enum {
401 #define RC_INDEX(x) RC_##x,
402   RESULT_COUNTS(RC_INDEX, RC_INDEX)
403   RCI_max
404 } ResultCountIndex;
405
406
407 /*----- transmission buffers -----*/
408
409 #define CONNIOVS 128
410
411 typedef enum {
412   xk_Const, xk_Artdata
413 } XmitKind;
414
415 struct XmitDetails {
416   XmitKind kind;
417   union {
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_Artdata: SMfreearticle(d->info.sm_art); break;
1515   case xk_Const:                                  break;
1516   default: abort();
1517   }
1518 }
1519
1520 static void *conn_write_some_xmits(Conn *conn) {
1521   /* return values:
1522    *      0:            nothing more to write, no need to call us again
1523    *      OOP_CONTINUE: more to write but fd not writeable
1524    *      OOP_HALT:     disaster, have destroyed conn
1525    */
1526   for (;;) {
1527     int count= conn->xmitu;
1528     if (!count) return 0;
1529
1530     if (count > IOV_MAX) count= IOV_MAX;
1531     ssize_t rs= writev(conn->fd, conn->xmit, count);
1532     if (rs < 0) {
1533       if (isewouldblock(errno)) return OOP_CONTINUE;
1534       connfail(conn, "write failed: %s", strerror(errno));
1535       return OOP_HALT;
1536     }
1537     assert(rs > 0);
1538
1539     int done;
1540     for (done=0; rs && done<conn->xmitu; done++) {
1541       struct iovec *vp= &conn->xmit[done];
1542       XmitDetails *dp= &conn->xmitd[done];
1543       if (rs > vp->iov_len) {
1544         rs -= vp->iov_len;
1545         xmit_free(dp);
1546       } else {
1547         vp->iov_base= (char*)vp->iov_base + rs;
1548         vp->iov_len -= rs;
1549       }
1550     }
1551     int newu= conn->xmitu - done;
1552     memmove(conn->xmit,  conn->xmit  + done, newu * sizeof(*conn->xmit));
1553     memmove(conn->xmitd, conn->xmitd + done, newu * sizeof(*conn->xmitd));
1554     conn->xmitu= newu;
1555   }
1556 }
1557
1558 static void conn_make_some_xmits(Conn *conn) {
1559   for (;;) {
1560     if (conn->xmitu+5 > CONNIOVS)
1561       break;
1562
1563     Article *art= LIST_REMHEAD(conn->priority);
1564     if (!art) art= LIST_REMHEAD(conn->waiting);
1565     if (!art) break;
1566
1567     if (art->state >= art_Wanted || (conn->stream && nocheck)) {
1568       /* actually send it */
1569
1570       ARTHANDLE *artdata= SMretrieve(art->token, RETR_ALL);
1571
1572       art->state=
1573         art->state == art_Unchecked ? art_Unsolicited :
1574         art->state == art_Wanted    ? art_Wanted      :
1575         (abort(),-1);
1576
1577       if (!artdata) art->missing= 1;
1578       art->ipf->counts[art->state][ artdata ? RC_sent : RC_missing ]++;
1579
1580       if (conn->stream) {
1581         if (artdata) {
1582           XMIT_LITERAL("TAKETHIS ");
1583           xmit_noalloc(conn, art->messageid, art->midlen);
1584           XMIT_LITERAL("\r\n");
1585           xmit_artbody(conn, artdata);
1586         } else {
1587           article_done(conn, art, -1);
1588           continue;
1589         }
1590       } else {
1591         /* we got 235 from IHAVE */
1592         if (artdata) {
1593           xmit_artbody(conn, artdata);
1594         } else {
1595           XMIT_LITERAL(".\r\n");
1596         }
1597       }
1598
1599       LIST_ADDTAIL(conn->sent, art);
1600
1601     } else {
1602       /* check it */
1603
1604       if (conn->stream)
1605         XMIT_LITERAL("CHECK ");
1606       else
1607         XMIT_LITERAL("IHAVE ");
1608       xmit_noalloc(conn, art->messageid, art->midlen);
1609       XMIT_LITERAL("\r\n");
1610
1611       assert(art->state == art_Unchecked);
1612       art->ipf->counts[art->state][RC_sent]++;
1613       LIST_ADDTAIL(conn->sent, art);
1614     }
1615   }
1616 }
1617
1618
1619 /*========== handling responses from peer ==========*/
1620
1621 static const oop_rd_style peer_rd_style= {
1622   OOP_RD_DELIM_STRIP, '\n',
1623   OOP_RD_NUL_FORBID,
1624   OOP_RD_SHORTREC_FORBID
1625 };
1626
1627 static void *peer_rd_err(oop_source *lp, oop_read *oread, oop_rd_event ev,
1628                          const char *errmsg, int errnoval,
1629                          const char *data, size_t recsz, void *conn_v) {
1630   Conn *conn= conn_v;
1631   connfail(conn, "error receiving from peer: %s", errmsg);
1632   return OOP_CONTINUE;
1633 }
1634
1635 static Article *article_reply_check(Conn *conn, const char *response,
1636                                     int code_indicates_streaming,
1637                                     int must_have_sent
1638                                         /* 1:yes, -1:no, 0:dontcare */,
1639                                     const char *sanitised_response) {
1640   Article *art= LIST_HEAD(conn->sent);
1641
1642   if (!art) {
1643     connfail(conn,
1644              "peer gave unexpected response when no commands outstanding: %s",
1645              sanitised_response);
1646     return 0;
1647   }
1648
1649   if (code_indicates_streaming) {
1650     assert(!memchr(response, 0, 4)); /* ensured by peer_rd_ok */
1651     if (!conn->stream) {
1652       connfail(conn, "peer gave streaming response code "
1653                " to IHAVE or subsequent body: %s", sanitised_response);
1654       return 0;
1655     }
1656     const char *got_mid= response+4;
1657     int got_midlen= strcspn(got_mid, " \n\r");
1658     if (got_midlen<3 || got_mid[0]!='<' || got_mid[got_midlen-1]!='>') {
1659       connfail(conn, "peer gave streaming response with syntactically invalid"
1660                " messageid: %s", sanitised_response);
1661       return 0;
1662     }
1663     if (got_midlen != art->midlen ||
1664         memcmp(got_mid, art->messageid, got_midlen)) {
1665       connfail(conn, "peer gave streaming response code to wrong article -"
1666                " probable synchronisation problem; we offered: %s;"
1667                " peer said: %s",
1668                art->messageid, sanitised_response);
1669       return 0;
1670     }
1671   } else {
1672     if (conn->stream) {
1673       connfail(conn, "peer gave non-streaming response code to"
1674                " CHECK/TAKETHIS: %s", sanitised_response);
1675       return 0;
1676     }
1677   }
1678
1679   if (must_have_sent>0 && art->state < art_Wanted) {
1680     connfail(conn, "peer says article accepted but"
1681              " we had not sent the body: %s", sanitised_response);
1682     return 0;
1683   }
1684   if (must_have_sent<0 && art->state >= art_Wanted) {
1685     connfail(conn, "peer says please sent the article but we just did: %s",
1686              sanitised_response);
1687     return 0;
1688   }
1689
1690   Article *art_again= LIST_REMHEAD(conn->sent);
1691   assert(art_again == art);
1692   return art;
1693 }
1694
1695 static void update_nocheck(int accepted) {
1696   accept_proportion *= nocheck_decay;
1697   accept_proportion += accepted * (1.0 - nocheck_decay);
1698   int new_nocheck= accept_proportion >= nocheck_thresh;
1699   if (new_nocheck && !nocheck_reported) {
1700     notice("entering nocheck mode for the first time");
1701     nocheck_reported= 1;
1702   } else if (new_nocheck != nocheck) {
1703     debug("nocheck mode %s", new_nocheck ? "start" : "stop");
1704   }
1705   nocheck= new_nocheck;
1706 }
1707
1708 static void article_done(Conn *conn, Article *art, int whichcount) {
1709   if (!art->missing) art->ipf->counts[art->state][whichcount]++;
1710
1711   if (whichcount == RC_accepted) update_nocheck(1);
1712   else if (whichcount == RC_unwanted) update_nocheck(0);
1713
1714   InputFile *ipf= art->ipf;
1715
1716   while (art->blanklen) {
1717     static const char spaces[]=
1718       "                                                                "
1719       "                                                                "
1720       "                                                                "
1721       "                                                                "
1722       "                                                                "
1723       "                                                                "
1724       "                                                                "
1725       "                                                                "
1726       "                                                                ";
1727     int w= art->blanklen;  if (w >= sizeof(spaces)) w= sizeof(spaces)-1;
1728     int r= pwrite(ipf->fd, spaces, w, art->offset);
1729     if (r==-1) {
1730       if (errno==EINTR) continue;
1731       sysdie("failed to blank entry for %s (length %d at offset %lu) in %s",
1732              art->messageid, art->blanklen,
1733              (unsigned long)art->offset, ipf->path);
1734     }
1735     assert(r>=0 && r<=w);
1736     art->blanklen -= w;
1737     art->offset += w;
1738   }
1739
1740   ipf->inprogress--;
1741   assert(ipf->inprogress >= 0);
1742   free(art);
1743
1744   if (!ipf->inprogress && ipf != main_input_file)
1745     queue_check_input_done();
1746 }
1747
1748 static void *peer_rd_ok(oop_source *lp, oop_read *oread, oop_rd_event ev,
1749                         const char *errmsg, int errnoval,
1750                         const char *data, size_t recsz, void *conn_v) {
1751   Conn *conn= conn_v;
1752
1753   if (ev == OOP_RD_EOF) {
1754     connfail(conn, "unexpected EOF from peer");
1755     return OOP_CONTINUE;
1756   }
1757   assert(ev == OOP_RD_OK);
1758
1759   char *sani= sanitise(data,-1);
1760
1761   char *ep;
1762   unsigned long code= strtoul(data, &ep, 10);
1763   if (ep != data+3 || *ep != ' ' || data[0]=='0') {
1764     connfail(conn, "badly formatted response from peer: %s", sani);
1765     return OOP_CONTINUE;
1766   }
1767
1768   int conn_busy=
1769     conn->waiting.count ||
1770     conn->priority.count ||
1771     conn->sent.count ||
1772     conn->xmitu;
1773
1774   if (conn->quitting) {
1775     if (code!=205 && code!=503) {
1776       connfail(conn, "peer gave unexpected response to QUIT: %s", sani);
1777     } else {
1778       notice("C%d idle connection closed by us", conn->fd);
1779       assert(!conn_busy);
1780       LIST_REMOVE(conns,conn);
1781       conn_dispose(conn);
1782     }
1783     return OOP_CONTINUE;
1784   }
1785
1786   conn->since_activity= 0;
1787   Article *art;
1788
1789 #define GET_ARTICLE(musthavesent) do{                                         \
1790     art= article_reply_check(conn, data, code_streaming, musthavesent, sani); \
1791     if (!art) return OOP_CONTINUE; /* reply_check has failed the conn */      \
1792   }while(0) 
1793
1794 #define ARTICLE_DEALTWITH(streaming,musthavesent,how) do{       \
1795     code_streaming= (streaming);                                \
1796     GET_ARTICLE(musthavesent);                                  \
1797     article_done(conn, art, RC_##how);                          \
1798     goto dealtwith;                                             \
1799   }while(0)
1800
1801 #define PEERBADMSG(m) do {                                      \
1802     connfail(conn, m ": %s", sani);  return OOP_CONTINUE;       \
1803   }while(0)
1804
1805   int code_streaming= 0;
1806
1807   switch (code) {
1808
1809   case 400: PEERBADMSG("peer stopped accepting articles");
1810   default:  PEERBADMSG("peer sent unexpected message");
1811
1812   case 503:
1813     if (conn_busy) PEERBADMSG("peer timed us out");
1814     notice("C%d idle connection closed by peer", conn->fd);
1815     LIST_REMOVE(conns,conn);
1816     conn_dispose(conn);
1817     return OOP_CONTINUE;
1818
1819   case 435: ARTICLE_DEALTWITH(0,0,unwanted); /* IHAVE says they have it */
1820   case 438: ARTICLE_DEALTWITH(1,0,unwanted); /* CHECK/TAKETHIS: they have it */
1821
1822   case 235: ARTICLE_DEALTWITH(0,1,accepted); /* IHAVE says thanks */
1823   case 239: ARTICLE_DEALTWITH(1,1,accepted); /* TAKETHIS says thanks */
1824
1825   case 437: ARTICLE_DEALTWITH(0,0,rejected); /* IHAVE says rejected */
1826   case 439: ARTICLE_DEALTWITH(1,0,rejected); /* TAKETHIS says rejected */
1827
1828   case 238: /* CHECK says send it */
1829     code_streaming= 1;
1830   case 335: /* IHAVE says send it */
1831     GET_ARTICLE(-1);
1832     assert(art->state == art_Unchecked);
1833     art->ipf->counts[art->state][RC_accepted]++;
1834     art->state= art_Wanted;
1835     LIST_ADDTAIL(conn->priority, art);
1836     break;
1837
1838   case 431: /* CHECK or TAKETHIS says try later */
1839     code_streaming= 1;
1840   case 436: /* IHAVE says try later */
1841     GET_ARTICLE(0);
1842     open_defer();
1843     if (fprintf(defer, "%s %s\n", TokenToText(art->token), art->messageid) <0
1844         || fflush(defer))
1845       sysfatal("write to defer file %s",path_defer);
1846     article_done(conn, art, RC_deferred);
1847     break;
1848
1849   }
1850 dealtwith:
1851
1852   conn_maybe_write(conn);
1853   check_assign_articles();
1854   return OOP_CONTINUE;
1855 }
1856
1857
1858 /*========== monitoring of input files ==========*/
1859
1860 static void feedfile_eof(InputFile *ipf) {
1861   assert(ipf != main_input_file); /* promised by tailing_try_read */
1862   inputfile_reading_stop(ipf);
1863
1864   if (ipf == flushing_input_file) {
1865     assert(sms==sm_SEPARATED || sms==sm_DROPPING);
1866     if (main_input_file) inputfile_reading_start(main_input_file);
1867     statemc_check_flushing_done();
1868   } else if (ipf == backlog_input_file) {
1869     statemc_check_backlog_done();
1870   } else {
1871     abort(); /* supposed to wait rather than get EOF on main input file */
1872   }
1873 }
1874
1875 static InputFile *open_input_file(const char *path) {
1876   int fd= open(path, O_RDWR);
1877   if (fd<0) {
1878     if (errno==ENOENT) return 0;
1879     sysfatal("unable to open input file %s", path);
1880   }
1881   assert(fd>0);
1882
1883   InputFile *ipf= xmalloc(sizeof(*ipf) + strlen(path) + 1);
1884   memset(ipf,0,sizeof(*ipf));
1885
1886   ipf->fd= fd;
1887   strcpy(ipf->path, path);
1888
1889   return ipf;
1890 }
1891
1892 static void close_input_file(InputFile *ipf) { /* does not free */
1893   assert(!ipf->readable_callback); /* must have had ->on_cancel */
1894   assert(!ipf->filemon); /* must have had inputfile_reading_stop */
1895   assert(!ipf->rd); /* must have had inputfile_reading_stop */
1896   assert(!ipf->inprogress); /* no dangling pointers pointing here */
1897   xclose_perhaps(&ipf->fd, "input file ", ipf->path);
1898 }
1899
1900
1901 /*---------- dealing with articles read in the input file ----------*/
1902
1903 static void *feedfile_got_bad_data(InputFile *ipf, off_t offset,
1904                                    const char *data, const char *how) {
1905   warn("corrupted file: %s, offset %lu: %s: in %s",
1906        ipf->path, (unsigned long)offset, how, sanitise(data,-1));
1907   ipf->readcount_err++;
1908   if (ipf->readcount_err > max_bad_data_initial +
1909       (ipf->readcount_ok+ipf->readcount_blank) / max_bad_data_ratio)
1910     die("too much garbage in input file!  (%d errs, %d ok, %d blank)",
1911         ipf->readcount_err, ipf->readcount_ok, ipf->readcount_blank);
1912   return OOP_CONTINUE;
1913 }
1914
1915 static void *feedfile_read_err(oop_source *lp, oop_read *rd,
1916                                oop_rd_event ev, const char *errmsg,
1917                                int errnoval, const char *data, size_t recsz,
1918                                void *ipf_v) {
1919   InputFile *ipf= ipf_v;
1920   assert(ev == OOP_RD_SYSTEM);
1921   errno= errnoval;
1922   sysdie("error reading input file: %s, offset %lu",
1923          ipf->path, (unsigned long)ipf->offset);
1924 }
1925
1926 static void *feedfile_got_article(oop_source *lp, oop_read *rd,
1927                                   oop_rd_event ev, const char *errmsg,
1928                                   int errnoval, const char *data, size_t recsz,
1929                                   void *ipf_v) {
1930   InputFile *ipf= ipf_v;
1931   Article *art;
1932   char tokentextbuf[sizeof(TOKEN)*2+3];
1933
1934   if (!data) { feedfile_eof(ipf); return OOP_CONTINUE; }
1935
1936   off_t old_offset= ipf->offset;
1937   ipf->offset += recsz + !!(ev == OOP_RD_OK);
1938
1939 #define X_BAD_DATA(m) return feedfile_got_bad_data(ipf,old_offset,data,m);
1940
1941   if (ev==OOP_RD_PARTREC)
1942     feedfile_got_bad_data(ipf,old_offset,data,"missing final newline");
1943     /* but process it anyway */
1944
1945   if (ipf->skippinglong) {
1946     if (ev==OOP_RD_OK) ipf->skippinglong= 0; /* fine now */
1947     return OOP_CONTINUE;
1948   }
1949   if (ev==OOP_RD_LONG) {
1950     ipf->skippinglong= 1;
1951     X_BAD_DATA("overly long line");
1952   }
1953
1954   if (memchr(data,'\0',recsz)) X_BAD_DATA("nul byte");
1955   if (!recsz) X_BAD_DATA("empty line");
1956
1957   if (data[0]==' ') {
1958     if (strspn(data," ") != recsz) X_BAD_DATA("line partially blanked");
1959     ipf->readcount_blank++;
1960     return OOP_CONTINUE;
1961   }
1962
1963   char *space= strchr(data,' ');
1964   int tokenlen= space-data;
1965   int midlen= (int)recsz-tokenlen-1;
1966   if (midlen <= 2) X_BAD_DATA("no room for messageid");
1967   if (space[1]!='<' || space[midlen]!='>') X_BAD_DATA("invalid messageid");
1968
1969   if (tokenlen != sizeof(TOKEN)*2+2) X_BAD_DATA("token wrong length");
1970   memcpy(tokentextbuf, data, tokenlen);
1971   tokentextbuf[tokenlen]= 0;
1972   if (!IsToken(tokentextbuf)) X_BAD_DATA("token wrong syntax");
1973
1974   ipf->readcount_ok++;
1975
1976   art= xmalloc(sizeof(*art) - 1 + midlen + 1);
1977   memset(art,0,sizeof(*art));
1978   art->state= art_Unchecked;
1979   art->midlen= midlen;
1980   art->ipf= ipf;  ipf->inprogress++;
1981   art->token= TextToToken(tokentextbuf);
1982   art->offset= old_offset;
1983   art->blanklen= recsz;
1984   strcpy(art->messageid, space+1);
1985   LIST_ADDTAIL(queue, art);
1986
1987   if (sms==sm_NORMAL && ipf==main_input_file &&
1988       ipf->offset >= target_max_feedfile_size)
1989     statemc_start_flush("feed file size");
1990
1991   check_assign_articles();
1992   return OOP_CONTINUE;
1993 }
1994
1995 /*========== tailing input file ==========*/
1996
1997 static void *tailing_rable_call_time(oop_source *loop, struct timeval tv,
1998                                      void *user) {
1999   InputFile *ipf= user;
2000   return ipf->readable_callback(loop, &ipf->readable,
2001                                 ipf->readable_callback_user);
2002 }
2003
2004 static void tailing_on_cancel(struct oop_readable *rable) {
2005   InputFile *ipf= (void*)rable;
2006
2007   if (ipf->filemon) filemon_stop(ipf);
2008   loop->cancel_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2009   ipf->readable_callback= 0;
2010 }
2011
2012 static void tailing_queue_readable(InputFile *ipf) {
2013   /* lifetime of ipf here is OK because destruction will cause
2014    * on_cancel which will cancel this callback */
2015   loop->on_time(loop, OOP_TIME_NOW, tailing_rable_call_time, ipf);
2016 }
2017
2018 static int tailing_on_readable(struct oop_readable *rable,
2019                                 oop_readable_call *cb, void *user) {
2020   InputFile *ipf= (void*)rable;
2021
2022   tailing_on_cancel(rable);
2023   ipf->readable_callback= cb;
2024   ipf->readable_callback_user= user;
2025   filemon_start(ipf);
2026
2027   tailing_queue_readable(ipf);
2028   return 0;
2029 }
2030
2031 static ssize_t tailing_try_read(struct oop_readable *rable, void *buffer,
2032                                 size_t length) {
2033   InputFile *ipf= (void*)rable;
2034   for (;;) {
2035     ssize_t r= read(ipf->fd, buffer, length);
2036     if (r==-1) {
2037       if (errno==EINTR) continue;
2038       return r;
2039     }
2040     if (!r) {
2041       if (ipf==main_input_file) {
2042         errno=EAGAIN;
2043         return -1;
2044       } else if (ipf==flushing_input_file) {
2045         assert(ipf->rd);
2046         assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2047       } else if (ipf==backlog_input_file) {
2048         assert(ipf->rd);
2049       } else {
2050         abort();
2051       }
2052     }
2053     tailing_queue_readable(ipf);
2054     return r;
2055   }
2056 }
2057
2058 /*---------- filemon implemented with inotify ----------*/
2059
2060 #if defined(HAVE_SYS_INOTIFY_H) && !defined(HAVE_FILEMON)
2061 #define HAVE_FILEMON
2062
2063 #include <sys/inotify.h>
2064
2065 static int filemon_inotify_fd;
2066 static int filemon_inotify_wdmax;
2067 static InputFile **filemon_inotify_wd2ipf;
2068
2069 struct Filemon_Perfile {
2070   int wd;
2071 };
2072
2073 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) {
2074   int wd= inotify_add_watch(filemon_inotify_fd, ipf->path, IN_MODIFY);
2075   if (wd < 0) sysfatal("inotify_add_watch %s", ipf->path);
2076
2077   if (wd >= filemon_inotify_wdmax) {
2078     int newmax= wd+2;
2079     filemon_inotify_wd2ipf= xrealloc(filemon_inotify_wd2ipf,
2080                                  sizeof(*filemon_inotify_wd2ipf) * newmax);
2081     memset(filemon_inotify_wd2ipf + filemon_inotify_wdmax, 0,
2082            sizeof(*filemon_inotify_wd2ipf) * (newmax - filemon_inotify_wdmax));
2083     filemon_inotify_wdmax= newmax;
2084   }
2085
2086   assert(!filemon_inotify_wd2ipf[wd]);
2087   filemon_inotify_wd2ipf[wd]= ipf;
2088
2089   debug("filemon inotify startfile %p wd=%d wdmax=%d",
2090         ipf, wd, filemon_inotify_wdmax);
2091
2092   pf->wd= wd;
2093 }
2094
2095 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) {
2096   int wd= pf->wd;
2097   debug("filemon inotify stopfile %p wd=%d", ipf, wd);
2098   int r= inotify_rm_watch(filemon_inotify_fd, wd);
2099   if (r) sysdie("inotify_rm_watch");
2100   filemon_inotify_wd2ipf[wd]= 0;
2101 }
2102
2103 static void *filemon_inotify_readable(oop_source *lp, int fd,
2104                                       oop_event e, void *u) {
2105   struct inotify_event iev;
2106   for (;;) {
2107     int r= read(filemon_inotify_fd, &iev, sizeof(iev));
2108     if (r==-1) {
2109       if (isewouldblock(errno)) break;
2110       sysdie("read from inotify master");
2111     } else if (r==sizeof(iev)) {
2112       assert(iev.wd >= 0 && iev.wd < filemon_inotify_wdmax);
2113     } else {
2114       die("inotify read %d bytes wanted struct of %d", r, (int)sizeof(iev));
2115     }
2116     InputFile *ipf= filemon_inotify_wd2ipf[iev.wd];
2117     debug("filemon inotify readable read %p wd=%d", ipf, iev.wd);
2118     filemon_callback(ipf);
2119   }
2120   return OOP_CONTINUE;
2121 }
2122
2123 static int filemon_method_init(void) {
2124   filemon_inotify_fd= inotify_init();
2125   if (filemon_inotify_fd<0) {
2126     syswarn("filemon/inotify: inotify_init failed");
2127     return 0;
2128   }
2129   xsetnonblock(filemon_inotify_fd, 1);
2130   loop->on_fd(loop, filemon_inotify_fd, OOP_READ, filemon_inotify_readable, 0);
2131
2132   debug("filemon inotify init filemon_inotify_fd=%d", filemon_inotify_fd);
2133   return 1;
2134 }
2135
2136 static void filemon_method_dump_info(FILE *f) {
2137   int i;
2138   fprintf(f,"inotify");
2139   DUMPV("%d",,filemon_inotify_fd);
2140   DUMPV("%d",,filemon_inotify_wdmax);
2141   for (i=0; i<filemon_inotify_wdmax; i++)
2142     fprintf(f," wd2ipf[%d]=%p\n", i, filemon_inotify_wd2ipf[i],);
2143 }
2144
2145 #endif /* HAVE_INOTIFY && !HAVE_FILEMON */
2146
2147 /*---------- filemon dummy implementation ----------*/
2148
2149 #if !defined(HAVE_FILEMON)
2150
2151 struct Filemon_Perfile { int dummy; };
2152
2153 static int filemon_method_init(void) {
2154   warn("filemon/dummy: no filemon method compiled in");
2155   return 0;
2156 }
2157 static void filemon_method_startfile(InputFile *ipf, Filemon_Perfile *pf) { }
2158 static void filemon_method_stopfile(InputFile *ipf, Filemon_Perfile *pf) { }
2159 static void filemon_method_dump_info(FILE *f) { fprintf(f,"dummy\n"); }
2160
2161 #endif /* !HAVE_FILEMON */
2162
2163 /*---------- filemon generic interface ----------*/
2164
2165 static void filemon_start(InputFile *ipf) {
2166   assert(!ipf->filemon);
2167
2168   NEW(ipf->filemon);
2169   filemon_method_startfile(ipf, ipf->filemon);
2170 }
2171
2172 static void filemon_stop(InputFile *ipf) {
2173   if (!ipf->filemon) return;
2174   filemon_method_stopfile(ipf, ipf->filemon);
2175   free(ipf->filemon);
2176   ipf->filemon= 0;
2177 }
2178
2179 static void filemon_callback(InputFile *ipf) {
2180   if (ipf && ipf->readable_callback) /* so filepoll() can be naive */
2181     ipf->readable_callback(loop, &ipf->readable, ipf->readable_callback_user);
2182 }
2183
2184 /*---------- interface to start and stop an input file ----------*/
2185
2186 static const oop_rd_style feedfile_rdstyle= {
2187   OOP_RD_DELIM_STRIP, '\n',
2188   OOP_RD_NUL_PERMIT,
2189   OOP_RD_SHORTREC_LONG,
2190 };
2191
2192 static void inputfile_reading_start(InputFile *ipf) {
2193   assert(!ipf->rd);
2194   ipf->readable.on_readable= tailing_on_readable;
2195   ipf->readable.on_cancel=   tailing_on_cancel;
2196   ipf->readable.try_read=    tailing_try_read;
2197   ipf->readable.delete_tidy= 0; /* we never call oop_rd_delete_{tidy,kill} */
2198   ipf->readable.delete_kill= 0;
2199
2200   ipf->readable_callback= 0;
2201   ipf->readable_callback_user= 0;
2202
2203   ipf->rd= oop_rd_new(loop, &ipf->readable, 0,0);
2204   assert(ipf->rd);
2205
2206   int r= oop_rd_read(ipf->rd, &feedfile_rdstyle, MAX_LINE_FEEDFILE,
2207                      feedfile_got_article,ipf, feedfile_read_err, ipf);
2208   if (r) sysdie("unable start reading feedfile %s",ipf->path);
2209 }
2210
2211 static void inputfile_reading_stop(InputFile *ipf) {
2212   assert(ipf->rd);
2213   oop_rd_cancel(ipf->rd);
2214   oop_rd_delete(ipf->rd);
2215   ipf->rd= 0;
2216   assert(!ipf->filemon); /* we shouldn't be monitoring it now */
2217 }
2218
2219
2220 /*========== interaction with innd - state machine ==========*/
2221
2222 /* See official state diagram at top of file.  We implement
2223  * this as follows:
2224  * -8<-
2225
2226             .=======.
2227             ||START||
2228             `======='
2229                 |
2230                 | open F
2231                 |
2232                 |    F ENOENT
2233                 |`---------------------------------------------------.
2234       F OPEN OK |                                                    |
2235                 |`---------------- - - -                             |
2236        D ENOENT |       D EXISTS   see OVERALL STATES diagram        |
2237                 |                  for full startup logic            |
2238      ,--------->|                                                    |
2239      |          V                                                    |
2240      |     ============                                       try to |
2241      |      NORMAL                                            open D |
2242      |     [Normal]                                                  |
2243      |      main F tail                                              |
2244      |     ============                                              V
2245      |          |                                                    |
2246      |          | F IS SO BIG WE SHOULD FLUSH, OR TIMEOUT            |
2247      ^          | hardlink F to D                                    |
2248      |     [Hardlinked]                                              |
2249      |          | unlink F                                           |
2250      |          | our handle onto F is now onto D                    |
2251      |     [Moved]                                                   |
2252      |          |                                                    |
2253      |          |<-------------------<---------------------<---------+
2254      |          |                                                    |
2255      |          | spawn inndcomm flush                               |
2256      |          V                                                    |
2257      |     ==================                                        |
2258      |      FLUSHING[-ABSENT]                                        |
2259      |     [Flushing]                                                |
2260      |     main D tail/none                                          |
2261      |     ==================                                        |
2262      |          |                                                    |
2263      |          |   INNDCOMM FLUSH FAILS                             ^
2264      |          |`----------------------->----------.                |
2265      |          |                                   |                |
2266      |          |   NO SUCH SITE                    V                |
2267      ^          |`--------------->----.         ==================== |
2268      |          |                      \        FLUSHFAILED[-ABSENT] |
2269      |          |                       \         [Moved]            |
2270      |          | FLUSH OK               \       main D tail/none    |
2271      |          | open F                  \     ==================== |
2272      |          |                          \        |                |
2273      |          |                           \       | TIME TO RETRY  |
2274      |          |`------->----.     ,---<---'\      `----------------'
2275      |          |    D NONE   |     | D NONE  `----.
2276      |          V             |     |              V
2277      |     =============      V     V             ============
2278      |      SEPARATED-1       |     |              DROPPING-1
2279      |      flsh->rd!=0       |     |              flsh->rd!=0
2280      |     [Separated]        |     |             [Dropping]
2281      |      main F idle       |     |              main none
2282      |      flsh D tail       |     |              flsh D tail
2283      |     =============      |     |             ============
2284      |          |             |     | install       |
2285      ^          | EOF ON D    |     |  defer        | EOF ON D
2286      |          V             |     |               V
2287      |     ===============    |     |             ===============
2288      |      SEPARATED-2       |     |              DROPPING-2
2289      |      flsh->rd==0       |     V              flsh->rd==0
2290      |     [Finishing]        |     |             [Dropping]
2291      |      main F tail       |     `.             main none
2292      |      flsh D closed     |       `.           flsh D closed
2293      |     ===============    V         `.        ===============
2294      |          |                         `.          |
2295      |          | ALL D PROCESSED           `.        | ALL D PROCESSED
2296      |          V install defer as backlog    `.      | install defer
2297      ^          | close D                       `.    | close D
2298      |          | unlink D                        `.  | unlink D
2299      |          |                                  |  |
2300      |          |                                  V  V
2301      `----------'                               ==============
2302                                                  DROPPED
2303                                                 [Dropped]
2304                                                  main none
2305                                                  flsh none
2306                                                  some backlog
2307                                                 ==============
2308                                                       |
2309                                                       | ALL BACKLOG DONE
2310                                                       |
2311                                                       | unlink lock
2312                                                       | exit
2313                                                       V
2314                                                   ==========
2315                                                    (ESRCH)
2316                                                   [Droppped]
2317                                                   ==========
2318  * ->8-
2319  */
2320
2321 static void startup_set_input_file(InputFile *f) {
2322   assert(!main_input_file);
2323   main_input_file= f;
2324   inputfile_reading_start(f);
2325 }
2326
2327 static void statemc_lock(void) {
2328   int lockfd;
2329   struct stat stab, stabf;
2330   
2331   for (;;) {
2332     lockfd= open(path_lock, O_CREAT|O_RDWR, 0600);
2333     if (lockfd<0) sysfatal("open lockfile %s", path_lock);
2334
2335     struct flock fl;
2336     memset(&fl,0,sizeof(fl));
2337     fl.l_type= F_WRLCK;
2338     fl.l_whence= SEEK_SET;
2339     int r= fcntl(lockfd, F_SETLK, &fl);
2340     if (r==-1) {
2341       if (errno==EACCES || isewouldblock(errno)) {
2342         if (quiet_multiple) exit(0);
2343         fatal("another duct holds the lockfile");
2344       }
2345       sysfatal("fcntl F_SETLK lockfile %s", path_lock);
2346     }
2347
2348     xfstat_isreg(lockfd, &stabf, path_lock, "lockfile");
2349     int lock_noent;
2350     xlstat_isreg(path_lock, &stab, &lock_noent, "lockfile");
2351
2352     if (!lock_noent && samefile(&stab, &stabf))
2353       break;
2354
2355     xclose(lockfd, "stale lockfile ", path_lock);
2356   }
2357
2358   FILE *lockfile= fdopen(lockfd, "w");
2359   if (!lockfile) sysdie("fdopen lockfile");
2360
2361   int r= ftruncate(lockfd, 0);
2362   if (r) sysdie("truncate lockfile to write new info");
2363
2364   if (fprintf(lockfile, "pid %ld\nsite %s\nfeedfile %s\nfqdn %s\n",
2365               (unsigned long)self_pid,
2366               sitename, feedfile, remote_host) == EOF ||
2367       fflush(lockfile))
2368     sysfatal("write info to lockfile %s", path_lock);
2369
2370   debug("startup: locked");
2371 }
2372
2373 static void statemc_init(void) {
2374   struct stat stabdefer;
2375
2376   search_backlog_file();
2377
2378   int defer_noent;
2379   xlstat_isreg(path_defer, &stabdefer, &defer_noent, "defer file");
2380   if (defer_noent) {
2381     debug("startup: ductdefer ENOENT");
2382   } else {
2383     debug("startup: ductdefer nlink=%ld", (long)stabdefer.st_nlink);
2384     switch (stabdefer.st_nlink==1) {
2385     case 1:
2386       open_defer(); /* so that we will later close it and rename it */
2387       break;
2388     case 2:
2389       xunlink(path_defer, "stale defer file link"
2390               " (presumably hardlink to backlog file)");
2391       break;
2392     default:
2393       die("defer file %s has unexpected link count %d",
2394           path_defer, stabdefer.st_nlink);
2395     }
2396   }
2397
2398   struct stat stab_f, stab_d;
2399   int noent_f;
2400
2401   InputFile *file_d= open_input_file(path_flushing);
2402   if (file_d) xfstat_isreg(file_d->fd, &stab_d, path_flushing,"flushing file");
2403
2404   xlstat_isreg(feedfile, &stab_f, &noent_f, "feedfile");
2405
2406   if (!noent_f && file_d && samefile(&stab_f, &stab_d)) {
2407     debug("startup: F==D => Hardlinked");
2408     xunlink(feedfile, "feed file (during startup)"); /* => Moved */
2409     noent_f= 1;
2410   }
2411
2412   if (noent_f) {
2413     debug("startup: F ENOENT => Moved");
2414     if (file_d) startup_set_input_file(file_d);
2415     spawn_inndcomm_flush("feedfile missing at startup");
2416     /* => Flushing, sms:=FLUSHING */
2417   } else {
2418     if (file_d) {
2419       debug("startup: F!=D => Separated");
2420       startup_set_input_file(file_d);
2421       flushing_input_file= main_input_file;
2422       main_input_file= open_input_file(feedfile);
2423       if (!main_input_file) die("feedfile vanished during startup");
2424       SMS(SEPARATED, 0, "found both old and current feed files");
2425     } else {
2426       debug("startup: F exists, D ENOENT => Normal");
2427       InputFile *file_f= open_input_file(feedfile);
2428       if (!file_f) die("feed file vanished during startup");
2429       startup_set_input_file(file_f);
2430       SMS(NORMAL, spontaneous_flush_periods, "normal startup");
2431     }
2432   }
2433 }
2434
2435 static void statemc_start_flush(const char *why) { /* Normal => Flushing */
2436   assert(sms == sm_NORMAL);
2437
2438   debug("starting flush (%s) (%lu >?= %lu) (%d)",
2439         why,
2440         (unsigned long)(main_input_file ? main_input_file->offset : 0),
2441         (unsigned long)target_max_feedfile_size,
2442         sm_period_counter);
2443
2444   int r= link(feedfile, path_flushing);
2445   if (r) sysfatal("link feedfile %s to flushing file %s",
2446                   feedfile, path_flushing);
2447   /* => Hardlinked */
2448
2449   xunlink(feedfile, "old feedfile link");
2450   /* => Moved */
2451
2452   spawn_inndcomm_flush(why); /* => Flushing FLUSHING */
2453 }
2454
2455 static int trigger_flush_ok(void) { /* => Flushing,FLUSHING, ret 1; or ret 0 */
2456   switch (sms) {
2457   case sm_NORMAL:
2458     statemc_start_flush("periodic"); /* Normal => Flushing; => FLUSHING */
2459     return 1;
2460   case sm_FLUSHFAILED:
2461     spawn_inndcomm_flush("retry"); /* Moved => Flushing; => FLUSHING */
2462     return 1;
2463   default:
2464     return 0;
2465   }
2466 }
2467
2468 static void statemc_period_poll(void) {
2469   if (!sm_period_counter) return;
2470   sm_period_counter--;
2471   assert(sm_period_counter>=0);
2472
2473   if (sm_period_counter) return;
2474   int ok= trigger_flush_ok();
2475   assert(ok);
2476 }
2477
2478 static int inputfile_is_done(InputFile *ipf) {
2479   if (!ipf) return 0;
2480   if (ipf->inprogress) return 0; /* new article in the meantime */
2481   if (ipf->rd) return 0; /* not had EOF */
2482   return 1;
2483 }
2484
2485 static void notice_processed(InputFile *ipf, int completed,
2486                              const char *what, const char *spec) {
2487   if (!ipf) return; /* allows preterminate to be lazy */
2488
2489 #define RCI_NOTHING(x) /* nothing */
2490 #define RCI_TRIPLE_FMT(x) " " #x "=" RCI_TRIPLE_FMT_BASE
2491 #define RCI_TRIPLE_VALS(x) , RCI_TRIPLE_VALS_BASE(ipf->counts, [RC_##x])
2492
2493 #define CNT(art,rc) (ipf->counts[art_##art][RC_##rc])
2494
2495   char *inprog= completed
2496     ? xasprintf("%s","") /* GCC produces a stupid warning for printf("") ! */
2497     : xasprintf(" inprogress=%ld", ipf->inprogress);
2498
2499   info("%s %s%s read=%d (+bl=%d,+err=%d)%s"
2500        " offered=%d (ch=%d,nc=%d) accepted=%d (ch=%d,nc=%d)"
2501        RESULT_COUNTS(RCI_NOTHING, RCI_TRIPLE_FMT)
2502        ,
2503        completed?"completed":"processed", what, spec,
2504        ipf->readcount_ok, ipf->readcount_blank, ipf->readcount_err, inprog,
2505        CNT(Unchecked,sent) + CNT(Unsolicited,sent)
2506        , CNT(Unchecked,sent), CNT(Unsolicited,sent),
2507        CNT(Wanted,accepted) + CNT(Unsolicited,accepted)
2508        , CNT(Wanted,accepted), CNT(Unsolicited,accepted)
2509        RESULT_COUNTS(RCI_NOTHING,  RCI_TRIPLE_VALS)
2510        );
2511
2512   free(inprog);
2513
2514 #undef CNT
2515 }
2516
2517 static void statemc_check_backlog_done(void) {
2518   InputFile *ipf= backlog_input_file;
2519   if (!inputfile_is_done(ipf)) return;
2520
2521   const char *slash= strrchr(ipf->path, '/');
2522   const char *leaf= slash ? slash+1 : ipf->path;
2523   const char *under= strchr(slash, '_');
2524   const char *rest= under ? under+1 : leaf;
2525   if (!strncmp(rest,"backlog",7)) rest += 7;
2526   notice_processed(ipf,1,"backlog ",rest);
2527
2528   close_input_file(ipf);
2529   if (unlink(ipf->path)) {
2530     if (errno != ENOENT)
2531       sysdie("could not unlink processed backlog file %s", ipf->path);
2532     warn("backlog file %s vanished while we were reading it"
2533          " so we couldn't remove it (but it's done now, anyway)",
2534          ipf->path);
2535   }
2536   free(ipf);
2537   backlog_input_file= 0;
2538   search_backlog_file();
2539   return;
2540 }
2541
2542 static void statemc_check_flushing_done(void) {
2543   InputFile *ipf= flushing_input_file;
2544   if (!inputfile_is_done(ipf)) return;
2545
2546   assert(sms==sm_SEPARATED || sms==sm_DROPPING);
2547
2548   notice_processed(ipf,1,"feedfile","");
2549
2550   close_defer();
2551
2552   xunlink(path_flushing, "old flushing file");
2553
2554   close_input_file(flushing_input_file);
2555   free(flushing_input_file);
2556   flushing_input_file= 0;
2557
2558   if (sms==sm_SEPARATED) {
2559     notice("flush complete");
2560     SMS(NORMAL, spontaneous_flush_periods, "flush complete");
2561   } else if (sms==sm_DROPPING) {
2562     SMS(DROPPED, 0, "old flush complete");
2563     search_backlog_file();
2564     notice("feed dropped, but will continue until backlog is finished");
2565   }
2566 }
2567
2568 static void *statemc_check_input_done(oop_source *lp, struct timeval now,
2569                                       void *u) {
2570   assert(!inputfile_is_done(main_input_file));
2571   statemc_check_flushing_done();
2572   statemc_check_backlog_done();
2573   return OOP_CONTINUE;
2574 }
2575
2576 static void queue_check_input_done(void) {
2577   loop->on_time(loop, OOP_TIME_NOW, statemc_check_input_done, 0);
2578 }
2579
2580 static void statemc_setstate(StateMachineState newsms, int periods,
2581                              const char *forlog, const char *why) {
2582   sms= newsms;
2583   sm_period_counter= periods;
2584
2585   const char *xtra= "";
2586   switch (sms) {
2587   case sm_FLUSHING:
2588   case sm_FLUSHFAILED:
2589     if (!main_input_file) xtra= "-ABSENT";
2590     break;
2591   case sm_SEPARATED:
2592   case sm_DROPPING:
2593     xtra= flushing_input_file->rd ? "-1" : "-2";
2594     break;
2595   default:;
2596   }
2597
2598   if (periods) {
2599     info("state %s%s[%d] %s",forlog,xtra,periods,why);
2600   } else {
2601     info("state %s%s %s",forlog,xtra,why);
2602   }
2603 }
2604
2605 /*---------- defer and backlog files ----------*/
2606
2607 static void open_defer(void) {
2608   struct stat stab;
2609
2610   if (defer) return;
2611
2612   defer= fopen(path_defer, "a+");
2613   if (!defer) sysfatal("could not open defer file %s", path_defer);
2614
2615   /* truncate away any half-written records */
2616
2617   xfstat_isreg(fileno(defer), &stab, path_defer, "newly opened defer file");
2618
2619   if (stab.st_size > LONG_MAX)
2620     die("defer file %s size is far too large", path_defer);
2621
2622   if (!stab.st_size)
2623     return;
2624
2625   long orgsize= stab.st_size;
2626   long truncto= stab.st_size;
2627   for (;;) {
2628     if (!truncto) break; /* was only (if anything) one half-truncated record */
2629     if (fseek(defer, truncto-1, SEEK_SET) < 0)
2630       sysdie("seek in defer file %s while truncating partial", path_defer);
2631
2632     int r= getc(defer);
2633     if (r==EOF) {
2634       if (ferror(defer))
2635         sysdie("failed read from defer file %s", path_defer);
2636       else
2637         die("defer file %s shrank while we were checking it!", path_defer);
2638     }
2639     if (r=='\n') break;
2640     truncto--;
2641   }
2642
2643   if (stab.st_size != truncto) {
2644     warn("truncating half-record at end of defer file %s -"
2645          " shrinking by %ld bytes from %ld to %ld",
2646          path_defer, orgsize - truncto, orgsize, truncto);
2647
2648     if (fflush(defer))
2649       sysfatal("could not flush defer file %s", path_defer);
2650     if (ftruncate(fileno(defer), truncto))
2651       sysdie("could not truncate defer file %s", path_defer);
2652
2653   } else {
2654     info("continuing existing defer file %s (%ld bytes)",
2655          path_defer, orgsize);
2656   }
2657   if (fseek(defer, truncto, SEEK_SET))
2658     sysdie("could not seek to new end of defer file %s", path_defer);
2659 }
2660
2661 static void close_defer(void) {
2662   if (!defer)
2663     return;
2664
2665   struct stat stab;
2666   xfstat_isreg(fileno(defer), &stab, path_defer, "defer file");
2667
2668   if (fclose(defer)) sysfatal("could not close defer file %s", path_defer);
2669   defer= 0;
2670
2671   time_t now= xtime();
2672
2673   char *backlog= xasprintf("%s_backlog_%lu.%lu", feedfile,
2674                            (unsigned long)now,
2675                            (unsigned long)stab.st_ino);
2676   if (link(path_defer, backlog))
2677     sysfatal("could not install defer file %s as backlog file %s",
2678            path_defer, backlog);
2679   if (unlink(path_defer))
2680     sysdie("could not unlink old defer link %s to backlog file %s",
2681            path_defer, backlog);
2682
2683   free(backlog);
2684
2685   if (until_backlog_nextscan < 0 ||
2686       until_backlog_nextscan > backlog_retry_minperiods + 1)
2687     until_backlog_nextscan= backlog_retry_minperiods + 1;
2688 }
2689
2690 static void poll_backlog_file(void) {
2691   if (until_backlog_nextscan < 0) return;
2692   if (until_backlog_nextscan-- > 0) return;
2693   search_backlog_file();
2694 }
2695
2696 static void search_backlog_file(void) {
2697   /* returns non-0 iff there are any backlog files */
2698
2699   glob_t gl;
2700   int r, i;
2701   struct stat stab;
2702   const char *oldest_path=0;
2703   time_t oldest_mtime=0, now;
2704
2705   if (backlog_input_file) return;
2706
2707  try_again:
2708
2709   r= glob(globpat_backlog, GLOB_ERR|GLOB_MARK|GLOB_NOSORT, 0, &gl);
2710
2711   switch (r) {
2712   case GLOB_ABORTED:
2713     sysfatal("failed to expand backlog pattern %s", globpat_backlog);
2714   case GLOB_NOSPACE:
2715     fatal("out of memory expanding backlog pattern %s", globpat_backlog);
2716   case 0:
2717     for (i=0; i<gl.gl_pathc; i++) {
2718       const char *path= gl.gl_pathv[i];
2719
2720       if (strchr(path,'#') || strchr(path,'~')) {
2721         debug("backlog file search skipping %s", path);
2722         continue;
2723       }
2724       r= stat(path, &stab);
2725       if (r) {
2726         syswarn("failed to stat backlog file %s", path);
2727         continue;
2728       }
2729       if (!S_ISREG(stab.st_mode)) {
2730         warn("backlog file %s is not a plain file (or link to one)", path);
2731         continue;
2732       }
2733       if (!oldest_path || stab.st_mtime < oldest_mtime) {
2734         oldest_path= path;
2735         oldest_mtime= stab.st_mtime;
2736       }
2737     }
2738   case GLOB_NOMATCH: /* fall through */
2739     break;
2740   default:
2741     sysdie("glob expansion of backlog pattern %s gave unexpected"
2742            " nonzero (error?) return value %d", globpat_backlog, r);
2743   }
2744
2745   if (!oldest_path) {
2746     debug("backlog scan: none");
2747
2748     if (sms==sm_DROPPED) {
2749       preterminate();
2750       notice("feed dropped and our work is complete");
2751
2752       int r= unlink(path_control);
2753       if (r && errno!=ENOENT)
2754         syswarn("failed to remove control symlink for old feed");
2755
2756       xunlink(path_lock,    "lockfile for old feed");
2757       exit(4);
2758     }
2759     until_backlog_nextscan= backlog_spontrescan_periods;
2760     goto xfree;
2761   }
2762
2763   now= xtime();
2764   double age= difftime(now, oldest_mtime);
2765   long age_deficiency= (backlog_retry_minperiods * period_seconds) - age;
2766
2767   if (age_deficiency <= 0) {
2768     debug("backlog scan: found age=%f deficiency=%ld oldest=%s",
2769           age, age_deficiency, oldest_path);
2770
2771     backlog_input_file= open_input_file(oldest_path);
2772     if (!backlog_input_file) {
2773       warn("backlog file %s vanished as we opened it", oldest_path);
2774       globfree(&gl);
2775       goto try_again;
2776     }
2777     inputfile_reading_start(backlog_input_file);
2778     until_backlog_nextscan= -1;
2779     goto xfree;
2780   }
2781
2782   until_backlog_nextscan= age_deficiency / period_seconds;
2783
2784   if (backlog_spontrescan_periods >= 0 &&
2785       until_backlog_nextscan > backlog_spontrescan_periods)
2786     until_backlog_nextscan= backlog_spontrescan_periods;
2787
2788   debug("backlog scan: young age=%f deficiency=%ld nextscan=%d oldest=%s",
2789         age, age_deficiency, until_backlog_nextscan, oldest_path);
2790
2791  xfree:
2792   globfree(&gl);
2793   return;
2794 }
2795
2796 /*---------- shutdown and signal handling ----------*/
2797
2798 static void preterminate(void) {
2799   if (in_child) return;
2800   notice_processed(main_input_file,0,"feedfile","");
2801   notice_processed(flushing_input_file,0,"flushing","");
2802   if (backlog_input_file)
2803     notice_processed(backlog_input_file,0, "backlog file ",
2804                      backlog_input_file->path);
2805 }
2806
2807 static int signal_self_pipe[2];
2808 static sig_atomic_t terminate_sig_flag;
2809
2810 static void raise_default(int signo) {
2811   xsigsetdefault(signo);
2812   raise(signo);
2813   abort();
2814 }
2815
2816 static void *sigarrived_event(oop_source *lp, int fd, oop_event e, void *u) {
2817   assert(fd=signal_self_pipe[0]);
2818   char buf[PIPE_BUF];
2819   int r= read(signal_self_pipe[0], buf, sizeof(buf));
2820   if (r<0 && !isewouldblock(errno)) sysdie("failed to read signal self pipe");
2821   if (r==0) die("eof on signal self pipe");
2822   if (terminate_sig_flag) {
2823     preterminate();
2824     notice("terminating (%s)", strsignal(terminate_sig_flag));
2825     raise_default(terminate_sig_flag);
2826   }
2827   return OOP_CONTINUE;
2828 }
2829
2830 static void sigarrived_handler(int signum) {
2831   static char x;
2832   switch (signum) {
2833   case SIGTERM:
2834   case SIGINT:
2835     if (!terminate_sig_flag) terminate_sig_flag= signum;
2836     break;
2837   default:
2838     abort();
2839   }
2840   write(signal_self_pipe[1],&x,1);
2841 }
2842
2843 static void init_signals(void) {
2844   if (signal(SIGPIPE, SIG_IGN) == SIG_ERR)
2845     sysdie("could not ignore SIGPIPE");
2846
2847   if (pipe(signal_self_pipe)) sysfatal("create self-pipe for signals");
2848
2849   xsetnonblock(signal_self_pipe[0],1);
2850   xsetnonblock(signal_self_pipe[1],1);
2851
2852   struct sigaction sa;
2853   memset(&sa,0,sizeof(sa));
2854   sa.sa_handler= sigarrived_handler;
2855   sa.sa_flags= SA_RESTART;
2856   xsigaction(SIGTERM,&sa);
2857   xsigaction(SIGINT,&sa);
2858
2859   on_fd_read_except(signal_self_pipe[0], sigarrived_event);
2860 }
2861
2862 /*========== flushing the feed ==========*/
2863
2864 static pid_t inndcomm_child;
2865 static int inndcomm_sentinel_fd;
2866
2867 static void *inndcomm_event(oop_source *lp, int fd, oop_event e, void *u) {
2868   assert(inndcomm_child);
2869   assert(fd == inndcomm_sentinel_fd);
2870   int status= xwaitpid(&inndcomm_child, "inndcomm");
2871   inndcomm_child= 0;
2872   
2873   cancel_fd_read_except(fd);
2874   xclose_perhaps(&fd, "inndcomm sentinel pipe",0);
2875   inndcomm_sentinel_fd= 0;
2876
2877   assert(!flushing_input_file);
2878
2879   if (WIFEXITED(status)) {
2880     switch (WEXITSTATUS(status)) {
2881
2882     case INNDCOMMCHILD_ESTATUS_FAIL:
2883       goto failed;
2884
2885     case INNDCOMMCHILD_ESTATUS_NONESUCH:
2886       notice("feed has been dropped by innd, finishing up");
2887       flushing_input_file= main_input_file;
2888       tailing_queue_readable(flushing_input_file);
2889         /* we probably previously returned EAGAIN from our fake read method
2890          * when in fact we were at EOF, so signal another readable event
2891          * so we actually see the EOF */
2892
2893       main_input_file= 0;
2894
2895       if (flushing_input_file) {
2896         SMS(DROPPING, 0, "feed dropped by innd, but must finish last flush");
2897       } else {
2898         close_defer();
2899         SMS(DROPPED, 0, "feed dropped by innd");
2900         search_backlog_file();
2901       }
2902       return OOP_CONTINUE;
2903
2904     case 0:
2905       /* as above */
2906       flushing_input_file= main_input_file;
2907       tailing_queue_readable(flushing_input_file);
2908
2909       main_input_file= open_input_file(feedfile);
2910       if (!main_input_file)
2911         die("flush succeeded but feedfile %s does not exist!", feedfile);
2912
2913       if (flushing_input_file) {
2914         SMS(SEPARATED, spontaneous_flush_periods, "recovery flush complete");
2915       } else {
2916         close_defer();
2917         SMS(NORMAL, spontaneous_flush_periods, "flush complete");
2918       }
2919       return OOP_CONTINUE;
2920
2921     default:
2922       goto unexpected_exitstatus;
2923
2924     }
2925   } else if (WIFSIGNALED(status) && WTERMSIG(status) == SIGALRM) {
2926     warn("flush timed out trying to talk to innd");
2927     goto failed;
2928   } else {
2929   unexpected_exitstatus:
2930     report_child_status("inndcomm child", status);
2931   }
2932
2933  failed:
2934   SMS(FLUSHFAILED, flushfail_retry_periods, "flush failed, will retry");
2935   return OOP_CONTINUE;
2936 }
2937
2938 static void inndcommfail(const char *what) {
2939   syswarn("error communicating with innd: %s failed: %s", what, ICCfailure);
2940   exit(INNDCOMMCHILD_ESTATUS_FAIL);
2941 }
2942
2943 void spawn_inndcomm_flush(const char *why) { /* Moved => Flushing */
2944   int pipefds[2];
2945
2946   notice("flushing %s",why);
2947
2948   assert(sms==sm_NORMAL || sms==sm_FLUSHFAILED);
2949   assert(!inndcomm_child);
2950   assert(!inndcomm_sentinel_fd);
2951
2952   if (pipe(pipefds)) sysfatal("create pipe for inndcomm child sentinel");
2953
2954   inndcomm_child= xfork("inndcomm child");
2955
2956   if (!inndcomm_child) {
2957     const char *flushargv[2]= { sitename, 0 };
2958     char *reply;
2959     int r;
2960
2961     xclose(pipefds[0], "(in child) inndcomm sentinel parent's end",0);
2962     /* parent spots the autoclose of pipefds[1] when we die or exit */
2963
2964     if (simulate_flush>=0) {
2965       warn("SIMULATING flush child status %d", simulate_flush);
2966       if (simulate_flush>128) raise(simulate_flush-128);
2967       else exit(simulate_flush);
2968     }
2969
2970     alarm(inndcomm_flush_timeout);
2971     r= ICCopen();                         if (r)   inndcommfail("connect");
2972     r= ICCcommand('f',flushargv,&reply);  if (r<0) inndcommfail("transmit");
2973     if (!r) exit(0); /* yay! */
2974
2975     if (!strcmp(reply, "1 No such site")) exit(INNDCOMMCHILD_ESTATUS_NONESUCH);
2976     syswarn("innd ctlinnd flush failed: innd said %s", reply);
2977     exit(INNDCOMMCHILD_ESTATUS_FAIL);
2978   }
2979
2980   simulate_flush= -1;
2981
2982   xclose(pipefds[1], "inndcomm sentinel child's end",0);
2983   inndcomm_sentinel_fd= pipefds[0];
2984   assert(inndcomm_sentinel_fd);
2985   on_fd_read_except(inndcomm_sentinel_fd, inndcomm_event);
2986
2987   SMS(FLUSHING, 0, why);
2988 }
2989
2990 /*========== main program ==========*/
2991
2992 static void postfork_inputfile(InputFile *ipf) {
2993   if (!ipf) return;
2994   xclose(ipf->fd, "(in child) input file ", ipf->path);
2995 }
2996
2997 static void postfork_stdio(FILE *f, const char *what, const char *what2) {
2998   /* we have no stdio streams that are buffered long-term */
2999   if (!f) return;
3000   if (fclose(f)) sysdie("(in child) close %s%s", what, what2?what2:0);
3001 }
3002
3003 static void postfork(void) {
3004   in_child= 1;
3005
3006   xsigsetdefault(SIGTERM);
3007   xsigsetdefault(SIGINT);
3008   xsigsetdefault(SIGPIPE);
3009   if (terminate_sig_flag) raise(terminate_sig_flag);
3010
3011   postfork_inputfile(main_input_file);
3012   postfork_inputfile(flushing_input_file);
3013
3014   Conn *conn;
3015   FOR_CONN(conn)
3016     conn_closefd(conn,"(in child) ");
3017
3018   postfork_stdio(defer, "defer file ", path_defer);
3019 }
3020
3021 typedef struct Every Every;
3022 struct Every {
3023   struct timeval interval;
3024   int fixed_rate;
3025   void (*f)(void);
3026 };
3027
3028 static void every_schedule(Every *e, struct timeval base);
3029
3030 static void *every_happens(oop_source *lp, struct timeval base, void *e_v) {
3031   Every *e= e_v;
3032   e->f();
3033   if (!e->fixed_rate) xgettimeofday(&base);
3034   every_schedule(e, base);
3035   return OOP_CONTINUE;
3036 }
3037
3038 static void every_schedule(Every *e, struct timeval base) {
3039   struct timeval when;
3040   timeradd(&base, &e->interval, &when);
3041   loop->on_time(loop, when, every_happens, e);
3042 }
3043
3044 static void every(int interval, int fixed_rate, void (*f)(void)) {
3045   NEW_DECL(Every *,e);
3046   e->interval.tv_sec= interval;
3047   e->interval.tv_usec= 0;
3048   e->fixed_rate= fixed_rate;
3049   e->f= f;
3050   struct timeval now;
3051   xgettimeofday(&now);
3052   every_schedule(e, now);
3053 }
3054
3055 static void filepoll(void) {
3056   filemon_callback(main_input_file);
3057   filemon_callback(flushing_input_file);
3058 }
3059
3060 static char *debug_report_ipf(InputFile *ipf) {
3061   if (!ipf) return xasprintf("none");
3062
3063   const char *slash= strrchr(ipf->path,'/');
3064   const char *path= slash ? slash+1 : ipf->path;
3065
3066   return xasprintf("%p/%s:ip=%ld,off=%ld,fd=%d%s%s",
3067                    ipf, path,
3068                    ipf->inprogress, (long)ipf->offset,
3069                    ipf->fd,
3070                    ipf->rd ? "" : ",!rd",
3071                    ipf->skippinglong ? "*skiplong" : "");
3072 }
3073
3074 static void period(void) {
3075   char *dipf_main=     debug_report_ipf(main_input_file);
3076   char *dipf_flushing= debug_report_ipf(flushing_input_file);
3077   char *dipf_backlog=  debug_report_ipf(backlog_input_file);
3078
3079   debug("PERIOD"
3080         " sms=%s[%d] conns=%d queue=%d until_connect=%d"
3081         " input_files main:%s flushing:%s backlog:%s"
3082         " children connecting=%ld inndcomm=%ld"
3083         ,
3084         sms_names[sms], sm_period_counter,
3085           conns.count, queue.count, until_connect,
3086         dipf_main, dipf_flushing, dipf_backlog,
3087         (long)connecting_child, (long)inndcomm_child
3088         );
3089
3090   free(dipf_main);
3091   free(dipf_flushing);
3092   free(dipf_backlog);
3093
3094   if (until_connect) until_connect--;
3095
3096   poll_backlog_file();
3097   if (!backlog_input_file) close_defer(); /* want to start on a new backlog */
3098   statemc_period_poll();
3099   check_assign_articles();
3100   check_idle_conns();
3101 }
3102
3103
3104 /*========== dumping state ==========*/
3105
3106 static void dump_article_list(FILE *f, const ControlCommand *c,
3107                               const ArticleList *al) {
3108   fprintf(f, " count=%d\n", al->count);
3109   if (!c->xval) return;
3110   
3111   int i; Article *art;
3112   for (i=0, art=LIST_HEAD(*al); art; i++, art=LIST_NEXT(art)) {
3113     fprintf(f," #%05d %-11s", i, artstate_names[art->state]);
3114     DUMPV("%p", art->,ipf);
3115     DUMPV("%d", art->,missing);
3116     DUMPV("%lu", (unsigned long)art->,offset);
3117     DUMPV("%d", art->,blanklen);
3118     DUMPV("%d", art->,midlen);
3119     fprintf(f, " %s %s\n", TokenToText(art->token), art->messageid);
3120   }
3121 }
3122   
3123 static void dump_input_file(FILE *f, InputFile *ipf, const char *wh) {
3124   char *dipf= debug_report_ipf(ipf);
3125   fprintf(f,"input %s %s", wh, dipf);
3126   free(dipf);
3127   
3128   if (ipf) {
3129     DUMPV("%d", ipf->,readcount_ok);
3130     DUMPV("%d", ipf->,readcount_blank);
3131     DUMPV("%d", ipf->,readcount_err);
3132   }
3133   fprintf(f,"\n");
3134   if (ipf) {
3135     ArtState state; const char *const *statename; 
3136     for (state=0, statename=artstate_names; *statename; state++,statename++) {
3137 #define RC_DUMP_FMT(x) " " #x "=%d"
3138 #define RC_DUMP_VAL(x) ,ipf->counts[state][RC_##x]
3139       fprintf(f,"input %s counts %-11s"
3140               RESULT_COUNTS(RC_DUMP_FMT,RC_DUMP_FMT) "\n",
3141               wh, *statename
3142               RESULT_COUNTS(RC_DUMP_VAL,RC_DUMP_VAL));
3143     }
3144   }
3145 }
3146
3147 CCMD(dump) {
3148   int i;
3149   fprintf(cc->out, "dumping state to %s\n", path_dump);
3150   FILE *f= fopen(path_dump, "w");
3151   if (!f) { fprintf(cc->out, "failed: open: %s\n", strerror(errno)); return; }
3152
3153   fprintf(f,"general");
3154   DUMPV("%s", sms_names,[sms]);
3155   DUMPV("%d", ,sm_period_counter);
3156   DUMPV("%ld", (long),self_pid);
3157   DUMPV("%p", , defer);
3158   DUMPV("%d", , until_connect);
3159   DUMPV("%d", , until_backlog_nextscan);
3160   DUMPV("%d", , simulate_flush);
3161   fprintf(f,"\nnocheck");
3162   DUMPV("%#.10f", , accept_proportion);
3163   DUMPV("%d", , nocheck);
3164   DUMPV("%d", , nocheck_reported);
3165   fprintf(f,"\n");
3166
3167   fprintf(f,"special");
3168   DUMPV("%ld", (long),connecting_child);
3169   DUMPV("%d", , connecting_fdpass_sock);
3170   DUMPV("%d", , control_master);
3171   fprintf(f,"\n");
3172
3173   fprintf(f,"filemon ");
3174   filemon_method_dump_info(f);
3175
3176   dump_input_file(f, main_input_file,     "main"    );
3177   dump_input_file(f, flushing_input_file, "flushing");
3178   dump_input_file(f, backlog_input_file,  "backlog" );
3179
3180   fprintf(f,"conns count=%d\n", conns.count);
3181
3182   Conn *conn;
3183   FOR_CONN(conn) {
3184
3185     fprintf(f,"C%d",conn->fd);
3186     DUMPV("%p",conn->,rd);             DUMPV("%d",conn->,max_queue);
3187     DUMPV("%d",conn->,stream);         DUMPV("%d",conn->,quitting);
3188     DUMPV("%d",conn->,since_activity);
3189     fprintf(f,"\n");
3190
3191     fprintf(f,"C%d waiting", conn->fd); dump_article_list(f,c,&conn->waiting);
3192     fprintf(f,"C%d priority",conn->fd); dump_article_list(f,c,&conn->priority);
3193     fprintf(f,"C%d sent",    conn->fd); dump_article_list(f,c,&conn->sent);
3194
3195     fprintf(f,"C%d xmit xmitu=%d\n", conn->fd, conn->xmitu);
3196     for (i=0; i<conn->xmitu; i++) {
3197       const struct iovec *iv= &conn->xmit[i];
3198       const XmitDetails *xd= &conn->xmitd[i];
3199       char *dinfo;
3200       long diff;
3201       switch (xd->kind) {
3202       case xk_Const:    dinfo= xasprintf("Const");                 break;
3203       case xk_Artdata:  dinfo= xasprintf("A%p", xd->info.sm_art);  break;
3204       default:
3205         abort();
3206       }
3207       fprintf(f," #%03d %-11s l=%d %s\n", i, dinfo, iv->iov_len,
3208               sanitise(iv->iov_base, iv->iov_len));
3209       free(dinfo);
3210     }
3211   }
3212
3213   fprintf(f,"queue"); dump_article_list(f,c,&queue);
3214
3215   fprintf(f,"paths");
3216   DUMPV("%s", , path_lock);
3217   DUMPV("%s", , path_flushing);
3218   DUMPV("%s", , path_defer);
3219   DUMPV("%s", , path_control);
3220   DUMPV("%s", , path_dump);
3221   DUMPV("%s", , globpat_backlog);
3222   fprintf(f,"\n");
3223
3224   if (!!ferror(f) + !!fclose(f)) {
3225     fprintf(cc->out, "failed: write: %s\n", strerror(errno));
3226     return;
3227   }
3228 }
3229
3230 /*========== option parsing ==========*/
3231
3232 static void vbadusage(const char *fmt, va_list al) NORET_PRINTF(1,0);
3233 static void vbadusage(const char *fmt, va_list al) {
3234   char *m= xvasprintf(fmt,al);
3235   fprintf(stderr, "bad usage: %s\n"
3236           "say --help for help, or read the manpage\n",
3237           m);
3238   if (become_daemon)
3239     syslog(LOG_CRIT,"innduct: invoked with bad usage: %s",m);
3240   exit(8);
3241 }
3242
3243 /*---------- generic option parser ----------*/
3244
3245 static void badusage(const char *fmt, ...) NORET_PRINTF(1,2);
3246 static void badusage(const char *fmt, ...) {
3247   va_list al;
3248   va_start(al,fmt);
3249   vbadusage(fmt,al);
3250 }
3251
3252 enum OptFlags {
3253   of_seconds= 001000u,
3254   of_boolean= 002000u,
3255 };
3256
3257 typedef struct Option Option;
3258 typedef void OptionParser(const Option*, const char *val);
3259
3260 struct Option {
3261   int shrt;
3262   const char *lng, *formarg;
3263   void *store;
3264   OptionParser *fn;
3265   int intval;
3266 };
3267
3268 static void parse_options(const Option *options, char ***argvp) {
3269   /* on return *argvp is first non-option arg; argc is not updated */
3270
3271   for (;;) {
3272     const char *arg= *++(*argvp);
3273     if (!arg) break;
3274     if (*arg != '-') break;
3275     if (!strcmp(arg,"--")) { arg= *++(*argvp); break; }
3276     int a;
3277     while ((a= *++arg)) {
3278       const Option *o;
3279       if (a=='-') {
3280         arg++;
3281         char *equals= strchr(arg,'=');
3282         int len= equals ? (equals - arg) : strlen(arg);
3283         for (o=options; o->shrt || o->lng; o++)
3284           if (strlen(o->lng) == len && !memcmp(o->lng,arg,len))
3285             goto found_long;
3286         badusage("unknown long option --%s",arg);
3287       found_long:
3288         if (!o->formarg) {
3289           if (equals) badusage("option --%s does not take a value",o->lng);
3290           arg= 0;
3291         } else if (equals) {
3292           arg= equals+1;
3293         } else {
3294           arg= *++(*argvp);
3295           if (!arg) badusage("option --%s needs a value for %s",
3296                              o->lng, o->formarg);
3297         }
3298         o->fn(o, arg);
3299         break; /* eaten the whole argument now */
3300       }
3301       for (o=options; o->shrt || o->lng; o++)
3302         if (a == o->shrt)
3303           goto found_short;
3304       badusage("unknown short option -%c",a);
3305     found_short:
3306       if (!o->formarg) {
3307         o->fn(o,0);
3308       } else {
3309         if (!*++arg) {
3310           arg= *++(*argvp);
3311           if (!arg) badusage("option -%c needs a value for %s",
3312                              o->shrt, o->formarg);
3313         }
3314         o->fn(o,arg);
3315         break; /* eaten the whole argument now */
3316       }
3317     }
3318   }
3319 }
3320
3321 #define DELIMPERHAPS(delim,str)  (str) ? (delim) : "", (str) ? (str) : ""
3322
3323 static void print_options(const Option *options, FILE *f) {
3324   const Option *o;
3325   for (o=options; o->shrt || o->lng; o++) {
3326     char shrt[2] = { o->shrt, 0 };
3327     char *optspec= xasprintf("%s%s%s%s%s",
3328                              o->shrt ? "-" : "", shrt,
3329                              o->shrt && o->lng ? "|" : "",
3330                              DELIMPERHAPS("--", o->lng));
3331     fprintf(f, "  %s%s%s\n", optspec, DELIMPERHAPS(" ", o->formarg));
3332     free(optspec);
3333   }
3334 }
3335
3336 /*---------- specific option types ----------*/
3337
3338 static void op_integer(const Option *o, const char *val) {
3339   char *ep;
3340   errno= 0;
3341   unsigned long ul= strtoul(val,&ep,10);
3342   if (*ep || ep==val || errno || ul>INT_MAX)
3343     badusage("bad integer value for %s",o->lng);
3344   int *store= o->store;
3345   *store= ul;
3346 }
3347
3348 static void op_double(const Option *o, const char *val) {
3349   int *store= o->store;
3350   char *ep;
3351   errno= 0;
3352   *store= strtod(val, &ep);
3353   if (*ep || ep==val || errno)
3354     badusage("bad floating point value for %s",o->lng);
3355 }
3356
3357 static void op_string(const Option *o, const char *val) {
3358   const char **store= o->store;
3359   *store= val;
3360 }
3361
3362 static void op_seconds(const Option *o, const char *val) {
3363   int *store= o->store;
3364   char *ep;
3365   int unit;
3366
3367   double v= strtod(val,&ep);
3368   if (ep==val) badusage("bad time/duration value for %s",o->lng);
3369
3370   if (!*ep || !strcmp(ep,"s") || !strcmp(ep,"sec")) unit= 1;
3371   else if (!strcmp(ep,"m") || !strcmp(ep,"min"))    unit= 60;
3372   else if (!strcmp(ep,"h") || !strcmp(ep,"hour"))   unit= 3600;
3373   else if (!strcmp(ep,"d") || !strcmp(ep,"day"))    unit= 86400;
3374   else if (!strcmp(ep,"das")) unit= 10;
3375   else if (!strcmp(ep,"hs"))  unit= 100;
3376   else if (!strcmp(ep,"ks"))  unit= 1000;
3377   else if (!strcmp(ep,"Ms"))  unit= 1000000;
3378   else badusage("bad units %s for time/duration value for %s",ep,o->lng);
3379
3380   v *= unit;
3381   v= ceil(v);
3382   if (v > INT_MAX) badusage("time/duration value for %s out of range",o->lng);
3383   *store= v;
3384 }
3385
3386 static void op_setint(const Option *o, const char *val) {
3387   int *store= o->store;
3388   *store= o->intval;
3389 }
3390
3391 /*---------- specific options ----------*/
3392
3393 static void help(const Option *o, const char *val);
3394
3395 static const Option innduct_options[]= {
3396 {'f',"feedfile",         "F",     &feedfile,                 op_string      },
3397 {'q',"quiet-multiple",   0,       &quiet_multiple,           op_setint, 1   },
3398 {0,"no-daemon",          0,       &become_daemon,            op_setint, 0   },
3399 {0,"no-streaming",       0,       &try_stream,               op_setint, 0   },
3400 {0,"no-filemon",         0,       &try_filemon,              op_setint, 0   },
3401 {'C',"inndconf",         "F",     &inndconffile,             op_string      },
3402 {'P',"port",             "PORT",  &port,                     op_integer     },
3403 {0,"ctrl-sock-dir",      0,       &realsockdir,              op_string      },
3404 {0,"help",               0,       0,                         help           },
3405
3406 {0,"max-connections",    "N",     &max_connections,          op_integer     },
3407 {0,"max-queue-per-conn", "N",     &max_queue_per_conn,       op_integer     },
3408 {0,"feedfile-flush-size","BYTES", &target_max_feedfile_size, op_integer     },
3409 {0,"period-interval",    "TIME",  &period_seconds,           op_seconds     },
3410
3411 {0,"connection-timeout",   "TIME",  &connection_setup_timeout, op_seconds   },
3412 {0,"stuck-flush-timeout",  "TIME",  &inndcomm_flush_timeout,   op_seconds   },
3413 {0,"feedfile-poll",        "TIME",  &filepoll_seconds,         op_seconds   },
3414
3415 {0,"no-check-proportion",   "PERCENT",   &nocheck_thresh,       op_double   },
3416 {0,"no-check-response-time","ARTICLES",  &nocheck_decay,        op_double   },
3417
3418 {0,"reconnect-interval",     "PERIOD", &reconnect_delay_periods,  op_seconds },
3419 {0,"flush-retry-interval",   "PERIOD", &flushfail_retry_periods,  op_seconds },
3420 {0,"earliest-deferred-retry","PERIOD", &backlog_retry_minperiods, op_seconds },
3421 {0,"backlog-rescan-interval","PERIOD",&backlog_spontrescan_periods,op_seconds},
3422 {0,"max-flush-interval",     "PERIOD", &spontaneous_flush_periods,op_seconds },
3423 {0,"idle-timeout",           "PERIOD", &need_activity_periods,    op_seconds },
3424
3425 {0,"max-bad-input-data-ratio","PERCENT", &max_bad_data_ratio,   op_double    },
3426 {0,"max-bad-input-data-init", "PERCENT", &max_bad_data_initial, op_integer   },
3427
3428 {0,0}
3429 };
3430
3431 static void printusage(FILE *f) {
3432   fputs("usage: innduct [options] site [fqdn]\n"
3433         "available options are:\n", f);
3434   print_options(innduct_options, f);
3435 }
3436
3437 static void help(const Option *o, const char *val) {
3438   printusage(stdout);
3439   if (ferror(stdout) || fflush(stdout)) {
3440     perror("innduct: writing help");
3441     exit(12);
3442   }
3443   exit(0);
3444 }
3445
3446 static void convert_to_periods_rndup(int *store) {
3447   *store += period_seconds-1;
3448   *store /= period_seconds;
3449 }
3450
3451 int main(int argc, char **argv) {
3452   if (!argv[1]) {
3453     printusage(stderr);
3454     exit(8);
3455   }
3456
3457   parse_options(innduct_options, &argv);
3458
3459   /* arguments */
3460
3461   sitename= *argv++;
3462   if (!sitename) badusage("need site name argument");
3463   remote_host= *argv++;
3464   if (*argv) badusage("too many non-option arguments");
3465
3466   /* defaults */
3467
3468   int r= innconf_read(inndconffile);
3469   if (!r) badusage("could not read inn.conf (more info on stderr)");
3470
3471   if (!remote_host) remote_host= sitename;
3472
3473   if (nocheck_thresh < 0 || nocheck_thresh > 100)
3474     badusage("nocheck threshold percentage must be between 0..100");
3475   nocheck_thresh *= 0.01;
3476
3477   if (nocheck_decay < 0.1)
3478     badusage("nocheck decay articles must be at least 0.1");
3479   nocheck_decay= pow(0.5, 1.0/nocheck_decay);
3480
3481   convert_to_periods_rndup(&reconnect_delay_periods);
3482   convert_to_periods_rndup(&flushfail_retry_periods);
3483   convert_to_periods_rndup(&backlog_retry_minperiods);
3484   convert_to_periods_rndup(&backlog_spontrescan_periods);
3485   convert_to_periods_rndup(&spontaneous_flush_periods);
3486   convert_to_periods_rndup(&need_activity_periods);
3487
3488   if (max_bad_data_ratio < 0 || max_bad_data_ratio > 100)
3489     badusage("bad input data ratio must be between 0..100");
3490   max_bad_data_ratio *= 0.01;
3491
3492   if (!feedfile) {
3493     feedfile= xasprintf("%s/%s",innconf->pathoutgoing,sitename);
3494   } else if (!feedfile[0]) {
3495     badusage("feed filename must be nonempty");
3496   } else if (feedfile[strlen(feedfile)-1]=='/') {
3497     feedfile= xasprintf("%s%s",feedfile,sitename);
3498   }
3499
3500   const char *feedfile_forbidden= "?*[~#";
3501   int c;
3502   while ((c= *feedfile_forbidden++))
3503     if (strchr(feedfile, c))
3504       badusage("feed filename may not contain metacharacter %c",c);
3505
3506   /* set things up */
3507
3508   path_lock=        xasprintf("%s_lock",      feedfile);
3509   path_flushing=    xasprintf("%s_flushing",  feedfile);
3510   path_defer=       xasprintf("%s_defer",     feedfile);
3511   path_control=     xasprintf("%s_control",   feedfile);
3512   path_dump=        xasprintf("%s_dump",      feedfile);
3513   globpat_backlog=  xasprintf("%s_backlog*",  feedfile);
3514
3515   oop_source_sys *sysloop= oop_sys_new();
3516   if (!sysloop) sysdie("could not create liboop event loop");
3517   loop= (oop_source*)sysloop;
3518
3519   LIST_INIT(conns);
3520   LIST_INIT(queue);
3521
3522   if (become_daemon) {
3523     int i;
3524     for (i=3; i<255; i++)
3525       /* do this now before we open syslog, etc. */
3526       close(i);
3527     openlog("innduct",LOG_NDELAY|LOG_PID,LOG_NEWS);
3528
3529     int null= open("/dev/null",O_RDWR);
3530     if (null<0) sysfatal("failed to open /dev/null");
3531     dup2(null,0);
3532     dup2(null,1);
3533     dup2(null,2);
3534     xclose(null, "/dev/null original fd",0);
3535
3536     pid_t child1= xfork("daemonise first fork");
3537     if (child1) _exit(0);
3538
3539     pid_t sid= setsid();
3540     if (sid != child1) sysfatal("setsid failed");
3541
3542     pid_t child2= xfork("daemonise second fork");
3543     if (child2) _exit(0);
3544   }
3545
3546   self_pid= getpid();
3547   if (self_pid==-1) sysdie("getpid");
3548
3549   statemc_lock();
3550
3551   init_signals();
3552
3553   notice("starting");
3554
3555   if (!become_daemon)
3556     control_stdio();
3557
3558   control_init();
3559
3560   int filemon_ok= 0;
3561   if (!try_filemon) {
3562     notice("filemon: suppressed by command line option, polling");
3563   } else {
3564     filemon_ok= filemon_method_init();
3565     if (!filemon_ok)
3566       warn("filemon: no file monitoring available, polling");
3567   }
3568   if (!filemon_ok)
3569     every(filepoll_seconds,0,filepoll);
3570
3571   every(period_seconds,1,period);
3572
3573   statemc_init();
3574
3575   /* let's go */
3576
3577   void *run= oop_sys_run(sysloop);
3578   assert(run == OOP_ERROR);
3579   sysdie("event loop failed");
3580 }