2000-09-26 14:06:11 +00:00
|
|
|
/*
|
|
|
|
meta.c -- handle the meta communication
|
2009-09-24 21:29:46 +00:00
|
|
|
Copyright (C) 2000-2009 Guus Sliepen <guus@tinc-vpn.org>,
|
2006-04-26 13:52:58 +00:00
|
|
|
2000-2005 Ivo Timmermans
|
2009-09-25 19:14:56 +00:00
|
|
|
2006 Scott Lamb <slamb@slamb.org>
|
2000-09-26 14:06:11 +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.
|
|
|
|
|
2009-09-24 22:01:00 +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.
|
2000-09-26 14:06:11 +00:00
|
|
|
*/
|
|
|
|
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "system.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2007-05-18 10:05:26 +00:00
|
|
|
#include "splay_tree.h"
|
2008-12-11 14:44:44 +00:00
|
|
|
#include "cipher.h"
|
2000-11-20 19:12:17 +00:00
|
|
|
#include "connection.h"
|
2003-07-06 22:11:37 +00:00
|
|
|
#include "logger.h"
|
2003-08-12 14:48:13 +00:00
|
|
|
#include "meta.h"
|
2003-07-17 15:06:27 +00:00
|
|
|
#include "net.h"
|
|
|
|
#include "protocol.h"
|
|
|
|
#include "utils.h"
|
2006-03-19 12:43:28 +00:00
|
|
|
#include "xalloc.h"
|
2000-10-11 10:35:17 +00:00
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
bool send_meta(connection_t *c, const char *buffer, int length) {
|
2009-06-11 16:36:08 +00:00
|
|
|
if(!c) {
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "send_meta() called with NULL pointer!");
|
2009-06-11 16:36:08 +00:00
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Sending %d bytes of metadata to %s (%s)", length,
|
2007-11-07 02:47:05 +00:00
|
|
|
c->name, c->hostname);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2006-01-19 17:13:18 +00:00
|
|
|
/* Add our data to buffer */
|
2002-09-09 21:25:28 +00:00
|
|
|
if(c->status.encryptout) {
|
2007-05-19 22:23:02 +00:00
|
|
|
char outbuf[length];
|
2008-12-11 14:44:44 +00:00
|
|
|
size_t outlen = length;
|
2007-05-19 22:23:02 +00:00
|
|
|
|
2008-12-11 14:44:44 +00:00
|
|
|
if(!cipher_encrypt(&c->outcipher, buffer, length, outbuf, &outlen, false) || outlen != length) {
|
2009-09-29 12:55:29 +00:00
|
|
|
logger(LOG_ERR, "Error while encrypting metadata to %s (%s)",
|
2008-12-11 14:44:44 +00:00
|
|
|
c->name, c->hostname);
|
2003-10-10 16:24:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-05-19 22:23:02 +00:00
|
|
|
|
2009-09-29 12:55:29 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Encrypted write %p %p %p %d", c, c->buffer, outbuf, length);
|
2007-05-19 22:23:02 +00:00
|
|
|
bufferevent_write(c->buffer, (void *)outbuf, length);
|
2009-09-29 12:55:29 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Done.");
|
2006-01-19 17:13:18 +00:00
|
|
|
} else {
|
2009-09-29 12:55:29 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Unencrypted write %p %p %p %d", c, c->buffer, buffer, length);
|
2007-05-19 22:23:02 +00:00
|
|
|
bufferevent_write(c->buffer, (void *)buffer, length);
|
2009-09-29 12:55:29 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Done.");
|
2006-01-19 17:13:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
void broadcast_meta(connection_t *from, const char *buffer, int length) {
|
2007-05-18 10:05:26 +00:00
|
|
|
splay_node_t *node;
|
2002-09-09 21:25:28 +00:00
|
|
|
connection_t *c;
|
|
|
|
|
|
|
|
for(node = connection_tree->head; node; node = node->next) {
|
2003-08-28 21:05:11 +00:00
|
|
|
c = node->data;
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-11-17 15:30:18 +00:00
|
|
|
if(c != from && c->status.active)
|
2002-09-09 21:25:28 +00:00
|
|
|
send_meta(c, buffer, length);
|
|
|
|
}
|
2000-09-26 14:06:11 +00:00
|
|
|
}
|
|
|
|
|
2007-05-18 10:00:00 +00:00
|
|
|
bool receive_meta(connection_t *c) {
|
2009-12-19 19:52:19 +00:00
|
|
|
int inlen;
|
2002-09-09 21:25:28 +00:00
|
|
|
char inbuf[MAXBUFSIZE];
|
2007-05-19 22:23:02 +00:00
|
|
|
char *bufp = inbuf, *endp;
|
2002-09-09 21:25:28 +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.
|
|
|
|
*/
|
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
inlen = recv(c->socket, inbuf, sizeof inbuf, 0);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-18 11:19:31 +00:00
|
|
|
if(inlen <= 0) {
|
2009-11-02 13:24:27 +00:00
|
|
|
if(!inlen || !errno) {
|
2009-09-24 22:54:07 +00:00
|
|
|
ifdebug(CONNECTIONS) logger(LOG_NOTICE, "Connection closed by %s (%s)",
|
2002-09-09 21:25:28 +00:00
|
|
|
c->name, c->hostname);
|
2009-10-24 23:40:07 +00:00
|
|
|
} else if(sockwouldblock(sockerrno))
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2002-09-09 21:25:28 +00:00
|
|
|
else
|
2009-09-24 22:54:07 +00:00
|
|
|
logger(LOG_ERR, "Metadata socket read error for %s (%s): %s",
|
2009-10-24 23:40:07 +00:00
|
|
|
c->name, c->hostname, sockstrerror(sockerrno));
|
2003-07-22 20:55:21 +00:00
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
do {
|
|
|
|
if(!c->status.decryptin) {
|
|
|
|
endp = memchr(bufp, '\n', inlen);
|
|
|
|
if(endp)
|
|
|
|
endp++;
|
|
|
|
else
|
|
|
|
endp = bufp + inlen;
|
|
|
|
|
|
|
|
evbuffer_add(c->buffer->input, bufp, endp - bufp);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
inlen -= endp - bufp;
|
|
|
|
bufp = endp;
|
|
|
|
} else {
|
2008-12-11 14:44:44 +00:00
|
|
|
size_t outlen = inlen;
|
2009-12-19 19:52:19 +00:00
|
|
|
ifdebug(META) logger(LOG_DEBUG, "Received encrypted %d bytes", inlen);
|
2007-10-19 19:07:30 +00:00
|
|
|
evbuffer_expand(c->buffer->input, c->buffer->input->off + inlen);
|
2008-12-11 14:44:44 +00:00
|
|
|
|
|
|
|
if(!cipher_decrypt(&c->incipher, bufp, inlen, c->buffer->input->buffer + c->buffer->input->off, &outlen, false) || inlen != outlen) {
|
2009-09-29 12:55:29 +00:00
|
|
|
logger(LOG_ERR, "Error while decrypting metadata from %s (%s)",
|
2008-12-11 14:44:44 +00:00
|
|
|
c->name, c->hostname);
|
2003-10-10 16:24:24 +00:00
|
|
|
return false;
|
|
|
|
}
|
2007-05-23 13:45:49 +00:00
|
|
|
c->buffer->input->off += inlen;
|
2007-11-07 02:47:05 +00:00
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
inlen = 0;
|
2002-09-09 21:25:28 +00:00
|
|
|
}
|
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
while(c->buffer->input->off) {
|
|
|
|
/* Are we receiving a TCPpacket? */
|
|
|
|
|
|
|
|
if(c->tcplen) {
|
|
|
|
if(c->tcplen <= c->buffer->input->off) {
|
|
|
|
receive_tcppacket(c, (char *)c->buffer->input->buffer, c->tcplen);
|
|
|
|
evbuffer_drain(c->buffer->input, c->tcplen);
|
|
|
|
c->tcplen = 0;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
/* Otherwise we are waiting for a request */
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2007-05-19 22:23:02 +00:00
|
|
|
char *request = evbuffer_readline(c->buffer->input);
|
|
|
|
if(request) {
|
2008-12-11 14:44:44 +00:00
|
|
|
bool result = receive_request(c, request);
|
2007-05-19 22:23:02 +00:00
|
|
|
free(request);
|
2008-12-11 14:44:44 +00:00
|
|
|
if(!result)
|
|
|
|
return false;
|
2002-09-09 21:25:28 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-05-19 22:23:02 +00:00
|
|
|
} while(inlen);
|
2002-09-09 21:25:28 +00:00
|
|
|
|
2003-07-22 20:55:21 +00:00
|
|
|
return true;
|
2000-09-26 14:06:11 +00:00
|
|
|
}
|