]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LEI.pm
9cacb1426f38eef7ad4eb3eccc6d1fff8a7cacfd
[public-inbox.git] / lib / PublicInbox / LEI.pm
1 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
3
4 # Backend for `lei' (local email interface).  Unlike the C10K-oriented
5 # PublicInbox::Daemon, this is designed exclusively to handle trusted
6 # local clients with read/write access to the FS and use as many
7 # system resources as the local user has access to.
8 package PublicInbox::LEI;
9 use strict;
10 use v5.10.1;
11 use parent qw(PublicInbox::DS PublicInbox::LeiExternal
12         PublicInbox::LeiQuery);
13 use Getopt::Long ();
14 use Socket qw(AF_UNIX SOCK_SEQPACKET MSG_EOR pack_sockaddr_un);
15 use Errno qw(EPIPE EAGAIN EINTR ECONNREFUSED ENOENT ECONNRESET);
16 use Cwd qw(getcwd);
17 use POSIX qw(strftime);
18 use IO::Handle ();
19 use Fcntl qw(SEEK_SET);
20 use PublicInbox::Config;
21 use PublicInbox::Syscall qw(SFD_NONBLOCK EPOLLIN EPOLLET);
22 use PublicInbox::Sigfd;
23 use PublicInbox::DS qw(now dwaitpid);
24 use PublicInbox::Spawn qw(spawn popen_rd);
25 use PublicInbox::Lock;
26 use Time::HiRes qw(stat); # ctime comparisons for config cache
27 use File::Path qw(mkpath);
28 use File::Spec;
29 our $quit = \&CORE::exit;
30 our ($current_lei, $errors_log, $listener, $oldset);
31 my ($recv_cmd, $send_cmd);
32 my $GLP = Getopt::Long::Parser->new;
33 $GLP->configure(qw(gnu_getopt no_ignore_case auto_abbrev));
34 my $GLP_PASS = Getopt::Long::Parser->new;
35 $GLP_PASS->configure(qw(gnu_getopt no_ignore_case auto_abbrev pass_through));
36
37 our %PATH2CFG; # persistent for socket daemon
38
39 # TBD: this is a documentation mechanism to show a subcommand
40 # (may) pass options through to another command:
41 sub pass_through { $GLP_PASS }
42
43 my $OPT;
44 sub opt_dash ($$) {
45         my ($spec, $re_str) = @_; # 'limit|n=i', '([0-9]+)'
46         my ($key) = ($spec =~ m/\A([a-z]+)/g);
47         my $cb = sub { # Getopt::Long "<>" catch-all handler
48                 my ($arg) = @_;
49                 if ($arg =~ /\A-($re_str)\z/) {
50                         $OPT->{$key} = $1;
51                 } elsif ($arg eq '--') { # "--" arg separator, ignore first
52                         push @{$OPT->{-argv}}, $arg if $OPT->{'--'}++;
53                 # lone (single) dash is handled elsewhere
54                 } elsif (substr($arg, 0, 1) eq '-') {
55                         if ($OPT->{'--'}) {
56                                 push @{$OPT->{-argv}}, $arg;
57                         } else {
58                                 die "bad argument: $arg\n";
59                         }
60                 } else {
61                         push @{$OPT->{-argv}}, $arg;
62                 }
63         };
64         ($spec, '<>' => $cb, $GLP_PASS) # for Getopt::Long
65 }
66
67 sub rel2abs ($$) {
68         my ($self, $p) = @_;
69         return $p if index($p, '/') == 0; # already absolute
70         my $pwd = $self->{env}->{PWD};
71         if (defined $pwd) {
72                 my $cwd = $self->{3} // getcwd() // die "getcwd(PWD=$pwd): $!";
73                 if (my @st_pwd = stat($pwd)) {
74                         my @st_cwd = stat($cwd) or die "stat($cwd): $!";
75                         "@st_pwd[1,0]" eq "@st_cwd[1,0]" or
76                                 $self->{env}->{PWD} = $pwd = $cwd;
77                 } else { # PWD was invalid
78                         delete $self->{env}->{PWD};
79                         undef $pwd;
80                 }
81         }
82         $pwd //= $self->{env}->{PWD} = getcwd() // die "getcwd(PWD=$pwd): $!";
83         File::Spec->rel2abs($p, $pwd);
84 }
85
86 sub store_path ($) {
87         my ($self) = @_;
88         rel2abs($self, ($self->{env}->{XDG_DATA_HOME} //
89                 ($self->{env}->{HOME} // '/nonexistent').'/.local/share')
90                 .'/lei/store');
91 }
92
93 sub _config_path ($) {
94         my ($self) = @_;
95         rel2abs($self, ($self->{env}->{XDG_CONFIG_HOME} //
96                 ($self->{env}->{HOME} // '/nonexistent').'/.config')
97                 .'/lei/config');
98 }
99
100 sub cache_dir ($) {
101         my ($self) = @_;
102         rel2abs($self, ($self->{env}->{XDG_CACHE_HOME} //
103                 ($self->{env}->{HOME} // '/nonexistent').'/.cache')
104                 .'/lei');
105 }
106
107 sub ale {
108         my ($self) = @_;
109         $self->{ale} //= do {
110                 require PublicInbox::LeiALE;
111                 $self->_lei_cfg(1)->{ale} //= PublicInbox::LeiALE->new($self);
112         };
113 }
114
115 sub index_opt {
116         # TODO: drop underscore variants everywhere, they're undocumented
117         qw(fsync|sync! jobs|j=i indexlevel|L=s compact
118         max_size|max-size=s sequential_shard|sequential-shard
119         batch_size|batch-size=s skip-docdata)
120 }
121
122 my @c_opt = qw(c=s@ C=s@ quiet|q);
123 my @lxs_opt = (qw(remote! local! external! include|I=s@ exclude=s@ only=s@
124         import-remote!  no-torsocks torsocks=s),
125         PublicInbox::LeiQuery::curl_opt());
126
127 # we generate shell completion + help using %CMD and %OPTDESC,
128 # see lei__complete() and PublicInbox::LeiHelp
129 # command => [ positional_args, 1-line description, Getopt::Long option spec ]
130 our %CMD = ( # sorted in order of importance/use:
131 'q' => [ '--stdin|SEARCH_TERMS...', 'search for messages matching terms',
132         'stdin|', # /|\z/ must be first for lone dash
133         @lxs_opt,
134         qw(save-as=s output|mfolder|o=s format|f=s dedupe|d=s threads|t+
135         sort|s=s reverse|r offset=i pretty jobs|j=s globoff|g augment|a
136         import-before! lock=s@ rsyncable alert=s@ mua=s verbose|v+), @c_opt,
137         opt_dash('limit|n=i', '[0-9]+') ],
138
139 'blob' => [ 'OID', 'display a git blob object, solving if necessary',
140         qw(git-dir=s@ cwd! verbose|v+ oid-a|A=s path-a|a=s path-b|b=s),
141         @lxs_opt, @c_opt ],
142
143 'add-external' => [ 'LOCATION',
144         'add/set priority of a publicinbox|extindex for extra matches',
145         qw(boost=i mirror=s no-torsocks torsocks=s inbox-version=i
146         verbose|v+), @c_opt, index_opt(),
147         PublicInbox::LeiQuery::curl_opt() ],
148 'ls-external' => [ '[FILTER]', 'list publicinbox|extindex locations',
149         qw(format|f=s z|0 globoff|g invert-match|v local remote), @c_opt ],
150 'ls-label' => [ '', 'list labels', qw(z|0 stats:s), @c_opt ],
151 'forget-external' => [ 'LOCATION...|--prune',
152         'exclude further results from a publicinbox|extindex',
153         qw(prune), @c_opt ],
154
155 'ls-query' => [ '[FILTER...]', 'list saved search queries',
156                 qw(name-only format|f=s), @c_opt ],
157 'rm-query' => [ 'QUERY_NAME', 'remove a saved search', @c_opt ],
158 'mv-query' => [ qw(OLD_NAME NEW_NAME), 'rename a saved search', @c_opt ],
159
160 'plonk' => [ '--threads|--from=IDENT',
161         'exclude mail matching From: or threads from non-Message-ID searches',
162         qw(stdin| threads|t from|f=s mid=s oid=s), @c_opt ],
163 'mark' => [ 'KEYWORDS...',
164         'set/unset keywords on message(s)',
165         qw(stdin| in-format|F=s input|i=s@ oid=s@ mid=s@), @c_opt,
166         pass_through('-kw:foo for delete') ],
167 'forget' => [ '[--stdin|--oid=OID|--by-mid=MID]',
168         "exclude message(s) on stdin from `q' search results",
169         qw(stdin| oid=s exact by-mid|mid:s), @c_opt ],
170
171 'purge-mailsource' => [ 'LOCATION|--all',
172         'remove imported messages from IMAP, Maildirs, and MH',
173         qw(exact! all jobs:i indexed), @c_opt ],
174
175 # code repos are used for `show' to solve blobs from patch mails
176 'add-coderepo' => [ 'DIRNAME', 'add or set priority of a git code repo',
177         qw(boost=i), @c_opt ],
178 'ls-coderepo' => [ '[FILTER_TERMS...]',
179                 'list known code repos', qw(format|f=s z), @c_opt ],
180 'forget-coderepo' => [ 'DIRNAME',
181         'stop using repo to solve blobs from patches',
182         qw(prune), @c_opt ],
183
184 'add-watch' => [ 'LOCATION', 'watch for new messages and flag changes',
185         qw(import! kw|keywords|flags! interval=s recursive|r
186         exclude=s include=s), @c_opt ],
187 'ls-watch' => [ '[FILTER...]', 'list active watches with numbers and status',
188                 qw(format|f=s z), @c_opt ],
189 'pause-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote), @c_opt ],
190 'resume-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote), @c_opt ],
191 'forget-watch' => [ '{WATCH_NUMBER|--prune}', 'stop and forget a watch',
192         qw(prune), @c_opt ],
193
194 'import' => [ 'LOCATION...|--stdin',
195         'one-time import/update from URL or filesystem',
196         qw(stdin| offset=i recursive|r exclude=s include|I=s
197         lock=s@ in-format|F=s kw|keywords|flags! verbose|v+), @c_opt ],
198 'convert' => [ 'LOCATION...|--stdin',
199         'one-time conversion from URL or filesystem to another format',
200         qw(stdin| in-format|F=s out-format|f=s output|mfolder|o=s
201         lock=s@ kw|keywords|flags!), @c_opt ],
202 'p2q' => [ 'FILE|COMMIT_OID|--stdin',
203         "use a patch to generate a query for `lei q --stdin'",
204         qw(stdin| want|w=s@ uri debug), @c_opt ],
205 'config' => [ '[...]', sub {
206                 'git-config(1) wrapper for '._config_path($_[0]);
207         }, qw(config-file|system|global|file|f=s), # for conflict detection
208          qw(c=s@ C=s@), pass_through('git config') ],
209 'init' => [ '[DIRNAME]', sub {
210         "initialize storage, default: ".store_path($_[0]);
211         }, @c_opt ],
212 'daemon-kill' => [ '[-SIGNAL]', 'signal the lei-daemon',
213         # "-C DIR" conflicts with -CHLD, here, and chdir makes no sense, here
214         opt_dash('signal|s=s', '[0-9]+|(?:[A-Z][A-Z0-9]+)') ],
215 'daemon-pid' => [ '', 'show the PID of the lei-daemon' ],
216 'help' => [ '[SUBCOMMAND]', 'show help' ],
217
218 # XXX do we need this?
219 # 'git' => [ '[ANYTHING...]', 'git(1) wrapper', pass_through('git') ],
220
221 'reorder-local-store-and-break-history' => [ '[REFNAME]',
222         'rewrite git history in an attempt to improve compression',
223         qw(gc!), @c_opt ],
224
225 # internal commands are prefixed with '_'
226 '_complete' => [ '[...]', 'internal shell completion helper',
227                 pass_through('everything') ],
228 ); # @CMD
229
230 # switch descriptions, try to keep consistent across commands
231 # $spec: Getopt::Long option specification
232 # $spec => [@ALLOWED_VALUES (default is first), $description],
233 # $spec => $description
234 # "$SUB_COMMAND TAB $spec" => as above
235 my $stdin_formats = [ 'MAIL_FORMAT|eml|mboxrd|mboxcl2|mboxcl|mboxo',
236                         'specify message input format' ];
237 my $ls_format = [ 'OUT|plain|json|null', 'listing output format' ];
238
239 # we use \x{a0} (non-breaking SP) to avoid wrapping in PublicInbox::LeiHelp
240 my %OPTDESC = (
241 'help|h' => 'show this built-in help',
242 'c=s@' => [ 'NAME=VALUE', 'set config option' ],
243 'C=s@' => [ 'DIR', 'chdir to specify to directory' ],
244 'quiet|q' => 'be quiet',
245 'lock=s@' => [ 'METHOD|dotlock|fcntl|flock|none',
246         'mbox(5) locking method(s) to use (default: fcntl,dotlock)' ],
247
248 'globoff|g' => "do not match locations using '*?' wildcards ".
249                 "and\xa0'[]'\x{a0}ranges",
250 'verbose|v+' => 'be more verbose',
251 'external!' => 'do not use externals',
252 'solve!' => 'do not attempt to reconstruct blobs from emails',
253 'torsocks=s' => ['VAL|auto|no|yes',
254                 'whether or not to wrap git and curl commands with torsocks'],
255 'no-torsocks' => 'alias for --torsocks=no',
256 'save-as=s' => ['NAME', 'save a search terms by given name'],
257 'import-remote!' => 'do not memoize remote messages into local store',
258
259 'type=s' => [ 'any|mid|git', 'disambiguate type' ],
260
261 'dedupe|d=s' => ['STRATEGY|content|oid|mid|none',
262                 'deduplication strategy'],
263 'threads|t+' =>
264         'return all messages in the same threads as the actual match(es)',
265
266 'want|w=s@' => [ 'PREFIX|dfpost|dfn', # common ones in help...
267                 'search prefixes to extract (default: dfpost7)' ],
268
269 'alert=s@' => ['CMD,:WINCH,:bell,<any command>',
270         'run command(s) or perform ops when done writing to output ' .
271         '(default: ":WINCH,:bell" with --mua and Maildir/IMAP output, ' .
272         'nothing otherwise)' ],
273
274 'augment|a' => 'augment --output destination instead of clobbering',
275
276 'output|mfolder|o=s' => [ 'MFOLDER',
277         "destination (e.g.\xa0`/path/to/Maildir', ".
278         "or\xa0`-'\x{a0}for\x{a0}stdout)" ],
279 'mua=s' => [ 'CMD',
280         "MUA to run on --output Maildir or mbox (e.g.\xa0`mutt\xa0-f\xa0%f')" ],
281
282 'inbox-version=i' => [ 'NUM|1|2',
283                 'force a public-inbox version with --mirror'],
284 'mirror=s' => [ 'URL', 'mirror a public-inbox'],
285
286 # public-inbox-index options
287 'fsync!' => 'speed up indexing after --mirror, risk index corruption',
288 'compact' => 'run compact index after mirroring',
289 'indexlevel|L=s' => [ 'LEVEL|full|medium|basic',
290         "indexlevel with --mirror (default: full)" ],
291 'max_size|max-size=s' => [ 'SIZE',
292         'do not index messages larger than SIZE (default: infinity)' ],
293 'batch_size|batch-size=s' => [ 'SIZE',
294         'flush changes to OS after given number of bytes (default: 1m)' ],
295 'sequential_shard|sequential-shard' =>
296         'index Xapian shards sequentially for slow storage',
297 'skip-docdata' =>
298         'drop compatibility w/ public-inbox <1.6 to save ~1.5% space',
299
300 'format|f=s     q' => [
301         'OUT|maildir|mboxrd|mboxcl2|mboxcl|mboxo|html|json|jsonl|concatjson',
302                 'specify output format, default depends on --output'],
303 'exclude=s@     q' => [ 'LOCATION',
304                 'exclude specified external(s) from search' ],
305 'include|I=s@   q' => [ 'LOCATION',
306                 'include specified external(s) in search' ],
307 'only=s@        q' => [ 'LOCATION',
308                 'only use specified external(s) for search' ],
309 'jobs=s q' => [ '[SEARCH_JOBS][,WRITER_JOBS]',
310                 'control number of search and writer jobs' ],
311 'jobs|j=i       add-external' => 'set parallelism when indexing after --mirror',
312
313 'in-format|F=s' => $stdin_formats,
314 'format|f=s     ls-query' => $ls_format,
315 'format|f=s     ls-external' => $ls_format,
316
317 'limit|n=i@' => ['NUM', 'limit on number of matches (default: 10000)' ],
318 'offset=i' => ['OFF', 'search result offset (default: 0)'],
319
320 'sort|s=s' => [ 'VAL|received|relevance|docid',
321                 "order of results is `--output'-dependent"],
322 'reverse|r' => 'reverse search results', # like sort(1)
323
324 'boost=i' => 'increase/decrease priority of results (default: 0)',
325
326 'local' => 'limit operations to the local filesystem',
327 'local!' => 'exclude results from the local filesystem',
328 'remote' => 'limit operations to those requiring network access',
329 'remote!' => 'prevent operations requiring network access',
330
331 'mid=s' => 'specify the Message-ID of a message',
332 'oid=s' => 'specify the git object ID of a message',
333
334 'recursive|r' => 'scan directories/mailboxes/newsgroups recursively',
335 'exclude=s' => 'exclude mailboxes/newsgroups based on pattern',
336 'include=s' => 'include mailboxes/newsgroups based on pattern',
337
338 'exact' => 'operate on exact header matches only',
339 'exact!' => 'rely on content match instead of exact header matches',
340
341 'by-mid|mid:s' => [ 'MID', 'match only by Message-ID, ignoring contents' ],
342
343 'kw|keywords|flags!' => 'disable/enable importing flags',
344
345 # xargs, env, use "-0", git(1) uses "-z".  We support z|0 everywhere
346 'z|0' => 'use NUL \\0 instead of newline (CR) to delimit lines',
347
348 'signal|s=s' => [ 'SIG', 'signal to send lei-daemon (default: TERM)' ],
349 ); # %OPTDESC
350
351 my %CONFIG_KEYS = (
352         'leistore.dir' => 'top-level storage location',
353 );
354
355 my @WQ_KEYS = qw(lxs l2m imp mrr cnv p2q mark sol); # internal workers
356
357 # pronounced "exit": x_it(1 << 8) => exit(1); x_it(13) => SIGPIPE
358 sub x_it ($$) {
359         my ($self, $code) = @_;
360         # make sure client sees stdout before exit
361         $self->{1}->autoflush(1) if $self->{1};
362         dump_and_clear_log();
363         if (my $s = $self->{pkt_op_p} // $self->{sock}) {
364                 send($s, "x_it $code", MSG_EOR);
365         } elsif ($self->{oneshot}) {
366                 # don't want to end up using $? from child processes
367                 for my $f (@WQ_KEYS) {
368                         my $wq = delete $self->{$f} or next;
369                         $wq->DESTROY;
370                 }
371                 # cleanup anything that has tempfiles or open file handles
372                 %PATH2CFG = ();
373                 delete @$self{qw(ovv dedupe sto cfg)};
374                 if (my $signum = ($code & 127)) { # usually SIGPIPE (13)
375                         $SIG{PIPE} = 'DEFAULT'; # $SIG{$signum} doesn't work
376                         kill $signum, $$;
377                         sleep(1) while 1; # wait for signal
378                 } else {
379                         $quit->($code >> 8);
380                 }
381         } # else ignore if client disconnected
382 }
383
384 sub err ($;@) {
385         my $self = shift;
386         my $err = $self->{2} // ($self->{pgr} // [])->[2] // *STDERR{GLOB};
387         my @eor = (substr($_[-1]//'', -1, 1) eq "\n" ? () : ("\n"));
388         print $err @_, @eor and return;
389         my $old_err = delete $self->{2};
390         close($old_err) if $! == EPIPE && $old_err;
391         $err = $self->{2} = ($self->{pgr} // [])->[2] // *STDERR{GLOB};
392         print $err @_, @eor or print STDERR @_, @eor;
393 }
394
395 sub qerr ($;@) { $_[0]->{opt}->{quiet} or err(shift, @_) }
396
397 sub fail_handler ($;$$) {
398         my ($lei, $code, $io) = @_;
399         for my $f (@WQ_KEYS) {
400                 my $wq = delete $lei->{$f} or next;
401                 $wq->wq_wait_old(undef, $lei) if $wq->wq_kill_old; # lei-daemon
402         }
403         close($io) if $io; # needed to avoid warnings on SIGPIPE
404         x_it($lei, $code // (1 << 8));
405 }
406
407 sub sigpipe_handler { # handles SIGPIPE from @WQ_KEYS workers
408         fail_handler($_[0], 13, delete $_[0]->{1});
409 }
410
411 # PublicInbox::OnDestroy callback for SIGINT to take out the entire pgid
412 sub sigint_reap {
413         my ($pgid) = @_;
414         dwaitpid($pgid) if kill('-INT', $pgid);
415 }
416
417 sub fail ($$;$) {
418         my ($self, $buf, $exit_code) = @_;
419         err($self, $buf) if defined $buf;
420         # calls fail_handler:
421         send($self->{pkt_op_p}, '!', MSG_EOR) if $self->{pkt_op_p};
422         x_it($self, ($exit_code // 1) << 8);
423         undef;
424 }
425
426 sub out ($;@) {
427         my $self = shift;
428         return if print { $self->{1} // return } @_; # likely
429         return note_sigpipe($self, 1) if $! == EPIPE;
430         my $err = "error writing to output: $!";
431         delete $self->{1};
432         fail($self, $err);
433 }
434
435 sub puts ($;@) { out(shift, map { "$_\n" } @_) }
436
437 sub child_error { # passes non-fatal curl exit codes to user
438         my ($self, $child_error, $msg) = @_; # child_error is $?
439         $self->err($msg) if $msg;
440         if (my $s = $self->{pkt_op_p} // $self->{sock}) {
441                 # send to the parent lei-daemon or to lei(1) client
442                 send($s, "child_error $child_error", MSG_EOR);
443         } elsif (!$PublicInbox::DS::in_loop) {
444                 $self->{child_error} = $child_error;
445         } # else noop if client disconnected
446 }
447
448 sub note_sigpipe { # triggers sigpipe_handler
449         my ($self, $fd) = @_;
450         close(delete($self->{$fd})); # explicit close silences Perl warning
451         send($self->{pkt_op_p}, '|', MSG_EOR) if $self->{pkt_op_p};
452         x_it($self, 13);
453 }
454
455 sub _lei_atfork_child {
456         my ($self, $persist) = @_;
457         # we need to explicitly close things which are on stack
458         if ($persist) {
459                 chdir '/' or die "chdir(/): $!";
460                 my @io = delete @$self{qw(0 1 2 sock)};
461                 unless ($self->{oneshot}) {
462                         close($_) for @io;
463                 }
464                 if (my $cfg = $self->{cfg}) {
465                         delete $cfg->{-lei_store};
466                 }
467         } else { # worker, Net::NNTP (Net::Cmd) uses STDERR directly
468                 open STDERR, '+>&='.fileno($self->{2}) or warn "open $!";
469         }
470         for (delete @$self{qw(3 old_1 au_done)}) {
471                 close($_) if defined($_);
472         }
473         if (my $op_c = delete $self->{pkt_op_c}) {
474                 close(delete $op_c->{sock});
475         }
476         if (my $pgr = delete $self->{pgr}) {
477                 close($_) for (@$pgr[1,2]);
478         }
479         close $listener if $listener;
480         undef $listener;
481         %PATH2CFG = ();
482         undef $errors_log;
483         $quit = \&CORE::exit;
484         $current_lei = $persist ? undef : $self; # for SIG{__WARN__}
485 }
486
487 sub _delete_pkt_op { # OnDestroy callback to prevent leaks on die
488         my ($self) = @_;
489         if (my $op = delete $self->{pkt_op_c}) { # in case of die
490                 $op->close; # PublicInbox::PktOp::close
491         }
492         my $unclosed_after_die = delete($self->{pkt_op_p}) or return;
493         close $unclosed_after_die;
494 }
495
496 sub pkt_op_pair {
497         my ($self) = @_;
498         require PublicInbox::OnDestroy;
499         require PublicInbox::PktOp;
500         my $end = PublicInbox::OnDestroy->new($$, \&_delete_pkt_op, $self);
501         @$self{qw(pkt_op_c pkt_op_p)} = PublicInbox::PktOp->pair;
502         $end;
503 }
504
505 sub workers_start {
506         my ($lei, $wq, $ident, $jobs, $ops) = @_;
507         $ops = {
508                 '!' => [ \&fail_handler, $lei ],
509                 '|' => [ \&sigpipe_handler, $lei ],
510                 'x_it' => [ \&x_it, $lei ],
511                 'child_error' => [ \&child_error, $lei ],
512                 ($ops ? %$ops : ()),
513         };
514         $ops->{''} //= [ \&dclose, $lei ];
515         my $end = $lei->pkt_op_pair;
516         $wq->wq_workers_start($ident, $jobs, $lei->oldset, { lei => $lei });
517         delete $lei->{pkt_op_p};
518         my $op_c = delete $lei->{pkt_op_c};
519         @$end = ();
520         $lei->event_step_init;
521         ($op_c, $ops);
522 }
523
524 sub _help {
525         require PublicInbox::LeiHelp;
526         PublicInbox::LeiHelp::call($_[0], $_[1], \%CMD, \%OPTDESC);
527 }
528
529 sub optparse ($$$) {
530         my ($self, $cmd, $argv) = @_;
531         # allow _complete --help to complete, not show help
532         return 1 if substr($cmd, 0, 1) eq '_';
533         $self->{cmd} = $cmd;
534         $OPT = $self->{opt} //= {};
535         my $info = $CMD{$cmd} // [ '[...]' ];
536         my ($proto, undef, @spec) = @$info;
537         my $glp = ref($spec[-1]) eq ref($GLP) ? pop(@spec) : $GLP;
538         push @spec, qw(help|h);
539         my $lone_dash;
540         if ($spec[0] =~ s/\|\z//s) { # "stdin|" or "clear|" allows "-" alias
541                 $lone_dash = $spec[0];
542                 $OPT->{$spec[0]} = \(my $var);
543                 push @spec, '' => \$var;
544         }
545         $glp->getoptionsfromarray($argv, $OPT, @spec) or
546                 return _help($self, "bad arguments or options for $cmd");
547         return _help($self) if $OPT->{help};
548
549         push @$argv, @{$OPT->{-argv}} if defined($OPT->{-argv});
550
551         # "-" aliases "stdin" or "clear"
552         $OPT->{$lone_dash} = ${$OPT->{$lone_dash}} if defined $lone_dash;
553
554         my $i = 0;
555         my $POS_ARG = '[A-Z][A-Z0-9_]+';
556         my ($err, $inf);
557         my @args = split(/ /, $proto);
558         for my $var (@args) {
559                 if ($var =~ /\A$POS_ARG\.\.\.\z/o) { # >= 1 args;
560                         $inf = defined($argv->[$i]) and last;
561                         $var =~ s/\.\.\.\z//;
562                         $err = "$var not supplied";
563                 } elsif ($var =~ /\A$POS_ARG\z/o) { # required arg at $i
564                         $argv->[$i++] // ($err = "$var not supplied");
565                 } elsif ($var =~ /\.\.\.\]\z/) { # optional args start
566                         $inf = 1;
567                         last;
568                 } elsif ($var =~ /\A\[-?$POS_ARG\]\z/) { # one optional arg
569                         $i++;
570                 } elsif ($var =~ /\A.+?\|/) { # required FOO|--stdin
571                         $inf = 1 if index($var, '...') > 0;
572                         my @or = split(/\|/, $var);
573                         my $ok;
574                         for my $o (@or) {
575                                 if ($o =~ /\A--([a-z0-9\-]+)/) {
576                                         $ok = defined($OPT->{$1});
577                                         last if $ok;
578                                 } elsif (defined($argv->[$i])) {
579                                         $ok = 1;
580                                         $i++;
581                                         last;
582                                 } # else continue looping
583                         }
584                         last if $ok;
585                         my $last = pop @or;
586                         $err = join(', ', @or) . " or $last must be set";
587                 } else {
588                         warn "BUG: can't parse `$var' in $proto";
589                 }
590                 last if $err;
591         }
592         if (!$inf && scalar(@$argv) > scalar(@args)) {
593                 $err //= 'too many arguments';
594         }
595         $err ? fail($self, "usage: lei $cmd $proto\nE: $err") : 1;
596 }
597
598 sub _tmp_cfg { # for lei -c <name>=<value> ...
599         my ($self) = @_;
600         my $cfg = _lei_cfg($self, 1);
601         require File::Temp;
602         my $ft = File::Temp->new(TEMPLATE => 'lei_cfg-XXXX', TMPDIR => 1);
603         my $tmp = { '-f' => $ft->filename, -tmp => $ft };
604         $ft->autoflush(1);
605         print $ft <<EOM or return fail($self, "$tmp->{-f}: $!");
606 [include]
607         path = $cfg->{-f}
608 EOM
609         $tmp = $self->{cfg} = bless { %$cfg, %$tmp }, ref($cfg);
610         for (@{$self->{opt}->{c}}) {
611                 /\A([^=\.]+\.[^=]+)(?:=(.*))?\z/ or return fail($self, <<EOM);
612 `-c $_' is not of the form -c <name>=<value>'
613 EOM
614                 my $name = $1;
615                 my $value = $2 // 1;
616                 _config($self, '--add', $name, $value);
617                 if (defined(my $v = $tmp->{$name})) {
618                         if (ref($v) eq 'ARRAY') {
619                                 push @$v, $value;
620                         } else {
621                                 $tmp->{$name} = [ $v, $value ];
622                         }
623                 } else {
624                         $tmp->{$name} = $value;
625                 }
626         }
627 }
628
629 sub lazy_cb ($$$) {
630         my ($self, $cmd, $pfx) = @_;
631         my $ucmd = $cmd;
632         $ucmd =~ tr/-/_/;
633         my $cb;
634         $cb = $self->can($pfx.$ucmd) and return $cb;
635         my $base = $ucmd;
636         $base =~ s/_([a-z])/\u$1/g;
637         my $pkg = "PublicInbox::Lei\u$base";
638         ($INC{"PublicInbox/Lei\u$base.pm"} // eval("require $pkg")) ?
639                 $pkg->can($pfx.$ucmd) : undef;
640 }
641
642 sub dispatch {
643         my ($self, $cmd, @argv) = @_;
644         local $current_lei = $self; # for __WARN__
645         dump_and_clear_log("from previous run\n");
646         return _help($self, 'no command given') unless defined($cmd);
647         # do not support Getopt bundling for this
648         while ($cmd eq '-C' || $cmd eq '-c') {
649                 my $v = shift(@argv) // return fail($self, $cmd eq '-C' ?
650                                         '-C DIRECTORY' : '-c <name>=<value>');
651                 push @{$self->{opt}->{substr($cmd, 1, 1)}}, $v;
652                 $cmd = shift(@argv) // return _help($self, 'no command given');
653         }
654         if (my $cb = lazy_cb(__PACKAGE__, $cmd, 'lei_')) {
655                 optparse($self, $cmd, \@argv) or return;
656                 $self->{opt}->{c} and (_tmp_cfg($self) // return);
657                 if (my $chdir = $self->{opt}->{C}) {
658                         for my $d (@$chdir) {
659                                 next if $d eq ''; # same as git(1)
660                                 chdir $d or return fail($self, "cd $d: $!");
661                         }
662                         if (delete $self->{3}) { # update cwd for rel2abs
663                                 opendir my $dh, '.' or
664                                         return fail($self, "opendir . $!");
665                                 $self->{3} = $dh;
666                         }
667                 }
668                 $cb->($self, @argv);
669         } elsif (grep(/\A-/, $cmd, @argv)) { # --help or -h only
670                 $GLP->getoptionsfromarray([$cmd, @argv], {}, qw(help|h C=s@))
671                         or return _help($self, 'bad arguments or options');
672                 _help($self);
673         } else {
674                 fail($self, "`$cmd' is not an lei command");
675         }
676 }
677
678 sub _lei_cfg ($;$) {
679         my ($self, $creat) = @_;
680         return $self->{cfg} if $self->{cfg};
681         my $f = _config_path($self);
682         my @st = stat($f);
683         my $cur_st = @st ? pack('dd', $st[10], $st[7]) : ''; # 10:ctime, 7:size
684         my ($sto, $sto_dir);
685         if (my $cfg = $PATH2CFG{$f}) { # reuse existing object in common case
686                 return ($self->{cfg} = $cfg) if $cur_st eq $cfg->{-st};
687                 ($sto, $sto_dir) = @$cfg{qw(-lei_store leistore.dir)};
688         }
689         if (!@st) {
690                 unless ($creat) {
691                         delete $self->{cfg};
692                         return bless {}, 'PublicInbox::Config';
693                 }
694                 my (undef, $cfg_dir, undef) = File::Spec->splitpath($f);
695                 -d $cfg_dir or mkpath($cfg_dir) or die "mkpath($cfg_dir): $!\n";
696                 open my $fh, '>>', $f or die "open($f): $!\n";
697                 @st = stat($fh) or die "fstat($f): $!\n";
698                 $cur_st = pack('dd', $st[10], $st[7]);
699                 qerr($self, "# $f created") if $self->{cmd} ne 'config';
700         }
701         my $cfg = PublicInbox::Config::git_config_dump($f);
702         bless $cfg, 'PublicInbox::Config';
703         $cfg->{-st} = $cur_st;
704         $cfg->{'-f'} = $f;
705         if ($sto && File::Spec->canonpath($sto_dir // store_path($self))
706                         eq File::Spec->canonpath($cfg->{'leistore.dir'} //
707                                                 store_path($self))) {
708                 $cfg->{-lei_store} = $sto;
709         }
710         if (scalar(keys %PATH2CFG) > 5) {
711                 # FIXME: use inotify/EVFILT_VNODE to detect unlinked configs
712                 for my $k (keys %PATH2CFG) {
713                         delete($PATH2CFG{$k}) unless -f $k
714                 }
715         }
716         $self->{cfg} = $PATH2CFG{$f} = $cfg;
717 }
718
719 sub _lei_store ($;$) {
720         my ($self, $creat) = @_;
721         my $cfg = _lei_cfg($self, $creat);
722         $cfg->{-lei_store} //= do {
723                 require PublicInbox::LeiStore;
724                 my $dir = $cfg->{'leistore.dir'} // store_path($self);
725                 return unless $creat || -d $dir;
726                 PublicInbox::LeiStore->new($dir, { creat => $creat });
727         };
728 }
729
730 sub _config {
731         my ($self, @argv) = @_;
732         my %env = (%{$self->{env}}, GIT_CONFIG => undef);
733         my $cfg = _lei_cfg($self, 1);
734         my $cmd = [ qw(git config -f), $cfg->{'-f'}, @argv ];
735         my %rdr = map { $_ => $self->{$_} } (0..2);
736         waitpid(spawn($cmd, \%env, \%rdr), 0);
737 }
738
739 sub lei_config {
740         my ($self, @argv) = @_;
741         $self->{opt}->{'config-file'} and return fail $self,
742                 "config file switches not supported by `lei config'";
743         _config(@_);
744         x_it($self, $?) if $?;
745 }
746
747 sub lei_init {
748         my ($self, $dir) = @_;
749         my $cfg = _lei_cfg($self, 1);
750         my $cur = $cfg->{'leistore.dir'};
751         $dir //= store_path($self);
752         $dir = rel2abs($self, $dir);
753         my @cur = stat($cur) if defined($cur);
754         $cur = File::Spec->canonpath($cur // $dir);
755         my @dir = stat($dir);
756         my $exists = "# leistore.dir=$cur already initialized" if @dir;
757         if (@cur) {
758                 if ($cur eq $dir) {
759                         _lei_store($self, 1)->done;
760                         return qerr($self, $exists);
761                 }
762
763                 # some folks like symlinks and bind mounts :P
764                 if (@dir && "@cur[1,0]" eq "@dir[1,0]") {
765                         lei_config($self, 'leistore.dir', $dir);
766                         _lei_store($self, 1)->done;
767                         return qerr($self, "$exists (as $cur)");
768                 }
769                 return fail($self, <<"");
770 E: leistore.dir=$cur already initialized and it is not $dir
771
772         }
773         lei_config($self, 'leistore.dir', $dir);
774         _lei_store($self, 1)->done;
775         $exists //= "# leistore.dir=$dir newly initialized";
776         return qerr($self, $exists);
777 }
778
779 sub lei_daemon_pid { puts shift, $$ }
780
781 sub lei_daemon_kill {
782         my ($self) = @_;
783         my $sig = $self->{opt}->{signal} // 'TERM';
784         kill($sig, $$) or fail($self, "kill($sig, $$): $!");
785 }
786
787 # Shell completion helper.  Used by lei-completion.bash and hopefully
788 # other shells.  Try to do as much here as possible to avoid redundancy
789 # and improve maintainability.
790 sub lei__complete {
791         my ($self, @argv) = @_; # argv = qw(lei and any other args...)
792         shift @argv; # ignore "lei", the entire command is sent
793         @argv or return puts $self, grep(!/^_/, keys %CMD), qw(--help -h -C);
794         my $cmd = shift @argv;
795         my $info = $CMD{$cmd} // do { # filter matching commands
796                 @argv or puts $self, grep(/\A\Q$cmd\E/, keys %CMD);
797                 return;
798         };
799         my ($proto, undef, @spec) = @$info;
800         my $cur = pop @argv;
801         my $re = defined($cur) ? qr/\A\Q$cur\E/ : qr/./;
802         if (substr(my $_cur = $cur // '-', 0, 1) eq '-') { # --switches
803                 # gross special case since the only git-config options
804                 # Consider moving to a table if we need more special cases
805                 # we use Getopt::Long for are the ones we reject, so these
806                 # are the ones we don't reject:
807                 if ($cmd eq 'config') {
808                         puts $self, grep(/$re/, keys %CONFIG_KEYS);
809                         @spec = qw(add z|null get get-all unset unset-all
810                                 replace-all get-urlmatch
811                                 remove-section rename-section
812                                 name-only list|l edit|e
813                                 get-color-name get-colorbool);
814                         # fall-through
815                 }
816                 # generate short/long names from Getopt::Long specs
817                 puts $self, grep(/$re/, qw(--help -h -C), map {
818                         if (s/[:=].+\z//) { # req/optional args, e.g output|o=i
819                         } elsif (s/\+\z//) { # verbose|v+
820                         } elsif (s/!\z//) {
821                                 # negation: solve! => no-solve|solve
822                                 s/([\w\-]+)/$1|no-$1/g
823                         }
824                         map {
825                                 my $x = length > 1 ? "--$_" : "-$_";
826                                 $x eq $_cur ? () : $x;
827                         } grep(!/_/, split(/\|/, $_, -1)) # help|h
828                 } grep { $OPTDESC{"$_\t$cmd"} || $OPTDESC{$_} } @spec);
829         } elsif ($cmd eq 'config' && !@argv && !$CONFIG_KEYS{$cur}) {
830                 puts $self, grep(/$re/, keys %CONFIG_KEYS);
831         }
832
833         # switch args (e.g. lei q -f mbox<TAB>)
834         if (($argv[-1] // $cur // '') =~ /\A--?([\w\-]+)\z/) {
835                 my $opt = quotemeta $1;
836                 puts $self, map {
837                         my $v = $OPTDESC{$_};
838                         my @v = ref($v) ? split(/\|/, $v->[0]) : ();
839                         # get rid of ALL CAPS placeholder (e.g "OUT")
840                         # (TODO: completion for external paths)
841                         shift(@v) if scalar(@v) && uc($v[0]) eq $v[0];
842                         @v;
843                 } grep(/\A(?:[\w-]+\|)*$opt\b.*?(?:\t$cmd)?\z/, keys %OPTDESC);
844         }
845         if (my $cb = lazy_cb($self, $cmd, '_complete_')) {
846                 puts $self, $cb->($self, @argv, $cur ? ($cur) : ());
847         }
848         # TODO: URLs, pathnames, OIDs, MIDs, etc...  See optparse() for
849         # proto parsing.
850 }
851
852 sub exec_buf ($$) {
853         my ($argv, $env) = @_;
854         my $argc = scalar @$argv;
855         my $buf = 'exec '.join("\0", scalar(@$argv), @$argv);
856         while (my ($k, $v) = each %$env) { $buf .= "\0$k=$v" };
857         $buf;
858 }
859
860 sub start_mua {
861         my ($self) = @_;
862         my $mua = $self->{opt}->{mua} // return;
863         my $mfolder = $self->{ovv}->{dst};
864         my (@cmd, $replaced);
865         if ($mua =~ /\A(?:mutt|mailx|mail|neomutt)\z/) {
866                 @cmd = ($mua, '-f');
867         # TODO: help wanted: other common FOSS MUAs
868         } else {
869                 require Text::ParseWords;
870                 @cmd = Text::ParseWords::shellwords($mua);
871                 # mutt uses '%f' for open-hook with compressed mbox, we follow
872                 @cmd = map { $_ eq '%f' ? ($replaced = $mfolder) : $_ } @cmd;
873         }
874         push @cmd, $mfolder unless defined($replaced);
875         if (my $sock = $self->{sock}) { # lei(1) client process runs it
876                 send($sock, exec_buf(\@cmd, {}), MSG_EOR);
877         } elsif ($self->{oneshot}) {
878                 $self->{"pid.$self.$$"}->{spawn(\@cmd)} = \@cmd;
879         }
880         if ($self->{lxs} && $self->{au_done}) { # kick wait_startq
881                 syswrite($self->{au_done}, 'q' x ($self->{lxs}->{jobs} // 0));
882         }
883         $self->{opt}->{quiet} = 1;
884         delete $self->{-progress};
885         delete $self->{opt}->{verbose};
886 }
887
888 sub send_exec_cmd { # tell script/lei to execute a command
889         my ($self, $io, $cmd, $env) = @_;
890         my $sock = $self->{sock} // die 'lei client gone';
891         my $fds = [ map { fileno($_) } @$io ];
892         $send_cmd->($sock, $fds, exec_buf($cmd, $env), MSG_EOR);
893 }
894
895 sub poke_mua { # forces terminal MUAs to wake up and hopefully notice new mail
896         my ($self) = @_;
897         my $alerts = $self->{opt}->{alert} // return;
898         while (my $op = shift(@$alerts)) {
899                 if ($op eq ':WINCH') {
900                         # hit the process group that started the MUA
901                         if ($self->{sock}) {
902                                 send($self->{sock}, '-WINCH', MSG_EOR);
903                         } elsif ($self->{oneshot}) {
904                                 kill('-WINCH', $$);
905                         }
906                 } elsif ($op eq ':bell') {
907                         out($self, "\a");
908                 } elsif ($op =~ /(?<!\\),/) { # bare ',' (not ',,')
909                         push @$alerts, split(/(?<!\\),/, $op);
910                 } elsif ($op =~ m!\A([/a-z0-9A-Z].+)!) {
911                         my $cmd = $1; # run an arbitrary command
912                         require Text::ParseWords;
913                         $cmd = [ Text::ParseWords::shellwords($cmd) ];
914                         if (my $s = $self->{sock}) {
915                                 send($s, exec_buf($cmd, {}), MSG_EOR);
916                         } elsif ($self->{oneshot}) {
917                                 $self->{"pid.$self.$$"}->{spawn($cmd)} = $cmd;
918                         }
919                 } else {
920                         err($self, "W: unsupported --alert=$op"); # non-fatal
921                 }
922         }
923 }
924
925 my %path_to_fd = ('/dev/stdin' => 0, '/dev/stdout' => 1, '/dev/stderr' => 2);
926 $path_to_fd{"/dev/fd/$_"} = $_ for (0..2);
927
928 # this also normalizes the path
929 sub path_to_fd {
930         my ($self, $path) = @_;
931         $path = rel2abs($self, $path);
932         $path =~ tr!/!/!s;
933         $path_to_fd{$path} // (
934                 ($path =~ m!\A/(?:dev|proc/self)/fd/[0-9]+\z!) ?
935                         fail($self, "cannot open $path from daemon") : -1
936         );
937 }
938
939 # caller needs to "-t $self->{1}" to check if tty
940 sub start_pager {
941         my ($self) = @_;
942         my $fh = popen_rd([qw(git var GIT_PAGER)]);
943         chomp(my $pager = <$fh> // '');
944         close($fh) or warn "`git var PAGER' error: \$?=$?";
945         return if $pager eq 'cat' || $pager eq '';
946         my $new_env = { LESS => 'FRX', LV => '-c' };
947         $new_env->{MORE} = 'FRX' if $^O eq 'freebsd';
948         pipe(my ($r, $wpager)) or return warn "pipe: $!";
949         my $rdr = { 0 => $r, 1 => $self->{1}, 2 => $self->{2} };
950         my $pgr = [ undef, @$rdr{1, 2} ];
951         my $env = $self->{env};
952         if ($self->{sock}) { # lei(1) process runs it
953                 delete @$new_env{keys %$env}; # only set iff unset
954                 send_exec_cmd($self, [ @$rdr{0..2} ], [$pager], $new_env);
955         } elsif ($self->{oneshot}) {
956                 my $cmd = [$pager];
957                 $self->{"pid.$self.$$"}->{spawn($cmd, $new_env, $rdr)} = $cmd;
958         } else {
959                 die 'BUG: start_pager w/o socket';
960         }
961         $self->{1} = $wpager;
962         $self->{2} = $wpager if -t $self->{2};
963         $env->{GIT_PAGER_IN_USE} = 'true'; # we may spawn git
964         $self->{pgr} = $pgr;
965 }
966
967 sub stop_pager {
968         my ($self) = @_;
969         my $pgr = delete($self->{pgr}) or return;
970         $self->{2} = $pgr->[2];
971         # do not restore original stdout, just close it so we error out
972         close(delete($self->{1})) if $self->{1};
973 }
974
975 sub accept_dispatch { # Listener {post_accept} callback
976         my ($sock) = @_; # ignore other
977         $sock->autoflush(1);
978         my $self = bless { sock => $sock }, __PACKAGE__;
979         vec(my $rvec = '', fileno($sock), 1) = 1;
980         select($rvec, undef, undef, 60) or
981                 return send($sock, 'timed out waiting to recv FDs', MSG_EOR);
982         # (4096 * 33) >MAX_ARG_STRLEN
983         my @fds = $recv_cmd->($sock, my $buf, 4096 * 33) or return; # EOF
984         if (!defined($fds[0])) {
985                 warn(my $msg = "recv_cmd failed: $!");
986                 return send($sock, $msg, MSG_EOR);
987         } else {
988                 my $i = 0;
989                 for my $fd (@fds) {
990                         open($self->{$i++}, '+<&=', $fd) and next;
991                         send($sock, "open(+<&=$fd) (FD=$i): $!", MSG_EOR);
992                 }
993                 return if scalar(@fds) != 4;
994         }
995         $self->{2}->autoflush(1); # keep stdout buffered until x_it|DESTROY
996         # $ENV_STR = join('', map { "\0$_=$ENV{$_}" } keys %ENV);
997         # $buf = "$argc\0".join("\0", @ARGV).$ENV_STR."\0\0";
998         substr($buf, -2, 2, '') eq "\0\0" or  # s/\0\0\z//
999                 return send($sock, 'request command truncated', MSG_EOR);
1000         my ($argc, @argv) = split(/\0/, $buf, -1);
1001         undef $buf;
1002         my %env = map { split(/=/, $_, 2) } splice(@argv, $argc);
1003         if (chdir($self->{3})) {
1004                 local %ENV = %env;
1005                 $self->{env} = \%env;
1006                 eval { dispatch($self, @argv) };
1007                 send($sock, $@, MSG_EOR) if $@;
1008         } else {
1009                 send($sock, "fchdir: $!", MSG_EOR); # implicit close
1010         }
1011 }
1012
1013 sub dclose {
1014         my ($self) = @_;
1015         delete $self->{-progress};
1016         for my $f (@WQ_KEYS) {
1017                 my $wq = delete $self->{$f} or next;
1018                 if ($wq->wq_kill) {
1019                         $wq->wq_close(0, undef, $self);
1020                 } elsif ($wq->wq_kill_old) {
1021                         $wq->wq_wait_old(undef, $self);
1022                 }
1023         }
1024         close(delete $self->{1}) if $self->{1}; # may reap_compress
1025         $self->close if $self->{-event_init_done}; # PublicInbox::DS::close
1026 }
1027
1028 # for long-running results
1029 sub event_step {
1030         my ($self) = @_;
1031         local %ENV = %{$self->{env}};
1032         my $sock = $self->{sock};
1033         local $current_lei = $self;
1034         eval {
1035                 while (my @fds = $recv_cmd->($sock, my $buf, 4096)) {
1036                         if (scalar(@fds) == 1 && !defined($fds[0])) {
1037                                 return if $! == EAGAIN;
1038                                 next if $! == EINTR;
1039                                 last if $! == ECONNRESET;
1040                                 die "recvmsg: $!";
1041                         }
1042                         for my $fd (@fds) {
1043                                 open my $rfh, '+<&=', $fd;
1044                         }
1045                         die "unrecognized client signal: $buf";
1046                 }
1047                 dclose($self);
1048         };
1049         if (my $err = $@) {
1050                 eval { $self->fail($err) };
1051                 dclose($self);
1052         }
1053 }
1054
1055 sub event_step_init {
1056         my ($self) = @_;
1057         return if $self->{-event_init_done}++;
1058         if (my $sock = $self->{sock}) { # using DS->EventLoop
1059                 $self->SUPER::new($sock, EPOLLIN|EPOLLET);
1060         }
1061 }
1062
1063 sub noop {}
1064
1065 sub oldset { $oldset }
1066
1067 sub dump_and_clear_log {
1068         if (defined($errors_log) && -s STDIN && seek(STDIN, 0, SEEK_SET)) {
1069                 my @pfx = @_;
1070                 unshift(@pfx, "$errors_log ") if @pfx;
1071                 warn @pfx, do { local $/; <STDIN> };
1072                 truncate(STDIN, 0) or warn "ftruncate ($errors_log): $!";
1073         }
1074 }
1075
1076 # lei(1) calls this when it can't connect
1077 sub lazy_start {
1078         my ($path, $errno, $narg) = @_;
1079         local ($errors_log, $listener);
1080         ($errors_log) = ($path =~ m!\A(.+?/)[^/]+\z!);
1081         $errors_log .= 'errors.log';
1082         my $addr = pack_sockaddr_un($path);
1083         my $lk = bless { lock_path => $errors_log }, 'PublicInbox::Lock';
1084         $lk->lock_acquire;
1085         socket($listener, AF_UNIX, SOCK_SEQPACKET, 0) or die "socket: $!";
1086         if ($errno == ECONNREFUSED || $errno == ENOENT) {
1087                 return if connect($listener, $addr); # another process won
1088                 if ($errno == ECONNREFUSED && -S $path) {
1089                         unlink($path) or die "unlink($path): $!";
1090                 }
1091         } else {
1092                 $! = $errno; # allow interpolation to stringify in die
1093                 die "connect($path): $!";
1094         }
1095         umask(077) // die("umask(077): $!");
1096         bind($listener, $addr) or die "bind($path): $!";
1097         listen($listener, 1024) or die "listen: $!";
1098         $lk->lock_release;
1099         undef $lk;
1100         my @st = stat($path) or die "stat($path): $!";
1101         my $dev_ino_expect = pack('dd', $st[0], $st[1]); # dev+ino
1102         local $oldset = PublicInbox::DS::block_signals();
1103         if ($narg == 5) {
1104                 $send_cmd = PublicInbox::Spawn->can('send_cmd4');
1105                 $recv_cmd = PublicInbox::Spawn->can('recv_cmd4') // do {
1106                         require PublicInbox::CmdIPC4;
1107                         $send_cmd = PublicInbox::CmdIPC4->can('send_cmd4');
1108                         PublicInbox::CmdIPC4->can('recv_cmd4');
1109                 };
1110         }
1111         $recv_cmd or die <<"";
1112 (Socket::MsgHdr || Inline::C) missing/unconfigured (narg=$narg);
1113
1114         require PublicInbox::Listener;
1115         require PublicInbox::EOFpipe;
1116         (-p STDOUT) or die "E: stdout must be a pipe\n";
1117         open(STDIN, '+>>', $errors_log) or die "open($errors_log): $!";
1118         STDIN->autoflush(1);
1119         dump_and_clear_log("from previous daemon process:\n");
1120         POSIX::setsid() > 0 or die "setsid: $!";
1121         my $pid = fork // die "fork: $!";
1122         return if $pid;
1123         $0 = "lei-daemon $path";
1124         local %PATH2CFG;
1125         $listener->blocking(0);
1126         my $exit_code;
1127         my $pil = PublicInbox::Listener->new($listener, \&accept_dispatch);
1128         local $quit = do {
1129                 pipe(my ($eof_r, $eof_w)) or die "pipe: $!";
1130                 PublicInbox::EOFpipe->new($eof_r, \&noop, undef);
1131                 sub {
1132                         $exit_code //= shift;
1133                         my $lis = $pil or exit($exit_code);
1134                         # closing eof_w triggers \&noop wakeup
1135                         $listener = $eof_w = $pil = $path = undef;
1136                         $lis->close; # DS::close
1137                         PublicInbox::DS->SetLoopTimeout(1000);
1138                 };
1139         };
1140         my $sig = {
1141                 CHLD => \&PublicInbox::DS::enqueue_reap,
1142                 QUIT => $quit,
1143                 INT => $quit,
1144                 TERM => $quit,
1145                 HUP => \&noop,
1146                 USR1 => \&noop,
1147                 USR2 => \&noop,
1148         };
1149         my $sigfd = PublicInbox::Sigfd->new($sig, SFD_NONBLOCK);
1150         local @SIG{keys %$sig} = values(%$sig) unless $sigfd;
1151         undef $sig;
1152         local $SIG{PIPE} = 'IGNORE';
1153         if ($sigfd) { # TODO: use inotify/kqueue to detect unlinked sockets
1154                 undef $sigfd;
1155                 PublicInbox::DS->SetLoopTimeout(5000);
1156         } else {
1157                 # wake up every second to accept signals if we don't
1158                 # have signalfd or IO::KQueue:
1159                 PublicInbox::DS::sig_setmask($oldset);
1160                 PublicInbox::DS->SetLoopTimeout(1000);
1161         }
1162         PublicInbox::DS->SetPostLoopCallback(sub {
1163                 my ($dmap, undef) = @_;
1164                 if (@st = defined($path) ? stat($path) : ()) {
1165                         if ($dev_ino_expect ne pack('dd', $st[0], $st[1])) {
1166                                 warn "$path dev/ino changed, quitting\n";
1167                                 $path = undef;
1168                         }
1169                 } elsif (defined($path)) { # ENOENT is common
1170                         warn "stat($path): $!, quitting ...\n" if $! != ENOENT;
1171                         undef $path;
1172                         $quit->();
1173                 }
1174                 return 1 if defined($path);
1175                 my $now = now();
1176                 my $n = 0;
1177                 for my $s (values %$dmap) {
1178                         $s->can('busy') or next;
1179                         if ($s->busy($now)) {
1180                                 ++$n;
1181                         } else {
1182                                 $s->close;
1183                         }
1184                 }
1185                 $n; # true: continue, false: stop
1186         });
1187
1188         # STDIN was redirected to /dev/null above, closing STDERR and
1189         # STDOUT will cause the calling `lei' client process to finish
1190         # reading the <$daemon> pipe.
1191         local $SIG{__WARN__} = sub {
1192                 $current_lei ? err($current_lei, @_) : warn(
1193                   strftime('%Y-%m-%dT%H:%M:%SZ', gmtime(time))," $$ ", @_);
1194         };
1195         open STDERR, '>&STDIN' or die "redirect stderr failed: $!";
1196         open STDOUT, '>&STDIN' or die "redirect stdout failed: $!";
1197         # $daemon pipe to `lei' closed, main loop begins:
1198         PublicInbox::DS->EventLoop;
1199         exit($exit_code // 0);
1200 }
1201
1202 sub busy { 1 } # prevent daemon-shutdown if client is connected
1203
1204 # for users w/o Socket::Msghdr installed or Inline::C enabled
1205 sub oneshot {
1206         my ($main_pkg) = @_;
1207         my $exit = $main_pkg->can('exit'); # caller may override exit()
1208         local $quit = $exit if $exit;
1209         local %PATH2CFG;
1210         umask(077) // die("umask(077): $!");
1211         my $self = bless {
1212                 oneshot => 1,
1213                 0 => *STDIN{GLOB},
1214                 1 => *STDOUT{GLOB},
1215                 2 => *STDERR{GLOB},
1216                 env => \%ENV
1217         }, __PACKAGE__;
1218         dispatch($self, @ARGV);
1219         x_it($self, $self->{child_error}) if $self->{child_error};
1220 }
1221
1222 # ensures stdout hits the FS before sock disconnects so a client
1223 # can immediately reread it
1224 sub DESTROY {
1225         my ($self) = @_;
1226         $self->{1}->autoflush(1) if $self->{1};
1227         stop_pager($self);
1228         my $err = $?;
1229         my $oneshot_pids = delete $self->{"pid.$self.$$"} or return;
1230         waitpid($_, 0) for keys %$oneshot_pids;
1231         $? = $err if $err; # preserve ->fail or ->x_it code
1232 }
1233
1234 1;