-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathshell.y
More file actions
executable file
·413 lines (353 loc) · 8.76 KB
/
shell.y
File metadata and controls
executable file
·413 lines (353 loc) · 8.76 KB
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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
/*
* CS-252 Spring 2013
* shell.y: parser for shell
*
* This parser compiles the following grammar:
*
* cmd [arg]* [> filename]
*
*
* cmd [arg]* [ | cmd [arg]* ]* [ [> filename] [< filename] [ >& filename] [>> filename] [>>& filename] ]* [&]
*
* you must extend it to understand the complete shell grammar
*
*/
%token <string_val> WORD
%token NOTOKEN NEWLINE GREAT GREATAMP GREATGREAT GREATGREATAMP LESS AMPERSAND PIPE
%union {
char *string_val;
}
%{
//#define yylex yylex
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <regex.h>
#include <dirent.h>
#include <assert.h>
#include "command.h"
#include <pwd.h>
#define MAXFILENAME 1024
char **array = NULL;
int nEntries = 0;
int maxEntries = 20;
void yyerror(const char * s);
void expandWildcardsIfNecessary(char * arg);
void expandWildcard(char * prefix, char *suffix);
int compare(const void *str1, const void *str2);
int yylex();
%}
%%
goal:
commands
;
commands:
command
| commands command
;
command: simple_command
;
simple_command:
pipe_list iomodifier_list background_opt NEWLINE {
//printf(" Yacc: Execute command\n");
Command::_currentCommand.execute();
}
| NEWLINE { Command::_currentCommand.prompt(); }
| error NEWLINE { yyerrok; }
;
pipe_list:
pipe_list PIPE command_and_args
| command_and_args
;
command_and_args:
command_word arg_list {
Command::_currentCommand.
insertSimpleCommand( Command::_currentSimpleCommand );
}
;
arg_list:
arg_list argument
| /* can be empty */
;
argument:
WORD {
//printf(" Yacc: insert argument \"%s\"\n", $1);
expandWildcardsIfNecessary($1);
}
;
command_word:
WORD {
//printf(" Yacc: insert command \"%s\"\n", $1);
Command::_currentSimpleCommand = new SimpleCommand();
Command::_currentSimpleCommand->insertArgument( $1 );
}
;
iomodifier_list:
iomodifier_list iomodifier_opt
| /* can be empty */
;
iomodifier_opt:
GREAT WORD {
//printf(" Yacc: insert output \"%s\"\n", $2);
Command::_currentCommand._outFile = $2;
Command::_currentCommand._outCount++;
}
|
GREATGREAT WORD {
//printf(" Yacc: append output \"%s\"\n", $2);
Command::_currentCommand._append = 1;
Command::_currentCommand._outFile = $2;
Command::_currentCommand._outCount++;
}
|
GREATAMP WORD {
//printf(" Yacc: insert error \"%s\"\n", $2);
Command::_currentCommand._errFile = $2;
Command::_currentCommand._errCount++;
}
|
GREATGREATAMP WORD {
//printf(" Yacc: append error \"%s\"\n", $2);
Command::_currentCommand._append = 1;
Command::_currentCommand._errFile = $2;
Command::_currentCommand._errCount++;
}
|
LESS WORD {
//printf(" Yacc: insert input \"%s\"\n", $2);
Command::_currentCommand._inputFile = $2;
Command::_currentCommand._inCount++;
}
;
background_opt:
AMPERSAND {
//printf(" Yacc: run in background YES\n");
Command::_currentCommand._background = 1;
}
| /* can be empty */
;
%%
void
yyerror(const char * s)
{
fprintf(stderr,"%s", s);
}
void expandWildcardsIfNecessary(char * arg)
{
// Return if arg does not contain ‘*’ or ‘?’
char *tempArg = strdup(arg);
if (strchr(tempArg, '*') == NULL && strchr(tempArg, '?') == NULL && strchr(tempArg, '~') == NULL)
{
Command::_currentSimpleCommand->insertArgument(tempArg);
return;
}
expandWildcard("", tempArg);
if(nEntries > 1)
qsort(array, nEntries, sizeof(char*), compare);
// Add arguments
for (int i = 0; i < nEntries; i++)
{
Command::_currentSimpleCommand->insertArgument(array[i]);
}
if(array != NULL)
free(array);
array = NULL;
nEntries = 0;
return;
}
void expandWildcard(char * prefix, char *suffix)
{
if (suffix[0]== 0) {
// suffix is empty. Put prefix in argument.
//Command::_currentSimpleCommand->insertArgument(strdup(prefix));
return;
}
bool dirFlag = false;
// Obtain the next component in the suffix
// Also advance suffix.
if(suffix[0] == '/')
{
dirFlag = true;
}
char * suffix_backup = suffix;
char * s = strchr(suffix, '/');
char component[MAXFILENAME];
for(int i = 0; i < MAXFILENAME; i++)
component[i] = 0;
if (s != NULL){ // Copy up to the first “/”
if(prefix[0] == 0 && dirFlag)
{
suffix = s+1;
s = strchr(suffix, '/');
if(s == NULL)
{
strcpy(component, suffix);
suffix = suffix + strlen(suffix);
prefix = "/";
}
else
{
strncpy(component,suffix, s-suffix);
suffix = s + 1;
prefix = "/";
}
}
else
{
strncpy(component,suffix, s-suffix);
suffix = s + 1;
}
}
else { // Last part of path. Copy whole thing.
strcpy(component, suffix);
suffix = suffix + strlen(suffix);
}
char tildePrefix[MAXFILENAME];
for(int i = 0; i < MAXFILENAME; i++)
tildePrefix[i] = 0;
if(component[0] == '~')
{
struct passwd *pwd;
if(strcmp(component, "~") == 0)
pwd = getpwnam(getenv("USER"));
else
pwd = getpwnam(component+1);
if(pwd == NULL)
printf("Could not access user %s.\n", component+1);
else
{
if(suffix[0] == 0 && prefix[0] == 0)
sprintf(tildePrefix,"%s",pwd->pw_dir);
else if(suffix[0] == 0)
sprintf(tildePrefix,"%s/%s",pwd->pw_dir, component);
else if(prefix[0] == 0)
sprintf(tildePrefix,"%s/%s",pwd->pw_dir, suffix);
expandWildcardsIfNecessary(tildePrefix);
return;
}
}
// Now we need to expand the component
char newPrefix[MAXFILENAME];
for(int i = 0; i < MAXFILENAME; i++)
newPrefix[i] = 0;
if (strchr(component, '*') == NULL && strchr(component, '?') == NULL) {
// component does not have wildcards
if(prefix[0] == 0 && !dirFlag)
sprintf(newPrefix,"%s",component);
else if(strcmp(prefix, "/") == 0)
sprintf(newPrefix,"/%s",component);
else
sprintf(newPrefix,"%s/%s",prefix,component);
expandWildcard(newPrefix, suffix);
return;
}
// Component has wildcards
// Convert component to regular expression
// 1. Convert wildcard to regular expression
// Convert “*” -> “.*”
// “?” -> “.”
// “.” -> “\.” and others you need
// Also add ^ at the beginning and $ at the end to match
// the beginning ant the end of the word.
// Allocate enough space for regular expression
char * reg = (char*)malloc(2*strlen(component)+10);
char * a = component;
char * r = reg;
*r = '^'; r++; // match beginning of line
while (*a)
{
if (*a == '*') { *r='.'; r++; *r='*'; r++; }
else if (*a == '?') { *r='.'; r++;}
else if (*a == '.') { *r='\\'; r++; *r='.'; r++;}
else { *r=*a; r++;}
a++;
}
*r='$'; r++; *r=0;// match end of line and add null char
// 2. compile regular expression
regex_t re;
regmatch_t match;
int result = regcomp( &re, reg, REG_EXTENDED|REG_NOSUB);
free(reg);
if (result != 0)
{
perror("Bad regular expression: compile");
return;
}
// 3. List directory and add as arguments the entries
// that match the regular expression
char * d;
if (prefix[0] == 0)
d = ".";
else d = prefix;
//printf("[2] Prefix: %s | Suffix: %s | Component: %s\n", prefix, suffix, component);
DIR * dir = opendir(d);
if (dir == NULL)
{
//perror("opendir");
return;
}
struct dirent * ent;
if(array == NULL)
array = (char**) malloc(maxEntries*sizeof(char*));
while ( (ent = readdir(dir))!= NULL) {
// Check if name matches
if (regexec(&re, ent->d_name, 1, &match, 0 ) == 0)
{
if(array != NULL && nEntries > 1)
qsort(array, nEntries, sizeof(char*), compare);
// Resize array if reached maxEntries
if (nEntries == maxEntries)
{
maxEntries *=2;
array = (char**) realloc(array, maxEntries*sizeof(char*));
assert(array!=NULL);
}
if (ent->d_name[0] == '.')
{
if (component[0] == '.')
{
if(prefix[0] == 0)
sprintf(newPrefix,"%s",ent->d_name);
else if(prefix[0] == '/' && prefix[1] == 0)
sprintf(newPrefix,"/%s",ent->d_name);
else
sprintf(newPrefix,"%s/%s",prefix,ent->d_name);
expandWildcard(newPrefix,suffix);
if(s == NULL)
{
array[nEntries]= strdup(newPrefix);
nEntries++;
}
}
}
else
{
if(prefix[0] == 0)
sprintf(newPrefix,"%s",ent->d_name);
else if(prefix[0] == '/' && prefix[1] == 0)
sprintf(newPrefix,"/%s",ent->d_name);
else
sprintf(newPrefix,"%s/%s",prefix,ent->d_name);
expandWildcard(newPrefix,suffix);
if(s == NULL)
{
array[nEntries]= strdup(newPrefix);
nEntries++;
}
}
}
}
closedir(dir);
return;
}
int compare(const void *str1, const void *str2)
{
return strcmp(*(char *const*)str1, *(char *const*)str2);
}
#if 0
main()
{
yyparse();
}
#endif