-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSPLParser.g4
More file actions
518 lines (430 loc) · 12.2 KB
/
Copy pathSPLParser.g4
File metadata and controls
518 lines (430 loc) · 12.2 KB
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
parser grammar SPLParser;
options { tokenVocab=SPLLexer; }
// Entry point
// Queries can optionally start with | for generating commands like tstats, inputlookup
query
: PIPE? pipelineStage (PIPE pipelineStage)*
;
// A single stage in the pipeline
pipelineStage
: searchCommand
| whereCommand
| evalCommand
| statsCommand
| tableCommand
| fieldsCommand
| renameCommand
| rexCommand
| dedupCommand
| sortCommand
| headCommand
| tailCommand
| topCommand
| rareCommand
| lookupCommand
| joinCommand
| appendCommand
| transactionCommand
| spathCommand
| eventstatsCommand
| streamstatsCommand
| timechartCommand
| chartCommand
| fillnullCommand
| makemvCommand
| mvexpandCommand
| formatCommand
| convertCommand
| bucketCommand
| restCommand
| tstatsCommand
| mstatsCommand
| inputlookupCommand
| genericCommand
;
// Search command (implicit or explicit)
searchCommand
: SEARCH? searchExpression
;
// Where command
whereCommand
: WHERE expression
;
// Eval command
evalCommand
: EVAL evalAssignment (COMMA evalAssignment)*
;
evalAssignment
: (fieldName | QUOTED_STRING) EQ expression
;
// Stats command
statsCommand
: STATS statsFunction (COMMA? statsFunction)* (BY fieldList)?
;
statsFunction
: IDENTIFIER LPAREN expression? RPAREN (AS (fieldName | QUOTED_STRING))? // count(), sum(bytes)
| IDENTIFIER (AS (fieldName | QUOTED_STRING))? // count, dc(distinct count) without parens
;
// Table command
tableCommand
: TABLE fieldList
;
// Fields command
fieldsCommand
: FIELDS (PLUS | MINUS)? fieldList
;
// Rename command
renameCommand
: RENAME renameSpec (COMMA renameSpec)*
;
renameSpec
: fieldName AS (fieldName | QUOTED_STRING)
;
// Rex command
rexCommand
: REX (rexOption)* (QUOTED_STRING | fieldName EQ QUOTED_STRING)?
;
rexOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Dedup command
dedupCommand
: DEDUP NUMBER? fieldList (dedupOption)*
;
dedupOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Sort command
sortCommand
: SORT NUMBER? sortField (COMMA sortField)*
;
sortField
: (PLUS | MINUS)? fieldName
;
// Head command
headCommand
: HEAD NUMBER?
;
// Tail command
tailCommand
: TAIL NUMBER?
;
// Top command
topCommand
: TOP NUMBER? fieldList (BY fieldList)?
;
// Rare command
rareCommand
: RARE NUMBER? fieldList (BY fieldList)?
;
// Lookup command
lookupCommand
: LOOKUP lookupOption* IDENTIFIER fieldList
;
lookupOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Join command with subsearch
joinCommand
: JOIN joinOption* subsearch
| JOIN joinOption* fieldList subsearch
;
joinOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Append command with subsearch
appendCommand
: APPEND subsearch
;
// Transaction command
transactionCommand
: TRANSACTION fieldList (transactionOption)*
;
transactionOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER | TIME_SPAN)
;
// Spath command
spathCommand
: SPATH (spathOption)*
;
spathOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName)
;
// Eventstats command
eventstatsCommand
: EVENTSTATS statsFunction (COMMA? statsFunction)* (BY fieldList)?
;
// Streamstats command
streamstatsCommand
: STREAMSTATS statsFunction (COMMA? statsFunction)* (BY fieldList)?
;
// Timechart command
timechartCommand
: TIMECHART (timechartOption)* statsFunction (BY fieldName)?
;
timechartOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER | TIME_SPAN)
;
// Chart command
chartCommand
: CHART statsFunction (BY fieldList)? (OVER fieldName)?
;
// Fillnull command
fillnullCommand
: FILLNULL (fillnullOption)* fieldList?
;
fillnullOption
: IDENTIFIER EQ (QUOTED_STRING | NUMBER)
;
// Makemv command
makemvCommand
: MAKEMV (makemvOption)* fieldName
;
makemvOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Mvexpand command
mvexpandCommand
: MVEXPAND fieldName
;
// Format command
formatCommand
: FORMAT (formatOption)*
;
formatOption
: IDENTIFIER EQ (QUOTED_STRING | NUMBER)
;
// Convert command
// Supports: convert timeformat="%Y-%m-%d" ctime(_time) AS date
convertCommand
: CONVERT convertOption* convertFunction (COMMA convertFunction)*
;
convertOption
: IDENTIFIER EQ (QUOTED_STRING | NUMBER | IDENTIFIER)
;
convertFunction
: IDENTIFIER LPAREN fieldName RPAREN (AS (fieldName | QUOTED_STRING))?
;
// Bucket/bin command
bucketCommand
: (BUCKET | BIN) fieldName (bucketOption)*
;
bucketOption
: IDENTIFIER EQ (QUOTED_STRING | NUMBER | TIME_SPAN | IDENTIFIER)
;
// Rest command for Splunk REST API queries
// Syntax: | rest [options] <endpoint> [options]
// Example: | rest timeout=600 splunk_server=local /servicesNS/-/-/saved/searches count=0
restCommand
: REST restArg*
;
restArg
: IDENTIFIER EQ MINUS? (value | IDENTIFIER) // option=value
| REST_PATH // REST API path like /servicesNS/-/-/saved/searches
| IDENTIFIER // endpoint without leading slash
;
// Tstats command for accelerated datamodel searches
tstatsCommand
: TSTATS tstatsPreOption* (statsFunction (COMMA? statsFunction)*)?
(FROM tstatsDatamodel)?
(WHERE searchExpression)?
((BY | GROUPBY) (tstatsPostOption | fieldOrQuoted)+)?
;
tstatsPreOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER | TIME_SPAN)
| MACRO
;
tstatsDatamodel
: IDENTIFIER EQ IDENTIFIER (DOT IDENTIFIER)*
| IDENTIFIER (COLON IDENTIFIER)? (DOT IDENTIFIER)*
;
tstatsPostOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER | TIME_SPAN)
;
// Mstats command for metrics-store queries
// Syntax: | mstats avg(_value) count(_value) WHERE metric_name="*.cpu.percent" by metric_name span=30s
mstatsCommand
: MSTATS tstatsPreOption* (statsFunction (COMMA? statsFunction)*)?
(WHERE searchExpression)?
((BY | GROUPBY) (tstatsPostOption | fieldOrQuoted)+)?
;
// Inputlookup command with optional where clause
// Syntax: | inputlookup [options] filename.csv [where condition]
inputlookupCommand
: INPUTLOOKUP inputlookupOption* (IDENTIFIER | QUOTED_STRING) (WHERE expression)?
;
inputlookupOption
: IDENTIFIER EQ (QUOTED_STRING | fieldName | NUMBER)
;
// Generic command for unrecognized commands
genericCommand
: IDENTIFIER genericArg*
;
genericArg
: IDENTIFIER (EQ MINUS? (value | IDENTIFIER))?
| MINUS? value
| LPAREN genericArg* RPAREN
;
// Subsearch
subsearch
: LBRACKET query RBRACKET
;
// Search expression (the filtering part)
// Terms can be connected by explicit AND/OR or implicitly (adjacent = AND)
searchExpression
: searchTerm (logicalOp? searchTerm)*
;
searchTerm
: NOT searchTerm
| LPAREN searchExpression RPAREN
| condition
| subsearch
| MACRO
| bareWord
;
// Field conditions
condition
: fieldName comparisonOp value
| fieldName IN LPAREN valueList RPAREN // field IN ("val1", "val2")
| fieldName IN subsearch // field IN [search ...]
| functionCall
;
// Comparison operators
comparisonOp
: EQ
| NEQ
| LT
| GT
| LTE
| GTE
;
// Logical operators (AND is implicit between terms)
logicalOp
: AND
| OR
;
// Expression (for where clause and eval)
expression
: orExpression
;
orExpression
: andExpression (OR andExpression)*
;
andExpression
: notExpression (AND? notExpression)*
;
notExpression
: NOT notExpression
| comparisonExpression
;
// Comparison expression with arithmetic on both sides
// NOTE: condition must come first to properly parse field=value in where clauses
comparisonExpression
: condition // Field conditions like field=value - must be first!
| additiveExpression (comparisonOp additiveExpression)?
;
// Additive expressions: + - . (DOT is string concatenation in SPL)
additiveExpression
: multiplicativeExpression ((PLUS | MINUS | DOT) multiplicativeExpression)*
;
// Multiplicative expressions: * / %
multiplicativeExpression
: unaryExpression ((WILDCARD | SLASH | PERCENT) unaryExpression)*
;
// Unary expressions: - (negative)
unaryExpression
: MINUS unaryExpression
| primaryExpression
;
primaryExpression
: LPAREN expression RPAREN
| subsearch // Allow subsearch in expressions (e.g., where NOT [search ...])
| functionCall
| value
| fieldName
;
// Function call
// Note: EVAL keyword is included because it can be used as a function inside stats (e.g., count(eval(status="200")))
functionCall
: IDENTIFIER LPAREN argumentList? RPAREN
| EVAL LPAREN argumentList? RPAREN
| MATCH LPAREN argumentList RPAREN
| LIKE LPAREN argumentList RPAREN
| CIDRMATCH LPAREN argumentList RPAREN
| ISNOTNULL LPAREN argumentList RPAREN
| ISNULL LPAREN argumentList RPAREN
;
argumentList
: expression (COMMA expression)*
;
// Values
value
: QUOTED_STRING
| NUMBER
| TIME_SPAN // Time values like -24h, 5m, 1d@d
| wildcardValue // Must come before others to match access*
| colonValue // Handle colon-separated values like o365:management:activity
| IDENTIFIER
;
// Colon-separated values (common in SPL for sourcetypes, eventtypes, etc.)
// Allows hyphens and slashes within parts, e.g., WinEventLog:Microsoft-Windows-PowerShell/Operational
colonValue
: extendedIdentifier (COLON extendedIdentifier)+
;
// Extended identifier allows hyphens and slashes (common in Windows event sourcetypes)
extendedIdentifier
: IDENTIFIER ((MINUS | SLASH) IDENTIFIER)*
;
// Wildcard values like *, access*, *access, *.php, *$
// NOTE: Does NOT support middle wildcards like access*log - those must be quoted.
// This prevents greedy matching that consumes the next field name.
wildcardValue
: IDENTIFIER WILDCARD DOLLAR // user*$ (Windows patterns)
| IDENTIFIER WILDCARD // access* (trailing wildcard)
| WILDCARD IDENTIFIER WILDCARD // *access* (surrounded)
| WILDCARD IDENTIFIER // *access (leading wildcard)
| WILDCARD DOT IDENTIFIER // *.php, *.log
| WILDCARD DOLLAR // *$ (Windows service accounts)
| WILDCARD // just *
;
// Bare word (search term - can be identifier, number, quoted string, or wildcard)
bareWord
: IDENTIFIER
| NUMBER
| QUOTED_STRING
| wildcardValue // Allows bare * or *value patterns as search terms
;
// Field name (NUMBER included for Sysmon-style numeric field names like 3=3)
// Supports hyphenated names (c-uri, cs-user-agent) via IDENTIFIER (MINUS IDENTIFIER)*
// Supports curly-brace fields (ModifiedProperties{}.NewValue) via LBRACE RBRACE
// Supports template variables (<<FIELD>>) from foreach command
fieldName
: fieldNameBase (fieldNameSuffix (DOT fieldNameBase fieldNameSuffix?)*)?
| NUMBER
| TEMPLATE_VAR IDENTIFIER? // <<FIELD>> or <<FIELD>>_pct
;
// Optional suffix on a field path segment: {} (curly brace), [*] (array wildcard), or [N] (array index)
fieldNameSuffix
: LBRACE RBRACE // ModifiedProperties{}.NewValue
| LBRACKET WILDCARD RBRACKET // targetResources[*].displayName
| LBRACKET NUMBER RBRACKET // items[0].value
;
fieldNameBase
: IDENTIFIER (MINUS IDENTIFIER)*
| FROM
| MSTATS
| INPUTLOOKUP
;
// Field list (SPL allows both space-separated and comma-separated)
// Also allows quoted strings for field names with spaces
fieldList
: fieldOrQuoted (COMMA? fieldOrQuoted)*
;
fieldOrQuoted
: fieldName
| QUOTED_STRING
;
// Value list (for IN operator)
valueList
: value (COMMA value)*
;