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
|
-- declare the protocol
hsf2_proto = Proto("hsf2", "Taobao HSF2 Protocol")
-- declare the value strings
local vs_id = {
[12] = "HSF2 Heart Beat",
[13] = "HSF2 TB Remoting",
[14] = "HSF2 HSF Remoting"
}
local vs_version = {
[1] = "HSF2"
}
local vs_op = {
[0] = "request",
[1] = "response"
}
local vs_codectype = {
[1] = "HESSIAN_CODEC",
[2] = "JAVA_CODEC",
[3] = "TOP_CODEC",
[4] = "HESSIAN2_CODEC",
[5] = "KRYO_CODEC",
[6] = "JSON_CODEC",
[7] = "CUSTOMIZED_CODEC",
}
local vs_responsestatus = {
[20] = "OK",
[30] = "client timeout",
[31] = "server timeout",
[40] = "bad request",
[50] = "bad response",
[60] = "service not found",
[70] = "service error",
[80] = "server error",
[90] = "client error",
[91] = "Unknow error",
[81] = "Thread pool is busy",
[82] = "Communication error",
[88] = "server will close soon",
[10] = "server send coders",
[83] = "Unkown code"
}
-- declare the fields
local f_id = ProtoField.uint8("hsf2.id", "Identification", base.Dec, vs_id)
local f_version = ProtoField.uint8("hsf2.version", "version", base.Dec, vs_version)
local f_op = ProtoField.uint8("hsf2.op", "operation", base.DEC, vs_op)
local f_codectype = ProtoField.uint8("hsf2.codectype", "codectype", base.DEC, vs_codectype)
local f_reserved = ProtoField.uint8("hsf2.reserved", "reserved", base.DEC)
local f_req_id = ProtoField.uint64("hsf2.req_id", "RequestID", base.DEC)
local f_timeout = ProtoField.uint32("hsf2.timeout", "timeout", base.DEC)
local f_service_name_len = ProtoField.uint32("hsf2.service_name_len", "Service Name length", base.DEC)
local f_method_name_len = ProtoField.uint32("hsf2.method_name_len", "Method Name length", base.DEC)
local f_arg_count = ProtoField.uint32("hsf2.arg.count", "Argument Count", base.DEC)
local f_arg_type_len = ProtoField.uint32("hsf2.arg.type.len", "Argument Type length", base.DEC)
local f_arg_obj_len = ProtoField.uint32("hsf2.arg.obj.len", "Argument Object length", base.DEC)
local f_req_prop_len = ProtoField.uint32("hsf2.req.prop.len", "Request Prop Length", base.DEC)
local f_service_name = ProtoField.string("hsf2.service.name", "Service Name")
local f_method_name = ProtoField.string("hsf2.method.name", "Method Name")
local f_arg_type = ProtoField.string("hsf2.arg.type", "Argument Type")
local f_arg_obj = ProtoField.bytes("hsf2.arg.obj", "Argument Object")
local f_req_prop = ProtoField.bytes("hsf2.req.prop", "Request Prop")
local f_response_status = ProtoField.uint32("hsf2.response.status", "Response Status", base.DEC, vs_responsestatus)
local f_response_body_len = ProtoField.uint32("hsf2.response.body.len", "Response Body Length", base.DEC)
local f_response_body = ProtoField.bytes("hsf2.response.body", "Response Body", base.DEC)
hsf2_proto.fields = { f_id, f_version, f_op, f_codectype, f_reserved, f_req_id, f_timeout,
f_service_name_len, f_method_name_len, f_arg_count, f_arg_type_len, f_arg_obj_len, f_req_prop_len,
f_service_name, f_method_name, f_arg_type, f_arg_obj, f_req_prop,
f_response_status, f_response_body_len, f_response_body
}
function get_pdu_length(buffer)
local offset = 0
local id = buffer(offset, 1):uint()
offset = offset + 1
-- heart beat
if id == 12 then
return 18
end
-- TB REMOTING
if id == 13 then
-- TODO
return 18
end
-- HSF REMOTING
if id == 14 then
local version = buffer(offset, 1):uint()
offset = offset + 1
local op = buffer(offset, 1):uint()
offset = offset + 1
-- request
if op == 0 then
local service_name_len = buffer(19, 4):uint()
local method_name_len = buffer(23,4):uint()
local arg_count = buffer(27,4):uint()
offset = 27 + 4
local arg_content_len = 0
for i = 1, arg_count do
arg_content_len = arg_content_len + buffer(offset,4):uint()
offset = offset + 4
end
for i = 1, arg_count do
arg_content_len = arg_content_len + buffer(offset,4):uint()
offset = offset + 4
end
local req_prop_len = buffer(offset,4):uint()
local len = 30 + arg_count*4*2 + 5 + service_name_len + method_name_len + arg_content_len + req_prop_len
return len
end
-- response
if op == 1 then
local body_len = buffer(16, 4):uint()
return 20 + body_len
end
end
end
-- create the dissection function
function hsf2_proto.dissector(buffer, pinfo, tree)
-- check the protocol
-- TODO support TB Remoting
local check_proto = buffer(0, 1):uint()
if check_proto < 12 or check_proto > 14 or check_proto == 13 then
return
end
-- Set the protocol column
pinfo.cols['protocol'] = "HSF2"
-- Reassembling packets into one PDU
local pdu_len = get_pdu_length(buffer)
if pdu_len > buffer:len() then
pinfo.desegment_len = pdu_len - buffer:len()
pinfo.desegment_offset = 0
return
end
-- create the HSF2 protocol tree item
local t_hsf2 = tree:add(hsf2_proto, buffer())
local offset = 0
local id = buffer(offset, 1):uint()
offset = offset + 1
t_hsf2:add(f_id, id)
-- heart beat
if id == 12 then
local op = buffer(offset, 1):uint()
offset = offset + 1
t_hsf2:add(f_op, op)
-- Set the info column to the name of the function
local info = vs_id[id]..":"..vs_op[op]
pinfo.cols['info'] = info
t_hsf2:add(f_version, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_req_id, buffer(offset, 8))
offset = offset + 8
t_hsf2:add(f_timeout, buffer(offset, 4))
end
-- TB REMOTING
if id == 13 then
-- TODO
end
-- HSF REMOTING
if id == 14 then
t_hsf2:add(f_version, buffer(offset, 1))
offset = offset + 1
local op = buffer(offset, 1):uint()
offset = offset + 1
t_hsf2:add(f_op, op)
-- Set the info column to the name of the function
local info = vs_id[id]..":"..vs_op[op]
pinfo.cols['info'] = info
-- request
if op == 0 then
t_hsf2:add(f_codectype, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_req_id, buffer(offset, 8))
offset = offset + 8
t_hsf2:add(f_timeout, buffer(offset, 4))
offset = offset + 4
local service_name_len = buffer(offset, 4):uint()
t_hsf2:add(f_service_name_len, service_name_len)
offset = offset + 4
local method_name_len = buffer(offset,4):uint()
t_hsf2:add(f_method_name_len, method_name_len)
offset = offset + 4
local arg_count = buffer(offset,4):uint()
t_hsf2:add(f_arg_count, arg_count)
offset = offset + 4
local arg_type_len_array = {}
for i = 1, arg_count do
arg_type_len_array[i] = buffer(offset, 4):uint();
offset = offset + 4
t_hsf2:add(f_arg_type_len, arg_type_len_array[i])
end
local arg_obj_len_array = {}
for i = 1, arg_count do
arg_obj_len_array[i] = buffer(offset, 4):uint();
offset = offset + 4
t_hsf2:add(f_arg_obj_len, arg_obj_len_array[i])
end
local prop_len = buffer(offset, 4):uint();
offset = offset + 4
t_hsf2:add(f_req_prop_len, prop_len)
t_hsf2:add(f_service_name, buffer(offset, service_name_len))
offset = offset + service_name_len
t_hsf2:add(f_method_name, buffer(offset, method_name_len))
offset = offset + method_name_len
for i = 1, #arg_type_len_array do
t_hsf2:add(f_arg_type, buffer(offset, arg_type_len_array[i]))
offset = offset + arg_type_len_array[i]
end
for i = 1, #arg_obj_len_array do
t_hsf2:add(f_arg_obj, buffer(offset, arg_obj_len_array[i]))
offset = offset + arg_obj_len_array[i]
end
if prop_len > 0 then
t_hsf2:add(f_req_prop, buffer(offset, prop_len))
end
end
-- response
if op == 1 then
t_hsf2:add(f_response_status, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_codectype, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_reserved, buffer(offset, 1))
offset = offset + 1
t_hsf2:add(f_req_id, buffer(offset, 8))
offset = offset + 8
local body_len = buffer(offset, 4):uint()
t_hsf2:add(f_response_body_len, body_len)
offset = offset + 4
t_hsf2:add(f_response_body, buffer(offset, body_len))
end
end
end
-- load the tcp port table
tcp_table = DissectorTable.get("tcp.port")
-- register the protocol to port 12200
tcp_table:add(12200, hsf2_proto)
|