along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: connection.c,v 1.1.2.12 2001/06/29 13:09:55 guus Exp $
+ $Id: connection.c,v 1.1.2.13 2001/07/15 18:07:31 guus Exp $
*/
#include "config.h"
/* Root of the connection list */
avl_tree_t *connection_tree;
+avl_tree_t *active_tree;
avl_tree_t *id_tree;
/* Pointer to connection describing myself */
/* Initialization and callbacks */
int connection_compare(connection_t *a, connection_t *b)
+{
+ return a->meta_socket - b->meta_socket;
+}
+
+int active_compare(connection_t *a, connection_t *b)
{
ipv4_t result;
void init_connections(void)
{
connection_tree = avl_alloc_tree((avl_compare_t)connection_compare, (avl_action_t)free_connection);
+ active_tree = avl_alloc_tree((avl_compare_t)active_compare, NULL);
id_tree = avl_alloc_tree((avl_compare_t)id_compare, NULL);
}
{
cp
avl_delete_tree(id_tree);
+ avl_delete_tree(active_tree);
avl_delete_tree(connection_tree);
cp
}
cp
}
+void active_add(connection_t *cl)
+{
+cp
+ avl_insert(active_tree, cl);
+cp
+}
+
void id_add(connection_t *cl)
{
cp
{
cp
avl_delete(id_tree, cl);
+ avl_delete(active_tree, cl);
avl_delete(connection_tree, cl);
cp
}
/* Lookup functions */
-connection_t *lookup_connection(ipv4_t address, short unsigned int port)
+connection_t *lookup_active(ipv4_t address, short unsigned int port)
{
connection_t cl;
cp
cl.address = address;
cl.port = port;
- return avl_search(connection_tree, &cl);
+ return avl_search(active_tree, &cl);
}
connection_t *lookup_id(char *name)
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: connection.h,v 1.1.2.9 2001/05/25 11:54:28 guus Exp $
+ $Id: connection.h,v 1.1.2.10 2001/07/15 18:07:31 guus Exp $
*/
#ifndef __TINC_CONNECTION_H__
typedef struct connection_t {
char *name; /* name of this connection */
ipv4_t address; /* his real (internet) ip */
+ short unsigned int meta_port; /* port number of meta connection */
char *hostname; /* the hostname of its real ip */
int protocol_version; /* used protocol */
short unsigned int port; /* port number for UDP traffic */
} connection_t;
extern avl_tree_t *connection_tree;
+extern avl_tree_t *active_tree;
extern connection_t *myself;
extern void init_connections(void);
extern connection_t *new_connection(void);
extern void free_connection(connection_t *);
extern void id_add(connection_t *);
+extern void active_add(connection_t *);
extern void connection_add(connection_t *);
extern void connection_del(connection_t *);
extern connection_t *lookup_id(char *);
-extern connection_t *lookup_connection(ipv4_t, short unsigned int);
+extern connection_t *lookup_active(ipv4_t, short unsigned int);
extern void dump_connection_list(void);
extern int read_host_config(connection_t *);
extern void destroy_connection_tree(void);
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- $Id: protocol.c,v 1.28.4.98 2001/07/04 08:41:36 guus Exp $
+ $Id: protocol.c,v 1.28.4.99 2001/07/15 18:07:31 guus Exp $
*/
#include "config.h"
int id_h(connection_t *cl)
{
connection_t *old;
- unsigned short int port;
char name[MAX_STRING_SIZE];
- avl_node_t *node;
cp
- if(sscanf(cl->buffer, "%*d "MAX_STRING" %d %lx %hd", name, &cl->protocol_version, &cl->options, &port) != 4)
+ if(sscanf(cl->buffer, "%*d "MAX_STRING" %d %lx %hd", name, &cl->protocol_version, &cl->options, &cl->port) != 4)
{
syslog(LOG_ERR, _("Got bad ID from %s"), cl->hostname);
return -1;
cl->name = xstrdup(name);
+ /* Make sure we don't make an outgoing connection to a host that is already in our connection list */
+
+ if(cl->status.outgoing)
+ if((old = lookup_id(cl->name)))
+ {
+ if(debug_lvl >= DEBUG_CONNECTIONS)
+ syslog(LOG_NOTICE, _("We are already connected to %s."), cl->name);
+ old->status.outgoing = 1;
+ return -1;
+ }
+
/* Load information about peer */
if(read_host_config(cl))
return -1;
}
- /* First check if the host is already in our
- connection list. If so, we are probably making a loop, which
- is not desirable.
- */
-
- if((old = lookup_id(cl->name)))
- {
- if(debug_lvl >= DEBUG_CONNECTIONS)
- syslog(LOG_NOTICE, _("%s (%s) is already in our connection list"), cl->name, cl->hostname);
- if(cl->status.outgoing)
- {
- cl->status.outgoing = 0;
- old->status.outgoing = 1;
- }
- terminate_connection(cl);
- return 0;
- }
-
- /* Now we can add the name to the id tree */
-
- id_add(cl);
-
- /* And uhr... cl->port just changed so we have to unlink it from the connection tree and re-insert... */
-
- node = avl_unlink(connection_tree, cl);
- cl->port = port;
- if(!avl_insert_node(connection_tree, node))
- {
- old = avl_search_node(connection_tree, node)->data;
- syslog(LOG_ERR, _("%s is listening on %s:%hd, which is already in use by %s!"),
- cl->name, cl->hostname, cl->port, old->name);
- return -1;
- }
-
/* Read in the public key, so that we can send a metakey */
if(read_rsa_public_key(cl))
old connection that has timed out but we don't know it yet.
*/
- while((old = lookup_id(cl->name)))
+ if((old = lookup_id(cl->name)))
{
if(debug_lvl >= DEBUG_CONNECTIONS)
- syslog(LOG_NOTICE, _("Removing old entry for %s at %s in favour of new connection from %s"),
- cl->name, old->hostname, cl->hostname);
-
+ syslog(LOG_NOTICE, _("Removing old connection for %s at %s in favour of new connection from %s"),
+ cl->name, old->hostname, cl->hostname);
+ if(old->status.outgoing)
+ {
+ cl->status.outgoing = 1;
+ old->status.outgoing = 0;
+ }
terminate_connection(old);
+ return 0;
}
+
+ /* Now we can add the name to the id tree */
+
+ id_add(cl);
+ /* Also check if no other tinc daemon uses the same IP and port for UDP traffic */
+
+ old = avl_search(active_tree, cl);
+ if(old)
+ {
+ syslog(LOG_ERR, _("%s is listening on %s:%hd, which is already in use by %s!"),
+ cl->name, cl->hostname, cl->port, old->name);
+ return -1;
+ }
+
/* Activate this connection */
cl->allow_request = ALL;
cl->cipher_pkttype = EVP_bf_cbc();
cl->cipher_pktkeylength = cl->cipher_pkttype->key_len + cl->cipher_pkttype->iv_len;
+ active_add(cl);
+
if(debug_lvl >= DEBUG_CONNECTIONS)
syslog(LOG_NOTICE, _("Connection with %s (%s) activated"), cl->name, cl->hostname);