diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-31T08·31+0200 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-07-31T08·31+0200 |
commit | 50dc1f5b71f7e0e4ba628904b9a47d9f9d875b3e (patch) | |
tree | 770054765d335695236e3c1c26f952a9aa76ff29 | |
parent | 45f9a91e186d91edbf2bed7d27b7fa7227730596 (diff) |
Restore default SIGPIPE handler before invoking ‘man’
Fixes NixOS/nixpkgs#3410.
-rw-r--r-- | src/libmain/shared.cc | 6 | ||||
-rw-r--r-- | src/libstore/build.cc | 12 | ||||
-rw-r--r-- | src/libutil/util.cc | 10 | ||||
-rw-r--r-- | src/libutil/util.hh | 4 |
4 files changed, 17 insertions, 15 deletions
diff --git a/src/libmain/shared.cc b/src/libmain/shared.cc index 14263446fe2e..47c38e33e67b 100644 --- a/src/libmain/shared.cc +++ b/src/libmain/shared.cc @@ -244,9 +244,9 @@ static void initAndRun(int argc, char * * argv) void showManPage(const string & name) { - string cmd = "man " + name; - if (system(cmd.c_str()) != 0) - throw Error(format("command `%1%' failed") % cmd); + restoreSIGPIPE(); + execlp("man", "man", name.c_str(), NULL); + throw SysError(format("command `man %1%' failed") % name.c_str()); } diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 4376a8322c42..479bc4a243a2 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -413,18 +413,6 @@ const char * * strings2CharPtrs(const Strings & ss) } -/* Restore default handling of SIGPIPE, otherwise some programs will - randomly say "Broken pipe". */ -static void restoreSIGPIPE() -{ - struct sigaction act, oact; - act.sa_handler = SIG_DFL; - act.sa_flags = 0; - sigemptyset(&act.sa_mask); - if (sigaction(SIGPIPE, &act, &oact)) throw SysError("resetting SIGPIPE"); -} - - ////////////////////////////////////////////////////////////////////// diff --git a/src/libutil/util.cc b/src/libutil/util.cc index aa9d99ec3353..f762b79c24da 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -927,6 +927,16 @@ void closeOnExec(int fd) } +void restoreSIGPIPE() +{ + struct sigaction act, oact; + act.sa_handler = SIG_DFL; + act.sa_flags = 0; + sigemptyset(&act.sa_mask); + if (sigaction(SIGPIPE, &act, &oact)) throw SysError("resetting SIGPIPE"); +} + + ////////////////////////////////////////////////////////////////////// diff --git a/src/libutil/util.hh b/src/libutil/util.hh index ad0d377a4f5e..64250c522a52 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -273,6 +273,10 @@ void closeMostFDs(const set<int> & exceptions); /* Set the close-on-exec flag for the given file descriptor. */ void closeOnExec(int fd); +/* Restore default handling of SIGPIPE, otherwise some programs will + randomly say "Broken pipe". */ +void restoreSIGPIPE(); + /* User interruption. */ |