2 /* Include this before everything else, for various large-file definitions */
8 * We want a reentrant scanner.
13 * We don't use input, so don't generate code for it.
18 * We don't use unput, so don't generate code for it.
23 * We don't read interactively from the terminal.
25 %option never-interactive
28 * We want to stop processing when we get to the end of the input.
33 * The type for the state we keep for a scanner.
35 %option extra-type="Dtd_PreParse_scanner_state_t *"
38 * The language we're scanning is case-insensitive.
43 * Prefix scanner routines with "Dtd_PreParse_" rather than "yy", so this
44 * scanner can coexist with other scanners.
46 %option prefix="Dtd_PreParse_"
49 * We have to override the memory allocators so that we don't get
50 * "unused argument" warnings from the yyscanner argument (which
51 * we don't use, as we have a global memory allocator).
53 * We provide, as macros, our own versions of the routines generated by Flex,
54 * which just call malloc()/realloc()/free() (as the Flex versions do),
55 * discarding the extra argument.
65 * an XML dissector for wireshark
67 * DTD Preparser - import a dtd file into a GString
68 * including files, removing comments
69 * and resolving %entities;
71 * Copyright 2004, Luis E. Garcia Ontanon <luis@ontanon.org>
73 * Wireshark - Network traffic analyzer
74 * By Gerald Combs <gerald@wireshark.org>
75 * Copyright 1998 Gerald Combs
77 * This program is free software; you can redistribute it and/or
78 * modify it under the terms of the GNU General Public License
79 * as published by the Free Software Foundation; either version 2
80 * of the License, or (at your option) any later version.
82 * This program is distributed in the hope that it will be useful,
83 * but WITHOUT ANY WARRANTY; without even the implied warranty of
84 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
85 * GNU General Public License for more details.
87 * You should have received a copy of the GNU General Public License
88 * along with this program; if not, write to the Free Software
89 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
97 #include <wsutil/file_util.h>
100 * Disable diagnostics in the code generated by Flex.
104 #define ECHO g_string_append(yyextra->current,yytext);
106 struct _dtd_preparse_scanner_state {
107 const char* dtd_dirname;
108 const char* filename;
113 GHashTable* entities;
119 static const char* replace_entity(Dtd_PreParse_scanner_state_t* state, char* s);
121 #define YY_USER_INIT { \
126 * Flex (v 2.5.35) uses this symbol to "exclude" unistd.h
129 #define YY_NO_UNISTD_H
133 * Sleazy hack to suppress compiler warnings in yy_fatal_error().
135 #define YY_EXIT_FAILURE ((void)yyscanner, 2)
138 * Macros for the allocators, to discard the extra argument.
140 #define Dtd_PreParse_alloc(size, yyscanner) (void *)malloc(size)
141 #define Dtd_PreParse_realloc(ptr, size, yyscanner) (void *)realloc((char *)(ptr), (size))
142 #define Dtd_PreParse_free(ptr, yyscanner) free((char *)ptr)
154 entity_start "<!"[[:blank:]\n]*entity[[:blank:]\n]*"%"
159 name [A-Za-z][-:A-Za-z0-9_\.]*
168 entity [%&][A-Za-z][-A-Za-z0-9_]*;
170 whitespace [[blank:]]+
172 %START OUTSIDE IN_COMMENT IN_ENTITY NAMED_ENTITY IN_QUOTE ENTITY_DONE XMLPI
176 {entity} if (yyextra->current) g_string_append_printf(yyextra->current,"%s\n%s\n",replace_entity(yyextra, yytext),dtd_location(yyextra));
178 {whitespace} if (yyextra->current) g_string_append(yyextra->current," ");
180 <OUTSIDE>{xmlpi_start} { g_string_append(yyextra->current,yytext); BEGIN XMLPI; }
181 <XMLPI>{xmlpi_chars} { g_string_append(yyextra->current,yytext); }
182 <XMLPI>{newline} { g_string_append(yyextra->current,yytext); }
183 <XMLPI>{xmlpi_stop} { g_string_append(yyextra->current,yytext); BEGIN OUTSIDE; }
185 <OUTSIDE>{comment_start} { yyextra->current = NULL; BEGIN IN_COMMENT; }
188 <IN_COMMENT>{comment_stop} { yyextra->current = yyextra->output; BEGIN OUTSIDE; }
192 if (yyextra->current) g_string_append_printf(yyextra->current,"%s\n",dtd_location(yyextra));
196 <OUTSIDE>{entity_start} { BEGIN IN_ENTITY; }
197 <IN_ENTITY>{name} { yyextra->entity_name = ws_strdup_printf("%%%s;",yytext); BEGIN NAMED_ENTITY; }
198 <NAMED_ENTITY>{quote} { yyextra->current = g_string_new(dtd_location(yyextra)); BEGIN IN_QUOTE; }
199 <IN_QUOTE>{quote} { g_hash_table_insert(yyextra->entities,yyextra->entity_name,yyextra->current); BEGIN ENTITY_DONE; }
200 <IN_QUOTE>{percent} |
201 <IN_QUOTE>{non_quote} |
202 <IN_QUOTE>{escaped_quote} g_string_append(yyextra->current,yytext);
203 <NAMED_ENTITY>{system} {
204 g_string_append_printf(yyextra->error,"at %s:%u: file inclusion is not supported!", yyextra->filename, yyextra->linenum);
207 <ENTITY_DONE>{special_stop} { yyextra->current = yyextra->output; g_string_append(yyextra->current,"\n"); BEGIN OUTSIDE; }
212 * Turn diagnostics back on, so we check the code that we've written.
216 static const char* replace_entity(Dtd_PreParse_scanner_state_t* state, char* entity) {
217 GString* replacement;
221 replacement = (GString*)g_hash_table_lookup(state->entities,entity);
224 return replacement->str;
226 g_string_append_printf(state->error,"dtd_preparse: in file '%s': entity %s does not exists\n", state->filename, entity);
232 const char* dtd_location(Dtd_PreParse_scanner_state_t* state) {
233 static char* loc = NULL;
237 if (!state) return NULL;
239 loc = ws_strdup_printf("<? wireshark:location %s:%u ?>", state->filename, state->linenum);
244 static gboolean free_gstring_hash_items(void *k,void *v,void *p _U_) {
246 g_string_free((GString*)v,true);
250 extern GString* dtd_preparse(const char* dname,const char* fname, GString* err) {
251 char* fullname = ws_strdup_printf("%s%c%s",dname,G_DIR_SEPARATOR,fname);
254 Dtd_PreParse_scanner_state_t state;
256 in = ws_fopen(fullname,"r");
260 g_string_append_printf(err, "Could not open file: '%s', error: %s",fullname,g_strerror(errno));
265 if (Dtd_PreParse_lex_init(&scanner) != 0) {
267 g_string_append_printf(err, "Can't initialize scanner: %s",
274 Dtd_PreParse_set_in(in, scanner);
276 state.dtd_dirname = dname;
277 state.filename = fname;
282 state.entities = g_hash_table_new(g_str_hash,g_str_equal);
283 state.current = state.output = g_string_new(dtd_location(&state));
284 state.entity_name = NULL;
286 /* Associate the state with the scanner */
287 Dtd_PreParse_set_extra(&state, scanner);
289 Dtd_PreParse_lex(scanner);
291 Dtd_PreParse_lex_destroy(scanner);
294 g_hash_table_foreach_remove(state.entities,free_gstring_hash_items,NULL);
295 g_hash_table_destroy(state.entities);