]> git.proxmox.com Git - mirror_frr.git/blob - eigrpd/eigrp_zebra.c
eigrpd: Convert to using our builtin printf stuff
[mirror_frr.git] / eigrpd / eigrp_zebra.c
1 /*
2 * Zebra connect library for EIGRP.
3 * Copyright (C) 2013-2014
4 * Authors:
5 * Donnie Savage
6 * Jan Janovic
7 * Matej Perina
8 * Peter Orsag
9 * Peter Paluch
10 *
11 * This file is part of GNU Zebra.
12 *
13 * GNU Zebra is free software; you can redistribute it and/or modify it
14 * under the terms of the GNU General Public License as published by the
15 * Free Software Foundation; either version 2, or (at your option) any
16 * later version.
17 *
18 * GNU Zebra is distributed in the hope that it will be useful, but
19 * WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 * General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; see the file COPYING; if not, write to the Free Software
25 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26 */
27
28 #include <zebra.h>
29
30 #include "thread.h"
31 #include "command.h"
32 #include "network.h"
33 #include "prefix.h"
34 #include "routemap.h"
35 #include "table.h"
36 #include "stream.h"
37 #include "memory.h"
38 #include "zclient.h"
39 #include "filter.h"
40 #include "plist.h"
41 #include "log.h"
42 #include "nexthop.h"
43
44 #include "eigrpd/eigrp_types.h"
45 #include "eigrpd/eigrp_structs.h"
46 #include "eigrpd/eigrpd.h"
47 #include "eigrpd/eigrp_interface.h"
48 #include "eigrpd/eigrp_neighbor.h"
49 #include "eigrpd/eigrp_packet.h"
50 #include "eigrpd/eigrp_zebra.h"
51 #include "eigrpd/eigrp_vty.h"
52 #include "eigrpd/eigrp_dump.h"
53 #include "eigrpd/eigrp_network.h"
54 #include "eigrpd/eigrp_topology.h"
55 #include "eigrpd/eigrp_fsm.h"
56 #include "eigrpd/eigrp_metric.h"
57
58 static int eigrp_interface_address_add(ZAPI_CALLBACK_ARGS);
59 static int eigrp_interface_address_delete(ZAPI_CALLBACK_ARGS);
60
61 static int eigrp_zebra_read_route(ZAPI_CALLBACK_ARGS);
62
63 /* Zebra structure to hold current status. */
64 struct zclient *zclient = NULL;
65
66 /* For registering threads. */
67 extern struct thread_master *master;
68 struct in_addr router_id_zebra;
69
70 /* Router-id update message from zebra. */
71 static int eigrp_router_id_update_zebra(ZAPI_CALLBACK_ARGS)
72 {
73 struct eigrp *eigrp;
74 struct prefix router_id;
75 zebra_router_id_update_read(zclient->ibuf, &router_id);
76
77 router_id_zebra = router_id.u.prefix4;
78
79 eigrp = eigrp_lookup(vrf_id);
80
81 if (eigrp != NULL)
82 eigrp_router_id_update(eigrp);
83
84 return 0;
85 }
86
87 static int eigrp_zebra_route_notify_owner(ZAPI_CALLBACK_ARGS)
88 {
89 struct prefix p;
90 enum zapi_route_notify_owner note;
91 uint32_t table;
92
93 if (!zapi_route_notify_decode(zclient->ibuf, &p, &table, &note, NULL,
94 NULL))
95 return -1;
96
97 return 0;
98 }
99
100 static void eigrp_zebra_connected(struct zclient *zclient)
101 {
102 zclient_send_reg_requests(zclient, VRF_DEFAULT);
103 }
104
105 void eigrp_zebra_init(void)
106 {
107 struct zclient_options opt = {.receive_notify = false};
108
109 zclient = zclient_new(master, &opt);
110
111 zclient_init(zclient, ZEBRA_ROUTE_EIGRP, 0, &eigrpd_privs);
112 zclient->zebra_connected = eigrp_zebra_connected;
113 zclient->router_id_update = eigrp_router_id_update_zebra;
114 zclient->interface_address_add = eigrp_interface_address_add;
115 zclient->interface_address_delete = eigrp_interface_address_delete;
116 zclient->redistribute_route_add = eigrp_zebra_read_route;
117 zclient->redistribute_route_del = eigrp_zebra_read_route;
118 zclient->route_notify_owner = eigrp_zebra_route_notify_owner;
119 }
120
121
122 /* Zebra route add and delete treatment. */
123 static int eigrp_zebra_read_route(ZAPI_CALLBACK_ARGS)
124 {
125 struct zapi_route api;
126 struct eigrp *eigrp;
127
128 if (zapi_route_decode(zclient->ibuf, &api) < 0)
129 return -1;
130
131 if (IPV4_NET127(ntohl(api.prefix.u.prefix4.s_addr)))
132 return 0;
133
134 eigrp = eigrp_lookup(vrf_id);
135 if (eigrp == NULL)
136 return 0;
137
138 if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_ADD) {
139
140 } else /* if (cmd == ZEBRA_REDISTRIBUTE_ROUTE_DEL) */
141 {
142 }
143
144 return 0;
145 }
146
147 static int eigrp_interface_address_add(ZAPI_CALLBACK_ARGS)
148 {
149 struct connected *c;
150
151 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
152
153 if (c == NULL)
154 return 0;
155
156 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
157 zlog_debug("Zebra: interface %s address add %pFX", c->ifp->name,
158 c->address);
159
160 eigrp_if_update(c->ifp);
161
162 return 0;
163 }
164
165 static int eigrp_interface_address_delete(ZAPI_CALLBACK_ARGS)
166 {
167 struct connected *c;
168 struct interface *ifp;
169 struct eigrp_interface *ei;
170
171 c = zebra_interface_address_read(cmd, zclient->ibuf, vrf_id);
172
173 if (c == NULL)
174 return 0;
175
176 if (IS_DEBUG_EIGRP(zebra, ZEBRA_INTERFACE))
177 zlog_debug("Zebra: interface %s address delete %pFX",
178 c->ifp->name, c->address);
179
180 ifp = c->ifp;
181 ei = ifp->info;
182 if (!ei)
183 return 0;
184
185 /* Call interface hook functions to clean up */
186 if (prefix_cmp(&ei->address, c->address) == 0)
187 eigrp_if_free(ei, INTERFACE_DOWN_BY_ZEBRA);
188
189 connected_free(&c);
190
191 return 0;
192 }
193
194 void eigrp_zebra_route_add(struct eigrp *eigrp, struct prefix *p,
195 struct list *successors, uint32_t distance)
196 {
197 struct zapi_route api;
198 struct zapi_nexthop *api_nh;
199 struct eigrp_route_descriptor *te;
200 struct listnode *node;
201 int count = 0;
202
203 if (!zclient->redist[AFI_IP][ZEBRA_ROUTE_EIGRP])
204 return;
205
206 memset(&api, 0, sizeof(api));
207 api.vrf_id = eigrp->vrf_id;
208 api.type = ZEBRA_ROUTE_EIGRP;
209 api.safi = SAFI_UNICAST;
210 api.metric = distance;
211 memcpy(&api.prefix, p, sizeof(*p));
212
213 SET_FLAG(api.message, ZAPI_MESSAGE_NEXTHOP);
214 SET_FLAG(api.message, ZAPI_MESSAGE_METRIC);
215
216 /* Nexthop, ifindex, distance and metric information. */
217 for (ALL_LIST_ELEMENTS_RO(successors, node, te)) {
218 if (count >= MULTIPATH_NUM)
219 break;
220 api_nh = &api.nexthops[count];
221 api_nh->vrf_id = eigrp->vrf_id;
222 if (te->adv_router->src.s_addr) {
223 api_nh->gate.ipv4 = te->adv_router->src;
224 api_nh->type = NEXTHOP_TYPE_IPV4_IFINDEX;
225 } else
226 api_nh->type = NEXTHOP_TYPE_IFINDEX;
227 api_nh->ifindex = te->ei->ifp->ifindex;
228
229 count++;
230 }
231 api.nexthop_num = count;
232
233 if (IS_DEBUG_EIGRP(zebra, ZEBRA_REDISTRIBUTE)) {
234 zlog_debug("Zebra: Route add %pFX", p);
235 }
236
237 zclient_route_send(ZEBRA_ROUTE_ADD, zclient, &api);
238 }
239
240 void eigrp_zebra_route_delete(struct eigrp *eigrp, struct prefix *p)
241 {
242 struct zapi_route api;
243
244 if (!zclient->redist[AFI_IP][ZEBRA_ROUTE_EIGRP])
245 return;
246
247 memset(&api, 0, sizeof(api));
248 api.vrf_id = eigrp->vrf_id;
249 api.type = ZEBRA_ROUTE_EIGRP;
250 api.safi = SAFI_UNICAST;
251 memcpy(&api.prefix, p, sizeof(*p));
252 zclient_route_send(ZEBRA_ROUTE_DELETE, zclient, &api);
253
254 if (IS_DEBUG_EIGRP(zebra, ZEBRA_REDISTRIBUTE))
255 zlog_debug("Zebra: Route del %pFX", p);
256
257 return;
258 }
259
260 static int eigrp_is_type_redistributed(int type, vrf_id_t vrf_id)
261 {
262 return ((DEFAULT_ROUTE_TYPE(type))
263 ? vrf_bitmap_check(zclient->default_information[AFI_IP],
264 vrf_id)
265 : vrf_bitmap_check(zclient->redist[AFI_IP][type],
266 vrf_id));
267 }
268
269 int eigrp_redistribute_set(struct eigrp *eigrp, int type,
270 struct eigrp_metrics metric)
271 {
272
273 if (eigrp_is_type_redistributed(type, eigrp->vrf_id)) {
274 if (eigrp_metrics_is_same(metric, eigrp->dmetric[type])) {
275 eigrp->dmetric[type] = metric;
276 }
277
278 eigrp_external_routes_refresh(eigrp, type);
279
280 // if (IS_DEBUG_EIGRP(zebra, ZEBRA_REDISTRIBUTE))
281 // zlog_debug ("Redistribute[%s]: Refresh Type[%d],
282 // Metric[%d]",
283 // eigrp_redist_string(type),
284 // metric_type (eigrp, type), metric_value
285 // (eigrp, type));
286 return CMD_SUCCESS;
287 }
288
289 eigrp->dmetric[type] = metric;
290
291 zclient_redistribute(ZEBRA_REDISTRIBUTE_ADD, zclient, AFI_IP, type, 0,
292 eigrp->vrf_id);
293
294 ++eigrp->redistribute;
295
296 return CMD_SUCCESS;
297 }
298
299 int eigrp_redistribute_unset(struct eigrp *eigrp, int type)
300 {
301
302 if (eigrp_is_type_redistributed(type, eigrp->vrf_id)) {
303 memset(&eigrp->dmetric[type], 0, sizeof(struct eigrp_metrics));
304 zclient_redistribute(ZEBRA_REDISTRIBUTE_DELETE, zclient, AFI_IP,
305 type, 0, eigrp->vrf_id);
306 --eigrp->redistribute;
307 }
308
309 return CMD_SUCCESS;
310 }