]> git.proxmox.com Git - mirror_frr.git/blame - ripd/rip_zebra.c
Expand #defines in command strings
[mirror_frr.git] / ripd / rip_zebra.c
CommitLineData
718e3744 1/* RIPd and zebra interface.
2 * Copyright (C) 1997, 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
17 * along with GNU Zebra; see the file COPYING. If not, write to the Free
18 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 * 02111-1307, USA.
20 */
21
22#include <zebra.h>
23
24#include "command.h"
25#include "prefix.h"
bce8e868 26#include "table.h"
718e3744 27#include "stream.h"
bce8e868 28#include "memory.h"
718e3744 29#include "routemap.h"
30#include "zclient.h"
31#include "log.h"
7076bb2f 32#include "vrf.h"
718e3744 33#include "ripd/ripd.h"
34#include "ripd/rip_debug.h"
dc63bfd4 35#include "ripd/rip_interface.h"
718e3744 36
37/* All information about zebra. */
38struct zclient *zclient = NULL;
6b0655a2 39
bce8e868
LF
40/* Send ECMP routes to zebra. */
41static void
42rip_zebra_ipv4_send (struct route_node *rp, u_char cmd)
718e3744 43{
bce8e868
LF
44 static struct in_addr **nexthops = NULL;
45 static unsigned int nexthops_len = 0;
46
47 struct list *list = (struct list *)rp->info;
718e3744 48 struct zapi_ipv4 api;
bce8e868
LF
49 struct listnode *listnode = NULL;
50 struct rip_info *rinfo = NULL;
51 int count = 0;
718e3744 52
7076bb2f 53 if (vrf_bitmap_check (zclient->redist[AFI_IP][ZEBRA_ROUTE_RIP], VRF_DEFAULT))
718e3744 54 {
7076bb2f 55 api.vrf_id = VRF_DEFAULT;
718e3744 56 api.type = ZEBRA_ROUTE_RIP;
7c8ff89e 57 api.instance = 0;
718e3744 58 api.flags = 0;
59 api.message = 0;
b4e45f67 60 api.safi = SAFI_UNICAST;
bce8e868
LF
61
62 if (nexthops_len < listcount (list))
63 {
64 nexthops_len = listcount (list);
65 nexthops = XREALLOC (MTYPE_TMP, nexthops,
66 nexthops_len * sizeof (struct in_addr *));
67 }
68
718e3744 69 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
bce8e868
LF
70 for (ALL_LIST_ELEMENTS_RO (list, listnode, rinfo))
71 {
72 nexthops[count++] = &rinfo->nexthop;
73 if (cmd == ZEBRA_IPV4_ROUTE_ADD)
74 SET_FLAG (rinfo->flags, RIP_RTF_FIB);
75 else
76 UNSET_FLAG (rinfo->flags, RIP_RTF_FIB);
77 }
78
79 api.nexthop = nexthops;
80 api.nexthop_num = count;
718e3744 81 api.ifindex_num = 0;
bce8e868
LF
82
83 rinfo = listgetdata (listhead (list));
84
718e3744 85 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
bce8e868
LF
86 api.metric = rinfo->metric;
87
88 if (rinfo->distance && rinfo->distance != ZEBRA_RIP_DISTANCE_DEFAULT)
89 {
90 SET_FLAG (api.message, ZAPI_MESSAGE_DISTANCE);
91 api.distance = rinfo->distance;
92 }
718e3744 93
bce8e868
LF
94 zapi_ipv4_route (cmd, zclient,
95 (struct prefix_ipv4 *)&rp->p, &api);
718e3744 96
bce8e868 97 if (IS_RIP_DEBUG_ZEBRA)
8478ae7e
LF
98 {
99 if (rip->ecmp)
100 zlog_debug ("%s: %s/%d nexthops %d",
101 (cmd == ZEBRA_IPV4_ROUTE_ADD) ? \
102 "Install into zebra" : "Delete from zebra",
103 inet_ntoa (rp->p.u.prefix4), rp->p.prefixlen, count);
104 else
105 zlog_debug ("%s: %s/%d",
106 (cmd == ZEBRA_IPV4_ROUTE_ADD) ? \
107 "Install into zebra" : "Delete from zebra",
108 inet_ntoa (rp->p.u.prefix4), rp->p.prefixlen);
109 }
718e3744 110
111 rip_global_route_changes++;
112 }
113}
114
bce8e868 115/* Add/update ECMP routes to zebra. */
718e3744 116void
bce8e868 117rip_zebra_ipv4_add (struct route_node *rp)
718e3744 118{
bce8e868
LF
119 rip_zebra_ipv4_send (rp, ZEBRA_IPV4_ROUTE_ADD);
120}
718e3744 121
bce8e868
LF
122/* Delete ECMP routes from zebra. */
123void
124rip_zebra_ipv4_delete (struct route_node *rp)
125{
126 rip_zebra_ipv4_send (rp, ZEBRA_IPV4_ROUTE_DELETE);
718e3744 127}
128
129/* Zebra route add and delete treatment. */
dc63bfd4 130static int
7076bb2f
FL
131rip_zebra_read_ipv4 (int command, struct zclient *zclient, zebra_size_t length,
132 vrf_id_t vrf_id)
718e3744 133{
134 struct stream *s;
135 struct zapi_ipv4 api;
136 unsigned long ifindex;
137 struct in_addr nexthop;
138 struct prefix_ipv4 p;
b3556ea3
DS
139
140 if (!rip)
141 return 0;
142
718e3744 143 s = zclient->ibuf;
144 ifindex = 0;
145 nexthop.s_addr = 0;
146
147 /* Type, flags, message. */
148 api.type = stream_getc (s);
7c8ff89e 149 api.instance = stream_getw (s);
718e3744 150 api.flags = stream_getc (s);
151 api.message = stream_getc (s);
152
153 /* IPv4 prefix. */
154 memset (&p, 0, sizeof (struct prefix_ipv4));
155 p.family = AF_INET;
156 p.prefixlen = stream_getc (s);
157 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
158
159 /* Nexthop, ifindex, distance, metric. */
160 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
161 {
162 api.nexthop_num = stream_getc (s);
163 nexthop.s_addr = stream_get_ipv4 (s);
164 }
165 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
166 {
167 api.ifindex_num = stream_getc (s);
168 ifindex = stream_getl (s);
169 }
170 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
171 api.distance = stream_getc (s);
fbf5d033 172 else
173 api.distance = 255;
718e3744 174 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
175 api.metric = stream_getl (s);
fbf5d033 176 else
177 api.metric = 0;
718e3744 178
179 /* Then fetch IPv4 prefixes. */
5048fe14 180 if (command == ZEBRA_REDISTRIBUTE_IPV4_ADD)
fbf5d033 181 rip_redistribute_add (api.type, RIP_ROUTE_REDISTRIBUTE, &p, ifindex,
182 &nexthop, api.metric, api.distance);
5048fe14 183 else if (command == ZEBRA_REDISTRIBUTE_IPV4_DEL)
718e3744 184 rip_redistribute_delete (api.type, RIP_ROUTE_REDISTRIBUTE, &p, ifindex);
185
186 return 0;
187}
188
189void
dc63bfd4 190rip_zclient_reset (void)
718e3744 191{
192 zclient_reset (zclient);
193}
194
195/* RIP route-map set for redistribution */
dc63bfd4 196static void
98b718a9 197rip_routemap_set (int type, const char *name)
718e3744 198{
199 if (rip->route_map[type].name)
200 free(rip->route_map[type].name);
201
202 rip->route_map[type].name = strdup (name);
203 rip->route_map[type].map = route_map_lookup_by_name (name);
204}
205
dc63bfd4 206static void
8a676be3 207rip_redistribute_metric_set (int type, unsigned int metric)
718e3744 208{
209 rip->route_map[type].metric_config = 1;
210 rip->route_map[type].metric = metric;
211}
212
dc63bfd4 213static int
8a676be3 214rip_metric_unset (int type, unsigned int metric)
718e3744 215{
216#define DONT_CARE_METRIC_RIP 17
217 if (metric != DONT_CARE_METRIC_RIP &&
218 rip->route_map[type].metric != metric)
219 return 1;
220 rip->route_map[type].metric_config = 0;
221 rip->route_map[type].metric = 0;
222 return 0;
223}
224
225/* RIP route-map unset for redistribution */
dc63bfd4 226static int
98b718a9 227rip_routemap_unset (int type, const char *name)
718e3744 228{
229 if (! rip->route_map[type].name ||
230 (name != NULL && strcmp(rip->route_map[type].name,name)))
231 return 1;
232
233 free (rip->route_map[type].name);
234 rip->route_map[type].name = NULL;
235 rip->route_map[type].map = NULL;
236
237 return 0;
238}
6b0655a2 239
718e3744 240/* Redistribution types */
241static struct {
242 int type;
243 int str_min_len;
8a676be3 244 const char *str;
718e3744 245} redist_type[] = {
246 {ZEBRA_ROUTE_KERNEL, 1, "kernel"},
247 {ZEBRA_ROUTE_CONNECT, 1, "connected"},
248 {ZEBRA_ROUTE_STATIC, 1, "static"},
249 {ZEBRA_ROUTE_OSPF, 1, "ospf"},
9c58fbd7 250 {ZEBRA_ROUTE_BGP, 2, "bgp"},
718e3744 251 {0, 0, NULL}
252};
253
254DEFUN (router_zebra,
255 router_zebra_cmd,
256 "router zebra",
257 "Enable a routing process\n"
258 "Make connection to zebra daemon\n")
259{
260 vty->node = ZEBRA_NODE;
261 zclient->enable = 1;
262 zclient_start (zclient);
263 return CMD_SUCCESS;
264}
265
266DEFUN (no_router_zebra,
267 no_router_zebra_cmd,
268 "no router zebra",
269 NO_STR
270 "Enable a routing process\n"
271 "Make connection to zebra daemon\n")
272{
273 zclient->enable = 0;
274 zclient_stop (zclient);
275 return CMD_SUCCESS;
276}
277
2c239705 278#if 0
dc63bfd4 279static int
718e3744 280rip_redistribute_set (int type)
281{
7076bb2f 282 if (vrf_bitmap_check (zclient->redist[AFI_IP][type], VRF_DEFAULT))
718e3744 283 return CMD_SUCCESS;
284
7076bb2f 285 vrf_bitmap_set (zclient->redist[AFI_IP][type], VRF_DEFAULT);
718e3744 286
287 if (zclient->sock > 0)
8bb0831e 288 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, API_IP, type);
718e3744 289
290 return CMD_SUCCESS;
291}
2c239705 292#endif
718e3744 293
dc63bfd4 294static int
718e3744 295rip_redistribute_unset (int type)
296{
7076bb2f 297 if (! vrf_bitmap_check (zclient->redist[AFI_IP][type], VRF_DEFAULT))
718e3744 298 return CMD_SUCCESS;
299
7076bb2f 300 vrf_bitmap_unset (zclient->redist[AFI_IP][type], VRF_DEFAULT);
718e3744 301
302 if (zclient->sock > 0)
7076bb2f 303 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, AFI_IP, type, 0, VRF_DEFAULT);
718e3744 304
305 /* Remove the routes from RIP table. */
306 rip_redistribute_withdraw (type);
307
308 return CMD_SUCCESS;
309}
310
311int
312rip_redistribute_check (int type)
313{
7076bb2f 314 return vrf_bitmap_check (zclient->redist[AFI_IP][type], VRF_DEFAULT);
718e3744 315}
316
317void
dc63bfd4 318rip_redistribute_clean (void)
718e3744 319{
320 int i;
321
322 for (i = 0; redist_type[i].str; i++)
323 {
7076bb2f 324 if (vrf_bitmap_check (zclient->redist[AFI_IP][redist_type[i].type], VRF_DEFAULT))
718e3744 325 {
326 if (zclient->sock > 0)
327 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE,
7076bb2f
FL
328 zclient, AFI_IP, redist_type[i].type, 0,
329 VRF_DEFAULT);
718e3744 330
7076bb2f 331 vrf_bitmap_unset (zclient->redist[AFI_IP][redist_type[i].type], VRF_DEFAULT);
718e3744 332
333 /* Remove the routes from RIP table. */
334 rip_redistribute_withdraw (redist_type[i].type);
335 }
336 }
337}
338
339DEFUN (rip_redistribute_rip,
340 rip_redistribute_rip_cmd,
341 "redistribute rip",
342 "Redistribute information from another routing protocol\n"
343 "Routing Information Protocol (RIP)\n")
344{
7076bb2f 345 vrf_bitmap_set (zclient->redist[AFI_IP][ZEBRA_ROUTE_RIP], VRF_DEFAULT);
718e3744 346 return CMD_SUCCESS;
347}
348
349DEFUN (no_rip_redistribute_rip,
350 no_rip_redistribute_rip_cmd,
351 "no redistribute rip",
352 NO_STR
353 "Redistribute information from another routing protocol\n"
354 "Routing Information Protocol (RIP)\n")
355{
7076bb2f 356 vrf_bitmap_unset (zclient->redist[AFI_IP][ZEBRA_ROUTE_RIP], VRF_DEFAULT);
718e3744 357 return CMD_SUCCESS;
358}
359
360DEFUN (rip_redistribute_type,
361 rip_redistribute_type_cmd,
9ccf14f7 362 "redistribute <kernel|connected|static|ospf|isis|bgp|pim|table>",
9a57dc69
PJ
363 REDIST_STR
364 QUAGGA_REDIST_HELP_STR_RIPD)
718e3744 365{
366 int i;
367
368 for(i = 0; redist_type[i].str; i++)
369 {
558e4c28 370 if (strncmp (redist_type[i].str, argv[2]->arg,
718e3744 371 redist_type[i].str_min_len) == 0)
372 {
0a589359 373 zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient,
7076bb2f 374 AFI_IP, redist_type[i].type, 0, VRF_DEFAULT);
718e3744 375 return CMD_SUCCESS;
376 }
377 }
378
558e4c28 379 vty_out(vty, "Invalid type %s%s", argv[2]->arg,
718e3744 380 VTY_NEWLINE);
381
382 return CMD_WARNING;
383}
384
385DEFUN (no_rip_redistribute_type,
386 no_rip_redistribute_type_cmd,
9ccf14f7 387 "no redistribute <kernel|connected|static|ospf|isis|bgp|pim|table>",
718e3744 388 NO_STR
9a57dc69
PJ
389 REDIST_STR
390 QUAGGA_REDIST_HELP_STR_RIPD)
718e3744 391{
392 int i;
393
394 for (i = 0; redist_type[i].str; i++)
395 {
558e4c28 396 if (strncmp(redist_type[i].str, argv[3]->arg,
718e3744 397 redist_type[i].str_min_len) == 0)
398 {
399 rip_metric_unset (redist_type[i].type, DONT_CARE_METRIC_RIP);
400 rip_routemap_unset (redist_type[i].type,NULL);
401 rip_redistribute_unset (redist_type[i].type);
402 return CMD_SUCCESS;
403 }
404 }
405
558e4c28 406 vty_out(vty, "Invalid type %s%s", argv[3]->arg,
718e3744 407 VTY_NEWLINE);
408
409 return CMD_WARNING;
410}
411
412DEFUN (rip_redistribute_type_routemap,
413 rip_redistribute_type_routemap_cmd,
9ccf14f7 414 "redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> route-map WORD",
9a57dc69
PJ
415 REDIST_STR
416 QUAGGA_REDIST_HELP_STR_RIPD
718e3744 417 "Route map reference\n"
418 "Pointer to route-map entries\n")
419{
80fa0c69
DW
420 int idx_protocol = 1;
421 int idx_word = 3;
718e3744 422 int i;
423
424 for (i = 0; redist_type[i].str; i++) {
80fa0c69 425 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
718e3744 426 redist_type[i].str_min_len) == 0)
427 {
80fa0c69 428 rip_routemap_set (redist_type[i].type, argv[idx_word]->arg);
8bb0831e 429 zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
7076bb2f 430 redist_type[i].type, 0, VRF_DEFAULT);
718e3744 431 return CMD_SUCCESS;
432 }
433 }
434
80fa0c69 435 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
718e3744 436 VTY_NEWLINE);
437
438 return CMD_WARNING;
439}
440
441DEFUN (no_rip_redistribute_type_routemap,
442 no_rip_redistribute_type_routemap_cmd,
9ccf14f7 443 "no redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> route-map WORD",
718e3744 444 NO_STR
9a57dc69
PJ
445 REDIST_STR
446 QUAGGA_REDIST_HELP_STR_RIPD
718e3744 447 "Route map reference\n"
448 "Pointer to route-map entries\n")
449{
80fa0c69
DW
450 int idx_protocol = 2;
451 int idx_word = 4;
718e3744 452 int i;
453
454 for (i = 0; redist_type[i].str; i++)
455 {
80fa0c69 456 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
718e3744 457 redist_type[i].str_min_len) == 0)
458 {
80fa0c69 459 if (rip_routemap_unset (redist_type[i].type,argv[idx_word]->arg))
718e3744 460 return CMD_WARNING;
461 rip_redistribute_unset (redist_type[i].type);
462 return CMD_SUCCESS;
463 }
464 }
465
80fa0c69 466 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
718e3744 467 VTY_NEWLINE);
468
469 return CMD_WARNING;
470}
471
472DEFUN (rip_redistribute_type_metric,
473 rip_redistribute_type_metric_cmd,
9ccf14f7 474 "redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> metric (0-16)",
9a57dc69
PJ
475 REDIST_STR
476 QUAGGA_REDIST_HELP_STR_RIPD
718e3744 477 "Metric\n"
478 "Metric value\n")
479{
80fa0c69
DW
480 int idx_protocol = 1;
481 int idx_number = 3;
718e3744 482 int i;
483 int metric;
484
80fa0c69 485 metric = atoi (argv[idx_number]->arg);
718e3744 486
487 for (i = 0; redist_type[i].str; i++) {
80fa0c69 488 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
718e3744 489 redist_type[i].str_min_len) == 0)
490 {
491 rip_redistribute_metric_set (redist_type[i].type, metric);
8bb0831e 492 zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
7076bb2f 493 redist_type[i].type, 0, VRF_DEFAULT);
718e3744 494 return CMD_SUCCESS;
495 }
496 }
497
80fa0c69 498 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
718e3744 499 VTY_NEWLINE);
500
501 return CMD_WARNING;
502}
503
504DEFUN (no_rip_redistribute_type_metric,
505 no_rip_redistribute_type_metric_cmd,
9ccf14f7 506 "no redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> metric (0-16)",
718e3744 507 NO_STR
9a57dc69
PJ
508 REDIST_STR
509 QUAGGA_REDIST_HELP_STR_RIPD
718e3744 510 "Metric\n"
511 "Metric value\n")
512{
80fa0c69
DW
513 int idx_protocol = 2;
514 int idx_number = 4;
718e3744 515 int i;
516
517 for (i = 0; redist_type[i].str; i++)
518 {
80fa0c69 519 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
718e3744 520 redist_type[i].str_min_len) == 0)
521 {
80fa0c69 522 if (rip_metric_unset (redist_type[i].type, atoi(argv[idx_number]->arg)))
718e3744 523 return CMD_WARNING;
524 rip_redistribute_unset (redist_type[i].type);
525 return CMD_SUCCESS;
526 }
527 }
528
80fa0c69 529 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
718e3744 530 VTY_NEWLINE);
531
532 return CMD_WARNING;
533}
534
16705130 535DEFUN (rip_redistribute_type_metric_routemap,
536 rip_redistribute_type_metric_routemap_cmd,
9ccf14f7 537 "redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> metric (0-16) route-map WORD",
9a57dc69
PJ
538 REDIST_STR
539 QUAGGA_REDIST_HELP_STR_RIPD
16705130 540 "Metric\n"
541 "Metric value\n"
542 "Route map reference\n"
543 "Pointer to route-map entries\n")
544{
80fa0c69
DW
545 int idx_protocol = 1;
546 int idx_number = 3;
547 int idx_word = 5;
16705130 548 int i;
549 int metric;
550
80fa0c69 551 metric = atoi (argv[idx_number]->arg);
16705130 552
553 for (i = 0; redist_type[i].str; i++) {
80fa0c69 554 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
16705130 555 redist_type[i].str_min_len) == 0)
556 {
557 rip_redistribute_metric_set (redist_type[i].type, metric);
80fa0c69 558 rip_routemap_set (redist_type[i].type, argv[idx_word]->arg);
8bb0831e 559 zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
7076bb2f 560 redist_type[i].type, 0, VRF_DEFAULT);
16705130 561 return CMD_SUCCESS;
562 }
563 }
564
80fa0c69 565 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
16705130 566 VTY_NEWLINE);
567
568 return CMD_WARNING;
569}
570
571
718e3744 572DEFUN (no_rip_redistribute_type_metric_routemap,
573 no_rip_redistribute_type_metric_routemap_cmd,
9ccf14f7 574 "no redistribute <kernel|connected|static|ospf|isis|bgp|pim|table> metric (0-16) route-map WORD",
718e3744 575 NO_STR
9a57dc69
PJ
576 REDIST_STR
577 QUAGGA_REDIST_HELP_STR_RIPD
718e3744 578 "Metric\n"
579 "Metric value\n"
580 "Route map reference\n"
581 "Pointer to route-map entries\n")
582{
80fa0c69
DW
583 int idx_protocol = 2;
584 int idx_number = 4;
585 int idx_word = 6;
718e3744 586 int i;
587
588 for (i = 0; redist_type[i].str; i++)
589 {
80fa0c69 590 if (strncmp(redist_type[i].str, argv[idx_protocol]->arg,
718e3744 591 redist_type[i].str_min_len) == 0)
592 {
80fa0c69 593 if (rip_metric_unset (redist_type[i].type, atoi(argv[idx_number]->arg)))
718e3744 594 return CMD_WARNING;
80fa0c69 595 if (rip_routemap_unset (redist_type[i].type, argv[idx_word]->arg))
718e3744 596 {
80fa0c69 597 rip_redistribute_metric_set(redist_type[i].type, atoi(argv[idx_number]->arg));
718e3744 598 return CMD_WARNING;
599 }
600 rip_redistribute_unset (redist_type[i].type);
601 return CMD_SUCCESS;
602 }
603 }
604
80fa0c69 605 vty_out(vty, "Invalid type %s%s", argv[idx_protocol]->arg,
718e3744 606 VTY_NEWLINE);
607
608 return CMD_WARNING;
609}
6b0655a2 610
718e3744 611/* Default information originate. */
612
613DEFUN (rip_default_information_originate,
614 rip_default_information_originate_cmd,
615 "default-information originate",
616 "Control distribution of default route\n"
617 "Distribute a default route\n")
618{
619 struct prefix_ipv4 p;
620
621 if (! rip->default_information)
622 {
623 memset (&p, 0, sizeof (struct prefix_ipv4));
624 p.family = AF_INET;
625
626 rip->default_information = 1;
627
fbf5d033 628 rip_redistribute_add (ZEBRA_ROUTE_RIP, RIP_ROUTE_DEFAULT, &p, 0,
629 NULL, 0, 0);
718e3744 630 }
631
632 return CMD_SUCCESS;
633}
634
635DEFUN (no_rip_default_information_originate,
636 no_rip_default_information_originate_cmd,
637 "no default-information originate",
638 NO_STR
639 "Control distribution of default route\n"
640 "Distribute a default route\n")
641{
642 struct prefix_ipv4 p;
643
644 if (rip->default_information)
645 {
646 memset (&p, 0, sizeof (struct prefix_ipv4));
647 p.family = AF_INET;
648
649 rip->default_information = 0;
650
16705130 651 rip_redistribute_delete (ZEBRA_ROUTE_RIP, RIP_ROUTE_DEFAULT, &p, 0);
718e3744 652 }
653
654 return CMD_SUCCESS;
655}
6b0655a2 656
718e3744 657/* RIP configuration write function. */
dc63bfd4 658static int
718e3744 659config_write_zebra (struct vty *vty)
660{
661 if (! zclient->enable)
662 {
663 vty_out (vty, "no router zebra%s", VTY_NEWLINE);
664 return 1;
665 }
7076bb2f 666 else if (! vrf_bitmap_check (zclient->redist[AFI_IP][ZEBRA_ROUTE_RIP], VRF_DEFAULT))
718e3744 667 {
668 vty_out (vty, "router zebra%s", VTY_NEWLINE);
669 vty_out (vty, " no redistribute rip%s", VTY_NEWLINE);
670 return 1;
671 }
672 return 0;
673}
674
675int
676config_write_rip_redistribute (struct vty *vty, int config_mode)
677{
678 int i;
718e3744 679
680 for (i = 0; i < ZEBRA_ROUTE_MAX; i++)
7c8ff89e 681 if (i != zclient->redist_default &&
7076bb2f 682 vrf_bitmap_check (zclient->redist[AFI_IP][i], VRF_DEFAULT))
718e3744 683 {
684 if (config_mode)
685 {
686 if (rip->route_map[i].metric_config)
687 {
688 if (rip->route_map[i].name)
689 vty_out (vty, " redistribute %s metric %d route-map %s%s",
f52d13cb 690 zebra_route_string(i), rip->route_map[i].metric,
718e3744 691 rip->route_map[i].name,
692 VTY_NEWLINE);
693 else
694 vty_out (vty, " redistribute %s metric %d%s",
f52d13cb 695 zebra_route_string(i), rip->route_map[i].metric,
718e3744 696 VTY_NEWLINE);
697 }
698 else
699 {
700 if (rip->route_map[i].name)
701 vty_out (vty, " redistribute %s route-map %s%s",
f52d13cb 702 zebra_route_string(i), rip->route_map[i].name,
718e3744 703 VTY_NEWLINE);
704 else
f52d13cb 705 vty_out (vty, " redistribute %s%s", zebra_route_string(i),
718e3744 706 VTY_NEWLINE);
707 }
708 }
709 else
f52d13cb 710 vty_out (vty, " %s", zebra_route_string(i));
718e3744 711 }
712 return 0;
713}
714
715/* Zebra node structure. */
7fc626de 716static struct cmd_node zebra_node =
718e3744 717{
718 ZEBRA_NODE,
719 "%s(config-router)# ",
720};
721
7076bb2f
FL
722static void
723rip_zebra_connected (struct zclient *zclient)
724{
0e5223e7 725 zclient_send_reg_requests (zclient, VRF_DEFAULT);
7076bb2f
FL
726}
727
718e3744 728void
4140ca4d 729rip_zclient_init (struct thread_master *master)
718e3744 730{
731 /* Set default value to the zebra client structure. */
4140ca4d 732 zclient = zclient_new(master);
7c8ff89e 733 zclient_init (zclient, ZEBRA_ROUTE_RIP, 0);
7076bb2f 734 zclient->zebra_connected = rip_zebra_connected;
718e3744 735 zclient->interface_add = rip_interface_add;
736 zclient->interface_delete = rip_interface_delete;
737 zclient->interface_address_add = rip_interface_address_add;
738 zclient->interface_address_delete = rip_interface_address_delete;
739 zclient->ipv4_route_add = rip_zebra_read_ipv4;
740 zclient->ipv4_route_delete = rip_zebra_read_ipv4;
741 zclient->interface_up = rip_interface_up;
742 zclient->interface_down = rip_interface_down;
5048fe14 743 zclient->redistribute_route_ipv4_add = rip_zebra_read_ipv4;
744 zclient->redistribute_route_ipv4_del = rip_zebra_read_ipv4;
718e3744 745
746 /* Install zebra node. */
747 install_node (&zebra_node, config_write_zebra);
748
749 /* Install command elements to zebra node. */
750 install_element (CONFIG_NODE, &router_zebra_cmd);
751 install_element (CONFIG_NODE, &no_router_zebra_cmd);
752 install_default (ZEBRA_NODE);
753 install_element (ZEBRA_NODE, &rip_redistribute_rip_cmd);
754 install_element (ZEBRA_NODE, &no_rip_redistribute_rip_cmd);
755
756 /* Install command elements to rip node. */
757 install_element (RIP_NODE, &rip_redistribute_type_cmd);
758 install_element (RIP_NODE, &rip_redistribute_type_routemap_cmd);
759 install_element (RIP_NODE, &rip_redistribute_type_metric_cmd);
16705130 760 install_element (RIP_NODE, &rip_redistribute_type_metric_routemap_cmd);
718e3744 761 install_element (RIP_NODE, &no_rip_redistribute_type_cmd);
762 install_element (RIP_NODE, &no_rip_redistribute_type_routemap_cmd);
763 install_element (RIP_NODE, &no_rip_redistribute_type_metric_cmd);
764 install_element (RIP_NODE, &no_rip_redistribute_type_metric_routemap_cmd);
765 install_element (RIP_NODE, &rip_default_information_originate_cmd);
766 install_element (RIP_NODE, &no_rip_default_information_originate_cmd);
767}