1100071a5c012ba4d595d4e6c1970e74be0b7df1
[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.39 2002/02/18 16:25:16 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
38 typedef struct mac_t
39 {
40   unsigned char x[6];
41 } mac_t;
42
43 typedef struct ipv4_t
44 {
45   unsigned char x[4];
46 } ipv4_t;
47
48 typedef struct ip_mask_t {
49   ipv4_t address;
50   ipv4_t mask;
51 } ip_mask_t;
52
53 typedef struct ipv6_t
54 {
55   unsigned short x[8];
56 } ipv6_t;
57
58 typedef unsigned short port_t;
59
60 typedef short length_t;
61
62 typedef union {
63   struct sockaddr sa;
64   struct sockaddr_in in;
65   struct sockaddr_in6 in6;
66 } sockaddr_t;
67
68 #define SA_PORT(s) ((s.sa.sa_family==AF_INET)?s.in.sin_port:(s.sa.sa_family==AF_INET6)?s.in6.sin6_port:0)
69
70 typedef struct vpn_packet_t {
71   length_t len;                 /* the actual number of bytes in the `data' field */
72   unsigned int seqno;           /* 32 bits sequence number (network byte order of course) */
73   unsigned char data[MAXSIZE];
74 } vpn_packet_t;
75
76 typedef struct queue_element_t {
77   void *packet;
78   struct queue_element_t *prev;
79   struct queue_element_t *next;
80 } queue_element_t;
81
82 typedef struct packet_queue_t {
83   queue_element_t *head;
84   queue_element_t *tail;
85 } packet_queue_t;
86
87 typedef struct outgoing_t {
88   char *name;
89   int timeout;
90   struct config_t *cfg;
91   struct addrinfo *ai;
92   struct addrinfo *aip;
93 } outgoing_t;
94
95 extern int maxtimeout;
96 extern int seconds_till_retry;
97 extern int addressfamily;
98
99 extern char *request_name[];
100 extern char *status_text[];
101
102 #include "connection.h"         /* Yes, very strange placement indeed, but otherwise the typedefs get all tangled up */
103
104 extern int tcp_socket;
105 extern int udp_socket;
106 extern int keyexpires;
107 extern int keylifetime;
108 extern int do_prune;
109 extern int do_purge;
110 extern char *myport;
111
112 extern void retry_outgoing(outgoing_t *);
113 extern void handle_incoming_vpn_data(void);
114 extern void finish_connecting(connection_t *);
115 extern void do_outgoing_connection(connection_t *);
116 extern int handle_new_meta_connection(void);
117 extern int setup_listen_socket(sockaddr_t *);
118 extern int setup_vpn_in_socket(sockaddr_t *);
119 extern void send_packet(struct node_t *, vpn_packet_t *);
120 extern void receive_packet(struct node_t *, vpn_packet_t *);
121 extern void receive_tcppacket(struct connection_t *, char *, int);
122 extern void broadcast_packet(struct node_t *, vpn_packet_t *);
123 extern int setup_network_connections(void);
124 extern void setup_outgoing_connection(struct outgoing_t *);
125 extern void try_outgoing_connections(void);
126 extern void close_network_connections(void);
127 extern void main_loop(void);
128 extern void terminate_connection(connection_t *, int);
129 extern void flush_queue(struct node_t *);
130 extern int read_rsa_public_key(struct connection_t *);
131
132 #endif /* __TINC_NET_H__ */