]> git.proxmox.com Git - mirror_frr.git/blob - ripngd/ripng_zebra.c
lib: enforce vrf_name_to_id by returning default_vrf when name is null
[mirror_frr.git] / ripngd / ripng_zebra.c
1 /*
2 * RIPngd and zebra interface.
3 * Copyright (C) 1998, 1999 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 *
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
20 */
21
22 #include <zebra.h>
23
24 #include "command.h"
25 #include "prefix.h"
26 #include "agg_table.h"
27 #include "stream.h"
28 #include "memory.h"
29 #include "routemap.h"
30 #include "zclient.h"
31 #include "log.h"
32
33 #include "ripngd/ripngd.h"
34 #include "ripngd/ripng_debug.h"
35
36 /* All information about zebra. */
37 struct zclient *zclient = NULL;
38
39 /* Send ECMP routes to zebra. */
40 static void ripng_zebra_ipv6_send(struct agg_node *rp, uint8_t cmd)
41 {
42 struct list *list = (struct list *)rp->info;
43 struct zapi_route api;
44 struct zapi_nexthop *api_nh;
45 struct listnode *listnode = NULL;
46 struct ripng_info *rinfo = NULL;
47 int count = 0;
48
49 memset(&api, 0, sizeof(api));
50 api.vrf_id = VRF_DEFAULT;
51 api.type = ZEBRA_ROUTE_RIPNG;
52 api.safi = SAFI_UNICAST;
53 api.prefix = rp->p;
54
55 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
56 for (ALL_LIST_ELEMENTS_RO(list, listnode, rinfo)) {
57 if (count >= MULTIPATH_NUM)
58 break;
59 api_nh = &api.nexthops[count];
60 api_nh->vrf_id = VRF_DEFAULT;
61 api_nh->gate.ipv6 = rinfo->nexthop;
62 api_nh->ifindex = rinfo->ifindex;
63 api_nh->type = NEXTHOP_TYPE_IPV6_IFINDEX;
64 count++;
65 if (cmd == ZEBRA_ROUTE_ADD)
66 SET_FLAG(rinfo->flags, RIPNG_RTF_FIB);
67 else
68 UNSET_FLAG(rinfo->flags, RIPNG_RTF_FIB);
69 }
70
71 api.nexthop_num = count;
72
73 rinfo = listgetdata(listhead(list));
74
75 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
76 api.metric = rinfo->metric;
77
78 if (rinfo->tag) {
79 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
80 api.tag = rinfo->tag;
81 }
82
83 zclient_route_send(cmd, zclient, &api);
84
85 if (IS_RIPNG_DEBUG_ZEBRA) {
86 if (ripng->ecmp)
87 zlog_debug("%s: %s/%d nexthops %d",
88 (cmd == ZEBRA_ROUTE_ADD)
89 ? "Install into zebra"
90 : "Delete from zebra",
91 inet6_ntoa(rp->p.u.prefix6), rp->p.prefixlen,
92 count);
93 else
94 zlog_debug(
95 "%s: %s/%d",
96 (cmd == ZEBRA_ROUTE_ADD) ? "Install into zebra"
97 : "Delete from zebra",
98 inet6_ntoa(rp->p.u.prefix6), rp->p.prefixlen);
99 }
100 }
101
102 /* Add/update ECMP routes to zebra. */
103 void ripng_zebra_ipv6_add(struct agg_node *rp)
104 {
105 ripng_zebra_ipv6_send(rp, ZEBRA_ROUTE_ADD);
106 }
107
108 /* Delete ECMP routes from zebra. */
109 void ripng_zebra_ipv6_delete(struct agg_node *rp)
110 {
111 ripng_zebra_ipv6_send(rp, ZEBRA_ROUTE_DELETE);
112 }
113
114 /* Zebra route add and delete treatment. */
115 static int ripng_zebra_read_route(int command, struct zclient *zclient,
116 zebra_size_t length, vrf_id_t vrf_id)
117 {
118 struct zapi_route api;
119 struct in6_addr nexthop;
120 unsigned long ifindex;
121
122 if (zapi_route_decode(zclient->ibuf, &api) < 0)
123 return -1;
124
125 /* we completely ignore srcdest routes for now. */
126 if (CHECK_FLAG(api.message, ZAPI_MESSAGE_SRCPFX))
127 return 0;
128
129 nexthop = api.nexthops[0].gate.ipv6;
130 ifindex = api.nexthops[0].ifindex;
131
132 if (command == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
133 ripng_redistribute_add(api.type, RIPNG_ROUTE_REDISTRIBUTE,
134 (struct prefix_ipv6 *)&api.prefix,
135 ifindex, &nexthop, api.tag);
136 else
137 ripng_redistribute_delete(api.type, RIPNG_ROUTE_REDISTRIBUTE,
138 (struct prefix_ipv6 *)&api.prefix,
139 ifindex);
140
141 return 0;
142 }
143
144 void ripng_redistribute_conf_update(int type)
145 {
146 zclient_redistribute(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP6, type, 0,
147 VRF_DEFAULT);
148 }
149
150 void ripng_redistribute_conf_delete(int type)
151 {
152 if (zclient->sock > 0)
153 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE, zclient,
154 AFI_IP6, type, 0, VRF_DEFAULT);
155
156 ripng_redistribute_withdraw(type);
157 }
158
159 int ripng_redistribute_check(int type)
160 {
161 return vrf_bitmap_check(zclient->redist[AFI_IP6][type], VRF_DEFAULT);
162 }
163
164 void ripng_redistribute_clean()
165 {
166 for (int i = 0; i < ZEBRA_ROUTE_MAX; i++) {
167 if (!vrf_bitmap_check(zclient->redist[AFI_IP6][i], VRF_DEFAULT))
168 continue;
169
170 if (zclient->sock > 0)
171 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE,
172 zclient, AFI_IP6, i, 0,
173 VRF_DEFAULT);
174
175 vrf_bitmap_unset(zclient->redist[AFI_IP6][i], VRF_DEFAULT);
176
177 /* Remove the routes from RIP table. */
178 ripng_redistribute_withdraw(i);
179 }
180 }
181
182 void ripng_redistribute_write(struct vty *vty)
183 {
184 int i;
185
186 for (i = 0; i < ZEBRA_ROUTE_MAX; i++) {
187 if (i == zclient->redist_default
188 || !vrf_bitmap_check(zclient->redist[AFI_IP6][i],
189 VRF_DEFAULT))
190 continue;
191
192 vty_out(vty, " %s", zebra_route_string(i));
193 }
194 }
195
196 static void ripng_zebra_connected(struct zclient *zclient)
197 {
198 zclient_send_reg_requests(zclient, VRF_DEFAULT);
199 }
200
201 /* Initialize zebra structure and it's commands. */
202 void zebra_init(struct thread_master *master)
203 {
204 /* Allocate zebra structure. */
205 zclient = zclient_new(master, &zclient_options_default);
206 zclient_init(zclient, ZEBRA_ROUTE_RIPNG, 0, &ripngd_privs);
207
208 zclient->zebra_connected = ripng_zebra_connected;
209 zclient->interface_up = ripng_interface_up;
210 zclient->interface_down = ripng_interface_down;
211 zclient->interface_add = ripng_interface_add;
212 zclient->interface_delete = ripng_interface_delete;
213 zclient->interface_address_add = ripng_interface_address_add;
214 zclient->interface_address_delete = ripng_interface_address_delete;
215 zclient->redistribute_route_add = ripng_zebra_read_route;
216 zclient->redistribute_route_del = ripng_zebra_read_route;
217 }
218
219 void ripng_zebra_stop(void)
220 {
221 zclient_stop(zclient);
222 zclient_free(zclient);
223 }