]> git.proxmox.com Git - mirror_frr.git/blob - ripd/ripd.h
Merge pull request #3246 from pguibert6WIND/distribute_vrf_aware
[mirror_frr.git] / ripd / ripd.h
1 /* RIP related values and structures.
2 * Copyright (C) 1997, 1998, 1999 Kunihiro Ishiguro <kunihiro@zebra.org>
3 *
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 along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 #ifndef _ZEBRA_RIP_H
22 #define _ZEBRA_RIP_H
23
24 #include "hook.h"
25 #include "nexthop.h"
26 #include "distribute.h"
27 #include "rip_memory.h"
28
29 /* RIP version number. */
30 #define RIPv1 1
31 #define RIPv2 2
32 /* N.B. stuff will break if
33 (RIPv1 != RI_RIP_VERSION_1) || (RIPv2 != RI_RIP_VERSION_2) */
34
35
36 /* RIP command list. */
37 #define RIP_REQUEST 1
38 #define RIP_RESPONSE 2
39 #define RIP_TRACEON 3 /* Obsolete */
40 #define RIP_TRACEOFF 4 /* Obsolete */
41 #define RIP_POLL 5
42 #define RIP_POLL_ENTRY 6
43 #define RIP_COMMAND_MAX 7
44
45 /* RIP metric infinity value.*/
46 #define RIP_METRIC_INFINITY 16
47
48 /* Normal RIP packet min and max size. */
49 #define RIP_PACKET_MINSIZ 4
50 #define RIP_PACKET_MAXSIZ 512
51
52 #define RIP_HEADER_SIZE 4
53 #define RIP_RTE_SIZE 20
54
55 /* Max count of routing table entry in one rip packet. */
56 #define RIP_MAX_RTE ((RIP_PACKET_MAXSIZ - RIP_HEADER_SIZE) / RIP_RTE_SIZE)
57
58 /* RIP version 2 multicast address. */
59 #ifndef INADDR_RIP_GROUP
60 #define INADDR_RIP_GROUP 0xe0000009 /* 224.0.0.9 */
61 #endif
62
63 /* RIP peer timeout value. */
64 #define RIP_PEER_TIMER_DEFAULT 180
65
66 /* RIP port number. */
67 #define RIP_PORT_DEFAULT 520
68 #define RIP_VTY_PORT 2602
69
70 /* Default configuration file name. */
71 #define RIPD_DEFAULT_CONFIG "ripd.conf"
72
73 /* RIP route types. */
74 #define RIP_ROUTE_RTE 0
75 #define RIP_ROUTE_STATIC 1
76 #define RIP_ROUTE_DEFAULT 2
77 #define RIP_ROUTE_REDISTRIBUTE 3
78 #define RIP_ROUTE_INTERFACE 4
79
80 /* RIPv2 special RTE family types */
81 #define RIP_FAMILY_AUTH 0xffff
82
83 /* RIPv2 authentication types, for RIP_FAMILY_AUTH RTE's */
84 #define RIP_NO_AUTH 0
85 #define RIP_AUTH_DATA 1
86 #define RIP_AUTH_SIMPLE_PASSWORD 2
87 #define RIP_AUTH_MD5 3
88
89 /* RIPv2 Simple authentication */
90 #define RIP_AUTH_SIMPLE_SIZE 16
91
92 /* RIPv2 MD5 authentication. */
93 #define RIP_AUTH_MD5_SIZE 16
94 #define RIP_AUTH_MD5_COMPAT_SIZE RIP_RTE_SIZE
95
96 /* YANG paths */
97 #define RIP_INSTANCE "/frr-ripd:ripd/instance"
98 #define RIP_IFACE "/frr-interface:lib/interface/frr-ripd:rip"
99
100 /* RIP structure. */
101 struct rip {
102 /* RIP socket. */
103 int sock;
104
105 /* Default version of rip instance. */
106 int version_send; /* version 1 or 2 (but not both) */
107 int version_recv; /* version 1 or 2 or both */
108
109 /* Output buffer of RIP. */
110 struct stream *obuf;
111
112 /* RIP routing information base. */
113 struct route_table *table;
114
115 /* RIP neighbor. */
116 struct route_table *neighbor;
117
118 /* RIP threads. */
119 struct thread *t_read;
120
121 /* Update and garbage timer. */
122 struct thread *t_update;
123
124 /* Triggered update hack. */
125 int trigger;
126 struct thread *t_triggered_update;
127 struct thread *t_triggered_interval;
128
129 /* RIP timer values. */
130 uint32_t update_time;
131 uint32_t timeout_time;
132 uint32_t garbage_time;
133
134 /* RIP default metric. */
135 uint8_t default_metric;
136
137 /* RIP default distance. */
138 uint8_t distance;
139 struct route_table *distance_table;
140
141 /* RIP ECMP flag */
142 bool ecmp;
143
144 /* Are we in passive-interface default mode? */
145 bool passive_default;
146
147 /* For redistribute route map. */
148 struct {
149 char *name;
150 struct route_map *map;
151 bool metric_config;
152 uint8_t metric;
153 } route_map[ZEBRA_ROUTE_MAX];
154
155 /* For distribute-list container */
156 struct distribute_ctx *distribute_ctx;
157 };
158
159 /* RIP routing table entry which belong to rip_packet. */
160 struct rte {
161 uint16_t family; /* Address family of this route. */
162 uint16_t tag; /* Route Tag which included in RIP2 packet. */
163 struct in_addr prefix; /* Prefix of rip route. */
164 struct in_addr mask; /* Netmask of rip route. */
165 struct in_addr nexthop; /* Next hop of rip route. */
166 uint32_t metric; /* Metric value of rip route. */
167 };
168
169 /* RIP packet structure. */
170 struct rip_packet {
171 unsigned char command; /* Command type of RIP packet. */
172 unsigned char version; /* RIP version which coming from peer. */
173 unsigned char pad1; /* Padding of RIP packet header. */
174 unsigned char pad2; /* Same as above. */
175 struct rte rte[1]; /* Address structure. */
176 };
177
178 /* Buffer to read RIP packet. */
179 union rip_buf {
180 struct rip_packet rip_packet;
181 char buf[RIP_PACKET_MAXSIZ];
182 };
183
184 /* RIP route information. */
185 struct rip_info {
186 /* This route's type. */
187 int type;
188
189 /* Sub type. */
190 int sub_type;
191
192 /* RIP nexthop. */
193 struct nexthop nh;
194 struct in_addr from;
195
196 /* Metric of this route. */
197 uint32_t metric;
198
199 /* External metric of this route.
200 if learnt from an externalm proto */
201 uint32_t external_metric;
202
203 /* Tag information of this route. */
204 uint16_t tag;
205
206 /* Flags of RIP route. */
207 #define RIP_RTF_FIB 1
208 #define RIP_RTF_CHANGED 2
209 uint8_t flags;
210
211 /* Garbage collect timer. */
212 struct thread *t_timeout;
213 struct thread *t_garbage_collect;
214
215 /* Route-map futures - this variables can be changed. */
216 struct in_addr nexthop_out;
217 uint8_t metric_set;
218 uint32_t metric_out;
219 uint16_t tag_out;
220 ifindex_t ifindex_out;
221
222 struct route_node *rp;
223
224 uint8_t distance;
225
226 #ifdef NEW_RIP_TABLE
227 struct rip_info *next;
228 struct rip_info *prev;
229 #endif /* NEW_RIP_TABLE */
230 };
231
232 typedef enum {
233 RIP_NO_SPLIT_HORIZON = 0,
234 RIP_SPLIT_HORIZON,
235 RIP_SPLIT_HORIZON_POISONED_REVERSE
236 } split_horizon_policy_t;
237
238 /* RIP specific interface configuration. */
239 struct rip_interface {
240 /* RIP is enabled on this interface. */
241 int enable_network;
242 int enable_interface;
243
244 /* RIP is running on this interface. */
245 int running;
246
247 /* RIP version control. */
248 int ri_send;
249 int ri_receive;
250
251 /* RIPv2 broadcast mode */
252 bool v2_broadcast;
253
254 /* RIPv2 authentication type. */
255 int auth_type;
256
257 /* RIPv2 authentication string. */
258 char *auth_str;
259
260 /* RIPv2 authentication key chain. */
261 char *key_chain;
262
263 /* value to use for md5->auth_len */
264 int md5_auth_len;
265
266 /* Split horizon flag. */
267 split_horizon_policy_t split_horizon;
268
269 /* For filter type slot. */
270 #define RIP_FILTER_IN 0
271 #define RIP_FILTER_OUT 1
272 #define RIP_FILTER_MAX 2
273
274 /* Access-list. */
275 struct access_list *list[RIP_FILTER_MAX];
276
277 /* Prefix-list. */
278 struct prefix_list *prefix[RIP_FILTER_MAX];
279
280 /* Route-map. */
281 struct route_map *routemap[RIP_FILTER_MAX];
282
283 /* Wake up thread. */
284 struct thread *t_wakeup;
285
286 /* Interface statistics. */
287 int recv_badpackets;
288 int recv_badroutes;
289 int sent_updates;
290
291 /* Passive interface. */
292 int passive;
293 };
294
295 /* RIP peer information. */
296 struct rip_peer {
297 /* Peer address. */
298 struct in_addr addr;
299
300 /* Peer RIP tag value. */
301 int domain;
302
303 /* Last update time. */
304 time_t uptime;
305
306 /* Peer RIP version. */
307 uint8_t version;
308
309 /* Statistics. */
310 int recv_badpackets;
311 int recv_badroutes;
312
313 /* Timeout thread. */
314 struct thread *t_timeout;
315 };
316
317 struct rip_distance {
318 /* Distance value for the IP source prefix. */
319 uint8_t distance;
320
321 /* Name of the access-list to be matched. */
322 char *access_list;
323 };
324
325 struct rip_md5_info {
326 uint16_t family;
327 uint16_t type;
328 uint16_t packet_len;
329 uint8_t keyid;
330 uint8_t auth_len;
331 uint32_t sequence;
332 uint32_t reserv1;
333 uint32_t reserv2;
334 };
335
336 struct rip_md5_data {
337 uint16_t family;
338 uint16_t type;
339 uint8_t digest[16];
340 };
341
342 /* RIP accepet/announce methods. */
343 #define RI_RIP_UNSPEC 0
344 #define RI_RIP_VERSION_1 1
345 #define RI_RIP_VERSION_2 2
346 #define RI_RIP_VERSION_1_AND_2 3
347 #define RI_RIP_VERSION_NONE 4
348 /* N.B. stuff will break if
349 (RIPv1 != RI_RIP_VERSION_1) || (RIPv2 != RI_RIP_VERSION_2) */
350
351 /* RIP event. */
352 enum rip_event {
353 RIP_READ,
354 RIP_UPDATE_EVENT,
355 RIP_TRIGGERED_UPDATE,
356 };
357
358 /* Macro for timer turn on. */
359 #define RIP_TIMER_ON(T,F,V) thread_add_timer (master, (F), rinfo, (V), &(T))
360
361 /* Macro for timer turn off. */
362 #define RIP_TIMER_OFF(X) THREAD_TIMER_OFF(X)
363
364 #define RIP_OFFSET_LIST_IN 0
365 #define RIP_OFFSET_LIST_OUT 1
366 #define RIP_OFFSET_LIST_MAX 2
367
368 struct rip_offset_list {
369 char *ifname;
370
371 struct {
372 char *alist_name;
373 /* struct access_list *alist; */
374 uint8_t metric;
375 } direct[RIP_OFFSET_LIST_MAX];
376 };
377
378 /* Prototypes. */
379 extern void rip_init(void);
380 extern void rip_clean(void);
381 extern void rip_clean_network(void);
382 extern void rip_interfaces_clean(void);
383 extern int rip_passive_nondefault_set(const char *ifname);
384 extern int rip_passive_nondefault_unset(const char *ifname);
385 extern void rip_passive_nondefault_clean(void);
386 extern void rip_if_init(void);
387 extern void rip_if_down_all(void);
388 extern void rip_route_map_init(void);
389 extern void rip_zclient_init(struct thread_master *);
390 extern void rip_zclient_stop(void);
391 extern int if_check_address(struct in_addr addr);
392 extern int rip_create(int socket);
393
394 extern int rip_request_send(struct sockaddr_in *, struct interface *, uint8_t,
395 struct connected *);
396 extern int rip_neighbor_lookup(struct sockaddr_in *);
397 extern int rip_neighbor_add(struct prefix_ipv4 *p);
398 extern int rip_neighbor_delete(struct prefix_ipv4 *p);
399
400 extern int rip_enable_network_add(struct prefix *p);
401 extern int rip_enable_network_delete(struct prefix *p);
402 extern int rip_enable_if_add(const char *ifname);
403 extern int rip_enable_if_delete(const char *ifname);
404
405 extern void rip_event(enum rip_event, int);
406 extern void rip_ecmp_disable(void);
407
408 extern int rip_create_socket(void);
409
410 extern int rip_redistribute_check(int);
411 extern void rip_redistribute_conf_update(int type);
412 extern void rip_redistribute_conf_delete(int type);
413 extern void rip_redistribute_add(int type, int sub_type, struct prefix_ipv4 *p,
414 struct nexthop *nh, unsigned int metric,
415 unsigned char distance, route_tag_t tag);
416 extern void rip_redistribute_delete(int, int, struct prefix_ipv4 *, ifindex_t);
417 extern void rip_redistribute_withdraw(int);
418 extern void rip_zebra_ipv4_add(struct route_node *);
419 extern void rip_zebra_ipv4_delete(struct route_node *);
420 extern void rip_interface_multicast_set(int, struct connected *);
421 extern void rip_distribute_update_interface(struct interface *);
422 extern void rip_if_rmap_update_interface(struct interface *);
423
424 extern int rip_show_network_config(struct vty *);
425 extern void rip_show_redistribute_config(struct vty *);
426
427 extern void rip_peer_init(void);
428 extern void rip_peer_update(struct sockaddr_in *, uint8_t);
429 extern void rip_peer_bad_route(struct sockaddr_in *);
430 extern void rip_peer_bad_packet(struct sockaddr_in *);
431 extern void rip_peer_display(struct vty *);
432 extern struct rip_peer *rip_peer_lookup(struct in_addr *);
433 extern struct rip_peer *rip_peer_lookup_next(struct in_addr *);
434
435 extern void rip_info_free(struct rip_info *);
436 extern struct rip_distance *rip_distance_new(void);
437 extern void rip_distance_free(struct rip_distance *rdistance);
438 extern uint8_t rip_distance_apply(struct rip_info *);
439 extern void rip_redistribute_clean(void);
440
441 extern int rip_route_rte(struct rip_info *rinfo);
442 extern struct rip_info *rip_ecmp_add(struct rip_info *);
443 extern struct rip_info *rip_ecmp_replace(struct rip_info *);
444 extern struct rip_info *rip_ecmp_delete(struct rip_info *);
445
446 extern struct rip_offset_list *rip_offset_list_new(const char *ifname);
447 extern void offset_list_del(struct rip_offset_list *offset);
448 extern struct rip_offset_list *rip_offset_list_lookup(const char *ifname);
449 extern int rip_offset_list_apply_in(struct prefix_ipv4 *, struct interface *,
450 uint32_t *);
451 extern int rip_offset_list_apply_out(struct prefix_ipv4 *, struct interface *,
452 uint32_t *);
453 extern void rip_offset_init(void);
454 extern void rip_offset_clean(void);
455
456 /* YANG notifications */
457 extern void ripd_notif_send_auth_type_failure(const char *ifname);
458 extern void ripd_notif_send_auth_failure(const char *ifname);
459
460 /* There is only one rip strucutre. */
461 extern struct rip *rip;
462
463 extern struct zebra_privs_t ripd_privs;
464
465 /* Master thread strucutre. */
466 extern struct thread_master *master;
467
468 /* RIP statistics for SNMP. */
469 extern long rip_global_route_changes;
470 extern long rip_global_queries;
471
472 DECLARE_HOOK(rip_ifaddr_add, (struct connected * ifc), (ifc))
473 DECLARE_HOOK(rip_ifaddr_del, (struct connected * ifc), (ifc))
474
475 extern struct list *peer_list;
476 extern struct route_table *rip_distance_table;
477 extern vector Vrip_passive_nondefault;
478
479 /* Northbound. */
480 extern void rip_cli_init(void);
481 extern const struct frr_yang_module_info frr_ripd_info;
482
483 #endif /* _ZEBRA_RIP_H */