blob: 0c3994912dc5b7e8e1a5ccff31129e9d0bafc0c8 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*********************************************************************************************************
2* Software License Agreement (BSD License) *
3* Author: Sebastien Decugis <sdecugis@freediameter.net> *
4* *
5* Copyright (c) 2013, WIDE Project and NICT *
6* All rights reserved. *
7* *
8* Redistribution and use of this software in source and binary forms, with or without modification, are *
9* permitted provided that the following conditions are met: *
10* *
11* * Redistributions of source code must retain the above *
12* copyright notice, this list of conditions and the *
13* following disclaimer. *
14* *
15* * Redistributions in binary form must reproduce the above *
16* copyright notice, this list of conditions and the *
17* following disclaimer in the documentation and/or other *
18* materials provided with the distribution. *
19* *
20* * Neither the name of the WIDE Project or NICT nor the *
21* names of its contributors may be used to endorse or *
22* promote products derived from this software without *
23* specific prior written permission of WIDE Project and *
24* NICT. *
25* *
26* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED *
27* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A *
28* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR *
29* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT *
30* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS *
31* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR *
32* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF *
33* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. *
34*********************************************************************************************************/
35
36/* Tokenizer
37 *
38 */
39
40%{
41#include "app_redir.h"
42/* Include yacc tokens definitions */
43#include "ard_conf.tab.h"
44
45/* Update the column information */
46#define YY_USER_ACTION { \
47 yylloc->first_column = yylloc->last_column + 1; \
48 yylloc->last_column = yylloc->first_column + yyleng - 1; \
49}
50
51/* Avoid warning with newer flex */
52#define YY_NO_INPUT
53
54%}
55
56qstring \"[^\"\n]*\"
57
58
59%option bison-bridge bison-locations
60%option noyywrap
61%option nounput
62
63%%
64
65 /* Update the line count */
66\n {
67 yylloc->first_line++;
68 yylloc->last_line++;
69 yylloc->last_column=0;
70 }
71
72 /* Eat all spaces but not new lines */
73([[:space:]]{-}[\n])+ ;
74 /* Eat all comments */
75#.*$ ;
76
77 /* Recognize any integer */
78[[:digit:]]+ {
79 /* Convert this to an u32 value */
80 int ret=0;
81 ret = sscanf(yytext, "%u", &yylval->u32);
82 if (ret != 1) {
83 /* No matching: an error occurred */
84 fd_log_debug("Unable to convert the value '%s' to a valid number: %s", yytext, strerror(errno));
85 return TOK_LEX_ERROR; /* trig an error in yacc parser */
86 /* Maybe we could REJECT instead of failing here? */
87 }
88 return TOK_U32VAL;
89 }
90
91 /* Recognize bracketed quoted strings */
92[[]{qstring}[]] {
93 /* Match a quoted string containing a regex */
94 CHECK_MALLOC_DO( yylval->tstring.str = strdup(yytext+2),
95 {
96 TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s", yytext, strerror(errno));
97 return TOK_LEX_ERROR; /* trig an error in yacc parser */
98 } );
99 yylval->tstring.str[strlen(yytext) - 4] = '\0';
100 yylval->tstring.regex = 1;
101 return TOK_TSTRING;
102 }
103
104 /* Recognize quoted strings (since it comes after the previous rule, the string should not be quoted) */
105{qstring} {
106 /* Match a quoted string. */
107 CHECK_MALLOC_DO( yylval->tstring.str = strdup(yytext+1),
108 {
109 TRACE_DEBUG(INFO, "Unable to copy the string '%s': %s", yytext, strerror(errno));
110 return TOK_LEX_ERROR; /* trig an error in yacc parser */
111 } );
112 yylval->tstring.str[strlen(yytext) - 2] = '\0';
113 yylval->tstring.regex = 0;
114 return TOK_TSTRING;
115 }
116
117 /* The key words */
118(?i:"default_redirect_cache_time") { return TOK_DEFAULT_RCT; }
119(?i:"to") { return TOK_TO; }
120(?i:"DONT_CACHE") { return TOK_DONT_CACHE; }
121(?i:"ALL_SESSION") { return TOK_ALL_SESSION; }
122(?i:"ALL_REALM") { return TOK_ALL_REALM; }
123(?i:"REALM_AND_APPLICATION") { return TOK_REALM_AND_APPLICATION; }
124(?i:"ALL_APPLICATION") { return TOK_ALL_APPLICATION; }
125(?i:"ALL_HOST") { return TOK_ALL_HOST; }
126(?i:"ALL_USER") { return TOK_ALL_USER; }
127(?i:"from.id") { return TOK_FROM_ID; }
128(?i:"from.realm") { return TOK_FROM_REALM; }
129(?i:"app") { return TOK_APP; }
130
131 /* Valid single characters for yyparse */
132[:=;] { return yytext[0]; }
133
134 /* Unrecognized sequence, if it did not match any previous pattern */
135[^[:space:]\":=;\n]+ {
136 fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext);
137 return TOK_LEX_ERROR;
138 }
139
140%%