Big header file cleanup: everything that has to do with standard system
[oweals/tinc.git] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2003 Ivo Timmermans <zarq@iname.com>
4                   2000-2003 Guus Sliepen <guus@sliepen.eu.org>
5
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.
10
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.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id: net.h,v 1.9.4.64 2003/07/17 15:06:26 guus Exp $
21 */
22
23 #ifndef __TINC_NET_H__
24 #define __TINC_NET_H__
25
26 #include <openssl/evp.h>
27
28 #ifdef ENABLE_JUMBOGRAMS
29 #define MTU 9014                                /* 9000 bytes payload + 14 bytes ethernet header */
30 #else
31 #define MTU 1514                                /* 1500 bytes payload + 14 bytes ethernet header */
32 #endif
33
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 */
36
37 #define MAXSOCKETS 128                  /* Overkill... */
38
39 #define MAXQUEUELENGTH 8                /* Maximum number of packats in a single queue */
40
41 typedef struct mac_t {
42         uint8_t x[6];
43 } mac_t;
44
45 typedef struct ipv4_t {
46         uint8_t x[4];
47 } ipv4_t;
48
49 typedef struct ipv6_t {
50         uint16_t x[8];
51 } ipv6_t;
52
53 typedef short length_t;
54
55 typedef union {
56         struct sockaddr sa;
57         struct sockaddr_in in;
58         struct sockaddr_in6 in6;
59 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
60         struct sockaddr_storage storage;
61 #endif
62 } sockaddr_t;
63
64 #ifdef SA_LEN
65 #define SALEN(s) SA_LEN(&s)
66 #else
67 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
68 #endif
69
70 typedef struct vpn_packet_t {
71         length_t len;                           /* the actual number of bytes in the `data' field */
72         int priority;                           /* priority or TOS */
73         uint32_t seqno;                         /* 32 bits sequence number (network byte order of course) */
74         uint8_t data[MAXSIZE];
75 } vpn_packet_t;
76
77 typedef struct queue_element_t {
78         void *packet;
79         struct queue_element_t *prev;
80         struct queue_element_t *next;
81 } queue_element_t;
82
83 typedef struct packet_queue_t {
84         queue_element_t *head;
85         queue_element_t *tail;
86 } packet_queue_t;
87
88 #include "conf.h"
89
90 typedef struct outgoing_t {
91         char *name;
92         int timeout;
93         struct config_t *cfg;
94         struct addrinfo *ai;
95         struct addrinfo *aip;
96 } outgoing_t;
97
98 typedef struct listen_socket_t {
99         int tcp;
100         int udp;
101         sockaddr_t sa;
102 } listen_socket_t;
103
104 extern int maxtimeout;
105 extern int seconds_till_retry;
106 extern int addressfamily;
107
108 extern listen_socket_t listen_socket[MAXSOCKETS];
109 extern int listen_sockets;
110 extern int keyexpires;
111 extern int keylifetime;
112 extern int do_prune;
113 extern int do_purge;
114 extern char *myport;
115 extern time_t now;
116 extern EVP_CIPHER_CTX packet_ctx;
117
118 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
119 #include "connection.h"
120 #include "node.h"
121
122 extern void retry_outgoing(outgoing_t *);
123 extern void handle_incoming_vpn_data(int);
124 extern void finish_connecting(struct connection_t *);
125 extern void do_outgoing_connection(struct connection_t *);
126 extern int handle_new_meta_connection(int);
127 extern int setup_listen_socket(sockaddr_t *);
128 extern int setup_vpn_in_socket(sockaddr_t *);
129 extern void send_packet(struct node_t *, vpn_packet_t *);
130 extern void receive_tcppacket(struct connection_t *, char *, int);
131 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
132 extern int setup_network_connections(void);
133 extern void setup_outgoing_connection(struct outgoing_t *);
134 extern void try_outgoing_connections(void);
135 extern void close_network_connections(void);
136 extern void main_loop(void);
137 extern void terminate_connection(struct connection_t *, int);
138 extern void flush_queue(struct node_t *);
139 extern int read_rsa_public_key(struct connection_t *);
140
141 #endif                                                  /* __TINC_NET_H__ */