-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprotocol.rs
More file actions
421 lines (372 loc) · 10.8 KB
/
Copy pathprotocol.rs
File metadata and controls
421 lines (372 loc) · 10.8 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
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
#![allow(dead_code)]
use std::io;
use crate::constant;
pub struct SmppPdu {
pub header: SmppHeader,
pub body: SmppBody,
}
impl SmppPdu {
pub fn encode(&self) -> Vec<u8> {
let mut body_buf = match &self.body {
SmppBody::BindTransmitter(bind_transmitter) => bind_transmitter.encode(),
_ => unimplemented!(),
};
let command_length = (body_buf.len() + 16) as i32;
let header = SmppHeader {
command_length,
command_id: self.header.command_id,
command_status: self.header.command_status,
sequence_number: self.header.sequence_number,
};
let mut buf = header.encode();
buf.append(&mut body_buf);
buf
}
pub fn decode(buf: &[u8]) -> io::Result<Self> {
let header = SmppHeader::decode(&buf[0..16])?;
let body = match header.command_id {
constant::BIND_TRANSMITTER_RESP_ID => SmppBody::BindTransmitterResp(BindTransmitterResp::decode(&buf[16..])?),
_ => unimplemented!(),
};
Ok(SmppPdu { header, body })
}
}
pub struct SmppHeader {
pub command_length: i32,
pub command_id: u32,
pub command_status: i32,
pub sequence_number: i32,
}
impl SmppHeader {
pub(crate) fn encode(&self) -> Vec<u8> {
let mut buf = vec![];
buf.extend_from_slice(&self.command_length.to_be_bytes());
buf.extend_from_slice(&self.command_id.to_be_bytes());
buf.extend_from_slice(&self.command_status.to_be_bytes());
buf.extend_from_slice(&self.sequence_number.to_be_bytes());
buf
}
pub(crate) fn decode(buf: &[u8]) -> io::Result<Self> {
if buf.len() < 16 {
return Err(io::Error::new(io::ErrorKind::InvalidData, "Buffer too short for SmppHeader"));
}
let command_id = u32::from_be_bytes(buf[0..4].try_into().unwrap());
let command_status = i32::from_be_bytes(buf[4..8].try_into().unwrap());
let sequence_number = i32::from_be_bytes(buf[8..12].try_into().unwrap());
Ok(SmppHeader {
command_length: 0,
command_id,
command_status,
sequence_number,
})
}
}
pub enum SmppBody {
BindReceiver(BindReceiver),
BindReceiverResp(BindReceiverResp),
BindTransmitter(BindTransmitter),
BindTransmitterResp(BindTransmitterResp),
QuerySm(QuerySm),
QuerySmResp(QuerySmResp),
SubmitSm(SubmitSm),
SubmitSmResp(SubmitSmResp),
DeliverSm(DeliverSm),
DeliverSmResp(DeliverSmResp),
Unbind(Unbind),
UnbindResp(UnbindResp),
ReplaceSm(ReplaceSm),
ReplaceSmResp(ReplaceSmResp),
CancelSm(CancelSm),
CancelSmResp(CancelSmResp),
BindTransceiver(BindTransceiver),
BindTransceiverResp(BindTransceiverResp),
Outbind(Outbind),
EnquireLink(EnquireLink),
EnquireLinkResp(EnquireLinkResp),
SubmitMulti(SubmitMulti),
SubmitMultiResp(SubmitMultiResp),
}
pub struct BindReceiver {
pub system_id: String,
pub password: String,
pub system_type: String,
pub interface_version: u8,
pub addr_ton: u8,
pub addr_npi: u8,
pub address_range: String,
}
impl BindReceiver {
pub(crate) fn encode(&self) -> Vec<u8> {
let mut buf = vec![];
write_cstring(&mut buf, &self.system_id);
write_cstring(&mut buf, &self.password);
write_cstring(&mut buf, &self.system_type);
buf.push(self.interface_version);
buf.push(self.addr_ton);
buf.push(self.addr_npi);
write_cstring(&mut buf, &self.address_range);
buf
}
pub(crate) fn decode(buf: &[u8]) -> io::Result<Self> {
let mut offset = 0;
let system_id = read_cstring(buf, &mut offset)?;
let password = read_cstring(buf, &mut offset)?;
let system_type = read_cstring(buf, &mut offset)?;
let interface_version = buf[offset];
offset += 1;
let addr_ton = buf[offset];
offset += 1;
let addr_npi = buf[offset];
offset += 1;
let address_range = read_cstring(buf, &mut offset)?;
Ok(BindReceiver {
system_id,
password,
system_type,
interface_version,
addr_ton,
addr_npi,
address_range,
})
}
}
pub struct BindReceiverResp {
pub system_id: String,
}
impl BindReceiverResp {
pub(crate) fn encode(&self) -> Vec<u8> {
let mut buf = vec![];
write_cstring(&mut buf, &self.system_id);
buf
}
pub(crate) fn decode(buf: &[u8]) -> io::Result<Self> {
let mut offset = 0;
let system_id = read_cstring(buf, &mut offset)?;
Ok(BindReceiverResp { system_id })
}
}
pub struct BindTransmitter {
pub system_id: String,
pub password: String,
pub system_type: String,
pub interface_version: u8,
pub addr_ton: u8,
pub addr_npi: u8,
pub address_range: String,
}
impl BindTransmitter {
pub(crate) fn encode(&self) -> Vec<u8> {
let mut buf = vec![];
write_cstring(&mut buf, &self.system_id);
write_cstring(&mut buf, &self.password);
write_cstring(&mut buf, &self.system_type);
buf.push(self.interface_version);
buf.push(self.addr_ton);
buf.push(self.addr_npi);
write_cstring(&mut buf, &self.address_range);
buf
}
pub(crate) fn decode(buf: &[u8]) -> io::Result<Self> {
let mut offset = 0;
let system_id = read_cstring(buf, &mut offset)?;
let password = read_cstring(buf, &mut offset)?;
let system_type = read_cstring(buf, &mut offset)?;
let interface_version = buf[offset];
offset += 1;
let addr_ton = buf[offset];
offset += 1;
let addr_npi = buf[offset];
offset += 1;
let address_range = read_cstring(buf, &mut offset)?;
Ok(BindTransmitter {
system_id,
password,
system_type,
interface_version,
addr_ton,
addr_npi,
address_range,
})
}
}
pub struct BindTransmitterResp {
pub system_id: String,
}
impl BindTransmitterResp {
pub fn new(system_id: String) -> BindTransmitterResp {
BindTransmitterResp { system_id }
}
pub(crate) fn encode(&self) -> Vec<u8> {
let mut buf = vec![];
write_cstring(&mut buf, &self.system_id);
buf
}
pub(crate) fn decode(buf: &[u8]) -> io::Result<Self> {
let mut offset = 0;
let system_id = read_cstring(buf, &mut offset)?;
Ok(BindTransmitterResp { system_id })
}
}
pub struct QuerySm {
pub message_id: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
}
pub struct QuerySmResp {
pub message_id: String,
pub final_date: String,
pub message_state: u8,
pub error_code: u8,
}
pub struct SubmitSm {
pub service_type: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
pub dest_addr_ton: u8,
pub dest_addr_npi: u8,
pub destination_addr: String,
pub esm_class: u8,
pub protocol_id: u8,
pub priority_flag: u8,
pub schedule_delivery_time: String,
pub validity_period: String,
pub registered_delivery: u8,
pub replace_if_present_flag: u8,
pub data_coding: u8,
pub sm_default_msg_id: u8,
pub sm_length: u8,
pub short_message: Vec<u8>,
pub message_payload: TagLengthValue,
}
pub struct SubmitSmResp {
pub message_id: String,
}
pub struct DeliverSm {
pub service_type: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
pub dest_addr_ton: u8,
pub dest_addr_npi: u8,
pub destination_addr: String,
pub esm_class: u8,
pub protocol_id: u8,
pub priority_flag: u8,
pub schedule_delivery_time: String,
pub validity_period: String,
pub registered_delivery: u8,
pub replace_if_present_flag: u8,
pub data_coding: u8,
pub sm_default_msg_id: u8,
pub sm_length: u8,
pub short_message: Vec<u8>,
}
pub struct DeliverSmResp {
pub message_id: String,
}
pub struct Unbind {}
pub struct UnbindResp {}
pub struct ReplaceSm {
pub message_id: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
pub schedule_delivery_time: String,
pub validity_period: String,
pub registered_delivery: u8,
pub sm_default_msg_id: u8,
pub sm_length: u8,
pub short_message: Vec<u8>,
}
pub struct ReplaceSmResp {
pub message_id: String,
}
pub struct CancelSm {
pub service_type: String,
pub message_id: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
pub dest_addr_ton: u8,
pub dest_addr_npi: u8,
pub destination_addr: String,
}
pub struct CancelSmResp {}
pub struct BindTransceiver {
pub system_id: String,
pub password: String,
pub system_type: String,
pub interface_version: u8,
pub addr_ton: u8,
pub addr_npi: u8,
pub address_range: String,
}
pub struct BindTransceiverResp {
pub system_id: String,
}
pub struct Outbind {
pub system_id: String,
pub password: String,
}
pub struct EnquireLink {}
pub struct EnquireLinkResp {}
pub struct SubmitMulti {
pub service_type: String,
pub source_addr_ton: u8,
pub source_addr_npi: u8,
pub source_addr: String,
pub number_of_dests: u8,
pub dest_address: Vec<DestinationAddress>,
pub esm_class: u8,
pub protocol_id: u8,
pub priority_flag: u8,
pub schedule_delivery_time: String,
pub validity_period: String,
pub registered_delivery: u8,
pub replace_if_present_flag: u8,
pub data_coding: u8,
pub sm_default_msg_id: u8,
pub sm_length: u8,
pub short_message: Vec<u8>,
}
pub struct SubmitMultiResp {
pub message_id: String,
pub no_unsuccess: u8,
pub unsuccess_smes: Vec<UnsuccessfulDelivery>,
}
pub struct DestinationAddress {
pub dest_addr_ton: u8,
pub dest_addr_npi: u8,
pub destination_addr: String,
}
pub struct TagLengthValue {
pub tag: u16,
pub length: u16,
pub value: Vec<u8>,
}
pub struct UnsuccessfulDelivery {
pub dest_addr_ton: u8,
pub dest_addr_npi: u8,
pub destination_addr: String,
pub error_status_code: i32,
}
fn write_cstring(buf: &mut Vec<u8>, s: &str) {
buf.extend_from_slice(s.as_bytes());
buf.push(0);
}
fn read_cstring(buf: &[u8], offset: &mut usize) -> io::Result<String> {
let start = *offset;
while *offset < buf.len() && buf[*offset] != 0 {
*offset += 1;
}
if *offset >= buf.len() {
return Err(io::Error::new(io::ErrorKind::InvalidData, "Invalid C string: null terminator not found"));
}
let s = std::str::from_utf8(&buf[start..*offset])
.map_err(|_| io::Error::new(io::ErrorKind::InvalidData, "Invalid UTF-8 sequence"))?
.to_string();
*offset += 1;
Ok(s)
}