2 meta.c -- handle the meta communication
3 Copyright (C) 2000-2009 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.
24 #include <openssl/err.h>
25 #include <openssl/evp.h>
28 #include "connection.h"
36 bool send_meta(connection_t *c, const char *buffer, int length) {
41 logger(LOG_ERR, "send_meta() called with NULL pointer!");
45 ifdebug(META) logger(LOG_DEBUG, "Sending %d bytes of metadata to %s (%s)", length,
46 c->name, c->hostname);
49 c->last_flushed_time = now;
51 /* Find room in connection's buffer */
52 if(length + c->outbuflen > c->outbufsize) {
53 c->outbufsize = length + c->outbuflen;
54 c->outbuf = xrealloc(c->outbuf, c->outbufsize);
57 if(length + c->outbuflen + c->outbufstart > c->outbufsize) {
58 memmove(c->outbuf, c->outbuf + c->outbufstart, c->outbuflen);
62 /* Add our data to buffer */
63 if(c->status.encryptout) {
64 result = EVP_EncryptUpdate(c->outctx, (unsigned char *)c->outbuf + c->outbufstart + c->outbuflen,
65 &outlen, (unsigned char *)buffer, length);
66 if(!result || outlen < length) {
67 logger(LOG_ERR, "Error while encrypting metadata to %s (%s): %s",
68 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
70 } else if(outlen > length) {
71 logger(LOG_EMERG, "Encrypted data too long! Heap corrupted!");
74 c->outbuflen += outlen;
76 memcpy(c->outbuf + c->outbufstart + c->outbuflen, buffer, length);
77 c->outbuflen += length;
83 bool flush_meta(connection_t *c) {
86 ifdebug(META) logger(LOG_DEBUG, "Flushing %d bytes to %s (%s)",
87 c->outbuflen, c->name, c->hostname);
90 result = send(c->socket, c->outbuf + c->outbufstart, c->outbuflen, 0);
92 if(!errno || errno == EPIPE) {
93 ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection closed by %s (%s)",
94 c->name, c->hostname);
95 } else if(errno == EINTR) {
97 } else if(sockwouldblock(sockerrno)) {
98 ifdebug(CONNECTIONS) logger(LOG_DEBUG, "Flushing %d bytes to %s (%s) would block",
99 c->outbuflen, c->name, c->hostname);
102 logger(LOG_ERR, "Flushing meta data to %s (%s) failed: %s", c->name,
103 c->hostname, sockstrerror(sockerrno));
109 c->outbufstart += result;
110 c->outbuflen -= result;
113 c->outbufstart = 0; /* avoid unnecessary memmoves */
117 void broadcast_meta(connection_t *from, const char *buffer, int length) {
121 for(node = connection_tree->head; node; node = node->next) {
124 if(c != from && c->status.active)
125 send_meta(c, buffer, length);
129 bool receive_meta(connection_t *c) {
130 int oldlen, i, result;
131 int lenin, lenout, reqlen;
132 bool decrypted = false;
133 char inbuf[MAXBUFSIZE];
136 - Read as much as possible from the TCP socket in one go.
138 - Check if a full request is in the input buffer.
139 - If yes, process request and remove it from the buffer,
141 - If not, keep stuff in buffer and exit.
144 lenin = recv(c->socket, c->buffer + c->buflen, MAXBUFSIZE - c->buflen, 0);
147 if(!lenin || !errno) {
148 ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection closed by %s (%s)",
149 c->name, c->hostname);
150 } else if(sockwouldblock(sockerrno))
153 logger(LOG_ERR, "Metadata socket read error for %s (%s): %s",
154 c->name, c->hostname, sockstrerror(sockerrno));
165 if(c->status.decryptin && !decrypted) {
166 result = EVP_DecryptUpdate(c->inctx, (unsigned char *)inbuf, &lenout, (unsigned char *)c->buffer + oldlen, lenin);
167 if(!result || lenout != lenin) {
168 logger(LOG_ERR, "Error while decrypting metadata from %s (%s): %s",
169 c->name, c->hostname, ERR_error_string(ERR_get_error(), NULL));
172 memcpy(c->buffer + oldlen, inbuf, lenin);
176 /* Are we receiving a TCPpacket? */
179 if(c->tcplen <= c->buflen) {
180 receive_tcppacket(c, c->buffer, c->tcplen);
182 c->buflen -= c->tcplen;
183 lenin -= c->tcplen - oldlen;
184 memmove(c->buffer, c->buffer + c->tcplen, c->buflen);
193 /* Otherwise we are waiting for a request */
197 for(i = oldlen; i < c->buflen; i++) {
198 if(c->buffer[i] == '\n') {
199 c->buffer[i] = '\0'; /* replace end-of-line by end-of-string so we can use sscanf */
207 if(!receive_request(c))
211 lenin -= reqlen - oldlen;
212 memmove(c->buffer, c->buffer + reqlen, c->buflen);
220 if(c->buflen >= MAXBUFSIZE) {
221 logger(LOG_ERR, "Metadata read buffer overflow for %s (%s)",
222 c->name, c->hostname);