forked from ocochard/FreeVRRPd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vrrp_proto.h
153 lines (143 loc) · 4.51 KB
/
vrrp_proto.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/*
* Copyright (c) 2001,2002 Sebastien Petit <spe@bsdfr.org>
*
* Redistribution and use in source forms, with and without modification,
* are permitted provided that the following conditions are met:
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution. Obviously, it
* would be nice if you gave credit where credit is due but requiring it
* would be too onerous.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Sebastien Petit.
* 4. Neither the name of its contributors may be used to endorse or promote
* products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $Id: vrrp_proto.h,v 1.14 2004/03/30 23:45:28 rival Exp $
*/
#ifndef _VRRP_PROTO_H
#define _VRRP_PROTO_H
#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#ifdef __FreeBSD__
#include <net/ethernet.h>
#endif
#ifdef __NetBSD__
#include <net/if_ether.h>
#endif
#ifdef __OpenBSD__
#include <netinet/if_ether.h>
#endif
#include "vrrp_define.h"
/* RFC 2338 vrrp header */
struct vrrp_hdr {
#if BYTE_ORDER == LITTLE_ENDIAN
u_int vrrp_t:4, vrrp_v:4;
#endif
#if BYTE_ORDER == BIG_ENDIAN
u_int vrrp_v:4, vrrp_t:4;
#endif
u_char vr_id;
u_char priority;
u_char cnt_ip;
u_char auth_type;
u_char adv_int;
u_short csum;
/* Some IP adresses, number are not defined */
/*
* After IP adresses, we can found Authentification Data 1 & 2 (total
* of 8 bytes)
*/
};
struct vrrp_if {
char if_name[IFNAMSIZ];
u_char nb_ip;
int alive;
int nberrors;
int checksok;
int reportsyslog;
struct in_addr ip_addrs[MAX_IP_ALIAS];
struct ether_addr ethaddr;
struct ether_addr actualethaddr;
struct vrrp_ethaddr_list *p, *d;
struct vrrp_vlan_list *vlanp, *vland;
int carrier_timeout;
};
struct vrrp_vip {
struct in_addr addr;
u_char owner;
char *if_name;
};
/* Timers RFC2338-6.2 */
struct vrrp_timer {
struct timeval master_down_tm;
struct timeval adv_tm;
};
/*
* Parameters per Virtual Router RFC2338-6.1.2 and
* draft-ietf-vrrp-spec-v2-05.txt
*/
struct vrrp_vr {
u_char vr_id;
u_char priority;
int sd;
int ioctl_sd; /* socket used to pass ioctl */
struct ether_addr ethaddr;
u_char cnt_ip;
struct vrrp_vip *vr_ip;
u_int *vr_netmask;
u_char adv_int;
u_int master_down_int;
u_int skew_time;
struct vrrp_timer tm;
u_char preempt_mode; /* False = 0, True = 1 */
u_char state; /* 0 = INITIALIZE, 1 = MASTER, 2 = BACKUP */
u_char auth_type;
u_char auth_data[VRRP_AUTH_DATA_LEN];
struct vrrp_if *vr_if;
char viface_name[IFNAMSIZ]; /* Real interface name for vrrp announces */
int bridge_link_number;
#ifdef ENABLE_VRRP_AH
struct ah_header *ahctx;
#endif
char *password;
char *master_script;
char *backup_script;
int *vridsdeps;
int fault;
int useIKE;
int useMonitoredCircuits;
int AHencryption;
int sendGratuitousArp;
int spanningTreeLatency;
int monitoredCircuitsClearErrorsCount;
};
struct vrrp_ethaddr_list {
struct ether_addr ethaddr;
struct vrrp_ethaddr_list *next;
struct vrrp_ethaddr_list *previous;
};
struct vrrp_vlan_list {
char vlan_ifname[IFNAMSIZ];
struct vrrp_vlan_list *next;
struct vrrp_vlan_list *previous;
};
#endif