blob: 5a39d564dc886dddd1ac3c793db69a59a7c6e941 [file] [log] [blame]
jardineb5d44e2003-12-23 08:09:43 +00001/*
2 * IS-IS Rout(e)ing protocol - isis_tlv.h
3 * IS-IS TLV related routines
4 *
5 * Copyright (C) 2001,2002 Sampo Saaristo
6 * Tampere University of Technology
7 * Institute of Communications Engineering
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public Licenseas published by the Free
11 * Software Foundation; either version 2 of the License, or (at your option)
12 * any later version.
13 *
14 * This program is distributed in the hope that it will be useful,but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22 */
23
24#ifndef _ZEBRA_ISIS_TLV_H
25#define _ZEBRA_ISIS_TLV_H
26
27/*
hasso72b9c952005-09-19 06:02:34 +000028 * The list of TLVs we (should) support.
29 * ____________________________________________________________________________
30 * Name Value IIH LSP SNP Status
31 * LAN
32 * ____________________________________________________________________________
Josh Bailey3f045a02012-03-24 08:35:20 -070033 *
hasso72b9c952005-09-19 06:02:34 +000034 * Area Addresses 1 y y n ISO10589
35 * IIS Neighbors 2 n y n ISO10589
36 * ES Neighbors 3 n y n ISO10589
37 * IIS Neighbors 6 y n n ISO10589
38 * Padding 8 y n n ISO10589
39 * LSP Entries 9 n n y ISO10589
40 * Authentication 10 y y y ISO10589, RFC3567
41 * Checksum 12 y n y RFC3358
Olivier Dugeon4f593572016-04-19 19:03:05 +020042 * Extended IS Reachability 22 n y n RFC5305
hasso72b9c952005-09-19 06:02:34 +000043 * IS Alias 24 n y n RFC3786
44 * IP Int. Reachability 128 n y n RFC1195
45 * Protocols Supported 129 y y n RFC1195
46 * IP Ext. Reachability 130 n y n RFC1195
47 * IDRPI 131 n y y RFC1195
48 * IP Interface Address 132 y y n RFC1195
Josh Bailey3f045a02012-03-24 08:35:20 -070049 * TE Router ID 134 n y n RFC5305
50 * Extended IP Reachability 135 n y n RFC5305
hasso72b9c952005-09-19 06:02:34 +000051 * Dynamic Hostname 137 n y n RFC2763
Josh Bailey3f045a02012-03-24 08:35:20 -070052 * Shared Risk Link Group 138 n y y RFC5307
Olivier Dugeon4f593572016-04-19 19:03:05 +020053 * Inter-AS Reachability 141 n y n RFC5316
hasso72b9c952005-09-19 06:02:34 +000054 * Restart TLV 211 y n n RFC3847
Josh Bailey3f045a02012-03-24 08:35:20 -070055 * MT IS Reachability 222 n y n RFC5120
56 * MT Supported 229 y y n RFC5120
57 * IPv6 Interface Address 232 y y n RFC5308
58 * MT IP Reachability 235 n y n RFC5120
59 * IPv6 IP Reachability 236 n y n RFC5308
60 * MT IPv6 IP Reachability 237 n y n RFC5120
hasso72b9c952005-09-19 06:02:34 +000061 * P2P Adjacency State 240 y n n RFC3373
62 * IIH Sequence Number 241 y n n draft-shen-isis-iih-sequence
Olivier Dugeon4f593572016-04-19 19:03:05 +020063 * Router Capability 242 n y n RFC4971
hasso72b9c952005-09-19 06:02:34 +000064 *
Josh Bailey3f045a02012-03-24 08:35:20 -070065 *
Olivier Dugeon4f593572016-04-19 19:03:05 +020066 * IS Reachability sub-TLVs we support (See isis_te.[c,h])
hasso72b9c952005-09-19 06:02:34 +000067 * ____________________________________________________________________________
68 * Name Value Status
69 * ____________________________________________________________________________
Josh Bailey3f045a02012-03-24 08:35:20 -070070 * Administartive group (color) 3 RFC5305
71 * Link Local/Remote Identifiers 4 RFC5307
72 * IPv4 interface address 6 RFC5305
73 * IPv4 neighbor address 8 RFC5305
74 * Maximum link bandwidth 9 RFC5305
75 * Reservable link bandwidth 10 RFC5305
76 * Unreserved bandwidth 11 RFC5305
77 * TE Default metric 18 RFC5305
78 * Link Protection Type 20 RFC5307
79 * Interface Switching Capability 21 RFC5307
Olivier Dugeon4f593572016-04-19 19:03:05 +020080 * Remote AS number 24 RFC5316
81 * IPv4 Remote ASBR identifier 25 RFC5316
hasso72b9c952005-09-19 06:02:34 +000082 *
Josh Bailey3f045a02012-03-24 08:35:20 -070083 *
hasso72b9c952005-09-19 06:02:34 +000084 * IP Reachability sub-TLVs we (should) support.
85 * ____________________________________________________________________________
86 * Name Value Status
87 * ____________________________________________________________________________
Josh Bailey3f045a02012-03-24 08:35:20 -070088 * 32bit administrative tag 1 RFC5130
89 * 64bit administrative tag 2 RFC5130
90 * Management prefix color 117 RFC5120
jardineb5d44e2003-12-23 08:09:43 +000091 */
92
93#define AREA_ADDRESSES 1
94#define IS_NEIGHBOURS 2
95#define ES_NEIGHBOURS 3
jardineb5d44e2003-12-23 08:09:43 +000096#define LAN_NEIGHBOURS 6
97#define PADDING 8
98#define LSP_ENTRIES 9
99#define AUTH_INFO 10
100#define CHECKSUM 12
101#define TE_IS_NEIGHBOURS 22
hasso72b9c952005-09-19 06:02:34 +0000102#define IS_ALIAS 24
jardineb5d44e2003-12-23 08:09:43 +0000103#define IPV4_INT_REACHABILITY 128
jardineb5d44e2003-12-23 08:09:43 +0000104#define PROTOCOLS_SUPPORTED 129
hasso72b9c952005-09-19 06:02:34 +0000105#define IPV4_EXT_REACHABILITY 130
jardineb5d44e2003-12-23 08:09:43 +0000106#define IDRP_INFO 131
107#define IPV4_ADDR 132
108#define TE_ROUTER_ID 134
109#define TE_IPV4_REACHABILITY 135
110#define DYNAMIC_HOSTNAME 137
hasso00995cf2004-05-19 13:43:50 +0000111#define GRACEFUL_RESTART 211
jardineb5d44e2003-12-23 08:09:43 +0000112#define IPV6_ADDR 232
hasso72b9c952005-09-19 06:02:34 +0000113#define IPV6_REACHABILITY 236
jardineb5d44e2003-12-23 08:09:43 +0000114#define WAY3_HELLO 240
Olivier Dugeon4f593572016-04-19 19:03:05 +0200115#define ROUTER_INFORMATION 242
jardineb5d44e2003-12-23 08:09:43 +0000116
Josh Bailey3f045a02012-03-24 08:35:20 -0700117#define AUTH_INFO_HDRLEN 3
118
Christian Frankef35169e2015-11-12 14:09:08 +0100119#define MAX_TLV_LEN 255
120
jardineb5d44e2003-12-23 08:09:43 +0000121#define IS_NEIGHBOURS_LEN (ISIS_SYS_ID_LEN + 5)
122#define LAN_NEIGHBOURS_LEN 6
hassof390d2c2004-09-10 20:48:21 +0000123#define LSP_ENTRIES_LEN (10 + ISIS_SYS_ID_LEN) /* FIXME: should be entry */
jardineb5d44e2003-12-23 08:09:43 +0000124#define IPV4_REACH_LEN 12
125#define IPV6_REACH_LEN 22
Josh Bailey3f045a02012-03-24 08:35:20 -0700126#define TE_IPV4_REACH_LEN 9
jardineb5d44e2003-12-23 08:09:43 +0000127
Olivier Dugeon4f593572016-04-19 19:03:05 +0200128#define MAX_SUBTLV_SIZE 256
129
jardineb5d44e2003-12-23 08:09:43 +0000130/* struct for neighbor */
hassof390d2c2004-09-10 20:48:21 +0000131struct is_neigh
132{
133 struct metric metrics;
134 u_char neigh_id[ISIS_SYS_ID_LEN + 1];
jardineb5d44e2003-12-23 08:09:43 +0000135};
136
Olivier Dugeon4f593572016-04-19 19:03:05 +0200137/* struct for te metric */
hassof390d2c2004-09-10 20:48:21 +0000138struct te_is_neigh
139{
140 u_char neigh_id[ISIS_SYS_ID_LEN + 1];
141 u_char te_metric[3];
142 u_char sub_tlvs_length;
Olivier Dugeon4f593572016-04-19 19:03:05 +0200143 /* Theorical Maximum SubTLVs is 256 because the sub_tlvs_length is 8 bits */
144 /* Practically, 118 bytes are necessary to store all supported TE parameters */
145 /* FIXME: A pointer will use less memory, but need to be free */
146 /* which is hard to fix, especially within free_tlvs() function */
147 /* and malloc() / free() as a CPU cost compared to the memory usage */
148 u_char sub_tlvs[MAX_SUBTLV_SIZE]; /* SUB TLVs storage */
jardineb5d44e2003-12-23 08:09:43 +0000149};
150
Josh Bailey3f045a02012-03-24 08:35:20 -0700151/* Decode and encode three-octet metric into host byte order integer */
152#define GET_TE_METRIC(t) \
153 (((unsigned)(t)->te_metric[0]<<16) | ((t)->te_metric[1]<<8) | \
154 (t)->te_metric[2])
155#define SET_TE_METRIC(t, m) \
156 (((t)->te_metric[0] = (m) >> 16), \
157 ((t)->te_metric[1] = (m) >> 8), \
158 ((t)->te_metric[2] = (m)))
159
jardineb5d44e2003-12-23 08:09:43 +0000160/* struct for es neighbors */
hassof390d2c2004-09-10 20:48:21 +0000161struct es_neigh
162{
163 struct metric metrics;
jardineb5d44e2003-12-23 08:09:43 +0000164 /* approximate position of first, we use the
165 * length ((uchar*)metric-1) to know all */
hassof390d2c2004-09-10 20:48:21 +0000166 u_char first_es_neigh[ISIS_SYS_ID_LEN];
167
jardineb5d44e2003-12-23 08:09:43 +0000168};
169
hassof390d2c2004-09-10 20:48:21 +0000170struct partition_desig_level2_is
171{
172 struct list *isis_system_ids;
jardineb5d44e2003-12-23 08:09:43 +0000173};
174
175/* struct for lan neighbors */
hassof390d2c2004-09-10 20:48:21 +0000176struct lan_neigh
177{
178 u_char LAN_addr[6];
jardineb5d44e2003-12-23 08:09:43 +0000179};
180
Paul Jakma238497f2007-08-07 18:49:18 +0000181#ifdef __SUNPRO_C
182#pragma pack(1)
183#endif
184
jardineb5d44e2003-12-23 08:09:43 +0000185/* struct for LSP entry */
hassof390d2c2004-09-10 20:48:21 +0000186struct lsp_entry
187{
188 u_int16_t rem_lifetime;
189 u_char lsp_id[ISIS_SYS_ID_LEN + 2];
190 u_int32_t seq_num;
191 u_int16_t checksum;
192} __attribute__ ((packed));
jardineb5d44e2003-12-23 08:09:43 +0000193
Paul Jakma238497f2007-08-07 18:49:18 +0000194#ifdef __SUNPRO_C
195#pragma pack()
196#endif
197
jardineb5d44e2003-12-23 08:09:43 +0000198/* struct for checksum */
hassof390d2c2004-09-10 20:48:21 +0000199struct checksum
200{
jardineb5d44e2003-12-23 08:09:43 +0000201 u_int16_t checksum;
202};
203
204/* ipv4 reachability */
hassof390d2c2004-09-10 20:48:21 +0000205struct ipv4_reachability
206{
jardineb5d44e2003-12-23 08:09:43 +0000207 struct metric metrics;
208 struct in_addr prefix;
hassof390d2c2004-09-10 20:48:21 +0000209 struct in_addr mask;
jardineb5d44e2003-12-23 08:09:43 +0000210};
211
212/* te router id */
hassof390d2c2004-09-10 20:48:21 +0000213struct te_router_id
214{
215 struct in_addr id;
jardineb5d44e2003-12-23 08:09:43 +0000216};
217
218/* te ipv4 reachability */
hassof390d2c2004-09-10 20:48:21 +0000219struct te_ipv4_reachability
220{
221 u_int32_t te_metric;
222 u_char control;
223 u_char prefix_start; /* since this is variable length by nature it only */
224}; /* points to an approximate location */
jardineb5d44e2003-12-23 08:09:43 +0000225
226
227
hassof390d2c2004-09-10 20:48:21 +0000228struct idrp_info
229{
jardineb5d44e2003-12-23 08:09:43 +0000230 u_char len;
231 u_char *value;
232};
233
234#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000235struct ipv6_reachability
236{
237 u_int32_t metric;
238 u_char control_info;
239 u_char prefix_len;
240 u_char prefix[16];
jardineb5d44e2003-12-23 08:09:43 +0000241};
jardineb5d44e2003-12-23 08:09:43 +0000242
243/* bits in control_info */
244#define CTRL_INFO_DIRECTION 0x80
Christian Frankeacf98652015-11-12 14:24:22 +0100245#define DIRECTION_UP 0x00
246#define DIRECTION_DOWN 0x80
247
jardineb5d44e2003-12-23 08:09:43 +0000248#define CTRL_INFO_DISTRIBUTION 0x40
Christian Frankeacf98652015-11-12 14:24:22 +0100249#define DISTRIBUTION_INTERNAL 0x00
250#define DISTRIBUTION_EXTERNAL 0x40
251
jardineb5d44e2003-12-23 08:09:43 +0000252#define CTRL_INFO_SUBTLVS 0x20
Josh Bailey3f045a02012-03-24 08:35:20 -0700253#endif /* HAVE_IPV6 */
jardineb5d44e2003-12-23 08:09:43 +0000254
255/*
256 * Pointer to each tlv type, filled by parse_tlvs()
257 */
hassof390d2c2004-09-10 20:48:21 +0000258struct tlvs
259{
Josh Bailey3f045a02012-03-24 08:35:20 -0700260 struct checksum *checksum;
261 struct hostname *hostname;
262 struct nlpids *nlpids;
263 struct te_router_id *router_id;
hassof390d2c2004-09-10 20:48:21 +0000264 struct list *area_addrs;
265 struct list *is_neighs;
266 struct list *te_is_neighs;
267 struct list *es_neighs;
268 struct list *lsp_entries;
269 struct list *prefix_neighs;
270 struct list *lan_neighs;
hassof390d2c2004-09-10 20:48:21 +0000271 struct list *ipv4_addrs;
272 struct list *ipv4_int_reachs;
273 struct list *ipv4_ext_reachs;
274 struct list *te_ipv4_reachs;
jardineb5d44e2003-12-23 08:09:43 +0000275#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000276 struct list *ipv6_addrs;
277 struct list *ipv6_reachs;
jardineb5d44e2003-12-23 08:09:43 +0000278#endif
hassof390d2c2004-09-10 20:48:21 +0000279 struct isis_passwd auth_info;
jardineb5d44e2003-12-23 08:09:43 +0000280};
281
282/*
283 * Own definitions - used to bitmask found and expected
284 */
285
286#define TLVFLAG_AREA_ADDRS (1<<0)
287#define TLVFLAG_IS_NEIGHS (1<<1)
288#define TLVFLAG_ES_NEIGHS (1<<2)
289#define TLVFLAG_PARTITION_DESIG_LEVEL2_IS (1<<3)
290#define TLVFLAG_PREFIX_NEIGHS (1<<4)
291#define TLVFLAG_LAN_NEIGHS (1<<5)
292#define TLVFLAG_LSP_ENTRIES (1<<6)
293#define TLVFLAG_PADDING (1<<7)
294#define TLVFLAG_AUTH_INFO (1<<8)
295#define TLVFLAG_IPV4_INT_REACHABILITY (1<<9)
296#define TLVFLAG_NLPID (1<<10)
297#define TLVFLAG_IPV4_EXT_REACHABILITY (1<<11)
298#define TLVFLAG_IPV4_ADDR (1<<12)
299#define TLVFLAG_DYN_HOSTNAME (1<<13)
300#define TLVFLAG_IPV6_ADDR (1<<14)
301#define TLVFLAG_IPV6_REACHABILITY (1<<15)
302#define TLVFLAG_TE_IS_NEIGHS (1<<16)
303#define TLVFLAG_TE_IPV4_REACHABILITY (1<<17)
304#define TLVFLAG_3WAY_HELLO (1<<18)
305#define TLVFLAG_TE_ROUTER_ID (1<<19)
306#define TLVFLAG_CHECKSUM (1<<20)
hasso00995cf2004-05-19 13:43:50 +0000307#define TLVFLAG_GRACEFUL_RESTART (1<<21)
jardineb5d44e2003-12-23 08:09:43 +0000308
hassof390d2c2004-09-10 20:48:21 +0000309void init_tlvs (struct tlvs *tlvs, uint32_t expected);
310void free_tlvs (struct tlvs *tlvs);
311int parse_tlvs (char *areatag, u_char * stream, int size,
Josh Bailey3f045a02012-03-24 08:35:20 -0700312 u_int32_t * expected, u_int32_t * found, struct tlvs *tlvs,
313 u_int32_t * auth_tlv_offset);
314int add_tlv (u_char, u_char, u_char *, struct stream *);
hassof390d2c2004-09-10 20:48:21 +0000315void free_tlv (void *val);
jardineb5d44e2003-12-23 08:09:43 +0000316
hassof390d2c2004-09-10 20:48:21 +0000317int tlv_add_area_addrs (struct list *area_addrs, struct stream *stream);
318int tlv_add_is_neighs (struct list *is_neighs, struct stream *stream);
hassoea3be4c2005-09-26 17:11:12 +0000319int tlv_add_te_is_neighs (struct list *te_is_neighs, struct stream *stream);
hassof390d2c2004-09-10 20:48:21 +0000320int tlv_add_lan_neighs (struct list *lan_neighs, struct stream *stream);
321int tlv_add_nlpid (struct nlpids *nlpids, struct stream *stream);
322int tlv_add_checksum (struct checksum *checksum, struct stream *stream);
Josh Bailey3f045a02012-03-24 08:35:20 -0700323int tlv_add_authinfo (u_char auth_type, u_char authlen, u_char *auth_value,
hassof390d2c2004-09-10 20:48:21 +0000324 struct stream *stream);
325int tlv_add_ip_addrs (struct list *ip_addrs, struct stream *stream);
hasso81ad8f62005-09-26 17:58:24 +0000326int tlv_add_in_addr (struct in_addr *, struct stream *stream, u_char tag);
hassof390d2c2004-09-10 20:48:21 +0000327int tlv_add_dynamic_hostname (struct hostname *hostname,
jardineb5d44e2003-12-23 08:09:43 +0000328 struct stream *stream);
hassof390d2c2004-09-10 20:48:21 +0000329int tlv_add_lsp_entries (struct list *lsps, struct stream *stream);
Christian Frankeacf98652015-11-12 14:24:22 +0100330int tlv_add_ipv4_int_reachs (struct list *ipv4_reachs, struct stream *stream);
331int tlv_add_ipv4_ext_reachs (struct list *ipv4_reachs, struct stream *stream);
hassoea3be4c2005-09-26 17:11:12 +0000332int tlv_add_te_ipv4_reachs (struct list *te_ipv4_reachs, struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000333#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000334int tlv_add_ipv6_addrs (struct list *ipv6_addrs, struct stream *stream);
335int tlv_add_ipv6_reachs (struct list *ipv6_reachs, struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000336#endif /* HAVE_IPV6 */
337
hassof390d2c2004-09-10 20:48:21 +0000338int tlv_add_padding (struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000339
340#endif /* _ZEBRA_ISIS_TLV_H */