]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - scripts/kconfig/zconf.l
kconfig: fix memory leak when EOF is encountered in quotation
[mirror_ubuntu-bionic-kernel.git] / scripts / kconfig / zconf.l
CommitLineData
674eed8a
AL
1%option nostdinit noyywrap never-interactive full ecs
2%option 8bit nodefault perf-report perf-report
be2be1d5 3%option noinput
1da177e4
LT
4%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
1da177e4
LT
17#include "lkc.h"
18
19#define START_STRSIZE 16
20
a02f0570
RZ
21static struct {
22 struct file *file;
23 int lineno;
24} current_pos;
25
7a88488b 26static char *text;
1da177e4
LT
27static int text_size, text_asize;
28
29struct buffer {
bb66fc67
MY
30 struct buffer *parent;
31 YY_BUFFER_STATE state;
1da177e4
LT
32};
33
34struct buffer *current_buf;
35
36static int last_ts, first_ts;
37
38static void zconf_endhelp(void);
a02f0570 39static void zconf_endfile(void);
1da177e4 40
65166571 41static void new_string(void)
1da177e4 42{
177acf78 43 text = xmalloc(START_STRSIZE);
1da177e4 44 text_asize = START_STRSIZE;
1da177e4 45 text_size = 0;
7a88488b 46 *text = 0;
1da177e4
LT
47}
48
65166571 49static void append_string(const char *str, int size)
1da177e4
LT
50{
51 int new_size = text_size + size + 1;
52 if (new_size > text_asize) {
7a88488b
RZ
53 new_size += START_STRSIZE - 1;
54 new_size &= -START_STRSIZE;
1da177e4
LT
55 text = realloc(text, new_size);
56 text_asize = new_size;
1da177e4 57 }
7a88488b 58 memcpy(text + text_size, str, size);
1da177e4 59 text_size += size;
7a88488b 60 text[text_size] = 0;
1da177e4
LT
61}
62
65166571 63static void alloc_string(const char *str, int size)
1da177e4 64{
177acf78 65 text = xmalloc(size + 1);
1da177e4
LT
66 memcpy(text, str, size);
67 text[size] = 0;
68}
c2264564
AR
69
70static void warn_ignored_character(char chr)
71{
72 fprintf(stderr,
73 "%s:%d:warning: ignoring unsupported character '%c'\n",
c4461075 74 current_file->name, yylineno, chr);
c2264564 75}
1da177e4
LT
76%}
77
c2264564 78n [A-Za-z0-9_-]
1da177e4
LT
79
80%%
81 int str = 0;
82 int ts, i;
83
a02f0570
RZ
84[ \t]*#.*\n |
85[ \t]*\n {
86 current_file->lineno++;
87 return T_EOL;
88}
1da177e4
LT
89[ \t]*#.*
90
1da177e4
LT
91
92[ \t]+ {
93 BEGIN(COMMAND);
94}
95
96. {
97 unput(yytext[0]);
98 BEGIN(COMMAND);
99}
100
101
102<COMMAND>{
1da177e4 103 {n}+ {
61f956f5 104 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
a02f0570
RZ
105 BEGIN(PARAM);
106 current_pos.file = current_file;
107 current_pos.lineno = current_file->lineno;
7a88488b 108 if (id && id->flags & TF_COMMAND) {
3370f9f0 109 zconflval.id = id;
7a88488b
RZ
110 return id->token;
111 }
1da177e4
LT
112 alloc_string(yytext, yyleng);
113 zconflval.string = text;
114 return T_WORD;
115 }
c2264564 116 . warn_ignored_character(*yytext);
a02f0570
RZ
117 \n {
118 BEGIN(INITIAL);
119 current_file->lineno++;
120 return T_EOL;
121 }
1da177e4
LT
122}
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;
31847b67
JB
132 "<=" return T_LESS_EQUAL;
133 ">=" return T_GREATER_EQUAL;
134 "<" return T_LESS;
135 ">" return T_GREATER;
1da177e4
LT
136 \"|\' {
137 str = yytext[0];
138 new_string();
139 BEGIN(STRING);
140 }
141 \n BEGIN(INITIAL); current_file->lineno++; return T_EOL;
c2264564 142 ({n}|[/.])+ {
61f956f5 143 const struct kconf_id *id = kconf_id_lookup(yytext, yyleng);
3370f9f0
RZ
144 if (id && id->flags & TF_PARAM) {
145 zconflval.id = id;
7a88488b 146 return id->token;
3370f9f0 147 }
1da177e4
LT
148 alloc_string(yytext, yyleng);
149 zconflval.string = text;
150 return T_WORD;
151 }
152 #.* /* comment */
153 \\\n current_file->lineno++;
2e0d737f 154 [[:blank:]]+
c2264564 155 . warn_ignored_character(*yytext);
1da177e4
LT
156 <<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);
167c0309
MY
194 yylval.string = text;
195 return T_WORD_QUOTE;
1da177e4
LT
196 }
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].* {
f7a4b4cd
EG
232 while (yyleng) {
233 if ((yytext[yyleng-1] != ' ') && (yytext[yyleng-1] != '\t'))
234 break;
235 yyleng--;
236 }
1da177e4
LT
237 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>> {
a02f0570 248 if (current_file) {
1da177e4 249 zconf_endfile();
a02f0570 250 return T_EOL;
1da177e4
LT
251 }
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");
11de39e2 285 if (!f && name != NULL && name[0] != '/') {
1da177e4
LT
286 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
177acf78 303 current_buf = xmalloc(sizeof(*current_buf));
1da177e4
LT
304 memset(current_buf, 0, sizeof(*current_buf));
305
306 current_file = file_lookup(name);
307 current_file->lineno = 1;
1da177e4
LT
308}
309
310void zconf_nextfile(const char *name)
311{
f094f8a1 312 struct file *iter;
1da177e4 313 struct file *file = file_lookup(name);
177acf78 314 struct buffer *buf = xmalloc(sizeof(*buf));
1da177e4
LT
315 memset(buf, 0, sizeof(*buf));
316
317 current_buf->state = YY_CURRENT_BUFFER;
e82dae90 318 yyin = zconf_fopen(file->name);
1da177e4 319 if (!yyin) {
e82dae90
AL
320 printf("%s:%d: can't open file \"%s\"\n",
321 zconf_curname(), zconf_lineno(), file->name);
1da177e4
LT
322 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
f094f8a1
YM
328 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 }
1da177e4 346 }
1da177e4
LT
347 file->lineno = 1;
348 file->parent = current_file;
349 current_file = file;
350}
351
a02f0570 352static void zconf_endfile(void)
1da177e4
LT
353{
354 struct buffer *parent;
355
1da177e4
LT
356 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;
1da177e4
LT
366}
367
368int zconf_lineno(void)
369{
a02f0570 370 return current_pos.lineno;
1da177e4
LT
371}
372
2e7a0918 373const char *zconf_curname(void)
1da177e4 374{
a02f0570 375 return current_pos.file ? current_pos.file->name : "<none>";
1da177e4 376}