-
Notifications
You must be signed in to change notification settings - Fork 0
/
nivel4.c
258 lines (243 loc) · 5.78 KB
/
nivel4.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
/* nivel4.c - Parte 4 de Aventura 2 - Gian Lucas Martín Chamorro,
Tomás Bordoy García-Carpintero y Jordi Antoni Sastre Moll*/
#include "nivel4.h"
static struct info_process jobs_list[N_JOBS];
const char *nombreshell;
int main(int argc, char **argv)
{
signal(SIGCHLD, reaper);
signal(SIGINT, ctrlc);
char line[COMMAND_LINE_SIZE];
jobs_list[0].pid = 0;
jobs_list[0].status = 'F';
strcpy(jobs_list[0].command_line, "");
nombreshell = argv[0];
while (read_line(line))
{
execute_line(line);
}
return 0;
}
char *read_line(char *line)
{
char *ptr;
imprimir_prompt();
ptr = fgets(line, COMMAND_LINE_SIZE, stdin);
if (!ptr && !feof(stdin))
{
ptr = line;
ptr[0] = 0;
}
return ptr;
}
int imprimir_prompt()
{
printf(BOLD RED "%s", getenv("USER"));
printf(RESET ":");
printf(BOLD BLU "~%s", getenv("PWD"));
printf(RESET "$ ");
return 0;
}
int execute_line(char *line)
{
char *args[ARGS_SIZE];
pid_t pid;
strtok(line, "\n");
strcpy(jobs_list[0].command_line, line);
parse_args(args, line);
if (args[0] && !check_internal(args))
{
pid = fork();
if (pid == 0)
{ //hijo
signal(SIGCHLD, SIG_DFL); //acción por defecto
signal(SIGINT, SIG_IGN); //ignora la señal
fprintf(stderr, "[execute_line()→ PID hijo: %d(%s)]\n", getpid(), jobs_list[0].command_line);
execvp(args[0], args);
fprintf(stderr, "%s: no se encontró la orden\n", line);
exit(-1);
}
else if (pid > 0)
{ //padre
fprintf(stderr, "[execute_line()→ PID padre: %d(%s)]\n", getpid(), nombreshell);
jobs_list[0].pid = pid;
jobs_list[0].status = 'E';
while (jobs_list[0].pid != 0)
{
pause();
}
}
else
{
perror("fork");
}
}
return 0;
}
int parse_args(char **args, char *line)
{
const char delim[5] = " \t\n\r";
char *token;
int n = 0;
token = strtok(line, delim);
while (token)
{
if (token[0] == '#')
token = NULL;
args[n] = token;
n++;
token = strtok(NULL, delim);
}
args[n] = token;
n++;
return (n - 1);
}
int check_internal(char **args)
{
if (strcmp(args[0], "cd") == 0)
{
internal_cd(args);
return 1;
}
else if (strcmp(args[0], "export") == 0)
{
internal_export(args);
return 1;
}
else if (strcmp(args[0], "source") == 0)
{
internal_source(args);
return 1;
}
else if (strcmp(args[0], "jobs") == 0)
{
internal_jobs(args);
return 1;
}
else if (strcmp(args[0], "exit") == 0)
{
exit(EXIT_SUCCESS);
return 1;
}
else
{
return 0;
}
}
int internal_cd(char **args)
{
char cwd[256];
if (!args[1])
{
chdir("/home");
}
else if (chdir(args[1]) < 0)
{
perror("chdir");
return -1;
}
getcwd(cwd, sizeof(cwd));
setenv("PWD", cwd, 1);
return 0;
}
int internal_export(char **args)
{
const char delim[2] = "=";
char *evar; //Environment variable
char *value; //New environment variable value
if (!args[1] || !(evar = strtok(args[1], delim)) ||
!(value = strtok(NULL, "\n")))
{
fprintf(stderr, "Error de sintaxis. Uso: export Nombre=Valor\n");
return -1;
}
setenv(evar, value, 1);
return 0;
}
int internal_source(char **args)
{
if (!args[1])
{
fprintf(stderr, "Error de sintaxis. Uso: source <nombre_fichero>\n");
return -1;
}
FILE *fichero;
fichero = fopen(args[1], "r");
if (!fichero)
{
perror("fopen");
return -1;
}
char str[COMMAND_LINE_SIZE];
while (fgets(str, COMMAND_LINE_SIZE, fichero))
{
fflush(fichero);
fprintf(stderr, "[internal_source()→ LINE: %s]", str);
execute_line(str);
printf("\n");
}
fclose(fichero);
return 0;
}
int internal_jobs(char **args)
{
printf("El comando jobs lista el estatus de todos los trabajos activos.\n");
return 0;
}
void reaper(int signum)
{
signal(SIGCHLD, reaper);
int status;
pid_t pid;
while ((pid = waitpid(-1, &status, WNOHANG)) > 0)
{
if (WIFEXITED(status))
{
fprintf(stderr, "\n[reaper()→ Proceso hijo %d(%s) finalizado con exit code %d]\n", pid, jobs_list[0].command_line, WEXITSTATUS(status));
}
else if (WIFSIGNALED(status))
{
fprintf(stderr, "[reaper()→ Proceso hijo %d(%s) finalizado por señal %d]\n", pid, jobs_list[0].command_line, WTERMSIG(status));
}
jobs_list[0].pid = 0;
jobs_list[0].status = 'F';
strcpy(jobs_list[0].command_line, "");
}
}
void ctrlc(int signum)
{
signal(SIGINT, ctrlc);
printf("\n");
fflush(stdout);
if (jobs_list[0].pid > 0)
{
if (strcmp(jobs_list[0].command_line, nombreshell))
{
fprintf(stderr, "[ctrlc()→ Soy el proceso con PID %d(%s), el proceso en "
"foreground es %d (%s)]\n",
getpid(), nombreshell, jobs_list[0].pid, jobs_list[0].command_line);
printf("[ctrlc()→ Señal %d enviada a %d(%s) por %d(%s)]", SIGTERM, jobs_list[0].pid, jobs_list[0].command_line, getpid(), nombreshell);
kill(jobs_list[0].pid, SIGTERM);
}
else
{
fprintf(stderr, "[ctrlc()→ Soy el proceso con PID %d(%s), el "
"proceso en foreground es %d(%s)]\n",
getpid(), nombreshell, jobs_list[0].pid, jobs_list[0].command_line);
fprintf(stderr, "[ctrlc()→ Señal %d no enviada por %d(%s) debido a que"
" su proceso en foreground es el shell]",
SIGTERM, getpid(), nombreshell);
}
}
else
{
fprintf(stderr, "\n[ctrlc()→ Soy el proceso con PID %d(%s), el "
"proceso en foreground es %d(%s)]\n",
getpid(), nombreshell, jobs_list[0].pid, jobs_list[0].command_line);
fprintf(stderr, "[ctrlc()→ Señal %d no enviada por %d(%s)] debido a que no"
" hay proceso en foreground]",
SIGTERM, getpid(), nombreshell);
}
printf("\n");
fflush(stdout);
}