-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathfootobar.c
387 lines (352 loc) · 9.05 KB
/
footobar.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
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
/*
footobar.c: a collection of functions to convert internal representations of
variables and functions to external representations, and vice versa
*/
#include "rc.h"
#include "input.h"
/* protect an exported name from brain-dead shells */
#if PROTECT_ENV
static bool Fconv(Format *f, int ignore) {
unsigned const char *s = va_arg(f->args, unsigned const char *);
int c;
while ((c = *s++) != '\0')
if (dnw[c] || c == '*' || (c == '_' && *s == '_'))
fmtprint(f, "__%02x", c);
else
fmtputc(f, c);
return FALSE;
}
#endif
/* convert a redirection to a printable form */
static bool Dconv(Format *f, int ignore) {
const char *name = "?";
int n = va_arg(f->args, int);
switch (n) {
case rCreate: name = ">"; break;
case rAppend: name = ">>"; break;
case rFrom: name = "<"; break;
case rHeredoc: name = "<<"; break;
case rHerestring: name = "<<<"; break;
}
fmtcat(f, name);
return FALSE;
}
/* defaultfd -- return the default fd for a given redirection operation */
static int defaultfd(int op) {
return (op == rCreate || op == rAppend) ? 1 : 0;
}
/* convert a function in Node * form into something rc can parse (and humans can read?) */
static bool Tconv(Format *f, int ignore) {
bool dollar = f->flags & FMT_altform;
Node *n = va_arg(f->args, Node *);
if (n == NULL) {
fmtprint(f, "()");
return FALSE;
}
switch (n->type) {
case nBang: fmtprint(f, "!%T", n->u[0].p); break;
case nCase: fmtprint(f, "case %T", n->u[0].p); break;
case nNowait: fmtprint(f, "%T&", n->u[0].p); break;
case nRmfn: fmtprint(f, "fn %T", n->u[0].p); break;
case nSubshell: fmtprint(f, "@ %T", n->u[0].p); break;
case nAndalso: fmtprint(f, "%T&&%T", n->u[0].p, n->u[1].p); break;
case nAssign: fmtprint(f, "%T=%T", n->u[0].p, n->u[1].p); break;
case nConcat: fmtprint(f, "%T^%T", n->u[0].p, n->u[1].p); break;
case nElse: fmtprint(f, "{%T}else %T", n->u[0].p, n->u[1].p); break;
case nNewfn: fmtprint(f, "fn %T {%T}", n->u[0].p, n->u[1].p); break;
case nIf: fmtprint(f, "if(%T)%T", n->u[0].p, n->u[1].p); break;
case nOrelse: fmtprint(f, "%T||%T", n->u[0].p, n->u[1].p); break;
case nArgs: fmtprint(f, "%T %T", n->u[0].p, n->u[1].p); break;
case nSwitch: fmtprint(f, "switch(%T){%T}", n->u[0].p, n->u[1].p); break;
case nMatch: fmtprint(f, "~ %T %T", n->u[0].p, n->u[1].p); break;
case nWhile: fmtprint(f, "while(%T)%T", n->u[0].p, n->u[1].p); break;
case nForin: fmtprint(f, "for(%T in %T)%T", n->u[0].p, n->u[1].p, n->u[2].p); break;
case nVarsub: fmtprint(f, "$%T(%T)", n->u[0].p, n->u[1].p); break;
case nWord:
fmtprint(f, n->u[2].i && quotep(n->u[0].s, dollar) ?
"%#S" : "%S", n->u[0].s);
break;
case nLappend: {
static bool inlist;
if (!inlist) {
inlist = TRUE;
fmtprint(f, "(%T %T)", n->u[0].p, n->u[1].p);
inlist = FALSE;
} else {
fmtprint(f, "%T %T", n->u[0].p, n->u[1].p);
}
break;
}
case nCount: case nFlat: case nVar: {
char *lp = "", *rp = "";
Node *n0 = n->u[0].p;
if (n0->type != nWord)
lp = "(", rp = ")";
switch (n->type) {
default: panic("this can't happen"); break;
case nCount: fmtprint(f, "$#%s%#T%s", lp, n0, rp); break;
case nFlat: fmtprint(f, "$^%s%#T%s", lp, n0, rp); break;
case nVar: fmtprint(f, "$%s%#T%s", lp, n0, rp); break;
}
break;
}
case nDup:
if (n->u[2].i != -1)
fmtprint(f, "%D[%d=%d]", n->u[0].i, n->u[1].i, n->u[2].i);
else
fmtprint(f, "%D[%d=]", n->u[0].i, n->u[1].i);
break;
case nBackq: {
Node *n0 = n->u[0].p, *n00;
if (n0 != NULL && n0->type == nVar
&& (n00 = n0->u[0].p) != NULL && n00->type == nWord && streq(n00->u[0].s, "ifs"))
fmtprint(f, "`");
else
fmtprint(f, "``%T", n0);
fmtprint(f, "{%T}", n->u[1].p);
break;
}
case nCbody:
case nBody: {
Node *n0 = n->u[0].p;
if (n0 != NULL)
fmtprint(f, "%T", n->u[0].p);
if (n->u[1].p != NULL) {
if (n0 != NULL && n0->type != nNowait)
fmtprint(f, ";");
fmtprint(f, "%T", n->u[1].p);
}
break;
}
case nBrace:
fmtprint(f, "{%T}", n->u[0].p);
if (n->u[1].p != NULL)
fmtprint(f, "%T", n->u[1].p);
break;
case nEpilog:
case nPre:
fmtprint(f, "%T", n->u[0].p);
if (n->u[1].p != NULL)
fmtprint(f, " %T", n->u[1].p);
break;
case nPipe: {
int ofd = n->u[0].i, ifd = n->u[1].i;
fmtprint(f, "%T|", n->u[2].p);
if (ifd != 0)
fmtprint(f, "[%d=%d]", ofd, ifd);
else if (ofd != 1)
fmtprint(f, "[%d]", ofd);
fmtprint(f, "%T", n->u[3].p);
break;
}
case nRedir: {
int op = n->u[0].i;
fmtprint(f, "%D", op);
if (n->u[1].i != defaultfd(op))
fmtprint(f, "[%d]", n->u[1].i);
fmtprint(f, "%T", n->u[2].p);
break;
}
case nNmpipe: {
int op = n->u[0].i;
fmtprint(f, "%D", op);
if (n->u[1].i != defaultfd(op))
fmtprint(f, "[%d]", n->u[1].i);
fmtprint(f, "{%T}", n->u[2].p);
break;
}
}
return FALSE;
}
/* convert a List to an array, for execve() */
extern char **list2array(List *s, bool print) {
char **argv, **av;
if (print)
fprint(2, "%L\n", s, " ");
/*
Allocate 3 extra spots (2 for the fake execve & 1 for defaulting to
sh) and hide these from exec().
*/
argv = av = (char **) nalloc((listnel(s) + 4) * sizeof *av) + 3;
while (s != NULL) {
*av++ = s->w;
s = s->n;
}
*av = NULL;
return argv;
}
/* figure out the name of a variable given an environment string. */
extern char *get_name(char *s) {
char *eq = strchr(s, '=');
char *r, *result;
int c;
if (eq == NULL)
return NULL;
r = result = nalloc(eq - s + 1);
while (1)
switch (c = *s++) {
case '=':
*r++ = '\0';
return result;
#if PROTECT_ENV
case '_':
if (*s == '_') {
static const char hexchar[] = "0123456789abcdef";
char *h1 = strchr(hexchar, s[1]);
char *h2 = strchr(hexchar, s[2]);
if (h1 != NULL && h2 != NULL) {
*r++ = ((h1 - hexchar) << 4) | (h2 - hexchar);
s += 3;
break;
}
}
/* FALLTHROUGH */
#endif
default:
*r++ = c;
break;
}
}
/* interpret a variable from environment. ^A separates list elements;
^B escapes a literal ^A or ^B. For minimal surprise, ^B followed
by anything other than ^A or ^B is preserved. */
extern List *parse_var(char *extdef) {
char *begin, *end, *from, *to;
int len;
List *first, *last, *new;
first = last = NULL;
begin = strchr(extdef, '=');
assert(begin); /* guaranteed by initenv() */
while (*begin) {
++begin;
end = begin;
len = 0;
while (*end != ENV_SEP && *end != '\0') {
if (*end == ENV_ESC) {
++end;
if (*end != ENV_SEP && *end != ENV_ESC) --end;
}
++end; ++len;
}
new = enew(List);
if (last)
last->n = new;
else
first = new;
last = new;
new->w = ealloc(len + 1);
new->m = NULL;
new->n = NULL;
to = new->w;
for (from = begin; from < end; ++from) {
if (*from == ENV_ESC) {
++from;
if (*from != ENV_SEP && *from != ENV_ESC)
--from;
}
*to = *from;
++to;
}
*to = '\0';
begin = end;
}
return first;
}
/* get an environment entry for a function and have rc parse it. */
#define PREFIX "fn x"
#define PRELEN conststrlen(PREFIX)
extern Node *parse_fn(char *extdef) {
Node *def;
char *s, old[PRELEN];
if ((s = strchr(extdef, '=')) == NULL)
return NULL;
memcpy(old, s -= (PRELEN-1), PRELEN);
memcpy(s, PREFIX, PRELEN);
def = parseline(s);
memcpy(s, old, PRELEN);
return (def == NULL || def->type != nNewfn) ? NULL : def->u[1].p;
}
static bool Aconv(Format *f, int ignore) {
char **a = va_arg(f->args, char **);
if (*a != NULL) {
fmtcat(f, *a);
while (*++a != NULL)
fmtprint(f, " %s", *a);
}
return FALSE;
}
/* %L -- print a list */
static bool Lconv(Format *f, int ignore) {
bool plain;
char *sep;
List *l, *n;
plain = f->flags & FMT_leftside;
l = va_arg(f->args, List *);
sep = va_arg(f->args, char *);
if (l == NULL && (f->flags & FMT_leftside) == 0)
fmtprint(f, "()");
else {
for (; l != NULL; l = n) {
n = l->n;
fmtprint(f, plain ? "%s" : "%-S", l->w);
if (n != NULL) fmtputc(f, *sep);
}
}
return FALSE;
}
/* %W -- print a list for exporting */
static bool Wconv(Format *f, int ignore) {
List *l, *n;
l = va_arg(f->args, List *);
for (; l != NULL; l = n) {
char c, *s;
for (s = l->w; (c = *s) != '\0'; ++s) {
if (c == ENV_SEP || c == ENV_ESC)
fmtputc(f, ENV_ESC);
fmtputc(f, c);
}
n = l->n;
if (n != NULL) fmtputc(f, ENV_SEP);
}
return FALSE;
}
#define ISMETA(c) (c == '*' || c == '?' || c == '[')
static bool Sconv(Format *f, int ignore) {
int c;
unsigned char *s = va_arg(f->args, unsigned char *), *t = s;
bool quoted = (f->flags & FMT_altform) != 0; /* '#' */
bool metaquote = (f->flags & FMT_leftside) != 0; /* '-' */
if (*s == '\0') {
fmtprint(f, "''");
return FALSE;
}
if (!quoted) {
while ((c = *t++) != '\0')
if (nw[c] == 1 || (metaquote && ISMETA(c)))
goto quoteit;
fmtprint(f, "%s", s);
return FALSE;
}
quoteit:
fmtputc(f, '\'');
while ((c = *s++) != '\0') {
fmtputc(f, c);
if (c == '\'')
fmtputc(f, '\'');
}
fmtputc(f, '\'');
return FALSE;
}
void initprint(void) {
fmtinstall('A', Aconv);
fmtinstall('L', Lconv);
fmtinstall('S', Sconv);
fmtinstall('T', Tconv);
fmtinstall('D', Dconv);
fmtinstall('W', Wconv);
#if PROTECT_ENV
fmtinstall('F', Fconv);
#else
fmtinstall('F', fmtinstall('s', NULL));
#endif
}