vfs: check userland buffers before reading them.
[haiku.git] / src / system / libroot / posix / unistd / system.cpp
bloba7102ead6387eea0d1263213e19a369cddd6425d
1 /*
2 * Copyright 2004-2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
6 #include <image.h>
8 #include <errno.h>
9 #include <pthread.h>
10 #include <stdlib.h>
11 #include <sys/wait.h>
12 #include <unistd.h>
14 #include <errno_private.h>
15 #include <syscall_utils.h>
18 extern "C" int
19 system(const char *command)
21 if (!command)
22 return 1;
24 const char *argv[] = { "/bin/sh", "-c", command, NULL };
25 int argc = 3;
27 thread_id thread = load_image(argc, argv, (const char **)environ);
28 if (thread < 0)
29 RETURN_AND_SET_ERRNO_TEST_CANCEL(thread);
31 resume_thread(thread);
33 int exitStatus;
34 pid_t result;
35 while ((result = waitpid(thread, &exitStatus, 0)) < 0
36 && errno == B_INTERRUPTED) {
37 // waitpid() was interrupted by a signal, retry...
40 if (result < 0)
41 return -1;
43 return exitStatus;