kernel - Video - Add suppor for Intel IGD chipsets (netbook / N450 etc)
[dragonfly.git] / lib / libc / net / nsparser.y
blob2689efdb62737a6bb757b964c6f6c0e8e4924330
1 %{
2 /* $NetBSD: nsparser.y,v 1.3 1999/01/25 00:16:18 lukem Exp $ */
4 /*-
5 * Copyright (c) 1997, 1998, 1999 The NetBSD Foundation, Inc.
6 * All rights reserved.
8 * This code is derived from software contributed to The NetBSD Foundation
9 * by Luke Mewburn.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
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.
19 * 3. All advertising materials mentioning features or use of this software
20 * must display the following acknowledgement:
21 * This product includes software developed by the NetBSD
22 * Foundation, Inc. and its contributors.
23 * 4. Neither the name of The NetBSD Foundation nor the names of its
24 * contributors may be used to endorse or promote products derived
25 * from this software without specific prior written permission.
27 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 * POSSIBILITY OF SUCH DAMAGE.
39 * $FreeBSD: src/lib/libc/net/nsparser.y,v 1.6 2007/05/17 03:33:23 jon Exp $
42 #include "namespace.h"
43 #define _NS_PRIVATE
44 #include <nsswitch.h>
45 #include <stdio.h>
46 #include <string.h>
47 #include <syslog.h>
48 #include "un-namespace.h"
50 static void _nsaddsrctomap(const char *);
52 static ns_dbt curdbt;
53 static ns_src cursrc;
56 %union {
57 char *str;
58 int mapval;
61 %token NL
62 %token SUCCESS UNAVAIL NOTFOUND TRYAGAIN
63 %token RETURN CONTINUE
64 %token ERRORTOKEN
65 %token <str> STRING
67 %type <mapval> Status Action
71 File
72 : /* empty */
73 | Lines
76 Lines
77 : Entry
78 | Lines Entry
81 Entry
82 : NL
83 | Database ':' NL
85 free((char*)curdbt.name);
87 | Database ':' Srclist NL
89 _nsdbtput(&curdbt);
91 | error NL
93 yyerrok;
97 Database
98 : STRING
100 curdbt.name = yylval.str;
101 curdbt.srclist = NULL;
102 curdbt.srclistsize = 0;
106 Srclist
107 : Item
108 | Srclist Item
111 Item
112 : STRING
114 cursrc.flags = NS_TERMINATE;
115 _nsaddsrctomap($1);
117 | STRING '[' { cursrc.flags = NS_SUCCESS; } Criteria ']'
119 _nsaddsrctomap($1);
123 Criteria
124 : Criterion
125 | Criteria Criterion
128 Criterion
129 : Status '=' Action
131 if ($3) /* if action == RETURN set RETURN bit */
132 cursrc.flags |= $1;
133 else /* else unset it */
134 cursrc.flags &= ~$1;
138 Status
139 : SUCCESS { $$ = NS_SUCCESS; }
140 | UNAVAIL { $$ = NS_UNAVAIL; }
141 | NOTFOUND { $$ = NS_NOTFOUND; }
142 | TRYAGAIN { $$ = NS_TRYAGAIN; }
145 Action
146 : RETURN { $$ = NS_ACTION_RETURN; }
147 | CONTINUE { $$ = NS_ACTION_CONTINUE; }
152 static void
153 _nsaddsrctomap(const char *elem)
155 int i, lineno;
156 extern int _nsyylineno;
157 extern char * _nsyytext;
159 lineno = _nsyylineno - (*_nsyytext == '\n' ? 1 : 0);
160 if (curdbt.srclistsize > 0) {
161 if (((strcasecmp(elem, NSSRC_COMPAT) == 0) &&
162 (strcasecmp(curdbt.srclist[0].name, NSSRC_CACHE) != 0)) ||
163 (strcasecmp(curdbt.srclist[0].name, NSSRC_COMPAT) == 0)) {
164 syslog(LOG_ERR,
165 "NSSWITCH(nsparser): %s line %d: 'compat' used with sources, other than 'cache'",
166 _PATH_NS_CONF, lineno);
167 free((void*)elem);
168 return;
171 for (i = 0; i < curdbt.srclistsize; i++) {
172 if (strcasecmp(curdbt.srclist[i].name, elem) == 0) {
173 syslog(LOG_ERR,
174 "NSSWITCH(nsparser): %s line %d: duplicate source '%s'",
175 _PATH_NS_CONF, lineno, elem);
176 free((void*)elem);
177 return;
180 cursrc.name = elem;
181 _nsdbtaddsrc(&curdbt, &cursrc);