2 meta.c -- handle the meta communication
3 Copyright (C) 2000-2018 Guus Sliepen <guus@tinc-vpn.org>,
4 2000-2005 Ivo Timmermans
5 2006 Scott Lamb <slamb@slamb.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
25 #include "connection.h"
33 static ssize_t MIN(ssize_t x, ssize_t y) {
38 bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t length) {
40 connection_t *c = handle;
43 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta_sptps() called with NULL pointer!");
47 buffer_add(&c->outbuf, buffer, length);
48 io_set(&c->io, IO_READ | IO_WRITE);
53 bool send_meta(connection_t *c, const void *buffer, size_t length) {
55 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!");
59 logger(DEBUG_META, LOG_DEBUG, "Sending %zu bytes of metadata to %s (%s)",
60 length, c->name, c->hostname);
62 if(c->protocol_minor >= 2) {
63 return sptps_send_record(&c->sptps, 0, buffer, length);
66 /* Add our data to buffer */
67 if(c->status.encryptout) {
72 if(length > c->outbudget) {
73 logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for encryption to %s (%s)", c->name, c->hostname);
76 c->outbudget -= length;
79 size_t outlen = length;
81 if(!cipher_encrypt(&c->outcipher, buffer, length, buffer_prepare(&c->outbuf, length), &outlen, false) || outlen != length) {
82 logger(DEBUG_ALWAYS, LOG_ERR, "Error while encrypting metadata to %s (%s)",
83 c->name, c->hostname);
89 buffer_add(&c->outbuf, buffer, length);
92 io_set(&c->io, IO_READ | IO_WRITE);
97 void send_meta_raw(connection_t *c, const void *buffer, size_t length) {
99 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!");
103 logger(DEBUG_META, LOG_DEBUG, "Sending %zu bytes of raw metadata to %s (%s)",
104 length, c->name, c->hostname);
106 buffer_add(&c->outbuf, buffer, length);
108 io_set(&c->io, IO_READ | IO_WRITE);
111 void broadcast_meta(connection_t *from, const char *buffer, size_t length) {
112 for list_each(connection_t, c, &connection_list)
113 if(c != from && c->edge) {
114 send_meta(c, buffer, length);
118 bool receive_meta_sptps(void *handle, uint8_t type, const void *vdata, uint16_t length) {
119 const char *data = vdata;
120 connection_t *c = handle;
123 logger(DEBUG_ALWAYS, LOG_ERR, "receive_meta_sptps() called with NULL pointer!");
127 if(type == SPTPS_HANDSHAKE) {
128 if(c->allow_request == ACK) {
139 /* Are we receiving a TCPpacket? */
142 if(length != c->tcplen) {
146 receive_tcppacket(c, data, length);
151 /* Change newline to null byte, just like non-SPTPS requests */
153 if(data[length - 1] == '\n') {
154 ((char *)data)[length - 1] = 0;
157 /* Otherwise we are waiting for a request */
159 return receive_request(c, data);
162 bool receive_meta(connection_t *c) {
164 char inbuf[MAXBUFSIZE];
165 char *bufp = inbuf, *endp;
168 - Read as much as possible from the TCP socket in one go.
170 - Check if a full request is in the input buffer.
171 - If yes, process request and remove it from the buffer,
173 - If not, keep stuff in buffer and exit.
176 buffer_compact(&c->inbuf, MAXBUFSIZE);
178 if(sizeof(inbuf) <= c->inbuf.len) {
179 logger(DEBUG_ALWAYS, LOG_ERR, "Input buffer full for %s (%s)", c->name, c->hostname);
183 inlen = recv(c->socket, inbuf, sizeof(inbuf) - c->inbuf.len, 0);
186 if(!inlen || !sockerrno) {
187 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection closed by %s (%s)",
188 c->name, c->hostname);
189 } else if(sockwouldblock(sockerrno)) {
192 logger(DEBUG_ALWAYS, LOG_ERR, "Metadata socket read error for %s (%s): %s",
193 c->name, c->hostname, sockstrerror(sockerrno));
199 /* Are we receiving a SPTPS packet? */
202 ssize_t len = MIN(inlen, c->sptpslen - c->inbuf.len);
203 buffer_add(&c->inbuf, bufp, len);
205 char *sptpspacket = buffer_read(&c->inbuf, c->sptpslen);
211 if(!receive_tcppacket_sptps(c, sptpspacket, c->sptpslen)) {
222 if(c->protocol_minor >= 2) {
223 size_t len = sptps_receive_data(&c->sptps, bufp, inlen);
230 inlen -= (ssize_t)len;
234 if(!c->status.decryptin) {
235 endp = memchr(bufp, '\n', inlen);
243 buffer_add(&c->inbuf, bufp, endp - bufp);
245 inlen -= endp - bufp;
248 #ifdef DISABLE_LEGACY
252 if((size_t)inlen > c->inbudget) {
253 logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for decryption from %s (%s)", c->name, c->hostname);
256 c->inbudget -= inlen;
259 size_t outlen = inlen;
261 if(!cipher_decrypt(&c->incipher, bufp, inlen, buffer_prepare(&c->inbuf, inlen), &outlen, false) || (size_t)inlen != outlen) {
262 logger(DEBUG_ALWAYS, LOG_ERR, "Error while decrypting metadata from %s (%s)",
263 c->name, c->hostname);
271 while(c->inbuf.len) {
272 /* Are we receiving a TCPpacket? */
275 char *tcpbuffer = buffer_read(&c->inbuf, c->tcplen);
282 if(c->outgoing && proxytype == PROXY_SOCKS4 && c->allow_request == ID) {
283 if(tcpbuffer[0] == 0 && tcpbuffer[1] == 0x5a) {
284 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted");
286 logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected");
289 } else if(c->outgoing && proxytype == PROXY_SOCKS5 && c->allow_request == ID) {
290 if(tcpbuffer[0] != 5) {
291 logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server");
295 if(tcpbuffer[1] == (char)0xff) {
296 logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected: unsuitable authentication method");
300 if(tcpbuffer[2] != 5) {
301 logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server");
305 if(tcpbuffer[3] == 0) {
306 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted");
308 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request rejected");
312 logger(DEBUG_CONNECTIONS, LOG_ERR, "c->tcplen set but c->node is NULL!");
316 if(c->allow_request == ALL) {
317 receive_tcppacket(c, tcpbuffer, c->tcplen);
319 logger(DEBUG_CONNECTIONS, LOG_ERR, "Got unauthorized TCP packet from %s (%s)", c->name, c->hostname);
327 /* Otherwise we are waiting for a request */
329 char *request = buffer_readline(&c->inbuf);
332 bool result = receive_request(c, request);