blob: 0c7800112ff529d1e8da6f97430b43bddb06149c [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 {
Masahiro Yamadabb66fc62014-06-10 19:08:13 +090030 struct buffer *parent;
31 YY_BUFFER_STATE state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032};
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{
Alan Cox177acf72012-11-06 14:32:08 +000043 text = xmalloc(START_STRSIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 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{
Alan Cox177acf72012-11-06 14:32:08 +000065 text = xmalloc(size + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 memcpy(text, str, size);
67 text[size] = 0;
68}
Andreas Ruprechtc2264562015-07-12 09:41:50 +020069
70static void warn_ignored_character(char chr)
71{
72 fprintf(stderr,
73 "%s:%d:warning: ignoring unsupported character '%c'\n",
Masahiro Yamada7ff335e2018-12-11 20:00:44 +090074 current_file->name, yylineno, chr);
Andreas Ruprechtc2264562015-07-12 09:41:50 +020075}
Linus Torvalds1da177e2005-04-16 15:20:36 -070076%}
77
Andreas Ruprechtc2264562015-07-12 09:41:50 +020078n [A-Za-z0-9_-]
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80%%
81 int str = 0;
82 int ts, i;
83
Roman Zippela02f0572005-11-08 21:34:53 -080084[ \t]*#.*\n |
85[ \t]*\n {
86 current_file->lineno++;
87 return T_EOL;
88}
Linus Torvalds1da177e2005-04-16 15:20:36 -070089[ \t]*#.*
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92[ \t]+ {
93 BEGIN(COMMAND);
94}
95
96. {
97 unput(yytext[0]);
98 BEGIN(COMMAND);
99}
100
101
102<COMMAND>{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 {n}+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -0400104 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippela02f0572005-11-08 21:34:53 -0800105 BEGIN(PARAM);
106 current_pos.file = current_file;
107 current_pos.lineno = current_file->lineno;
Roman Zippel7a884882005-11-08 21:34:51 -0800108 if (id && id->flags & TF_COMMAND) {
Roman Zippel3370f9f2005-11-08 21:34:52 -0800109 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800110 return id->token;
111 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 alloc_string(yytext, yyleng);
113 zconflval.string = text;
114 return T_WORD;
115 }
Andreas Ruprechtc2264562015-07-12 09:41:50 +0200116 . warn_ignored_character(*yytext);
Roman Zippela02f0572005-11-08 21:34:53 -0800117 \n {
118 BEGIN(INITIAL);
119 current_file->lineno++;
120 return T_EOL;
121 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122}
123
124<PARAM>{
125 "&&" return T_AND;
126 "||" return T_OR;
127 "(" return T_OPEN_PAREN;
128 ")" return T_CLOSE_PAREN;
129 "!" return T_NOT;
130 "=" return T_EQUAL;
131 "!=" return T_UNEQUAL;
Jan Beulich31847b62015-06-15 13:00:21 +0100132 "<=" return T_LESS_EQUAL;
133 ">=" return T_GREATER_EQUAL;
134 "<" return T_LESS;
135 ">" return T_GREATER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 \"|\' {
137 str = yytext[0];
138 new_string();
139 BEGIN(STRING);
140 }
141 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
Andreas Ruprechtc2264562015-07-12 09:41:50 +0200142 ({n}|[/.])+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -0400143 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippel3370f9f2005-11-08 21:34:52 -0800144 if (id && id->flags & TF_PARAM) {
145 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800146 return id->token;
Roman Zippel3370f9f2005-11-08 21:34:52 -0800147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 alloc_string(yytext, yyleng);
149 zconflval.string = text;
150 return T_WORD;
151 }
152 #.* /* comment */
153 \\\n current_file->lineno++;
Jan Beulich2e0d7372015-01-20 12:52:48 +0000154 [[:blank:]]+
Andreas Ruprechtc2264562015-07-12 09:41:50 +0200155 . warn_ignored_character(*yytext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 <<EOF>> {
157 BEGIN(INITIAL);
158 }
159}
160
161<STRING>{
162 [^'"\\\n]+/\n {
163 append_string(yytext, yyleng);
164 zconflval.string = text;
165 return T_WORD_QUOTE;
166 }
167 [^'"\\\n]+ {
168 append_string(yytext, yyleng);
169 }
170 \\.?/\n {
171 append_string(yytext + 1, yyleng - 1);
172 zconflval.string = text;
173 return T_WORD_QUOTE;
174 }
175 \\.? {
176 append_string(yytext + 1, yyleng - 1);
177 }
178 \'|\" {
179 if (str == yytext[0]) {
180 BEGIN(PARAM);
181 zconflval.string = text;
182 return T_WORD_QUOTE;
183 } else
184 append_string(yytext, 1);
185 }
186 \n {
187 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
188 current_file->lineno++;
189 BEGIN(INITIAL);
190 return T_EOL;
191 }
192 <<EOF>> {
193 BEGIN(INITIAL);
Masahiro Yamada4f67ca02018-12-11 20:00:45 +0900194 yylval.string = text;
195 return T_WORD_QUOTE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 }
197}
198
199<HELP>{
200 [ \t]+ {
201 ts = 0;
202 for (i = 0; i < yyleng; i++) {
203 if (yytext[i] == '\t')
204 ts = (ts & ~7) + 8;
205 else
206 ts++;
207 }
208 last_ts = ts;
209 if (first_ts) {
210 if (ts < first_ts) {
211 zconf_endhelp();
212 return T_HELPTEXT;
213 }
214 ts -= first_ts;
215 while (ts > 8) {
216 append_string(" ", 8);
217 ts -= 8;
218 }
219 append_string(" ", ts);
220 }
221 }
222 [ \t]*\n/[^ \t\n] {
223 current_file->lineno++;
224 zconf_endhelp();
225 return T_HELPTEXT;
226 }
227 [ \t]*\n {
228 current_file->lineno++;
229 append_string("\n", 1);
230 }
231 [^ \t\n].* {
EGRY Gaborf7a4b4c2008-01-11 23:55:20 +0100232 while (yyleng) {
233 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
234 break;
235 yyleng--;
236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 append_string(yytext, yyleng);
238 if (!first_ts)
239 first_ts = last_ts;
240 }
241 <<EOF>> {
242 zconf_endhelp();
243 return T_HELPTEXT;
244 }
245}
246
247<<EOF>> {
Roman Zippela02f0572005-11-08 21:34:53 -0800248 if (current_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 zconf_endfile();
Roman Zippela02f0572005-11-08 21:34:53 -0800250 return T_EOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 }
252 fclose(yyin);
253 yyterminate();
254}
255
256%%
257void zconf_starthelp(void)
258{
259 new_string();
260 last_ts = first_ts = 0;
261 BEGIN(HELP);
262}
263
264static void zconf_endhelp(void)
265{
266 zconflval.string = text;
267 BEGIN(INITIAL);
268}
269
270
271/*
272 * Try to open specified file with following names:
273 * ./name
274 * $(srctree)/name
275 * The latter is used when srctree is separate from objtree
276 * when compiling the kernel.
277 * Return NULL if file is not found.
278 */
279FILE *zconf_fopen(const char *name)
280{
281 char *env, fullname[PATH_MAX+1];
282 FILE *f;
283
284 f = fopen(name, "r");
Marcin Garski11de39e2007-05-05 22:49:00 +0200285 if (!f && name != NULL && name[0] != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 env = getenv(SRCTREE);
287 if (env) {
288 sprintf(fullname, "%s/%s", env, name);
289 f = fopen(fullname, "r");
290 }
291 }
292 return f;
293}
294
295void zconf_initscan(const char *name)
296{
297 yyin = zconf_fopen(name);
298 if (!yyin) {
299 printf("can't find file %s\n", name);
300 exit(1);
301 }
302
Alan Cox177acf72012-11-06 14:32:08 +0000303 current_buf = xmalloc(sizeof(*current_buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 memset(current_buf, 0, sizeof(*current_buf));
305
306 current_file = file_lookup(name);
307 current_file->lineno = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
310void zconf_nextfile(const char *name)
311{
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100312 struct file *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 struct file *file = file_lookup(name);
Alan Cox177acf72012-11-06 14:32:08 +0000314 struct buffer *buf = xmalloc(sizeof(*buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 memset(buf, 0, sizeof(*buf));
316
317 current_buf->state = YY_CURRENT_BUFFER;
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400318 yyin = zconf_fopen(file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 if (!yyin) {
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400320 printf("%s:%d: can't open file \"%s\"\n",
321 zconf_curname(), zconf_lineno(), file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 exit(1);
323 }
324 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
325 buf->parent = current_buf;
326 current_buf = buf;
327
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100328 for (iter = current_file->parent; iter; iter = iter->parent ) {
329 if (!strcmp(current_file->name,iter->name) ) {
330 printf("%s:%d: recursive inclusion detected. "
331 "Inclusion path:\n current file : '%s'\n",
332 zconf_curname(), zconf_lineno(),
333 zconf_curname());
334 iter = current_file->parent;
335 while (iter && \
336 strcmp(iter->name,current_file->name)) {
337 printf(" included from: '%s:%d'\n",
338 iter->name, iter->lineno-1);
339 iter = iter->parent;
340 }
341 if (iter)
342 printf(" included from: '%s:%d'\n",
343 iter->name, iter->lineno+1);
344 exit(1);
345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 file->lineno = 1;
348 file->parent = current_file;
349 current_file = file;
350}
351
Roman Zippela02f0572005-11-08 21:34:53 -0800352static void zconf_endfile(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 struct buffer *parent;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 current_file = current_file->parent;
357
358 parent = current_buf->parent;
359 if (parent) {
360 fclose(yyin);
361 yy_delete_buffer(YY_CURRENT_BUFFER);
362 yy_switch_to_buffer(parent->state);
363 }
364 free(current_buf);
365 current_buf = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
368int zconf_lineno(void)
369{
Roman Zippela02f0572005-11-08 21:34:53 -0800370 return current_pos.lineno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Arnaud Lacombe2e7a0912010-09-04 16:03:30 -0400373const char *zconf_curname(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Roman Zippela02f0572005-11-08 21:34:53 -0800375 return current_pos.file ? current_pos.file->name : "<none>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376}