Allow multiple listening sockets.
[tinc] / 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.43 2002/02/26 23:26:41 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 #include "config.h"
32
33 #define MTU 1514     /* 1500 bytes payload + 14 bytes ethernet header */
34 #define MAXSIZE 1600 /* MTU + header (seqno) and trailer (CBC padding and HMAC) */
35
36 #define MAXBUFSIZE 2048 /* Probably way too much, but it must fit every possible request. */
37 #define MAXSOCKETS 128 /* Overkill... */
38
39 typedef struct mac_t
40 {
41   unsigned char x[6];
42 } mac_t;
43
44 typedef struct ipv4_t
45 {
46   unsigned char x[4];
47 } ipv4_t;
48
49 typedef struct ip_mask_t {
50   ipv4_t address;
51   ipv4_t mask;
52 } ip_mask_t;
53
54 typedef struct ipv6_t
55 {
56   unsigned short x[8];
57 } ipv6_t;
58
59 typedef unsigned short port_t;
60
61 typedef short length_t;
62
63 typedef union {
64   struct sockaddr sa;
65   struct sockaddr_in in;
66   struct sockaddr_in6 in6;
67 } sockaddr_t;
68
69 #ifdef SA_LEN
70 #define SALEN(s) SA_LEN(&s)
71 #else
72 #define SALEN(s) (s.sa_family==AF_INET?sizeof(struct sockaddr_in):sizeof(struct sockaddr_in6))
73 #endif
74
75 typedef struct vpn_packet_t {
76   length_t len;                 /* the actual number of bytes in the `data' field */
77   unsigned int seqno;           /* 32 bits sequence number (network byte order of course) */
78   unsigned char data[MAXSIZE];
79 } vpn_packet_t;
80
81 typedef struct queue_element_t {
82   void *packet;
83   struct queue_element_t *prev;
84   struct queue_element_t *next;
85 } queue_element_t;
86
87 typedef struct packet_queue_t {
88   queue_element_t *head;
89   queue_element_t *tail;
90 } packet_queue_t;
91
92 typedef struct outgoing_t {
93   char *name;
94   int timeout;
95   struct config_t *cfg;
96   struct addrinfo *ai;
97   struct addrinfo *aip;
98 } outgoing_t;
99
100 extern int maxtimeout;
101 extern int seconds_till_retry;
102 extern int addressfamily;
103
104 extern char *request_name[];
105 extern char *status_text[];
106
107 #include "connection.h"         /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
108
109 extern int tcp_socket[MAXSOCKETS];
110 extern int udp_socket[MAXSOCKETS];
111 extern int tcp_sockets;
112 extern int udp_sockets;
113 extern int keyexpires;
114 extern int keylifetime;
115 extern int do_prune;
116 extern int do_purge;
117 extern char *myport;
118
119 extern void retry_outgoing(outgoing_t *);
120 extern void handle_incoming_vpn_data(int);
121 extern void finish_connecting(connection_t *);
122 extern void do_outgoing_connection(connection_t *);
123 extern int handle_new_meta_connection(int);
124 extern int setup_listen_socket(sockaddr_t *);
125 extern int setup_vpn_in_socket(sockaddr_t *);
126 extern void send_packet(struct node_t *, vpn_packet_t *);
127 extern void receive_packet(struct node_t *, vpn_packet_t *);
128 extern void receive_tcppacket(struct connection_t *, char *, int);
129 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
130 extern int setup_network_connections(void);
131 extern void setup_outgoing_connection(struct outgoing_t *);
132 extern void try_outgoing_connections(void);
133 extern void close_network_connections(void);
134 extern void main_loop(void);
135 extern void terminate_connection(connection_t *, int);
136 extern void flush_queue(struct node_t *);
137 extern int read_rsa_public_key(struct connection_t *);
138
139 #endif /* __TINC_NET_H__ */