-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
udpthread.cpp
296 lines (262 loc) · 8.89 KB
/
udpthread.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
/*
* This file is part of cannelloni, a SocketCAN over Ethernet tunnel.
*
* Copyright (C) 2014-2017 Maximilian Güntner <code@sourcediver.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 as
* published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*/
#include <cstdint>
#include <netinet/in.h>
#include <stdlib.h>
#include <string.h>
#include <algorithm>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/timerfd.h>
#include <sys/socket.h>
#include <net/if.h>
#include <arpa/inet.h>
#include "inet_address.h"
#include "udpthread.h"
#include "logging.h"
#include "make_unique.h"
#include "parser.h"
UDPThread::UDPThread(const struct debugOptions_t &debugOptions,
const struct UDPThreadParams ¶ms)
: ConnectionThread()
, m_sort(params.sortFrames)
, m_checkPeer(params.checkPeer)
, m_socket(0)
, m_addressFamily(params.addressFamily)
, m_sequenceNumber(0)
, m_timeout(100)
, m_rxCount(0)
, m_txCount(0)
{
memcpy(&m_debugOptions, &debugOptions, sizeof(struct debugOptions_t));
memcpy(&m_remoteAddr, ¶ms.remoteAddr, sizeof(struct sockaddr_storage));
memcpy(&m_localAddr, ¶ms.localAddr, sizeof(struct sockaddr_storage));
m_linkMtuSize = params.linkMtuSize;
if (params.addressFamily == AF_INET) {
m_payloadSize = m_linkMtuSize - IPv4_HEADER_SIZE - UDP_HEADER_SIZE;
} else {
m_payloadSize = m_linkMtuSize - IPv6_HEADER_SIZE - UDP_HEADER_SIZE;
}
}
int UDPThread::start() {
/* Setup our connection */
m_socket = socket(m_addressFamily, SOCK_DGRAM, 0);
if (m_socket < 0) {
lerror << "socket Error" << std::endl;
return -1;
}
/* Setup broadcast option */
int broadcastEnable = 1;
if(setsockopt(m_socket,SOL_SOCKET,SO_BROADCAST,&broadcastEnable,sizeof(broadcastEnable)) < 0)
{
lerror <<"Error in setting Broadcast option"<< std::endl;
close(m_socket);
return -1;
}
if (bind(m_socket, (struct sockaddr *)&m_localAddr, sizeof(m_localAddr)) < 0) {
lerror << "Could not bind to address" << std::endl;
close(m_socket);
return -1;
}
return Thread::start();
}
void UDPThread::stop() {
Thread::stop();
/* m_started is now false, we need to wake up the thread */
m_blockTimer.fire();
}
bool UDPThread::parsePacket(uint8_t *buffer, uint16_t len, struct sockaddr_storage *clientAddr) {
if ((m_addressFamily == AF_INET && (memcmp(&((struct sockaddr_in *) clientAddr)->sin_addr, &((struct sockaddr_in *) &m_remoteAddr)->sin_addr, sizeof(struct in_addr)) != 0) && m_checkPeer) ||
(m_addressFamily == AF_INET6 && (memcmp(&((struct sockaddr_in6 *) clientAddr)->sin6_addr, &((struct sockaddr_in6 *) &m_remoteAddr)->sin6_addr, sizeof(struct in6_addr)) != 0) && m_checkPeer)) {
lwarn << "Got a connection attempt from " << formatSocketAddress(getSocketAddress(clientAddr))
<< ", which is not set as a remote. Restart with -p argument to override." << std::endl;
return false;
}
if (m_debugOptions.udp) {
linfo << "Received " << std::dec << len << " Bytes from Host " << formatSocketAddress(getSocketAddress(clientAddr)) << std::endl;
}
auto allocator = [this]()
{
return m_peerThread->getFrameBuffer()->requestFrame(true, m_debugOptions.buffer);
};
auto receiver = [this](canfd_frame* f, bool success)
{
if (!success)
{
m_peerThread->getFrameBuffer()->insertFramePool(f);
return;
}
m_peerThread->transmitFrame(f);
if (m_debugOptions.can)
{
printCANInfo(f);
}
};
try
{
parseFrames(len, buffer, allocator, receiver);
m_rxCount++;
}
catch(std::exception& e)
{
lerror << e.what();
return true;
}
return false;
}
void UDPThread::run() {
fd_set readfds;
ssize_t receivedBytes;
std::vector<uint8_t> bufferVector(m_linkMtuSize);
uint8_t *buffer = bufferVector.data();
struct sockaddr_storage clientAddr;
socklen_t clientAddrLen = sizeof(clientAddr);
/* Set interval to m_timeout */
m_transmitTimer.adjust(m_timeout, m_timeout);
m_blockTimer.adjust(SELECT_TIMEOUT, SELECT_TIMEOUT);
linfo << "UDPThread up and running" << std::endl;
while (m_started) {
/* Prepare readfds */
FD_ZERO(&readfds);
FD_SET(m_socket, &readfds);
FD_SET(m_transmitTimer.getFd(), &readfds);
FD_SET(m_blockTimer.getFd(), &readfds);
int ret = select(std::max({m_socket, m_transmitTimer.getFd(), m_blockTimer.getFd()})+1,
&readfds, NULL, NULL, NULL);
if (ret < 0) {
lerror << "select error" << std::endl;
break;
}
if (FD_ISSET(m_transmitTimer.getFd(), &readfds)) {
if (m_transmitTimer.read() > 0) {
if (m_frameBuffer->getFrameBufferSize())
prepareBuffer();
else {
m_transmitTimer.disable();
}
}
}
if (FD_ISSET(m_blockTimer.getFd(), &readfds)) {
m_blockTimer.read();
}
if (FD_ISSET(m_socket, &readfds)) {
/* Clear buffer */
memset(buffer, 0, m_linkMtuSize);
receivedBytes = recvfrom(m_socket, buffer, m_linkMtuSize,
0, (struct sockaddr *)&clientAddr, &clientAddrLen);
if (receivedBytes < 0) {
lerror << "recvfrom error." << std::endl;
continue;
} else if (receivedBytes > 0) {
parsePacket(buffer, receivedBytes, &clientAddr);
}
}
}
if (m_debugOptions.buffer) {
m_frameBuffer->debug();
}
linfo << "Shutting down. UDP Transmission Summary: TX: " << m_txCount << " RX: " << m_rxCount << std::endl;
shutdown(m_socket, SHUT_RDWR);
close(m_socket);
}
void UDPThread::transmitFrame(canfd_frame *frame) {
m_frameBuffer->insertFrame(frame);
/* If we have stopped the timer, enable it */
if (!m_transmitTimer.isEnabled()) {
m_transmitTimer.enable();
}
/*
* We want that at least this frame and next frame fits into
* the packet. The minimum size is CANNELLONI_FRAME_BASE_SIZE,
* which is just the ID * plus the DLC
*/
if (m_frameBuffer->getFrameBufferSize() +
CANNELLONI_DATA_PACKET_BASE_SIZE +
CANNELLONI_FRAME_BASE_SIZE >= m_payloadSize) {
m_transmitTimer.fire();
} else {
/* Check whether we have custom timeout for this frame */
std::map<uint32_t,uint32_t>::iterator it;
uint32_t can_id;
if (frame->can_id & CAN_EFF_FLAG)
can_id = frame->can_id & CAN_EFF_MASK;
else
can_id = frame->can_id & CAN_SFF_MASK;
it = m_timeoutTable.find(can_id);
if (it != m_timeoutTable.end()) {
uint32_t timeout = it->second;
if (timeout < m_timeout) {
if (timeout < m_transmitTimer.getValue()) {
if (m_debugOptions.timer) {
linfo << "Found timeout entry for ID " << can_id << ". Adjusting timer." << std::endl;
}
/* Let buffer expire in timeout ms */
m_transmitTimer.adjust(m_timeout, timeout);
}
}
}
}
}
void UDPThread::setTimeout(uint32_t timeout) {
m_timeout = timeout;
}
uint32_t UDPThread::getTimeout() {
return m_timeout;
}
void UDPThread::setTimeoutTable(std::map<uint32_t,uint32_t> &timeoutTable) {
m_timeoutTable = timeoutTable;
}
std::map<uint32_t,uint32_t>& UDPThread::getTimeoutTable() {
return m_timeoutTable;
}
void UDPThread::prepareBuffer() {
// TODO : this should be a std::array, since payloadSize is really known at
// compile time.
auto bufWrap = std::make_unique<uint8_t[]>(m_payloadSize);
auto packetBuffer = bufWrap.get();
ssize_t transmittedBytes = 0;
m_frameBuffer->swapBuffers();
if (m_sort)
m_frameBuffer->sortIntermediateBuffer();
std::list<canfd_frame*> *buffer = m_frameBuffer->getIntermediateBuffer();
auto overflowHandler = [this](std::list<canfd_frame*>&, std::list<canfd_frame*>::iterator it)
{
/* Move all remaining frames back to m_buffer */
m_frameBuffer->returnIntermediateBuffer(it);
};
uint8_t* data = buildPacket(m_payloadSize, packetBuffer, *buffer,
m_sequenceNumber++, overflowHandler);
transmittedBytes = sendBuffer(packetBuffer, data-packetBuffer);
if (transmittedBytes != data-packetBuffer) {
lerror << "UDP Socket error. Error while transmitting" << std::endl;
} else {
m_txCount++;
}
m_frameBuffer->unlockIntermediateBuffer();
m_frameBuffer->mergeIntermediateBuffer();
}
ssize_t UDPThread::sendBuffer(uint8_t *buffer, uint16_t len) {
return sendto(m_socket, buffer, len, 0,
(struct sockaddr *) &m_remoteAddr, sizeof(m_remoteAddr));
}