Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /********************************************************************************************************* |
| 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 | /* Lex extension's configuration parser. |
| 37 | * |
| 38 | * The configuration file contains a default priority, and a list of peers with optional overwite priority. |
| 39 | * -- see the app_test.conf.sample file for more detail. |
| 40 | */ |
| 41 | |
| 42 | %{ |
| 43 | #include "test_app.h" |
| 44 | /* Include yacc tokens definitions */ |
| 45 | #include "ta_conf.tab.h" |
| 46 | |
| 47 | /* Update the column information */ |
| 48 | #define YY_USER_ACTION { \ |
| 49 | yylloc->first_column = yylloc->last_column + 1; \ |
| 50 | yylloc->last_column = yylloc->first_column + yyleng - 1; \ |
| 51 | } |
| 52 | |
| 53 | /* Avoid warning with newer flex */ |
| 54 | #define YY_NO_INPUT |
| 55 | |
| 56 | %} |
| 57 | |
| 58 | %option bison-bridge bison-locations |
| 59 | %option noyywrap |
| 60 | %option nounput |
| 61 | |
| 62 | %% |
| 63 | |
| 64 | /* Update the line count */ |
| 65 | \n { |
| 66 | yylloc->first_line++; |
| 67 | yylloc->last_line++; |
| 68 | yylloc->last_column=0; |
| 69 | } |
| 70 | |
| 71 | /* Eat all spaces but not new lines */ |
| 72 | ([[:space:]]{-}[\n])+ ; |
| 73 | /* Eat all comments */ |
| 74 | #.*$ ; |
| 75 | |
| 76 | /* Recognize any integer */ |
| 77 | [-]?[[:digit:]]+ { |
| 78 | /* Convert this to an integer value */ |
| 79 | int ret=0; |
| 80 | ret = sscanf(yytext, "%i", &yylval->integer); |
| 81 | if (ret != 1) { |
| 82 | /* No matching: an error occurred */ |
| 83 | fd_log_debug("Unable to convert the value '%s' to a valid number: %s", yytext, strerror(errno)); |
| 84 | return LEX_ERROR; /* trig an error in yacc parser */ |
| 85 | /* Maybe we could REJECT instead of failing here? */ |
| 86 | } |
| 87 | return INTEGER; |
| 88 | } |
| 89 | |
| 90 | /* Recognize quoted strings -- we do not support escaped \" in the string currently. */ |
| 91 | \"[^\"]+\" { |
| 92 | /* Match a quoted string. Let's be very permissive. */ |
| 93 | yylval->string = strdup(yytext+1); |
| 94 | if (!yylval->string) { |
| 95 | fd_log_debug("Unable to copy the string '%s': %s", yytext, strerror(errno)); |
| 96 | TRACE_DEBUG(INFO, "strdup failed"); |
| 97 | return LEX_ERROR; /* trig an error in yacc parser */ |
| 98 | } |
| 99 | yylval->string[strlen(yytext) - 2] = '\0'; |
| 100 | return QSTRING; |
| 101 | } |
| 102 | |
| 103 | /* Recognize the tokens */ |
| 104 | (?i:"vendor-id") { |
| 105 | return VENDOR_ID; |
| 106 | } |
| 107 | |
| 108 | (?i:"appli-id") { |
| 109 | return APPLI_ID; |
| 110 | } |
| 111 | |
| 112 | (?i:"cmd-id") { |
| 113 | return CMD_ID; |
| 114 | } |
| 115 | |
| 116 | (?i:"avp-id") { |
| 117 | return AVP_ID; |
| 118 | } |
| 119 | |
| 120 | (?i:"long-avp-id") { |
| 121 | return LONG_AVP_ID; |
| 122 | } |
| 123 | |
| 124 | (?i:"long-avp-len") { |
| 125 | return LONG_AVP_LEN; |
| 126 | } |
| 127 | |
| 128 | (?i:"mode") { |
| 129 | return MODE; |
| 130 | } |
| 131 | |
| 132 | (?i:"server") { |
| 133 | yylval->integer = MODE_SERV; |
| 134 | return INTEGER; |
| 135 | } |
| 136 | |
| 137 | (?i:"client") { |
| 138 | yylval->integer = MODE_CLI; |
| 139 | return INTEGER; |
| 140 | } |
| 141 | |
| 142 | (?i:"both") { |
| 143 | yylval->integer = MODE_SERV | MODE_CLI; |
| 144 | return INTEGER; |
| 145 | } |
| 146 | |
| 147 | (?i:"dest-realm") { |
| 148 | return DEST_REALM; |
| 149 | } |
| 150 | |
| 151 | (?i:"dest-host") { |
| 152 | return DEST_HOST; |
| 153 | } |
| 154 | |
| 155 | (?i:"user-name") { |
| 156 | return USER_NAME; |
| 157 | } |
| 158 | |
| 159 | (?i:"Signal") { |
| 160 | return SIGNAL; |
| 161 | } |
| 162 | |
| 163 | (?i:"Benchmark") { |
| 164 | return BENCH; |
| 165 | } |
| 166 | |
| 167 | |
| 168 | /* Valid single characters for yyparse */ |
| 169 | [=;] { return yytext[0]; } |
| 170 | |
| 171 | /* Unrecognized sequence, if it did not match any previous pattern */ |
| 172 | [^[:space:]"*=>;\n]+ { |
| 173 | fd_log_debug("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext); |
| 174 | return LEX_ERROR; |
| 175 | } |
| 176 | |
| 177 | %% |