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 "acl_wl.h" |
| 44 | /* Include yacc tokens definitions */ |
| 45 | #include "aw_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 | static int curflag = 0; |
| 57 | |
| 58 | %} |
| 59 | |
| 60 | %option bison-bridge bison-locations |
| 61 | %option noyywrap |
| 62 | %option nounput |
| 63 | |
| 64 | %% |
| 65 | |
| 66 | /* Update the line count, reset flag value */ |
| 67 | \n { |
| 68 | yylloc->first_line++; |
| 69 | yylloc->last_line++; |
| 70 | yylloc->last_column=0; |
| 71 | curflag = 0; |
| 72 | } |
| 73 | |
| 74 | /* Eat all spaces but not new lines */ |
| 75 | ([[:space:]]{-}[\n])+ ; |
| 76 | /* Eat all comments */ |
| 77 | #.*$ ; |
| 78 | |
| 79 | /* Match the two allowed flags directly in LEX */ |
| 80 | ALLOW_IPSEC { |
| 81 | curflag |= PI_SEC_NONE; |
| 82 | } |
| 83 | |
| 84 | ALLOW_OLD_TLS { |
| 85 | curflag |= PI_SEC_TLS_OLD; |
| 86 | } |
| 87 | |
| 88 | /* Any other string is considered a fqdn or partial fqdn with a star. The star can only be the first label. */ |
| 89 | (\*|[[:alnum:]][[:alnum:]-]*)(\.[[:alnum:]][[:alnum:]-]*)+ { |
| 90 | /* We matched a valid label, let's directly save it into the tree. The function will issue the appropriate warnings. */ |
| 91 | CHECK_FCT_DO( aw_tree_add(yytext, curflag), return LEX_ERROR); |
| 92 | yylval->string = yytext; |
| 93 | return FQDN; |
| 94 | } |
| 95 | |
| 96 | /* No match */ |
| 97 | <*>[[:alnum:]]+ | /* This rule is only useful to print a complete token in error messages */ |
| 98 | <*>. { |
| 99 | TRACE_ERROR("Unrecognized text on line %d col %d: '%s'.", yylloc->first_line, yylloc->first_column, yytext); |
| 100 | return LEX_ERROR; |
| 101 | } |
| 102 | |
| 103 | %% |