1 # Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
2 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
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;
11 use parent qw(PublicInbox::DS PublicInbox::LeiExternal
12 PublicInbox::LeiQuery);
14 use Socket qw(AF_UNIX SOCK_STREAM pack_sockaddr_un);
15 use Errno qw(EAGAIN ECONNREFUSED ENOENT);
18 use Sys::Syslog qw(syslog openlog);
19 use PublicInbox::Config;
20 use PublicInbox::Syscall qw(SFD_NONBLOCK EPOLLIN EPOLLONESHOT);
21 use PublicInbox::Sigfd;
22 use PublicInbox::DS qw(now dwaitpid);
23 use PublicInbox::Spawn qw(spawn run_die popen_rd);
24 use PublicInbox::OnDestroy;
25 use Text::Wrap qw(wrap);
26 use File::Path qw(mkpath);
28 our $quit = \&CORE::exit;
30 my $GLP = Getopt::Long::Parser->new;
31 $GLP->configure(qw(gnu_getopt no_ignore_case auto_abbrev));
32 my $GLP_PASS = Getopt::Long::Parser->new;
33 $GLP_PASS->configure(qw(gnu_getopt no_ignore_case auto_abbrev pass_through));
35 our %PATH2CFG; # persistent for socket daemon
37 # TBD: this is a documentation mechanism to show a subcommand
38 # (may) pass options through to another command:
39 sub pass_through { $GLP_PASS }
43 my ($spec, $re_str) = @_; # 'limit|n=i', '([0-9]+)'
44 my ($key) = ($spec =~ m/\A([a-z]+)/g);
45 my $cb = sub { # Getopt::Long "<>" catch-all handler
47 if ($arg =~ /\A-($re_str)\z/) {
49 } elsif ($arg eq '--') { # "--" arg separator, ignore first
50 push @{$OPT->{-argv}}, $arg if $OPT->{'--'}++;
51 # lone (single) dash is handled elsewhere
52 } elsif (substr($arg, 0, 1) eq '-') {
54 push @{$OPT->{-argv}}, $arg;
56 die "bad argument: $arg\n";
59 push @{$OPT->{-argv}}, $arg;
62 ($spec, '<>' => $cb, $GLP_PASS) # for Getopt::Long
67 File::Spec->rel2abs(($env->{XDG_DATA_HOME} //
68 ($env->{HOME} // '/nonexistent').'/.local/share')
69 .'/lei/store', $env->{PWD});
72 sub _config_path ($) {
74 File::Spec->rel2abs(($env->{XDG_CONFIG_HOME} //
75 ($env->{HOME} // '/nonexistent').'/.config')
76 .'/lei/config', $env->{PWD});
79 # TODO: generate shell completion + help using %CMD and %OPTDESC
80 # command => [ positional_args, 1-line description, Getopt::Long option spec ]
81 our %CMD = ( # sorted in order of importance/use:
82 'q' => [ 'SEARCH_TERMS...', 'search for messages matching terms', qw(
83 save-as=s output|mfolder|o=s format|f=s dedupe|d=s thread|t augment|a
84 sort|s=s reverse|r offset=i remote local! external! pretty
85 since|after=s until|before=s), opt_dash('limit|n=i', '[0-9]+') ],
87 'show' => [ 'MID|OID', 'show a given object (Message-ID or object ID)',
88 qw(type=s solve! format|f=s dedupe|d=s thread|t remote local!),
89 pass_through('git show') ],
91 'add-external' => [ 'URL_OR_PATHNAME',
92 'add/set priority of a publicinbox|extindex for extra matches',
93 qw(boost=i quiet|q) ],
94 'ls-external' => [ '[FILTER...]', 'list publicinbox|extindex locations',
95 qw(format|f=s z|0 local remote quiet|q) ],
96 'forget-external' => [ '{URL_OR_PATHNAME|--prune}',
97 'exclude further results from a publicinbox|extindex',
100 'ls-query' => [ '[FILTER...]', 'list saved search queries',
101 qw(name-only format|f=s z) ],
102 'rm-query' => [ 'QUERY_NAME', 'remove a saved search' ],
103 'mv-query' => [ qw(OLD_NAME NEW_NAME), 'rename a saved search' ],
105 'plonk' => [ '--thread|--from=IDENT',
106 'exclude mail matching From: or thread from non-Message-ID searches',
107 qw(stdin| thread|t from|f=s mid=s oid=s) ],
108 'mark' => [ 'MESSAGE_FLAGS...',
109 'set/unset flags on message(s) from stdin',
110 qw(stdin| oid=s exact by-mid|mid:s) ],
111 'forget' => [ '[--stdin|--oid=OID|--by-mid=MID]',
112 "exclude message(s) on stdin from `q' search results",
113 qw(stdin| oid=s exact by-mid|mid:s quiet|q) ],
115 'purge-mailsource' => [ '{URL_OR_PATHNAME|--all}',
116 'remove imported messages from IMAP, Maildirs, and MH',
117 qw(exact! all jobs:i indexed) ],
119 # code repos are used for `show' to solve blobs from patch mails
120 'add-coderepo' => [ 'PATHNAME', 'add or set priority of a git code repo',
122 'ls-coderepo' => [ '[FILTER_TERMS...]',
123 'list known code repos', qw(format|f=s z) ],
124 'forget-coderepo' => [ 'PATHNAME',
125 'stop using repo to solve blobs from patches',
128 'add-watch' => [ '[URL_OR_PATHNAME]',
129 'watch for new messages and flag changes',
130 qw(import! flags! interval=s recursive|r exclude=s include=s) ],
131 'ls-watch' => [ '[FILTER...]', 'list active watches with numbers and status',
133 'pause-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote) ],
134 'resume-watch' => [ '[WATCH_NUMBER_OR_FILTER]', qw(all local remote) ],
135 'forget-watch' => [ '{WATCH_NUMBER|--prune}', 'stop and forget a watch',
138 'import' => [ '{URL_OR_PATHNAME|--stdin}',
139 'one-shot import/update from URL or filesystem',
140 qw(stdin| offset=i recursive|r exclude=s include=s !flags),
143 'config' => [ '[...]', sub {
144 'git-config(1) wrapper for '._config_path($_[0]);
145 }, qw(config-file|system|global|file|f=s), # for conflict detection
146 pass_through('git config') ],
147 'init' => [ '[PATHNAME]', sub {
148 'initialize storage, default: '._store_path($_[0]);
150 'daemon-kill' => [ '[-SIGNAL]', 'signal the lei-daemon',
151 opt_dash('signal|s=s', '[0-9]+|(?:[A-Z][A-Z0-9]+)') ],
152 'daemon-pid' => [ '', 'show the PID of the lei-daemon' ],
153 'help' => [ '[SUBCOMMAND]', 'show help' ],
155 # XXX do we need this?
156 # 'git' => [ '[ANYTHING...]', 'git(1) wrapper', pass_through('git') ],
158 'reorder-local-store-and-break-history' => [ '[REFNAME]',
159 'rewrite git history in an attempt to improve compression',
162 # internal commands are prefixed with '_'
163 '_complete' => [ '[...]', 'internal shell completion helper',
164 pass_through('everything') ],
167 # switch descriptions, try to keep consistent across commands
168 # $spec: Getopt::Long option specification
169 # $spec => [@ALLOWED_VALUES (default is first), $description],
170 # $spec => $description
171 # "$SUB_COMMAND TAB $spec" => as above
172 my $stdin_formats = [ 'IN|auto|raw|mboxrd|mboxcl2|mboxcl|mboxo',
173 'specify message input format' ];
174 my $ls_format = [ 'OUT|plain|json|null', 'listing output format' ];
177 'help|h' => 'show this built-in help',
178 'quiet|q' => 'be quiet',
179 'solve!' => 'do not attempt to reconstruct blobs from emails',
180 'save-as=s' => ['NAME', 'save a search terms by given name'],
182 'type=s' => [ 'any|mid|git', 'disambiguate type' ],
184 'dedupe|d=s' => ['STRAT|content|oid|mid|none',
185 'deduplication strategy'],
186 'show thread|t' => 'display entire thread a message belongs to',
188 'return all messages in the same thread as the actual match(es)',
189 'augment|a' => 'augment --output destination instead of clobbering',
191 'output|o=s' => [ 'DEST',
192 "destination (e.g. `/path/to/Maildir', or `-' for stdout)" ],
194 'show format|f=s' => [ 'OUT|plain|raw|html|mboxrd|mboxcl2|mboxcl',
195 'message/object output format' ],
196 'mark format|f=s' => $stdin_formats,
197 'forget format|f=s' => $stdin_formats,
198 'q format|f=s' => [ 'OUT|maildir|mboxrd|mboxcl2|mboxcl|html|oid|json',
199 'specify output format, default depends on --output'],
200 'ls-query format|f=s' => $ls_format,
201 'ls-external format|f=s' => $ls_format,
203 'limit|n=i@' => ['NUM', 'limit on number of matches (default: 10000)' ],
204 'offset=i' => ['OFF', 'search result offset (default: 0)'],
206 'sort|s=s' => [ 'VAL|received,relevance,docid',
207 "order of results `--output'-dependent"],
208 'reverse|r' => [ 'reverse search results' ], # like sort(1)
210 'boost=i' => 'increase/decrease priority of results (default: 0)',
212 'local' => 'limit operations to the local filesystem',
213 'local!' => 'exclude results from the local filesystem',
214 'remote' => 'limit operations to those requiring network access',
215 'remote!' => 'prevent operations requiring network access',
217 'mid=s' => 'specify the Message-ID of a message',
218 'oid=s' => 'specify the git object ID of a message',
220 'recursive|r' => 'scan directories/mailboxes/newsgroups recursively',
221 'exclude=s' => 'exclude mailboxes/newsgroups based on pattern',
222 'include=s' => 'include mailboxes/newsgroups based on pattern',
224 'exact' => 'operate on exact header matches only',
225 'exact!' => 'rely on content match instead of exact header matches',
227 'by-mid|mid:s' => [ 'MID', 'match only by Message-ID, ignoring contents' ],
228 'jobs:i' => 'set parallelism level',
230 # xargs, env, use "-0", git(1) uses "-z". We support z|0 everywhere
231 'z|0' => 'use NUL \\0 instead of newline (CR) to delimit lines',
233 'signal|s=s' => [ 'SIG', 'signal to send lei-daemon (default: TERM)' ],
237 'leistore.dir' => 'top-level storage location',
240 sub x_it ($$) { # pronounced "exit"
241 my ($self, $code) = @_;
242 $self->{1}->autoflush(1); # make sure client sees stdout before exit
243 if (my $sig = ($code & 127)) {
244 kill($sig, $self->{pid} // $$);
247 if (my $sock = $self->{sock}) {
248 say $sock "exit=$code";
249 } else { # for oneshot
255 sub puts ($;@) { print { shift->{1} } map { "$_\n" } @_ }
257 sub out ($;@) { print { shift->{1} } @_ }
260 print { shift->{2} } @_, (substr($_[-1], -1, 1) eq "\n" ? () : "\n");
263 sub qerr ($;@) { $_[0]->{opt}->{quiet} or err(shift, @_) }
266 my ($self, $buf, $exit_code) = @_;
268 x_it($self, ($exit_code // 1) << 8);
273 my ($self, $errmsg) = @_;
274 my $cmd = $self->{cmd} // 'COMMAND';
275 my @info = @{$CMD{$cmd} // [ '...', '...' ]};
276 my @top = ($cmd, shift(@info) // ());
277 my $cmd_desc = shift(@info);
278 $cmd_desc = $cmd_desc->($self->{env}) if ref($cmd_desc) eq 'CODE';
281 for my $sw (grep { !ref } @info) { # ("prio=s", "z", $GLP_PASS)
282 my $desc = $OPTDESC{"$cmd\t$sw"} // $OPTDESC{$sw} // next;
284 ($arg_vals, $desc) = @$desc if ref($desc) eq 'ARRAY';
286 # lower-case is a keyword (e.g. `content', `oid'),
287 # ALL_CAPS is a string description (e.g. `PATH')
288 if ($desc !~ /default/ && $arg_vals =~ /\b([a-z]+)[,\|]/) {
289 $desc .= "\ndefault: `$1'";
293 if ($x =~ s/!\z//) { # solve! => --no-solve
295 } elsif ($x =~ s/:.+//) { # optional args: $x = "mid:s"
296 @vals = (' [', undef, ']');
297 } elsif ($x =~ s/=.+//) { # required arg: $x = "type=s"
298 @vals = (' ', undef);
299 } # else: no args $x = 'thread|t'
300 for (split(/\|/, $x)) { # help|h
301 length($_) > 1 ? push(@l, "--$_") : push(@s, "-$_");
303 if (!scalar(@vals)) { # no args 'thread|t'
304 } elsif ($arg_vals =~ s/\A([A-Z_]+)\b//) { # "NAME"
307 $vals[1] = uc(substr($l[0], 2)); # "--type" => "TYPE"
309 if ($arg_vals =~ /([,\|])/) {
311 my @allow = split(/\Q$sep\E/, $arg_vals);
312 my $must = $sep eq '|' ? 'Must' : 'Can';
313 @allow = map { "`$_'" } @allow;
314 my $last = pop @allow;
315 $desc .= "\n$must be one of: " .
316 join(', ', @allow) . " or $last";
318 my $lhs = join(', ', @s, @l) . join('', @vals);
319 if ($x =~ /\|\z/) { # "stdin|" or "clear|"
320 $lhs =~ s/\A--/- , --/;
322 $lhs =~ s/\A--/ --/; # pad if no short options
324 $lpad = length($lhs) if length($lhs) > $lpad;
325 push @opt_desc, $lhs, $desc;
327 my $msg = $errmsg ? "E: $errmsg\n" : '';
334 local $Text::Wrap::columns = 78 - $lpad;
335 my $padding = ' ' x ($lpad + 2);
336 while (my ($lhs, $rhs) = splice(@opt_desc, 0, 2)) {
337 $msg .= ' '.pack("A$lpad", $lhs);
338 $rhs = wrap('', '', $rhs);
339 $rhs =~ s/\n/\n$padding/sg; # LHS pad continuation lines
343 print { $self->{$errmsg ? 2 : 1} } $msg;
344 x_it($self, $errmsg ? 1 << 8 : 0); # stderr => failure
349 my ($self, $cmd, $argv) = @_;
351 $OPT = $self->{opt} = {};
352 my $info = $CMD{$cmd} // [ '[...]' ];
353 my ($proto, undef, @spec) = @$info;
354 my $glp = ref($spec[-1]) eq ref($GLP) ? pop(@spec) : $GLP;
355 push @spec, qw(help|h);
357 if ($spec[0] =~ s/\|\z//s) { # "stdin|" or "clear|" allows "-" alias
358 $lone_dash = $spec[0];
359 $OPT->{$spec[0]} = \(my $var);
360 push @spec, '' => \$var;
362 $glp->getoptionsfromarray($argv, $OPT, @spec) or
363 return _help($self, "bad arguments or options for $cmd");
364 return _help($self) if $OPT->{help};
366 push @$argv, @{$OPT->{-argv}} if defined($OPT->{-argv});
368 # "-" aliases "stdin" or "clear"
369 $OPT->{$lone_dash} = ${$OPT->{$lone_dash}} if defined $lone_dash;
372 my $POS_ARG = '[A-Z][A-Z0-9_]+';
374 my @args = split(/ /, $proto);
375 for my $var (@args) {
376 if ($var =~ /\A$POS_ARG\.\.\.\z/o) { # >= 1 args;
377 $inf = defined($argv->[$i]) and last;
378 $var =~ s/\.\.\.\z//;
379 $err = "$var not supplied";
380 } elsif ($var =~ /\A$POS_ARG\z/o) { # required arg at $i
381 $argv->[$i++] // ($err = "$var not supplied");
382 } elsif ($var =~ /\.\.\.\]\z/) { # optional args start
385 } elsif ($var =~ /\A\[-?$POS_ARG\]\z/) { # one optional arg
387 } elsif ($var =~ /\A.+?\|/) { # required FOO|--stdin
388 my @or = split(/\|/, $var);
391 if ($o =~ /\A--([a-z0-9\-]+)/) {
392 $ok = defined($OPT->{$1});
394 } elsif (defined($argv->[$i])) {
398 } # else continue looping
401 $err = join(', ', @or) . " or $last must be set";
403 warn "BUG: can't parse `$var' in $proto";
407 if (!$inf && scalar(@$argv) > scalar(@args)) {
408 $err //= 'too many arguments';
410 $err ? fail($self, "usage: lei $cmd $proto\nE: $err") : 1;
414 my ($self, $cmd, @argv) = @_;
415 local $SIG{__WARN__} = sub { err($self, @_) };
416 return _help($self, 'no command given') unless defined($cmd);
417 my $func = "lei_$cmd";
419 if (my $cb = __PACKAGE__->can($func)) {
420 optparse($self, $cmd, \@argv) or return;
422 } elsif (grep(/\A-/, $cmd, @argv)) { # --help or -h only
424 $GLP->getoptionsfromarray([$cmd, @argv], $opt, qw(help|h)) or
425 return _help($self, 'bad arguments or options');
428 fail($self, "`$cmd' is not an lei command");
433 my ($self, $creat) = @_;
434 my $f = _config_path($self->{env});
436 my $cur_st = @st ? pack('dd', $st[10], $st[7]) : ''; # 10:ctime, 7:size
437 if (my $cfg = $PATH2CFG{$f}) { # reuse existing object in common case
438 return ($self->{cfg} = $cfg) if $cur_st eq $cfg->{-st};
445 my (undef, $cfg_dir, undef) = File::Spec->splitpath($f);
446 -d $cfg_dir or mkpath($cfg_dir) or die "mkpath($cfg_dir): $!\n";
447 open my $fh, '>>', $f or die "open($f): $!\n";
448 @st = stat($fh) or die "fstat($f): $!\n";
449 $cur_st = pack('dd', $st[10], $st[7]);
450 qerr($self, "I: $f created") if $self->{cmd} ne 'config';
452 my $cfg = PublicInbox::Config::git_config_dump($f);
453 $cfg->{-st} = $cur_st;
455 $self->{cfg} = $PATH2CFG{$f} = $cfg;
458 sub _lei_store ($;$) {
459 my ($self, $creat) = @_;
460 my $cfg = _lei_cfg($self, $creat);
461 $cfg->{-lei_store} //= do {
462 require PublicInbox::LeiStore;
463 my $dir = $cfg->{'leistore.dir'};
464 $dir //= _store_path($self->{env}) if $creat;
466 PublicInbox::LeiStore->new($dir, { creat => $creat });
471 my ($self, @argv) = @_;
475 my ($self, @argv) = @_;
479 my ($self, @argv) = @_;
480 $self->{opt}->{'config-file'} and return fail $self,
481 "config file switches not supported by `lei config'";
482 my $env = $self->{env};
483 delete local $env->{GIT_CONFIG};
484 my $cfg = _lei_cfg($self, 1);
485 my $cmd = [ qw(git config -f), $cfg->{'-f'}, @argv ];
486 my %rdr = map { $_ => $self->{$_} } (0..2);
487 run_die($cmd, $env, \%rdr);
491 my ($self, $dir) = @_;
492 my $cfg = _lei_cfg($self, 1);
493 my $cur = $cfg->{'leistore.dir'};
494 my $env = $self->{env};
495 $dir //= _store_path($env);
496 $dir = File::Spec->rel2abs($dir, $env->{PWD}); # PWD is symlink-aware
497 my @cur = stat($cur) if defined($cur);
498 $cur = File::Spec->canonpath($cur // $dir);
499 my @dir = stat($dir);
500 my $exists = "I: leistore.dir=$cur already initialized" if @dir;
503 _lei_store($self, 1)->done;
504 return qerr($self, $exists);
507 # some folks like symlinks and bind mounts :P
508 if (@dir && "$cur[0] $cur[1]" eq "$dir[0] $dir[1]") {
509 lei_config($self, 'leistore.dir', $dir);
510 _lei_store($self, 1)->done;
511 return qerr($self, "$exists (as $cur)");
513 return fail($self, <<"");
514 E: leistore.dir=$cur already initialized and it is not $dir
517 lei_config($self, 'leistore.dir', $dir);
518 _lei_store($self, 1)->done;
519 $exists //= "I: leistore.dir=$dir newly initialized";
520 return qerr($self, $exists);
523 sub lei_daemon_pid { puts shift, $$ }
525 sub lei_daemon_kill {
527 my $sig = $self->{opt}->{signal} // 'TERM';
528 kill($sig, $$) or fail($self, "kill($sig, $$): $!");
531 sub lei_help { _help($_[0]) }
533 # Shell completion helper. Used by lei-completion.bash and hopefully
534 # other shells. Try to do as much here as possible to avoid redundancy
535 # and improve maintainability.
537 my ($self, @argv) = @_; # argv = qw(lei and any other args...)
538 shift @argv; # ignore "lei", the entire command is sent
539 @argv or return puts $self, grep(!/^_/, keys %CMD), qw(--help -h);
540 my $cmd = shift @argv;
541 my $info = $CMD{$cmd} // do { # filter matching commands
542 @argv or puts $self, grep(/\A\Q$cmd\E/, keys %CMD);
545 my ($proto, undef, @spec) = @$info;
547 my $re = defined($cur) ? qr/\A\Q$cur\E/ : qr/./;
548 if (substr($cur // '-', 0, 1) eq '-') { # --switches
549 # gross special case since the only git-config options
550 # Consider moving to a table if we need more special cases
551 # we use Getopt::Long for are the ones we reject, so these
552 # are the ones we don't reject:
553 if ($cmd eq 'config') {
554 puts $self, grep(/$re/, keys %CONFIG_KEYS);
555 @spec = qw(add z|null get get-all unset unset-all
556 replace-all get-urlmatch
557 remove-section rename-section
558 name-only list|l edit|e
559 get-color-name get-colorbool);
563 puts $self, grep(/$re/, map { # generate short/long names
565 if (s/=.+\z//) { # required arg, e.g. output|o=i
567 } elsif (s/:.+\z//) { # optional arg, e.g. mid:s
568 } else { # negation: solve! => no-solve|solve
569 s/\A(.+)!\z/no-$1|$1/;
572 length > 1 ? "--$_$eq" : "-$_"
573 } split(/\|/, $_, -1) # help|h
574 } grep { $OPTDESC{"$cmd\t$_"} || $OPTDESC{$_} } @spec);
575 } elsif ($cmd eq 'config' && !@argv && !$CONFIG_KEYS{$cur}) {
576 puts $self, grep(/$re/, keys %CONFIG_KEYS);
578 # TODO: URLs, pathnames, OIDs, MIDs, etc... See optparse() for
582 sub reap_exec { # dwaitpid callback
583 my ($self, $pid) = @_;
587 sub lei_git { # support passing through random git commands
588 my ($self, @argv) = @_;
589 my %rdr = map { $_ => $self->{$_} } (0..2);
590 my $pid = spawn(['git', @argv], $self->{env}, \%rdr);
591 dwaitpid($pid, \&reap_exec, $self);
594 # caller needs to "-t $self->{1}" to check if tty
597 my $env = $self->{env};
598 my $fh = popen_rd([qw(git var GIT_PAGER)], $env);
599 chomp(my $pager = <$fh> // '');
600 close($fh) or warn "`git var PAGER' error: \$?=$?";
601 return if $pager eq 'cat' || $pager eq '';
602 $env->{LESS} //= 'FRX';
604 $env->{COLUMNS} //= 80; # TODO TIOCGWINSZ
605 $env->{MORE} //= 'FRX' if $^O eq 'freebsd';
606 pipe(my ($r, $w)) or return warn "pipe: $!";
607 my $rdr = { 0 => $r, 1 => $self->{1}, 2 => $self->{2} };
609 $self->{2} = $w if -t $self->{2};
610 my $pid = spawn([$pager], $env, $rdr);
611 dwaitpid($pid, undef, $self->{sock});
612 $env->{GIT_PAGER_IN_USE} = 'true'; # we may spawn git
615 sub accept_dispatch { # Listener {post_accept} callback
616 my ($sock) = @_; # ignore other
619 my $self = bless { sock => $sock }, __PACKAGE__;
620 vec(my $rin = '', fileno($sock), 1) = 1;
621 # `say $sock' triggers "die" in lei(1)
622 if (select(my $rout = $rin, undef, undef, 1)) {
623 my @fds = $recv_3fds->(fileno($sock));
624 if (scalar(@fds) == 3) {
626 for my $rdr (qw(<&= >&= >&=)) {
627 my $fd = shift(@fds);
628 if (open(my $fh, $rdr, $fd)) {
631 say $sock "open($rdr$fd) (FD=$i): $!";
636 say $sock "recv_3fds failed: $!";
640 say $sock "timed out waiting to recv FDs";
643 $self->{2}->autoflush(1); # keep stdout buffered until x_it|DESTROY
644 # $ARGV_STR = join("]\0[", @ARGV);
645 # $ENV_STR = join('', map { "$_=$ENV{$_}\0" } keys %ENV);
646 # $line = "$$\0\0>$ARGV_STR\0\0>$ENV_STR\0\0";
647 my ($client_pid, $argv, $env) = do {
648 local $/ = "\0\0\0"; # yes, 3 NULs at EOL, not 2
649 chomp(my $line = <$sock>);
650 split(/\0\0>/, $line, 3);
652 my %env = map { split(/=/, $_, 2) } split(/\0/, $env);
653 if (chdir($env{PWD})) {
655 $self->{env} = \%env;
656 $self->{pid} = $client_pid;
657 eval { dispatch($self, split(/\]\0\[/, $argv)) };
660 say $sock "chdir($env{PWD}): $!"; # implicit close
664 # for long-running results
667 local %ENV = %{$self->{env}};
670 say { $self->{sock} } $@;
671 $self->close; # PublicInbox::DS::close
677 # lei(1) calls this when it can't connect
679 my ($path, $errno, $nfd) = @_;
680 if ($errno == ECONNREFUSED) {
681 unlink($path) or die "unlink($path): $!";
682 } elsif ($errno != ENOENT) {
683 $! = $errno; # allow interpolation to stringify in die
684 die "connect($path): $!";
686 umask(077) // die("umask(077): $!");
687 socket(my $l, AF_UNIX, SOCK_STREAM, 0) or die "socket: $!";
688 bind($l, pack_sockaddr_un($path)) or die "bind($path): $!";
689 listen($l, 1024) or die "listen: $!";
690 my @st = stat($path) or die "stat($path): $!";
691 my $dev_ino_expect = pack('dd', $st[0], $st[1]); # dev+ino
692 pipe(my ($eof_r, $eof_w)) or die "pipe: $!";
693 my $oldset = PublicInbox::DS::block_signals();
696 $recv_3fds = sub { map { IO::FDPass::recv($_[0]) } (0..2) };
697 } elsif ($nfd == 3) {
698 $recv_3fds = PublicInbox::Spawn->can('recv_3fds');
701 "IO::FDPass missing or Inline::C not installed/configured\n";
702 require PublicInbox::Listener;
703 require PublicInbox::EOFpipe;
704 (-p STDOUT) or die "E: stdout must be a pipe\n";
705 open(STDIN, '+<', '/dev/null') or die "redirect stdin failed: $!";
706 POSIX::setsid() > 0 or die "setsid: $!";
707 my $pid = fork // die "fork: $!";
709 $0 = "lei-daemon $path";
711 $_->blocking(0) for ($l, $eof_r, $eof_w);
712 $l = PublicInbox::Listener->new($l, \&accept_dispatch, $l);
715 $exit_code //= shift;
716 my $listener = $l or exit($exit_code);
717 unlink($path) if defined($path);
718 # closing eof_w triggers \&noop wakeup
719 $eof_w = $l = $path = undef;
720 $listener->close; # DS::close
721 PublicInbox::DS->SetLoopTimeout(1000);
723 PublicInbox::EOFpipe->new($eof_r, \&noop, undef);
725 CHLD => \&PublicInbox::DS::enqueue_reap,
733 my $sigfd = PublicInbox::Sigfd->new($sig, SFD_NONBLOCK);
734 local %SIG = (%SIG, %$sig) if !$sigfd;
735 if ($sigfd) { # TODO: use inotify/kqueue to detect unlinked sockets
736 PublicInbox::DS->SetLoopTimeout(5000);
738 # wake up every second to accept signals if we don't
739 # have signalfd or IO::KQueue:
740 PublicInbox::DS::sig_setmask($oldset);
741 PublicInbox::DS->SetLoopTimeout(1000);
743 PublicInbox::DS->SetPostLoopCallback(sub {
744 my ($dmap, undef) = @_;
745 if (@st = defined($path) ? stat($path) : ()) {
746 if ($dev_ino_expect ne pack('dd', $st[0], $st[1])) {
747 warn "$path dev/ino changed, quitting\n";
750 } elsif (defined($path)) {
751 warn "stat($path): $!, quitting ...\n";
752 undef $path; # don't unlink
755 return 1 if defined($path);
758 for my $s (values %$dmap) {
759 $s->can('busy') or next;
760 if ($s->busy($now)) {
766 $n; # true: continue, false: stop
769 # STDIN was redirected to /dev/null above, closing STDERR and
770 # STDOUT will cause the calling `lei' client process to finish
771 # reading the <$daemon> pipe.
772 openlog($path, 'pid', 'user');
773 local $SIG{__WARN__} = sub { syslog('warning', "@_") };
774 my $on_destroy = PublicInbox::OnDestroy->new($$, sub {
775 syslog('crit', "$@") if $@;
777 open STDERR, '>&STDIN' or die "redirect stderr failed: $!";
778 open STDOUT, '>&STDIN' or die "redirect stdout failed: $!";
779 # $daemon pipe to `lei' closed, main loop begins:
780 PublicInbox::DS->EventLoop;
781 @$on_destroy = (); # cancel on_destroy if we get here
782 exit($exit_code // 0);
785 # for users w/o IO::FDPass
788 my $exit = $main_pkg->can('exit'); # caller may override exit()
789 local $quit = $exit if $exit;
791 umask(077) // die("umask(077): $!");
797 }, __PACKAGE__), @ARGV);
800 # ensures stdout hits the FS before sock disconnects so a client
801 # can immediately reread it
804 $self->{1}->autoflush(1);