-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpktparse.c
More file actions
executable file
·314 lines (238 loc) · 5.39 KB
/
pktparse.c
File metadata and controls
executable file
·314 lines (238 loc) · 5.39 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
#include "tp.h"
#define TP_CHECK_END(n) \
do { \
if (p + (n) > end) {\
goto err;\
}\
}while(0);\
void TP_parse_ext(Tp_ctx_t *ctx, unsigned char *ext, unsigned int ext_len, unsigned char srv)
{
unsigned short len = 0;
unsigned short ext_type;
unsigned short sni_len;
unsigned char *p;
while(ext_len > 0) {
Tp_n2s(ext, ext_type);
ext_len -= 2;
Tp_n2s(ext, len);
switch (ext_type)
{
case 0:
if (!srv) {
p = ext;
p += 3;
Tp_n2s(p, sni_len);
//To do: parse list
if (ctx->cb.clnt_sni_cb) {
ctx->cb.clnt_sni_cb(ctx, (char*)p, (int)sni_len);
}
}
break;
case 43:
p = ext;
if (len == 2) {
ctx->cb.srv_ver_cb(ctx, (char*)p, 2);
}
break;
default:
break;
}
ext += len;
ext_len -= 2 + len;
}
}
int Tp_clnt_hello(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
unsigned char *end = buf + len;
unsigned short cs, extlen;
/*pass type, len*/
p += 4;
TP_CHECK_END(2);
if (ctx->cb.clnt_ver_cb) {
ctx->cb.clnt_ver_cb(ctx, (char*)p, 2);
}
p += 2;
/*pass random*/
p += 32;
TP_CHECK_END(0);
if (ctx->cb.clnt_id_cb) {
ctx->cb.clnt_id_cb(ctx, (char*)(p + 1), (int)p[0]);
}
/*pass session id*/
p += p[0] + 1;
TP_CHECK_END(2);
Tp_n2s(p, cs);
if (ctx->cb.clnt_ciph_cb) {
ctx->cb.clnt_ciph_cb(ctx, (char*)p, (int)cs);
}
/*pass cipher suit*/
p += cs;
/*pass compress*/
p += p[0] + 1;
/*no ext*/
if (p + 2 >= end) {
return len;
}
Tp_n2s(p, extlen);
TP_parse_ext(ctx, p, extlen, 0);
return len;
err:
return -1;
}
int Tp_srv_hello(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
unsigned char *end = buf + len;
unsigned short extlen;
/*pass type, len*/
p += 4;
TP_CHECK_END(2);
/*will change if TLS 1.3 in ext*/
if (ctx->cb.srv_ver_cb) {
ctx->cb.srv_ver_cb(ctx, (char*)p, 2);
}
p += 2;
/*pass random*/
p += 32;
TP_CHECK_END(0);
if (ctx->cb.srv_id_cb) {
ctx->cb.srv_id_cb(ctx, (char*)(p + 1), (int)p[0]);
}
/*pass session id*/
p += p[0] + 1;
TP_CHECK_END(2);
if (ctx->cb.srv_ciph_cb) {
ctx->cb.srv_ciph_cb(ctx, (char*)p, 2);
}
p += 2;
TP_CHECK_END(0);
/*pass compress*/
p++;
if (p + 2 > end)
return len;
Tp_n2s(p, extlen);
TP_parse_ext(ctx, p, extlen, 1);
/*ext*/
return len;
err:
return -1;
}
int Tp_srv_cert(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
unsigned char *end;
int cert_len, certs_len;
p++;
Tp_n2l3(p, len);
end = p + len;
len += 4;/*current frame len*/
TP_CHECK_END(3);
Tp_n2l3(p, certs_len);
TP_CHECK_END(3);
ctx->cert_level = 0;
while (certs_len > 0) {
Tp_n2l3(p, cert_len);
certs_len -= 3;
if (ctx->cb.cert_raw_cb) {
ctx->cb.cert_raw_cb(ctx, (char*)p, (int)cert_len);
}
if (Tp_parse_cert(ctx, p, cert_len) < 0) {
goto err;
}
p += cert_len;
certs_len -= cert_len;
ctx->cert_level++;
}
return len;
err:
return -1;
}
int Tp_srv_ke(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
unsigned char *end = p + len;
p++;
TP_CHECK_END(3);
Tp_n2l3(p, len);
end = p + len;
len += 4;
#if 0
TP_CHECK_END(3);
p++;
if (ctx->cb.srv_ke_curve_cb) {
ctx->cb.srv_ke_curve_cb(ctx, (char*)p, 2);
}
p += 2;
TP_CHECK_END(p[0] + 1);
if (ctx->cb.srv_ke_pkey_cb) {
ctx->cb.srv_ke_pkey_cb(ctx, (char*)(p + 1), (int)p[0]);
}
p += p[0] + 1;
TP_CHECK_END(2);
if (ctx->cb.srv_ke_sigalg_cb) {
ctx->cb.srv_ke_sigalg_cb(ctx, (char*)p, 2);
}
p += 2;
#endif
return len;
err:
return -1;
}
int Tp_clnt_ke(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
p++;
Tp_n2l3(p, len);
len += 4;
return len;
}
int Tp_cert_vfy(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
p++;
Tp_n2l3(p, len);
len += 4;
return len;
}
int Tp_ccs(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
return len;
}
int Tp_app(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
return len;
}
int Tp_finish(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
return len;
}
int Tp_srv_cert_req(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
ctx->clnt_vfy = 1;
p++;
Tp_n2l3(p, len);
len += 4;
return len;
}
int Tp_srv_done(Tp_ctx_t *ctx, unsigned char *buf, unsigned int len)
{
unsigned char *p = buf;
p++;
Tp_n2l3(p, len);
len += 4;
return len;
}
type_parser Tp_type_parser[23] =
{
[1] = Tp_clnt_hello,
[2] = Tp_srv_hello,
[11] = Tp_srv_cert,
[12] = Tp_srv_ke,
[13] = Tp_srv_cert_req,
[14] = Tp_srv_done,
[15] = Tp_cert_vfy,
[16] = Tp_clnt_ke,
};