Simplify logging, update copyrights and some minor cleanups.
[tinc] / 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.63 2003/07/12 17:41:46 guus Exp $
21 */
22
23 #ifndef __TINC_NET_H__
24 #define __TINC_NET_H__
25
26 #include "config.h"
27
28 #include <sys/types.h>
29 #include <sys/socket.h>
30 #include <netinet/in.h>
31 #include <sys/time.h>
32 #include <openssl/evp.h>
33
34 #ifdef HAVE_INTTYPES_H
35 #include <inttypes.h>
36 #endif
37
38 #include "utils.h"
39
40 #ifdef ENABLE_JUMBOGRAMS
41 #define MTU 9014                                /* 9000 bytes payload + 14 bytes ethernet header */
42 #else
43 #define MTU 1514                                /* 1500 bytes payload + 14 bytes ethernet header */
44 #endif
45
46 #define MAXSIZE (MTU + 4 + EVP_MAX_BLOCK_LENGTH + EVP_MAX_MD_SIZE + MTU/64 + 20)        /* MTU + seqno + padding + HMAC + compressor overhead */
47 #define MAXBUFSIZE ((MAXSIZE > 2048 ? MAXSIZE : 2048) + 128)    /* Enough room for a request with a MAXSIZEd packet or a 8192 bits RSA key */
48
49 #define MAXSOCKETS 128                  /* Overkill... */
50
51 #define MAXQUEUELENGTH 8                /* Maximum number of packats in a single queue */
52
53 typedef struct mac_t {
54         uint8_t x[6];
55 } mac_t;
56
57 typedef struct ipv4_t {
58         uint8_t x[4];
59 } ipv4_t;
60
61 typedef struct ipv6_t {
62         uint16_t x[8];
63 } ipv6_t;
64
65 typedef short length_t;
66
67 typedef union {
68         struct sockaddr sa;
69         struct sockaddr_in in;
70         struct sockaddr_in6 in6;
71 #ifdef HAVE_STRUCT_SOCKADDR_STORAGE
72         struct sockaddr_storage storage;
73 #endif
74 } sockaddr_t;
75
76 #ifdef SA_LEN
77 #define SALEN(s) SA_LEN(&s)
78 #else
79 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
80 #endif
81
82 typedef struct vpn_packet_t {
83         length_t len;                           /* the actual number of bytes in the `data' field */
84         int priority;                           /* priority or TOS */
85         uint32_t seqno;                         /* 32 bits sequence number (network byte order of course) */
86         uint8_t data[MAXSIZE];
87 } vpn_packet_t;
88
89 typedef struct queue_element_t {
90         void *packet;
91         struct queue_element_t *prev;
92         struct queue_element_t *next;
93 } queue_element_t;
94
95 typedef struct packet_queue_t {
96         queue_element_t *head;
97         queue_element_t *tail;
98 } packet_queue_t;
99
100 typedef struct outgoing_t {
101         char *name;
102         int timeout;
103         struct config_t *cfg;
104         struct addrinfo *ai;
105         struct addrinfo *aip;
106 } outgoing_t;
107
108 typedef struct listen_socket_t {
109         int tcp;
110         int udp;
111         sockaddr_t sa;
112 } listen_socket_t;
113
114 extern int maxtimeout;
115 extern int seconds_till_retry;
116 extern int addressfamily;
117
118 #include "connection.h"                 /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
119
120 extern listen_socket_t listen_socket[MAXSOCKETS];
121 extern int listen_sockets;
122 extern int keyexpires;
123 extern int keylifetime;
124 extern int do_prune;
125 extern int do_purge;
126 extern char *myport;
127 extern time_t now;
128 extern EVP_CIPHER_CTX packet_ctx;
129
130 extern void retry_outgoing(outgoing_t *);
131 extern void handle_incoming_vpn_data(int);
132 extern void finish_connecting(connection_t *);
133 extern void do_outgoing_connection(connection_t *);
134 extern int handle_new_meta_connection(int);
135 extern int setup_listen_socket(sockaddr_t *);
136 extern int setup_vpn_in_socket(sockaddr_t *);
137 extern void send_packet(struct node_t *, vpn_packet_t *);
138 extern void receive_tcppacket(struct connection_t *, char *, int);
139 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
140 extern int setup_network_connections(void);
141 extern void setup_outgoing_connection(struct outgoing_t *);
142 extern void try_outgoing_connections(void);
143 extern void close_network_connections(void);
144 extern void main_loop(void);
145 extern void terminate_connection(connection_t *, int);
146 extern void flush_queue(struct node_t *);
147 extern int read_rsa_public_key(struct connection_t *);
148
149 #endif                                                  /* __TINC_NET_H__ */