]> git.ipfire.org Git - thirdparty/public-inbox.git/commitdiff
treewide: use eof and close to detect readline errors
authorEric Wong <e@80x24.org>
Thu, 2 Nov 2023 09:35:37 +0000 (09:35 +0000)
committerEric Wong <e@80x24.org>
Fri, 3 Nov 2023 06:39:33 +0000 (06:39 +0000)
readline (<FH>) isn't wrapped by autodie, and there's no
way to know if read(2) errors truncated the readline output.
IO::Handle->error isn't reliable on Perl < v5.34.

Thus, combining the `eof' and `close' (combined with autodie) is
the only way we can detect read(2) errors (injected via strace)
when called via `readline' (aka <$fh>).  Neither using `eof'
nor `close' alone is sufficient, they must be combined to detect
errors from buffered `readline'.

lib/PublicInbox/CodeSearchIdx.pm
lib/PublicInbox/Gcf2.pm
lib/PublicInbox/LeiInput.pm
lib/PublicInbox/LeiMirror.pm
lib/PublicInbox/Spawn.pm

index ad915fa2b1a239087a4665ad5753d542d332dadd..0b00c303cf9d80bcc1e25d08eec4cfbedea7c83d 100644 (file)
@@ -57,7 +57,7 @@ use PublicInbox::Git qw(%OFMT2HEXLEN);
 use PublicInbox::Compat qw(uniqstr);
 use PublicInbox::Aspawn qw(run_await);
 use Carp ();
-use autodie qw(pipe open sysread seek sysseek send);
+use autodie qw(close pipe open sysread seek sysseek send);
 our $DO_QUIT = 15; # signal number
 our (
        $LIVE_JOBS, # integer
@@ -628,7 +628,7 @@ sub index_repo { # run_git cb
        my $roots_fh = delete $repo->{roots_fh} // die 'BUG: no {roots_fh}';
        seek($roots_fh, 0, SEEK_SET);
        chomp(my @roots = <$roots_fh>);
-       close($roots_fh);
+       $roots_fh = eof($roots_fh) | close $roots_fh; # detect readline errors
        if (!@roots) {
                warn("E: $git->{git_dir} has no root commits\n");
                return index_next($self);
index 502bf33a4824494067aaee9b5db671f4ccb8dbcf..6ee0d7d98579335df07bb4cd517813bb1dc2234d 100644 (file)
@@ -11,6 +11,7 @@ use Time::HiRes qw(clock_gettime CLOCK_MONOTONIC);
 use IO::Handle; # autoflush
 use PublicInbox::Git;
 use PublicInbox::Lock;
+use autodie qw(close);
 
 BEGIN {
        use autodie;
@@ -81,6 +82,7 @@ sub add_alt ($$) {
        # See https://bugs.debian.org/975607
        if (open(my $fh, '<', "$objdir/info/alternates")) {
                chomp(my @abs_alt = grep(m!^/!, <$fh>));
+               $fh = eof($fh) | close $fh; # detect readline errors
                $gcf2->add_alternate($_) for @abs_alt;
        }
        $gcf2->add_alternate($objdir);
index f7c3f573b0b99f098dd6c33254eefb667465057d..4cd18c093e978e08f8267335d7d5b960a85cfc64 100644 (file)
@@ -80,7 +80,8 @@ sub input_net_cb { # imap_each, nntp_each cb
 sub input_fh {
        my ($self, $ifmt, $fh, $name, @args) = @_;
        if ($ifmt eq 'eml') {
-               my $buf = do { local $/; <$fh> } //
+               my $buf = do { local $/; <$fh> };
+               (defined($buf) && eof($fh) && close($fh)) or
                        return $self->{lei}->child_error(0, <<"");
 error reading $name: $!
 
index fb6517bd5c7c3ae962692417f11ea9f7e239dfff..e4914f75ee832e9bbe14d4cbeff3e2717be770fb 100644 (file)
@@ -309,9 +309,9 @@ sub fgrp_update {
        seek($srcfh, 0, SEEK_SET);
        seek($dstfh, 0, SEEK_SET);
        my %src = map { chomp; split(/\0/) } (<$srcfh>);
-       close $srcfh;
        my %dst = map { chomp; split(/\0/) } (<$dstfh>);
-       close $dstfh;
+       $srcfh = eof($srcfh) | close $srcfh; # detects readline errors
+       $dstfh = eof($dstfh) | close $dstfh; # ditto
        my $w = start_update_ref($fgrp) or return;
        my $lei = $fgrp->{lei};
        my $ndel;
index b0edeb331e15ffb09f5dafbafaa9667ab363f11b..8c798b3931165ce358901512daf841d085872504 100644 (file)
@@ -22,7 +22,7 @@ use Carp qw(croak);
 use PublicInbox::IO;
 our @EXPORT_OK = qw(which spawn popen_rd popen_wr run_die run_wait run_qx);
 our @RLIMITS = qw(RLIMIT_CPU RLIMIT_CORE RLIMIT_DATA);
-use autodie qw(open pipe seek sysseek truncate);
+use autodie qw(close open pipe seek sysseek truncate);
 
 BEGIN {
        my $all_libc = <<'ALL_LIBC'; # all *nix systems we support
@@ -405,7 +405,7 @@ sub read_out_err ($) {
                my $dst = $opt->{$fd};
                $dst = $opt->{$fd} = $dst->[1] if ref($dst) eq 'ARRAY';
                $$dst .= <$fh>;
-               $fh->error and croak "E: read(FD=$fd): $!";
+               $fh = eof($fh) | close $fh; # detects readline errors
        }
 }