]> Sergey Matveev's repositories - public-inbox.git/blob - lib/PublicInbox/LEI.pm
a7ddc21f4da0de7ea55448994d80f90ec96f4f81
[public-inbox.git] / lib / PublicInbox / LEI.pm
1 # Copyright (C) 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 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(EPOLLIN);
22 use PublicInbox::DS qw(dwaitpid);
23 use PublicInbox::Spawn qw(spawn popen_rd);
24 use PublicInbox::Lock;
25 use PublicInbox::Eml;
26 use PublicInbox::Import;
27 use PublicInbox::ContentHash qw(git_sha);
28 use Time::HiRes qw(stat); # ctime comparisons for config cache
29 use File::Path qw(mkpath);
30 use File::Spec;
31 use Sys::Syslog qw(openlog syslog closelog);
32 our $quit = \&CORE::exit;
33 our ($current_lei, $errors_log, $listener, $oldset, $dir_idle,
34         $recv_cmd, $send_cmd);
35 my $GLP = Getopt::Long::Parser->new;
36 $GLP->configure(qw(gnu_getopt no_ignore_case auto_abbrev));
37 my $GLP_PASS = Getopt::Long::Parser->new;
38 $GLP_PASS->configure(qw(gnu_getopt no_ignore_case auto_abbrev pass_through));
39
40 our %PATH2CFG; # persistent for socket daemon
41 our $MDIR2CFGPATH; # /path/to/maildir => { /path/to/config => [ ino watches ] }
42
43 # TBD: this is a documentation mechanism to show a subcommand
44 # (may) pass options through to another command:
45 sub pass_through { $GLP_PASS }
46
47 my $OPT;
48 sub opt_dash ($$) {
49         my ($spec, $re_str) = @_; # 'limit|n=i', '([0-9]+)'
50         my ($key) = ($spec =~ m/\A([a-z]+)/g);
51         my $cb = sub { # Getopt::Long "<>" catch-all handler
52                 my ($arg) = @_;
53                 if ($arg =~ /\A-($re_str)\z/) {
54                         $OPT->{$key} = $1;
55                 } elsif ($arg eq '--') { # "--" arg separator, ignore first
56                         push @{$OPT->{-argv}}, $arg if $OPT->{'--'}++;
57                 # lone (single) dash is handled elsewhere
58                 } elsif (substr($arg, 0, 1) eq '-') {
59                         if ($OPT->{'--'}) {
60                                 push @{$OPT->{-argv}}, $arg;
61                         } else {
62                                 die "bad argument: $arg\n";
63                         }
64                 } else {
65                         push @{$OPT->{-argv}}, $arg;
66                 }
67         };
68         ($spec, '<>' => $cb, $GLP_PASS) # for Getopt::Long
69 }
70
71 # rel2abs preserves symlinks in parent, unlike abs_path
72 sub rel2abs {
73         my ($self, $p) = @_;
74         if (index($p, '/') == 0) { # already absolute
75                 $p =~ tr!/!/!s; # squeeze redundant slashes
76                 chop($p) if substr($p, -1, 1) eq '/';
77                 return $p;
78         }
79         my $pwd = $self->{env}->{PWD};
80         if (defined $pwd) {
81                 if (my @st_pwd = stat($pwd)) {
82                         my @st_cwd = stat($self->{3}) or die "stat({3}): $!";
83                         "@st_pwd[1,0]" eq "@st_cwd[1,0]" or
84                                 $self->{env}->{PWD} = $pwd = undef;
85                 } else { # PWD was invalid
86                         $self->{env}->{PWD} = $pwd = undef;
87                 }
88         }
89         $pwd //= $self->{env}->{PWD} = getcwd() // die "getcwd: $!";
90         File::Spec->rel2abs($p, $pwd);
91 }
92
93 # abs_path resolves symlinks in parent iff all parents exist
94 sub abs_path { Cwd::abs_path($_[1]) // rel2abs(@_) }
95
96 sub canonpath_harder {
97         my $p = $_[-1]; # $_[0] may be self
98         $p = File::Spec->canonpath($p);
99         $p =~ m!(?:/*|\A)\.\.(?:/*|\z)! && -e $p ? Cwd::abs_path($p) : $p;
100 }
101
102 sub share_path ($) { # $HOME/.local/share/lei/$FOO
103         my ($self) = @_;
104         rel2abs($self, ($self->{env}->{XDG_DATA_HOME} //
105                 ($self->{env}->{HOME} // '/nonexistent').'/.local/share')
106                 .'/lei');
107 }
108
109 sub store_path ($) { share_path($_[0]) . '/store' }
110
111 sub _config_path ($) {
112         my ($self) = @_;
113         rel2abs($self, ($self->{env}->{XDG_CONFIG_HOME} //
114                 ($self->{env}->{HOME} // '/nonexistent').'/.config')
115                 .'/lei/config');
116 }
117
118 sub cache_dir ($) {
119         my ($self) = @_;
120         rel2abs($self, ($self->{env}->{XDG_CACHE_HOME} //
121                 ($self->{env}->{HOME} // '/nonexistent').'/.cache')
122                 .'/lei');
123 }
124
125 sub url_folder_cache {
126         my ($self) = @_;
127         require PublicInbox::SharedKV; # URI => updated_at_sec_
128         PublicInbox::SharedKV->new(cache_dir($self).'/uri_folder');
129 }
130
131 sub ale {
132         my ($self) = @_;
133         $self->{ale} // do {
134                 require PublicInbox::LeiALE;
135                 my $cfg = $self->_lei_cfg(1);
136                 $self->{ale} = $cfg->{ale} //= PublicInbox::LeiALE->new($self);
137         };
138 }
139
140 sub index_opt {
141         # TODO: drop underscore variants everywhere, they're undocumented
142         qw(fsync|sync! jobs|j=i indexlevel|L=s compact
143         max_size|max-size=s sequential-shard
144         batch_size|batch-size=s skip-docdata)
145 }
146
147 my @c_opt = qw(c=s@ C=s@ quiet|q);
148 my @net_opt = (qw(no-torsocks torsocks=s), PublicInbox::LeiQuery::curl_opt());
149 my @lxs_opt = qw(remote! local! external! include|I=s@ exclude=s@ only|O=s@
150         import-remote!);
151
152 # we don't support -C as an alias for --find-copies since it's already
153 # used for chdir
154 our @diff_opt = qw(unified|U=i output-indicator-new=s output-indicator-old=s
155         output-indicator-context=s indent-heuristic!
156         minimal patience histogram anchored=s@ diff-algorithm=s
157         color-moved:s color-moved-ws=s no-color-moved no-color-moved-ws
158         word-diff:s word-diff-regex=s color-words:s no-renames
159         rename-empty! check ws-error-highlight=s full-index binary
160         abbrev:i break-rewrites|B:s find-renames|M:s find-copies:s
161         find-copies-harder irreversible-delete|D l=i diff-filter=s
162         S=s G=s find-object=s pickaxe-all pickaxe-regex O=s R
163         relative:s text|a ignore-cr-at-eol ignore-space-at-eol
164         ignore-space-change|b ignore-all-space|w ignore-blank-lines
165         inter-hunk-context=i function-context|W exit-code ext-diff
166         no-ext-diff textconv! src-prefix=s dst-prefix=s no-prefix
167         line-prefix=s);
168
169 # we generate shell completion + help using %CMD and %OPTDESC,
170 # see lei__complete() and PublicInbox::LeiHelp
171 # command => [ positional_args, 1-line description, Getopt::Long option spec ]
172 our %CMD = ( # sorted in order of importance/use:
173 'q' => [ '--stdin|SEARCH_TERMS...', 'search for messages matching terms',
174         'stdin|', # /|\z/ must be first for lone dash
175         @lxs_opt, @net_opt,
176         qw(save! output|mfolder|o=s format|f=s dedupe|d=s threads|t+
177         sort|s=s reverse|r offset=i pretty jobs|j=s globoff|g augment|a
178         import-before! lock=s@ rsyncable alert=s@ mua=s verbose|v+
179         shared color! mail-sync!), @c_opt, opt_dash('limit|n=i', '[0-9]+') ],
180
181 'up' => [ 'OUTPUT...|--all', 'update saved search',
182         qw(jobs|j=s lock=s@ alert=s@ mua=s verbose|v+ exclude=s@
183         remote-fudge-time=s all:s remote! local! external!), @net_opt, @c_opt ],
184
185 'lcat' => [ '--stdin|MSGID_OR_URL...', 'display local copy of message(s)',
186         'stdin|', # /|\z/ must be first for lone dash
187         # some of these options are ridiculous for lcat
188         @lxs_opt, @net_opt,
189         qw(output|mfolder|o=s format|f=s dedupe|d=s threads|t+
190         sort|s=s reverse|r offset=i jobs|j=s globoff|g augment|a
191         import-before! lock=s@ rsyncable alert=s@ mua=s verbose|v+
192         color!), @c_opt, opt_dash('limit|n=i', '[0-9]+') ],
193
194 'blob' => [ 'OID', 'show a git blob, reconstructing from mail if necessary',
195         qw(git-dir=s@ cwd! verbose|v+ mail! oid-a|A=s path-a|a=s path-b|b=s),
196         @lxs_opt, @net_opt, @c_opt ],
197
198 'rediff' => [ '--stdin|LOCATION...',
199                 'regenerate a diff with different options',
200         'stdin|', # /|\z/ must be first for lone dash
201         qw(git-dir=s@ cwd! verbose|v+ color:s no-color drq:1 dequote-only:1),
202         @diff_opt, @lxs_opt, @net_opt, @c_opt ],
203
204 'mail-diff' => [ '--stdin|LOCATION...', 'diff the contents of emails',
205         'stdin|', # /|\z/ must be first for lone dash
206         qw(verbose|v+ in-format|F=s color:s no-color raw-header),
207         @diff_opt, @net_opt, @c_opt ],
208
209 'add-external' => [ 'LOCATION',
210         'add/set priority of a publicinbox|extindex for extra matches',
211         qw(boost=i mirror=s inbox-version=i epoch=s verbose|v+),
212         @c_opt, index_opt(), @net_opt ],
213 'ls-external' => [ '[FILTER]', 'list publicinbox|extindex locations',
214         qw(format|f=s z|0 globoff|g invert-match|v local remote), @c_opt ],
215 'ls-label' => [ '', 'list labels', qw(z|0 stats:s), @c_opt ],
216 'ls-mail-sync' => [ '[FILTER]', 'list mail sync folders',
217                 qw(z|0 globoff|g invert-match|v local remote), @c_opt ],
218 'ls-mail-source' => [ 'URL', 'list IMAP or NNTP mail source folders',
219                 qw(z|0 ascii l pretty url), @net_opt, @c_opt ],
220 'forget-external' => [ 'LOCATION...|--prune',
221         'exclude further results from a publicinbox|extindex',
222         qw(prune), @c_opt ],
223
224 'ls-search' => [ '[PREFIX]', 'list saved search queries',
225                 qw(format|f=s pretty l ascii z|0), @c_opt ],
226 'forget-search' => [ 'OUTPUT...|--prune', 'forget a saved search',
227                 qw(verbose|v+ prune:s), @c_opt ],
228 'edit-search' => [ 'OUTPUT', "edit saved search via `git config --edit'",
229                         @c_opt ],
230 'rm' => [ '--stdin|LOCATION...',
231         'remove a message from the index and prevent reindexing',
232         'stdin|', # /|\z/ must be first for lone dash
233         qw(in-format|F=s lock=s@), @net_opt, @c_opt ],
234 'plonk' => [ '--threads|--from=IDENT',
235         'exclude mail matching From: or threads from non-Message-ID searches',
236         qw(stdin| threads|t from|f=s mid=s oid=s), @c_opt ],
237 'tag' => [ 'KEYWORDS...',
238         'set/unset keywords and/or labels on message(s)',
239         qw(stdin| in-format|F=s input|i=s@ oid=s@ mid=s@),
240         @net_opt, @c_opt, pass_through('-kw:foo for delete') ],
241
242 'purge-mailsource' => [ 'LOCATION|--all',
243         'remove imported messages from IMAP, Maildirs, and MH',
244         qw(exact! all jobs:i indexed), @c_opt ],
245
246 'add-watch' => [ 'LOCATION...', 'watch for new messages and flag changes',
247         qw(poll-interval=s state=s recursive|r), @c_opt ],
248 'rm-watch' => [ 'LOCATION...', 'remove specified watch(es)',
249         qw(recursive|r), @c_opt ],
250 'ls-watch' => [ '[FILTER...]', 'list active watches with numbers and status',
251                 qw(l z|0), @c_opt ],
252 'pause-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote), @c_opt ],
253 'resume-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote), @c_opt ],
254 'forget-watch' => [ '{WATCH_NUMBER|--prune}', 'stop and forget a watch',
255         qw(prune), @c_opt ],
256
257 'index' => [ 'LOCATION...', 'one-time index from URL or filesystem',
258         qw(in-format|F=s kw! offset=i recursive|r exclude=s include|I=s
259         verbose|v+ incremental!), @net_opt, # mainly for --proxy=
260          @c_opt ],
261 'import' => [ 'LOCATION...|--stdin',
262         'one-time import/update from URL or filesystem',
263         qw(stdin| offset=i recursive|r exclude=s include|I=s new-only
264         lock=s@ in-format|F=s kw! verbose|v+ incremental! mail-sync!),
265         @net_opt, @c_opt ],
266 'forget-mail-sync' => [ 'LOCATION...',
267         'forget sync information for a mail folder', @c_opt ],
268 'refresh-mail-sync' => [ 'LOCATION...|--all',
269         'prune dangling sync data for a mail folder', 'all:s',
270                 @net_opt, @c_opt ],
271 'export-kw' => [ 'LOCATION...|--all',
272         'one-time export of keywords of sync sources',
273         qw(all:s mode=s), @net_opt, @c_opt ],
274 'convert' => [ 'LOCATION...|--stdin',
275         'one-time conversion from URL or filesystem to another format',
276         qw(stdin| in-format|F=s out-format|f=s output|mfolder|o=s lock=s@ kw!),
277         @net_opt, @c_opt ],
278 'p2q' => [ 'LOCATION_OR_COMMIT...|--stdin',
279         "use a patch to generate a query for `lei q --stdin'",
280         qw(stdin| in-format|F=s want|w=s@ uri debug), @net_opt, @c_opt ],
281 'config' => [ '[...]', sub {
282                 'git-config(1) wrapper for '._config_path($_[0]);
283         }, qw(config-file|system|global|file|f=s), # for conflict detection
284          qw(edit|e c=s@ C=s@), pass_through('git config') ],
285 'inspect' => [ 'ITEMS...|--stdin', 'inspect lei/store and/or local external',
286         qw(stdin| pretty ascii dir|d=s), @c_opt ],
287
288 'init' => [ '[DIRNAME]', sub {
289         "initialize storage, default: ".store_path($_[0]);
290         }, @c_opt ],
291 'daemon-kill' => [ '[-SIGNAL]', 'signal the lei-daemon',
292         # "-C DIR" conflicts with -CHLD, here, and chdir makes no sense, here
293         opt_dash('signal|s=s', '[0-9]+|(?:[A-Z][A-Z0-9]+)') ],
294 'daemon-pid' => [ '', 'show the PID of the lei-daemon' ],
295 'help' => [ '[SUBCOMMAND]', 'show help' ],
296
297 # TODO
298 #'reorder-local-store-and-break-history' => [ '[REFNAME]',
299 #       'rewrite git history in an attempt to improve compression',
300 #       qw(gc!), @c_opt ],
301 #'fuse-mount' => [ 'PATHNAME', 'expose lei/store as Maildir(s)', @c_opt ],
302 #
303 # internal commands are prefixed with '_'
304 '_complete' => [ '[...]', 'internal shell completion helper',
305                 pass_through('everything') ],
306 ); # @CMD
307
308 # switch descriptions, try to keep consistent across commands
309 # $spec: Getopt::Long option specification
310 # $spec => [@ALLOWED_VALUES (default is first), $description],
311 # $spec => $description
312 # "$SUB_COMMAND TAB $spec" => as above
313 my $stdin_formats = [ 'MAIL_FORMAT|eml|mboxrd|mboxcl2|mboxcl|mboxo',
314                         'specify message input format' ];
315 my $ls_format = [ 'OUT|plain|json|null', 'listing output format' ];
316
317 # we use \x{a0} (non-breaking SP) to avoid wrapping in PublicInbox::LeiHelp
318 my %OPTDESC = (
319 'help|h' => 'show this built-in help',
320 'c=s@' => [ 'NAME=VALUE', 'set config option' ],
321 'C=s@' => [ 'DIR', 'chdir to specify to directory' ],
322 'quiet|q' => 'be quiet',
323 'lock=s@' => [ 'METHOD|dotlock|fcntl|flock|none',
324         'mbox(5) locking method(s) to use (default: fcntl,dotlock)' ],
325
326 'incremental!   import' => 'import already seen IMAP and NNTP articles',
327 'globoff|g' => "do not match locations using '*?' wildcards ".
328                 "and\xa0'[]'\x{a0}ranges",
329 'invert-match|v' => 'select non-matching lines',
330 'color!' => 'disable color (for --format=text)',
331 'verbose|v+' => 'be more verbose',
332 'external!' => 'do not use externals',
333 'mail!' => 'do not look in mail storage for OID',
334 'cwd!' => 'do not look in git repo of current working directory',
335 'oid-a|A=s' => 'pre-image OID',
336 'path-a|a=s' => 'pre-image pathname associated with OID',
337 'path-b|b=s' => 'post-image pathname associated with OID',
338 'git-dir=s@' => 'additional git repository to scan',
339 'dir|d=s        inspect' =>
340         'specify a inboxdir, extindex topdir or Xapian shard',
341 'proxy=s' => [ 'PROTO://HOST[:PORT]', # shared with curl(1)
342         "proxy for (e.g. `socks5h://0:9050')" ],
343 'torsocks=s' => ['VAL|auto|no|yes',
344                 'whether or not to wrap git and curl commands with torsocks'],
345 'no-torsocks' => 'alias for --torsocks=no',
346 'save!' =>  "do not save a search for `lei up'",
347 'import-remote!' => 'do not memoize remote messages into local store',
348
349 'type=s' => [ 'any|mid|git', 'disambiguate type' ],
350
351 'dedupe|d=s' => ['STRATEGY|content|oid|mid|none',
352                 'deduplication strategy'],
353 'threads|t+' =>
354         'return all messages in the same threads as the actual match(es)',
355
356 'want|w=s@' => [ 'PREFIX|dfpost|dfn', # common ones in help...
357                 'search prefixes to extract (default: dfpost7)' ],
358 'uri    p2q' => [ 'URI escape output' ],
359
360 'alert=s@' => ['CMD,:WINCH,:bell,<any command>',
361         'run command(s) or perform ops when done writing to output ' .
362         '(default: ":WINCH,:bell" with --mua and Maildir/IMAP output, ' .
363         'nothing otherwise)' ],
364
365 'augment|a' => 'augment --output destination instead of clobbering',
366
367 'output|mfolder|o=s' => [ 'MFOLDER',
368         "destination (e.g.\xa0`/path/to/Maildir', ".
369         "or\xa0`-'\x{a0}for\x{a0}stdout)" ],
370 'mua=s' => [ 'CMD',
371         "MUA to run on --output Maildir or mbox (e.g.\xa0`mutt\xa0-f\xa0%f')" ],
372 'new-only       import' => 'only import new messages from IMAP source',
373
374 'inbox-version=i' => [ 'NUM|1|2',
375                 'force a public-inbox version with --mirror'],
376 'mirror=s' => [ 'URL', 'mirror a public-inbox'],
377
378 # public-inbox-index options
379 'fsync!' => 'speed up indexing after --mirror, risk index corruption',
380 'compact' => 'run compact index after mirroring',
381 'indexlevel|L=s' => [ 'LEVEL|full|medium|basic',
382         "indexlevel with --mirror (default: full)" ],
383 'max_size|max-size=s' => [ 'SIZE',
384         'do not index messages larger than SIZE (default: infinity)' ],
385 'batch_size|batch-size=s' => [ 'SIZE',
386         'flush changes to OS after given number of bytes (default: 1m)' ],
387 'sequential-shard' =>
388         'index Xapian shards sequentially for slow storage',
389 'skip-docdata' =>
390         'drop compatibility w/ public-inbox <1.6 to save ~1.5% space',
391
392 'format|f=s     q' => [
393         'OUT|maildir|mboxrd|mboxcl2|mboxcl|mboxo|html|json|jsonl|concatjson',
394                 'specify output format, default depends on --output'],
395 'exclude=s@     q' => [ 'LOCATION',
396                 'exclude specified external(s) from search' ],
397 'include|I=s@   q' => [ 'LOCATION',
398                 'include specified external(s) in search' ],
399 'only|O=s@      q' => [ 'LOCATION',
400                 'only use specified external(s) for search' ],
401 'jobs=s q' => [ '[SEARCH_JOBS][,WRITER_JOBS]',
402                 'control number of search and writer jobs' ],
403 'jobs|j=i       add-external' => 'set parallelism when indexing after --mirror',
404
405 'in-format|F=s' => $stdin_formats,
406 'format|f=s     ls-search' => ['OUT|json|jsonl|concatjson',
407                         'listing output format' ],
408 'l      ls-search' => 'long listing format',
409 'l      ls-watch' => 'long listing format',
410 'l      ls-mail-source' => 'long listing format',
411 'url    ls-mail-source' => 'show full URL of newsgroup or IMAP folder',
412 'format|f=s     ls-external' => $ls_format,
413
414 'prune:s        forget-search' =>
415         ['TYPE|local|remote', 'prune all, remote or local folders' ],
416
417 'limit|n=i@' => ['NUM', 'limit on number of matches (default: 10000)' ],
418 'offset=i' => ['OFF', 'search result offset (default: 0)'],
419
420 'sort|s=s' => [ 'VAL|received|relevance|docid',
421                 "order of results is `--output'-dependent"],
422 'reverse|r' => 'reverse search results', # like sort(1)
423
424 'boost=i' => 'increase/decrease priority of results (default: 0)',
425
426 'local' => 'limit operations to the local filesystem',
427 'local!' => 'exclude results from the local filesystem',
428 'remote' => 'limit operations to those requiring network access',
429 'remote!' => 'prevent operations requiring network access',
430
431 # up, refresh-mail-sync, export-kw
432 'all:s' => ['TYPE|local|remote', 'all remote or local folders' ],
433
434 'remote-fudge-time=s' => [ 'INTERVAL',
435         'look for mail INTERVAL older than the last successful query' ],
436
437 'mid=s' => 'specify the Message-ID of a message',
438 'oid=s' => 'specify the git object ID of a message',
439
440 'recursive|r' => 'scan directories/mailboxes/newsgroups recursively',
441 'exclude=s' => 'exclude mailboxes/newsgroups based on pattern',
442 'include=s' => 'include mailboxes/newsgroups based on pattern',
443
444 'exact' => 'operate on exact header matches only',
445 'exact!' => 'rely on content match instead of exact header matches',
446
447 'by-mid|mid:s' => [ 'MID', 'match only by Message-ID, ignoring contents' ],
448
449 'kw!' => 'disable/enable importing keywords (aka "flags")',
450
451 # xargs, env, use "-0", git(1) uses "-z".  We support z|0 everywhere
452 'z|0' => 'use NUL \\0 instead of newline (CR) to delimit lines',
453
454 'signal|s=s' => [ 'SIG', 'signal to send lei-daemon (default: TERM)' ],
455 ); # %OPTDESC
456
457 my %CONFIG_KEYS = (
458         'leistore.dir' => 'top-level storage location',
459 );
460
461 my @WQ_KEYS = qw(lxs l2m ikw pmd wq1 lne v2w); # internal workers
462
463 sub _drop_wq {
464         my ($self) = @_;
465         for my $wq (grep(defined, delete(@$self{@WQ_KEYS}))) {
466                 $wq->wq_kill('-TERM');
467                 $wq->DESTROY;
468         }
469 }
470
471 # pronounced "exit": x_it(1 << 8) => exit(1); x_it(13) => SIGPIPE
472 sub x_it ($$) {
473         my ($self, $code) = @_;
474         local $current_lei = $self;
475         # make sure client sees stdout before exit
476         $self->{1}->autoflush(1) if $self->{1};
477         stop_pager($self);
478         if ($self->{pkt_op_p}) { # worker => lei-daemon
479                 $self->{pkt_op_p}->pkt_do('x_it', $code);
480         } elsif ($self->{sock}) { # lei->daemon => lei(1) client
481                 send($self->{sock}, "x_it $code", MSG_EOR);
482         } elsif ($quit == \&CORE::exit) { # an admin (one-shot) command
483                 exit($code >> 8);
484         } # else ignore if client disconnected
485 }
486
487 sub err ($;@) {
488         my $self = shift;
489         my $err = $self->{2} // ($self->{pgr} // [])->[2] // *STDERR{GLOB};
490         my @eor = (substr($_[-1]//'', -1, 1) eq "\n" ? () : ("\n"));
491         print $err @_, @eor and return;
492         my $old_err = delete $self->{2};
493         close($old_err) if $! == EPIPE && $old_err;
494         $err = $self->{2} = ($self->{pgr} // [])->[2] // *STDERR{GLOB};
495         print $err @_, @eor or print STDERR @_, @eor;
496 }
497
498 sub qerr ($;@) { $_[0]->{opt}->{quiet} or err(shift, @_) }
499
500 sub qfin { # show message on finalization (LeiFinmsg)
501         my ($lei, $msg) = @_;
502         return if $lei->{opt}->{quiet};
503         $lei->{fmsg} ? push(@{$lei->{fmsg}}, "$msg\n") : qerr($lei, $msg);
504 }
505
506 sub fail_handler ($;$$) {
507         my ($lei, $code, $io) = @_;
508         local $current_lei = $lei;
509         close($io) if $io; # needed to avoid warnings on SIGPIPE
510         _drop_wq($lei);
511         x_it($lei, $code // (1 << 8));
512 }
513
514 sub sigpipe_handler { # handles SIGPIPE from @WQ_KEYS workers
515         fail_handler($_[0], 13, delete $_[0]->{1});
516 }
517
518 sub fail ($$;$) {
519         my ($self, $msg, $exit_code) = @_;
520         local $current_lei = $self;
521         $self->{failed}++;
522         warn(substr($msg, -1, 1) eq "\n" ? $msg : "$msg\n") if defined $msg;
523         $self->{pkt_op_p}->pkt_do('fail_handler') if $self->{pkt_op_p};
524         x_it($self, ($exit_code // 1) << 8);
525         undef;
526 }
527
528 sub out ($;@) {
529         my $self = shift;
530         return if print { $self->{1} // return } @_; # likely
531         return note_sigpipe($self, 1) if $! == EPIPE;
532         my $err = "error writing to output: $!";
533         delete $self->{1};
534         fail($self, $err);
535 }
536
537 sub puts ($;@) { out(shift, map { "$_\n" } @_) }
538
539 sub child_error { # passes non-fatal curl exit codes to user
540         my ($self, $child_error, $msg) = @_; # child_error is $?
541         local $current_lei = $self;
542         $child_error ||= 1 << 8;
543         warn(substr($msg, -1, 1) eq "\n" ? $msg : "$msg\n") if defined $msg;
544         if ($self->{pkt_op_p}) { # to top lei-daemon
545                 $self->{pkt_op_p}->pkt_do('child_error', $child_error);
546         } elsif ($self->{sock}) { # to lei(1) client
547                 send($self->{sock}, "child_error $child_error", MSG_EOR);
548         } else { # non-lei admin command
549                 $self->{child_error} ||= $child_error;
550         } # else noop if client disconnected
551 }
552
553 sub note_sigpipe { # triggers sigpipe_handler
554         my ($self, $fd) = @_;
555         close(delete($self->{$fd})); # explicit close silences Perl warning
556         $self->{pkt_op_p}->pkt_do('sigpipe_handler') if $self->{pkt_op_p};
557         x_it($self, 13);
558 }
559
560 sub _lei_atfork_child {
561         my ($self, $persist) = @_;
562         # we need to explicitly close things which are on stack
563         if ($persist) {
564                 open $self->{3}, '<', '/' or die "open(/) $!";
565                 fchdir($self);
566                 close($_) for (grep(defined, delete @$self{qw(0 1 2 sock)}));
567                 if (my $cfg = $self->{cfg}) {
568                         delete @$cfg{qw(-lei_store -watches -lei_note_event)};
569                 }
570         } else { # worker, Net::NNTP (Net::Cmd) uses STDERR directly
571                 open STDERR, '+>&='.fileno($self->{2}) or warn "open $!";
572                 STDERR->autoflush(1);
573                 POSIX::setpgid(0, $$) // die "setpgid(0, $$): $!";
574         }
575         close($_) for (grep(defined, delete @$self{qw(old_1 au_done)}));
576         delete $self->{-socks};
577         if (my $op_c = delete $self->{pkt_op_c}) {
578                 close(delete $op_c->{sock});
579         }
580         if (my $pgr = delete $self->{pgr}) {
581                 close($_) for (@$pgr[1,2]);
582         }
583         close $listener if $listener;
584         undef $listener;
585         $dir_idle->force_close if $dir_idle;
586         undef $dir_idle;
587         %PATH2CFG = ();
588         $MDIR2CFGPATH = {};
589         eval 'no warnings; undef $PublicInbox::LeiNoteEvent::to_flush';
590         undef $errors_log;
591         $quit = \&CORE::exit;
592         if (!$self->{-eml_noisy}) { # only "lei import" sets this atm
593                 my $cb = $SIG{__WARN__} // \&CORE::warn;
594                 $SIG{__WARN__} = sub {
595                         $cb->(@_) unless PublicInbox::Eml::warn_ignore(@_)
596                 };
597         }
598         $SIG{TERM} = sub { exit(128 + 15) };
599         $current_lei = $persist ? undef : $self; # for SIG{__WARN__}
600 }
601
602 sub _delete_pkt_op { # OnDestroy callback to prevent leaks on die
603         my ($self) = @_;
604         if (my $op = delete $self->{pkt_op_c}) { # in case of die
605                 $op->close; # PublicInbox::PktOp::close
606         }
607         my $pkt_op_p = delete($self->{pkt_op_p}) or return;
608         close $pkt_op_p->{op_p};
609 }
610
611 sub pkt_op_pair {
612         my ($self) = @_;
613         require PublicInbox::OnDestroy;
614         require PublicInbox::PktOp;
615         my $end = PublicInbox::OnDestroy->new($$, \&_delete_pkt_op, $self);
616         @$self{qw(pkt_op_c pkt_op_p)} = PublicInbox::PktOp->pair;
617         $end;
618 }
619
620 sub incr {
621         my ($self, $field, $nr) = @_;
622         $self->{counters}->{$field} += $nr;
623 }
624
625 sub pkt_ops {
626         my ($lei, $ops) = @_;
627         $ops->{fail_handler} = [ $lei ];
628         $ops->{sigpipe_handler} = [ $lei ];
629         $ops->{x_it} = [ $lei ];
630         $ops->{child_error} = [ $lei ];
631         $ops->{incr} = [ $lei ];
632         $ops;
633 }
634
635 sub workers_start {
636         my ($lei, $wq, $jobs, $ops, $flds) = @_;
637         $ops //= {};
638         ($wq->can('net_merge_all_done') && $lei->{auth}) and
639                 $lei->{auth}->op_merge($ops, $wq, $lei);
640         pkt_ops($lei, $ops);
641         $ops->{''} //= [ $wq->can('_lei_wq_eof') || \&wq_eof, $lei ];
642         my $end = $lei->pkt_op_pair;
643         my $ident = $wq->{-wq_ident} // "lei-$lei->{cmd} worker";
644         $flds->{lei} = $lei;
645         $wq->wq_workers_start($ident, $jobs, $lei->oldset, $flds);
646         delete $lei->{pkt_op_p};
647         my $op_c = delete $lei->{pkt_op_c};
648         @$end = ();
649         $lei->event_step_init;
650         $wq->wq_wait_async($wq->can('_wq_done_wait') // \&wq_done_wait, $lei);
651         ($op_c, $ops);
652 }
653
654 # call this when we're ready to wait on events and yield to other clients
655 sub wait_wq_events {
656         my ($lei, $op_c, $ops) = @_;
657         my $wq1 = $lei->{wq1};
658         ($wq1 && $wq1->can('net_merge_all_done') && !$lei->{auth}) and
659                 $wq1->net_merge_all_done;
660         for my $wq (grep(defined, @$lei{qw(ikw pmd)})) { # auxiliary WQs
661                 $wq->wq_close;
662         }
663         $op_c->{ops} = $ops;
664 }
665
666 sub wq1_start {
667         my ($lei, $wq, $jobs) = @_;
668         my ($op_c, $ops) = workers_start($lei, $wq, $jobs // 1);
669         $lei->{wq1} = $wq;
670         wait_wq_events($lei, $op_c, $ops); # net_merge_all_done if !{auth}
671 }
672
673 sub _help {
674         require PublicInbox::LeiHelp;
675         PublicInbox::LeiHelp::call($_[0], $_[1], \%CMD, \%OPTDESC);
676 }
677
678 sub optparse ($$$) {
679         my ($self, $cmd, $argv) = @_;
680         # allow _complete --help to complete, not show help
681         return 1 if substr($cmd, 0, 1) eq '_';
682         $self->{cmd} = $cmd;
683         $OPT = $self->{opt} //= {};
684         my $info = $CMD{$cmd} // [ '[...]' ];
685         my ($proto, undef, @spec) = @$info;
686         my $glp = ref($spec[-1]) eq ref($GLP) ? pop(@spec) : $GLP;
687         push @spec, qw(help|h);
688         my $lone_dash;
689         if ($spec[0] =~ s/\|\z//s) { # "stdin|" or "clear|" allows "-" alias
690                 $lone_dash = $spec[0];
691                 $OPT->{$spec[0]} = \(my $var);
692                 push @spec, '' => \$var;
693         }
694         $glp->getoptionsfromarray($argv, $OPT, @spec) or
695                 return _help($self, "bad arguments or options for $cmd");
696         return _help($self) if $OPT->{help};
697
698         push @$argv, @{$OPT->{-argv}} if defined($OPT->{-argv});
699
700         # "-" aliases "stdin" or "clear"
701         $OPT->{$lone_dash} = ${$OPT->{$lone_dash}} if defined $lone_dash;
702
703         my $i = 0;
704         my $POS_ARG = '[A-Z][A-Z0-9_]+';
705         my ($err, $inf);
706         my @args = split(/ /, $proto);
707         for my $var (@args) {
708                 if ($var =~ /\A$POS_ARG\.\.\.\z/o) { # >= 1 args;
709                         $inf = defined($argv->[$i]) and last;
710                         $var =~ s/\.\.\.\z//;
711                         $err = "$var not supplied";
712                 } elsif ($var =~ /\A$POS_ARG\z/o) { # required arg at $i
713                         $argv->[$i++] // ($err = "$var not supplied");
714                 } elsif ($var =~ /\.\.\.\]\z/) { # optional args start
715                         $inf = 1;
716                         last;
717                 } elsif ($var =~ /\A\[-?$POS_ARG\]\z/) { # one optional arg
718                         $i++;
719                 } elsif ($var =~ /\A.+?\|/) { # required FOO|--stdin
720                         $inf = 1 if index($var, '...') > 0;
721                         my @or = split(/\|/, $var);
722                         my $ok;
723                         for my $o (@or) {
724                                 if ($o =~ /\A--([a-z0-9\-]+)/) {
725                                         my $sw = $1;
726                                         # assume pipe/regular file on stdin
727                                         # w/o args means stdin
728                                         if ($sw eq 'stdin' && !@$argv &&
729                                                         (-p $self->{0} ||
730                                                          -f _) && -r _) {
731                                                 $OPT->{stdin} //= 1;
732                                         }
733                                         $ok = defined($OPT->{$sw});
734                                         last if $ok;
735                                 } elsif (defined($argv->[$i])) {
736                                         $ok = 1;
737                                         $i++;
738                                         last;
739                                 } # else continue looping
740                         }
741                         last if $ok;
742                         my $last = pop @or;
743                         $err = join(', ', @or) . " or $last must be set";
744                 } else {
745                         warn "BUG: can't parse `$var' in $proto";
746                 }
747                 last if $err;
748         }
749         if (!$inf && scalar(@$argv) > scalar(@args)) {
750                 $err //= 'too many arguments';
751         }
752         $err ? fail($self, "usage: lei $cmd $proto\nE: $err") : 1;
753 }
754
755 sub _tmp_cfg { # for lei -c <name>=<value> ...
756         my ($self) = @_;
757         my $cfg = _lei_cfg($self, 1);
758         require File::Temp;
759         my $ft = File::Temp->new(TEMPLATE => 'lei_cfg-XXXX', TMPDIR => 1);
760         my $tmp = { '-f' => $ft->filename, -tmp => $ft };
761         $ft->autoflush(1);
762         print $ft <<EOM or return fail($self, "$tmp->{-f}: $!");
763 [include]
764         path = $cfg->{-f}
765 EOM
766         $tmp = $self->{cfg} = bless { %$cfg, %$tmp }, ref($cfg);
767         for (@{$self->{opt}->{c}}) {
768                 /\A([^=\.]+\.[^=]+)(?:=(.*))?\z/ or return fail($self, <<EOM);
769 `-c $_' is not of the form -c <name>=<value>'
770 EOM
771                 my $name = $1;
772                 my $value = $2 // 1;
773                 _config($self, '--add', $name, $value);
774                 if (defined(my $v = $tmp->{$name})) {
775                         if (ref($v) eq 'ARRAY') {
776                                 push @$v, $value;
777                         } else {
778                                 $tmp->{$name} = [ $v, $value ];
779                         }
780                 } else {
781                         $tmp->{$name} = $value;
782                 }
783         }
784 }
785
786 sub lazy_cb ($$$) {
787         my ($self, $cmd, $pfx) = @_;
788         my $ucmd = $cmd;
789         $ucmd =~ tr/-/_/;
790         my $cb;
791         $cb = $self->can($pfx.$ucmd) and return $cb;
792         my $base = $ucmd;
793         $base =~ s/_([a-z])/\u$1/g;
794         my $pkg = "PublicInbox::Lei\u$base";
795         ($INC{"PublicInbox/Lei\u$base.pm"} // eval("require $pkg")) ?
796                 $pkg->can($pfx.$ucmd) : undef;
797 }
798
799 sub dispatch {
800         my ($self, $cmd, @argv) = @_;
801         fchdir($self);
802         local %ENV = %{$self->{env}};
803         local $current_lei = $self; # for __WARN__
804         $self->{2}->autoflush(1); # keep stdout buffered until x_it|DESTROY
805         return _help($self, 'no command given') unless defined($cmd);
806         # do not support Getopt bundling for this
807         while ($cmd eq '-C' || $cmd eq '-c') {
808                 my $v = shift(@argv) // return fail($self, $cmd eq '-C' ?
809                                         '-C DIRECTORY' : '-c <name>=<value>');
810                 push @{$self->{opt}->{substr($cmd, 1, 1)}}, $v;
811                 $cmd = shift(@argv) // return _help($self, 'no command given');
812         }
813         if (my $cb = lazy_cb(__PACKAGE__, $cmd, 'lei_')) {
814                 optparse($self, $cmd, \@argv) or return;
815                 $self->{opt}->{c} and (_tmp_cfg($self) // return);
816                 if (my $chdir = $self->{opt}->{C}) {
817                         for my $d (@$chdir) {
818                                 next if $d eq ''; # same as git(1)
819                                 chdir $d or return fail($self, "cd $d: $!");
820                         }
821                         open $self->{3}, '<', '.' or
822                                 return fail($self, "open . $!");
823                 }
824                 $cb->($self, @argv);
825         } elsif (grep(/\A-/, $cmd, @argv)) { # --help or -h only
826                 $GLP->getoptionsfromarray([$cmd, @argv], {}, qw(help|h C=s@))
827                         or return _help($self, 'bad arguments or options');
828                 _help($self);
829         } else {
830                 fail($self, "`$cmd' is not an lei command");
831         }
832 }
833
834 sub _lei_cfg ($;$) {
835         my ($self, $creat) = @_;
836         return $self->{cfg} if $self->{cfg};
837         my $f = _config_path($self);
838         my @st = stat($f);
839         my $cur_st = @st ? pack('dd', $st[10], $st[7]) : ''; # 10:ctime, 7:size
840         my ($sto, $sto_dir, $watches, $lne);
841         if (my $cfg = $PATH2CFG{$f}) { # reuse existing object in common case
842                 return ($self->{cfg} = $cfg) if $cur_st eq $cfg->{-st};
843                 ($sto, $sto_dir, $watches, $lne) =
844                                 @$cfg{qw(-lei_store leistore.dir -watches
845                                         -lei_note_event)};
846         }
847         if (!@st) {
848                 unless ($creat) {
849                         delete $self->{cfg};
850                         return bless {}, 'PublicInbox::Config';
851                 }
852                 my ($cfg_dir) = ($f =~ m!(.*?/)[^/]+\z!);
853                 -d $cfg_dir or mkpath($cfg_dir) or die "mkpath($cfg_dir): $!\n";
854                 open my $fh, '>>', $f or die "open($f): $!\n";
855                 @st = stat($fh) or die "fstat($f): $!\n";
856                 $cur_st = pack('dd', $st[10], $st[7]);
857                 qerr($self, "# $f created") if $self->{cmd} ne 'config';
858         }
859         my $cfg = PublicInbox::Config->git_config_dump($f, $self->{2});
860         $cfg->{-st} = $cur_st;
861         $cfg->{'-f'} = $f;
862         if ($sto && canonpath_harder($sto_dir // store_path($self))
863                         eq canonpath_harder($cfg->{'leistore.dir'} //
864                                                 store_path($self))) {
865                 $cfg->{-lei_store} = $sto;
866                 $cfg->{-lei_note_event} = $lne;
867                 $cfg->{-watches} = $watches if $watches;
868         }
869         if (scalar(keys %PATH2CFG) > 5) {
870                 # FIXME: use inotify/EVFILT_VNODE to detect unlinked configs
871                 delete(@PATH2CFG{grep(!-f, keys %PATH2CFG)});
872         }
873         $self->{cfg} = $PATH2CFG{$f} = $cfg;
874         refresh_watches($self);
875         $cfg;
876 }
877
878 sub _lei_store ($;$) {
879         my ($self, $creat) = @_;
880         my $cfg = _lei_cfg($self, $creat) // return;
881         $cfg->{-lei_store} //= do {
882                 require PublicInbox::LeiStore;
883                 my $dir = $cfg->{'leistore.dir'} // store_path($self);
884                 return unless $creat || -d $dir;
885                 PublicInbox::LeiStore->new($dir, { creat => $creat });
886         };
887 }
888
889 sub _config {
890         my ($self, @argv) = @_;
891         my %env = (%{$self->{env}}, GIT_CONFIG => undef);
892         my $cfg = _lei_cfg($self, 1);
893         my $cmd = [ qw(git config -f), $cfg->{'-f'}, @argv ];
894         my %rdr = map { $_ => $self->{$_} } (0..2);
895         waitpid(spawn($cmd, \%env, \%rdr), 0);
896 }
897
898 sub lei_daemon_pid { puts shift, $$ }
899
900 sub lei_daemon_kill {
901         my ($self) = @_;
902         my $sig = $self->{opt}->{signal} // 'TERM';
903         kill($sig, $$) or fail($self, "kill($sig, $$): $!");
904 }
905
906 # Shell completion helper.  Used by lei-completion.bash and hopefully
907 # other shells.  Try to do as much here as possible to avoid redundancy
908 # and improve maintainability.
909 sub lei__complete {
910         my ($self, @argv) = @_; # argv = qw(lei and any other args...)
911         shift @argv; # ignore "lei", the entire command is sent
912         @argv or return puts $self, grep(!/^_/, keys %CMD), qw(--help -h -C);
913         my $cmd = shift @argv;
914         my $info = $CMD{$cmd} // do { # filter matching commands
915                 @argv or puts $self, grep(/\A\Q$cmd\E/, keys %CMD);
916                 return;
917         };
918         my ($proto, undef, @spec) = @$info;
919         my $cur = pop @argv;
920         my $re = defined($cur) ? qr/\A\Q$cur\E/ : qr/./;
921         if (substr(my $_cur = $cur // '-', 0, 1) eq '-') { # --switches
922                 # gross special case since the only git-config options
923                 # Consider moving to a table if we need more special cases
924                 # we use Getopt::Long for are the ones we reject, so these
925                 # are the ones we don't reject:
926                 if ($cmd eq 'config') {
927                         puts $self, grep(/$re/, keys %CONFIG_KEYS);
928                         @spec = qw(add z|null get get-all unset unset-all
929                                 replace-all get-urlmatch
930                                 remove-section rename-section
931                                 name-only list|l edit|e
932                                 get-color-name get-colorbool);
933                         # fall-through
934                 }
935                 # generate short/long names from Getopt::Long specs
936                 puts $self, grep(/$re/, qw(--help -h -C), map {
937                         if (s/[:=].+\z//) { # req/optional args, e.g output|o=i
938                         } elsif (s/\+\z//) { # verbose|v+
939                         } elsif (s/!\z//) {
940                                 # negation: mail! => no-mail|mail
941                                 s/([\w\-]+)/$1|no-$1/g
942                         }
943                         map {
944                                 my $x = length > 1 ? "--$_" : "-$_";
945                                 $x eq $_cur ? () : $x;
946                         } grep(!/_/, split(/\|/, $_, -1)) # help|h
947                 } grep { $OPTDESC{"$_\t$cmd"} || $OPTDESC{$_} } @spec);
948         } elsif ($cmd eq 'config' && !@argv && !$CONFIG_KEYS{$cur}) {
949                 puts $self, grep(/$re/, keys %CONFIG_KEYS);
950         }
951
952         # switch args (e.g. lei q -f mbox<TAB>)
953         if (($argv[-1] // $cur // '') =~ /\A--?([\w\-]+)\z/) {
954                 my $opt = quotemeta $1;
955                 puts $self, map {
956                         my $v = $OPTDESC{$_};
957                         my @v = ref($v) ? split(/\|/, $v->[0]) : ();
958                         # get rid of ALL CAPS placeholder (e.g "OUT")
959                         # (TODO: completion for external paths)
960                         shift(@v) if scalar(@v) && uc($v[0]) eq $v[0];
961                         @v;
962                 } grep(/\A(?:[\w-]+\|)*$opt\b.*?(?:\t$cmd)?\z/, keys %OPTDESC);
963         }
964         if (my $cb = lazy_cb($self, $cmd, '_complete_')) {
965                 puts $self, $cb->($self, @argv, $cur ? ($cur) : ());
966         }
967         # TODO: URLs, pathnames, OIDs, MIDs, etc...  See optparse() for
968         # proto parsing.
969 }
970
971 sub exec_buf ($$) {
972         my ($argv, $env) = @_;
973         my $argc = scalar @$argv;
974         my $buf = 'exec '.join("\0", scalar(@$argv), @$argv);
975         while (my ($k, $v) = each %$env) { $buf .= "\0$k=$v" };
976         $buf;
977 }
978
979 sub start_mua {
980         my ($self) = @_;
981         if ($self->{ovv}->{fmt} =~ /\A(?:maildir)\z/) { # TODO: IMAP
982                 refresh_watches($self);
983         }
984         my $mua = $self->{opt}->{mua} // return;
985         my $mfolder = $self->{ovv}->{dst};
986         my (@cmd, $replaced);
987         if ($mua =~ /\A(?:mutt|mailx|mail|neomutt)\z/) {
988                 @cmd = ($mua, '-f');
989         # TODO: help wanted: other common FOSS MUAs
990         } else {
991                 require Text::ParseWords;
992                 @cmd = Text::ParseWords::shellwords($mua);
993                 # mutt uses '%f' for open-hook with compressed mbox, we follow
994                 @cmd = map { $_ eq '%f' ? ($replaced = $mfolder) : $_ } @cmd;
995         }
996         push @cmd, $mfolder unless defined($replaced);
997         if ($self->{sock}) { # lei(1) client process runs it
998                 # restore terminal: echo $query | lei q --stdin --mua=...
999                 my $io = [];
1000                 $io->[0] = $self->{1} if $self->{opt}->{stdin} && -t $self->{1};
1001                 send_exec_cmd($self, $io, \@cmd, {});
1002         }
1003         if ($self->{lxs} && $self->{au_done}) { # kick wait_startq
1004                 syswrite($self->{au_done}, 'q' x ($self->{lxs}->{jobs} // 0));
1005         }
1006         return unless -t $self->{2}; # XXX how to determine non-TUI MUAs?
1007         $self->{opt}->{quiet} = 1;
1008         delete $self->{-progress};
1009         delete $self->{opt}->{verbose};
1010 }
1011
1012 sub send_exec_cmd { # tell script/lei to execute a command
1013         my ($self, $io, $cmd, $env) = @_;
1014         my $sock = $self->{sock} // die 'lei client gone';
1015         my $fds = [ map { fileno($_) } @$io ];
1016         $send_cmd->($sock, $fds, exec_buf($cmd, $env), MSG_EOR);
1017 }
1018
1019 sub poke_mua { # forces terminal MUAs to wake up and hopefully notice new mail
1020         my ($self) = @_;
1021         my $alerts = $self->{opt}->{alert} // return;
1022         my $sock = $self->{sock};
1023         while (my $op = shift(@$alerts)) {
1024                 if ($op eq ':WINCH') {
1025                         # hit the process group that started the MUA
1026                         send($sock, '-WINCH', MSG_EOR) if $sock;
1027                 } elsif ($op eq ':bell') {
1028                         out($self, "\a");
1029                 } elsif ($op =~ /(?<!\\),/) { # bare ',' (not ',,')
1030                         push @$alerts, split(/(?<!\\),/, $op);
1031                 } elsif ($op =~ m!\A([/a-z0-9A-Z].+)!) {
1032                         my $cmd = $1; # run an arbitrary command
1033                         require Text::ParseWords;
1034                         $cmd = [ Text::ParseWords::shellwords($cmd) ];
1035                         send($sock, exec_buf($cmd, {}), MSG_EOR) if $sock;
1036                 } else {
1037                         warn("W: unsupported --alert=$op\n"); # non-fatal
1038                 }
1039         }
1040 }
1041
1042 my %path_to_fd = ('/dev/stdin' => 0, '/dev/stdout' => 1, '/dev/stderr' => 2);
1043 $path_to_fd{"/dev/fd/$_"} = $_ for (0..2);
1044
1045 # this also normalizes the path
1046 sub path_to_fd {
1047         my ($self, $path) = @_;
1048         $path = rel2abs($self, $path);
1049         $path =~ tr!/!/!s;
1050         $path_to_fd{$path} // (
1051                 ($path =~ m!\A/(?:dev|proc/self)/fd/[0-9]+\z!) ?
1052                         fail($self, "cannot open $path from daemon") : -1
1053         );
1054 }
1055
1056 # caller needs to "-t $self->{1}" to check if tty
1057 sub start_pager {
1058         my ($self, $new_env) = @_;
1059         my $fh = popen_rd([qw(git var GIT_PAGER)]);
1060         chomp(my $pager = <$fh> // '');
1061         close($fh) or warn "`git var PAGER' error: \$?=$?";
1062         return if $pager eq 'cat' || $pager eq '';
1063         $new_env //= {};
1064         $new_env->{LESS} //= 'FRX';
1065         $new_env->{LV} //= '-c';
1066         $new_env->{MORE} = $new_env->{LESS} if $^O eq 'freebsd';
1067         pipe(my ($r, $wpager)) or return warn "pipe: $!";
1068         my $rdr = { 0 => $r, 1 => $self->{1}, 2 => $self->{2} };
1069         my $pgr = [ undef, @$rdr{1, 2} ];
1070         my $env = $self->{env};
1071         if ($self->{sock}) { # lei(1) process runs it
1072                 delete @$new_env{keys %$env}; # only set iff unset
1073                 send_exec_cmd($self, [ @$rdr{0..2} ], [$pager], $new_env);
1074         } else {
1075                 die 'BUG: start_pager w/o socket';
1076         }
1077         $self->{1} = $wpager;
1078         $self->{2} = $wpager if -t $self->{2};
1079         $env->{GIT_PAGER_IN_USE} = 'true'; # we may spawn git
1080         $self->{pgr} = $pgr;
1081 }
1082
1083 # display a message for user before spawning full-screen $VISUAL
1084 sub pgr_err {
1085         my ($self, @msg) = @_;
1086         return warn(@msg) unless $self->{sock} && -t $self->{2};
1087         start_pager($self, { LESS => 'RX' }); # no 'F' so we prompt
1088         print { $self->{2} } @msg;
1089         $self->{2}->autoflush(1);
1090         stop_pager($self);
1091         send($self->{sock}, 'wait', MSG_EOR); # wait for user to quit pager
1092 }
1093
1094 sub stop_pager {
1095         my ($self) = @_;
1096         my $pgr = delete($self->{pgr}) or return;
1097         $self->{2} = $pgr->[2];
1098         close(delete($self->{1})) if $self->{1};
1099         $self->{1} = $pgr->[1];
1100 }
1101
1102 sub accept_dispatch { # Listener {post_accept} callback
1103         my ($sock) = @_; # ignore other
1104         $sock->autoflush(1);
1105         my $self = bless { sock => $sock }, __PACKAGE__;
1106         vec(my $rvec = '', fileno($sock), 1) = 1;
1107         select($rvec, undef, undef, 60) or
1108                 return send($sock, 'timed out waiting to recv FDs', MSG_EOR);
1109         # (4096 * 33) >MAX_ARG_STRLEN
1110         my @fds = $recv_cmd->($sock, my $buf, 4096 * 33) or return; # EOF
1111         if (!defined($fds[0])) {
1112                 warn(my $msg = "recv_cmd failed: $!");
1113                 return send($sock, $msg, MSG_EOR);
1114         } else {
1115                 my $i = 0;
1116                 for my $fd (@fds) {
1117                         open($self->{$i++}, '+<&=', $fd) and next;
1118                         send($sock, "open(+<&=$fd) (FD=$i): $!", MSG_EOR);
1119                 }
1120                 $i == 4 or return send($sock, 'not enough FDs='.($i-1), MSG_EOR)
1121         }
1122         # $ENV_STR = join('', map { "\0$_=$ENV{$_}" } keys %ENV);
1123         # $buf = "$argc\0".join("\0", @ARGV).$ENV_STR."\0\0";
1124         substr($buf, -2, 2, '') eq "\0\0" or  # s/\0\0\z//
1125                 return send($sock, 'request command truncated', MSG_EOR);
1126         my ($argc, @argv) = split(/\0/, $buf, -1);
1127         undef $buf;
1128         my %env = map { split(/=/, $_, 2) } splice(@argv, $argc);
1129         $self->{env} = \%env;
1130         eval { dispatch($self, @argv) };
1131         $self->fail($@) if $@;
1132 }
1133
1134 sub dclose {
1135         my ($self) = @_;
1136         local $current_lei = $self;
1137         delete $self->{-progress};
1138         _drop_wq($self) if $self->{failed};
1139         $self->close if $self->{-event_init_done}; # PublicInbox::DS::close
1140 }
1141
1142 # for long-running results
1143 sub event_step {
1144         my ($self) = @_;
1145         local %ENV = %{$self->{env}};
1146         local $current_lei = $self;
1147         eval {
1148                 my @fds = $recv_cmd->($self->{sock} // return, my $buf, 4096);
1149                 if (scalar(@fds) == 1 && !defined($fds[0])) {
1150                         return if $! == EAGAIN;
1151                         die "recvmsg: $!" if $! != ECONNRESET;
1152                         @fds = (); # for open loop below:
1153                 }
1154                 for (@fds) { open my $rfh, '+<&=', $_ }
1155                 if ($buf eq '') {
1156                         _drop_wq($self); # EOF, client disconnected
1157                         dclose($self);
1158                         $buf = 'TERM';
1159                 }
1160                 if ($buf =~ /\A(?:STOP|CONT|TERM)\z/) {
1161                         my $sig = "-$buf";
1162                         for my $wq (grep(defined, @$self{@WQ_KEYS})) {
1163                                 $wq->wq_kill($sig);
1164                         }
1165                 } else {
1166                         die "unrecognized client signal: $buf";
1167                 }
1168                 my $s = $self->{-socks} // []; # lei up --all
1169                 @$s = grep { send($_, $buf, MSG_EOR) } @$s;
1170         };
1171         if (my $err = $@) {
1172                 eval { $self->fail($err) };
1173                 dclose($self);
1174         }
1175 }
1176
1177 sub event_step_init {
1178         my ($self) = @_;
1179         my $sock = $self->{sock} or return;
1180         $self->{-event_init_done} // do { # persist til $ops done
1181                 $sock->blocking(0);
1182                 $self->SUPER::new($sock, EPOLLIN);
1183                 $self->{-event_init_done} = $sock;
1184         };
1185 }
1186
1187 sub noop {}
1188
1189 sub oldset { $oldset }
1190
1191 sub dump_and_clear_log {
1192         if (defined($errors_log) && -s STDIN && seek(STDIN, 0, SEEK_SET)) {
1193                 openlog('lei-daemon', 'pid,nowait,nofatal,ndelay', 'user');
1194                 chomp(my @lines = <STDIN>);
1195                 truncate(STDIN, 0) or
1196                         syslog('warning', "ftruncate (%s): %m", $errors_log);
1197                 for my $l (@lines) { syslog('warning', '%s', $l) }
1198                 closelog(); # don't share across fork
1199         }
1200 }
1201
1202 sub cfg2lei ($) {
1203         my ($cfg) = @_;
1204         my $lei = bless { env => { %{$cfg->{-env}} } }, __PACKAGE__;
1205         open($lei->{0}, '<&', \*STDIN) or die "dup 0: $!";
1206         open($lei->{1}, '>>&', \*STDOUT) or die "dup 1: $!";
1207         open($lei->{2}, '>>&', \*STDERR) or die "dup 2: $!";
1208         open($lei->{3}, '<', '/') or die "open /: $!";
1209         my ($x, $y);
1210         socketpair($x, $y, AF_UNIX, SOCK_SEQPACKET, 0) or die "socketpair: $!";
1211         $lei->{sock} = $x;
1212         require PublicInbox::LeiSelfSocket;
1213         PublicInbox::LeiSelfSocket->new($y); # adds to event loop
1214         $lei;
1215 }
1216
1217 sub dir_idle_handler ($) { # PublicInbox::DirIdle callback
1218         my ($ev) = @_; # Linux::Inotify2::Event or duck type
1219         my $fn = $ev->fullname;
1220         if ($fn =~ m!\A(.+)/(new|cur)/([^/]+)\z!) { # Maildir file
1221                 my ($mdir, $nc, $bn) = ($1, $2, $3);
1222                 $nc = '' if $ev->IN_DELETE || $ev->IN_MOVED_FROM;
1223                 for my $f (keys %{$MDIR2CFGPATH->{$mdir} // {}}) {
1224                         my $cfg = $PATH2CFG{$f} // next;
1225                         eval {
1226                                 my $lei = cfg2lei($cfg);
1227                                 $lei->dispatch('note-event',
1228                                                 "maildir:$mdir", $nc, $bn, $fn);
1229                         };
1230                         warn "E: note-event $f: $@\n" if $@;
1231                 }
1232         }
1233         if ($ev->can('cancel') && ($ev->IN_IGNORE || $ev->IN_UNMOUNT)) {
1234                 $ev->cancel;
1235         }
1236         if ($fn =~ m!\A(.+)/(?:new|cur)\z! && !-e $fn) {
1237                 delete $MDIR2CFGPATH->{$1};
1238         }
1239         if (!-e $fn) { # config file or Maildir gone
1240                 for my $cfgpaths (values %$MDIR2CFGPATH) {
1241                         delete $cfgpaths->{$fn};
1242                 }
1243                 delete $PATH2CFG{$fn};
1244         }
1245 }
1246
1247 # lei(1) calls this when it can't connect
1248 sub lazy_start {
1249         my ($path, $errno, $narg) = @_;
1250         local ($errors_log, $listener);
1251         my ($sock_dir) = ($path =~ m!\A(.+?)/[^/]+\z!);
1252         $errors_log = "$sock_dir/errors.log";
1253         my $addr = pack_sockaddr_un($path);
1254         my $lk = bless { lock_path => $errors_log }, 'PublicInbox::Lock';
1255         umask(077) // die("umask(077): $!");
1256         $lk->lock_acquire;
1257         socket($listener, AF_UNIX, SOCK_SEQPACKET, 0) or die "socket: $!";
1258         if ($errno == ECONNREFUSED || $errno == ENOENT) {
1259                 return if connect($listener, $addr); # another process won
1260                 if ($errno == ECONNREFUSED && -S $path) {
1261                         unlink($path) or die "unlink($path): $!";
1262                 }
1263         } else {
1264                 $! = $errno; # allow interpolation to stringify in die
1265                 die "connect($path): $!";
1266         }
1267         bind($listener, $addr) or die "bind($path): $!";
1268         $lk->lock_release;
1269         undef $lk;
1270         my @st = stat($path) or die "stat($path): $!";
1271         my $dev_ino_expect = pack('dd', $st[0], $st[1]); # dev+ino
1272         local $oldset = PublicInbox::DS::block_signals();
1273         if ($narg == 5) {
1274                 $send_cmd = PublicInbox::Spawn->can('send_cmd4');
1275                 $recv_cmd = PublicInbox::Spawn->can('recv_cmd4') // do {
1276                         require PublicInbox::CmdIPC4;
1277                         $send_cmd = PublicInbox::CmdIPC4->can('send_cmd4');
1278                         PublicInbox::CmdIPC4->can('recv_cmd4');
1279                 };
1280         }
1281         $recv_cmd or die <<"";
1282 (Socket::MsgHdr || Inline::C) missing/unconfigured (narg=$narg);
1283
1284         require PublicInbox::Listener;
1285         require PublicInbox::PktOp;
1286         (-p STDOUT) or die "E: stdout must be a pipe\n";
1287         open(STDIN, '+>>', $errors_log) or die "open($errors_log): $!";
1288         STDIN->autoflush(1);
1289         dump_and_clear_log();
1290         POSIX::setsid() > 0 or die "setsid: $!";
1291         my $pid = fork // die "fork: $!";
1292         return if $pid;
1293         $0 = "lei-daemon $path";
1294         local %PATH2CFG;
1295         local $MDIR2CFGPATH;
1296         $listener->blocking(0);
1297         my $exit_code;
1298         my $pil = PublicInbox::Listener->new($listener, \&accept_dispatch);
1299         local $quit = do {
1300                 my (undef, $eof_p) = PublicInbox::PktOp->pair;
1301                 sub {
1302                         $exit_code //= shift;
1303                         eval 'PublicInbox::LeiNoteEvent::flush_task()';
1304                         my $lis = $pil or exit($exit_code);
1305                         # closing eof_p triggers \&noop wakeup
1306                         $listener = $eof_p = $pil = $path = undef;
1307                         $lis->close; # DS::close
1308                         PublicInbox::DS->SetLoopTimeout(1000);
1309                 };
1310         };
1311         my $sig = {
1312                 CHLD => \&PublicInbox::DS::enqueue_reap,
1313                 QUIT => $quit,
1314                 INT => $quit,
1315                 TERM => $quit,
1316                 HUP => \&noop,
1317                 USR1 => \&noop,
1318                 USR2 => \&noop,
1319         };
1320         require PublicInbox::DirIdle;
1321         local $dir_idle = PublicInbox::DirIdle->new(sub {
1322                 # just rely on wakeup to hit PostLoopCallback set below
1323                 dir_idle_handler($_[0]) if $_[0]->fullname ne $path;
1324         });
1325         $dir_idle->add_watches([$sock_dir]);
1326         PublicInbox::DS->SetPostLoopCallback(sub {
1327                 my ($dmap, undef) = @_;
1328                 if (@st = defined($path) ? stat($path) : ()) {
1329                         if ($dev_ino_expect ne pack('dd', $st[0], $st[1])) {
1330                                 warn "$path dev/ino changed, quitting\n";
1331                                 $path = undef;
1332                         }
1333                 } elsif (defined($path)) { # ENOENT is common
1334                         warn "stat($path): $!, quitting ...\n" if $! != ENOENT;
1335                         undef $path;
1336                         $quit->();
1337                 }
1338                 return 1 if defined($path);
1339                 my $n = 0;
1340                 for my $s (values %$dmap) {
1341                         $s->can('busy') or next;
1342                         if ($s->busy) {
1343                                 ++$n;
1344                         } else {
1345                                 $s->close;
1346                         }
1347                 }
1348                 $n; # true: continue, false: stop
1349         });
1350
1351         # STDIN was redirected to /dev/null above, closing STDERR and
1352         # STDOUT will cause the calling `lei' client process to finish
1353         # reading the <$daemon> pipe.
1354         local $SIG{__WARN__} = sub {
1355                 $current_lei ? err($current_lei, @_) : warn(
1356                   strftime('%Y-%m-%dT%H:%M:%SZ', gmtime(time))," $$ ", @_);
1357         };
1358         open STDERR, '>&STDIN' or die "redirect stderr failed: $!";
1359         open STDOUT, '>&STDIN' or die "redirect stdout failed: $!";
1360         # $daemon pipe to `lei' closed, main loop begins:
1361         eval { PublicInbox::DS::event_loop($sig, $oldset) };
1362         warn "event loop error: $@\n" if $@;
1363         # exit() may trigger waitpid via various DESTROY, ensure interruptible
1364         PublicInbox::DS::sig_setmask($oldset);
1365         dump_and_clear_log();
1366         exit($exit_code // 0);
1367 }
1368
1369 sub busy { 1 } # prevent daemon-shutdown if client is connected
1370
1371 # ensures stdout hits the FS before sock disconnects so a client
1372 # can immediately reread it
1373 sub DESTROY {
1374         my ($self) = @_;
1375         if (my $counters = delete $self->{counters}) {
1376                 for my $k (sort keys %$counters) {
1377                         my $nr = $counters->{$k};
1378                         $self->child_error(0, "$nr $k messages");
1379                 }
1380         }
1381         $self->{1}->autoflush(1) if $self->{1};
1382         stop_pager($self);
1383         dump_and_clear_log();
1384         # preserve $? for ->fail or ->x_it code
1385 }
1386
1387 sub wq_done_wait { # dwaitpid callback
1388         my ($arg, $pid) = @_;
1389         my ($wq, $lei) = @$arg;
1390         local $current_lei = $lei;
1391         my $err_type = $lei->{-err_type};
1392         $? and $lei->child_error($?,
1393                         $err_type ? "$err_type errors during $lei->{cmd}" : ());
1394         $lei->dclose;
1395 }
1396
1397 sub fchdir {
1398         my ($lei) = @_;
1399         my $dh = $lei->{3} // die 'BUG: lei->{3} (CWD) gone';
1400         chdir($dh) || die "fchdir: $!";
1401 }
1402
1403 sub wq_eof { # EOF callback for main daemon
1404         my ($lei) = @_;
1405         local $current_lei = $lei;
1406         delete $lei->{wq1} // return $lei->fail; # already failed
1407 }
1408
1409 sub watch_state_ok ($) {
1410         my ($state) = $_[-1]; # $_[0] may be $self
1411         $state =~ /\Apause|(?:import|index|tag)-(?:ro|rw)\z/;
1412 }
1413
1414 sub cancel_maildir_watch ($$) {
1415         my ($d, $cfg_f) = @_;
1416         my $w = delete $MDIR2CFGPATH->{$d}->{$cfg_f};
1417         scalar(keys %{$MDIR2CFGPATH->{$d}}) or
1418                 delete $MDIR2CFGPATH->{$d};
1419         for my $x (@{$w // []}) { $x->cancel }
1420 }
1421
1422 sub add_maildir_watch ($$) {
1423         my ($d, $cfg_f) = @_;
1424         if (!exists($MDIR2CFGPATH->{$d}->{$cfg_f})) {
1425                 my @w = $dir_idle->add_watches(["$d/cur", "$d/new"], 1);
1426                 push @{$MDIR2CFGPATH->{$d}->{$cfg_f}}, @w if @w;
1427         }
1428 }
1429
1430 sub refresh_watches {
1431         my ($lei) = @_;
1432         $dir_idle or return;
1433         my $cfg = _lei_cfg($lei) or return;
1434         my $old = $cfg->{-watches};
1435         my $watches = $cfg->{-watches} //= {};
1436         my %seen;
1437         my $cfg_f = $cfg->{'-f'};
1438         for my $w (grep(/\Awatch\..+\.state\z/, keys %$cfg)) {
1439                 my $url = substr($w, length('watch.'), -length('.state'));
1440                 require PublicInbox::LeiWatch;
1441                 $watches->{$url} //= PublicInbox::LeiWatch->new($url);
1442                 $seen{$url} = undef;
1443                 my $state = $cfg->get_1("watch.$url.state");
1444                 if (!watch_state_ok($state)) {
1445                         warn("watch.$url.state=$state not supported\n");
1446                         next;
1447                 }
1448                 if ($url =~ /\Amaildir:(.+)/i) {
1449                         my $d = canonpath_harder($1);
1450                         if ($state eq 'pause') {
1451                                 cancel_maildir_watch($d, $cfg_f);
1452                         } else {
1453                                 add_maildir_watch($d, $cfg_f);
1454                         }
1455                 } else { # TODO: imap/nntp/jmap
1456                         $lei->child_error(0, "E: watch $url not supported, yet")
1457                 }
1458         }
1459
1460         # add all known Maildir folders as implicit watches
1461         my $lms = $lei->lms;
1462         if ($lms) {
1463                 $lms->lms_write_prepare;
1464                 for my $d ($lms->folders('maildir:')) {
1465                         substr($d, 0, length('maildir:')) = '';
1466
1467                         # fixup old bugs while we're iterating:
1468                         my $cd = canonpath_harder($d);
1469                         my $f = "maildir:$cd";
1470                         $lms->rename_folder("maildir:$d", $f) if $d ne $cd;
1471                         next if $watches->{$f}; # may be set to pause
1472                         require PublicInbox::LeiWatch;
1473                         $watches->{$f} = PublicInbox::LeiWatch->new($f);
1474                         $seen{$f} = undef;
1475                         add_maildir_watch($cd, $cfg_f);
1476                 }
1477         }
1478         if ($old) { # cull old non-existent entries
1479                 for my $url (keys %$old) {
1480                         next if exists $seen{$url};
1481                         delete $old->{$url};
1482                         if ($url =~ /\Amaildir:(.+)/i) {
1483                                 my $d = canonpath_harder($1);
1484                                 cancel_maildir_watch($d, $cfg_f);
1485                         } else { # TODO: imap/nntp/jmap
1486                                 $lei->child_error(0, "E: watch $url TODO");
1487                         }
1488                 }
1489         }
1490         if (scalar keys %$watches) {
1491                 $cfg->{-env} //= { %{$lei->{env}}, PWD => '/' }; # for cfg2lei
1492         } else {
1493                 delete $cfg->{-watches};
1494         }
1495 }
1496
1497 # TODO: support SHA-256
1498 sub git_oid {
1499         my $eml = $_[-1];
1500         $eml->header_set($_) for @PublicInbox::Import::UNWANTED_HEADERS;
1501         git_sha(1, $eml);
1502 }
1503
1504 sub lms {
1505         my ($lei, $creat) = @_;
1506         my $sto = $lei->{sto} // _lei_store($lei) // return;
1507         require PublicInbox::LeiMailSync;
1508         my $f = "$sto->{priv_eidx}->{topdir}/mail_sync.sqlite3";
1509         (-f $f || $creat) ? PublicInbox::LeiMailSync->new($f) : undef;
1510 }
1511
1512 sub sto_done_request {
1513         my ($lei, $sock) = @_;
1514         local $current_lei = $lei;
1515         eval {
1516                 if ($sock //= $lei->{sock}) { # issue, async wait
1517                         $lei->{sto}->wq_io_do('done', [ $sock ]);
1518                 } else { # forcibly wait
1519                         my $wait = $lei->{sto}->wq_do('done');
1520                 }
1521         };
1522         warn($@) if $@;
1523 }
1524
1525 sub cfg_dump ($$) {
1526         my ($lei, $f) = @_;
1527         my $ret = eval { PublicInbox::Config->git_config_dump($f, $lei->{2}) };
1528         return $ret if !$@;
1529         warn($@);
1530         undef;
1531 }
1532
1533 sub request_umask {
1534         my ($lei) = @_;
1535         my $s = $lei->{sock} // return;
1536         send($s, 'umask', MSG_EOR) // die "send: $!";
1537         vec(my $rvec = '', fileno($s), 1) = 1;
1538         select($rvec, undef, undef, 2) or die 'timeout waiting for umask';
1539         recv($s, my $v, 5, 0) // die "recv: $!";
1540         (my $u, $lei->{client_umask}) = unpack('AV', $v);
1541         $u eq 'u' or warn "E: recv $v has no umask";
1542 }
1543
1544 1;