blob: 7689333d35055ab7cf3cb0b3545a9e2bbf902931 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*****************************************************************************************************
2 * Software License Agreement (BSD License)
3 * Author : Souheil Ben Ayed <souheil@tera.ics.keio.ac.jp>
4 *
5 * Copyright (c) 2009-2010, Souheil Ben Ayed, Teraoka Laboratory of Keio University and the WIDE Project
6 * All rights reserved.
7 *
8 * Redistribution and use of this software in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are met:
10 *
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 *
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by Souheil Ben Ayed <souheil@tera.ics.keio.ac.jp>.
21 *
22 * 4. Neither the name of Souheil Ben Ayed, Teraoka Laboratory of Keio University or the WIDE Project nor the
23 * names of its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ''AS IS'' AND ANY
27 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
28 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
29 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
30 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
31 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
32 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
33 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *****************************************************************************************************/
37
38
39/*Declarations and option settings*/
40%{
41#include <stdio.h>
42#include "eap_tls.h"
43#include "eaptls.tab.h"
44
45#define YY_USER_ACTION { \
46 yylloc->first_line = yylloc->last_line = yylineno; \
47 yylloc->first_column = yylloc->last_column + 1; \
48 yylloc->last_column += yyleng +1; \
49 }
50
51#define YY_NO_INPUT
52%}
53
54%option noyywrap
55%option yylineno
56%option bison-bridge
57%option bison-locations
58%option nounput
59%%
60 /* List of patterns and actions */
61
62<*>\n {
63 yylloc->last_column=0;
64 }
65
66
67<*>#.*$ {}
68
69
70[ \t\n]+ {
71 yylloc->last_column=0;
72 }
73
74\"([^\n\"]*)\" { /* Quoted String */
75 yylval->str = strdup(yytext+1);
76 yylval->str[yyleng-2]='\0';
77 return iSTRING;
78 }
79
80
81[[:digit:]]+ { /* Digital number */
82 yylval->val = atoi(yytext);
83 return NUM; /* Numeric value */
84 }
85
86(?i:"Cred") {
87 return CERTS;
88 }
89
90(?i:"CA") {
91 return CAPATH;
92 }
93
94(?i:"CRL") {
95 return CRLPATH;
96 }
97
98(?i:"check_cert_cn_username") {
99 return CHECK_CN_USERNAME;
100 }
101
102
103
104"="|";"|":"|"," { /* Single characters for yyparse */
105 return yytext[0];
106 }
107
108 /* Unrecognized token or text */
109
110<*>[[:alnum:]]+ |
111<*>. {
112 fprintf(stderr,"Unrecognized input text '%s'( on line %i column %i )\n", yytext, yylloc->first_line, yylloc->first_column);
113 return LEX_ERROR;
114 }
115
116%%
117/* Routines */
118
119