blob: 00f9d3a9cf8b96fd85639339019bf1bc2afab306 [file] [log] [blame]
Arnaud Lacombe674eed82011-06-07 13:34:05 -04001%option nostdinit noyywrap never-interactive full ecs
2%option 8bit nodefault perf-report perf-report
Adrian Bunkbe2be1d2008-07-17 02:07:59 +03003%option noinput
Linus Torvalds1da177e2005-04-16 15:20:36 -07004%x COMMAND HELP STRING PARAM
5%{
6/*
7 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
8 * Released under the terms of the GNU GPL v2.0.
9 */
10
11#include <limits.h>
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
15#include <unistd.h>
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "lkc.h"
18
19#define START_STRSIZE 16
20
Roman Zippela02f0572005-11-08 21:34:53 -080021static struct {
22 struct file *file;
23 int lineno;
24} current_pos;
25
Roman Zippel7a884882005-11-08 21:34:51 -080026static char *text;
Linus Torvalds1da177e2005-04-16 15:20:36 -070027static int text_size, text_asize;
28
29struct buffer {
30 struct buffer *parent;
31 YY_BUFFER_STATE state;
32};
33
34struct buffer *current_buf;
35
36static int last_ts, first_ts;
37
38static void zconf_endhelp(void);
Roman Zippela02f0572005-11-08 21:34:53 -080039static void zconf_endfile(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Josh Triplett65166572009-10-15 12:13:36 -070041static void new_string(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070042{
43 text = malloc(START_STRSIZE);
44 text_asize = START_STRSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070045 text_size = 0;
Roman Zippel7a884882005-11-08 21:34:51 -080046 *text = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047}
48
Josh Triplett65166572009-10-15 12:13:36 -070049static void append_string(const char *str, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050{
51 int new_size = text_size + size + 1;
52 if (new_size > text_asize) {
Roman Zippel7a884882005-11-08 21:34:51 -080053 new_size += START_STRSIZE - 1;
54 new_size &= -START_STRSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 text = realloc(text, new_size);
56 text_asize = new_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 }
Roman Zippel7a884882005-11-08 21:34:51 -080058 memcpy(text + text_size, str, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 text_size += size;
Roman Zippel7a884882005-11-08 21:34:51 -080060 text[text_size] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Josh Triplett65166572009-10-15 12:13:36 -070063static void alloc_string(const char *str, int size)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
65 text = malloc(size + 1);
66 memcpy(text, str, size);
67 text[size] = 0;
68}
69%}
70
71ws [ \n\t]
72n [A-Za-z0-9_]
73
74%%
75 int str = 0;
76 int ts, i;
77
Roman Zippela02f0572005-11-08 21:34:53 -080078[ \t]*#.*\n |
79[ \t]*\n {
80 current_file->lineno++;
81 return T_EOL;
82}
Linus Torvalds1da177e2005-04-16 15:20:36 -070083[ \t]*#.*
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86[ \t]+ {
87 BEGIN(COMMAND);
88}
89
90. {
91 unput(yytext[0]);
92 BEGIN(COMMAND);
93}
94
95
96<COMMAND>{
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 {n}+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -040098 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippela02f0572005-11-08 21:34:53 -080099 BEGIN(PARAM);
100 current_pos.file = current_file;
101 current_pos.lineno = current_file->lineno;
Roman Zippel7a884882005-11-08 21:34:51 -0800102 if (id && id->flags & TF_COMMAND) {
Roman Zippel3370f9f2005-11-08 21:34:52 -0800103 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800104 return id->token;
105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 alloc_string(yytext, yyleng);
107 zconflval.string = text;
108 return T_WORD;
109 }
110 .
Roman Zippela02f0572005-11-08 21:34:53 -0800111 \n {
112 BEGIN(INITIAL);
113 current_file->lineno++;
114 return T_EOL;
115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116}
117
118<PARAM>{
119 "&&" return T_AND;
120 "||" return T_OR;
121 "(" return T_OPEN_PAREN;
122 ")" return T_CLOSE_PAREN;
123 "!" return T_NOT;
124 "=" return T_EQUAL;
125 "!=" return T_UNEQUAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 \"|\' {
127 str = yytext[0];
128 new_string();
129 BEGIN(STRING);
130 }
131 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
132 --- /* ignore */
133 ({n}|[-/.])+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -0400134 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippel3370f9f2005-11-08 21:34:52 -0800135 if (id && id->flags & TF_PARAM) {
136 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800137 return id->token;
Roman Zippel3370f9f2005-11-08 21:34:52 -0800138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 alloc_string(yytext, yyleng);
140 zconflval.string = text;
141 return T_WORD;
142 }
143 #.* /* comment */
144 \\\n current_file->lineno++;
145 .
146 <<EOF>> {
147 BEGIN(INITIAL);
148 }
149}
150
151<STRING>{
152 [^'"\\\n]+/\n {
153 append_string(yytext, yyleng);
154 zconflval.string = text;
155 return T_WORD_QUOTE;
156 }
157 [^'"\\\n]+ {
158 append_string(yytext, yyleng);
159 }
160 \\.?/\n {
161 append_string(yytext + 1, yyleng - 1);
162 zconflval.string = text;
163 return T_WORD_QUOTE;
164 }
165 \\.? {
166 append_string(yytext + 1, yyleng - 1);
167 }
168 \'|\" {
169 if (str == yytext[0]) {
170 BEGIN(PARAM);
171 zconflval.string = text;
172 return T_WORD_QUOTE;
173 } else
174 append_string(yytext, 1);
175 }
176 \n {
177 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
178 current_file->lineno++;
179 BEGIN(INITIAL);
180 return T_EOL;
181 }
182 <<EOF>> {
183 BEGIN(INITIAL);
184 }
185}
186
187<HELP>{
188 [ \t]+ {
189 ts = 0;
190 for (i = 0; i < yyleng; i++) {
191 if (yytext[i] == '\t')
192 ts = (ts & ~7) + 8;
193 else
194 ts++;
195 }
196 last_ts = ts;
197 if (first_ts) {
198 if (ts < first_ts) {
199 zconf_endhelp();
200 return T_HELPTEXT;
201 }
202 ts -= first_ts;
203 while (ts > 8) {
204 append_string(" ", 8);
205 ts -= 8;
206 }
207 append_string(" ", ts);
208 }
209 }
210 [ \t]*\n/[^ \t\n] {
211 current_file->lineno++;
212 zconf_endhelp();
213 return T_HELPTEXT;
214 }
215 [ \t]*\n {
216 current_file->lineno++;
217 append_string("\n", 1);
218 }
219 [^ \t\n].* {
EGRY Gaborf7a4b4c2008-01-11 23:55:20 +0100220 while (yyleng) {
221 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
222 break;
223 yyleng--;
224 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 append_string(yytext, yyleng);
226 if (!first_ts)
227 first_ts = last_ts;
228 }
229 <<EOF>> {
230 zconf_endhelp();
231 return T_HELPTEXT;
232 }
233}
234
235<<EOF>> {
Roman Zippela02f0572005-11-08 21:34:53 -0800236 if (current_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 zconf_endfile();
Roman Zippela02f0572005-11-08 21:34:53 -0800238 return T_EOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 }
240 fclose(yyin);
241 yyterminate();
242}
243
244%%
245void zconf_starthelp(void)
246{
247 new_string();
248 last_ts = first_ts = 0;
249 BEGIN(HELP);
250}
251
252static void zconf_endhelp(void)
253{
254 zconflval.string = text;
255 BEGIN(INITIAL);
256}
257
258
259/*
260 * Try to open specified file with following names:
261 * ./name
262 * $(srctree)/name
263 * The latter is used when srctree is separate from objtree
264 * when compiling the kernel.
265 * Return NULL if file is not found.
266 */
267FILE *zconf_fopen(const char *name)
268{
269 char *env, fullname[PATH_MAX+1];
270 FILE *f;
271
272 f = fopen(name, "r");
Marcin Garski11de39e2007-05-05 22:49:00 +0200273 if (!f && name != NULL && name[0] != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 env = getenv(SRCTREE);
275 if (env) {
276 sprintf(fullname, "%s/%s", env, name);
277 f = fopen(fullname, "r");
278 }
279 }
280 return f;
281}
282
283void zconf_initscan(const char *name)
284{
285 yyin = zconf_fopen(name);
286 if (!yyin) {
287 printf("can't find file %s\n", name);
288 exit(1);
289 }
290
291 current_buf = malloc(sizeof(*current_buf));
292 memset(current_buf, 0, sizeof(*current_buf));
293
294 current_file = file_lookup(name);
295 current_file->lineno = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298void zconf_nextfile(const char *name)
299{
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100300 struct file *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct file *file = file_lookup(name);
302 struct buffer *buf = malloc(sizeof(*buf));
303 memset(buf, 0, sizeof(*buf));
304
305 current_buf->state = YY_CURRENT_BUFFER;
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400306 yyin = zconf_fopen(file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (!yyin) {
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400308 printf("%s:%d: can't open file \"%s\"\n",
309 zconf_curname(), zconf_lineno(), file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 exit(1);
311 }
312 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
313 buf->parent = current_buf;
314 current_buf = buf;
315
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100316 for (iter = current_file->parent; iter; iter = iter->parent ) {
317 if (!strcmp(current_file->name,iter->name) ) {
318 printf("%s:%d: recursive inclusion detected. "
319 "Inclusion path:\n current file : '%s'\n",
320 zconf_curname(), zconf_lineno(),
321 zconf_curname());
322 iter = current_file->parent;
323 while (iter && \
324 strcmp(iter->name,current_file->name)) {
325 printf(" included from: '%s:%d'\n",
326 iter->name, iter->lineno-1);
327 iter = iter->parent;
328 }
329 if (iter)
330 printf(" included from: '%s:%d'\n",
331 iter->name, iter->lineno+1);
332 exit(1);
333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 file->lineno = 1;
336 file->parent = current_file;
337 current_file = file;
338}
339
Roman Zippela02f0572005-11-08 21:34:53 -0800340static void zconf_endfile(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
342 struct buffer *parent;
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 current_file = current_file->parent;
345
346 parent = current_buf->parent;
347 if (parent) {
348 fclose(yyin);
349 yy_delete_buffer(YY_CURRENT_BUFFER);
350 yy_switch_to_buffer(parent->state);
351 }
352 free(current_buf);
353 current_buf = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
356int zconf_lineno(void)
357{
Roman Zippela02f0572005-11-08 21:34:53 -0800358 return current_pos.lineno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Arnaud Lacombe2e7a0912010-09-04 16:03:30 -0400361const char *zconf_curname(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
Roman Zippela02f0572005-11-08 21:34:53 -0800363 return current_pos.file ? current_pos.file->name : "<none>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364}