about summary refs log tree commit diff
path: root/src/process/execvp.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-10-18 16:41:27 -0400
committerRich Felker <dalias@aerifal.cx>2012-10-18 16:41:27 -0400
commit97c8bdd88ae2ee03eb9d333a79fa669b3878fc76 (patch)
tree40ef974f6069b9dade949745dcb12e8db1a2ba51 /src/process/execvp.c
parent44eb4d8b9b7b3b539bcd4e311e9d7c8e2acf8d80 (diff)
downloadmusl-97c8bdd88ae2ee03eb9d333a79fa669b3878fc76.tar.gz
musl-97c8bdd88ae2ee03eb9d333a79fa669b3878fc76.tar.xz
musl-97c8bdd88ae2ee03eb9d333a79fa669b3878fc76.zip
fix parent-memory-clobber in posix_spawn (environ)
Diffstat (limited to 'src/process/execvp.c')
-rw-r--r--src/process/execvp.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/process/execvp.c b/src/process/execvp.c
index b2da44b9..682680dd 100644
--- a/src/process/execvp.c
+++ b/src/process/execvp.c
@@ -4,7 +4,9 @@
 #include <errno.h>
 #include <limits.h>
 
-int execvp(const char *file, char *const argv[])
+extern char **environ;
+
+int __execvpe(const char *file, char *const argv[], char *const envp[])
 {
 	const char *p, *z, *path = getenv("PATH");
 	size_t l, k;
@@ -13,7 +15,7 @@ int execvp(const char *file, char *const argv[])
 	if (!*file) return -1;
 
 	if (strchr(file, '/'))
-		return execv(file, argv);
+		return execve(file, argv, envp);
 
 	if (!path) path = "/usr/local/bin:/bin:/usr/bin";
 	k = strnlen(file, NAME_MAX+1);
@@ -34,9 +36,14 @@ int execvp(const char *file, char *const argv[])
 		memcpy(b, p, z-p);
 		b[z-p] = '/';
 		memcpy(b+(z-p)+(z>p), file, k+1);
-		execv(b, argv);
+		execve(b, argv, envp);
 		if (errno != ENOENT) return -1;
 		if (!*z++) break;
 	}
 	return -1;
 }
+
+int execvp(const char *file, char *const argv[])
+{
+	return __execvpe(file, argv, environ);
+}