]> git.proxmox.com Git - mirror_frr.git/blob - isisd/isis_mt.h
lib: enforce vrf_name_to_id by returning default_vrf when name is null
[mirror_frr.git] / isisd / isis_mt.h
1 /*
2 * IS-IS Rout(e)ing protocol - Multi Topology Support
3 *
4 * Copyright (C) 2017 Christian Franke
5 *
6 * This file is part of FreeRangeRouting (FRR)
7 *
8 * FRR is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2, or (at your option) any
11 * later version.
12 *
13 * FRR is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; see the file COPYING; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 */
22 #ifndef ISIS_MT_H
23 #define ISIS_MT_H
24
25 #define ISIS_MT_MASK 0x0fff
26 #define ISIS_MT_OL_MASK 0x8000
27 #define ISIS_MT_AT_MASK 0x4000
28
29 #define ISIS_MT_IPV4_UNICAST 0
30 #define ISIS_MT_IPV4_MGMT 1
31 #define ISIS_MT_IPV6_UNICAST 2
32 #define ISIS_MT_IPV4_MULTICAST 3
33 #define ISIS_MT_IPV6_MULTICAST 4
34 #define ISIS_MT_IPV6_MGMT 5
35 #define ISIS_MT_IPV6_DSTSRC 3996 /* FIXME: IANA */
36
37 #define ISIS_MT_NAMES \
38 "<ipv4-unicast" \
39 "|ipv4-mgmt" \
40 "|ipv6-unicast" \
41 "|ipv4-multicast" \
42 "|ipv6-multicast" \
43 "|ipv6-mgmt" \
44 "|ipv6-dstsrc" \
45 ">"
46
47 #define ISIS_MT_DESCRIPTIONS \
48 "IPv4 unicast topology\n" \
49 "IPv4 management topology\n" \
50 "IPv6 unicast topology\n" \
51 "IPv4 multicast topology\n" \
52 "IPv6 multicast topology\n" \
53 "IPv6 management topology\n" \
54 "IPv6 dst-src topology\n" \
55 ""
56
57 #define ISIS_MT_INFO_FIELDS uint16_t mtid;
58
59 struct list;
60
61 struct isis_area_mt_setting {
62 ISIS_MT_INFO_FIELDS
63 bool enabled;
64 bool overload;
65 };
66
67 struct isis_circuit_mt_setting {
68 ISIS_MT_INFO_FIELDS
69 bool enabled;
70 };
71
72 const char *isis_mtid2str(uint16_t mtid);
73 uint16_t isis_str2mtid(const char *name);
74
75 struct isis_adjacency;
76 struct isis_area;
77 struct isis_circuit;
78 struct tlvs;
79 struct te_is_neigh;
80 struct isis_tlvs;
81
82 bool isis_area_ipv6_dstsrc_enabled(struct isis_area *area);
83
84 uint16_t isis_area_ipv6_topology(struct isis_area *area);
85
86 struct isis_area_mt_setting *area_lookup_mt_setting(struct isis_area *area,
87 uint16_t mtid);
88 struct isis_area_mt_setting *area_new_mt_setting(struct isis_area *area,
89 uint16_t mtid);
90 void area_add_mt_setting(struct isis_area *area,
91 struct isis_area_mt_setting *setting);
92
93 void area_mt_init(struct isis_area *area);
94 void area_mt_finish(struct isis_area *area);
95 struct isis_area_mt_setting *area_get_mt_setting(struct isis_area *area,
96 uint16_t mtid);
97 int area_write_mt_settings(struct isis_area *area, struct vty *vty);
98 bool area_is_mt(struct isis_area *area);
99 struct isis_area_mt_setting **area_mt_settings(struct isis_area *area,
100 unsigned int *mt_count);
101
102 struct isis_circuit_mt_setting *
103 circuit_lookup_mt_setting(struct isis_circuit *circuit, uint16_t mtid);
104 struct isis_circuit_mt_setting *
105 circuit_new_mt_setting(struct isis_circuit *circuit, uint16_t mtid);
106 void circuit_add_mt_setting(struct isis_circuit *circuit,
107 struct isis_circuit_mt_setting *setting);
108 void circuit_mt_init(struct isis_circuit *circuit);
109 void circuit_mt_finish(struct isis_circuit *circuit);
110 struct isis_circuit_mt_setting *
111 circuit_get_mt_setting(struct isis_circuit *circuit, uint16_t mtid);
112 struct isis_circuit_mt_setting **
113 circuit_mt_settings(struct isis_circuit *circuit, unsigned int *mt_count);
114 bool tlvs_to_adj_mt_set(struct isis_tlvs *tlvs, bool v4_usable, bool v6_usable,
115 struct isis_adjacency *adj);
116 bool adj_has_mt(struct isis_adjacency *adj, uint16_t mtid);
117 void adj_mt_finish(struct isis_adjacency *adj);
118 void tlvs_add_mt_bcast(struct isis_tlvs *tlvs, struct isis_circuit *circuit,
119 int level, uint8_t *id, uint32_t metric,
120 uint8_t *subtlvs, uint8_t subtlv_len);
121 void tlvs_add_mt_p2p(struct isis_tlvs *tlvs, struct isis_circuit *circuit,
122 uint8_t *id, uint32_t metric, uint8_t *subtlvs,
123 uint8_t subtlv_len);
124 void mt_init(void);
125 #endif