blob: 4f9d6e9ec92a95b85507d2a42dc6187b1809898b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#include "stdio_impl.h"
#include "syscall.h"
static inline void nc_close(int fd)
{
__syscall(SYS_close, fd);
}
#define close(x) nc_close(x)
FILE *popen(const char *cmd, const char *mode)
{
int p[2];
int op;
pid_t pid;
FILE *f;
const char *modes = "rw", *mi = strchr(modes, *mode);
if (mi) {
op = mi-modes;
} else {
errno = EINVAL;
return 0;
}
if (pipe(p)) return NULL;
f = fdopen(p[op], mode);
if (!f) {
close(p[0]);
close(p[1]);
return NULL;
}
pid = fork();
switch (pid) {
case -1:
fclose(f);
close(p[0]);
close(p[1]);
return NULL;
case 0:
if (dup2(p[1-op], 1-op) < 0) _exit(127);
if (p[0] != 1-op) close(p[0]);
if (p[1] != 1-op) close(p[1]);
execl("/bin/sh", "sh", "-c", cmd, (char *)0);
_exit(127);
}
close(p[1-op]);
f->pipe_pid = pid;
return f;
}
|