2001-10-09 19:30:30 +00:00
|
|
|
/*
|
|
|
|
node.h -- header for node.c
|
2002-06-21 10:11:37 +00:00
|
|
|
Copyright (C) 2001-2002 Guus Sliepen <guus@sliepen.eu.org>,
|
|
|
|
2001-2002 Ivo Timmermans <ivo@o2w.nl>
|
2001-10-09 19:30:30 +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.
|
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
2002-09-04 08:33:08 +00:00
|
|
|
$Id: node.h,v 1.1.2.18 2002/09/04 08:33:08 guus Exp $
|
2001-10-09 19:30:30 +00:00
|
|
|
*/
|
|
|
|
|
2001-10-10 08:49:47 +00:00
|
|
|
#ifndef __TINC_NODE_H__
|
|
|
|
#define __TINC_NODE_H__
|
|
|
|
|
2002-06-08 13:46:43 +00:00
|
|
|
#ifdef HAVE_INTTYPES_H
|
|
|
|
#include <inttypes.h>
|
2002-06-08 12:57:10 +00:00
|
|
|
#endif
|
|
|
|
|
2001-10-10 08:49:47 +00:00
|
|
|
#include <avl_tree.h>
|
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
#include "subnet.h"
|
|
|
|
#include "connection.h"
|
|
|
|
|
|
|
|
typedef struct node_status_t {
|
|
|
|
int active:1; /* 1 if active.. */
|
|
|
|
int validkey:1; /* 1 if we currently have a valid key for him */
|
|
|
|
int waitingforkey:1; /* 1 if we already sent out a request */
|
2001-10-28 22:42:49 +00:00
|
|
|
int visited:1; /* 1 if this node has been visited by one of the graph algorithms */
|
2002-02-10 21:57:54 +00:00
|
|
|
int reachable:1; /* 1 if this node is reachable in the graph */
|
2002-03-19 22:48:25 +00:00
|
|
|
int indirect:1; /* 1 if this node is not directly reachable by us */
|
|
|
|
int unused:26;
|
2001-10-27 12:13:17 +00:00
|
|
|
} node_status_t;
|
|
|
|
|
2001-10-09 19:30:30 +00:00
|
|
|
typedef struct node_t {
|
2001-10-27 12:13:17 +00:00
|
|
|
char *name; /* name of this node */
|
|
|
|
long int options; /* options turned on for this node */
|
2001-10-09 19:30:30 +00:00
|
|
|
|
2002-02-18 16:25:19 +00:00
|
|
|
sockaddr_t address; /* his real (internet) ip to send UDP packets to */
|
2001-10-09 19:30:30 +00:00
|
|
|
char *hostname; /* the hostname of its real ip */
|
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
struct node_status_t status;
|
|
|
|
|
2002-09-03 20:43:26 +00:00
|
|
|
int distance; /* Distance from us to that node */
|
|
|
|
|
2002-02-10 21:57:54 +00:00
|
|
|
const EVP_CIPHER *cipher; /* Cipher type for UDP packets */
|
2001-10-09 19:37:10 +00:00
|
|
|
char *key; /* Cipher key and iv */
|
|
|
|
int keylength; /* Cipher key and iv length*/
|
2001-10-09 19:30:30 +00:00
|
|
|
|
2002-02-10 21:57:54 +00:00
|
|
|
const EVP_MD *digest; /* Digest type for MAC */
|
|
|
|
int maclength; /* Length of MAC */
|
|
|
|
|
2002-02-11 15:59:18 +00:00
|
|
|
int compression; /* Compressionlevel, 0 = no compression */
|
|
|
|
|
2001-10-28 22:42:49 +00:00
|
|
|
list_t *queue; /* Queue for packets awaiting to be encrypted */
|
2001-10-09 19:30:30 +00:00
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
struct node_t *nexthop; /* nearest node from us to him */
|
2002-09-04 08:33:08 +00:00
|
|
|
struct node_t *prevhop; /* nearest node from him to us */
|
2001-10-09 19:30:30 +00:00
|
|
|
struct node_t *via; /* next hop for UDP packets */
|
|
|
|
|
|
|
|
avl_tree_t *subnet_tree; /* Pointer to a tree of subnets belonging to this node */
|
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
struct connection_t *connection; /* Connection associated with this node (if a direct connection exists) */
|
2002-02-10 21:57:54 +00:00
|
|
|
|
2002-06-08 12:57:10 +00:00
|
|
|
uint32_t sent_seqno; /* Sequence number last sent to this node */
|
|
|
|
uint32_t received_seqno; /* Sequence number last received from this node */
|
2001-10-09 19:30:30 +00:00
|
|
|
} node_t;
|
2001-10-10 08:49:47 +00:00
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
extern struct node_t *myself;
|
2001-10-10 08:49:47 +00:00
|
|
|
extern avl_tree_t *node_tree;
|
2002-02-10 21:57:54 +00:00
|
|
|
extern avl_tree_t *node_udp_tree;
|
2001-10-10 08:49:47 +00:00
|
|
|
|
2001-10-27 12:13:17 +00:00
|
|
|
extern void init_nodes(void);
|
|
|
|
extern void exit_nodes(void);
|
|
|
|
extern node_t *new_node(void);
|
2002-02-18 16:25:19 +00:00
|
|
|
extern void free_node(node_t *);
|
|
|
|
extern void node_add(node_t *);
|
|
|
|
extern void node_del(node_t *);
|
2001-10-27 12:13:17 +00:00
|
|
|
extern node_t *lookup_node(char *);
|
2002-02-18 16:25:19 +00:00
|
|
|
extern node_t *lookup_node_udp(sockaddr_t *);
|
2001-10-27 12:13:17 +00:00
|
|
|
extern void dump_nodes(void);
|
|
|
|
|
2001-10-10 08:49:47 +00:00
|
|
|
#endif /* __TINC_NODE_H__ */
|