]> git.proxmox.com Git - mirror_frr.git/blame - ospf6d/ospf6_area.h
ospf6d: don't generate Type-7 LSA for route created by "default-information-originate"
[mirror_frr.git] / ospf6d / ospf6_area.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 OSPF_AREA_H
22#define OSPF_AREA_H
23
718e3744 24#include "ospf6_top.h"
35a45dea 25#include "lib/json.h"
718e3744 26
d62a17ae 27struct ospf6_area {
28 /* Reference to Top data structure */
29 struct ospf6 *ospf6;
718e3744 30
d62a17ae 31 /* Area-ID */
858f9c08 32 in_addr_t area_id;
718e3744 33
42cabc55 34#define OSPF6_AREA_FMT_UNSET 0
79c3f4f4
QY
35#define OSPF6_AREA_FMT_DOTTEDQUAD 1
36#define OSPF6_AREA_FMT_DECIMAL 2
d62a17ae 37 /* Area-ID string */
38 char name[16];
718e3744 39
d62a17ae 40 /* flag */
d7c0a89a 41 uint8_t flag;
718e3744 42
d62a17ae 43 /* OSPF Option */
d7c0a89a 44 uint8_t options[3];
718e3744 45
d62a17ae 46 /* Summary routes to be originated (includes Configured Address Ranges)
47 */
48 struct ospf6_route_table *range_table;
49 struct ospf6_route_table *summary_prefix;
50 struct ospf6_route_table *summary_router;
049207c3 51
d62a17ae 52 /* Area type */
53 int no_summary;
ca1f4309 54
a2d0055a 55 /* Brouter traversal protection */
cbcf3335 56 bool intra_brouter_calc;
a2d0055a 57
d62a17ae 58 /* OSPF interface list */
59 struct list *if_list;
718e3744 60
d62a17ae 61 struct ospf6_lsdb *lsdb;
62 struct ospf6_lsdb *lsdb_self;
da086a3b 63 struct ospf6_lsdb *temp_router_lsa_lsdb;
6452df09 64
d62a17ae 65 struct ospf6_route_table *spf_table;
66 struct ospf6_route_table *route_table;
718e3744 67
d7c0a89a 68 uint32_t spf_calculation; /* SPF calculation count */
718e3744 69
d62a17ae 70 struct thread *thread_router_lsa;
71 struct thread *thread_intra_prefix_lsa;
d7c0a89a 72 uint32_t router_lsa_size_limit;
34956b31 73
d62a17ae 74 /* Area announce list */
75 struct {
76 char *name;
77 struct access_list *list;
78 } _export;
dea04441
PJ
79#define EXPORT_NAME(A) (A)->_export.name
80#define EXPORT_LIST(A) (A)->_export.list
34956b31 81
d62a17ae 82 /* Area acceptance list */
83 struct {
84 char *name;
85 struct access_list *list;
86 } import;
34956b31 87#define IMPORT_NAME(A) (A)->import.name
88#define IMPORT_LIST(A) (A)->import.list
89
d62a17ae 90 /* Type 3 LSA Area prefix-list */
91 struct {
92 char *name;
93 struct prefix_list *list;
94 } plist_in;
34956b31 95#define PREFIX_NAME_IN(A) (A)->plist_in.name
96#define PREFIX_LIST_IN(A) (A)->plist_in.list
97
d62a17ae 98 struct {
99 char *name;
100 struct prefix_list *list;
101 } plist_out;
34956b31 102#define PREFIX_NAME_OUT(A) (A)->plist_out.name
103#define PREFIX_LIST_OUT(A) (A)->plist_out.list
104
d62a17ae 105 /* Time stamps. */
106 struct timeval ts_spf; /* SPF calculation time stamp. */
d6927cf3
CS
107
108 uint32_t full_nbrs; /* Fully adjacent neighbors. */
690df177 109 uint8_t intra_prefix_originate; /* Force intra_prefix lsa originate */
ad500b22
K
110 uint8_t NSSATranslatorRole; /* NSSA configured role */
111#define OSPF6_NSSA_ROLE_NEVER 0
112#define OSPF6_NSSA_ROLE_CANDIDATE 1
113#define OSPF6_NSSA_ROLE_ALWAYS 2
114 uint8_t NSSATranslatorState; /* NSSA operational role */
115#define OSPF6_NSSA_TRANSLATE_DISABLED 0
116#define OSPF6_NSSA_TRANSLATE_ENABLED 1
718e3744 117};
118
ad500b22 119#define OSPF6_AREA_DEFAULT 0x00
6452df09 120#define OSPF6_AREA_ENABLE 0x01
121#define OSPF6_AREA_ACTIVE 0x02
122#define OSPF6_AREA_TRANSIT 0x04 /* TransitCapability */
123#define OSPF6_AREA_STUB 0x08
ad500b22 124#define OSPF6_AREA_NSSA 0x10
6452df09 125
6452df09 126#define IS_AREA_ENABLED(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_ENABLE))
127#define IS_AREA_ACTIVE(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_ACTIVE))
128#define IS_AREA_TRANSIT(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_TRANSIT))
129#define IS_AREA_STUB(oa) (CHECK_FLAG ((oa)->flag, OSPF6_AREA_STUB))
ad500b22 130#define IS_AREA_NSSA(oa) (CHECK_FLAG((oa)->flag, OSPF6_AREA_NSSA))
718e3744 131
beadc736 132#define OSPF6_CMD_AREA_GET(str, oa, ospf6) \
de842255 133 { \
42cabc55
IR
134 uint32_t area_id; \
135 int format, ret; \
136 ret = str2area_id(str, &area_id, &format); \
137 if (ret) { \
de842255 138 vty_out(vty, "Malformed Area-ID: %s\n", str); \
42cabc55 139 return CMD_WARNING; \
de842255 140 } \
de842255
PR
141 oa = ospf6_area_lookup(area_id, ospf6); \
142 if (oa == NULL) \
143 oa = ospf6_area_create(area_id, ospf6, format); \
144 }
145
718e3744 146/* prototypes */
42cabc55
IR
147extern int str2area_id(const char *str, uint32_t *area_id, int *area_id_fmt);
148extern void area_id2str(char *buf, int len, uint32_t area_id, int area_id_fmt);
149
d62a17ae 150extern int ospf6_area_cmp(void *va, void *vb);
6452df09 151
7932dd93
DS
152extern struct ospf6_area *ospf6_area_create(uint32_t area_id,
153 struct ospf6 *ospf6, int df);
154extern void ospf6_area_delete(struct ospf6_area *oa);
155extern struct ospf6_area *ospf6_area_lookup(uint32_t area_id,
156 struct ospf6 *ospf6);
beadc736 157extern struct ospf6_area *ospf6_area_lookup_by_area_id(uint32_t area_id);
508e53e2 158
0c293b92 159extern void ospf6_area_stub_unset(struct ospf6 *ospf6, struct ospf6_area *area);
7932dd93
DS
160extern void ospf6_area_enable(struct ospf6_area *oa);
161extern void ospf6_area_disable(struct ospf6_area *oa);
718e3744 162
7932dd93 163extern void ospf6_area_show(struct vty *vty, struct ospf6_area *oa,
35a45dea 164 json_object *json_areas, bool use_json);
6452df09 165
f4f0098c 166extern void ospf6_plist_update(struct prefix_list *plist);
f6c5f2e0 167extern void ospf6_filter_update(struct access_list *access);
beadc736 168extern void ospf6_area_config_write(struct vty *vty, struct ospf6 *ospf6);
d62a17ae 169extern void ospf6_area_init(void);
22b982df
PG
170struct ospf6_interface;
171extern void ospf6_area_interface_delete(struct ospf6_interface *oi);
718e3744 172
173#endif /* OSPF_AREA_H */