Tue, 16 Dec 2014 01:46:22 +0200
- I think closing sockets is a good idea
9
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
1 | /* |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
2 | Copyright 2014 Teemu Piippo |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
3 | All rights reserved. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
4 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
5 | Redistribution and use in source and binary forms, with or without |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
6 | modification, are permitted provided that the following conditions |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
7 | are met: |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
8 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
9 | 1. Redistributions of source code must retain the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
10 | notice, this list of conditions and the following disclaimer. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
11 | 2. Redistributions in binary form must reproduce the above copyright |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
12 | notice, this list of conditions and the following disclaimer in the |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
13 | documentation and/or other materials provided with the distribution. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
14 | 3. Neither the name of the copyright holder nor the names of its |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
15 | contributors may be used to endorse or promote products derived from |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
16 | this software without specific prior written permission. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
17 | |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
20 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
21 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
22 | OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
23 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
24 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
25 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
26 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
27 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
28 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
29 | */ |
e7a09ceb4505
- now with more license headers
Teemu Piippo <crimsondusk64@gmail.com>
parents:
8
diff
changeset
|
30 | |
5 | 31 | #include <sys/socket.h> |
32 | #include <sys/types.h> | |
33 | #include <sys/time.h> | |
34 | #include <netinet/in.h> | |
35 | #include <string.h> | |
36 | #include <fcntl.h> | |
56
b4caacf567af
- I think closing sockets is a good idea
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
37 | #include <unistd.h> |
6 | 38 | #include "udpsocket.h" |
8
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
39 | #include "../huffman/huffman.h" |
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
40 | |
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
41 | static unsigned char g_huffmanBuffer[131072]; |
5 | 42 | |
43 | // ----------------------------------------------------------------------------- | |
44 | // | |
45 | UDPSocket::UDPSocket() : | |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
46 | m_socket (socket (AF_INET, SOCK_DGRAM, IPPROTO_UDP)) {} |
5 | 47 | |
48 | // ----------------------------------------------------------------------------- | |
49 | // | |
56
b4caacf567af
- I think closing sockets is a good idea
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
50 | UDPSocket::~UDPSocket() |
b4caacf567af
- I think closing sockets is a good idea
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
51 | { |
b4caacf567af
- I think closing sockets is a good idea
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
52 | close (m_socket); |
b4caacf567af
- I think closing sockets is a good idea
Teemu Piippo <crimsondusk64@gmail.com>
parents:
31
diff
changeset
|
53 | } |
5 | 54 | |
55 | // ------------------------------------------------------------------------------------------------- | |
56 | // | |
57 | METHOD | |
58 | UDPSocket::set_blocking (bool a) -> bool | |
59 | { | |
60 | int flags = fcntl (m_socket, F_GETFL, 0); | |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
61 | int newflags = a ? (flags & ~O_NONBLOCK) : (flags | O_NONBLOCK); |
5 | 62 | |
63 | if (flags < 0 || fcntl (m_socket, F_SETFL, newflags) != 0) | |
64 | { | |
65 | m_error = "Unable to set socket as non-blocking"; | |
66 | return false; | |
67 | } | |
68 | ||
69 | return true; | |
70 | } | |
71 | ||
72 | // ------------------------------------------------------------------------------------------------- | |
73 | // | |
74 | METHOD | |
75 | UDPSocket::bind (unsigned short port) -> bool | |
76 | { | |
19
2046a1651c0b
- removed needless 'struct's
Teemu Piippo <crimsondusk64@gmail.com>
parents:
10
diff
changeset
|
77 | sockaddr_in svaddr; |
5 | 78 | memset (&svaddr, 0, sizeof svaddr); |
79 | svaddr.sin_family = AF_INET; | |
80 | svaddr.sin_port = htons (port); | |
81 | svaddr.sin_addr.s_addr = htonl (INADDR_ANY); | |
82 | ||
19
2046a1651c0b
- removed needless 'struct's
Teemu Piippo <crimsondusk64@gmail.com>
parents:
10
diff
changeset
|
83 | if (::bind (m_socket, reinterpret_cast<sockaddr*> (&svaddr), sizeof svaddr) == -1) |
5 | 84 | { |
85 | m_error = String ("Couldn't bind to port ") + String::from_number (port); | |
86 | return false; | |
87 | } | |
88 | ||
89 | return true; | |
90 | } | |
91 | ||
92 | // ------------------------------------------------------------------------------------------------- | |
93 | // | |
94 | METHOD | |
95 | UDPSocket::read (Datagram& datagram) -> bool | |
96 | { | |
97 | sockaddr_in claddr; | |
98 | socklen_t socklen = sizeof claddr; | |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
99 | int length = ::recvfrom (m_socket, g_huffmanBuffer, sizeof g_huffmanBuffer, 0, |
19
2046a1651c0b
- removed needless 'struct's
Teemu Piippo <crimsondusk64@gmail.com>
parents:
10
diff
changeset
|
100 | reinterpret_cast<sockaddr*> (&claddr), &socklen); |
5 | 101 | |
102 | if (length == -1) | |
103 | { | |
104 | if (errno != EWOULDBLOCK) | |
31
b5b5a6a96d91
- added input history (use up/down to navigate)
Teemu Piippo <crimsondusk64@gmail.com>
parents:
19
diff
changeset
|
105 | m_error = String ("recvfrom error: ") + strerror (errno); |
5 | 106 | |
107 | return false; | |
108 | } | |
109 | ||
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
110 | unsigned char decodedPacket[MAX_DATAGRAM_LENGTH]; |
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
111 | int decodedLength = sizeof decodedPacket; |
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
112 | HUFFMAN_Decode (g_huffmanBuffer, decodedPacket, length, &decodedLength); |
5 | 113 | datagram.from.host = ntohl (claddr.sin_addr.s_addr); |
114 | datagram.from.port = ntohs (claddr.sin_port); | |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
115 | datagram.data = Bytestream (decodedPacket, decodedLength); |
5 | 116 | return true; |
117 | } | |
118 | ||
119 | // ------------------------------------------------------------------------------------------------- | |
120 | // | |
121 | METHOD | |
8
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
122 | UDPSocket::send (const IPAddress& address, const Bytestream& data) -> bool |
5 | 123 | { |
8
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
124 | int encodedlength = sizeof g_huffmanBuffer; |
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
125 | HUFFMAN_Encode (data.data(), g_huffmanBuffer, data.written_length(), &encodedlength); |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
126 | sockaddr_in claddr = address.to_sockaddr_in(); |
8
8b697d30c49f
- added huffman lib, now capable of initializing an rcon connection!
Teemu Piippo <crimsondusk64@gmail.com>
parents:
6
diff
changeset
|
127 | int res = ::sendto (m_socket, g_huffmanBuffer, encodedlength, 0, |
10
3874575d924d
- begin work on rcon sessions
Teemu Piippo <crimsondusk64@gmail.com>
parents:
9
diff
changeset
|
128 | reinterpret_cast<sockaddr*> (&claddr), sizeof claddr); |
5 | 129 | |
130 | if (res == -1) | |
131 | { | |
132 | m_error = String ("Unable to launch packet: ") + strerror (errno); | |
133 | return false; | |
134 | } | |
135 | ||
136 | return true; | |
137 | } |