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
mod comms;
mod kiss;
use byteorder::{BigEndian, ByteOrder};
use clap::{App, Arg};
use failure::{bail, Error};
use pnet::packet::udp::{ipv4_checksum, UdpPacket};
use std::fs::File;
use std::io::Read;
use std::net::Ipv4Addr;
use std::ops::Range;
use std::time::Duration;
const SOURCE_PORT: u16 = 1000;
const SOURCE_IP: &str = "192.168.0.1";
const DEST_IP: &str = "0.0.0.0";
const HEADER_LEN: u16 = 8;
const CHKSUM_RNG: Range<usize> = 6..8;
type ClientResult<T> = Result<T, Error>;
fn build_packet(
payload: &[u8],
length: u16,
source_ip: Ipv4Addr,
source_port: u16,
dest_ip: Ipv4Addr,
dest_port: u16,
) -> Vec<u8> {
let mut header = [0; HEADER_LEN as usize];
let fields = [source_port, dest_port, length + HEADER_LEN, 0];
BigEndian::write_u16_into(&fields, &mut header);
let mut packet = header.to_vec();
packet.append(&mut payload.to_vec());
let packet_without_checksum = match UdpPacket::owned(packet.clone()) {
Some(bytes) => bytes,
None => panic!(),
};
let mut checksum = [0; 2];
println!(
"Source: {}:{}, Destination: {}:{}",
source_ip, source_port, dest_ip, dest_port
);
BigEndian::write_u16(
&mut checksum,
ipv4_checksum(&packet_without_checksum, &source_ip, &dest_ip),
);
packet.splice(CHKSUM_RNG, checksum.iter().cloned());
packet
}
fn main() -> ClientResult<()> {
let args = App::new("UART Comms Client")
.arg(
Arg::with_name("bus")
.help("Serial Device")
.short("b")
.takes_value(true)
.required(true),
)
.arg(
Arg::with_name("source_ip")
.help("Source IP address")
.short("s")
.takes_value(true)
.default_value(SOURCE_IP),
)
.arg(
Arg::with_name("dest_ip")
.help("Destination IP address")
.short("d")
.takes_value(true)
.default_value(DEST_IP),
)
.arg(
Arg::with_name("port")
.help("Destination port")
.short("p")
.takes_value(true)
.required(true),
)
.arg(
Arg::with_name("file")
.help("File containing data to send")
.short("f")
.takes_value(true)
.conflicts_with("listen"),
)
.arg(
Arg::with_name("data")
.help("Data to send")
.required_unless_one(&["file", "listen"])
.conflicts_with("file")
.conflicts_with("listen"),
)
.arg(
Arg::with_name("kiss")
.help("Enable KISS framing")
.short("k"),
)
.get_matches();
let bus = args.value_of("bus").unwrap();
let source_ip = args.value_of("source_ip").unwrap().parse()?;
let dest_ip = args.value_of("dest_ip").unwrap().parse()?;
let dest_port = args.value_of("port").unwrap().parse()?;
let query = if let Some(file) = args.value_of("file") {
let mut raw = String::new();
File::open(file).and_then(|mut f| f.read_to_string(&mut raw))?;
raw
} else {
args.value_of("data").unwrap().to_string()
};
println!("Request: {}", query);
let packet = build_packet(
query.as_bytes(),
query.len() as u16,
source_ip,
SOURCE_PORT,
dest_ip,
dest_port,
);
let packet = if args.is_present("kiss") {
kiss::encode(&packet)
} else {
packet
};
let mut conn = comms::serial_init(bus)?;
comms::write(&mut conn, &packet)?;
let msg = comms::read(&mut conn)?;
let msg = if args.is_present("kiss") {
let (frame, _, _) = kiss::decode(&msg)?;
frame
} else {
msg
};
let packet = match UdpPacket::owned(msg.clone()) {
Some(packet) => packet,
None => {
bail!("Failed to parse UDP packet");
}
};
let calc = ipv4_checksum(&packet, &dest_ip, &source_ip);
if packet.get_checksum() != calc {
eprintln!("Checksum mismatch");
} else {
let msg = ::std::str::from_utf8(&msg[8..])?;
println!("Response: {}", msg);
}
Ok(())
}