Modernize code: very last fixes (#6290)
[oweals/minetest.git] / src / socket.cpp
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "socket.h"
21
22 #include <cstdio>
23 #include <iostream>
24 #include <cstdlib>
25 #include <cstring>
26 #include <cerrno>
27 #include <sstream>
28 #include <iomanip>
29 #include "util/string.h"
30 #include "util/numeric.h"
31 #include "constants.h"
32 #include "debug.h"
33 #include "settings.h"
34 #include "log.h"
35
36 #ifdef _WIN32
37         // Without this some of the network functions are not found on mingw
38         #ifndef _WIN32_WINNT
39                 #define _WIN32_WINNT 0x0501
40         #endif
41         #include <windows.h>
42         #include <winsock2.h>
43         #include <ws2tcpip.h>
44         #define LAST_SOCKET_ERR() WSAGetLastError()
45         typedef SOCKET socket_t;
46         typedef int socklen_t;
47 #else
48         #include <sys/types.h>
49         #include <sys/socket.h>
50         #include <netinet/in.h>
51         #include <fcntl.h>
52         #include <netdb.h>
53         #include <unistd.h>
54         #include <arpa/inet.h>
55         #define LAST_SOCKET_ERR() (errno)
56         typedef int socket_t;
57 #endif
58
59 // Set to true to enable verbose debug output
60 bool socket_enable_debug_output = false;        // yuck
61
62 static bool g_sockets_initialized = false;
63
64 // Initialize sockets
65 void sockets_init()
66 {
67 #ifdef _WIN32
68         // Windows needs sockets to be initialized before use
69         WSADATA WsaData;
70         if(WSAStartup( MAKEWORD(2,2), &WsaData ) != NO_ERROR)
71                 throw SocketException("WSAStartup failed");
72 #endif
73         g_sockets_initialized = true;
74 }
75
76 void sockets_cleanup()
77 {
78 #ifdef _WIN32
79         // On Windows, cleanup sockets after use
80         WSACleanup();
81 #endif
82 }
83
84 /*
85         Address
86 */
87
88 Address::Address()
89 {
90         memset(&m_address, 0, sizeof(m_address));
91 }
92
93 Address::Address(u32 address, u16 port)
94 {
95         memset(&m_address, 0, sizeof(m_address));
96         setAddress(address);
97         setPort(port);
98 }
99
100 Address::Address(u8 a, u8 b, u8 c, u8 d, u16 port)
101 {
102         memset(&m_address, 0, sizeof(m_address));
103         setAddress(a, b, c, d);
104         setPort(port);
105 }
106
107 Address::Address(const IPv6AddressBytes *ipv6_bytes, u16 port)
108 {
109         memset(&m_address, 0, sizeof(m_address));
110         setAddress(ipv6_bytes);
111         setPort(port);
112 }
113
114 // Equality (address family, address and port must be equal)
115 bool Address::operator==(const Address &address)
116 {
117         if (address.m_addr_family != m_addr_family || address.m_port != m_port)
118                 return false;
119
120         if (m_addr_family == AF_INET) {
121                 return m_address.ipv4.sin_addr.s_addr ==
122                        address.m_address.ipv4.sin_addr.s_addr;
123         }
124
125         if (m_addr_family == AF_INET6) {
126                 return memcmp(m_address.ipv6.sin6_addr.s6_addr,
127                               address.m_address.ipv6.sin6_addr.s6_addr, 16) == 0;
128         }
129
130         return false;
131 }
132
133 bool Address::operator!=(const Address &address)
134 {
135         return !(*this == address);
136 }
137
138 void Address::Resolve(const char *name)
139 {
140         if (!name || name[0] == 0) {
141                 if (m_addr_family == AF_INET) {
142                         setAddress((u32) 0);
143                 } else if (m_addr_family == AF_INET6) {
144                         setAddress((IPv6AddressBytes*) 0);
145                 }
146                 return;
147         }
148
149         struct addrinfo *resolved, hints;
150         memset(&hints, 0, sizeof(hints));
151
152         // Setup hints
153         hints.ai_socktype = 0;
154         hints.ai_protocol = 0;
155         hints.ai_flags    = 0;
156         if(g_settings->getBool("enable_ipv6"))
157         {
158                 // AF_UNSPEC allows both IPv6 and IPv4 addresses to be returned
159                 hints.ai_family = AF_UNSPEC;
160         }
161         else
162         {
163                 hints.ai_family = AF_INET;
164         }
165
166         // Do getaddrinfo()
167         int e = getaddrinfo(name, NULL, &hints, &resolved);
168         if(e != 0)
169                 throw ResolveError(gai_strerror(e));
170
171         // Copy data
172         if(resolved->ai_family == AF_INET)
173         {
174                 struct sockaddr_in *t = (struct sockaddr_in *) resolved->ai_addr;
175                 m_addr_family = AF_INET;
176                 m_address.ipv4 = *t;
177         }
178         else if(resolved->ai_family == AF_INET6)
179         {
180                 struct sockaddr_in6 *t = (struct sockaddr_in6 *) resolved->ai_addr;
181                 m_addr_family = AF_INET6;
182                 m_address.ipv6 = *t;
183         }
184         else
185         {
186                 freeaddrinfo(resolved);
187                 throw ResolveError("");
188         }
189         freeaddrinfo(resolved);
190 }
191
192 // IP address -> textual representation
193 std::string Address::serializeString() const
194 {
195 // windows XP doesnt have inet_ntop, maybe use better func
196 #ifdef _WIN32
197         if(m_addr_family == AF_INET)
198         {
199                 u8 a, b, c, d;
200                 u32 addr;
201                 addr = ntohl(m_address.ipv4.sin_addr.s_addr);
202                 a = (addr & 0xFF000000) >> 24;
203                 b = (addr & 0x00FF0000) >> 16;
204                 c = (addr & 0x0000FF00) >> 8;
205                 d = (addr & 0x000000FF);
206                 return itos(a) + "." + itos(b) + "." + itos(c) + "." + itos(d);
207         }
208         else if(m_addr_family == AF_INET6)
209         {
210                 std::ostringstream os;
211                 for(int i = 0; i < 16; i += 2)
212                 {
213                         u16 section =
214                         (m_address.ipv6.sin6_addr.s6_addr[i] << 8) |
215                         (m_address.ipv6.sin6_addr.s6_addr[i + 1]);
216                         os << std::hex << section;
217                         if(i < 14)
218                                 os << ":";
219                 }
220                 return os.str();
221         }
222         else
223                 return std::string("");
224 #else
225         char str[INET6_ADDRSTRLEN];
226         if (inet_ntop(m_addr_family, (m_addr_family == AF_INET) ? (void*)&(m_address.ipv4.sin_addr) : (void*)&(m_address.ipv6.sin6_addr), str, INET6_ADDRSTRLEN) == NULL) {
227                 return std::string("");
228         }
229         return std::string(str);
230 #endif
231 }
232
233 struct sockaddr_in Address::getAddress() const
234 {
235         return m_address.ipv4; // NOTE: NO PORT INCLUDED, use getPort()
236 }
237
238 struct sockaddr_in6 Address::getAddress6() const
239 {
240         return m_address.ipv6; // NOTE: NO PORT INCLUDED, use getPort()
241 }
242
243 u16 Address::getPort() const
244 {
245         return m_port;
246 }
247
248 int Address::getFamily() const
249 {
250         return m_addr_family;
251 }
252
253 bool Address::isIPv6() const
254 {
255         return m_addr_family == AF_INET6;
256 }
257
258 bool Address::isZero() const
259 {
260         if (m_addr_family == AF_INET) {
261                 return m_address.ipv4.sin_addr.s_addr == 0;
262         }
263
264         if (m_addr_family == AF_INET6) {
265                 static const char zero[16] = {0};
266                 return memcmp(m_address.ipv6.sin6_addr.s6_addr,
267                               zero, 16) == 0;
268         }
269         return false;
270 }
271
272 void Address::setAddress(u32 address)
273 {
274         m_addr_family = AF_INET;
275         m_address.ipv4.sin_family = AF_INET;
276         m_address.ipv4.sin_addr.s_addr = htonl(address);
277 }
278
279 void Address::setAddress(u8 a, u8 b, u8 c, u8 d)
280 {
281         m_addr_family = AF_INET;
282         m_address.ipv4.sin_family = AF_INET;
283         u32 addr = htonl((a << 24) | (b << 16) | (c << 8) | d);
284         m_address.ipv4.sin_addr.s_addr = addr;
285 }
286
287 void Address::setAddress(const IPv6AddressBytes *ipv6_bytes)
288 {
289         m_addr_family = AF_INET6;
290         m_address.ipv6.sin6_family = AF_INET6;
291         if (ipv6_bytes)
292                 memcpy(m_address.ipv6.sin6_addr.s6_addr, ipv6_bytes->bytes, 16);
293         else
294                 memset(m_address.ipv6.sin6_addr.s6_addr, 0, 16);
295 }
296
297 void Address::setPort(u16 port)
298 {
299         m_port = port;
300 }
301
302 void Address::print(std::ostream *s) const
303 {
304         if(m_addr_family == AF_INET6)
305                 *s << "[" << serializeString() << "]:" << m_port;
306         else
307                 *s << serializeString() << ":" << m_port;
308 }
309
310 /*
311         UDPSocket
312 */
313
314 UDPSocket::UDPSocket(bool ipv6)
315 {
316         init(ipv6, false);
317 }
318
319 bool UDPSocket::init(bool ipv6, bool noExceptions)
320 {
321         if (!g_sockets_initialized) {
322                 dstream << "Sockets not initialized" << std::endl;
323                 return false;
324         }
325
326         // Use IPv6 if specified
327         m_addr_family = ipv6 ? AF_INET6 : AF_INET;
328         m_handle = socket(m_addr_family, SOCK_DGRAM, IPPROTO_UDP);
329
330         if (socket_enable_debug_output) {
331                 dstream << "UDPSocket(" << (int) m_handle
332                         << ")::UDPSocket(): ipv6 = "
333                         << (ipv6 ? "true" : "false")
334                         << std::endl;
335         }
336
337         if (m_handle <= 0) {
338                 if (noExceptions) {
339                         return false;
340                 }
341
342                 throw SocketException(std::string("Failed to create socket: error ")
343                                 + itos(LAST_SOCKET_ERR()));
344         }
345
346         setTimeoutMs(0);
347
348         return true;
349 }
350
351
352 UDPSocket::~UDPSocket()
353 {
354         if (socket_enable_debug_output) {
355                 dstream << "UDPSocket( " << (int) m_handle << ")::~UDPSocket()"
356                         << std::endl;
357         }
358
359 #ifdef _WIN32
360         closesocket(m_handle);
361 #else
362         close(m_handle);
363 #endif
364 }
365
366 void UDPSocket::Bind(Address addr)
367 {
368         if(socket_enable_debug_output) {
369                 dstream << "UDPSocket(" << (int) m_handle << ")::Bind(): "
370                         << addr.serializeString() << ":"
371                         << addr.getPort() << std::endl;
372         }
373
374         if (addr.getFamily() != m_addr_family) {
375                 static const char *errmsg = "Socket and bind address families do not match";
376                 errorstream << "Bind failed: " << errmsg << std::endl;
377                 throw SocketException(errmsg);
378         }
379
380         if(m_addr_family == AF_INET6) {
381                 struct sockaddr_in6 address;
382                 memset(&address, 0, sizeof(address));
383
384                 address             = addr.getAddress6();
385                 address.sin6_family = AF_INET6;
386                 address.sin6_port   = htons(addr.getPort());
387
388                 if(bind(m_handle, (const struct sockaddr *) &address,
389                                 sizeof(struct sockaddr_in6)) < 0) {
390                         dstream << (int) m_handle << ": Bind failed: "
391                                 << strerror(errno) << std::endl;
392                         throw SocketException("Failed to bind socket");
393                 }
394         } else {
395                 struct sockaddr_in address;
396                 memset(&address, 0, sizeof(address));
397
398                 address                 = addr.getAddress();
399                 address.sin_family      = AF_INET;
400                 address.sin_port        = htons(addr.getPort());
401
402                 if (bind(m_handle, (const struct sockaddr *) &address,
403                                 sizeof(struct sockaddr_in)) < 0) {
404                         dstream << (int)m_handle << ": Bind failed: "
405                                 << strerror(errno) << std::endl;
406                         throw SocketException("Failed to bind socket");
407                 }
408         }
409 }
410
411 void UDPSocket::Send(const Address & destination, const void * data, int size)
412 {
413         bool dumping_packet = false; // for INTERNET_SIMULATOR
414
415         if(INTERNET_SIMULATOR)
416                 dumping_packet = myrand() % INTERNET_SIMULATOR_PACKET_LOSS == 0;
417
418         if(socket_enable_debug_output) {
419                 // Print packet destination and size
420                 dstream << (int)m_handle << " -> ";
421                 destination.print(&dstream);
422                 dstream << ", size=" << size;
423
424                 // Print packet contents
425                 dstream << ", data=";
426                 for(int i = 0; i < size && i < 20; i++) {
427                         if(i % 2 == 0)
428                                 dstream << " ";
429                         unsigned int a = ((const unsigned char *)data)[i];
430                         dstream << std::hex << std::setw(2) << std::setfill('0') << a;
431                 }
432
433                 if(size > 20)
434                         dstream << "...";
435
436                 if(dumping_packet)
437                         dstream << " (DUMPED BY INTERNET_SIMULATOR)";
438
439                 dstream << std::endl;
440         }
441
442         if(dumping_packet) {
443                 // Lol let's forget it
444                 dstream << "UDPSocket::Send(): INTERNET_SIMULATOR: dumping packet."
445                                 << std::endl;
446                 return;
447         }
448
449         if(destination.getFamily() != m_addr_family)
450                 throw SendFailedException("Address family mismatch");
451
452         int sent;
453         if(m_addr_family == AF_INET6) {
454                 struct sockaddr_in6 address = destination.getAddress6();
455                 address.sin6_port = htons(destination.getPort());
456                 sent = sendto(m_handle, (const char *)data, size,
457                                 0, (struct sockaddr *)&address, sizeof(struct sockaddr_in6));
458         } else {
459                 struct sockaddr_in address = destination.getAddress();
460                 address.sin_port = htons(destination.getPort());
461                 sent = sendto(m_handle, (const char *)data, size,
462                                 0, (struct sockaddr *)&address, sizeof(struct sockaddr_in));
463         }
464
465         if(sent != size)
466                 throw SendFailedException("Failed to send packet");
467 }
468
469 int UDPSocket::Receive(Address & sender, void *data, int size)
470 {
471         // Return on timeout
472         if (!WaitData(m_timeout_ms))
473                 return -1;
474
475         int received;
476         if (m_addr_family == AF_INET6) {
477                 struct sockaddr_in6 address;
478                 memset(&address, 0, sizeof(address));
479                 socklen_t address_len = sizeof(address);
480
481                 received = recvfrom(m_handle, (char *) data,
482                                 size, 0, (struct sockaddr *) &address, &address_len);
483
484                 if(received < 0)
485                         return -1;
486
487                 u16 address_port = ntohs(address.sin6_port);
488                 IPv6AddressBytes bytes;
489                 memcpy(bytes.bytes, address.sin6_addr.s6_addr, 16);
490                 sender = Address(&bytes, address_port);
491         } else {
492                 struct sockaddr_in address;
493                 memset(&address, 0, sizeof(address));
494
495                 socklen_t address_len = sizeof(address);
496
497                 received = recvfrom(m_handle, (char *)data,
498                                 size, 0, (struct sockaddr *)&address, &address_len);
499
500                 if(received < 0)
501                         return -1;
502
503                 u32 address_ip = ntohl(address.sin_addr.s_addr);
504                 u16 address_port = ntohs(address.sin_port);
505
506                 sender = Address(address_ip, address_port);
507         }
508
509         if (socket_enable_debug_output) {
510                 // Print packet sender and size
511                 dstream << (int) m_handle << " <- ";
512                 sender.print(&dstream);
513                 dstream << ", size=" << received;
514
515                 // Print packet contents
516                 dstream << ", data=";
517                 for(int i = 0; i < received && i < 20; i++) {
518                         if(i % 2 == 0)
519                                 dstream << " ";
520                         unsigned int a = ((const unsigned char *) data)[i];
521                         dstream << std::hex << std::setw(2) << std::setfill('0') << a;
522                 }
523                 if(received > 20)
524                         dstream << "...";
525
526                 dstream << std::endl;
527         }
528
529         return received;
530 }
531
532 int UDPSocket::GetHandle()
533 {
534         return m_handle;
535 }
536
537 void UDPSocket::setTimeoutMs(int timeout_ms)
538 {
539         m_timeout_ms = timeout_ms;
540 }
541
542 bool UDPSocket::WaitData(int timeout_ms)
543 {
544         fd_set readset;
545         int result;
546
547         // Initialize the set
548         FD_ZERO(&readset);
549         FD_SET(m_handle, &readset);
550
551         // Initialize time out struct
552         struct timeval tv;
553         tv.tv_sec = 0;
554         tv.tv_usec = timeout_ms * 1000;
555
556         // select()
557         result = select(m_handle+1, &readset, NULL, NULL, &tv);
558
559         if (result == 0)
560                 return false;
561
562         if (result < 0 && (errno == EINTR || errno == EBADF)) {
563                 // N.B. select() fails when sockets are destroyed on Connection's dtor
564                 // with EBADF.  Instead of doing tricky synchronization, allow this
565                 // thread to exit but don't throw an exception.
566                 return false;
567         }
568
569         if (result < 0) {
570                 dstream << m_handle << ": Select failed: " << strerror(errno) << std::endl;
571
572 #ifdef _WIN32
573                 int e = WSAGetLastError();
574                 dstream << (int) m_handle << ": WSAGetLastError()="
575                         << e << std::endl;
576                 if (e == 10004 /* WSAEINTR */ || e == 10009 /* WSAEBADF */) {
577                         infostream << "Ignoring WSAEINTR/WSAEBADF." << std::endl;
578                         return false;
579                 }
580 #endif
581
582                 throw SocketException("Select failed");
583         } else if (!FD_ISSET(m_handle, &readset)) {
584                 // No data
585                 return false;
586         }
587
588         // There is data
589         return true;
590 }