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
|
/*
* smpp.c
*
* Copyright (C) 2016 - Damir Franusic <df@release14.org>
* Copyright (C) 2016-22 - ntop.org
*
* nDPI is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* nDPI is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with nDPI. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "ndpi_protocol_ids.h"
#define NDPI_CURRENT_PROTO NDPI_PROTOCOL_SMPP
#include "ndpi_api.h"
#include "ndpi_private.h"
static void ndpi_int_smpp_add_connection(struct ndpi_detection_module_struct* ndpi_struct,
struct ndpi_flow_struct* flow)
{
ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_SMPP, NDPI_PROTOCOL_UNKNOWN, NDPI_CONFIDENCE_DPI);
}
static u_int8_t ndpi_check_overflow(u_int32_t current_length, u_int32_t total_lenth)
{
return (current_length > 0 && current_length > INT_MAX - total_lenth);
}
static void ndpi_search_smpp_tcp(struct ndpi_detection_module_struct* ndpi_struct,
struct ndpi_flow_struct* flow)
{
struct ndpi_packet_struct* packet = &ndpi_struct->packet;
NDPI_LOG_DBG(ndpi_struct, "search SMPP\n");
if (flow->detected_protocol_stack[0] != NDPI_PROTOCOL_SMPP){
// min SMPP packet length = 16 bytes
if (packet->payload_packet_len < 16) {
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
return;
}
// get PDU length
u_int32_t pdu_l = ntohl(get_u_int32_t(packet->payload, 0));
NDPI_LOG_DBG2(ndpi_struct,
"calculated PDU Length: %d, received PDU Length: %d\n",
pdu_l, packet->payload_packet_len);
// if PDU size was invalid, try the following TCP segments, 3 attempts max
if(flow->packet_counter > 3) {
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
return;
}
// verify PDU length
if(pdu_l != packet->payload_packet_len) {
// check if multiple PDUs included
u_int32_t total_pdu_l = pdu_l;
u_int32_t tmp_pdu_l = 0;
#ifdef NDPI_ENABLE_DEBUG_MESSAGES
u_int16_t pdu_c = 1;
#endif
// loop PDUs (check if lengths are valid)
while(total_pdu_l < ((uint32_t)packet->payload_packet_len-4)) {
// get next PDU length
tmp_pdu_l = ntohl(get_u_int32_t(packet->payload, total_pdu_l));
// if zero or overflowing , return, will try the next TCP segment
if(tmp_pdu_l == 0 || ndpi_check_overflow(tmp_pdu_l, total_pdu_l) ) return;
// inc total PDU length
total_pdu_l += ntohl(get_u_int32_t(packet->payload, total_pdu_l));
#ifdef NDPI_ENABLE_DEBUG_MESSAGES
// inc total PDU count
++pdu_c;
#endif
}
NDPI_LOG_DBG2(ndpi_struct,
"multiple PDUs included, calculated total PDU Length: %d, PDU count: %d, TCP payload length: %d\n",
total_pdu_l, pdu_c, packet->payload_packet_len);
// verify multi PDU total length
if(total_pdu_l != packet->payload_packet_len){
// return, will try the next TCP segment
return;
}
}
// *** check PDU type ***
u_int32_t pdu_type = ntohl(get_u_int32_t(packet->payload, 4));
// first byte of PDU type is either 0x00 of 0x80
if(!(packet->payload[4] == 0x00 || packet->payload[4] == 0x80)) {
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
return;
}
// remove 0x80, get request type pdu
u_int32_t pdu_req = pdu_type & 0x00FFFFFF;
// list of known PDU types
if((pdu_req <= 0x00000009) || /* [0-9] */
(pdu_req == 0x0000000B || pdu_req == 0x00000015 ||
pdu_req == 0x00000021 || pdu_req == 0x00000102 ||
pdu_req == 0x00000103)){
NDPI_LOG_DBG2(ndpi_struct,
"PDU type: %x, Request PDU type = %x\n",
pdu_type, pdu_req);
// fresult flag
char extra_passed = 1;
// check PDU type specifics
switch(pdu_type){
// GENERIC_NACK
case 0x80000000:
// body length must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// BIND_RECEIVER
// BIND_TRANSMITTER
// BIND_TRANSCEIVER
case 0x00000001:
case 0x00000002:
case 0x00000009:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 10 bytes (+16 in header)
if(pdu_l < 26) extra_passed = 0;
break;
// BIND_RECEIVER_RESP
// BIND_TRANSMITTER_RESP
// BIND_TRANSCEIVER_RESP
case 0x80000001:
case 0x80000002:
case 0x80000009:
// min body length = 2 bytes (+16 in header)
if(pdu_l < 18) extra_passed = 0;
break;
// OUTBIND
case 0x0000000B:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 4 bytes (+16 in header)
if(pdu_l < 20) extra_passed = 0;
break;
// UNBIND
case 0x00000006:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// body length must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// UNBIND_RESP
case 0x80000006:
// body length must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// SUBMIT_SM
case 0x00000004:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 17 bytes (+16 in header)
if(pdu_l < 33) extra_passed = 0;
break;
// SUBMIT_SM_RESP
case 0x80000004:
// - if status != 0, body length is 2 bytes min
// - if status > 0, body lenth must be zero
if(get_u_int32_t(packet->payload, 8) != 0){
if(pdu_l > 16) extra_passed = 0;
}else if(pdu_l < 18) extra_passed = 0;
break;
// SUBMIT_MULTI
case 0x00000021:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 17 bytes (+16 in header)
if(pdu_l < 33) extra_passed = 0;
break;
// SUBMIT_MULTI_RESP
case 0x80000021:
// min body length = 10 bytes (+16 in header)
if(pdu_l < 26) extra_passed = 0;
break;
// DELIVER_SM
case 0x00000005:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 17 bytes (+16 in header)
if(pdu_l < 33) extra_passed = 0;
break;
// DELIVER_SM_RESP
case 0x80000005:
// min body length = 1 byte (+16 in header)
if(pdu_l < 17) extra_passed = 0;
break;
// DATA_SM
case 0x00000103:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 10 bytes (+16 in header)
if(pdu_l < 26) extra_passed = 0;
break;
// DATA_SM_RESP
case 0x80000103:
// min body length = 2 bytes (+16 in header)
if(pdu_l < 18) extra_passed = 0;
break;
// QUERY_SM
case 0x00000003:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 4 bytes (+16 in header)
if(pdu_l < 20) extra_passed = 0;
break;
// QUERY_SM_RESP
case 0x80000003:
// min body length = 5 bytes (+16 in header)
if(pdu_l < 21) extra_passed = 0;
break;
// CANCEL_SM
case 0x00000008:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 8 bytes (+16 in header)
if(pdu_l < 24) extra_passed = 0;
break;
// CANCEL_SM_RESP
case 0x80000008:
// body lenth must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// REPLACE_SM
case 0x00000007:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 9 bytes (+16 in header)
if(pdu_l < 25) extra_passed = 0;
break;
// REPLACE_SM_RESP
case 0x80000007:
// body lenth must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// ENQUIRE_LINK
case 0x00000015:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// body length must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// ENQUIRE_LINK_RESP
case 0x80000015:
// body length must be zero
if(pdu_l > 16) extra_passed = 0;
break;
// ALERT_NOTIFICATION
case 0x00000102:
// status field must be NULL
if(get_u_int32_t(packet->payload, 8) != 0) extra_passed = 0;
// min body length = 6 bytes (+16 in header)
if(pdu_l < 22) extra_passed = 0;
break;
default: break;
}
// if extra checks passed, set as identified
if(extra_passed) {
NDPI_LOG_INFO(ndpi_struct, "found SMPP\n");
ndpi_int_smpp_add_connection(ndpi_struct, flow);
return;
}
}
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
}
}
void init_smpp_dissector(struct ndpi_detection_module_struct* ndpi_struct,
u_int32_t* id)
{
ndpi_set_bitmask_protocol_detection("SMPP", ndpi_struct, *id,
NDPI_PROTOCOL_SMPP,
ndpi_search_smpp_tcp,
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
ADD_TO_DETECTION_BITMASK);
*id += 1;
}
|