blob: 6c62d93b4ffbd018807993788fb78848d176d67d [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}
69%}
70
Linus Torvalds1da177e2005-04-16 15:20:36 -070071n [A-Za-z0-9_]
72
73%%
74 int str = 0;
75 int ts, i;
76
Roman Zippela02f0572005-11-08 21:34:53 -080077[ \t]*#.*\n |
78[ \t]*\n {
79 current_file->lineno++;
80 return T_EOL;
81}
Linus Torvalds1da177e2005-04-16 15:20:36 -070082[ \t]*#.*
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85[ \t]+ {
86 BEGIN(COMMAND);
87}
88
89. {
90 unput(yytext[0]);
91 BEGIN(COMMAND);
92}
93
94
95<COMMAND>{
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 {n}+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -040097 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippela02f0572005-11-08 21:34:53 -080098 BEGIN(PARAM);
99 current_pos.file = current_file;
100 current_pos.lineno = current_file->lineno;
Roman Zippel7a884882005-11-08 21:34:51 -0800101 if (id && id->flags & TF_COMMAND) {
Roman Zippel3370f9f2005-11-08 21:34:52 -0800102 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800103 return id->token;
104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 alloc_string(yytext, yyleng);
106 zconflval.string = text;
107 return T_WORD;
108 }
109 .
Roman Zippela02f0572005-11-08 21:34:53 -0800110 \n {
111 BEGIN(INITIAL);
112 current_file->lineno++;
113 return T_EOL;
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117<PARAM>{
118 "&&" return T_AND;
119 "||" return T_OR;
120 "(" return T_OPEN_PAREN;
121 ")" return T_CLOSE_PAREN;
122 "!" return T_NOT;
123 "=" return T_EQUAL;
124 "!=" return T_UNEQUAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 \"|\' {
126 str = yytext[0];
127 new_string();
128 BEGIN(STRING);
129 }
130 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
131 --- /* ignore */
132 ({n}|[-/.])+ {
Arnaud Lacombe61f956f2011-05-04 21:14:44 -0400133 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
Roman Zippel3370f9f2005-11-08 21:34:52 -0800134 if (id && id->flags & TF_PARAM) {
135 zconflval.id = id;
Roman Zippel7a884882005-11-08 21:34:51 -0800136 return id->token;
Roman Zippel3370f9f2005-11-08 21:34:52 -0800137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 alloc_string(yytext, yyleng);
139 zconflval.string = text;
140 return T_WORD;
141 }
142 #.* /* comment */
143 \\\n current_file->lineno++;
144 .
145 <<EOF>> {
146 BEGIN(INITIAL);
147 }
148}
149
150<STRING>{
151 [^'"\\\n]+/\n {
152 append_string(yytext, yyleng);
153 zconflval.string = text;
154 return T_WORD_QUOTE;
155 }
156 [^'"\\\n]+ {
157 append_string(yytext, yyleng);
158 }
159 \\.?/\n {
160 append_string(yytext + 1, yyleng - 1);
161 zconflval.string = text;
162 return T_WORD_QUOTE;
163 }
164 \\.? {
165 append_string(yytext + 1, yyleng - 1);
166 }
167 \'|\" {
168 if (str == yytext[0]) {
169 BEGIN(PARAM);
170 zconflval.string = text;
171 return T_WORD_QUOTE;
172 } else
173 append_string(yytext, 1);
174 }
175 \n {
176 printf("%s:%d:warning: multi-line strings not supported\n", zconf_curname(), zconf_lineno());
177 current_file->lineno++;
178 BEGIN(INITIAL);
179 return T_EOL;
180 }
181 <<EOF>> {
182 BEGIN(INITIAL);
183 }
184}
185
186<HELP>{
187 [ \t]+ {
188 ts = 0;
189 for (i = 0; i < yyleng; i++) {
190 if (yytext[i] == '\t')
191 ts = (ts & ~7) + 8;
192 else
193 ts++;
194 }
195 last_ts = ts;
196 if (first_ts) {
197 if (ts < first_ts) {
198 zconf_endhelp();
199 return T_HELPTEXT;
200 }
201 ts -= first_ts;
202 while (ts > 8) {
203 append_string(" ", 8);
204 ts -= 8;
205 }
206 append_string(" ", ts);
207 }
208 }
209 [ \t]*\n/[^ \t\n] {
210 current_file->lineno++;
211 zconf_endhelp();
212 return T_HELPTEXT;
213 }
214 [ \t]*\n {
215 current_file->lineno++;
216 append_string("\n", 1);
217 }
218 [^ \t\n].* {
EGRY Gaborf7a4b4c2008-01-11 23:55:20 +0100219 while (yyleng) {
220 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
221 break;
222 yyleng--;
223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 append_string(yytext, yyleng);
225 if (!first_ts)
226 first_ts = last_ts;
227 }
228 <<EOF>> {
229 zconf_endhelp();
230 return T_HELPTEXT;
231 }
232}
233
234<<EOF>> {
Roman Zippela02f0572005-11-08 21:34:53 -0800235 if (current_file) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 zconf_endfile();
Roman Zippela02f0572005-11-08 21:34:53 -0800237 return T_EOL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
239 fclose(yyin);
240 yyterminate();
241}
242
243%%
244void zconf_starthelp(void)
245{
246 new_string();
247 last_ts = first_ts = 0;
248 BEGIN(HELP);
249}
250
251static void zconf_endhelp(void)
252{
253 zconflval.string = text;
254 BEGIN(INITIAL);
255}
256
257
258/*
259 * Try to open specified file with following names:
260 * ./name
261 * $(srctree)/name
262 * The latter is used when srctree is separate from objtree
263 * when compiling the kernel.
264 * Return NULL if file is not found.
265 */
266FILE *zconf_fopen(const char *name)
267{
268 char *env, fullname[PATH_MAX+1];
269 FILE *f;
270
271 f = fopen(name, "r");
Marcin Garski11de39e2007-05-05 22:49:00 +0200272 if (!f && name != NULL && name[0] != '/') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 env = getenv(SRCTREE);
274 if (env) {
275 sprintf(fullname, "%s/%s", env, name);
276 f = fopen(fullname, "r");
277 }
278 }
279 return f;
280}
281
282void zconf_initscan(const char *name)
283{
284 yyin = zconf_fopen(name);
285 if (!yyin) {
286 printf("can't find file %s\n", name);
287 exit(1);
288 }
289
Alan Cox177acf72012-11-06 14:32:08 +0000290 current_buf = xmalloc(sizeof(*current_buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 memset(current_buf, 0, sizeof(*current_buf));
292
293 current_file = file_lookup(name);
294 current_file->lineno = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}
296
297void zconf_nextfile(const char *name)
298{
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100299 struct file *iter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 struct file *file = file_lookup(name);
Alan Cox177acf72012-11-06 14:32:08 +0000301 struct buffer *buf = xmalloc(sizeof(*buf));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 memset(buf, 0, sizeof(*buf));
303
304 current_buf->state = YY_CURRENT_BUFFER;
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400305 yyin = zconf_fopen(file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!yyin) {
Arnaud Lacombee82dae92010-09-04 16:09:26 -0400307 printf("%s:%d: can't open file \"%s\"\n",
308 zconf_curname(), zconf_lineno(), file->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 exit(1);
310 }
311 yy_switch_to_buffer(yy_create_buffer(yyin, YY_BUF_SIZE));
312 buf->parent = current_buf;
313 current_buf = buf;
314
Yann E. MORINf094f8a2011-02-24 19:36:42 +0100315 for (iter = current_file->parent; iter; iter = iter->parent ) {
316 if (!strcmp(current_file->name,iter->name) ) {
317 printf("%s:%d: recursive inclusion detected. "
318 "Inclusion path:\n current file : '%s'\n",
319 zconf_curname(), zconf_lineno(),
320 zconf_curname());
321 iter = current_file->parent;
322 while (iter && \
323 strcmp(iter->name,current_file->name)) {
324 printf(" included from: '%s:%d'\n",
325 iter->name, iter->lineno-1);
326 iter = iter->parent;
327 }
328 if (iter)
329 printf(" included from: '%s:%d'\n",
330 iter->name, iter->lineno+1);
331 exit(1);
332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 file->lineno = 1;
335 file->parent = current_file;
336 current_file = file;
337}
338
Roman Zippela02f0572005-11-08 21:34:53 -0800339static void zconf_endfile(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
341 struct buffer *parent;
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 current_file = current_file->parent;
344
345 parent = current_buf->parent;
346 if (parent) {
347 fclose(yyin);
348 yy_delete_buffer(YY_CURRENT_BUFFER);
349 yy_switch_to_buffer(parent->state);
350 }
351 free(current_buf);
352 current_buf = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355int zconf_lineno(void)
356{
Roman Zippela02f0572005-11-08 21:34:53 -0800357 return current_pos.lineno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358}
359
Arnaud Lacombe2e7a0912010-09-04 16:03:30 -0400360const char *zconf_curname(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Roman Zippela02f0572005-11-08 21:34:53 -0800362 return current_pos.file ? current_pos.file->name : "<none>";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}