-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathparse.y
318 lines (288 loc) · 7.22 KB
/
parse.y
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
%{
package iscdhcp
import (
"fmt"
"net"
"strings"
)
%}
%token openBrace closeBrace quote semicolon comma
// conditional + boolean logic stuff
%token ConditionIf ConditionElsif ConditionElse
// Boolean combinations should be right-associative, so that e.g. this statement:
// if x and y or not z
// ... will be grouped like this:
// if x and (y or not z)
// ... as opposed to this:
// if (x and y) or not z
// This gives short-circuit behavior if x!=true, which is what most users will
// expect. I have not verified this is actually how dhcpd behaves, though.
%right BoolAnd BoolOr BoolNot
%token BoolEqual BoolInequal BoolRegexMatch BoolRegexIMatch
%token BoolExists BoolKnown BoolStatic
// simple types
%token number ipAddr cidr stringConst macAddr
// reserved words
%token stateTok authoritativeTok
%token groupTok hostTok subnetTok netmaskTok optionTok includeTok
%token hardwareTok ethernetTok fixedAddrTok
%token useHostDeclNamesTok
%token optDomainNameServersTok
// everything else
%token word
// compound yyType definition, so we can turn any token into any of these types
// of object
%union {
num int
str string
strList []string
ipList []net.IP
ip net.IP
statement Statement
statementList []Statement
dataTerm fmt.Stringer
boolExpr BooleanExpression
subConditionals []ConditionalStatement
}
%%
// Primitives
config: statements
{
l := yylex.(*lexer)
l.dirtyHackReturn = $1.statementList
};
statements:
statement
{
$$.statementList = []Statement{$1.statement}
}
| statements statement
{
$$.statementList = append($$.statementList, $2.statement)
};
statement:
// Statements can be either declarations...
groupdecl
| hostdecl
| includedecl
| subnetdecl
| conditionalDecl
// or parameters
| authoritativeParam
| hardwareparam
| fixedaddressparam
| optionparam
| useHostDeclNamesParam
;
block:
openBrace closeBrace // empty block
| openBrace statements closeBrace
{
$$.statementList = $2.statementList
};
// Conditionals
conditionalDecl:
ConditionIf booleanExpr block subConditionList
{
cs := ConditionalStatement {
Operator: ConditionIf,
Condition: $2.boolExpr,
Statements: $3.statementList,
SubConditionals: $4.subConditionals,
}
$$.statement = cs
}
subConditionList:
// empty list is one possibility
| subConditionList ConditionElsif booleanExpr block
{
cs := ConditionalStatement {
Operator: ConditionElsif,
Condition: $3.boolExpr,
Statements: $3.statementList,
}
$$.subConditionals = append($$.subConditionals, cs)
}
| subConditionList ConditionElse block
{
cs := ConditionalStatement {
Operator: ConditionElse,
Statements: $2.statementList,
}
$$.subConditionals = append($$.subConditionals, cs)
};
booleanExpr:
booleanExpr BoolAnd booleanExpr
{
$$.boolExpr = BooleanExpression {
Operator: BoolAnd,
BoolTerms: []BooleanExpression{$1.boolExpr, $3.boolExpr},
}
}
| booleanExpr BoolOr booleanExpr
{
$$.boolExpr = BooleanExpression {
Operator: BoolOr,
BoolTerms: []BooleanExpression{$1.boolExpr, $3.boolExpr},
}
}
| BoolNot booleanExpr
{
$$.boolExpr = BooleanExpression {
Operator: BoolNot,
BoolTerms: []BooleanExpression{$2.boolExpr},
}
}
| BoolStatic
{
$$.boolExpr = BooleanExpression {
Operator: BoolStatic,
}
}
| BoolKnown
{
$$.boolExpr = BooleanExpression {
Operator: BoolKnown,
}
}
| BoolExists dataTerm
{
$$.boolExpr = BooleanExpression {
Operator: BoolExists,
DataTerms: []fmt.Stringer{$2.dataTerm},
}
}
| dataTerm BoolEqual dataTerm
{
$$.boolExpr = BooleanExpression {
Operator: BoolEqual,
DataTerms: []fmt.Stringer{$1.dataTerm, $3.dataTerm},
}
}
| dataTerm BoolInequal dataTerm
{
$$.boolExpr = BooleanExpression {
Operator: BoolInequal,
DataTerms: []fmt.Stringer{$1.dataTerm, $3.dataTerm},
}
}
| dataTerm BoolRegexMatch dataTerm
{
$$.boolExpr = BooleanExpression {
Operator: BoolRegexMatch,
DataTerms: []fmt.Stringer{$1.dataTerm, $3.dataTerm},
}
}
| dataTerm BoolRegexIMatch dataTerm
{
$$.boolExpr = BooleanExpression {
Operator: BoolRegexIMatch,
DataTerms: []fmt.Stringer{$1.dataTerm, $3.dataTerm},
}
};
dataTerm:
stringConst
{
$$.dataTerm = StringConstTerm($1.str)
}
| optionTok word
{
$$.dataTerm = PacketOptionTerm{
optionName: $2.str,
}
};
//wordList:
// wordList word
// {
// $$.strList = append($$.strList, $2.str)
// }
// | word
// {
// $$.strList = []string{$1.str}
// };
ipList:
ipList comma ipAddr
{
$$.ipList = append($$.ipList, net.ParseIP($3.str))
}
| ipAddr
{
$$.ipList = []net.IP{net.ParseIP($1.str)}
};
// Declarations that include a block
groupdecl: groupTok block
{
gs := GroupStatement{
Statements: $2.statementList,
}
$$.statement = gs
};
hostdecl: hostTok word block
{
hs := HostStatement {
Hostname: $2.str,
Statements: $3.statementList,
}
$$.statement = hs
};
includedecl: includeTok stringConst semicolon
{
is := IncludeStatement {
Filename: $2.str,
}
$$.statement = is
};
subnetdecl: subnetTok ipAddr netmaskTok ipAddr block
{
sns := SubnetStatement {
SubnetNumber: net.ParseIP($2.str),
Netmask: net.ParseIP($4.str),
Statements: $5.statementList,
}
$$.statement = sns
};
// Parameters found within a block
authoritativeParam:
BoolNot authoritativeTok semicolon
{
$$.statement = AuthoritativeStatement(false)
}
| authoritativeTok semicolon
{
$$.statement = AuthoritativeStatement(true)
};
hardwareparam:
hardwareTok ethernetTok macAddr semicolon
{
$$.statement = HardwareStatement {
HardwareType: "ethernet",
HardwareAddress: $3.str,
}
};
fixedaddressparam:
fixedAddrTok ipList semicolon
{
$$.statement = FixedAddressStatement($2.ipList)
};
useHostDeclNamesParam:
useHostDeclNamesTok stateTok semicolon
{
val := false
cmpText := strings.ToLower($2.str)
if cmpText == "on" || cmpText == "true" {
val = true
}
$$.statement = UseHostDeclNamesStatement(val)
};
// Options, because they're weird
optionparam: optionTok optionClause
{
$$.statement = $2.statement
};
optionClause:
nameserversOptClause;
nameserversOptClause: optDomainNameServersTok ipList semicolon
{
$$.statement = DomainNameServersOption($2.ipList)
};
%%