X-Git-Url: https://tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fmeta.c;h=0ff7bef0e868ac50d8871574931f57301bd49e9c;hb=c44b08613508c993e7fd9f625e0b1b4775efffed;hp=0089ac827c296500a38667b71fe3453aa6fef9d4;hpb=1c475ecb575367a6b3f9328b0f643ad636155341;p=tinc diff --git a/src/meta.c b/src/meta.c index 0089ac82..0ff7bef0 100644 --- a/src/meta.c +++ b/src/meta.c @@ -1,6 +1,6 @@ /* meta.c -- handle the meta communication - Copyright (C) 2000-2014 Guus Sliepen , + Copyright (C) 2000-2018 Guus Sliepen , 2000-2005 Ivo Timmermans 2006 Scott Lamb @@ -21,6 +21,8 @@ #include "system.h" +#include + #include "cipher.h" #include "connection.h" #include "logger.h" @@ -28,10 +30,11 @@ #include "net.h" #include "protocol.h" #include "utils.h" -#include "xalloc.h" #ifndef MIN -#define MIN(x, y) (((x)<(y))?(x):(y)) +static ssize_t MIN(ssize_t x, ssize_t y) { + return x < y ? x : y; +} #endif bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t length) { @@ -49,14 +52,14 @@ bool send_meta_sptps(void *handle, uint8_t type, const void *buffer, size_t leng return true; } -bool send_meta(connection_t *c, const char *buffer, size_t length) { +bool send_meta(connection_t *c, const void *buffer, size_t length) { if(!c) { logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!"); abort(); } - logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of metadata to %s (%s)", (unsigned long)length, - c->name, c->hostname); + logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of metadata to %s (%s)", + (unsigned long)length, c->name, c->hostname); if(c->protocol_minor >= 2) { return sptps_send_record(&c->sptps, 0, buffer, length); @@ -67,17 +70,16 @@ bool send_meta(connection_t *c, const char *buffer, size_t length) { #ifdef DISABLE_LEGACY return false; #else + assert(c->legacy); - if(length > c->outbudget) { + if(!decrease_budget(&c->legacy->out, length)) { logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for encryption to %s (%s)", c->name, c->hostname); return false; - } else { - c->outbudget -= length; } size_t outlen = length; - if(!cipher_encrypt(c->outcipher, buffer, length, buffer_prepare(&c->outbuf, length), &outlen, false) || outlen != length) { + if(!cipher_encrypt(&c->legacy->out.cipher, buffer, length, buffer_prepare(&c->outbuf, length), &outlen, false) || outlen != length) { logger(DEBUG_ALWAYS, LOG_ERR, "Error while encrypting metadata to %s (%s)", c->name, c->hostname); return false; @@ -93,14 +95,14 @@ bool send_meta(connection_t *c, const char *buffer, size_t length) { return true; } -void send_meta_raw(connection_t *c, const char *buffer, size_t length) { +void send_meta_raw(connection_t *c, const void *buffer, size_t length) { if(!c) { logger(DEBUG_ALWAYS, LOG_ERR, "send_meta() called with NULL pointer!"); abort(); } - logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of raw metadata to %s (%s)", (unsigned long)length, - c->name, c->hostname); + logger(DEBUG_META, LOG_DEBUG, "Sending %lu bytes of raw metadata to %s (%s)", + (unsigned long)length, c->name, c->hostname); buffer_add(&c->outbuf, buffer, length); @@ -108,7 +110,7 @@ void send_meta_raw(connection_t *c, const char *buffer, size_t length) { } void broadcast_meta(connection_t *from, const char *buffer, size_t length) { - for list_each(connection_t, c, connection_list) + for list_each(connection_t, c, &connection_list) if(c != from && c->edge) { send_meta(c, buffer, length); } @@ -226,7 +228,7 @@ bool receive_meta(connection_t *c) { } bufp += len; - inlen -= len; + inlen -= (ssize_t)len; continue; } @@ -247,17 +249,16 @@ bool receive_meta(connection_t *c) { #ifdef DISABLE_LEGACY return false; #else + assert(c->legacy); - if((size_t)inlen > c->inbudget) { + if(!decrease_budget(&c->legacy->in, (size_t) inlen)) { logger(DEBUG_META, LOG_ERR, "Byte limit exceeded for decryption from %s (%s)", c->name, c->hostname); return false; - } else { - c->inbudget -= inlen; } size_t outlen = inlen; - if(!cipher_decrypt(c->incipher, bufp, inlen, buffer_prepare(&c->inbuf, inlen), &outlen, false) || (size_t)inlen != outlen) { + if(!cipher_decrypt(&c->legacy->in.cipher, bufp, inlen, buffer_prepare(&c->inbuf, inlen), &outlen, false) || (size_t)inlen != outlen) { logger(DEBUG_ALWAYS, LOG_ERR, "Error while decrypting metadata from %s (%s)", c->name, c->hostname); return false;