mirror of
https://github.com/NixOS/nix
synced 2025-06-27 08:31:16 +02:00
Call commonChildInit() before doing chroot init
This ensures that daemon clients see error messages from the chroot setup.
This commit is contained in:
parent
eea0401d7a
commit
4c4b219c07
2 changed files with 16 additions and 12 deletions
|
@ -466,10 +466,18 @@ void warnOnce(bool & haveWarned, const FormatOrString & fs)
|
|||
}
|
||||
|
||||
|
||||
static void defaultWriteToStderr(const unsigned char * buf, size_t count)
|
||||
{
|
||||
writeFull(STDERR_FILENO, buf, count);
|
||||
}
|
||||
|
||||
|
||||
void writeToStderr(const string & s)
|
||||
{
|
||||
try {
|
||||
_writeToStderr((const unsigned char *) s.data(), s.size());
|
||||
auto p = _writeToStderr;
|
||||
if (!p) p = defaultWriteToStderr;
|
||||
p((const unsigned char *) s.data(), s.size());
|
||||
} catch (SysError & e) {
|
||||
/* Ignore failing writes to stderr if we're in an exception
|
||||
handler, otherwise throw an exception. We need to ignore
|
||||
|
@ -481,12 +489,6 @@ void writeToStderr(const string & s)
|
|||
}
|
||||
|
||||
|
||||
static void defaultWriteToStderr(const unsigned char * buf, size_t count)
|
||||
{
|
||||
writeFull(STDERR_FILENO, buf, count);
|
||||
}
|
||||
|
||||
|
||||
void (*_writeToStderr) (const unsigned char * buf, size_t count) = defaultWriteToStderr;
|
||||
|
||||
|
||||
|
@ -849,7 +851,7 @@ pid_t startProcess(std::function<void()> fun, const string & errorPrefix)
|
|||
if (pid == -1) throw SysError("unable to fork");
|
||||
|
||||
if (pid == 0) {
|
||||
_writeToStderr = defaultWriteToStderr;
|
||||
_writeToStderr = 0;
|
||||
try {
|
||||
restoreAffinity();
|
||||
fun();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue