Skip to content

Commit

Permalink
Fix dlang#10574 - environment pointer sometimes changes before exec, …
Browse files Browse the repository at this point in the history
…causing

segfault in child process.
  • Loading branch information
schveiguy committed Dec 5, 2024
1 parent bf6e70b commit 7246a91
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions std/process.d
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@ private Pid spawnProcessPosix(scope const(char[])[] args,
}

// Execute program.
core.sys.posix.unistd.execve(argz[0], argz.ptr, envz);
core.sys.posix.unistd.execve(argz[0], argz.ptr, envz is null ? getEnvironPtr : envz);

// If execution fails, exit as quickly as possible.
abortOnError(forkPipeOut, InternalError.exec, .errno);
Expand Down Expand Up @@ -1421,7 +1421,7 @@ private Pid spawnProcessWin(scope const(char)[] commandLine,
// on the form "name=value", optionally adding those of the current process'
// environment strings that are not present in childEnv. If the parent's
// environment should be inherited without modification, this function
// returns environ directly.
// returns null.
version (Posix)
private const(char*)* createEnv(const string[string] childEnv,
bool mergeWithParentEnv)
Expand All @@ -1431,7 +1431,7 @@ private const(char*)* createEnv(const string[string] childEnv,
auto environ = getEnvironPtr;
if (mergeWithParentEnv)
{
if (childEnv.length == 0) return environ;
if (childEnv.length == 0) return null;
while (environ[parentEnvLength] != null) ++parentEnvLength;
}

Expand Down Expand Up @@ -1461,16 +1461,7 @@ version (Posix) @system unittest
assert(e1 != null && *e1 == null);

auto e2 = createEnv(null, true);
assert(e2 != null);
int i = 0;
auto environ = getEnvironPtr;
for (; environ[i] != null; ++i)
{
assert(e2[i] != null);
import core.stdc.string : strcmp;
assert(strcmp(e2[i], environ[i]) == 0);
}
assert(e2[i] == null);
assert(e2 == null);

auto e3 = createEnv(["foo" : "bar", "hello" : "world"], false);
assert(e3 != null && e3[0] != null && e3[1] != null && e3[2] == null);
Expand Down

0 comments on commit 7246a91

Please sign in to comment.