-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathEthernetICMP.cpp
325 lines (258 loc) · 9 KB
/
EthernetICMP.cpp
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
/*
* Icmp.cpp: Library to send/receive ICMP packets with the Arduino ethernet shield.
* This version only offers minimal wrapping of socket.cpp
* Drop Icmp.h/.cpp into the Ethernet library directory at hardware/libraries/Ethernet/
*
* MIT License:
* Copyright (c) 2008 Bjoern Hartmann
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* [email protected] 12/30/2008
*/
/*
* Copyright (c) 2010 by Blake Foster <[email protected]>
*
* This file is free software; you can redistribute it and/or modify
* it under the terms of either the GNU General Public License version 2
* or the GNU Lesser General Public License version 2.1, both as
* published by the Free Software Foundation.
*/
#include <Arduino.h>
//#include "Ethernet.h"
//#include "utility/w5100.h"
#include "EthernetICMP.h"
#ifdef ICMPPING_INSERT_YIELDS
#define ICMPPING_DOYIELD() delay(2)
#else
#define ICMPPING_DOYIELD()
#endif
inline uint16_t _makeUint16(const uint8_t& highOrder, const uint8_t& lowOrder)
{
// make a 16-bit unsigned integer given the low order and high order bytes.
// lowOrder first because the Arduino is little endian.
uint8_t value [] = {lowOrder, highOrder};
return *(uint16_t *)&value;
}
uint16_t _checksum(const EthernetICMPEcho& echo)
{
// calculate the checksum of an ICMPEcho with all fields but icmpHeader.checksum populated
unsigned long sum = 0;
// add the header, bytes reversed since we're using little-endian arithmetic.
sum += _makeUint16(echo.icmpHeader.type, echo.icmpHeader.code);
// add id and sequence
sum += echo.id + echo.seq;
// add time, one half at a time.
uint16_t const * time = (uint16_t const *)&echo.time;
sum += *time + *(time + 1);
// add the payload
for (uint8_t const * b = echo.payload; b < echo.payload + sizeof(echo.payload); b+=2)
{
sum += _makeUint16(*b, *(b + 1));
}
// ones complement of ones complement sum
sum = (sum >> 16) + (sum & 0xffff);
sum += (sum >> 16);
return ~sum;
}
EthernetICMPEcho::EthernetICMPEcho(uint8_t type, uint16_t _id, uint16_t _seq, uint8_t * _payload)
: seq(_seq), id(_id), time(millis())
{
memcpy(payload, _payload, REQ_DATASIZE);
icmpHeader.type = type;
icmpHeader.code = 0;
icmpHeader.checksum = _checksum(*this);
}
EthernetICMPEcho::EthernetICMPEcho()
: seq(0), id(0), time(0)
{
memset(payload, 0, sizeof(payload));
icmpHeader.code = 0;
icmpHeader.type = 0;
icmpHeader.checksum = 0;
}
void EthernetICMPEcho::serialize(uint8_t * binData) const
{
*(binData++) = icmpHeader.type;
*(binData++) = icmpHeader.code;
*(uint16_t *)binData = htons(icmpHeader.checksum); binData += 2;
*(uint16_t *)binData = htons(id); binData += 2;
*(uint16_t *)binData = htons(seq); binData += 2;
*(icmp_time_t *) binData = htonl(time); binData += 4;
memcpy(binData, payload, sizeof(payload));
}
void EthernetICMPEcho::deserialize(uint8_t const * binData)
{
icmpHeader.type = *(binData++);
icmpHeader.code = *(binData++);
icmpHeader.checksum = ntohs(*(uint16_t *)binData); binData += 2;
id = ntohs(*(uint16_t *)binData); binData += 2;
seq = ntohs(*(uint16_t *)binData); binData += 2;
if (icmpHeader.type != TIME_EXCEEDED)
{
time = ntohl(*(icmp_time_t *)binData); binData += 4;
}
memcpy(payload, binData, sizeof(payload));
}
uint16_t EthernetICMPPing::ping_timeout = PING_TIMEOUT;
EthernetICMPPing::EthernetICMPPing(SOCKET socket, uint8_t id) :
#ifdef ICMPPING_ASYNCH_ENABLE
_curSeq(0), _numRetries(0), _asyncstart(0), _asyncstatus(BAD_RESPONSE),
#endif
_id(id), _nextSeq(0), _socket(socket), _attempt(0)
{
memset(_payload, 0x1A, REQ_DATASIZE);
}
void EthernetICMPPing::setPayload(uint8_t * payload)
{
memcpy(_payload, payload, REQ_DATASIZE);
}
void EthernetICMPPing::openSocket()
{
W5100.execCmdSn(_socket, Sock_CLOSE);
W5100.writeSnIR(_socket, 0xFF);
W5100.writeSnMR(_socket, SnMR::IPRAW);
W5100.writeSnPROTO(_socket, IPPROTO::ICMP);
W5100.writeSnPORT(_socket, 0);
W5100.execCmdSn(_socket, Sock_OPEN);
}
void EthernetICMPPing::closeSocket()
{
W5100.execCmdSn(_socket, Sock_CLOSE);
W5100.writeSnIR(_socket, 0xFF);
}
void EthernetICMPPing::operator()(const IPAddress& addr, int nRetries, EthernetICMPEchoReply& result)
{
openSocket();
EthernetICMPEcho echoReq(ICMP_ECHOREQ, _id, _nextSeq++, _payload);
for (_attempt=0; _attempt<nRetries; ++_attempt)
{
ICMPPING_DOYIELD();
result.status = sendEchoRequest(addr, echoReq);
if (result.status == SUCCESS)
{
byte replyAddr [4];
ICMPPING_DOYIELD();
receiveEchoReply(echoReq, addr, result);
}
if (result.status == SUCCESS)
{
break;
}
}
W5100.execCmdSn(_socket, Sock_CLOSE);
W5100.writeSnIR(_socket, 0xFF);
}
EthernetICMPEchoReply EthernetICMPPing::operator()(const IPAddress& addr, int nRetries)
{
EthernetICMPEchoReply reply;
operator()(addr, nRetries, reply);
return reply;
}
#ifdef ICMPPING_ASYNCH_ENABLE
/*
* When ICMPPING_ASYNCH_ENABLE is defined, we have access to the
* asyncStart()/asyncComplete() methods from the API.
*/
bool EthernetICMPPing::asyncSend(EthernetICMPEchoReply& result)
{
EthernetICMPEcho echoReq(ICMP_ECHOREQ, _id, _curSeq, _payload);
Status sendOpResult(NO_RESPONSE);
bool sendSuccess = false;
for (uint8_t i=_attempt; i<_numRetries; ++i)
{
_attempt++;
ICMPPING_DOYIELD();
sendOpResult = sendEchoRequest(_addr, echoReq);
if (sendOpResult == SUCCESS)
{
sendSuccess = true; // it worked
sendOpResult = ASYNC_SENT; // we're doing this async-style, force the status
_asyncstart = millis(); // not the start time, for timeouts
break; // break out of this loop, 'cause we're done.
}
}
_asyncstatus = sendOpResult; // keep track of this, in case the ICMPEchoReply isn't re-used
result.status = _asyncstatus; // set the result, in case the ICMPEchoReply is checked
return sendSuccess; // return success of send op
}
bool EthernetICMPPing::asyncStart(const IPAddress& addr, int nRetries, EthernetICMPEchoReply& result)
{
openSocket();
// stash our state, so we can access
// in asynchSend()/asyncComplete()
_numRetries = nRetries;
_attempt = 0;
_curSeq = _nextSeq++;
_addr = addr;
return asyncSend(result);
}
bool EthernetICMPPing::asyncComplete(EthernetICMPEchoReply& result)
{
if (_asyncstatus != ASYNC_SENT)
{
// we either:
// - didn't start an async request;
// - failed to send; or
// - are no longer waiting on this packet.
// either way, we're done
// Close RAW socket to allow device being pinged again
closeSocket();
return true;
}
if (W5100.readSnRX_SIZE(_socket))
{
// ooooh, we've got a pending reply
EthernetICMPEcho echoReq(ICMP_ECHOREQ, _id, _curSeq, _payload);
receiveEchoReply(echoReq, _addr, result);
_asyncstatus = result.status; // make note of this status, whatever it is.
// Close RAW socket to allow device being pinged again
closeSocket();
return true; // whatever the result of the receiveEchoReply(), the async op is done.
}
// nothing yet... check if we've timed out
if ( (millis() - _asyncstart) > ping_timeout)
{
// yep, we've timed out...
if (_attempt < _numRetries)
{
// still, this wasn't our last attempt, let's try again
if (asyncSend(result))
{
// another send has succeeded
// we'll wait for that now...
return false;
}
// this send has failed. too bad,
// we are done.
// Close RAW socket to allow device being pinged again
closeSocket();
return true;
}
// we timed out and have no more attempts left...
// hello? is anybody out there?
// guess not:
result.status = NO_RESPONSE;
// Close RAW socket to allow device being pinged again
closeSocket();
return true;
}
// have yet to time out, will wait some more:
return false; // results still not in
}
#endif /* ICMPPING_ASYNCH_ENABLE */