blob: b24d2e62971c43ca01fd84171e03b2249be12173 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
hasso508e53e2004-05-18 18:57:06 +00002 * Copyright (C) 1999-2003 Yasuhiro Ohara
paul718e3742002-12-13 20:15:29 +00003 *
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 *
16 * You should have received a copy of the GNU General Public License
17 * along with GNU Zebra; see the file COPYING. If not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
22#ifndef OSPF6_MESSAGE_H
23#define OSPF6_MESSAGE_H
24
hasso508e53e2004-05-18 18:57:06 +000025#define OSPF6_MESSAGE_BUFSIZ 4096
26
27/* Debug option */
28extern unsigned char conf_debug_ospf6_message[];
29#define OSPF6_DEBUG_MESSAGE_SEND 0x01
30#define OSPF6_DEBUG_MESSAGE_RECV 0x02
31#define OSPF6_DEBUG_MESSAGE_ON(type, level) \
32 (conf_debug_ospf6_message[type] |= (level))
33#define OSPF6_DEBUG_MESSAGE_OFF(type, level) \
34 (conf_debug_ospf6_message[type] &= ~(level))
35#define IS_OSPF6_DEBUG_MESSAGE(t, e) \
36 (conf_debug_ospf6_message[t] & OSPF6_DEBUG_MESSAGE_ ## e)
paul718e3742002-12-13 20:15:29 +000037
38/* Type */
paul718e3742002-12-13 20:15:29 +000039#define OSPF6_MESSAGE_TYPE_UNKNOWN 0x0
40#define OSPF6_MESSAGE_TYPE_HELLO 0x1 /* Discover/maintain neighbors */
41#define OSPF6_MESSAGE_TYPE_DBDESC 0x2 /* Summarize database contents */
hasso508e53e2004-05-18 18:57:06 +000042#define OSPF6_MESSAGE_TYPE_LSREQ 0x3 /* Database download request */
paul718e3742002-12-13 20:15:29 +000043#define OSPF6_MESSAGE_TYPE_LSUPDATE 0x4 /* Database update */
44#define OSPF6_MESSAGE_TYPE_LSACK 0x5 /* Flooding acknowledgment */
hasso508e53e2004-05-18 18:57:06 +000045#define OSPF6_MESSAGE_TYPE_ALL 0x6 /* For debug option */
46
47#define OSPF6_MESSAGE_TYPE_CANONICAL(T) \
48 ((T) > OSPF6_MESSAGE_TYPE_LSACK ? OSPF6_MESSAGE_TYPE_UNKNOWN : (T))
49
paul0c083ee2004-10-10 12:54:58 +000050extern const char *ospf6_message_type_str[];
hasso508e53e2004-05-18 18:57:06 +000051#define OSPF6_MESSAGE_TYPE_NAME(T) \
52 (ospf6_message_type_str[ OSPF6_MESSAGE_TYPE_CANONICAL (T) ])
paul718e3742002-12-13 20:15:29 +000053
54/* OSPFv3 packet header */
Denis Ovsienko552563a2011-09-26 13:18:51 +040055#define OSPF6_HEADER_SIZE 16U
paul718e3742002-12-13 20:15:29 +000056struct ospf6_header
57{
58 u_char version;
59 u_char type;
hasso508e53e2004-05-18 18:57:06 +000060 u_int16_t length;
paul718e3742002-12-13 20:15:29 +000061 u_int32_t router_id;
62 u_int32_t area_id;
hasso508e53e2004-05-18 18:57:06 +000063 u_int16_t checksum;
paul718e3742002-12-13 20:15:29 +000064 u_char instance_id;
65 u_char reserved;
66};
67
hasso508e53e2004-05-18 18:57:06 +000068#define OSPF6_MESSAGE_END(H) ((caddr_t) (H) + ntohs ((H)->length))
69
paul718e3742002-12-13 20:15:29 +000070/* Hello */
Denis Ovsienko552563a2011-09-26 13:18:51 +040071#define OSPF6_HELLO_MIN_SIZE 20U
paul718e3742002-12-13 20:15:29 +000072struct ospf6_hello
73{
74 u_int32_t interface_id;
hasso508e53e2004-05-18 18:57:06 +000075 u_char priority;
paul718e3742002-12-13 20:15:29 +000076 u_char options[3];
77 u_int16_t hello_interval;
hasso508e53e2004-05-18 18:57:06 +000078 u_int16_t dead_interval;
79 u_int32_t drouter;
80 u_int32_t bdrouter;
81 /* Followed by Router-IDs */
paul718e3742002-12-13 20:15:29 +000082};
83
84/* Database Description */
Denis Ovsienko552563a2011-09-26 13:18:51 +040085#define OSPF6_DB_DESC_MIN_SIZE 12U
paul718e3742002-12-13 20:15:29 +000086struct ospf6_dbdesc
87{
hasso508e53e2004-05-18 18:57:06 +000088 u_char reserved1;
paul718e3742002-12-13 20:15:29 +000089 u_char options[3];
90 u_int16_t ifmtu;
hasso508e53e2004-05-18 18:57:06 +000091 u_char reserved2;
paul718e3742002-12-13 20:15:29 +000092 u_char bits;
93 u_int32_t seqnum;
hasso508e53e2004-05-18 18:57:06 +000094 /* Followed by LSA Headers */
paul718e3742002-12-13 20:15:29 +000095};
paul718e3742002-12-13 20:15:29 +000096
hasso508e53e2004-05-18 18:57:06 +000097#define OSPF6_DBDESC_MSBIT (0x01) /* master/slave bit */
98#define OSPF6_DBDESC_MBIT (0x02) /* more bit */
99#define OSPF6_DBDESC_IBIT (0x04) /* initial bit */
paul718e3742002-12-13 20:15:29 +0000100
101/* Link State Request */
Denis Ovsienko552563a2011-09-26 13:18:51 +0400102#define OSPF6_LS_REQ_MIN_SIZE 0U
hasso508e53e2004-05-18 18:57:06 +0000103/* It is just a sequence of entries below */
Denis Ovsienko552563a2011-09-26 13:18:51 +0400104#define OSPF6_LSREQ_LSDESC_FIX_SIZE 12U
hasso508e53e2004-05-18 18:57:06 +0000105struct ospf6_lsreq_entry
paul718e3742002-12-13 20:15:29 +0000106{
hasso508e53e2004-05-18 18:57:06 +0000107 u_int16_t reserved; /* Must Be Zero */
paul718e3742002-12-13 20:15:29 +0000108 u_int16_t type; /* LS type */
109 u_int32_t id; /* Link State ID */
110 u_int32_t adv_router; /* Advertising Router */
111};
112
113/* Link State Update */
Denis Ovsienko552563a2011-09-26 13:18:51 +0400114#define OSPF6_LS_UPD_MIN_SIZE 4U
paul718e3742002-12-13 20:15:29 +0000115struct ospf6_lsupdate
116{
hasso508e53e2004-05-18 18:57:06 +0000117 u_int32_t lsa_number;
118 /* Followed by LSAs */
paul718e3742002-12-13 20:15:29 +0000119};
120
121/* Link State Acknowledgement */
Denis Ovsienko552563a2011-09-26 13:18:51 +0400122#define OSPF6_LS_ACK_MIN_SIZE 0U
hasso508e53e2004-05-18 18:57:06 +0000123/* It is just a sequence of LSA Headers */
paul718e3742002-12-13 20:15:29 +0000124
hasso508e53e2004-05-18 18:57:06 +0000125/* Function definition */
Paul Jakma6ac29a52008-08-15 13:45:30 +0100126extern void ospf6_hello_print (struct ospf6_header *);
127extern void ospf6_dbdesc_print (struct ospf6_header *);
128extern void ospf6_lsreq_print (struct ospf6_header *);
129extern void ospf6_lsupdate_print (struct ospf6_header *);
130extern void ospf6_lsack_print (struct ospf6_header *);
paul718e3742002-12-13 20:15:29 +0000131
Paul Jakma6ac29a52008-08-15 13:45:30 +0100132extern int ospf6_iobuf_size (unsigned int size);
133extern int ospf6_receive (struct thread *thread);
paul718e3742002-12-13 20:15:29 +0000134
Paul Jakma6ac29a52008-08-15 13:45:30 +0100135extern int ospf6_hello_send (struct thread *thread);
136extern int ospf6_dbdesc_send (struct thread *thread);
137extern int ospf6_dbdesc_send_newone (struct thread *thread);
138extern int ospf6_lsreq_send (struct thread *thread);
139extern int ospf6_lsupdate_send_interface (struct thread *thread);
140extern int ospf6_lsupdate_send_neighbor (struct thread *thread);
141extern int ospf6_lsack_send_interface (struct thread *thread);
142extern int ospf6_lsack_send_neighbor (struct thread *thread);
paul718e3742002-12-13 20:15:29 +0000143
Paul Jakma6ac29a52008-08-15 13:45:30 +0100144extern int config_write_ospf6_debug_message (struct vty *);
145extern void install_element_ospf6_debug_message (void);
paul718e3742002-12-13 20:15:29 +0000146
147#endif /* OSPF6_MESSAGE_H */
148