2 net.h -- header for net.c
3 Copyright (C) 1998-2005 Ivo Timmermans
4 2000-2009 Guus Sliepen <guus@tinc-vpn.org>
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 #ifndef __TINC_NET_H__
22 #define __TINC_NET_H__
24 #include <openssl/evp.h>
28 #ifdef ENABLE_JUMBOGRAMS
29 #define MTU 9018 /* 9000 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
31 #define MTU 1518 /* 1500 bytes payload + 14 bytes ethernet header + 4 bytes VLAN tag */
34 #define MAXSIZE (MTU + 4 + EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + MTU/64 + 20) /* MTU + seqno + padding + HMAC + compressor overhead */
35 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128) /* Enough room for a request with a MAXSIZEd packet or a 8192 bits RSA key */
37 #define MAXSOCKETS 128 /* Overkill... */
39 typedef struct mac_t {
43 typedef struct ipv4_t {
47 typedef struct ipv6_t {
51 typedef short length_t;
53 #define AF_UNKNOWN 255
55 struct sockaddr_unknown {
63 typedef union sockaddr_t {
65 struct sockaddr_in in;
66 struct sockaddr_in6 in6;
67 struct sockaddr_unknown unknown;
68 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
69 struct sockaddr_storage storage;
74 #define SALEN(s) SA_LEN(&s)
76 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
79 typedef struct vpn_packet_t {
80 length_t len; /* the actual number of bytes in the `data' field */
81 int priority; /* priority or TOS */
82 uint32_t seqno; /* 32 bits sequence number (network byte order of course) */
83 uint8_t data[MAXSIZE];
86 typedef struct listen_socket_t {
95 typedef struct outgoing_t {
100 struct addrinfo *aip;
104 extern list_t *outgoing_list;
106 extern int maxoutbufsize;
107 extern int seconds_till_retry;
108 extern int addressfamily;
110 extern listen_socket_t listen_socket[MAXSOCKETS];
111 extern int listen_sockets;
112 extern int keyexpires;
113 extern int keylifetime;
114 extern bool do_prune;
115 extern bool do_purge;
119 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
120 #include "connection.h"
123 extern void retry_outgoing(outgoing_t *);
124 extern void handle_incoming_vpn_data(int);
125 extern void finish_connecting(struct connection_t *);
126 extern void do_outgoing_connection(struct connection_t *);
127 extern bool handle_new_meta_connection(int);
128 extern int setup_listen_socket(const sockaddr_t *);
129 extern int setup_vpn_in_socket(const sockaddr_t *);
130 extern void send_packet(const struct node_t *, vpn_packet_t *);
131 extern void receive_tcppacket(struct connection_t *, char *, int);
132 extern void broadcast_packet(const struct node_t *, vpn_packet_t *);
133 extern bool setup_network(void);
134 extern void setup_outgoing_connection(struct outgoing_t *);
135 extern void try_outgoing_connections(void);
136 extern void close_network_connections(void);
137 extern int main_loop(void);
138 extern void terminate_connection(struct connection_t *, bool);
139 extern void flush_queue(struct node_t *);
140 extern bool read_rsa_public_key(struct connection_t *);
141 extern void send_mtu_probe(struct node_t *);
142 extern void load_all_subnets();
145 #define closesocket(s) close(s)
147 extern CRITICAL_SECTION mutex;
150 #endif /* __TINC_NET_H__ */