1 /* $KAME: lexer.l,v 1.7 2000/11/08 02:40:53 itojun Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * $FreeBSD: src/usr.sbin/rrenumd/lexer.l,v 1.1.2.2 2001/07/03 11:02:10 ume Exp $
36 #include <sys/param.h>
37 #include <sys/ioctl.h>
38 #include <sys/socket.h>
39 #include <sys/queue.h>
44 #if defined(__DragonFly__)
45 #include <net/if_var.h>
46 #endif /* __DragonFly__ */
48 #include <netinet/in.h>
49 #include <netinet/in_var.h>
50 #include <netinet/icmp6.h>
52 #include <arpa/inet.h>
58 #define LINEBUF_SIZE 1000
59 char linebuf[LINEBUF_SIZE];
62 void yyerror(const char *);
82 usec {dot}{digit}{1,6}
86 hexpair {hexdigit}{hexdigit}
87 hexstring 0[xX]{hexdigit}+
88 octetstring {octet}({dot}{octet})+
89 ipv4addr {digit}{1,3}({dot}{digit}{1,3}){0,3}
90 ipv6addr {hexdigit}{0,4}({colon}{hexdigit}{0,4}){2,7}
91 ipaddrmask {slash}{digit}{1,3}
92 keyword {letter}{letter}+
93 name {letter}(({letter}|{digit}|{hyphen})*({letter}|{digit}))*
94 hostname {name}(({dot}{name})+{dot}?)?
102 mprefix match_prefix|match-prefix
103 uprefix use_prefix|use-prefix
106 /* rrenumd keywords */
120 yylval.num = RPM_PCO_ADD;
124 yylval.num = RPM_PCO_CHANGE;
128 yylval.num = RPM_PCO_SETGLOBAL;
132 return(MATCH_PREFIX_CMD);
141 return(USE_PREFIX_CMD);
154 return(RAF_ONLINK_CMD);
157 return(RAF_AUTO_CMD);
160 return(RAF_DECRVALID_CMD);
163 return(RAF_DECRPREFD_CMD);
167 yylval.num = atoi(yytext);
172 yylval.num = atoi(yytext);
177 yylval.num = atoi(yytext);
182 yylval.num = atoi(yytext);
213 yylval.cs.cp = yytext;
214 yylval.cs.len = yyleng;
218 yylval.cs.cp = yytext;
219 yylval.cs.len = yyleng;
223 yylval.cs.cp = yytext;
224 yylval.cs.len = yyleng;
228 memset(&yylval.addr4, 0, sizeof(struct in_addr));
229 if (inet_pton(AF_INET, yytext,
230 &yylval.addr4) == 1) {
237 memset(&yylval.addr6, 0, sizeof(struct in6_addr));
238 if (inet_pton(AF_INET6, yytext,
239 &yylval.addr6) == 1) {
247 yylval.num = atoi(yytext);
251 yylval.cs.cp = yytext;
252 yylval.cs.len = yyleng;
259 extern int yyparse(void);
271 yyerror(const char *s)
273 printf("%s: at %s in line %d\n", s, yytext, lineno);