]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_interface.h
Merge pull request #2267 from donaldsharp/flim_flam
[mirror_frr.git] / ospf6d / ospf6_interface.h
CommitLineData
718e3744 1/*
508e53e2 2 * Copyright (C) 2003 Yasuhiro Ohara
718e3744 3 *
4 * This file is part of GNU Zebra.
5 *
6 * GNU Zebra is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * GNU Zebra is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 19 */
20
21#ifndef OSPF6_INTERFACE_H
22#define OSPF6_INTERFACE_H
23
ae19c240 24#include "qobj.h"
3012671f 25#include "hook.h"
508e53e2 26#include "if.h"
718e3744 27
508e53e2 28/* Debug option */
29extern unsigned char conf_debug_ospf6_interface;
d62a17ae 30#define OSPF6_DEBUG_INTERFACE_ON() (conf_debug_ospf6_interface = 1)
31#define OSPF6_DEBUG_INTERFACE_OFF() (conf_debug_ospf6_interface = 0)
32#define IS_OSPF6_DEBUG_INTERFACE (conf_debug_ospf6_interface)
718e3744 33
508e53e2 34/* Interface structure */
d62a17ae 35struct ospf6_interface {
36 /* IF info from zebra */
37 struct interface *interface;
718e3744 38
d62a17ae 39 /* back pointer */
40 struct ospf6_area *area;
718e3744 41
d62a17ae 42 /* list of ospf6 neighbor */
43 struct list *neighbor_list;
718e3744 44
d62a17ae 45 /* linklocal address of this I/F */
46 struct in6_addr *linklocal_addr;
718e3744 47
d62a17ae 48 /* Interface ID; use interface->ifindex */
718e3744 49
d62a17ae 50 /* ospf6 instance id */
d7c0a89a 51 uint8_t instance_id;
718e3744 52
d62a17ae 53 /* I/F transmission delay */
d7c0a89a 54 uint32_t transdelay;
718e3744 55
d62a17ae 56 /* Network Type */
d7c0a89a 57 uint8_t type;
c5926a92 58
d62a17ae 59 /* Router Priority */
d7c0a89a 60 uint8_t priority;
718e3744 61
d62a17ae 62 /* Time Interval */
d7c0a89a
QY
63 uint16_t hello_interval;
64 uint16_t dead_interval;
65 uint32_t rxmt_interval;
718e3744 66
d7c0a89a 67 uint32_t state_change;
3bc4f84e 68
d62a17ae 69 /* Cost */
d7c0a89a 70 uint32_t cost;
718e3744 71
d62a17ae 72 /* I/F MTU */
d7c0a89a 73 uint32_t ifmtu;
718e3744 74
d62a17ae 75 /* Configured MTU */
d7c0a89a 76 uint32_t c_ifmtu;
0c7ef48a 77
d62a17ae 78 /* Interface State */
d7c0a89a 79 uint8_t state;
718e3744 80
d62a17ae 81 /* Interface socket setting trial counter, resets on success */
d7c0a89a 82 uint8_t sso_try_cnt;
8e370bfa 83
d62a17ae 84 /* OSPF6 Interface flag */
85 char flag;
718e3744 86
d62a17ae 87 /* MTU mismatch check */
d7c0a89a 88 uint8_t mtu_ignore;
d42306d9 89
d62a17ae 90 /* Decision of DR Election */
d7c0a89a
QY
91 uint32_t drouter;
92 uint32_t bdrouter;
93 uint32_t prev_drouter;
94 uint32_t prev_bdrouter;
718e3744 95
d62a17ae 96 /* Linklocal LSA Database: includes Link-LSA */
97 struct ospf6_lsdb *lsdb;
98 struct ospf6_lsdb *lsdb_self;
718e3744 99
d62a17ae 100 struct ospf6_lsdb *lsupdate_list;
101 struct ospf6_lsdb *lsack_list;
718e3744 102
d62a17ae 103 /* Ongoing Tasks */
104 struct thread *thread_send_hello;
105 struct thread *thread_send_lsupdate;
106 struct thread *thread_send_lsack;
718e3744 107
d62a17ae 108 struct thread *thread_network_lsa;
109 struct thread *thread_link_lsa;
110 struct thread *thread_intra_prefix_lsa;
76249532 111 struct thread *thread_as_extern_lsa;
718e3744 112
d62a17ae 113 struct ospf6_route_table *route_connected;
718e3744 114
d62a17ae 115 /* prefix-list name to filter connected prefix */
116 char *plist_name;
7f342629 117
d62a17ae 118 /* BFD information */
119 void *bfd_info;
ae19c240 120
43855e3d 121 /* Statistics Fields */
d7c0a89a
QY
122 uint32_t hello_in;
123 uint32_t hello_out;
124 uint32_t db_desc_in;
125 uint32_t db_desc_out;
126 uint32_t ls_req_in;
127 uint32_t ls_req_out;
128 uint32_t ls_upd_in;
129 uint32_t ls_upd_out;
130 uint32_t ls_ack_in;
131 uint32_t ls_ack_out;
132 uint32_t discarded;
43855e3d 133
d62a17ae 134 QOBJ_FIELDS
718e3744 135};
ae19c240 136DECLARE_QOBJ_TYPE(ospf6_interface)
718e3744 137
508e53e2 138/* interface state */
139#define OSPF6_INTERFACE_NONE 0
140#define OSPF6_INTERFACE_DOWN 1
141#define OSPF6_INTERFACE_LOOPBACK 2
142#define OSPF6_INTERFACE_WAITING 3
143#define OSPF6_INTERFACE_POINTTOPOINT 4
144#define OSPF6_INTERFACE_DROTHER 5
145#define OSPF6_INTERFACE_BDR 6
146#define OSPF6_INTERFACE_DR 7
147#define OSPF6_INTERFACE_MAX 8
148
0c083ee9 149extern const char *ospf6_interface_state_str[];
718e3744 150
508e53e2 151/* flags */
152#define OSPF6_INTERFACE_DISABLE 0x01
153#define OSPF6_INTERFACE_PASSIVE 0x02
c19543b2 154#define OSPF6_INTERFACE_NOAUTOCOST 0x04
718e3744 155
b51a3a31
VT
156/* default values */
157#define OSPF6_INTERFACE_HELLO_INTERVAL 10
158#define OSPF6_INTERFACE_DEAD_INTERVAL 40
159#define OSPF6_INTERFACE_RXMT_INTERVAL 5
160#define OSPF6_INTERFACE_COST 1
161#define OSPF6_INTERFACE_PRIORITY 1
162#define OSPF6_INTERFACE_TRANSDELAY 1
163#define OSPF6_INTERFACE_INSTANCE_ID 0
70bd3c43
DS
164#define OSPF6_INTERFACE_BANDWIDTH 10000 /* Mbps */
165#define OSPF6_REFERENCE_BANDWIDTH 100000 /* Mbps */
8e370bfa
DS
166#define OSPF6_INTERFACE_SSO_RETRY_INT 1
167#define OSPF6_INTERFACE_SSO_RETRY_MAX 5
b51a3a31 168
718e3744 169/* Function Prototypes */
170
d62a17ae 171extern struct ospf6_interface *ospf6_interface_lookup_by_ifindex(ifindex_t);
172extern struct ospf6_interface *ospf6_interface_create(struct interface *);
173extern void ospf6_interface_delete(struct ospf6_interface *);
718e3744 174
d62a17ae 175extern void ospf6_interface_enable(struct ospf6_interface *);
176extern void ospf6_interface_disable(struct ospf6_interface *);
718e3744 177
d62a17ae 178extern void ospf6_interface_if_add(struct interface *);
d62a17ae 179extern void ospf6_interface_state_update(struct interface *);
180extern void ospf6_interface_connected_route_update(struct interface *);
508e53e2 181
182/* interface event */
d62a17ae 183extern int interface_up(struct thread *);
184extern int interface_down(struct thread *);
185extern int wait_timer(struct thread *);
186extern int backup_seen(struct thread *);
187extern int neighbor_change(struct thread *);
718e3744 188
d62a17ae 189extern void ospf6_interface_init(void);
718e3744 190
d62a17ae 191extern void install_element_ospf6_clear_interface(void);
a1b11f9b 192
d62a17ae 193extern int config_write_ospf6_debug_interface(struct vty *vty);
194extern void install_element_ospf6_debug_interface(void);
718e3744 195
3012671f 196DECLARE_HOOK(ospf6_interface_change,
d62a17ae 197 (struct ospf6_interface * oi, int state, int old_state),
198 (oi, state, old_state))
3012671f 199
718e3744 200#endif /* OSPF6_INTERFACE_H */