forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
request_handler.go
167 lines (144 loc) · 3.95 KB
/
request_handler.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
package nfs
// This file contains methods process RPC calls
import (
"fmt"
"time"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/monitoring"
"github.com/elastic/beats/packetbeat/protos/tcp"
)
const nfsProgramNumber = 100003
var acceptStatus = [...]string{
"success",
"prog_unavail",
"prog_mismatch",
"proc_unavail",
"garbage_args",
"system_err",
}
var (
unmatchedRequests = monitoring.NewInt(nil, "nfs.unmatched_requests")
)
// called by Cache, when re reply seen within expected time window
func (r *rpc) handleExpiredPacket(nfs *nfs) {
nfs.event.Fields["status"] = "NO_REPLY"
r.results(nfs.event)
unmatchedRequests.Add(1)
}
// called when we process a RPC call
func (r *rpc) handleCall(xid string, xdr *xdr, ts time.Time, tcptuple *common.TCPTuple, dir uint8) {
// eat rpc version number
xdr.getUInt()
rpcProg := xdr.getUInt()
if rpcProg != nfsProgramNumber {
// not a NFS request
return
}
src := common.Endpoint{
IP: tcptuple.SrcIP.String(),
Port: tcptuple.SrcPort,
}
dst := common.Endpoint{
IP: tcptuple.DstIP.String(),
Port: tcptuple.DstPort,
}
// The direction of the stream is based in the direction of first packet seen.
// if we have stored stream in reverse order, swap src and dst
if dir == tcp.TCPDirectionReverse {
src, dst = dst, src
}
fields := common.MapStr{}
fields["status"] = common.OK_STATUS // all packages are OK for now
fields["src"] = &src
fields["dst"] = &dst
nfsVers := xdr.getUInt()
nfsProc := xdr.getUInt()
// build event only if it's a nfs packet
rpcInfo := common.MapStr{}
rpcInfo["xid"] = xid
rpcInfo["call_size"] = xdr.size()
authFlavor := xdr.getUInt()
authOpaque := xdr.getDynamicOpaque()
switch authFlavor {
case 0:
rpcInfo["auth_flavor"] = "none"
case 1:
rpcInfo["auth_flavor"] = "unix"
cred := common.MapStr{}
credXdr := makeXDR(authOpaque)
cred["stamp"] = credXdr.getUInt()
machine := credXdr.getString()
if machine == "" {
machine = src.IP
}
cred["machinename"] = machine
cred["uid"] = credXdr.getUInt()
cred["gid"] = credXdr.getUInt()
cred["gids"] = credXdr.getUIntVector()
rpcInfo["cred"] = cred
case 6:
rpcInfo["auth_flavor"] = "rpcsec_gss"
default:
rpcInfo["auth_flavor"] = fmt.Sprintf("unknown (%d)", authFlavor)
}
// eat auth verifier
xdr.getUInt()
xdr.getDynamicOpaque()
fields["type"] = "nfs"
fields["rpc"] = rpcInfo
nfs := nfs{
vers: nfsVers,
proc: nfsProc,
event: beat.Event{
Timestamp: ts,
Fields: fields,
},
}
fields["nfs"] = nfs.getRequestInfo(xdr)
// use xid+src ip to uniquely identify request
reqID := xid + tcptuple.SrcIP.String()
// populate cache to trace request reply
r.callsSeen.Put(reqID, &nfs)
}
// called when we process a RPC reply
func (r *rpc) handleReply(xid string, xdr *xdr, ts time.Time, tcptuple *common.TCPTuple, dir uint8) {
replyStatus := xdr.getUInt()
// we are interested only in accepted rpc reply
if replyStatus != 0 {
return
}
// eat auth verifier
xdr.getUInt()
xdr.getDynamicOpaque()
// xid+src ip is used to uniquely identify request.
var reqID string
if dir == tcp.TCPDirectionReverse {
// stream in correct order: Src points to a client
reqID = xid + tcptuple.SrcIP.String()
} else {
// stream in reverse order: Dst points to a client
reqID = xid + tcptuple.DstIP.String()
}
// get cached request
v := r.callsSeen.Delete(reqID)
if v != nil {
nfs := v.(*nfs)
event := nfs.event
fields := event.Fields
rpcInfo := fields["rpc"].(common.MapStr)
rpcInfo["reply_size"] = xdr.size()
rpcTime := ts.Sub(event.Timestamp)
rpcInfo["time"] = rpcTime
// the same in human readable form
rpcInfo["time_str"] = fmt.Sprintf("%v", rpcTime)
status := int(xdr.getUInt())
rpcInfo["status"] = acceptStatus[status]
// populate nfs info for successfully executed requests
if status == 0 {
nfsInfo := fields["nfs"].(common.MapStr)
nfsInfo["status"] = nfs.getNFSReplyStatus(xdr)
}
r.results(event)
}
}