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