]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_spf.h
zebra: Allow ns delete to happen after under/over flow checks
[mirror_frr.git] / ospf6d / ospf6_spf.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_SPF_H
22#define OSPF6_SPF_H
23
3810e06e
DD
24#include "ospf6_top.h"
25
508e53e2 26/* Debug option */
27extern unsigned char conf_debug_ospf6_spf;
3b68735f 28#define OSPF6_DEBUG_SPF_PROCESS 0x01
29#define OSPF6_DEBUG_SPF_TIME 0x02
2680aa2b 30#define OSPF6_DEBUG_SPF_DATABASE 0x04
d62a17ae 31#define OSPF6_DEBUG_SPF_ON(level) (conf_debug_ospf6_spf |= (level))
32#define OSPF6_DEBUG_SPF_OFF(level) (conf_debug_ospf6_spf &= ~(level))
33#define IS_OSPF6_DEBUG_SPF(level) \
34 (conf_debug_ospf6_spf & OSPF6_DEBUG_SPF_##level)
718e3744 35
36/* Transit Vertex */
d62a17ae 37struct ospf6_vertex {
38 /* type of this vertex */
d7c0a89a 39 uint8_t type;
718e3744 40
d62a17ae 41 /* Vertex Identifier */
42 struct prefix vertex_id;
718e3744 43
d62a17ae 44 /* Identifier String */
45 char name[128];
508e53e2 46
d62a17ae 47 /* Associated Area */
48 struct ospf6_area *area;
718e3744 49
d62a17ae 50 /* Associated LSA */
51 struct ospf6_lsa *lsa;
718e3744 52
d62a17ae 53 /* Distance from Root (i.e. Cost) */
d7c0a89a 54 uint32_t cost;
718e3744 55
d62a17ae 56 /* Router hops to this node */
d7c0a89a 57 uint8_t hops;
718e3744 58
d62a17ae 59 /* capability bits */
d7c0a89a 60 uint8_t capability;
718e3744 61
d62a17ae 62 /* Optional capabilities */
d7c0a89a 63 uint8_t options[3];
508e53e2 64
d62a17ae 65 /* For tree display */
66 struct ospf6_vertex *parent;
67 struct list *child_list;
c3c0ac83 68
d62a17ae 69 /* nexthops to this node */
70 struct list *nh_list;
26e14616 71 uint32_t link_id;
718e3744 72};
73
74#define OSPF6_VERTEX_TYPE_ROUTER 0x01
75#define OSPF6_VERTEX_TYPE_NETWORK 0x02
d62a17ae 76#define VERTEX_IS_TYPE(t, v) ((v)->type == OSPF6_VERTEX_TYPE_##t ? 1 : 0)
718e3744 77
a0edf674
DD
78/* What triggered the SPF? */
79#define OSPF6_SPF_FLAGS_ROUTER_LSA_ADDED (1 << 0)
80#define OSPF6_SPF_FLAGS_ROUTER_LSA_REMOVED (1 << 1)
81#define OSPF6_SPF_FLAGS_NETWORK_LSA_ADDED (1 << 2)
82#define OSPF6_SPF_FLAGS_NETWORK_LSA_REMOVED (1 << 3)
83#define OSPF6_SPF_FLAGS_LINK_LSA_ADDED (1 << 4)
84#define OSPF6_SPF_FLAGS_LINK_LSA_REMOVED (1 << 5)
85#define OSPF6_SPF_FLAGS_ROUTER_LSA_ORIGINATED (1 << 6)
86#define OSPF6_SPF_FLAGS_NETWORK_LSA_ORIGINATED (1 << 7)
87
d62a17ae 88static inline void ospf6_set_spf_reason(struct ospf6 *ospf, unsigned int reason)
a0edf674 89{
d62a17ae 90 ospf->spf_reason |= reason;
a0edf674
DD
91}
92
d62a17ae 93static inline void ospf6_reset_spf_reason(struct ospf6 *ospf)
a0edf674 94{
d62a17ae 95 ospf->spf_reason = 0;
a0edf674
DD
96}
97
d62a17ae 98static inline unsigned int ospf6_lsadd_to_spf_reason(struct ospf6_lsa *lsa)
a0edf674 99{
d62a17ae 100 unsigned int reason = 0;
101
102 switch (ntohs(lsa->header->type)) {
103 case OSPF6_LSTYPE_ROUTER:
104 reason = OSPF6_SPF_FLAGS_ROUTER_LSA_ADDED;
105 break;
106 case OSPF6_LSTYPE_NETWORK:
107 reason = OSPF6_SPF_FLAGS_NETWORK_LSA_ADDED;
108 break;
109 case OSPF6_LSTYPE_LINK:
110 reason = OSPF6_SPF_FLAGS_LINK_LSA_ADDED;
111 break;
112 default:
113 break;
114 }
115 return (reason);
a0edf674
DD
116}
117
d62a17ae 118static inline unsigned int ospf6_lsremove_to_spf_reason(struct ospf6_lsa *lsa)
a0edf674 119{
d62a17ae 120 unsigned int reason = 0;
121
122 switch (ntohs(lsa->header->type)) {
123 case OSPF6_LSTYPE_ROUTER:
124 reason = OSPF6_SPF_FLAGS_ROUTER_LSA_REMOVED;
125 break;
126 case OSPF6_LSTYPE_NETWORK:
127 reason = OSPF6_SPF_FLAGS_NETWORK_LSA_REMOVED;
128 break;
129 case OSPF6_LSTYPE_LINK:
130 reason = OSPF6_SPF_FLAGS_LINK_LSA_REMOVED;
131 break;
132 default:
133 break;
134 }
135 return (reason);
a0edf674
DD
136}
137
d62a17ae 138extern void ospf6_spf_table_finish(struct ospf6_route_table *result_table);
d7c0a89a 139extern void ospf6_spf_calculation(uint32_t router_id,
d62a17ae 140 struct ospf6_route_table *result_table,
141 struct ospf6_area *oa);
142extern void ospf6_spf_schedule(struct ospf6 *ospf, unsigned int reason);
6ac29a51 143
d62a17ae 144extern void ospf6_spf_display_subtree(struct vty *vty, const char *prefix,
145 int rest, struct ospf6_vertex *v);
6ac29a51 146
d62a17ae 147extern void ospf6_spf_config_write(struct vty *vty);
148extern int config_write_ospf6_debug_spf(struct vty *vty);
149extern void install_element_ospf6_debug_spf(void);
150extern void ospf6_spf_init(void);
151extern void ospf6_spf_reason_string(unsigned int reason, char *buf, int size);
da086a3b
CS
152extern struct ospf6_lsa *ospf6_create_single_router_lsa(struct ospf6_area *area,
153 struct ospf6_lsdb *lsdb,
154 uint32_t adv_router);
155extern void ospf6_remove_temp_router_lsa(struct ospf6_area *area);
718e3744 156
157#endif /* OSPF6_SPF_H */