Pull up CVS idents from FreeBSD to match our current version.
[dragonfly.git] / usr.bin / rdist / gram.y
blob65c2bb84c4dc9ea41269a2c5468c598ba9b5b822
1 %{
2 /*
3 * Copyright (c) 1983, 1993
4 * The Regents of the University of California. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. All advertising materials mentioning features or use of this software
15 * must display the following acknowledgement:
16 * This product includes software developed by the University of
17 * California, Berkeley and its contributors.
18 * 4. Neither the name of the University nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
34 * @(#)gram.y 8.1 (Berkeley) 6/9/93
35 * $FreeBSD: src/usr.bin/rdist/gram.y,v 1.6 1999/08/28 01:05:07 peter Exp $
36 * $DragonFly: src/usr.bin/rdist/gram.y,v 1.4 2004/07/24 19:45:10 eirikn Exp $
39 #include <sys/types.h>
41 #include <limits.h>
42 #include <regex.h>
44 #include "defs.h"
46 struct cmd *cmds = NULL;
47 struct cmd *last_cmd;
48 struct namelist *last_n;
49 struct subcmd *last_sc;
51 static char *makestr(char *);
55 %term EQUAL 1
56 %term LP 2
57 %term RP 3
58 %term SM 4
59 %term ARROW 5
60 %term COLON 6
61 %term DCOLON 7
62 %term NAME 8
63 %term STRING 9
64 %term INSTALL 10
65 %term NOTIFY 11
66 %term EXCEPT 12
67 %term PATTERN 13
68 %term SPECIAL 14
69 %term OPTION 15
71 %union {
72 int intval;
73 char *string;
74 struct subcmd *subcmd;
75 struct namelist *namel;
78 %type <intval> OPTION, options
79 %type <string> NAME, STRING
80 %type <subcmd> INSTALL, NOTIFY, EXCEPT, PATTERN, SPECIAL, cmdlist, cmd
81 %type <namel> namelist, names, opt_namelist
85 file: /* VOID */
86 | file command
89 command: NAME EQUAL namelist = {
90 (void) lookup($1, INSERT, $3);
92 | namelist ARROW namelist cmdlist = {
93 insert(NULL, $1, $3, $4);
95 | NAME COLON namelist ARROW namelist cmdlist = {
96 insert($1, $3, $5, $6);
98 | namelist DCOLON NAME cmdlist = {
99 append(NULL, $1, $3, $4);
101 | NAME COLON namelist DCOLON NAME cmdlist = {
102 append($1, $3, $5, $6);
104 | error
107 namelist: NAME = {
108 $$ = makenl($1);
110 | LP names RP = {
111 $$ = $2;
115 names: /* VOID */ {
116 $$ = last_n = NULL;
118 | names NAME = {
119 if (last_n == NULL)
120 $$ = last_n = makenl($2);
121 else {
122 last_n->n_next = makenl($2);
123 last_n = last_n->n_next;
124 $$ = $1;
129 cmdlist: /* VOID */ {
130 $$ = last_sc = NULL;
132 | cmdlist cmd = {
133 if (last_sc == NULL)
134 $$ = last_sc = $2;
135 else {
136 last_sc->sc_next = $2;
137 last_sc = $2;
138 $$ = $1;
143 cmd: INSTALL options opt_namelist SM = {
144 register struct namelist *nl;
146 $1->sc_options = $2 | options;
147 if ($3 != NULL) {
148 nl = expand($3, E_VARS);
149 if (nl) {
150 if (nl->n_next != NULL)
151 yyerror("only one name allowed\n");
152 $1->sc_name = nl->n_name;
153 free(nl);
154 } else
155 $1->sc_name = NULL;
157 $$ = $1;
159 | NOTIFY namelist SM = {
160 if ($2 != NULL)
161 $1->sc_args = expand($2, E_VARS);
162 $$ = $1;
164 | EXCEPT namelist SM = {
165 if ($2 != NULL)
166 $1->sc_args = expand($2, E_ALL);
167 $$ = $1;
169 | PATTERN namelist SM = {
170 struct namelist *nl;
171 regex_t rx;
172 int val;
173 char errbuf[_POSIX2_LINE_MAX];
175 for (nl = $2; nl != NULL; nl = nl->n_next) {
176 if ((val = regcomp(&rx, nl->n_name,
177 REG_EXTENDED))) {
178 regerror(val, &rx, errbuf,
179 sizeof errbuf);
180 yyerror(errbuf);
182 regfree(&rx);
184 $1->sc_args = expand($2, E_VARS);
185 $$ = $1;
187 | SPECIAL opt_namelist STRING SM = {
188 if ($2 != NULL)
189 $1->sc_args = expand($2, E_ALL);
190 $1->sc_name = $3;
191 $$ = $1;
195 options: /* VOID */ = {
196 $$ = 0;
198 | options OPTION = {
199 $$ |= $2;
203 opt_namelist: /* VOID */ = {
204 $$ = NULL;
206 | namelist = {
207 $$ = $1;
213 int yylineno = 1;
214 extern FILE *fin;
217 yylex()
219 static char yytext[INMAX];
220 register int c;
221 register char *cp1, *cp2;
222 static char quotechars[] = "[]{}*?$";
224 again:
225 switch (c = getc(fin)) {
226 case EOF: /* end of file */
227 return(0);
229 case '#': /* start of comment */
230 while ((c = getc(fin)) != EOF && c != '\n')
232 if (c == EOF)
233 return(0);
234 case '\n':
235 yylineno++;
236 case ' ':
237 case '\t': /* skip blanks */
238 goto again;
240 case '=': /* EQUAL */
241 return(EQUAL);
243 case '(': /* LP */
244 return(LP);
246 case ')': /* RP */
247 return(RP);
249 case ';': /* SM */
250 return(SM);
252 case '-': /* -> */
253 if ((c = getc(fin)) == '>')
254 return(ARROW);
255 ungetc(c, fin);
256 c = '-';
257 break;
259 case '"': /* STRING */
260 cp1 = yytext;
261 cp2 = &yytext[INMAX - 1];
262 for (;;) {
263 if (cp1 >= cp2) {
264 yyerror("command string too long\n");
265 break;
267 c = getc(fin);
268 if (c == EOF || c == '"')
269 break;
270 if (c == '\\') {
271 if ((c = getc(fin)) == EOF) {
272 *cp1++ = '\\';
273 break;
276 if (c == '\n') {
277 yylineno++;
278 c = ' '; /* can't send '\n' */
280 *cp1++ = c;
282 if (c != '"')
283 yyerror("missing closing '\"'\n");
284 *cp1 = '\0';
285 yylval.string = makestr(yytext);
286 return(STRING);
288 case ':': /* : or :: */
289 if ((c = getc(fin)) == ':')
290 return(DCOLON);
291 ungetc(c, fin);
292 return(COLON);
294 cp1 = yytext;
295 cp2 = &yytext[INMAX - 1];
296 for (;;) {
297 if (cp1 >= cp2) {
298 yyerror("input line too long\n");
299 break;
301 if (c == '\\') {
302 if ((c = getc(fin)) != EOF) {
303 if (any(c, quotechars))
304 c |= QUOTE;
305 } else {
306 *cp1++ = '\\';
307 break;
310 *cp1++ = c;
311 c = getc(fin);
312 if (c == EOF || any(c, " \"'\t()=;:\n")) {
313 ungetc(c, fin);
314 break;
317 *cp1 = '\0';
318 if (yytext[0] == '-' && yytext[2] == '\0') {
319 switch (yytext[1]) {
320 case 'b':
321 yylval.intval = COMPARE;
322 return(OPTION);
324 case 'R':
325 yylval.intval = REMOVE;
326 return(OPTION);
328 case 'v':
329 yylval.intval = VERIFY;
330 return(OPTION);
332 case 'w':
333 yylval.intval = WHOLE;
334 return(OPTION);
336 case 'y':
337 yylval.intval = YOUNGER;
338 return(OPTION);
340 case 'h':
341 yylval.intval = FOLLOW;
342 return(OPTION);
344 case 'i':
345 yylval.intval = IGNLNKS;
346 return(OPTION);
349 if (!strcmp(yytext, "install"))
350 c = INSTALL;
351 else if (!strcmp(yytext, "notify"))
352 c = NOTIFY;
353 else if (!strcmp(yytext, "except"))
354 c = EXCEPT;
355 else if (!strcmp(yytext, "except_pat"))
356 c = PATTERN;
357 else if (!strcmp(yytext, "special"))
358 c = SPECIAL;
359 else {
360 yylval.string = makestr(yytext);
361 return(NAME);
363 yylval.subcmd = makesubcmd(c);
364 return(c);
368 any(register int c, register char *str)
370 while (*str)
371 if (c == *str++)
372 return(1);
373 return(0);
377 * Insert or append ARROW command to list of hosts to be updated.
379 void
380 insert(char *label, struct namelist *files, struct namelist *hosts, struct subcmd *subcmds)
382 register struct cmd *c, *prev, *nc;
383 register struct namelist *h, *next_h;
385 files = expand(files, E_VARS|E_SHELL);
386 hosts = expand(hosts, E_ALL);
387 for (h = hosts; h != NULL; next_h = h->n_next, free(h), h = next_h) {
389 * Search command list for an update to the same host.
391 for (prev = NULL, c = cmds; c!=NULL; prev = c, c = c->c_next) {
392 if (strcmp(c->c_name, h->n_name) == 0) {
393 do {
394 prev = c;
395 c = c->c_next;
396 } while (c != NULL &&
397 strcmp(c->c_name, h->n_name) == 0);
398 break;
402 * Insert new command to update host.
404 nc = ALLOC(cmd);
405 if (nc == NULL)
406 fatal("ran out of memory\n");
407 nc->c_type = ARROW;
408 nc->c_name = h->n_name;
409 nc->c_label = label;
410 nc->c_files = files;
411 nc->c_cmds = subcmds;
412 nc->c_next = c;
413 if (prev == NULL)
414 cmds = nc;
415 else
416 prev->c_next = nc;
417 /* update last_cmd if appending nc to cmds */
418 if (c == NULL)
419 last_cmd = nc;
424 * Append DCOLON command to the end of the command list since these are always
425 * executed in the order they appear in the distfile.
427 void
428 append(char *label, struct namelist *files, char *stamp, struct subcmd *subcmds)
430 register struct cmd *c;
432 c = ALLOC(cmd);
433 if (c == NULL)
434 fatal("ran out of memory\n");
435 c->c_type = DCOLON;
436 c->c_name = stamp;
437 c->c_label = label;
438 c->c_files = expand(files, E_ALL);
439 c->c_cmds = subcmds;
440 c->c_next = NULL;
441 if (cmds == NULL)
442 cmds = last_cmd = c;
443 else {
444 last_cmd->c_next = c;
445 last_cmd = c;
450 * Error printing routine in parser.
452 void
453 yyerror(s)
454 char *s;
456 ++nerrs;
457 fflush(stdout);
458 fprintf(stderr, "rdist: line %d: %s\n", yylineno, s);
462 * Return a copy of the string.
464 static char *
465 makestr(char *str)
467 register char *cp, *s;
469 str = cp = malloc(strlen(s = str) + 1);
470 if (cp == NULL)
471 fatal("ran out of memory\n");
472 while ((*cp++ = *s++))
474 return(str);
478 * Allocate a namelist structure.
480 struct namelist *
481 makenl(char *name)
483 register struct namelist *nl;
485 nl = ALLOC(namelist);
486 if (nl == NULL)
487 fatal("ran out of memory\n");
488 nl->n_name = name;
489 nl->n_next = NULL;
490 return(nl);
494 * Make a sub command for lists of variables, commands, etc.
496 struct subcmd *
497 makesubcmd(int type)
499 register struct subcmd *sc;
501 sc = ALLOC(subcmd);
502 if (sc == NULL)
503 fatal("ran out of memory\n");
504 sc->sc_type = type;
505 sc->sc_args = NULL;
506 sc->sc_next = NULL;
507 sc->sc_name = NULL;
508 return(sc);