forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis_parse.go
454 lines (406 loc) · 10.4 KB
/
redis_parse.go
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
package redis
import (
"time"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/streambuf"
"github.com/elastic/beats/libbeat/logp"
)
type parser struct {
parseOffset int
// bytesReceived int
message *redisMessage
}
type redisMessage struct {
Ts time.Time
TcpTuple common.TcpTuple
CmdlineTuple *common.CmdlineTuple
Direction uint8
IsRequest bool
IsError bool
Size int
Message common.NetString
Method common.NetString
Path common.NetString
next *redisMessage
}
const (
START = iota
BULK_ARRAY
SIMPLE_MESSAGE
)
var (
empty = common.NetString("")
emptyArr = common.NetString("[]")
nilStr = common.NetString("nil")
)
// Keep sorted for future command addition
var redisCommands = map[string]struct{}{
"APPEND": {},
"AUTH": {},
"BGREWRITEAOF": {},
"BGSAVE": {},
"BITCOUNT": {},
"BITOP": {},
"BITPOS": {},
"BLPOP": {},
"BRPOP": {},
"BRPOPLPUSH": {},
"CLIENT GETNAME": {},
"CLIENT KILL": {},
"CLIENT LIST": {},
"CLIENT PAUSE": {},
"CLIENT SETNAME": {},
"CONFIG GET": {},
"CONFIG RESETSTAT": {},
"CONFIG REWRITE": {},
"CONFIG SET": {},
"DBSIZE": {},
"DEBUG OBJECT": {},
"DEBUG SEGFAULT": {},
"DECR": {},
"DECRBY": {},
"DEL": {},
"DISCARD": {},
"DUMP": {},
"ECHO": {},
"EVAL": {},
"EVALSHA": {},
"EXEC": {},
"EXISTS": {},
"EXPIRE": {},
"EXPIREAT": {},
"FLUSHALL": {},
"FLUSHDB": {},
"GET": {},
"GETBIT": {},
"GETRANGE": {},
"GETSET": {},
"HDEL": {},
"HEXISTS": {},
"HGET": {},
"HGETALL": {},
"HINCRBY": {},
"HINCRBYFLOAT": {},
"HKEYS": {},
"HLEN": {},
"HMGET": {},
"HMSET": {},
"HSCAN": {},
"HSET": {},
"HSETINX": {},
"HVALS": {},
"INCR": {},
"INCRBY": {},
"INCRBYFLOAT": {},
"INFO": {},
"KEYS": {},
"LASTSAVE": {},
"LINDEX": {},
"LINSERT": {},
"LLEN": {},
"LPOP": {},
"LPUSH": {},
"LPUSHX": {},
"LRANGE": {},
"LREM": {},
"LSET": {},
"LTRIM": {},
"MGET": {},
"MIGRATE": {},
"MONITOR": {},
"MOVE": {},
"MSET": {},
"MSETNX": {},
"MULTI": {},
"OBJECT": {},
"PERSIST": {},
"PEXPIRE": {},
"PEXPIREAT": {},
"PFADD": {},
"PFCOUNT": {},
"PFMERGE": {},
"PING": {},
"PSETEX": {},
"PSUBSCRIBE": {},
"PTTL": {},
"PUBLISH": {},
"PUBSUB": {},
"PUNSUBSCRIBE": {},
"QUIT": {},
"RANDOMKEY": {},
"RENAME": {},
"RENAMENX": {},
"RESTORE": {},
"RPOP": {},
"RPOPLPUSH": {},
"RPUSH": {},
"RPUSHX": {},
"SADD": {},
"SAVE": {},
"SCAN": {},
"SCARD": {},
"SCRIPT EXISTS": {},
"SCRIPT FLUSH": {},
"SCRIPT KILL": {},
"SCRIPT LOAD": {},
"SDIFF": {},
"SDIFFSTORE": {},
"SELECT": {},
"SET": {},
"SETBIT": {},
"SETEX": {},
"SETNX": {},
"SETRANGE": {},
"SHUTDOWN": {},
"SINTER": {},
"SINTERSTORE": {},
"SISMEMBER": {},
"SLAVEOF": {},
"SLOWLOG": {},
"SMEMBERS": {},
"SMOVE": {},
"SORT": {},
"SPOP": {},
"SRANDMEMBER": {},
"SREM": {},
"SSCAN": {},
"STRLEN": {},
"SUBSCRIBE": {},
"SUNION": {},
"SUNIONSTORE": {},
"SYNC": {},
"TIME": {},
"TTL": {},
"TYPE": {},
"UNSUBSCRIBE": {},
"UNWATCH": {},
"WATCH": {},
"ZADD": {},
"ZCARD": {},
"ZCOUNT": {},
"ZINCRBY": {},
"ZINTERSTORE": {},
"ZRANGE": {},
"ZRANGEBYSCORE": {},
"ZRANK": {},
"ZREM": {},
"ZREMRANGEBYLEX": {},
"ZREMRANGEBYRANK": {},
"ZREMRANGEBYSCORE": {},
"ZREVRANGE": {},
"ZREVRANGEBYSCORE": {},
"ZREVRANK": {},
"ZSCAN": {},
"ZSCORE": {},
"ZUNIONSTORE": {},
}
var maxCommandLen = 0
const commandLenBuffer = 50
func init() {
for k := range redisCommands {
l := len(k)
if l > maxCommandLen {
maxCommandLen = l
}
}
// panic normally triggered during testing to give a note about small buffer sizes
if maxCommandLen > commandLenBuffer {
panic("commandLenBuffer small")
}
}
func isRedisCommand(key common.NetString) bool {
if len(key) > maxCommandLen {
return false
}
// key to upper into pre-allocated buffer (commands use ASCII only)
var buf [commandLenBuffer]byte
upper := buf[:len(key)]
for i, b := range key {
if 'a' <= b && b <= 'z' {
b = b - 'a' + 'A'
}
upper[i] = b
}
_, exists := redisCommands[string(upper)]
return exists
}
func (p *parser) reset() {
p.parseOffset = 0
p.message = nil
}
func (parser *parser) parse(buf *streambuf.Buffer) (bool, bool) {
snapshot := buf.Snapshot()
content, iserror, ok, complete := parser.dispatch(0, buf)
if !ok || !complete {
// on error or incomplete message drop all parsing progress, due to
// parse not being statefull among multiple calls
// => parser needs to restart parsing all content
buf.Restore(snapshot)
return ok, complete
}
parser.message.IsError = iserror
parser.message.Size = buf.BufferConsumed()
parser.message.Message = content
return true, true
}
func (p *parser) dispatch(depth int, buf *streambuf.Buffer) (common.NetString, bool, bool, bool) {
if buf.Len() == 0 {
return empty, false, true, false
}
var value common.NetString
var iserror, ok, complete bool
snapshot := buf.Snapshot()
switch buf.Bytes()[0] {
case '*':
value, iserror, ok, complete = p.parseArray(depth, buf)
case '$':
value, ok, complete = p.parseString(buf)
case ':':
value, ok, complete = p.parseInt(buf)
case '+':
value, ok, complete = p.parseSimpleString(buf)
case '-':
iserror = true
value, ok, complete = p.parseSimpleString(buf)
default:
if isDebug {
debugf("Unexpected message starting with %s", buf.Bytes()[0])
}
return empty, false, false, false
}
if !ok || !complete {
buf.Restore(snapshot)
}
return value, iserror, ok, complete
}
func (p *parser) parseInt(buf *streambuf.Buffer) (common.NetString, bool, bool) {
value, ok, complete := p.parseSimpleString(buf)
if ok && complete {
if _, err := parseInt(value); err != nil {
logp.Err("Failed to read integer reply: %s", err)
}
}
return value, ok, complete
}
func (p *parser) parseSimpleString(buf *streambuf.Buffer) (common.NetString, bool, bool) {
line, err := buf.UntilCRLF()
if err != nil {
return empty, true, false
}
return common.NetString(line[1:]), true, true
}
func (p *parser) parseString(buf *streambuf.Buffer) (common.NetString, bool, bool) {
line, err := buf.UntilCRLF()
if err != nil {
return empty, true, false
}
if len(line) == 3 && line[1] == '-' && line[2] == '1' {
return nilStr, true, true
}
length, err := parseInt(line[1:])
if err != nil {
logp.Err("Failed to read bulk message: %s", err)
return empty, false, false
}
content, err := buf.CollectWithSuffix(int(length), []byte("\r\n"))
if err != nil {
if err != streambuf.ErrNoMoreBytes {
return common.NetString{}, false, false
}
return common.NetString{}, true, false
}
return common.NetString(content), true, true
}
func (p *parser) parseArray(depth int, buf *streambuf.Buffer) (common.NetString, bool, bool, bool) {
line, err := buf.UntilCRLF()
if err != nil {
if isDebug {
debugf("End of line not found, waiting for more data")
}
return empty, false, false, false
}
if isDebug {
debugf("line %s: %d", line, buf.BufferConsumed())
}
if len(line) == 3 && line[1] == '-' && line[2] == '1' {
return nilStr, false, true, true
}
if len(line) == 2 && line[1] == '0' {
return emptyArr, false, true, true
}
count, err := parseInt(line[1:])
if err != nil {
logp.Err("Failed to read number of bulk messages: %s", err)
return empty, false, false, false
}
if count < 0 {
return nilStr, false, true, true
} else if count == 0 {
// should not happen, but handle just in case ParseInt did return 0
return emptyArr, false, true, true
}
// invariant: count > 0
// try to allocate content array right on stack
var content [][]byte
const arrayBufferSize = 32
if int(count) <= arrayBufferSize {
var arrayBuffer [arrayBufferSize][]byte
content = arrayBuffer[:0]
} else {
content = make([][]byte, 0, count)
}
contentLen := 0
// read sub elements
iserror := false
for i := 0; i < int(count); i++ {
var value common.NetString
var ok, complete bool
value, iserror, ok, complete := p.dispatch(depth+1, buf)
if !ok || !complete {
if isDebug {
debugf("Array incomplete")
}
return empty, iserror, ok, complete
}
content = append(content, []byte(value))
contentLen += len(value)
}
// handle top-level request command
if depth == 0 && isRedisCommand(content[0]) {
p.message.IsRequest = true
p.message.Method = content[0]
if len(content) > 1 {
p.message.Path = content[1]
}
var value common.NetString
if contentLen > 1 {
tmp := make([]byte, contentLen+(len(content)-1)*1)
join(tmp, content, []byte(" "))
value = common.NetString(tmp)
} else {
value = common.NetString(content[0])
}
return value, iserror, true, true
}
// return redis array: [a, b, c]
tmp := make([]byte, 2+contentLen+(len(content)-1)*2)
tmp[0] = '['
join(tmp[1:], content, []byte(", "))
tmp[len(tmp)-1] = ']'
value := common.NetString(tmp)
return value, iserror, true, true
}
func parseInt(line []byte) (int64, error) {
buf := streambuf.NewFixed(line)
return buf.AsciiInt(false)
// TODO: is it an error if 'buf.Len() != 0 {}' ?
}
func join(to []byte, content [][]byte, sep []byte) {
if len(content) > 0 {
off := copy(to, content[0])
for i := 1; i < len(content); i++ {
off += copy(to[off:], sep)
off += copy(to[off:], content[i])
}
}
}