Cleanup:
[oweals/tinc.git] / src / net.h
1 /*
2     net.h -- header for net.c
3     Copyright (C) 1998-2002 Ivo Timmermans <zarq@iname.com>
4                   2000-2002 Guus Sliepen <guus@sliepen.warande.net>
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.50 2002/06/08 12:57:09 guus Exp $
21 */
22
23 #ifndef __TINC_NET_H__
24 #define __TINC_NET_H__
25
26 #include <sys/types.h>
27 #include <sys/socket.h>
28 #include <netinet/in.h>
29 #include <sys/time.h>
30
31 #ifdef HAVE_STDINT_H
32  #include <stdint.h>
33 #endif
34
35 #include "config.h"
36
37 #ifdef ENABLE_JUMBOGRAMS
38  #define MTU 9014        /* 9000 bytes payload + 14 bytes ethernet header */
39  #define MAXSIZE 9100    /* MTU + header (seqno) and trailer (CBC padding and HMAC) */
40  #define MAXBUFSIZE 9100 /* Must support TCP packets of length 9000. */
41 #else
42  #define MTU 1514        /* 1500 bytes payload + 14 bytes ethernet header */
43  #define MAXSIZE 1600    /* MTU + header (seqno) and trailer (CBC padding and HMAC) */
44  #define MAXBUFSIZE 2100 /* Quite large but needed for support of keys up to 8192 bits. */
45 #endif
46
47 #define MAXSOCKETS 128 /* Overkill... */
48
49 #define MAXQUEUELENGTH 8 /* Maximum number of packats in a single queue */
50
51 typedef struct mac_t
52 {
53   uint8_t x[6];
54 } mac_t;
55
56 typedef struct ipv4_t
57 {
58   uint8_t x[4];
59 } ipv4_t;
60
61 typedef struct ip_mask_t {
62   ipv4_t address;
63   ipv4_t mask;
64 } ip_mask_t;
65
66 typedef struct ipv6_t
67 {
68   uint16_t x[8];
69 } ipv6_t;
70
71 typedef unsigned short port_t;
72
73 typedef short length_t;
74
75 typedef union {
76   struct sockaddr sa;
77   struct sockaddr_in in;
78   struct sockaddr_in6 in6;
79 } sockaddr_t;
80
81 #ifdef SA_LEN
82 #define SALEN(s) SA_LEN(&s)
83 #else
84 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
85 #endif
86
87 typedef struct vpn_packet_t {
88   length_t len;                 /* the actual number of bytes in the `data' field */
89   int priority;                 /* priority or TOS */
90   uint32_t seqno;               /* 32 bits sequence number (network byte order of course) */
91   uint8_t data[MAXSIZE];
92 } vpn_packet_t;
93
94 typedef struct queue_element_t {
95   void *packet;
96   struct queue_element_t *prev;
97   struct queue_element_t *next;
98 } queue_element_t;
99
100 typedef struct packet_queue_t {
101   queue_element_t *head;
102   queue_element_t *tail;
103 } packet_queue_t;
104
105 typedef struct outgoing_t {
106   char *name;
107   int timeout;
108   struct config_t *cfg;
109   struct addrinfo *ai;
110   struct addrinfo *aip;
111 } outgoing_t;
112
113 typedef struct listen_socket_t {
114   int tcp;
115   int udp;
116   sockaddr_t sa;
117 } listen_socket_t;
118
119 extern int maxtimeout;
120 extern int seconds_till_retry;
121 extern int addressfamily;
122
123 extern char *request_name[];
124 extern char *status_text[];
125
126 #include "connection.h"         /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
127
128 extern listen_socket_t listen_socket[MAXSOCKETS];
129 extern int listen_sockets;
130 extern int keyexpires;
131 extern int keylifetime;
132 extern int do_prune;
133 extern int do_purge;
134 extern char *myport;
135 extern time_t now;
136
137 extern void retry_outgoing(outgoing_t *);
138 extern void handle_incoming_vpn_data(int);
139 extern void finish_connecting(connection_t *);
140 extern void do_outgoing_connection(connection_t *);
141 extern int handle_new_meta_connection(int);
142 extern int setup_listen_socket(sockaddr_t *);
143 extern int setup_vpn_in_socket(sockaddr_t *);
144 extern void send_packet(struct node_t *, vpn_packet_t *);
145 extern void receive_packet(struct node_t *, vpn_packet_t *);
146 extern void receive_tcppacket(struct connection_t *, char *, int);
147 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
148 extern int setup_network_connections(void);
149 extern void setup_outgoing_connection(struct outgoing_t *);
150 extern void try_outgoing_connections(void);
151 extern void close_network_connections(void);
152 extern void main_loop(void);
153 extern void terminate_connection(connection_t *, int);
154 extern void flush_queue(struct node_t *);
155 extern int read_rsa_public_key(struct connection_t *);
156
157 #endif /* __TINC_NET_H__ */