tinc/src/meta.c

164 lines
4.1 KiB
C
Raw Normal View History

2019-08-26 11:44:36 +00:00
/*
meta.c -- handle the meta communication
2019-08-26 11:44:49 +00:00
Copyright (C) 2000-2009 Guus Sliepen <guus@tinc-vpn.org>,
2019-08-26 11:44:37 +00:00
2000-2005 Ivo Timmermans
2019-08-26 11:44:38 +00:00
2006 Scott Lamb <slamb@slamb.org>
2019-08-26 11:44:36 +00:00
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
2019-08-26 11:44:38 +00:00
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
2019-08-26 11:44:36 +00:00
*/
2019-08-26 11:44:36 +00:00
#include "system.h"
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
#include "splay_tree.h"
#include "cipher.h"
2019-08-26 11:44:36 +00:00
#include "connection.h"
2019-08-26 11:44:36 +00:00
#include "logger.h"
#include "meta.h"
#include "net.h"
2019-08-26 11:44:36 +00:00
#include "protocol.h"
2019-08-26 11:44:36 +00:00
#include "utils.h"
2019-08-26 11:44:37 +00:00
#include "xalloc.h"
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:38 +00:00
bool send_meta(connection_t *c, const char *buffer, int length) {
2019-08-26 11:44:49 +00:00
if(!c) {
logger(LOG_ERR, "send_meta() called with NULL pointer!");
abort();
2019-08-26 11:44:48 +00:00
}
2019-08-26 11:44:37 +00:00
2019-08-26 11:44:49 +00:00
ifdebug(META) logger(LOG_DEBUG, "Sending %d bytes of metadata to %s (%s)", length,
c->name, c->hostname);
2019-08-26 11:44:37 +00:00
/* Add our data to buffer */
2019-08-26 11:44:36 +00:00
if(c->status.encryptout) {
2019-08-26 11:44:49 +00:00
size_t outlen = length;
2019-08-26 11:44:47 +00:00
2019-08-26 11:44:49 +00:00
if(!cipher_encrypt(&c->outcipher, buffer, length, buffer_prepare(&c->outbuf, length), &outlen, false) || outlen != length) {
logger(LOG_ERR, "Error while encrypting metadata to %s (%s)",
c->name, c->hostname);
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:37 +00:00
} else {
2019-08-26 11:44:49 +00:00
buffer_add(&c->outbuf, buffer, length);
2019-08-26 11:44:37 +00:00
}
2019-08-26 11:44:49 +00:00
event_add(&c->outevent, NULL);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:36 +00:00
return true;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
void broadcast_meta(connection_t *from, const char *buffer, int length) {
2019-08-26 11:44:49 +00:00
splay_node_t *node;
2019-08-26 11:44:36 +00:00
connection_t *c;
for(node = connection_tree->head; node; node = node->next) {
c = node->data;
2019-08-26 11:44:49 +00:00
if(c != from && c->status.active)
2019-08-26 11:44:36 +00:00
send_meta(c, buffer, length);
}
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:38 +00:00
bool receive_meta(connection_t *c) {
2019-08-26 11:44:49 +00:00
int inlen;
2019-08-26 11:44:36 +00:00
char inbuf[MAXBUFSIZE];
2019-08-26 11:44:49 +00:00
char *bufp = inbuf, *endp;
2019-08-26 11:44:36 +00:00
/* Strategy:
- Read as much as possible from the TCP socket in one go.
- Decrypt it.
- Check if a full request is in the input buffer.
- If yes, process request and remove it from the buffer,
then check again.
- If not, keep stuff in buffer and exit.
*/
2019-08-26 11:44:49 +00:00
buffer_compact(&c->inbuf, MAXBUFSIZE);
if(sizeof inbuf <= c->inbuf.len) {
logger(LOG_ERR, "Input buffer full for %s (%s)", c->name, c->hostname);
return false;
}
inlen = recv(c->socket, inbuf, sizeof inbuf - c->inbuf.len, 0);
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(inlen <= 0) {
if(!inlen || !errno) {
2019-08-26 11:44:38 +00:00
ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection closed by %s (%s)",
2019-08-26 11:44:49 +00:00
c->name, c->hostname);
} else if(sockwouldblock(sockerrno))
2019-08-26 11:44:36 +00:00
return true;
2019-08-26 11:44:49 +00:00
else
2019-08-26 11:44:38 +00:00
logger(LOG_ERR, "Metadata socket read error for %s (%s): %s",
2019-08-26 11:44:49 +00:00
c->name, c->hostname, sockstrerror(sockerrno));
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:49 +00:00
do {
if(!c->status.decryptin) {
endp = memchr(bufp, '\n', inlen);
if(endp)
endp++;
else
endp = bufp + inlen;
2019-08-26 11:44:46 +00:00
2019-08-26 11:44:49 +00:00
buffer_add(&c->inbuf, bufp, endp - bufp);
2019-08-26 11:44:46 +00:00
2019-08-26 11:44:49 +00:00
inlen -= endp - bufp;
bufp = endp;
} else {
size_t outlen = inlen;
ifdebug(META) logger(LOG_DEBUG, "Received encrypted %d bytes", inlen);
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
if(!cipher_decrypt(&c->incipher, bufp, inlen, buffer_prepare(&c->inbuf, inlen), &outlen, false) || inlen != outlen) {
logger(LOG_ERR, "Error while decrypting metadata from %s (%s)",
c->name, c->hostname);
2019-08-26 11:44:36 +00:00
return false;
}
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
inlen = 0;
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
while(c->inbuf.len) {
/* Are we receiving a TCPpacket? */
2019-08-26 11:44:36 +00:00
2019-08-26 11:44:49 +00:00
if(c->tcplen) {
char *tcpbuffer = buffer_read(&c->inbuf, c->tcplen);
if(tcpbuffer) {
receive_tcppacket(c, tcpbuffer, c->tcplen);
c->tcplen = 0;
continue;
} else {
2019-08-26 11:44:46 +00:00
break;
}
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
/* Otherwise we are waiting for a request */
2019-08-26 11:44:48 +00:00
2019-08-26 11:44:49 +00:00
char *request = buffer_readline(&c->inbuf);
if(request) {
bool result = receive_request(c, request);
if(!result)
return false;
continue;
} else {
break;
}
2019-08-26 11:44:36 +00:00
}
2019-08-26 11:44:49 +00:00
} while(inlen);
2019-08-26 11:44:36 +00:00
return true;
2019-08-26 11:44:36 +00:00
}