]> git.proxmox.com Git - mirror_frr.git/blob - ripd/rip_zebra.c
Merge pull request #5793 from ton31337/fix/formatting_show_bgp_summary_failed
[mirror_frr.git] / ripd / rip_zebra.c
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 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 #include <zebra.h>
22
23 #include "command.h"
24 #include "prefix.h"
25 #include "table.h"
26 #include "stream.h"
27 #include "memory.h"
28 #include "zclient.h"
29 #include "log.h"
30 #include "vrf.h"
31 #include "ripd/ripd.h"
32 #include "ripd/rip_debug.h"
33 #include "ripd/rip_interface.h"
34
35 /* All information about zebra. */
36 struct zclient *zclient = NULL;
37
38 /* Send ECMP routes to zebra. */
39 static void rip_zebra_ipv4_send(struct rip *rip, struct route_node *rp,
40 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 rip_info *rinfo = NULL;
47 int count = 0;
48
49 memset(&api, 0, sizeof(api));
50 api.vrf_id = rip->vrf->vrf_id;
51 api.type = ZEBRA_ROUTE_RIP;
52 api.safi = SAFI_UNICAST;
53
54 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
55 for (ALL_LIST_ELEMENTS_RO(list, listnode, rinfo)) {
56 if (count >= MULTIPATH_NUM)
57 break;
58 api_nh = &api.nexthops[count];
59 api_nh->vrf_id = rip->vrf->vrf_id;
60 api_nh->gate = rinfo->nh.gate;
61 api_nh->type = NEXTHOP_TYPE_IPV4;
62 if (cmd == ZEBRA_ROUTE_ADD)
63 SET_FLAG(rinfo->flags, RIP_RTF_FIB);
64 else
65 UNSET_FLAG(rinfo->flags, RIP_RTF_FIB);
66 count++;
67 }
68
69 api.prefix = rp->p;
70 api.nexthop_num = count;
71
72 rinfo = listgetdata(listhead(list));
73
74 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
75 api.metric = rinfo->metric;
76
77 if (rinfo->distance && rinfo->distance != ZEBRA_RIP_DISTANCE_DEFAULT) {
78 SET_FLAG(api.message, ZAPI_MESSAGE_DISTANCE);
79 api.distance = rinfo->distance;
80 }
81
82 if (rinfo->tag) {
83 SET_FLAG(api.message, ZAPI_MESSAGE_TAG);
84 api.tag = rinfo->tag;
85 }
86
87 zclient_route_send(cmd, zclient, &api);
88
89 if (IS_RIP_DEBUG_ZEBRA) {
90 if (rip->ecmp)
91 zlog_debug("%s: %s/%d nexthops %d",
92 (cmd == ZEBRA_ROUTE_ADD)
93 ? "Install into zebra"
94 : "Delete from zebra",
95 inet_ntoa(rp->p.u.prefix4), rp->p.prefixlen,
96 count);
97 else
98 zlog_debug("%s: %s/%d",
99 (cmd == ZEBRA_ROUTE_ADD)
100 ? "Install into zebra"
101 : "Delete from zebra",
102 inet_ntoa(rp->p.u.prefix4), rp->p.prefixlen);
103 }
104
105 rip->counters.route_changes++;
106 }
107
108 /* Add/update ECMP routes to zebra. */
109 void rip_zebra_ipv4_add(struct rip *rip, struct route_node *rp)
110 {
111 rip_zebra_ipv4_send(rip, rp, ZEBRA_ROUTE_ADD);
112 }
113
114 /* Delete ECMP routes from zebra. */
115 void rip_zebra_ipv4_delete(struct rip *rip, struct route_node *rp)
116 {
117 rip_zebra_ipv4_send(rip, rp, ZEBRA_ROUTE_DELETE);
118 }
119
120 /* Zebra route add and delete treatment. */
121 static int rip_zebra_read_route(ZAPI_CALLBACK_ARGS)
122 {
123 struct rip *rip;
124 struct zapi_route api;
125 struct nexthop nh;
126
127 rip = rip_lookup_by_vrf_id(vrf_id);
128 if (!rip)
129 return 0;
130
131 if (zapi_route_decode(zclient->ibuf, &api) < 0)
132 return -1;
133
134 memset(&nh, 0, sizeof(nh));
135 nh.type = api.nexthops[0].type;
136 nh.gate.ipv4 = api.nexthops[0].gate.ipv4;
137 nh.ifindex = api.nexthops[0].ifindex;
138
139 /* Then fetch IPv4 prefixes. */
140 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD)
141 rip_redistribute_add(rip, api.type, RIP_ROUTE_REDISTRIBUTE,
142 (struct prefix_ipv4 *)&api.prefix, &nh,
143 api.metric, api.distance, api.tag);
144 else if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_DEL)
145 rip_redistribute_delete(rip, api.type, RIP_ROUTE_REDISTRIBUTE,
146 (struct prefix_ipv4 *)&api.prefix,
147 nh.ifindex);
148
149 return 0;
150 }
151
152 void rip_redistribute_conf_update(struct rip *rip, int type)
153 {
154 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
155 type, 0, rip->vrf->vrf_id);
156 }
157
158 void rip_redistribute_conf_delete(struct rip *rip, int type)
159 {
160 if (zclient->sock > 0)
161 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE, zclient,
162 AFI_IP, type, 0, rip->vrf->vrf_id);
163
164 /* Remove the routes from RIP table. */
165 rip_redistribute_withdraw(rip, type);
166 }
167
168 int rip_redistribute_check(struct rip *rip, int type)
169 {
170 return rip->redist[type].enabled;
171 }
172
173 void rip_redistribute_enable(struct rip *rip)
174 {
175 for (int i = 0; i < ZEBRA_ROUTE_MAX; i++) {
176 if (!rip_redistribute_check(rip, i))
177 continue;
178
179 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP,
180 i, 0, rip->vrf->vrf_id);
181 }
182 }
183
184 void rip_redistribute_disable(struct rip *rip)
185 {
186 for (int i = 0; i < ZEBRA_ROUTE_MAX; i++) {
187 if (!rip_redistribute_check(rip, i))
188 continue;
189
190 zebra_redistribute_send(ZEBRA_REDISTRIBUTE_DELETE, zclient,
191 AFI_IP, i, 0, rip->vrf->vrf_id);
192 }
193 }
194
195 void rip_show_redistribute_config(struct vty *vty, struct rip *rip)
196 {
197 for (int i = 0; i < ZEBRA_ROUTE_MAX; i++) {
198 if (i == zclient->redist_default
199 || !rip_redistribute_check(rip, i))
200 continue;
201
202 vty_out(vty, " %s", zebra_route_string(i));
203 }
204 }
205
206 void rip_zebra_vrf_register(struct vrf *vrf)
207 {
208 if (vrf->vrf_id == VRF_DEFAULT)
209 return;
210
211 if (IS_RIP_DEBUG_EVENT)
212 zlog_debug("%s: register VRF %s(%u) to zebra", __func__,
213 vrf->name, vrf->vrf_id);
214
215 zclient_send_reg_requests(zclient, vrf->vrf_id);
216 }
217
218 void rip_zebra_vrf_deregister(struct vrf *vrf)
219 {
220 if (vrf->vrf_id == VRF_DEFAULT)
221 return;
222
223 if (IS_RIP_DEBUG_EVENT)
224 zlog_debug("%s: deregister VRF %s(%u) from zebra.", __func__,
225 vrf->name, vrf->vrf_id);
226
227 zclient_send_dereg_requests(zclient, vrf->vrf_id);
228 }
229
230 static void rip_zebra_connected(struct zclient *zclient)
231 {
232 zclient_send_reg_requests(zclient, VRF_DEFAULT);
233 }
234
235 void rip_zclient_init(struct thread_master *master)
236 {
237 /* Set default value to the zebra client structure. */
238 zclient = zclient_new(master, &zclient_options_default);
239 zclient_init(zclient, ZEBRA_ROUTE_RIP, 0, &ripd_privs);
240 zclient->zebra_connected = rip_zebra_connected;
241 zclient->interface_address_add = rip_interface_address_add;
242 zclient->interface_address_delete = rip_interface_address_delete;
243 zclient->interface_vrf_update = rip_interface_vrf_update;
244 zclient->redistribute_route_add = rip_zebra_read_route;
245 zclient->redistribute_route_del = rip_zebra_read_route;
246 }
247
248 void rip_zclient_stop(void)
249 {
250 zclient_stop(zclient);
251 zclient_free(zclient);
252 }