forked from pschatzmann/Arduino-Emulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUDP.cpp
More file actions
295 lines (254 loc) · 7.2 KB
/
UDP.cpp
File metadata and controls
295 lines (254 loc) · 7.2 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
/*
UDP.cpp
Copyright (c) 2025 Phil Schatzmann. All right reserved.
This library 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 2.1 of the License, or (at your option) any later version.
This library 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 this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "EthernetUdp.h"
#include <errno.h>
#include <fcntl.h>
#include <netdb.h>
#include <sys/socket.h>
#include <unistd.h>
#undef write
#undef read
namespace arduino {
EthernetUDP::EthernetUDP()
: udp_server(-1),
server_port(0),
remote_port(0),
tx_buffer(0),
tx_buffer_len(0),
rx_buffer(0) {
registerCleanup();
active_udp().push_back(this);
}
EthernetUDP::~EthernetUDP() {
stop();
auto &udp_list = active_udp();
auto it = std::find(udp_list.begin(), udp_list.end(), this);
if (it != udp_list.end()) {
udp_list.erase(it);
}
}
uint8_t EthernetUDP::begin(IPAddress address, uint16_t port) {
stop();
server_port = port;
tx_buffer = new char[1460];
if (!tx_buffer) {
log_e("EthernetUDP: could not create tx buffer: %d", errno);
return 0;
}
if ((udp_server = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
log_e("EthernetUDP: could not create socket: %d", errno);
return 0;
}
int yes = 1;
if (setsockopt(udp_server, SOL_SOCKET, SO_REUSEADDR, &yes, sizeof(yes)) < 0) {
log_e("EthernetUDP: could not set socket option: %d", errno);
stop();
return 0;
}
struct sockaddr_in addr;
memset((char *)&addr, 0, sizeof(addr));
addr.sin_family = AF_INET;
addr.sin_port = htons(server_port);
addr.sin_addr.s_addr = (in_addr_t)address;
if (bind(udp_server, (struct sockaddr *)&addr, sizeof(addr)) == -1) {
log_e("EthernetUDP: could not bind socket: %d", errno);
stop();
return 0;
}
fcntl(udp_server, F_SETFL, O_NONBLOCK);
return 1;
}
uint8_t EthernetUDP::begin(uint16_t p) { return begin(IPAddress(INADDR_ANY), p); }
uint8_t EthernetUDP::beginMulticast(IPAddress a, uint16_t p) {
if (begin(IPAddress(INADDR_ANY), p)) {
if ((uint32_t)a != 0) {
struct ip_mreq mreq;
mreq.imr_multiaddr.s_addr = (in_addr_t)a;
mreq.imr_interface.s_addr = INADDR_ANY;
if (setsockopt(udp_server, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq,
sizeof(mreq)) < 0) {
log_e("EthernetUDP: could not join igmp: %d", errno);
stop();
return 0;
}
multicast_ip = a;
}
return 1;
}
return 0;
}
void EthernetUDP::stop() {
if (tx_buffer) {
delete[] tx_buffer;
tx_buffer = NULL;
}
tx_buffer_len = 0;
if (rx_buffer) {
RingBufferExt *b = rx_buffer;
rx_buffer = NULL;
delete b;
}
if (udp_server == -1) return;
if ((uint32_t)multicast_ip != 0) {
struct ip_mreq mreq;
mreq.imr_multiaddr.s_addr = (in_addr_t)multicast_ip;
mreq.imr_interface.s_addr = (in_addr_t)0;
setsockopt(udp_server, IPPROTO_IP, IP_DROP_MEMBERSHIP, &mreq, sizeof(mreq));
multicast_ip = IPAddress(INADDR_ANY);
}
close(udp_server);
udp_server = -1;
}
int EthernetUDP::beginMulticastPacket() {
if (!server_port || multicast_ip == IPAddress(INADDR_ANY)) return 0;
remote_ip = multicast_ip;
remote_port = server_port;
return beginPacket();
}
int EthernetUDP::beginPacket() {
if (!remote_port) return 0;
// allocate tx_buffer if is necessary
if (!tx_buffer) {
tx_buffer = new char[1460];
if (!tx_buffer) {
log_e("EthernetUDP: could not create tx buffer: %d", errno);
return 0;
}
}
tx_buffer_len = 0;
// check whereas socket is already open
if (udp_server != -1) return 1;
if ((udp_server = socket(AF_INET, SOCK_DGRAM, 0)) == -1) {
log_e("EthernetUDP: could not create socket: %d", errno);
return 0;
}
fcntl(udp_server, F_SETFL, O_NONBLOCK);
return 1;
}
int EthernetUDP::beginPacket(IPAddress ip, uint16_t port) {
remote_ip = ip;
remote_port = port;
return beginPacket();
}
int EthernetUDP::beginPacket(const char *host, uint16_t port) {
struct hostent *server;
server = gethostbyname(host);
if (server == NULL) {
log_e("EthernetUDP: could not get host from dns: %d", errno);
return 0;
}
return beginPacket(IPAddress((const uint8_t *)(server->h_addr_list[0])),
port);
}
int EthernetUDP::endPacket() {
struct sockaddr_in recipient;
recipient.sin_addr.s_addr = (uint32_t)remote_ip;
recipient.sin_family = AF_INET;
recipient.sin_port = htons(remote_port);
int sent = sendto(udp_server, tx_buffer, tx_buffer_len, 0,
(struct sockaddr *)&recipient, sizeof(recipient));
if (sent < 0) {
log_e("EthernetUDP: could not send data: %d", errno);
return 0;
}
return 1;
}
size_t EthernetUDP::write(uint8_t data) {
if (tx_buffer_len == 1460) {
endPacket();
tx_buffer_len = 0;
}
tx_buffer[tx_buffer_len++] = data;
return 1;
}
size_t EthernetUDP::write(const uint8_t *buffer, size_t size) {
size_t i;
for (i = 0; i < size; i++) write(buffer[i]);
return i;
}
int EthernetUDP::parsePacket() {
if (rx_buffer) return 0;
struct sockaddr_in si_other;
int slen = sizeof(si_other), len;
char *buf = new char[1460];
if (!buf) {
return 0;
}
if ((len = recvfrom(udp_server, buf, 1460, MSG_DONTWAIT,
(struct sockaddr *)&si_other, (socklen_t *)&slen)) ==
-1) {
delete[] buf;
if (errno == EWOULDBLOCK) {
return 0;
}
log_e("EthernetUDP: could not receive data: %d", errno);
return 0;
}
remote_ip = IPAddress(si_other.sin_addr.s_addr);
remote_port = ntohs(si_other.sin_port);
if (len > 0) {
rx_buffer = new RingBufferExt(len);
rx_buffer->write(buf, len);
}
delete[] buf;
return len;
}
int EthernetUDP::available() {
if (!rx_buffer) return 0;
return rx_buffer->available();
}
int EthernetUDP::read() {
if (!rx_buffer) return -1;
int out = rx_buffer->read();
if (!rx_buffer->available()) {
RingBufferExt *b = rx_buffer;
rx_buffer = 0;
delete b;
}
return out;
}
int EthernetUDP::read(unsigned char *buffer, size_t len) {
return read((char *)buffer, len);
}
int EthernetUDP::read(char *buffer, size_t len) {
if (!rx_buffer) return 0;
int out = rx_buffer->read(buffer, len);
if (!rx_buffer->available()) {
RingBufferExt *b = rx_buffer;
rx_buffer = 0;
delete b;
}
return out;
}
int EthernetUDP::peek() {
if (!rx_buffer) return -1;
return rx_buffer->peek();
}
void EthernetUDP::flush() {
if (!rx_buffer) return;
RingBufferExt *b = rx_buffer;
rx_buffer = 0;
delete b;
}
IPAddress EthernetUDP::remoteIP() { return remote_ip; }
uint16_t EthernetUDP::remotePort() { return remote_port; }
/// e.g. used by UDP
void EthernetUDP::log_e(const char *msg, int errorNo) {
char errorStr[200];
snprintf(errorStr, 200, msg, errorNo);
Logger.error(errorStr);
}
} // namespace arduino