1 # Copyright (C) all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
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;
10 use parent qw(PublicInbox::DS PublicInbox::LeiExternal
11 PublicInbox::LeiQuery);
13 use Socket qw(AF_UNIX SOCK_SEQPACKET MSG_EOR pack_sockaddr_un);
14 use Errno qw(EPIPE EAGAIN ECONNREFUSED ENOENT ECONNRESET);
16 use POSIX qw(strftime);
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;
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);
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));
39 our %PATH2CFG; # persistent for socket daemon
40 our $MDIR2CFGPATH; # /path/to/maildir => { /path/to/config => [ ino watches ] }
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 }
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
52 if ($arg =~ /\A-($re_str)\z/) {
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 '-') {
59 push @{$OPT->{-argv}}, $arg;
61 die "bad argument: $arg\n";
64 push @{$OPT->{-argv}}, $arg;
67 ($spec, '<>' => $cb, $GLP_PASS) # for Getopt::Long
70 # rel2abs preserves symlinks in parent, unlike abs_path
73 if (index($p, '/') == 0) { # already absolute
74 $p =~ tr!/!/!s; # squeeze redundant slashes
75 chop($p) if substr($p, -1, 1) eq '/';
78 my $pwd = $self->{env}->{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;
88 $pwd //= $self->{env}->{PWD} = getcwd() // die "getcwd: $!";
89 File::Spec->rel2abs($p, $pwd);
92 # abs_path resolves symlinks in parent iff all parents exist
93 sub abs_path { Cwd::abs_path($_[1]) // rel2abs(@_) }
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;
101 sub share_path ($) { # $HOME/.local/share/lei/$FOO
103 rel2abs($self, ($self->{env}->{XDG_DATA_HOME} //
104 ($self->{env}->{HOME} // '/nonexistent').'/.local/share')
108 sub store_path ($) { share_path($_[0]) . '/store' }
110 sub _config_path ($) {
112 rel2abs($self, ($self->{env}->{XDG_CONFIG_HOME} //
113 ($self->{env}->{HOME} // '/nonexistent').'/.config')
119 rel2abs($self, ($self->{env}->{XDG_CACHE_HOME} //
120 ($self->{env}->{HOME} // '/nonexistent').'/.cache')
124 sub url_folder_cache {
126 require PublicInbox::SharedKV; # URI => updated_at_sec_
127 PublicInbox::SharedKV->new(cache_dir($self).'/uri_folder');
133 require PublicInbox::LeiALE;
134 my $cfg = $self->_lei_cfg(1);
135 $self->{ale} = $cfg->{ale} //= PublicInbox::LeiALE->new($self);
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)
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@
151 # we don't support -C as an alias for --find-copies since it's already
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
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
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]+') ],
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 ],
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
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]+') ],
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 ],
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 ],
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 ],
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',
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'",
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') ],
241 'purge-mailsource' => [ 'LOCATION|--all',
242 'remove imported messages from IMAP, Maildirs, and MH',
243 qw(exact! all jobs:i indexed), @c_opt ],
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',
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',
256 'index' => [ 'LOCATION...', 'one-time index from URL or filesystem',
257 qw(in-format|F=s kw! offset=i recursive|r exclude=s include|I=s
258 verbose|v+ incremental!), @net_opt, # mainly for --proxy=
260 'import' => [ 'LOCATION...|--stdin',
261 'one-time import/update from URL or filesystem',
262 qw(stdin| offset=i recursive|r exclude=s include|I=s new-only
263 lock=s@ in-format|F=s kw! verbose|v+ incremental! mail-sync!),
265 'forget-mail-sync' => [ 'LOCATION...',
266 'forget sync information for a mail folder', @c_opt ],
267 'refresh-mail-sync' => [ 'LOCATION...|--all',
268 'prune dangling sync data for a mail folder', 'all:s',
270 'export-kw' => [ 'LOCATION...|--all',
271 'one-time export of keywords of sync sources',
272 qw(all:s mode=s), @net_opt, @c_opt ],
273 'convert' => [ 'LOCATION...|--stdin',
274 'one-time conversion from URL or filesystem to another format',
275 qw(stdin| in-format|F=s out-format|f=s output|mfolder|o=s lock=s@ kw!),
277 'p2q' => [ 'LOCATION_OR_COMMIT...|--stdin',
278 "use a patch to generate a query for `lei q --stdin'",
279 qw(stdin| in-format|F=s want|w=s@ uri debug), @net_opt, @c_opt ],
280 'config' => [ '[...]', sub {
281 'git-config(1) wrapper for '._config_path($_[0]);
282 }, qw(config-file|system|global|file|f=s), # for conflict detection
283 qw(edit|e c=s@ C=s@), pass_through('git config') ],
284 'inspect' => [ 'ITEMS...|--stdin', 'inspect lei/store and/or local external',
285 qw(stdin| pretty ascii dir|d=s), @c_opt ],
287 'init' => [ '[DIRNAME]', sub {
288 "initialize storage, default: ".store_path($_[0]);
290 'daemon-kill' => [ '[-SIGNAL]', 'signal the lei-daemon',
291 # "-C DIR" conflicts with -CHLD, here, and chdir makes no sense, here
292 opt_dash('signal|s=s', '[0-9]+|(?:[A-Z][A-Z0-9]+)') ],
293 'daemon-pid' => [ '', 'show the PID of the lei-daemon' ],
294 'help' => [ '[SUBCOMMAND]', 'show help' ],
297 #'reorder-local-store-and-break-history' => [ '[REFNAME]',
298 # 'rewrite git history in an attempt to improve compression',
300 #'fuse-mount' => [ 'PATHNAME', 'expose lei/store as Maildir(s)', @c_opt ],
302 # internal commands are prefixed with '_'
303 '_complete' => [ '[...]', 'internal shell completion helper',
304 pass_through('everything') ],
307 # switch descriptions, try to keep consistent across commands
308 # $spec: Getopt::Long option specification
309 # $spec => [@ALLOWED_VALUES (default is first), $description],
310 # $spec => $description
311 # "$SUB_COMMAND TAB $spec" => as above
312 my $stdin_formats = [ 'MAIL_FORMAT|eml|mboxrd|mboxcl2|mboxcl|mboxo',
313 'specify message input format' ];
314 my $ls_format = [ 'OUT|plain|json|null', 'listing output format' ];
316 # we use \x{a0} (non-breaking SP) to avoid wrapping in PublicInbox::LeiHelp
318 'help|h' => 'show this built-in help',
319 'c=s@' => [ 'NAME=VALUE', 'set config option' ],
320 'C=s@' => [ 'DIR', 'chdir to specify to directory' ],
321 'quiet|q' => 'be quiet',
322 'lock=s@' => [ 'METHOD|dotlock|fcntl|flock|none',
323 'mbox(5) locking method(s) to use (default: fcntl,dotlock)' ],
325 'incremental! import' => 'import already seen IMAP and NNTP articles',
326 'globoff|g' => "do not match locations using '*?' wildcards ".
327 "and\xa0'[]'\x{a0}ranges",
328 'invert-match|v' => 'select non-matching lines',
329 'color!' => 'disable color (for --format=text)',
330 'verbose|v+' => 'be more verbose',
331 'external!' => 'do not use externals',
332 'mail!' => 'do not look in mail storage for OID',
333 'cwd!' => 'do not look in git repo of current working directory',
334 'oid-a|A=s' => 'pre-image OID',
335 'path-a|a=s' => 'pre-image pathname associated with OID',
336 'path-b|b=s' => 'post-image pathname associated with OID',
337 'git-dir=s@' => 'additional git repository to scan',
339 'specify a inboxdir, extindex topdir or Xapian shard',
340 'proxy=s' => [ 'PROTO://HOST[:PORT]', # shared with curl(1)
341 "proxy for (e.g. `socks5h://0:9050')" ],
342 'torsocks=s' => ['VAL|auto|no|yes',
343 'whether or not to wrap git and curl commands with torsocks'],
344 'no-torsocks' => 'alias for --torsocks=no',
345 'save!' => "do not save a search for `lei up'",
346 'import-remote!' => 'do not memoize remote messages into local store',
348 'type=s' => [ 'any|mid|git', 'disambiguate type' ],
350 'dedupe|d=s' => ['STRATEGY|content|oid|mid|none',
351 'deduplication strategy'],
353 'return all messages in the same threads as the actual match(es)',
355 'want|w=s@' => [ 'PREFIX|dfpost|dfn', # common ones in help...
356 'search prefixes to extract (default: dfpost7)' ],
357 'uri p2q' => [ 'URI escape output' ],
359 'alert=s@' => ['CMD,:WINCH,:bell,<any command>',
360 'run command(s) or perform ops when done writing to output ' .
361 '(default: ":WINCH,:bell" with --mua and Maildir/IMAP output, ' .
362 'nothing otherwise)' ],
364 'augment|a' => 'augment --output destination instead of clobbering',
366 'output|mfolder|o=s' => [ 'MFOLDER',
367 "destination (e.g.\xa0`/path/to/Maildir', ".
368 "or\xa0`-'\x{a0}for\x{a0}stdout)" ],
370 "MUA to run on --output Maildir or mbox (e.g.\xa0`mutt\xa0-f\xa0%f')" ],
371 'new-only import' => 'only import new messages from IMAP source',
373 'inbox-version=i' => [ 'NUM|1|2',
374 'force a public-inbox version with --mirror'],
375 'mirror=s' => [ 'URL', 'mirror a public-inbox'],
377 # public-inbox-index options
378 'fsync!' => 'speed up indexing after --mirror, risk index corruption',
379 'compact' => 'run compact index after mirroring',
380 'indexlevel|L=s' => [ 'LEVEL|full|medium|basic',
381 "indexlevel with --mirror (default: full)" ],
382 'max_size|max-size=s' => [ 'SIZE',
383 'do not index messages larger than SIZE (default: infinity)' ],
384 'batch_size|batch-size=s' => [ 'SIZE',
385 'flush changes to OS after given number of bytes (default: 1m)' ],
386 'sequential-shard' =>
387 'index Xapian shards sequentially for slow storage',
389 'drop compatibility w/ public-inbox <1.6 to save ~1.5% space',
392 'OUT|maildir|mboxrd|mboxcl2|mboxcl|mboxo|html|json|jsonl|concatjson',
393 'specify output format, default depends on --output'],
394 'exclude=s@ q' => [ 'LOCATION',
395 'exclude specified external(s) from search' ],
396 'include|I=s@ q' => [ 'LOCATION',
397 'include specified external(s) in search' ],
398 'only|O=s@ q' => [ 'LOCATION',
399 'only use specified external(s) for search' ],
400 'jobs=s q' => [ '[SEARCH_JOBS][,WRITER_JOBS]',
401 'control number of search and writer jobs' ],
402 'jobs|j=i add-external' => 'set parallelism when indexing after --mirror',
404 'in-format|F=s' => $stdin_formats,
405 'format|f=s ls-search' => ['OUT|json|jsonl|concatjson',
406 'listing output format' ],
407 'l ls-search' => 'long listing format',
408 'l ls-watch' => 'long listing format',
409 'l ls-mail-source' => 'long listing format',
410 'url ls-mail-source' => 'show full URL of newsgroup or IMAP folder',
411 'format|f=s ls-external' => $ls_format,
413 'prune:s forget-search' =>
414 ['TYPE|local|remote', 'prune all, remote or local folders' ],
416 'limit|n=i@' => ['NUM', 'limit on number of matches (default: 10000)' ],
417 'offset=i' => ['OFF', 'search result offset (default: 0)'],
419 'sort|s=s' => [ 'VAL|received|relevance|docid',
420 "order of results is `--output'-dependent"],
421 'reverse|r' => 'reverse search results', # like sort(1)
423 'boost=i' => 'increase/decrease priority of results (default: 0)',
425 'local' => 'limit operations to the local filesystem',
426 'local!' => 'exclude results from the local filesystem',
427 'remote' => 'limit operations to those requiring network access',
428 'remote!' => 'prevent operations requiring network access',
430 # up, refresh-mail-sync, export-kw
431 'all:s' => ['TYPE|local|remote', 'all remote or local folders' ],
433 'remote-fudge-time=s' => [ 'INTERVAL',
434 'look for mail INTERVAL older than the last successful query' ],
436 'mid=s' => 'specify the Message-ID of a message',
437 'oid=s' => 'specify the git object ID of a message',
439 'recursive|r' => 'scan directories/mailboxes/newsgroups recursively',
440 'exclude=s' => 'exclude mailboxes/newsgroups based on pattern',
441 'include=s' => 'include mailboxes/newsgroups based on pattern',
443 'exact' => 'operate on exact header matches only',
444 'exact!' => 'rely on content match instead of exact header matches',
446 'by-mid|mid:s' => [ 'MID', 'match only by Message-ID, ignoring contents' ],
448 'kw!' => 'disable/enable importing keywords (aka "flags")',
450 # xargs, env, use "-0", git(1) uses "-z". We support z|0 everywhere
451 'z|0' => 'use NUL \\0 instead of newline (CR) to delimit lines',
453 'signal|s=s' => [ 'SIG', 'signal to send lei-daemon (default: TERM)' ],
457 'leistore.dir' => 'top-level storage location',
460 my @WQ_KEYS = qw(lxs l2m ikw pmd wq1 lne v2w); # internal workers
464 for my $wq (grep(defined, delete(@$self{@WQ_KEYS}))) {
465 $wq->wq_kill('-TERM');
470 # pronounced "exit": x_it(1 << 8) => exit(1); x_it(13) => SIGPIPE
472 my ($self, $code) = @_;
473 local $current_lei = $self;
474 # make sure client sees stdout before exit
475 $self->{1}->autoflush(1) if $self->{1};
477 if ($self->{pkt_op_p}) { # worker => lei-daemon
478 $self->{pkt_op_p}->pkt_do('x_it', $code);
479 } elsif ($self->{sock}) { # lei->daemon => lei(1) client
480 send($self->{sock}, "x_it $code", MSG_EOR);
481 } elsif ($quit == \&CORE::exit) { # an admin (one-shot) command
483 } # else ignore if client disconnected
488 my $err = $self->{2} // ($self->{pgr} // [])->[2] // *STDERR{GLOB};
489 my @eor = (substr($_[-1]//'', -1, 1) eq "\n" ? () : ("\n"));
490 print $err @_, @eor and return;
491 my $old_err = delete $self->{2};
492 close($old_err) if $! == EPIPE && $old_err;
493 $err = $self->{2} = ($self->{pgr} // [])->[2] // *STDERR{GLOB};
494 print $err @_, @eor or print STDERR @_, @eor;
497 sub qerr ($;@) { $_[0]->{opt}->{quiet} or err(shift, @_) }
499 sub qfin { # show message on finalization (LeiFinmsg)
500 my ($lei, $msg) = @_;
501 return if $lei->{opt}->{quiet};
502 $lei->{fmsg} ? push(@{$lei->{fmsg}}, "$msg\n") : qerr($lei, $msg);
505 sub fail_handler ($;$$) {
506 my ($lei, $code, $io) = @_;
507 local $current_lei = $lei;
508 close($io) if $io; # needed to avoid warnings on SIGPIPE
510 x_it($lei, $code // (1 << 8));
513 sub sigpipe_handler { # handles SIGPIPE from @WQ_KEYS workers
514 fail_handler($_[0], 13, delete $_[0]->{1});
518 my ($self, $msg, $exit_code) = @_;
519 local $current_lei = $self;
521 warn(substr($msg, -1, 1) eq "\n" ? $msg : "$msg\n") if defined $msg;
522 $self->{pkt_op_p}->pkt_do('fail_handler') if $self->{pkt_op_p};
523 x_it($self, ($exit_code // 1) << 8);
529 return if print { $self->{1} // return } @_; # likely
530 return note_sigpipe($self, 1) if $! == EPIPE;
531 my $err = "error writing to output: $!";
536 sub puts ($;@) { out(shift, map { "$_\n" } @_) }
538 sub child_error { # passes non-fatal curl exit codes to user
539 my ($self, $child_error, $msg) = @_; # child_error is $?
540 local $current_lei = $self;
541 $child_error ||= 1 << 8;
542 warn(substr($msg, -1, 1) eq "\n" ? $msg : "$msg\n") if defined $msg;
543 if ($self->{pkt_op_p}) { # to top lei-daemon
544 $self->{pkt_op_p}->pkt_do('child_error', $child_error);
545 } elsif ($self->{sock}) { # to lei(1) client
546 send($self->{sock}, "child_error $child_error", MSG_EOR);
547 } else { # non-lei admin command
548 $self->{child_error} ||= $child_error;
549 } # else noop if client disconnected
552 sub note_sigpipe { # triggers sigpipe_handler
553 my ($self, $fd) = @_;
554 close(delete($self->{$fd})); # explicit close silences Perl warning
555 $self->{pkt_op_p}->pkt_do('sigpipe_handler') if $self->{pkt_op_p};
559 sub _lei_atfork_child {
560 my ($self, $persist) = @_;
561 # we need to explicitly close things which are on stack
563 open $self->{3}, '<', '/' or die "open(/) $!";
565 close($_) for (grep(defined, delete @$self{qw(0 1 2 sock)}));
566 if (my $cfg = $self->{cfg}) {
567 delete @$cfg{qw(-lei_store -watches -lei_note_event)};
569 } else { # worker, Net::NNTP (Net::Cmd) uses STDERR directly
570 open STDERR, '+>&='.fileno($self->{2}) or warn "open $!";
571 STDERR->autoflush(1);
572 POSIX::setpgid(0, $$) // die "setpgid(0, $$): $!";
574 close($_) for (grep(defined, delete @$self{qw(old_1 au_done)}));
575 delete $self->{-socks};
576 if (my $op_c = delete $self->{pkt_op_c}) {
577 close(delete $op_c->{sock});
579 if (my $pgr = delete $self->{pgr}) {
580 close($_) for (@$pgr[1,2]);
582 close $listener if $listener;
584 $dir_idle->force_close if $dir_idle;
588 eval 'no warnings; undef $PublicInbox::LeiNoteEvent::to_flush';
590 $quit = \&CORE::exit;
591 if (!$self->{-eml_noisy}) { # only "lei import" sets this atm
592 my $cb = $SIG{__WARN__} // \&CORE::warn;
593 $SIG{__WARN__} = sub {
594 $cb->(@_) unless PublicInbox::Eml::warn_ignore(@_)
597 $SIG{TERM} = sub { exit(128 + 15) };
598 $current_lei = $persist ? undef : $self; # for SIG{__WARN__}
601 sub _delete_pkt_op { # OnDestroy callback to prevent leaks on die
603 if (my $op = delete $self->{pkt_op_c}) { # in case of die
604 $op->close; # PublicInbox::PktOp::close
606 my $pkt_op_p = delete($self->{pkt_op_p}) or return;
607 close $pkt_op_p->{op_p};
612 require PublicInbox::OnDestroy;
613 require PublicInbox::PktOp;
614 my $end = PublicInbox::OnDestroy->new($$, \&_delete_pkt_op, $self);
615 @$self{qw(pkt_op_c pkt_op_p)} = PublicInbox::PktOp->pair;
620 my ($self, $field, $nr) = @_;
621 $self->{counters}->{$field} += $nr;
625 my ($lei, $ops) = @_;
626 $ops->{fail_handler} = [ $lei ];
627 $ops->{sigpipe_handler} = [ $lei ];
628 $ops->{x_it} = [ $lei ];
629 $ops->{child_error} = [ $lei ];
630 $ops->{incr} = [ $lei ];
635 my ($lei, $wq, $jobs, $ops, $flds) = @_;
637 ($wq->can('net_merge_all_done') && $lei->{auth}) and
638 $lei->{auth}->op_merge($ops, $wq, $lei);
640 $ops->{''} //= [ $wq->can('_lei_wq_eof') || \&wq_eof, $lei ];
641 my $end = $lei->pkt_op_pair;
642 my $ident = $wq->{-wq_ident} // "lei-$lei->{cmd} worker";
644 $wq->wq_workers_start($ident, $jobs, $lei->oldset, $flds);
645 delete $lei->{pkt_op_p};
646 my $op_c = delete $lei->{pkt_op_c};
648 $lei->event_step_init;
649 $wq->wq_wait_async($wq->can('_wq_done_wait') // \&wq_done_wait, $lei);
653 # call this when we're ready to wait on events and yield to other clients
655 my ($lei, $op_c, $ops) = @_;
656 my $wq1 = $lei->{wq1};
657 ($wq1 && $wq1->can('net_merge_all_done') && !$lei->{auth}) and
658 $wq1->net_merge_all_done;
659 for my $wq (grep(defined, @$lei{qw(ikw pmd)})) { # auxiliary WQs
662 $wq1->{lei_sock} = $lei->{sock} if $wq1;
667 my ($lei, $wq, $jobs) = @_;
668 my ($op_c, $ops) = workers_start($lei, $wq, $jobs // 1);
670 wait_wq_events($lei, $op_c, $ops); # net_merge_all_done if !{auth}
674 require PublicInbox::LeiHelp;
675 PublicInbox::LeiHelp::call($_[0], $_[1], \%CMD, \%OPTDESC);
679 my ($self, $cmd, $argv) = @_;
680 # allow _complete --help to complete, not show help
681 return 1 if substr($cmd, 0, 1) eq '_';
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);
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;
694 $glp->getoptionsfromarray($argv, $OPT, @spec) or
695 return _help($self, "bad arguments or options for $cmd");
696 return _help($self) if $OPT->{help};
698 push @$argv, @{$OPT->{-argv}} if defined($OPT->{-argv});
700 # "-" aliases "stdin" or "clear"
701 $OPT->{$lone_dash} = ${$OPT->{$lone_dash}} if defined $lone_dash;
704 my $POS_ARG = '[A-Z][A-Z0-9_]+';
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
717 } elsif ($var =~ /\A\[-?$POS_ARG\]\z/) { # one optional arg
719 } elsif ($var =~ /\A.+?\|/) { # required FOO|--stdin
720 $inf = 1 if index($var, '...') > 0;
721 my @or = split(/\|/, $var);
724 if ($o =~ /\A--([a-z0-9\-]+)/) {
726 # assume pipe/regular file on stdin
727 # w/o args means stdin
728 if ($sw eq 'stdin' && !@$argv &&
733 $ok = defined($OPT->{$sw});
735 } elsif (defined($argv->[$i])) {
739 } # else continue looping
743 $err = join(', ', @or) . " or $last must be set";
745 warn "BUG: can't parse `$var' in $proto";
749 if (!$inf && scalar(@$argv) > scalar(@args)) {
750 $err //= 'too many arguments';
752 $err ? fail($self, "usage: lei $cmd $proto\nE: $err") : 1;
755 sub _tmp_cfg { # for lei -c <name>=<value> ...
757 my $cfg = _lei_cfg($self, 1);
759 my $ft = File::Temp->new(TEMPLATE => 'lei_cfg-XXXX', TMPDIR => 1);
760 my $tmp = { '-f' => $ft->filename, -tmp => $ft };
762 print $ft <<EOM or return fail($self, "$tmp->{-f}: $!");
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>'
773 _config($self, '--add', $name, $value);
774 if (defined(my $v = $tmp->{$name})) {
775 if (ref($v) eq 'ARRAY') {
778 $tmp->{$name} = [ $v, $value ];
781 $tmp->{$name} = $value;
787 my ($self, $cmd, $pfx) = @_;
791 $cb = $self->can($pfx.$ucmd) and return $cb;
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;
800 my ($self, $cmd, @argv) = @_;
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');
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: $!");
821 open $self->{3}, '<', '.' or
822 return fail($self, "open . $!");
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');
830 fail($self, "`$cmd' is not an lei command");
835 my ($self, $creat) = @_;
836 return $self->{cfg} if $self->{cfg};
837 my $f = _config_path($self);
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
850 return bless {}, 'PublicInbox::Config';
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';
859 my $cfg = PublicInbox::Config->git_config_dump($f, $self->{2});
860 $cfg->{-st} = $cur_st;
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;
869 if (scalar(keys %PATH2CFG) > 5) {
870 # FIXME: use inotify/EVFILT_VNODE to detect unlinked configs
871 delete(@PATH2CFG{grep(!-f, keys %PATH2CFG)});
873 $self->{cfg} = $PATH2CFG{$f} = $cfg;
874 refresh_watches($self);
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 });
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);
898 sub lei_daemon_pid { puts shift, $$ }
900 sub lei_daemon_kill {
902 my $sig = $self->{opt}->{signal} // 'TERM';
903 kill($sig, $$) or fail($self, "kill($sig, $$): $!");
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.
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);
918 my ($proto, undef, @spec) = @$info;
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);
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+
940 # negation: mail! => no-mail|mail
941 s/([\w\-]+)/$1|no-$1/g
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);
952 # switch args (e.g. lei q -f mbox<TAB>)
953 if (($argv[-1] // $cur // '') =~ /\A--?([\w\-]+)\z/) {
954 my $opt = quotemeta $1;
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];
962 } grep(/\A(?:[\w-]+\|)*$opt\b.*?(?:\t$cmd)?\z/, keys %OPTDESC);
964 if (my $cb = lazy_cb($self, $cmd, '_complete_')) {
965 puts $self, $cb->($self, @argv, $cur ? ($cur) : ());
967 # TODO: URLs, pathnames, OIDs, MIDs, etc... See optparse() for
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" };
981 if ($self->{ovv}->{fmt} =~ /\A(?:maildir)\z/) { # TODO: IMAP
982 refresh_watches($self);
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/) {
989 # TODO: help wanted: other common FOSS MUAs
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;
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=...
1000 $io->[0] = $self->{1} if $self->{opt}->{stdin} && -t $self->{1};
1001 send_exec_cmd($self, $io, \@cmd, {});
1003 if ($self->{lxs} && $self->{au_done}) { # kick wait_startq
1004 syswrite($self->{au_done}, 'q' x ($self->{lxs}->{jobs} // 0));
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};
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);
1019 sub poke_mua { # forces terminal MUAs to wake up and hopefully notice new mail
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') {
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;
1037 warn("W: unsupported --alert=$op\n"); # non-fatal
1042 my %path_to_fd = ('/dev/stdin' => 0, '/dev/stdout' => 1, '/dev/stderr' => 2);
1043 $path_to_fd{"/dev/fd/$_"} = $_ for (0..2);
1045 # this also normalizes the path
1047 my ($self, $path) = @_;
1048 $path = rel2abs($self, $path);
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
1056 # caller needs to "-t $self->{1}" to check if tty
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 '';
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);
1075 die 'BUG: start_pager w/o socket';
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;
1083 # display a message for user before spawning full-screen $VISUAL
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);
1091 send($self->{sock}, 'wait', MSG_EOR); # wait for user to quit pager
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];
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);
1117 open($self->{$i++}, '+<&=', $fd) and next;
1118 send($sock, "open(+<&=$fd) (FD=$i): $!", MSG_EOR);
1120 $i == 4 or return send($sock, 'not enough FDs='.($i-1), MSG_EOR)
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);
1128 my %env = map { split(/=/, $_, 2) } splice(@argv, $argc);
1129 $self->{env} = \%env;
1130 eval { dispatch($self, @argv) };
1131 $self->fail($@) if $@;
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
1142 # for long-running results
1145 local %ENV = %{$self->{env}};
1146 local $current_lei = $self;
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;
1153 @fds = (); # for open loop below:
1155 for (@fds) { open my $rfh, '+<&=', $_ }
1157 _drop_wq($self); # EOF, client disconnected
1161 if ($buf =~ /\A(?:STOP|CONT|TERM)\z/) {
1163 for my $wq (grep(defined, @$self{@WQ_KEYS})) {
1167 die "unrecognized client signal: $buf";
1169 my $s = $self->{-socks} // []; # lei up --all
1170 @$s = grep { send($_, $buf, MSG_EOR) } @$s;
1173 eval { $self->fail($err) };
1178 sub event_step_init {
1180 my $sock = $self->{sock} or return;
1181 $self->{-event_init_done} // do { # persist til $ops done
1183 $self->SUPER::new($sock, EPOLLIN);
1184 $self->{-event_init_done} = $sock;
1190 sub oldset { $oldset }
1192 sub dump_and_clear_log {
1193 if (defined($errors_log) && -s STDIN && seek(STDIN, 0, SEEK_SET)) {
1194 openlog('lei-daemon', 'pid,nowait,nofatal,ndelay', 'user');
1195 chomp(my @lines = <STDIN>);
1196 truncate(STDIN, 0) or
1197 syslog('warning', "ftruncate (%s): %m", $errors_log);
1198 for my $l (@lines) { syslog('warning', '%s', $l) }
1199 closelog(); # don't share across fork
1205 my $lei = bless { env => { %{$cfg->{-env}} } }, __PACKAGE__;
1206 open($lei->{0}, '<&', \*STDIN) or die "dup 0: $!";
1207 open($lei->{1}, '>>&', \*STDOUT) or die "dup 1: $!";
1208 open($lei->{2}, '>>&', \*STDERR) or die "dup 2: $!";
1209 open($lei->{3}, '<', '/') or die "open /: $!";
1211 socketpair($x, $y, AF_UNIX, SOCK_SEQPACKET, 0) or die "socketpair: $!";
1213 require PublicInbox::LeiSelfSocket;
1214 PublicInbox::LeiSelfSocket->new($y); # adds to event loop
1218 sub dir_idle_handler ($) { # PublicInbox::DirIdle callback
1219 my ($ev) = @_; # Linux::Inotify2::Event or duck type
1220 my $fn = $ev->fullname;
1221 if ($fn =~ m!\A(.+)/(new|cur)/([^/]+)\z!) { # Maildir file
1222 my ($mdir, $nc, $bn) = ($1, $2, $3);
1223 $nc = '' if $ev->IN_DELETE || $ev->IN_MOVED_FROM;
1224 for my $f (keys %{$MDIR2CFGPATH->{$mdir} // {}}) {
1225 my $cfg = $PATH2CFG{$f} // next;
1227 my $lei = cfg2lei($cfg);
1228 $lei->dispatch('note-event',
1229 "maildir:$mdir", $nc, $bn, $fn);
1231 warn "E: note-event $f: $@\n" if $@;
1234 if ($ev->can('cancel') && ($ev->IN_IGNORE || $ev->IN_UNMOUNT)) {
1237 if ($fn =~ m!\A(.+)/(?:new|cur)\z! && !-e $fn) {
1238 delete $MDIR2CFGPATH->{$1};
1240 if (!-e $fn) { # config file or Maildir gone
1241 for my $cfgpaths (values %$MDIR2CFGPATH) {
1242 delete $cfgpaths->{$fn};
1244 delete $PATH2CFG{$fn};
1248 # lei(1) calls this when it can't connect
1250 my ($path, $errno, $narg) = @_;
1251 local ($errors_log, $listener);
1252 my ($sock_dir) = ($path =~ m!\A(.+?)/[^/]+\z!);
1253 $errors_log = "$sock_dir/errors.log";
1254 my $addr = pack_sockaddr_un($path);
1255 my $lk = bless { lock_path => $errors_log }, 'PublicInbox::Lock';
1256 umask(077) // die("umask(077): $!");
1258 socket($listener, AF_UNIX, SOCK_SEQPACKET, 0) or die "socket: $!";
1259 if ($errno == ECONNREFUSED || $errno == ENOENT) {
1260 return if connect($listener, $addr); # another process won
1261 if ($errno == ECONNREFUSED && -S $path) {
1262 unlink($path) or die "unlink($path): $!";
1265 $! = $errno; # allow interpolation to stringify in die
1266 die "connect($path): $!";
1268 bind($listener, $addr) or die "bind($path): $!";
1271 my @st = stat($path) or die "stat($path): $!";
1272 my $dev_ino_expect = pack('dd', $st[0], $st[1]); # dev+ino
1273 local $oldset = PublicInbox::DS::block_signals();
1275 $send_cmd = PublicInbox::Spawn->can('send_cmd4');
1276 $recv_cmd = PublicInbox::Spawn->can('recv_cmd4') // do {
1277 require PublicInbox::CmdIPC4;
1278 $send_cmd = PublicInbox::CmdIPC4->can('send_cmd4');
1279 PublicInbox::CmdIPC4->can('recv_cmd4');
1281 $send_cmd = PublicInbox::Syscall->can('send_cmd4');
1282 PublicInbox::Syscall->can('recv_cmd4');
1285 $recv_cmd or die <<"";
1286 (Socket::MsgHdr || Inline::C) missing/unconfigured (narg=$narg);
1288 require PublicInbox::Listener;
1289 require PublicInbox::PktOp;
1290 (-p STDOUT) or die "E: stdout must be a pipe\n";
1291 open(STDIN, '+>>', $errors_log) or die "open($errors_log): $!";
1292 STDIN->autoflush(1);
1293 dump_and_clear_log();
1294 POSIX::setsid() > 0 or die "setsid: $!";
1295 my $pid = fork // die "fork: $!";
1297 $0 = "lei-daemon $path";
1299 local $MDIR2CFGPATH;
1300 $listener->blocking(0);
1302 my $pil = PublicInbox::Listener->new($listener, \&accept_dispatch);
1304 my (undef, $eof_p) = PublicInbox::PktOp->pair;
1306 $exit_code //= shift;
1307 eval 'PublicInbox::LeiNoteEvent::flush_task()';
1308 my $lis = $pil or exit($exit_code);
1309 # closing eof_p triggers \&noop wakeup
1310 $listener = $eof_p = $pil = $path = undef;
1311 $lis->close; # DS::close
1312 PublicInbox::DS->SetLoopTimeout(1000);
1316 CHLD => \&PublicInbox::DS::enqueue_reap,
1324 require PublicInbox::DirIdle;
1325 local $dir_idle = PublicInbox::DirIdle->new(sub {
1326 # just rely on wakeup to hit PostLoopCallback set below
1327 dir_idle_handler($_[0]) if $_[0]->fullname ne $path;
1329 $dir_idle->add_watches([$sock_dir]);
1330 PublicInbox::DS->SetPostLoopCallback(sub {
1331 my ($dmap, undef) = @_;
1332 if (@st = defined($path) ? stat($path) : ()) {
1333 if ($dev_ino_expect ne pack('dd', $st[0], $st[1])) {
1334 warn "$path dev/ino changed, quitting\n";
1337 } elsif (defined($path)) { # ENOENT is common
1338 warn "stat($path): $!, quitting ...\n" if $! != ENOENT;
1342 return 1 if defined($path);
1344 for my $s (values %$dmap) {
1345 $s->can('busy') or next;
1352 $n; # true: continue, false: stop
1355 # STDIN was redirected to /dev/null above, closing STDERR and
1356 # STDOUT will cause the calling `lei' client process to finish
1357 # reading the <$daemon> pipe.
1358 local $SIG{__WARN__} = sub {
1359 $current_lei ? err($current_lei, @_) : warn(
1360 strftime('%Y-%m-%dT%H:%M:%SZ', gmtime(time))," $$ ", @_);
1362 open STDERR, '>&STDIN' or die "redirect stderr failed: $!";
1363 open STDOUT, '>&STDIN' or die "redirect stdout failed: $!";
1364 # $daemon pipe to `lei' closed, main loop begins:
1365 eval { PublicInbox::DS::event_loop($sig, $oldset) };
1366 warn "event loop error: $@\n" if $@;
1367 # exit() may trigger waitpid via various DESTROY, ensure interruptible
1368 PublicInbox::DS::sig_setmask($oldset);
1369 dump_and_clear_log();
1370 exit($exit_code // 0);
1373 sub busy { 1 } # prevent daemon-shutdown if client is connected
1375 # ensures stdout hits the FS before sock disconnects so a client
1376 # can immediately reread it
1379 if (my $counters = delete $self->{counters}) {
1380 for my $k (sort keys %$counters) {
1381 my $nr = $counters->{$k};
1382 $self->child_error(0, "$nr $k messages");
1385 $self->{1}->autoflush(1) if $self->{1};
1387 dump_and_clear_log();
1388 # preserve $? for ->fail or ->x_it code
1391 sub wq_done_wait { # dwaitpid callback
1392 my ($arg, $pid) = @_;
1393 my ($wq, $lei) = @$arg;
1394 local $current_lei = $lei;
1395 my $err_type = $lei->{-err_type};
1396 $? and $lei->child_error($?,
1397 $err_type ? "$err_type errors during $lei->{cmd} \$?=$?" : ());
1403 my $dh = $lei->{3} // die 'BUG: lei->{3} (CWD) gone';
1404 chdir($dh) || die "fchdir: $!";
1407 sub wq_eof { # EOF callback for main daemon
1408 my ($lei, $wq_fld) = @_;
1409 local $current_lei = $lei;
1410 my $wq = delete $lei->{$wq_fld // 'wq1'};
1411 $lei->sto_done_request($wq);
1412 $wq // $lei->fail; # already failed
1415 sub watch_state_ok ($) {
1416 my ($state) = $_[-1]; # $_[0] may be $self
1417 $state =~ /\Apause|(?:import|index|tag)-(?:ro|rw)\z/;
1420 sub cancel_maildir_watch ($$) {
1421 my ($d, $cfg_f) = @_;
1422 my $w = delete $MDIR2CFGPATH->{$d}->{$cfg_f};
1423 scalar(keys %{$MDIR2CFGPATH->{$d}}) or
1424 delete $MDIR2CFGPATH->{$d};
1425 for my $x (@{$w // []}) { $x->cancel }
1428 sub add_maildir_watch ($$) {
1429 my ($d, $cfg_f) = @_;
1430 if (!exists($MDIR2CFGPATH->{$d}->{$cfg_f})) {
1431 my @w = $dir_idle->add_watches(["$d/cur", "$d/new"], 1);
1432 push @{$MDIR2CFGPATH->{$d}->{$cfg_f}}, @w if @w;
1436 sub refresh_watches {
1438 $dir_idle or return;
1439 my $cfg = _lei_cfg($lei) or return;
1440 my $old = $cfg->{-watches};
1441 my $watches = $cfg->{-watches} //= {};
1443 my $cfg_f = $cfg->{'-f'};
1444 for my $w (grep(/\Awatch\..+\.state\z/, keys %$cfg)) {
1445 my $url = substr($w, length('watch.'), -length('.state'));
1446 require PublicInbox::LeiWatch;
1447 $watches->{$url} //= PublicInbox::LeiWatch->new($url);
1448 $seen{$url} = undef;
1449 my $state = $cfg->get_1("watch.$url.state");
1450 if (!watch_state_ok($state)) {
1451 warn("watch.$url.state=$state not supported\n");
1454 if ($url =~ /\Amaildir:(.+)/i) {
1455 my $d = canonpath_harder($1);
1456 if ($state eq 'pause') {
1457 cancel_maildir_watch($d, $cfg_f);
1459 add_maildir_watch($d, $cfg_f);
1461 } else { # TODO: imap/nntp/jmap
1462 $lei->child_error(0, "E: watch $url not supported, yet")
1466 # add all known Maildir folders as implicit watches
1467 my $lms = $lei->lms;
1469 $lms->lms_write_prepare;
1470 for my $d ($lms->folders('maildir:')) {
1471 substr($d, 0, length('maildir:')) = '';
1473 # fixup old bugs while we're iterating:
1474 my $cd = canonpath_harder($d);
1475 my $f = "maildir:$cd";
1476 $lms->rename_folder("maildir:$d", $f) if $d ne $cd;
1477 next if $watches->{$f}; # may be set to pause
1478 require PublicInbox::LeiWatch;
1479 $watches->{$f} = PublicInbox::LeiWatch->new($f);
1481 add_maildir_watch($cd, $cfg_f);
1484 if ($old) { # cull old non-existent entries
1485 for my $url (keys %$old) {
1486 next if exists $seen{$url};
1487 delete $old->{$url};
1488 if ($url =~ /\Amaildir:(.+)/i) {
1489 my $d = canonpath_harder($1);
1490 cancel_maildir_watch($d, $cfg_f);
1491 } else { # TODO: imap/nntp/jmap
1492 $lei->child_error(0, "E: watch $url TODO");
1496 if (scalar keys %$watches) {
1497 $cfg->{-env} //= { %{$lei->{env}}, PWD => '/' }; # for cfg2lei
1499 delete $cfg->{-watches};
1503 # TODO: support SHA-256
1506 $eml->header_set($_) for @PublicInbox::Import::UNWANTED_HEADERS;
1511 my ($lei, $creat) = @_;
1512 my $sto = $lei->{sto} // _lei_store($lei) // return;
1513 require PublicInbox::LeiMailSync;
1514 my $f = "$sto->{priv_eidx}->{topdir}/mail_sync.sqlite3";
1515 (-f $f || $creat) ? PublicInbox::LeiMailSync->new($f) : undef;
1518 sub sto_done_request {
1519 my ($lei, $wq) = @_;
1520 return unless $lei->{sto};
1521 local $current_lei = $lei;
1522 my $sock = $wq ? $wq->{lei_sock} : undef;
1524 if ($sock //= $lei->{sock}) { # issue, async wait
1525 $lei->{sto}->wq_io_do('done', [ $sock ]);
1526 } else { # forcibly wait
1527 my $wait = $lei->{sto}->wq_do('done');
1535 my $ret = eval { PublicInbox::Config->git_config_dump($f, $lei->{2}) };
1543 my $s = $lei->{sock} // return;
1544 send($s, 'umask', MSG_EOR) // die "send: $!";
1545 vec(my $rvec = '', fileno($s), 1) = 1;
1546 select($rvec, undef, undef, 2) or die 'timeout waiting for umask';
1547 recv($s, my $v, 5, 0) // die "recv: $!";
1548 (my $u, $lei->{client_umask}) = unpack('AV', $v);
1549 $u eq 'u' or warn "E: recv $v has no umask";