blob: e4fd9e07eeadf8b0979b39939901a1e5688a4516 [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/*
28 * Structures found in TLV's.
29 * this header is fully complient with
hasso00995cf2004-05-19 13:43:50 +000030 * RFC 3359
jardineb5d44e2003-12-23 08:09:43 +000031 1. TLV Codepoints reserved
32 ____________________________________________________
33 Name Value IIH LSP SNP Status
34 ____________________________________________________
35
36 Area Addresses 1 y y n ISO 10589
37 IIS Neighbors 2 n y n ISO 10589
38 ES Neighbors 3 n y n ISO 10589
39 Part. DIS 4 n y n ISO 10589
40 Prefix Neighbors 5 n y n ISO 10589
41 IIS Neighbors 6 y n n ISO 10589
42 Padding 8 y n n ISO 10589
43 LSP Entries 9 n n y ISO 10589
44 Authentication 10 y y y ISO 10589
45 Opt. Checksum 12 y n y IETF-draft
46 LSPBufferSize 14 n y n ISO 10589 Rev 2 Draft
47 TE IIS Neigh. 22 n y n IETF-draft
48 DECnet Phase IV 42 y n n DEC (ancient)
hasso00995cf2004-05-19 13:43:50 +000049 Lucent Proprietary 66 n y n
jardineb5d44e2003-12-23 08:09:43 +000050 IP Int. Reach 128 n y n RFC 1195
51 Prot. Supported 129 y y n RFC 1195
52 IP Ext. Address 130 n y n RFC 1195
53 IDRPI 131 n y y RFC 1195
54 IP Intf. Address 132 y y n RFC 1195
55 Illegal 133 n n n RFC 1195 (not used)
56 Router ID 134 n y n IETF-draft
57 TE IP. Reach 135 n y n IETF-draft
58 Dynamic Name 137 n y n RFC 2763
59 Nortel Proprietary 176 n y n
60 Nortel Proprietary 177 n y n
61 Restart TLV 211 y n n IETF-draft
62 MT-ISN 222 n y n IETF-draft
63 M-Topologies 229 y y n IETF-draft
64 IPv6 Intf. Addr. 232 y y n IETF-draft
65 MT IP. Reach 235 n y n IETF-draft
66 IPv6 IP. Reach 236 n y n IETF-draft
67 MT IPv6 IP. Reach 237 n y n IETF-draft
68 P2P Adjacency State 240 y n n IETF-draft
69
70 */
71
72#define AREA_ADDRESSES 1
73#define IS_NEIGHBOURS 2
74#define ES_NEIGHBOURS 3
75#define PARTITION_DESIG_LEVEL2_IS 4
76#define PREFIX_NEIGHBOURS 5
77#define LAN_NEIGHBOURS 6
78#define PADDING 8
79#define LSP_ENTRIES 9
80#define AUTH_INFO 10
81#define CHECKSUM 12
82#define TE_IS_NEIGHBOURS 22
83#define IPV4_INT_REACHABILITY 128
84#define IPV4_EXT_REACHABILITY 130
85#define PROTOCOLS_SUPPORTED 129
86#define IDRP_INFO 131
87#define IPV4_ADDR 132
88#define TE_ROUTER_ID 134
89#define TE_IPV4_REACHABILITY 135
90#define DYNAMIC_HOSTNAME 137
hasso00995cf2004-05-19 13:43:50 +000091#define GRACEFUL_RESTART 211
jardineb5d44e2003-12-23 08:09:43 +000092#define IPV6_REACHABILITY 236
93#define IPV6_ADDR 232
94#define WAY3_HELLO 240
95
96#define IS_NEIGHBOURS_LEN (ISIS_SYS_ID_LEN + 5)
97#define LAN_NEIGHBOURS_LEN 6
hassof390d2c2004-09-10 20:48:21 +000098#define LSP_ENTRIES_LEN (10 + ISIS_SYS_ID_LEN) /* FIXME: should be entry */
jardineb5d44e2003-12-23 08:09:43 +000099#define IPV4_REACH_LEN 12
100#define IPV6_REACH_LEN 22
101
102/* struct for neighbor */
hassof390d2c2004-09-10 20:48:21 +0000103struct is_neigh
104{
105 struct metric metrics;
106 u_char neigh_id[ISIS_SYS_ID_LEN + 1];
jardineb5d44e2003-12-23 08:09:43 +0000107};
108
109/* struct for te is neighbor */
hassof390d2c2004-09-10 20:48:21 +0000110struct te_is_neigh
111{
112 u_char neigh_id[ISIS_SYS_ID_LEN + 1];
113 u_char te_metric[3];
114 u_char sub_tlvs_length;
jardineb5d44e2003-12-23 08:09:43 +0000115};
116
117/* struct for es neighbors */
hassof390d2c2004-09-10 20:48:21 +0000118struct es_neigh
119{
120 struct metric metrics;
jardineb5d44e2003-12-23 08:09:43 +0000121 /* approximate position of first, we use the
122 * length ((uchar*)metric-1) to know all */
hassof390d2c2004-09-10 20:48:21 +0000123 u_char first_es_neigh[ISIS_SYS_ID_LEN];
124
jardineb5d44e2003-12-23 08:09:43 +0000125};
126
hassof390d2c2004-09-10 20:48:21 +0000127struct partition_desig_level2_is
128{
129 struct list *isis_system_ids;
jardineb5d44e2003-12-23 08:09:43 +0000130};
131
132/* struct for lan neighbors */
hassof390d2c2004-09-10 20:48:21 +0000133struct lan_neigh
134{
135 u_char LAN_addr[6];
jardineb5d44e2003-12-23 08:09:43 +0000136};
137
138/* struct for LSP entry */
hassof390d2c2004-09-10 20:48:21 +0000139struct lsp_entry
140{
141 u_int16_t rem_lifetime;
142 u_char lsp_id[ISIS_SYS_ID_LEN + 2];
143 u_int32_t seq_num;
144 u_int16_t checksum;
145} __attribute__ ((packed));
jardineb5d44e2003-12-23 08:09:43 +0000146
147/* struct for checksum */
hassof390d2c2004-09-10 20:48:21 +0000148struct checksum
149{
jardineb5d44e2003-12-23 08:09:43 +0000150 u_int16_t checksum;
151};
152
153/* ipv4 reachability */
hassof390d2c2004-09-10 20:48:21 +0000154struct ipv4_reachability
155{
jardineb5d44e2003-12-23 08:09:43 +0000156 struct metric metrics;
157 struct in_addr prefix;
hassof390d2c2004-09-10 20:48:21 +0000158 struct in_addr mask;
jardineb5d44e2003-12-23 08:09:43 +0000159};
160
161/* te router id */
hassof390d2c2004-09-10 20:48:21 +0000162struct te_router_id
163{
164 struct in_addr id;
jardineb5d44e2003-12-23 08:09:43 +0000165};
166
167/* te ipv4 reachability */
hassof390d2c2004-09-10 20:48:21 +0000168struct te_ipv4_reachability
169{
170 u_int32_t te_metric;
171 u_char control;
172 u_char prefix_start; /* since this is variable length by nature it only */
173}; /* points to an approximate location */
jardineb5d44e2003-12-23 08:09:43 +0000174
175
176
hassof390d2c2004-09-10 20:48:21 +0000177struct idrp_info
178{
jardineb5d44e2003-12-23 08:09:43 +0000179 u_char len;
180 u_char *value;
181};
182
183#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000184struct ipv6_reachability
185{
186 u_int32_t metric;
187 u_char control_info;
188 u_char prefix_len;
189 u_char prefix[16];
jardineb5d44e2003-12-23 08:09:43 +0000190};
191#endif /* HAVE_IPV6 */
192
193/* bits in control_info */
194#define CTRL_INFO_DIRECTION 0x80
195#define DIRECTION_UP 0
196#define DIRECTION_DOWN 1
197#define CTRL_INFO_DISTRIBUTION 0x40
198#define DISTRIBUTION_INTERNAL 0
199#define DISTRIBUTION_EXTERNAL 1
200#define CTRL_INFO_SUBTLVS 0x20
201
202/*
203 * Pointer to each tlv type, filled by parse_tlvs()
204 */
hassof390d2c2004-09-10 20:48:21 +0000205struct tlvs
206{
207 struct list *area_addrs;
208 struct list *is_neighs;
209 struct list *te_is_neighs;
210 struct list *es_neighs;
211 struct list *lsp_entries;
212 struct list *prefix_neighs;
213 struct list *lan_neighs;
214 struct checksum *checksum;
215 struct nlpids *nlpids;
216 struct list *ipv4_addrs;
217 struct list *ipv4_int_reachs;
218 struct list *ipv4_ext_reachs;
219 struct list *te_ipv4_reachs;
220 struct hostname *hostname;
221 struct te_router_id *router_id;
jardineb5d44e2003-12-23 08:09:43 +0000222#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000223 struct list *ipv6_addrs;
224 struct list *ipv6_reachs;
jardineb5d44e2003-12-23 08:09:43 +0000225#endif
hassof390d2c2004-09-10 20:48:21 +0000226 struct isis_passwd auth_info;
jardineb5d44e2003-12-23 08:09:43 +0000227};
228
229/*
230 * Own definitions - used to bitmask found and expected
231 */
232
233#define TLVFLAG_AREA_ADDRS (1<<0)
234#define TLVFLAG_IS_NEIGHS (1<<1)
235#define TLVFLAG_ES_NEIGHS (1<<2)
236#define TLVFLAG_PARTITION_DESIG_LEVEL2_IS (1<<3)
237#define TLVFLAG_PREFIX_NEIGHS (1<<4)
238#define TLVFLAG_LAN_NEIGHS (1<<5)
239#define TLVFLAG_LSP_ENTRIES (1<<6)
240#define TLVFLAG_PADDING (1<<7)
241#define TLVFLAG_AUTH_INFO (1<<8)
242#define TLVFLAG_IPV4_INT_REACHABILITY (1<<9)
243#define TLVFLAG_NLPID (1<<10)
244#define TLVFLAG_IPV4_EXT_REACHABILITY (1<<11)
245#define TLVFLAG_IPV4_ADDR (1<<12)
246#define TLVFLAG_DYN_HOSTNAME (1<<13)
247#define TLVFLAG_IPV6_ADDR (1<<14)
248#define TLVFLAG_IPV6_REACHABILITY (1<<15)
249#define TLVFLAG_TE_IS_NEIGHS (1<<16)
250#define TLVFLAG_TE_IPV4_REACHABILITY (1<<17)
251#define TLVFLAG_3WAY_HELLO (1<<18)
252#define TLVFLAG_TE_ROUTER_ID (1<<19)
253#define TLVFLAG_CHECKSUM (1<<20)
hasso00995cf2004-05-19 13:43:50 +0000254#define TLVFLAG_GRACEFUL_RESTART (1<<21)
jardineb5d44e2003-12-23 08:09:43 +0000255
hassof390d2c2004-09-10 20:48:21 +0000256void init_tlvs (struct tlvs *tlvs, uint32_t expected);
257void free_tlvs (struct tlvs *tlvs);
258int parse_tlvs (char *areatag, u_char * stream, int size,
259 u_int32_t * expected, u_int32_t * found, struct tlvs *tlvs);
260void free_tlv (void *val);
jardineb5d44e2003-12-23 08:09:43 +0000261
hassof390d2c2004-09-10 20:48:21 +0000262int tlv_add_area_addrs (struct list *area_addrs, struct stream *stream);
263int tlv_add_is_neighs (struct list *is_neighs, struct stream *stream);
264int tlv_add_lan_neighs (struct list *lan_neighs, struct stream *stream);
265int tlv_add_nlpid (struct nlpids *nlpids, struct stream *stream);
266int tlv_add_checksum (struct checksum *checksum, struct stream *stream);
267int tlv_add_authinfo (char auth_type, char authlen, char *auth_value,
268 struct stream *stream);
269int tlv_add_ip_addrs (struct list *ip_addrs, struct stream *stream);
270int tlv_add_dynamic_hostname (struct hostname *hostname,
jardineb5d44e2003-12-23 08:09:43 +0000271 struct stream *stream);
hassof390d2c2004-09-10 20:48:21 +0000272int tlv_add_lsp_entries (struct list *lsps, struct stream *stream);
273int tlv_add_ipv4_reachs (struct list *ipv4_reachs, struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000274#ifdef HAVE_IPV6
hassof390d2c2004-09-10 20:48:21 +0000275int tlv_add_ipv6_addrs (struct list *ipv6_addrs, struct stream *stream);
276int tlv_add_ipv6_reachs (struct list *ipv6_reachs, struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000277#endif /* HAVE_IPV6 */
278
hassof390d2c2004-09-10 20:48:21 +0000279int tlv_add_padding (struct stream *stream);
jardineb5d44e2003-12-23 08:09:43 +0000280
281#endif /* _ZEBRA_ISIS_TLV_H */