-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexec.c
82 lines (77 loc) · 1.42 KB
/
exec.c
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#include "shells.h"
/**
* execute_command - execute commands if command is detected
* @args: command to be executed
* Return: 0 on success
* -1 on failure
*/
int execute_command(char **args)
{
if (args[0] == NULL)
return (0);
if (access(args[0], X_OK) == 0)
{
pid_t child = fork();
if (child == -1)
{
perror("problem");
return (-1);
} else if (child == 0)
{
execve(args[0], args, environ);
perror("execve");
_exit(EXIT_FAILURE);
} else
{
int status, exit_status;
waitpid(child, &status, 0);
if ((status & 255) == 0)
exit_status = (status >> 8) & 255;
else
exit_status = -1;
return (exit_status);
}
} else
{
char path[256], *binDirectory = "/bin/";
int i = 0, j = 0;
while (binDirectory[i] != '\0')
{
path[i] = binDirectory[i];
i++;
} while (args[0][j] != '\0')
{
path[i] = args[0][j];
i++;
j++;
} path[i] = '\0';
if (access(path, X_OK) == 0)
{
pid_t child = fork();
if (child == -1)
{
perror("problem");
return (-1);
} else if (child == 0)
{
execve(path, args, environ);
perror("execve");
_exit(EXIT_FAILURE);
} else
{
int status;
int exit_status;
waitpid(child, &status, 0);
if ((status & 0xff) == 0)
exit_status = (status >> 8) & 0xff;
else
exit_status = -1;
return (exit_status);
}
} else
{
write(STDOUT_FILENO, "Command not found.\n", 19);
return (-1);
}
}
}