]> git.proxmox.com Git - mirror_frr.git/blame - ripngd/ripngd.h
Merge pull request #11576 from anlancs/fix/minor-5
[mirror_frr.git] / ripngd / ripngd.h
CommitLineData
718e3744 1/*
2 * RIPng related value and structure.
3 * Copyright (C) 1998 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * 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 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#ifndef _ZEBRA_RIPNG_RIPNGD_H
23#define _ZEBRA_RIPNG_RIPNGD_H
24
6ac29a51
PJ
25#include <zclient.h>
26#include <vty.h>
03a38493 27#include <distribute.h>
b0ba762f 28#include <vector.h>
b3a7e30d 29#include <memory.h>
4a1ab8e4 30
718e3744 31/* RIPng version and port number. */
32#define RIPNG_V1 1
33#define RIPNG_PORT_DEFAULT 521
34#define RIPNG_VTY_PORT 2603
718e3744 35#define RIPNG_MAX_PACKET_SIZE 1500
36#define RIPNG_PRIORITY_DEFAULT 0
37
38/* RIPng commands. */
39#define RIPNG_REQUEST 1
40#define RIPNG_RESPONSE 2
41
42/* RIPng metric and multicast group address. */
43#define RIPNG_METRIC_INFINITY 16
44#define RIPNG_METRIC_NEXTHOP 0xff
45#define RIPNG_GROUP "ff02::9"
46
a94434b6 47/* RIPng peer timeout value. */
48#define RIPNG_PEER_TIMER_DEFAULT 180
49
718e3744 50/* Default config file name. */
51#define RIPNG_DEFAULT_CONFIG "ripngd.conf"
52
53/* RIPng route types. */
54#define RIPNG_ROUTE_RTE 0
55#define RIPNG_ROUTE_STATIC 1
a94434b6 56#define RIPNG_ROUTE_DEFAULT 2
57#define RIPNG_ROUTE_REDISTRIBUTE 3
58#define RIPNG_ROUTE_INTERFACE 4
59#define RIPNG_ROUTE_AGGREGATE 5
718e3744 60
61/* Interface send/receive configuration. */
62#define RIPNG_SEND_UNSPEC 0
63#define RIPNG_SEND_OFF 1
64#define RIPNG_RECEIVE_UNSPEC 0
65#define RIPNG_RECEIVE_OFF 1
66
718e3744 67/* RIP default route's accept/announce methods. */
68#define RIPNG_DEFAULT_ADVERTISE_UNSPEC 0
69#define RIPNG_DEFAULT_ADVERTISE_NONE 1
70#define RIPNG_DEFAULT_ADVERTISE 2
71
72#define RIPNG_DEFAULT_ACCEPT_UNSPEC 0
73#define RIPNG_DEFAULT_ACCEPT_NONE 1
74#define RIPNG_DEFAULT_ACCEPT 2
75
718e3744 76/* For max RTE calculation. */
77#ifndef IPV6_HDRLEN
78#define IPV6_HDRLEN 40
79#endif /* IPV6_HDRLEN */
80
81#ifndef IFMINMTU
82#define IFMINMTU 576
83#endif /* IFMINMTU */
84
e9ce224b
RW
85/* YANG paths */
86#define RIPNG_INSTANCE "/frr-ripngd:ripngd/instance"
87#define RIPNG_IFACE "/frr-interface:lib/interface/frr-ripngd:ripng"
88
bf8d3d6a 89DECLARE_MGROUP(RIPNGD);
b3a7e30d 90
718e3744 91/* RIPng structure. */
d62a17ae 92struct ripng {
dde7b15b
RW
93 RB_ENTRY(ripng) entry;
94
95 /* VRF this routing instance is associated with. */
96 char *vrf_name;
97
98 /* VRF backpointer (might be NULL if the VRF doesn't exist). */
99 struct vrf *vrf;
100
101 /* Status of the routing instance. */
102 bool enabled;
5c84b9a5 103
d62a17ae 104 /* RIPng socket. */
105 int sock;
106
107 /* RIPng Parameters.*/
d7c0a89a
QY
108 uint8_t command;
109 uint8_t version;
f8981ec5
RW
110 uint16_t update_time;
111 uint16_t timeout_time;
112 uint16_t garbage_time;
d62a17ae 113 int max_mtu;
ad8778c0 114 uint8_t default_metric;
d62a17ae 115
116 /* Input/output buffer of RIPng. */
117 struct stream *ibuf;
118 struct stream *obuf;
119
120 /* RIPng routing information base. */
fe08ba7e 121 struct agg_table *table;
d62a17ae 122
ecece94c
RW
123 /* Linked list of RIPng peers. */
124 struct list *peer_list;
125
b0ba762f
RW
126 /* RIPng enabled interfaces. */
127 vector enable_if;
128
29b94d58
RW
129 /* RIPng enabled networks. */
130 struct agg_table *enable_network;
131
0c32404f
RW
132 /* Vector to store passive-interface name. */
133 vector passive_interface;
134
26c6be93
RW
135 /* RIPng offset-lists. */
136 struct list *offset_list_master;
137
d62a17ae 138 /* RIPng threads. */
139 struct thread *t_read;
d62a17ae 140 struct thread *t_update;
d62a17ae 141
142 /* Triggered update hack. */
143 int trigger;
144 struct thread *t_triggered_update;
145 struct thread *t_triggered_interval;
146
147 /* RIPng ECMP flag */
1e42a07c 148 bool ecmp;
d62a17ae 149
f9120f71 150 /* RIPng redistribute configuration. */
d62a17ae 151 struct {
f9120f71
RW
152 bool enabled;
153 struct {
154 char *name;
155 struct route_map *map;
156 } route_map;
db2038c7
RW
157 bool metric_config;
158 uint8_t metric;
f9120f71 159 } redist[ZEBRA_ROUTE_MAX];
03a38493
PG
160
161 /* For distribute-list container */
162 struct distribute_ctx *distribute_ctx;
4b23867c
PG
163
164 /* For if_rmap container */
165 struct if_rmap_ctx *if_rmap_ctx;
718e3744 166};
dde7b15b
RW
167RB_HEAD(ripng_instance_head, ripng);
168RB_PROTOTYPE(ripng_instance_head, ripng, entry, ripng_instance_compare)
718e3744 169
170/* Routing table entry. */
d62a17ae 171struct rte {
172 struct in6_addr addr; /* RIPng destination prefix */
d7c0a89a
QY
173 uint16_t tag; /* RIPng tag */
174 uint8_t prefixlen; /* Length of the RIPng prefix */
175 uint8_t metric; /* Metric of the RIPng route */
d62a17ae 176 /* The nexthop is stored by the structure
177 * ripng_nexthop within ripngd.c */
718e3744 178};
179
180/* RIPNG send packet. */
d62a17ae 181struct ripng_packet {
d7c0a89a
QY
182 uint8_t command;
183 uint8_t version;
184 uint16_t zero;
d62a17ae 185 struct rte rte[1];
718e3744 186};
187
188/* Each route's information. */
d62a17ae 189struct ripng_info {
190 /* This route's type. Static, ripng or aggregate. */
d7c0a89a 191 uint8_t type;
718e3744 192
d62a17ae 193 /* Sub type for static route. */
d7c0a89a 194 uint8_t sub_type;
718e3744 195
d62a17ae 196 /* RIPng specific information */
197 struct in6_addr nexthop;
198 struct in6_addr from;
718e3744 199
d62a17ae 200 /* Which interface does this route come from. */
201 ifindex_t ifindex;
718e3744 202
d62a17ae 203 /* Metric of this route. */
d7c0a89a 204 uint8_t metric;
718e3744 205
d62a17ae 206 /* Tag field of RIPng packet.*/
d7c0a89a 207 uint16_t tag;
718e3744 208
d62a17ae 209 /* For aggregation. */
210 unsigned int suppress;
718e3744 211
d62a17ae 212/* Flags of RIPng route. */
718e3744 213#define RIPNG_RTF_FIB 1
214#define RIPNG_RTF_CHANGED 2
d7c0a89a 215 uint8_t flags;
718e3744 216
d62a17ae 217 /* Garbage collect timer. */
218 struct thread *t_timeout;
219 struct thread *t_garbage_collect;
718e3744 220
d62a17ae 221 /* Route-map features - this variables can be changed. */
222 struct in6_addr nexthop_out;
d7c0a89a
QY
223 uint8_t metric_set;
224 uint8_t metric_out;
225 uint16_t tag_out;
718e3744 226
fe08ba7e 227 struct agg_node *rp;
718e3744 228};
229
a94434b6 230typedef enum {
d62a17ae 231 RIPNG_NO_SPLIT_HORIZON = 0,
232 RIPNG_SPLIT_HORIZON,
233 RIPNG_SPLIT_HORIZON_POISONED_REVERSE
a94434b6 234} split_horizon_policy_t;
718e3744 235
236/* RIPng specific interface configuration. */
d62a17ae 237struct ripng_interface {
5c84b9a5
RW
238 /* Parent routing instance. */
239 struct ripng *ripng;
240
d62a17ae 241 /* RIPng is enabled on this interface. */
242 int enable_network;
243 int enable_interface;
244
245 /* RIPng is running on this interface. */
246 int running;
247
248 /* Split horizon flag. */
249 split_horizon_policy_t split_horizon;
d62a17ae 250
251/* For filter type slot. */
718e3744 252#define RIPNG_FILTER_IN 0
253#define RIPNG_FILTER_OUT 1
254#define RIPNG_FILTER_MAX 2
255
d62a17ae 256 /* Access-list. */
257 struct access_list *list[RIPNG_FILTER_MAX];
718e3744 258
d62a17ae 259 /* Prefix-list. */
260 struct prefix_list *prefix[RIPNG_FILTER_MAX];
718e3744 261
d62a17ae 262 /* Route-map. */
263 struct route_map *routemap[RIPNG_FILTER_MAX];
718e3744 264
d62a17ae 265 /* Default information originate. */
d7c0a89a 266 uint8_t default_originate;
718e3744 267
d62a17ae 268 /* Default information only. */
d7c0a89a 269 uint8_t default_only;
718e3744 270
d62a17ae 271 /* Wake up thread. */
272 struct thread *t_wakeup;
718e3744 273
d62a17ae 274 /* Passive interface. */
275 int passive;
718e3744 276};
277
a94434b6 278/* RIPng peer information. */
d62a17ae 279struct ripng_peer {
5c84b9a5
RW
280 /* Parent routing instance. */
281 struct ripng *ripng;
282
d62a17ae 283 /* Peer address. */
284 struct in6_addr addr;
a94434b6 285
d62a17ae 286 /* Peer RIPng tag value. */
287 int domain;
a94434b6 288
d62a17ae 289 /* Last update time. */
290 time_t uptime;
a94434b6 291
d62a17ae 292 /* Peer RIP version. */
d7c0a89a 293 uint8_t version;
a94434b6 294
d62a17ae 295 /* Statistics. */
296 int recv_badpackets;
297 int recv_badroutes;
a94434b6 298
d62a17ae 299 /* Timeout thread. */
300 struct thread *t_timeout;
a94434b6 301};
302
718e3744 303/* All RIPng events. */
d62a17ae 304enum ripng_event {
305 RIPNG_READ,
306 RIPNG_ZEBRA,
307 RIPNG_REQUEST_EVENT,
308 RIPNG_UPDATE_EVENT,
309 RIPNG_TRIGGERED_UPDATE,
718e3744 310};
311
312/* RIPng timer on/off macro. */
ffa2c898 313#define RIPNG_TIMER_ON(T,F,V) thread_add_timer (master, (F), rinfo, (V), &(T))
718e3744 314
50478845 315#define RIPNG_TIMER_OFF(T) thread_cancel(&(T))
718e3744 316
b09956ca
RW
317#define RIPNG_OFFSET_LIST_IN 0
318#define RIPNG_OFFSET_LIST_OUT 1
319#define RIPNG_OFFSET_LIST_MAX 2
320
321struct ripng_offset_list {
5c84b9a5
RW
322 /* Parent routing instance. */
323 struct ripng *ripng;
324
b09956ca
RW
325 char *ifname;
326
327 struct {
328 char *alist_name;
329 /* struct access_list *alist; */
330 uint8_t metric;
331 } direct[RIPNG_OFFSET_LIST_MAX];
332};
333
718e3744 334/* Extern variables. */
5cb6ce9c 335extern struct zebra_privs_t ripngd_privs;
718e3744 336extern struct thread_master *master;
80cf4e45 337extern struct ripng_instance_head ripng_instances;
718e3744 338
339/* Prototypes. */
d62a17ae 340extern void ripng_init(void);
5c84b9a5
RW
341extern void ripng_clean(struct ripng *ripng);
342extern void ripng_clean_network(struct ripng *ripng);
343extern void ripng_interface_clean(struct ripng *ripng);
344extern int ripng_enable_network_add(struct ripng *ripng, struct prefix *p);
345extern int ripng_enable_network_delete(struct ripng *ripng, struct prefix *p);
346extern int ripng_enable_if_add(struct ripng *ripng, const char *ifname);
347extern int ripng_enable_if_delete(struct ripng *ripng, const char *ifname);
348extern int ripng_passive_interface_set(struct ripng *ripng, const char *ifname);
349extern int ripng_passive_interface_unset(struct ripng *ripng,
350 const char *ifname);
351extern void ripng_passive_interface_clean(struct ripng *ripng);
d62a17ae 352extern void ripng_if_init(void);
353extern void ripng_route_map_init(void);
dde7b15b
RW
354extern void ripng_zebra_vrf_register(struct vrf *vrf);
355extern void ripng_zebra_vrf_deregister(struct vrf *vrf);
d62a17ae 356extern void ripng_terminate(void);
357/* zclient_init() is done by ripng_zebra.c:zebra_init() */
4140ca4d 358extern void zebra_init(struct thread_master *);
d62a17ae 359extern void ripng_zebra_stop(void);
5c84b9a5
RW
360extern void ripng_redistribute_conf_update(struct ripng *ripng, int type);
361extern void ripng_redistribute_conf_delete(struct ripng *ripng, int type);
362
363extern void ripng_peer_update(struct ripng *ripng, struct sockaddr_in6 *from,
364 uint8_t version);
365extern void ripng_peer_bad_route(struct ripng *ripng,
366 struct sockaddr_in6 *from);
367extern void ripng_peer_bad_packet(struct ripng *ripng,
368 struct sockaddr_in6 *from);
369extern void ripng_peer_display(struct vty *vty, struct ripng *ripng);
370extern struct ripng_peer *ripng_peer_lookup(struct ripng *ripng,
371 struct in6_addr *addr);
372extern struct ripng_peer *ripng_peer_lookup_next(struct ripng *ripng,
373 struct in6_addr *addr);
ecece94c 374extern int ripng_peer_list_cmp(struct ripng_peer *p1, struct ripng_peer *p2);
56bf1cb2 375extern void ripng_peer_list_del(void *arg);
d62a17ae 376
5c84b9a5
RW
377extern struct ripng_offset_list *ripng_offset_list_new(struct ripng *ripng,
378 const char *ifname);
b09956ca 379extern void ripng_offset_list_del(struct ripng_offset_list *offset);
6c4c3561 380extern void ripng_offset_list_free(struct ripng_offset_list *offset);
5c84b9a5
RW
381extern struct ripng_offset_list *ripng_offset_list_lookup(struct ripng *ripng,
382 const char *ifname);
383extern int ripng_offset_list_apply_in(struct ripng *ripng,
384 struct prefix_ipv6 *p,
385 struct interface *ifp, uint8_t *metric);
386extern int ripng_offset_list_apply_out(struct ripng *ripng,
387 struct prefix_ipv6 *p,
388 struct interface *ifp, uint8_t *metric);
26c6be93
RW
389extern int offset_list_cmp(struct ripng_offset_list *o1,
390 struct ripng_offset_list *o2);
d62a17ae 391
49e06d25 392extern int ripng_route_rte(struct ripng_info *rinfo);
d62a17ae 393extern struct ripng_info *ripng_info_new(void);
394extern void ripng_info_free(struct ripng_info *rinfo);
5c84b9a5
RW
395extern struct ripng *ripng_info_get_instance(const struct ripng_info *rinfo);
396extern void ripng_event(struct ripng *ripng, enum ripng_event event, int sock);
d62a17ae 397extern int ripng_request(struct interface *ifp);
5c84b9a5
RW
398extern void ripng_redistribute_add(struct ripng *ripng, int type, int sub_type,
399 struct prefix_ipv6 *p, ifindex_t ifindex,
400 struct in6_addr *nexthop, route_tag_t tag);
401extern void ripng_redistribute_delete(struct ripng *ripng, int type,
402 int sub_type, struct prefix_ipv6 *p,
403 ifindex_t ifindex);
404extern void ripng_redistribute_withdraw(struct ripng *ripng, int type);
405
406extern void ripng_ecmp_disable(struct ripng *ripng);
d62a17ae 407extern void ripng_distribute_update_interface(struct interface *);
408extern void ripng_if_rmap_update_interface(struct interface *);
409
5c84b9a5
RW
410extern void ripng_zebra_ipv6_add(struct ripng *ripng, struct agg_node *node);
411extern void ripng_zebra_ipv6_delete(struct ripng *ripng, struct agg_node *node);
d62a17ae 412
f9120f71
RW
413extern void ripng_redistribute_enable(struct ripng *ripng);
414extern void ripng_redistribute_disable(struct ripng *ripng);
5c84b9a5
RW
415extern int ripng_redistribute_check(struct ripng *ripng, int type);
416extern void ripng_redistribute_write(struct vty *vty, struct ripng *ripng);
d62a17ae 417
418extern int ripng_write_rte(int num, struct stream *s, struct prefix_ipv6 *p,
d7c0a89a
QY
419 struct in6_addr *nexthop, uint16_t tag,
420 uint8_t metric);
d62a17ae 421extern int ripng_send_packet(caddr_t buf, int bufsize, struct sockaddr_in6 *to,
422 struct interface *ifp);
423
424extern void ripng_packet_dump(struct ripng_packet *packet, int size,
425 const char *sndrcv);
426
121f9dee
QY
427extern int ripng_interface_up(ZAPI_CALLBACK_ARGS);
428extern int ripng_interface_down(ZAPI_CALLBACK_ARGS);
429extern int ripng_interface_add(ZAPI_CALLBACK_ARGS);
430extern int ripng_interface_delete(ZAPI_CALLBACK_ARGS);
431extern int ripng_interface_address_add(ZAPI_CALLBACK_ARGS);
432extern int ripng_interface_address_delete(ZAPI_CALLBACK_ARGS);
433extern int ripng_interface_vrf_update(ZAPI_CALLBACK_ARGS);
dde7b15b 434extern void ripng_interface_sync(struct interface *ifp);
d62a17ae 435
5c84b9a5 436extern struct ripng *ripng_lookup_by_vrf_id(vrf_id_t vrf_id);
dde7b15b
RW
437extern struct ripng *ripng_lookup_by_vrf_name(const char *vrf_name);
438extern struct ripng *ripng_create(const char *vrf_name, struct vrf *vrf,
439 int socket);
440extern int ripng_make_socket(struct vrf *vrf);
5c84b9a5
RW
441extern int ripng_network_write(struct vty *vty, struct ripng *ripng);
442
443extern struct ripng_info *ripng_ecmp_add(struct ripng *ripng,
444 struct ripng_info *rinfo);
445extern struct ripng_info *ripng_ecmp_replace(struct ripng *ripng,
446 struct ripng_info *rinfo);
447extern struct ripng_info *ripng_ecmp_delete(struct ripng *ripng,
448 struct ripng_info *rinfo);
c880b636 449
dde7b15b
RW
450extern void ripng_vrf_init(void);
451extern void ripng_vrf_terminate(void);
e9ce224b 452extern void ripng_cli_init(void);
e9ce224b 453
718e3744 454#endif /* _ZEBRA_RIPNG_RIPNGD_H */