2 meta.c -- handle the meta communication
3 Copyright (C) 2000-2014 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"
34 #define MIN(x, y) (((x)<(y))?(x):(y))
37 bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t length) {
39 connection_t *c = handle;
42 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta_sptps() called with NULL pointer!");
46 buffer_add(&c->outbuf, buffer, length);
47 io_set(&c->io, IO_READ | IO_WRITE);
52 bool send_meta(connection_t *c, const char *buffer, size_t length) {
54 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!");
58 logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of metadata to %s (%s)", (unsigned long)length,
59 c->name, c->hostname);
61 if(c->protocol_minor >= 2) {
62 return sptps_send_record(&c->sptps, 0, buffer, length);
65 /* Add our data to buffer */
66 if(c->status.encryptout) {
71 if(length > c->outbudget) {
72 logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for encryption to %s (%s)", c->name, c->hostname);
75 c->outbudget -= length;
78 size_t outlen = length;
80 if(!cipher_encrypt(c->outcipher, buffer, length, buffer_prepare(&c->outbuf, length), &outlen, false) || outlen != length) {
81 logger(DEBUG_ALWAYS, LOG_ERR, "Error while encrypting metadata to %s (%s)",
82 c->name, c->hostname);
88 buffer_add(&c->outbuf, buffer, length);
91 io_set(&c->io, IO_READ | IO_WRITE);
96 void send_meta_raw(connection_t *c, const char *buffer, size_t length) {
98 logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!");
102 logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of raw metadata to %s (%s)", (unsigned long)length,
103 c->name, c->hostname);
105 buffer_add(&c->outbuf, buffer, length);
107 io_set(&c->io, IO_READ | IO_WRITE);
110 void broadcast_meta(connection_t *from, const char *buffer, size_t length) {
111 for list_each(connection_t, c, connection_list)
112 if(c != from && c->edge) {
113 send_meta(c, buffer, length);
117 bool receive_meta_sptps(void *handle, uint8_t type, const void *vdata, uint16_t length) {
118 const char *data = vdata;
119 connection_t *c = handle;
122 logger(DEBUG_ALWAYS, LOG_ERR, "receive_meta_sptps() called with NULL pointer!");
126 if(type == SPTPS_HANDSHAKE) {
127 if(c->allow_request == ACK) {
138 /* Are we receiving a TCPpacket? */
141 if(length != c->tcplen) {
145 receive_tcppacket(c, data, length);
150 /* Change newline to null byte, just like non-SPTPS requests */
152 if(data[length - 1] == '\n') {
153 ((char *)data)[length - 1] = 0;
156 /* Otherwise we are waiting for a request */
158 return receive_request(c, data);
161 bool receive_meta(connection_t *c) {
163 char inbuf[MAXBUFSIZE];
164 char *bufp = inbuf, *endp;
167 - Read as much as possible from the TCP socket in one go.
169 - Check if a full request is in the input buffer.
170 - If yes, process request and remove it from the buffer,
172 - If not, keep stuff in buffer and exit.
175 buffer_compact(&c->inbuf, MAXBUFSIZE);
177 if(sizeof(inbuf) <= c->inbuf.len) {
178 logger(DEBUG_ALWAYS, LOG_ERR, "Input buffer full for %s (%s)", c->name, c->hostname);
182 inlen = recv(c->socket, inbuf, sizeof(inbuf) - c->inbuf.len, 0);
185 if(!inlen || !sockerrno) {
186 logger(DEBUG_CONNECTIONS, LOG_NOTICE, "Connection closed by %s (%s)",
187 c->name, c->hostname);
188 } else if(sockwouldblock(sockerrno)) {
191 logger(DEBUG_ALWAYS, LOG_ERR, "Metadata socket read error for %s (%s): %s",
192 c->name, c->hostname, sockstrerror(sockerrno));
198 /* Are we receiving a SPTPS packet? */
201 ssize_t len = MIN(inlen, c->sptpslen - c->inbuf.len);
202 buffer_add(&c->inbuf, bufp, len);
204 char *sptpspacket = buffer_read(&c->inbuf, c->sptpslen);
210 if(!receive_tcppacket_sptps(c, sptpspacket, c->sptpslen)) {
221 if(c->protocol_minor >= 2) {
222 size_t len = sptps_receive_data(&c->sptps, bufp, inlen);
233 if(!c->status.decryptin) {
234 endp = memchr(bufp, '\n', inlen);
242 buffer_add(&c->inbuf, bufp, endp - bufp);
244 inlen -= endp - bufp;
247 #ifdef DISABLE_LEGACY
251 if((size_t)inlen > c->inbudget) {
252 logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for decryption from %s (%s)", c->name, c->hostname);
255 c->inbudget -= inlen;
258 size_t outlen = inlen;
260 if(!cipher_decrypt(c->incipher, bufp, inlen, buffer_prepare(&c->inbuf, inlen), &outlen, false) || (size_t)inlen != outlen) {
261 logger(DEBUG_ALWAYS, LOG_ERR, "Error while decrypting metadata from %s (%s)",
262 c->name, c->hostname);
270 while(c->inbuf.len) {
271 /* Are we receiving a TCPpacket? */
274 char *tcpbuffer = buffer_read(&c->inbuf, c->tcplen);
281 if(c->outgoing && proxytype == PROXY_SOCKS4 && c->allow_request == ID) {
282 if(tcpbuffer[0] == 0 && tcpbuffer[1] == 0x5a) {
283 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted");
285 logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected");
288 } else if(c->outgoing && proxytype == PROXY_SOCKS5 && c->allow_request == ID) {
289 if(tcpbuffer[0] != 5) {
290 logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server");
294 if(tcpbuffer[1] == (char)0xff) {
295 logger(DEBUG_CONNECTIONS, LOG_ERR, "Proxy request rejected: unsuitable authentication method");
299 if(tcpbuffer[2] != 5) {
300 logger(DEBUG_CONNECTIONS, LOG_ERR, "Invalid response from proxy server");
304 if(tcpbuffer[3] == 0) {
305 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request granted");
307 logger(DEBUG_CONNECTIONS, LOG_DEBUG, "Proxy request rejected");
311 logger(DEBUG_CONNECTIONS, LOG_ERR, "c->tcplen set but c->node is NULL!");
315 if(c->allow_request == ALL) {
316 receive_tcppacket(c, tcpbuffer, c->tcplen);
318 logger(DEBUG_CONNECTIONS, LOG_ERR, "Got unauthorized TCP packet from %s (%s)", c->name, c->hostname);
326 /* Otherwise we are waiting for a request */
328 char *request = buffer_readline(&c->inbuf);
331 bool result = receive_request(c, request);