2 /* $NetBSD: nsparser.y,v 1.11 2009/02/05 13:21:11 lukem Exp $ */
5 * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
8 * This code is derived from software contributed to The NetBSD Foundation
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
20 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 * POSSIBILITY OF SUCH DAMAGE.
33 #include <sys/cdefs.h>
34 #if defined(LIBC_SCCS) && !defined(lint)
35 __RCSID
("$NetBSD: nsparser.y,v 1.11 2009/02/05 13:21:11 lukem Exp $");
36 #endif /* LIBC_SCCS and not lint */
38 #include "namespace.h"
48 static void _nsaddsrctomap __P
((const char *));
53 extern
char * _nsyytext
;
54 extern
int _nsyylineno
;
63 %token SUCCESS UNAVAIL NOTFOUND TRYAGAIN
64 %token RETURN CONTINUE
67 %type
<mapval
> Status Action
84 | Database
':' Srclist NL
88 lineno
= _nsyylineno
- (*_nsyytext
== '\n' ?
1 : 0);
89 if
(_nsdbtput
(&curdbt
) == -1)
91 "libc nsdispatch: %s line %d: %s",
92 _PATH_NS_CONF
, lineno
,
93 "error adding entry");
104 curdbt.name
= yylval.str
;
105 curdbt.srclist
= NULL
;
106 curdbt.srclistsize
= 0;
118 cursrc.flags
= NS_SUCCESS
;
121 | STRING
'[' { cursrc.flags
= NS_SUCCESS
; } Criteria
']'
135 if
($3) /* if action == RETURN set RETURN bit */
137 else
/* else unset it */
143 : SUCCESS
{ $$
= NS_SUCCESS
; }
144 | UNAVAIL
{ $$
= NS_UNAVAIL
; }
145 | NOTFOUND
{ $$
= NS_NOTFOUND
; }
146 | TRYAGAIN
{ $$
= NS_TRYAGAIN
; }
150 : RETURN
{ $$
= 1L; }
151 | CONTINUE
{ $$
= 0L; }
163 _DIAGASSERT
(elem
!= NULL
);
165 lineno
= _nsyylineno
- (*_nsyytext
== '\n' ?
1 : 0);
166 if
(curdbt.srclistsize
> 0) {
167 if
((strcasecmp
(elem
, NSSRC_COMPAT
) == 0) ||
168 (strcasecmp
(curdbt.srclist
[0].name
, NSSRC_COMPAT
) == 0)) {
170 "libc nsdispatch: %s line %d: %s",
171 _PATH_NS_CONF
, lineno
,
172 "'compat' used with other sources");
176 for
(i
= 0; i
< curdbt.srclistsize
; i
++) {
177 if
(strcasecmp
(curdbt.srclist
[i
].name
, elem
) == 0) {
179 "libc nsdispatch: %s line %d: %s '%s'",
180 _PATH_NS_CONF
, lineno
,
181 "duplicate source", elem
);
186 if
(_nsdbtaddsrc
(&curdbt
, &cursrc
) == -1) {
188 "libc nsdispatch: %s line %d: %s '%s'",
189 _PATH_NS_CONF
, lineno
,
190 "error adding", elem
);