]> git.proxmox.com Git - mirror_frr.git/blob - ospfd/ospf_api.h
release: FRR 3.0-rc1
[mirror_frr.git] / ospfd / ospf_api.h
1 /*
2 * API message handling module for OSPF daemon and client.
3 * Copyright (C) 2001, 2002 Ralph Keller
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23
24 /* This file is used both by the OSPFd and client applications to
25 define message formats used for communication. */
26
27 #ifndef _OSPF_API_H
28 #define _OSPF_API_H
29
30 #define OSPF_API_VERSION 1
31
32 /* MTYPE definition is not reflected to "memory.h". */
33 #define MTYPE_OSPF_API_MSG MTYPE_TMP
34 #define MTYPE_OSPF_API_FIFO MTYPE_TMP
35
36 /* Default API server port to accept connection request from client-side. */
37 /* This value could be overridden by "ospfapi" entry in "/etc/services". */
38 #define OSPF_API_SYNC_PORT 2607
39
40 /* -----------------------------------------------------------
41 * Generic messages
42 * -----------------------------------------------------------
43 */
44
45 /* Message header structure, fields are in network byte order and
46 aligned to four octets. */
47 struct apimsghdr {
48 u_char version; /* OSPF API protocol version */
49 u_char msgtype; /* Type of message */
50 u_int16_t msglen; /* Length of message w/o header */
51 u_int32_t msgseq; /* Sequence number */
52 };
53
54 /* Message representation with header and body */
55 struct msg {
56 struct msg *next; /* to link into fifo */
57
58 /* Message header */
59 struct apimsghdr hdr;
60
61 /* Message body */
62 struct stream *s;
63 };
64
65 /* Prototypes for generic messages. */
66 extern struct msg *msg_new(u_char msgtype, void *msgbody, u_int32_t seqnum,
67 u_int16_t msglen);
68 extern struct msg *msg_dup(struct msg *msg);
69 extern void msg_print(struct msg *msg); /* XXX debug only */
70 extern void msg_free(struct msg *msg);
71 struct msg *msg_read(int fd);
72 extern int msg_write(int fd, struct msg *msg);
73
74 /* For requests, the message sequence number is between MIN_SEQ and
75 MAX_SEQ. For notifications, the sequence number is 0. */
76
77 #define MIN_SEQ 1
78 #define MAX_SEQ 2147483647
79
80 extern void msg_set_seq(struct msg *msg, u_int32_t seqnr);
81 extern u_int32_t msg_get_seq(struct msg *msg);
82
83 /* -----------------------------------------------------------
84 * Message fifo queues
85 * -----------------------------------------------------------
86 */
87
88 /* Message queue structure. */
89 struct msg_fifo {
90 unsigned long count;
91
92 struct msg *head;
93 struct msg *tail;
94 };
95
96 /* Prototype for message fifo queues. */
97 extern struct msg_fifo *msg_fifo_new(void);
98 extern void msg_fifo_push(struct msg_fifo *, struct msg *msg);
99 extern struct msg *msg_fifo_pop(struct msg_fifo *fifo);
100 extern struct msg *msg_fifo_head(struct msg_fifo *fifo);
101 extern void msg_fifo_flush(struct msg_fifo *fifo);
102 extern void msg_fifo_free(struct msg_fifo *fifo);
103
104 /* -----------------------------------------------------------
105 * Specific message type and format definitions
106 * -----------------------------------------------------------
107 */
108
109 /* Messages to OSPF daemon. */
110 #define MSG_REGISTER_OPAQUETYPE 1
111 #define MSG_UNREGISTER_OPAQUETYPE 2
112 #define MSG_REGISTER_EVENT 3
113 #define MSG_SYNC_LSDB 4
114 #define MSG_ORIGINATE_REQUEST 5
115 #define MSG_DELETE_REQUEST 6
116
117 /* Messages from OSPF daemon. */
118 #define MSG_REPLY 10
119 #define MSG_READY_NOTIFY 11
120 #define MSG_LSA_UPDATE_NOTIFY 12
121 #define MSG_LSA_DELETE_NOTIFY 13
122 #define MSG_NEW_IF 14
123 #define MSG_DEL_IF 15
124 #define MSG_ISM_CHANGE 16
125 #define MSG_NSM_CHANGE 17
126
127 struct msg_register_opaque_type {
128 u_char lsatype;
129 u_char opaquetype;
130 u_char pad[2]; /* padding */
131 };
132
133 struct msg_unregister_opaque_type {
134 u_char lsatype;
135 u_char opaquetype;
136 u_char pad[2]; /* padding */
137 };
138
139 /* Power2 is needed to convert LSA types into bit positions,
140 * see typemask below. Type definition starts at 1, so
141 * Power2[0] is not used. */
142
143
144 #ifdef ORIGINAL_CODING
145 static const u_int16_t Power2[] = {0x0, 0x1, 0x2, 0x4, 0x8, 0x10,
146 0x20, 0x40, 0x80, 0x100, 0x200, 0x400,
147 0x800, 0x1000, 0x2000, 0x4000, 0x8000};
148 #else
149 static const u_int16_t Power2[] = {
150 0, (1 << 0), (1 << 1), (1 << 2), (1 << 3), (1 << 4),
151 (1 << 5), (1 << 6), (1 << 7), (1 << 8), (1 << 9), (1 << 10),
152 (1 << 11), (1 << 12), (1 << 13), (1 << 14), (1 << 15)};
153 #endif /* ORIGINAL_CODING */
154
155 struct lsa_filter_type {
156 u_int16_t typemask; /* bitmask for selecting LSA types (1..16) */
157 u_char origin; /* selects according to origin. */
158 /* $FRR indent$ */
159 /* clang-format off */
160 #define NON_SELF_ORIGINATED 0
161 #define SELF_ORIGINATED (OSPF_LSA_SELF)
162 #define ANY_ORIGIN 2
163
164 u_char num_areas; /* number of areas in the filter. */
165 /* areas, if any, go here. */
166 };
167
168 struct msg_register_event {
169 struct lsa_filter_type filter;
170 };
171
172 struct msg_sync_lsdb {
173 struct lsa_filter_type filter;
174 };
175
176 struct msg_originate_request {
177 /* Used for LSA type 9 otherwise ignored */
178 struct in_addr ifaddr;
179
180 /* Used for LSA type 10 otherwise ignored */
181 struct in_addr area_id;
182
183 /* LSA header and LSA-specific part */
184 struct lsa_header data;
185 };
186
187 struct msg_delete_request {
188 struct in_addr area_id; /* "0.0.0.0" for AS-external opaque LSAs */
189 u_char lsa_type;
190 u_char opaque_type;
191 u_char pad[2]; /* padding */
192 u_int32_t opaque_id;
193 };
194
195 struct msg_reply {
196 signed char errcode;
197 #define OSPF_API_OK 0
198 #define OSPF_API_NOSUCHINTERFACE (-1)
199 #define OSPF_API_NOSUCHAREA (-2)
200 #define OSPF_API_NOSUCHLSA (-3)
201 #define OSPF_API_ILLEGALLSATYPE (-4)
202 #define OSPF_API_OPAQUETYPEINUSE (-5)
203 #define OSPF_API_OPAQUETYPENOTREGISTERED (-6)
204 #define OSPF_API_NOTREADY (-7)
205 #define OSPF_API_NOMEMORY (-8)
206 #define OSPF_API_ERROR (-9)
207 #define OSPF_API_UNDEF (-10)
208 u_char pad[3]; /* padding to four byte alignment */
209 };
210
211 /* Message to tell client application that it ospf daemon is
212 * ready to accept opaque LSAs for a given interface or area. */
213
214 struct msg_ready_notify {
215 u_char lsa_type;
216 u_char opaque_type;
217 u_char pad[2]; /* padding */
218 struct in_addr addr; /* interface address or area address */
219 };
220
221 /* These messages have a dynamic length depending on the embodied LSA.
222 They are aligned to four octets. msg_lsa_change_notify is used for
223 both LSA update and LSAs delete. */
224
225 struct msg_lsa_change_notify {
226 /* Used for LSA type 9 otherwise ignored */
227 struct in_addr ifaddr;
228 /* Area ID. Not valid for AS-External and Opaque11 LSAs. */
229 struct in_addr area_id;
230 u_char is_self_originated; /* 1 if self originated. */
231 u_char pad[3];
232 struct lsa_header data;
233 };
234
235 struct msg_new_if {
236 struct in_addr ifaddr; /* interface IP address */
237 struct in_addr area_id; /* area this interface belongs to */
238 };
239
240 struct msg_del_if {
241 struct in_addr ifaddr; /* interface IP address */
242 };
243
244 struct msg_ism_change {
245 struct in_addr ifaddr; /* interface IP address */
246 struct in_addr area_id; /* area this interface belongs to */
247 u_char status; /* interface status (up/down) */
248 u_char pad[3]; /* not used */
249 };
250
251 struct msg_nsm_change {
252 struct in_addr ifaddr; /* attached interface */
253 struct in_addr nbraddr; /* Neighbor interface address */
254 struct in_addr router_id; /* Router ID of neighbor */
255 u_char status; /* NSM status */
256 u_char pad[3];
257 };
258
259 /* We make use of a union to define a structure that covers all
260 possible API messages. This allows us to find out how much memory
261 needs to be reserved for the largest API message. */
262 struct apimsg {
263 struct apimsghdr hdr;
264 union {
265 struct msg_register_opaque_type register_opaque_type;
266 struct msg_register_event register_event;
267 struct msg_sync_lsdb sync_lsdb;
268 struct msg_originate_request originate_request;
269 struct msg_delete_request delete_request;
270 struct msg_reply reply;
271 struct msg_ready_notify ready_notify;
272 struct msg_new_if new_if;
273 struct msg_del_if del_if;
274 struct msg_ism_change ism_change;
275 struct msg_nsm_change nsm_change;
276 struct msg_lsa_change_notify lsa_change_notify;
277 } u;
278 };
279
280 #define OSPF_API_MAX_MSG_SIZE (sizeof(struct apimsg) + OSPF_MAX_LSA_SIZE)
281
282 /* -----------------------------------------------------------
283 * Prototypes for specific messages
284 * -----------------------------------------------------------
285 */
286
287 /* For debugging only. */
288 extern void api_opaque_lsa_print(struct lsa_header *data);
289
290 /* Messages sent by client */
291 extern struct msg *new_msg_register_opaque_type(u_int32_t seqnum, u_char ltype,
292 u_char otype);
293 extern struct msg *new_msg_register_event(u_int32_t seqnum,
294 struct lsa_filter_type *filter);
295 extern struct msg *new_msg_sync_lsdb(u_int32_t seqnum,
296 struct lsa_filter_type *filter);
297 extern struct msg *new_msg_originate_request(u_int32_t seqnum,
298 struct in_addr ifaddr,
299 struct in_addr area_id,
300 struct lsa_header *data);
301 extern struct msg *new_msg_delete_request(u_int32_t seqnum,
302 struct in_addr area_id,
303 u_char lsa_type, u_char opaque_type,
304 u_int32_t opaque_id);
305
306 /* Messages sent by OSPF daemon */
307 extern struct msg *new_msg_reply(u_int32_t seqnum, u_char rc);
308
309 extern struct msg *new_msg_ready_notify(u_int32_t seqnr, u_char lsa_type,
310 u_char opaque_type,
311 struct in_addr addr);
312
313 extern struct msg *new_msg_new_if(u_int32_t seqnr, struct in_addr ifaddr,
314 struct in_addr area);
315
316 extern struct msg *new_msg_del_if(u_int32_t seqnr, struct in_addr ifaddr);
317
318 extern struct msg *new_msg_ism_change(u_int32_t seqnr, struct in_addr ifaddr,
319 struct in_addr area, u_char status);
320
321 extern struct msg *new_msg_nsm_change(u_int32_t seqnr, struct in_addr ifaddr,
322 struct in_addr nbraddr,
323 struct in_addr router_id, u_char status);
324
325 /* msgtype is MSG_LSA_UPDATE_NOTIFY or MSG_LSA_DELETE_NOTIFY */
326 extern struct msg *new_msg_lsa_change_notify(u_char msgtype, u_int32_t seqnum,
327 struct in_addr ifaddr,
328 struct in_addr area_id,
329 u_char is_self_originated,
330 struct lsa_header *data);
331
332 /* string printing functions */
333 extern const char *ospf_api_errname(int errcode);
334 extern const char *ospf_api_typename(int msgtype);
335
336 #endif /* _OSPF_API_H */