blob: 76c519cbe0c3c302e0d650a4299fc97551a510df [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* zebra client
2 Copyright (C) 1997, 98, 99 Kunihiro Ishiguro
3
4This file is part of GNU Zebra.
5
6GNU Zebra is free software; you can redistribute it and/or modify it
7under the terms of the GNU General Public License as published by the
8Free Software Foundation; either version 2, or (at your option) any
9later version.
10
11GNU Zebra is distributed in the hope that it will be useful, but
12WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14General Public License for more details.
15
16You should have received a copy of the GNU General Public License
17along with GNU Zebra; see the file COPYING. If not, write to the
18Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19Boston, MA 02111-1307, USA. */
20
21#include <zebra.h>
22
23#include "command.h"
24#include "stream.h"
25#include "network.h"
26#include "prefix.h"
27#include "log.h"
28#include "sockunion.h"
29#include "zclient.h"
30#include "routemap.h"
31#include "thread.h"
32
33#include "bgpd/bgpd.h"
34#include "bgpd/bgp_route.h"
35#include "bgpd/bgp_attr.h"
36#include "bgpd/bgp_nexthop.h"
37#include "bgpd/bgp_zebra.h"
38#include "bgpd/bgp_fsm.h"
Andrew J. Schorra39275d2006-11-30 16:36:57 +000039#include "bgpd/bgp_debug.h"
paul718e3742002-12-13 20:15:29 +000040
41/* All information about zebra. */
Chris Caputo228da422009-07-18 05:44:03 +000042struct zclient *zclient = NULL;
hasso18a6dce2004-10-03 18:18:34 +000043struct in_addr router_id_zebra;
paul718e3742002-12-13 20:15:29 +000044
hasso18a6dce2004-10-03 18:18:34 +000045/* Router-id update message from zebra. */
paul94f2b392005-06-28 12:44:16 +000046static int
hasso18a6dce2004-10-03 18:18:34 +000047bgp_router_id_update (int command, struct zclient *zclient, zebra_size_t length)
paul718e3742002-12-13 20:15:29 +000048{
hasso18a6dce2004-10-03 18:18:34 +000049 struct prefix router_id;
paul1eb8ef22005-04-07 07:30:20 +000050 struct listnode *node, *nnode;
hasso18a6dce2004-10-03 18:18:34 +000051 struct bgp *bgp;
paul718e3742002-12-13 20:15:29 +000052
hasso18a6dce2004-10-03 18:18:34 +000053 zebra_router_id_update_read(zclient->ibuf,&router_id);
Andrew J. Schorra39275d2006-11-30 16:36:57 +000054
55 if (BGP_DEBUG(zebra, ZEBRA))
56 {
57 char buf[128];
58 prefix2str(&router_id, buf, sizeof(buf));
59 zlog_debug("Zebra rcvd: router id update %s", buf);
60 }
61
hasso18a6dce2004-10-03 18:18:34 +000062 router_id_zebra = router_id.u.prefix4;
63
paul1eb8ef22005-04-07 07:30:20 +000064 for (ALL_LIST_ELEMENTS (bm->bgp, node, nnode, bgp))
paul718e3742002-12-13 20:15:29 +000065 {
hasso18a6dce2004-10-03 18:18:34 +000066 if (!bgp->router_id_static.s_addr)
paul1eb8ef22005-04-07 07:30:20 +000067 bgp_router_id_set (bgp, &router_id.u.prefix4);
paul718e3742002-12-13 20:15:29 +000068 }
paul718e3742002-12-13 20:15:29 +000069
paul718e3742002-12-13 20:15:29 +000070 return 0;
71}
72
73/* Inteface addition message from zebra. */
paul94f2b392005-06-28 12:44:16 +000074static int
paul718e3742002-12-13 20:15:29 +000075bgp_interface_add (int command, struct zclient *zclient, zebra_size_t length)
76{
77 struct interface *ifp;
78
79 ifp = zebra_interface_add_read (zclient->ibuf);
paul718e3742002-12-13 20:15:29 +000080
Andrew J. Schorra39275d2006-11-30 16:36:57 +000081 if (BGP_DEBUG(zebra, ZEBRA) && ifp)
82 zlog_debug("Zebra rcvd: interface add %s", ifp->name);
83
paul718e3742002-12-13 20:15:29 +000084 return 0;
85}
86
paul94f2b392005-06-28 12:44:16 +000087static int
paul718e3742002-12-13 20:15:29 +000088bgp_interface_delete (int command, struct zclient *zclient,
89 zebra_size_t length)
90{
91 struct stream *s;
92 struct interface *ifp;
93
94 s = zclient->ibuf;
95 ifp = zebra_interface_state_read (s);
ajsd2fc8892005-04-02 18:38:43 +000096 ifp->ifindex = IFINDEX_INTERNAL;
paul718e3742002-12-13 20:15:29 +000097
Andrew J. Schorra39275d2006-11-30 16:36:57 +000098 if (BGP_DEBUG(zebra, ZEBRA))
99 zlog_debug("Zebra rcvd: interface delete %s", ifp->name);
100
paul718e3742002-12-13 20:15:29 +0000101 return 0;
102}
103
paul94f2b392005-06-28 12:44:16 +0000104static int
paul718e3742002-12-13 20:15:29 +0000105bgp_interface_up (int command, struct zclient *zclient, zebra_size_t length)
106{
107 struct stream *s;
108 struct interface *ifp;
109 struct connected *c;
paul1eb8ef22005-04-07 07:30:20 +0000110 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000111
112 s = zclient->ibuf;
113 ifp = zebra_interface_state_read (s);
114
115 if (! ifp)
116 return 0;
117
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000118 if (BGP_DEBUG(zebra, ZEBRA))
119 zlog_debug("Zebra rcvd: interface %s up", ifp->name);
120
paul1eb8ef22005-04-07 07:30:20 +0000121 for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, c))
122 bgp_connected_add (c);
paul718e3742002-12-13 20:15:29 +0000123
124 return 0;
125}
126
paul94f2b392005-06-28 12:44:16 +0000127static int
paul718e3742002-12-13 20:15:29 +0000128bgp_interface_down (int command, struct zclient *zclient, zebra_size_t length)
129{
130 struct stream *s;
131 struct interface *ifp;
132 struct connected *c;
paul1eb8ef22005-04-07 07:30:20 +0000133 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000134
135 s = zclient->ibuf;
136 ifp = zebra_interface_state_read (s);
137 if (! ifp)
138 return 0;
139
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000140 if (BGP_DEBUG(zebra, ZEBRA))
141 zlog_debug("Zebra rcvd: interface %s down", ifp->name);
142
paul1eb8ef22005-04-07 07:30:20 +0000143 for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, c))
144 bgp_connected_delete (c);
paul718e3742002-12-13 20:15:29 +0000145
146 /* Fast external-failover (Currently IPv4 only) */
147 {
paul1eb8ef22005-04-07 07:30:20 +0000148 struct listnode *mnode;
paul718e3742002-12-13 20:15:29 +0000149 struct bgp *bgp;
150 struct peer *peer;
151 struct interface *peer_if;
152
paul1eb8ef22005-04-07 07:30:20 +0000153 for (ALL_LIST_ELEMENTS_RO (bm->bgp, mnode, bgp))
paul718e3742002-12-13 20:15:29 +0000154 {
155 if (CHECK_FLAG (bgp->flags, BGP_FLAG_NO_FAST_EXT_FAILOVER))
156 continue;
157
paul1eb8ef22005-04-07 07:30:20 +0000158 for (ALL_LIST_ELEMENTS (bgp->peer, node, nnode, peer))
paul718e3742002-12-13 20:15:29 +0000159 {
160 if (peer->ttl != 1)
161 continue;
162
163 if (peer->su.sa.sa_family == AF_INET)
164 peer_if = if_lookup_by_ipv4 (&peer->su.sin.sin_addr);
165 else
166 continue;
167
168 if (ifp == peer_if)
169 BGP_EVENT_ADD (peer, BGP_Stop);
170 }
171 }
172 }
173
174 return 0;
175}
176
paul94f2b392005-06-28 12:44:16 +0000177static int
paul718e3742002-12-13 20:15:29 +0000178bgp_interface_address_add (int command, struct zclient *zclient,
179 zebra_size_t length)
180{
181 struct connected *ifc;
182
paul0a589352004-05-08 11:48:26 +0000183 ifc = zebra_interface_address_read (command, zclient->ibuf);
paul718e3742002-12-13 20:15:29 +0000184
185 if (ifc == NULL)
186 return 0;
187
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000188 if (BGP_DEBUG(zebra, ZEBRA))
189 {
190 char buf[128];
191 prefix2str(ifc->address, buf, sizeof(buf));
192 zlog_debug("Zebra rcvd: interface %s address add %s",
193 ifc->ifp->name, buf);
194 }
195
paul2e3b2e42002-12-13 21:03:13 +0000196 if (if_is_operative (ifc->ifp))
paul718e3742002-12-13 20:15:29 +0000197 bgp_connected_add (ifc);
198
199 return 0;
200}
201
paul94f2b392005-06-28 12:44:16 +0000202static int
paul718e3742002-12-13 20:15:29 +0000203bgp_interface_address_delete (int command, struct zclient *zclient,
204 zebra_size_t length)
205{
206 struct connected *ifc;
207
paul0a589352004-05-08 11:48:26 +0000208 ifc = zebra_interface_address_read (command, zclient->ibuf);
paul718e3742002-12-13 20:15:29 +0000209
210 if (ifc == NULL)
211 return 0;
212
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000213 if (BGP_DEBUG(zebra, ZEBRA))
214 {
215 char buf[128];
216 prefix2str(ifc->address, buf, sizeof(buf));
217 zlog_debug("Zebra rcvd: interface %s address delete %s",
218 ifc->ifp->name, buf);
219 }
220
paul2e3b2e42002-12-13 21:03:13 +0000221 if (if_is_operative (ifc->ifp))
paul718e3742002-12-13 20:15:29 +0000222 bgp_connected_delete (ifc);
223
224 connected_free (ifc);
225
226 return 0;
227}
228
229/* Zebra route add and delete treatment. */
paul94f2b392005-06-28 12:44:16 +0000230static int
paul718e3742002-12-13 20:15:29 +0000231zebra_read_ipv4 (int command, struct zclient *zclient, zebra_size_t length)
232{
233 struct stream *s;
234 struct zapi_ipv4 api;
paul718e3742002-12-13 20:15:29 +0000235 struct in_addr nexthop;
236 struct prefix_ipv4 p;
237
238 s = zclient->ibuf;
paul718e3742002-12-13 20:15:29 +0000239 nexthop.s_addr = 0;
240
241 /* Type, flags, message. */
242 api.type = stream_getc (s);
243 api.flags = stream_getc (s);
244 api.message = stream_getc (s);
245
246 /* IPv4 prefix. */
247 memset (&p, 0, sizeof (struct prefix_ipv4));
248 p.family = AF_INET;
249 p.prefixlen = stream_getc (s);
250 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
251
252 /* Nexthop, ifindex, distance, metric. */
253 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
254 {
255 api.nexthop_num = stream_getc (s);
256 nexthop.s_addr = stream_get_ipv4 (s);
257 }
258 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
259 {
260 api.ifindex_num = stream_getc (s);
Stephen Hemminger9206f9e2011-12-18 19:43:40 +0400261 stream_getl (s); /* ifindex, unused */
paul718e3742002-12-13 20:15:29 +0000262 }
263 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
264 api.distance = stream_getc (s);
265 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
266 api.metric = stream_getl (s);
267 else
268 api.metric = 0;
269
270 if (command == ZEBRA_IPV4_ROUTE_ADD)
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000271 {
272 if (BGP_DEBUG(zebra, ZEBRA))
273 {
274 char buf[2][INET_ADDRSTRLEN];
275 zlog_debug("Zebra rcvd: IPv4 route add %s %s/%d nexthop %s metric %u",
276 zebra_route_string(api.type),
277 inet_ntop(AF_INET, &p.prefix, buf[0], sizeof(buf[0])),
278 p.prefixlen,
279 inet_ntop(AF_INET, &nexthop, buf[1], sizeof(buf[1])),
280 api.metric);
281 }
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400282 bgp_redistribute_add((struct prefix *)&p, &nexthop, NULL,
283 api.metric, api.type);
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000284 }
paul718e3742002-12-13 20:15:29 +0000285 else
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000286 {
287 if (BGP_DEBUG(zebra, ZEBRA))
288 {
289 char buf[2][INET_ADDRSTRLEN];
290 zlog_debug("Zebra rcvd: IPv4 route delete %s %s/%d "
291 "nexthop %s metric %u",
292 zebra_route_string(api.type),
293 inet_ntop(AF_INET, &p.prefix, buf[0], sizeof(buf[0])),
294 p.prefixlen,
295 inet_ntop(AF_INET, &nexthop, buf[1], sizeof(buf[1])),
296 api.metric);
297 }
298 bgp_redistribute_delete((struct prefix *)&p, api.type);
299 }
paul718e3742002-12-13 20:15:29 +0000300
301 return 0;
302}
303
304#ifdef HAVE_IPV6
305/* Zebra route add and delete treatment. */
paul94f2b392005-06-28 12:44:16 +0000306static int
paul718e3742002-12-13 20:15:29 +0000307zebra_read_ipv6 (int command, struct zclient *zclient, zebra_size_t length)
308{
309 struct stream *s;
310 struct zapi_ipv6 api;
paul718e3742002-12-13 20:15:29 +0000311 struct in6_addr nexthop;
312 struct prefix_ipv6 p;
313
314 s = zclient->ibuf;
paul718e3742002-12-13 20:15:29 +0000315 memset (&nexthop, 0, sizeof (struct in6_addr));
316
317 /* Type, flags, message. */
318 api.type = stream_getc (s);
319 api.flags = stream_getc (s);
320 api.message = stream_getc (s);
321
322 /* IPv6 prefix. */
323 memset (&p, 0, sizeof (struct prefix_ipv6));
324 p.family = AF_INET6;
325 p.prefixlen = stream_getc (s);
326 stream_get (&p.prefix, s, PSIZE (p.prefixlen));
327
328 /* Nexthop, ifindex, distance, metric. */
329 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP))
330 {
331 api.nexthop_num = stream_getc (s);
332 stream_get (&nexthop, s, 16);
333 }
334 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX))
335 {
336 api.ifindex_num = stream_getc (s);
Stephen Hemminger9206f9e2011-12-18 19:43:40 +0400337 stream_getl (s); /* ifindex, unused */
paul718e3742002-12-13 20:15:29 +0000338 }
339 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE))
340 api.distance = stream_getc (s);
341 else
342 api.distance = 0;
343 if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC))
344 api.metric = stream_getl (s);
345 else
346 api.metric = 0;
347
348 /* Simply ignore link-local address. */
349 if (IN6_IS_ADDR_LINKLOCAL (&p.prefix))
350 return 0;
351
352 if (command == ZEBRA_IPV6_ROUTE_ADD)
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000353 {
354 if (BGP_DEBUG(zebra, ZEBRA))
355 {
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400356 char buf[2][INET6_ADDRSTRLEN];
357 zlog_debug("Zebra rcvd: IPv6 route add %s %s/%d nexthop %s metric %u",
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000358 zebra_route_string(api.type),
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400359 inet_ntop(AF_INET6, &p.prefix, buf[0], sizeof(buf[0])),
360 p.prefixlen,
361 inet_ntop(AF_INET, &nexthop, buf[1], sizeof(buf[1])),
362 api.metric);
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000363 }
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400364 bgp_redistribute_add ((struct prefix *)&p, NULL, &nexthop,
365 api.metric, api.type);
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000366 }
paul718e3742002-12-13 20:15:29 +0000367 else
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000368 {
369 if (BGP_DEBUG(zebra, ZEBRA))
370 {
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400371 char buf[2][INET6_ADDRSTRLEN];
372 zlog_debug("Zebra rcvd: IPv6 route delete %s %s/%d "
373 "nexthop %s metric %u",
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000374 zebra_route_string(api.type),
Stephen Hemmingerf04a80a2011-12-06 14:51:10 +0400375 inet_ntop(AF_INET6, &p.prefix, buf[0], sizeof(buf[0])),
376 p.prefixlen,
377 inet_ntop(AF_INET6, &nexthop, buf[1], sizeof(buf[1])),
378 api.metric);
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000379 }
380 bgp_redistribute_delete ((struct prefix *) &p, api.type);
381 }
paul718e3742002-12-13 20:15:29 +0000382
383 return 0;
384}
385#endif /* HAVE_IPV6 */
386
387struct interface *
388if_lookup_by_ipv4 (struct in_addr *addr)
389{
hasso52dc7ee2004-09-23 19:18:23 +0000390 struct listnode *ifnode;
391 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000392 struct interface *ifp;
393 struct connected *connected;
394 struct prefix_ipv4 p;
395 struct prefix *cp;
396
397 p.family = AF_INET;
398 p.prefix = *addr;
399 p.prefixlen = IPV4_MAX_BITLEN;
400
paul1eb8ef22005-04-07 07:30:20 +0000401 for (ALL_LIST_ELEMENTS_RO (iflist, ifnode, ifp))
paul718e3742002-12-13 20:15:29 +0000402 {
paul1eb8ef22005-04-07 07:30:20 +0000403 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000404 {
paul718e3742002-12-13 20:15:29 +0000405 cp = connected->address;
406
407 if (cp->family == AF_INET)
408 if (prefix_match (cp, (struct prefix *)&p))
409 return ifp;
410 }
411 }
412 return NULL;
413}
414
415struct interface *
416if_lookup_by_ipv4_exact (struct in_addr *addr)
417{
hasso52dc7ee2004-09-23 19:18:23 +0000418 struct listnode *ifnode;
419 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000420 struct interface *ifp;
421 struct connected *connected;
422 struct prefix *cp;
423
paul1eb8ef22005-04-07 07:30:20 +0000424 for (ALL_LIST_ELEMENTS_RO (iflist, ifnode, ifp))
paul718e3742002-12-13 20:15:29 +0000425 {
paul1eb8ef22005-04-07 07:30:20 +0000426 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000427 {
paul718e3742002-12-13 20:15:29 +0000428 cp = connected->address;
429
430 if (cp->family == AF_INET)
431 if (IPV4_ADDR_SAME (&cp->u.prefix4, addr))
432 return ifp;
433 }
434 }
435 return NULL;
436}
437
438#ifdef HAVE_IPV6
439struct interface *
440if_lookup_by_ipv6 (struct in6_addr *addr)
441{
hasso52dc7ee2004-09-23 19:18:23 +0000442 struct listnode *ifnode;
443 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000444 struct interface *ifp;
445 struct connected *connected;
446 struct prefix_ipv6 p;
447 struct prefix *cp;
448
449 p.family = AF_INET6;
450 p.prefix = *addr;
451 p.prefixlen = IPV6_MAX_BITLEN;
452
paul1eb8ef22005-04-07 07:30:20 +0000453 for (ALL_LIST_ELEMENTS_RO (iflist, ifnode, ifp))
paul718e3742002-12-13 20:15:29 +0000454 {
paul1eb8ef22005-04-07 07:30:20 +0000455 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000456 {
paul718e3742002-12-13 20:15:29 +0000457 cp = connected->address;
458
459 if (cp->family == AF_INET6)
460 if (prefix_match (cp, (struct prefix *)&p))
461 return ifp;
462 }
463 }
464 return NULL;
465}
466
467struct interface *
468if_lookup_by_ipv6_exact (struct in6_addr *addr)
469{
hasso52dc7ee2004-09-23 19:18:23 +0000470 struct listnode *ifnode;
471 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000472 struct interface *ifp;
473 struct connected *connected;
474 struct prefix *cp;
475
paul1eb8ef22005-04-07 07:30:20 +0000476 for (ALL_LIST_ELEMENTS_RO (iflist, ifnode, ifp))
paul718e3742002-12-13 20:15:29 +0000477 {
paul1eb8ef22005-04-07 07:30:20 +0000478 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000479 {
paul718e3742002-12-13 20:15:29 +0000480 cp = connected->address;
481
482 if (cp->family == AF_INET6)
483 if (IPV6_ADDR_SAME (&cp->u.prefix6, addr))
484 return ifp;
485 }
486 }
487 return NULL;
488}
489
paul94f2b392005-06-28 12:44:16 +0000490static int
paul718e3742002-12-13 20:15:29 +0000491if_get_ipv6_global (struct interface *ifp, struct in6_addr *addr)
492{
hasso52dc7ee2004-09-23 19:18:23 +0000493 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000494 struct connected *connected;
495 struct prefix *cp;
496
paul1eb8ef22005-04-07 07:30:20 +0000497 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000498 {
paul718e3742002-12-13 20:15:29 +0000499 cp = connected->address;
500
501 if (cp->family == AF_INET6)
502 if (! IN6_IS_ADDR_LINKLOCAL (&cp->u.prefix6))
503 {
504 memcpy (addr, &cp->u.prefix6, IPV6_MAX_BYTELEN);
505 return 1;
506 }
507 }
508 return 0;
509}
510
paul94f2b392005-06-28 12:44:16 +0000511static int
paul718e3742002-12-13 20:15:29 +0000512if_get_ipv6_local (struct interface *ifp, struct in6_addr *addr)
513{
hasso52dc7ee2004-09-23 19:18:23 +0000514 struct listnode *cnode;
paul718e3742002-12-13 20:15:29 +0000515 struct connected *connected;
516 struct prefix *cp;
517
paul1eb8ef22005-04-07 07:30:20 +0000518 for (ALL_LIST_ELEMENTS_RO (ifp->connected, cnode, connected))
paul718e3742002-12-13 20:15:29 +0000519 {
paul718e3742002-12-13 20:15:29 +0000520 cp = connected->address;
521
522 if (cp->family == AF_INET6)
523 if (IN6_IS_ADDR_LINKLOCAL (&cp->u.prefix6))
524 {
525 memcpy (addr, &cp->u.prefix6, IPV6_MAX_BYTELEN);
526 return 1;
527 }
528 }
529 return 0;
530}
531#endif /* HAVE_IPV6 */
532
533int
534bgp_nexthop_set (union sockunion *local, union sockunion *remote,
535 struct bgp_nexthop *nexthop, struct peer *peer)
536{
537 int ret = 0;
538 struct interface *ifp = NULL;
539
540 memset (nexthop, 0, sizeof (struct bgp_nexthop));
541
542 if (!local)
543 return -1;
544 if (!remote)
545 return -1;
546
547 if (local->sa.sa_family == AF_INET)
548 {
549 nexthop->v4 = local->sin.sin_addr;
550 ifp = if_lookup_by_ipv4 (&local->sin.sin_addr);
551 }
552#ifdef HAVE_IPV6
553 if (local->sa.sa_family == AF_INET6)
554 {
555 if (IN6_IS_ADDR_LINKLOCAL (&local->sin6.sin6_addr))
556 {
557 if (peer->ifname)
558 ifp = if_lookup_by_index (if_nametoindex (peer->ifname));
559 }
560 else
561 ifp = if_lookup_by_ipv6 (&local->sin6.sin6_addr);
562 }
563#endif /* HAVE_IPV6 */
564
565 if (!ifp)
566 return -1;
567
568 nexthop->ifp = ifp;
569
570 /* IPv4 connection. */
571 if (local->sa.sa_family == AF_INET)
572 {
573#ifdef HAVE_IPV6
574 /* IPv6 nexthop*/
575 ret = if_get_ipv6_global (ifp, &nexthop->v6_global);
576
577 /* There is no global nexthop. */
578 if (!ret)
579 if_get_ipv6_local (ifp, &nexthop->v6_global);
580 else
581 if_get_ipv6_local (ifp, &nexthop->v6_local);
582#endif /* HAVE_IPV6 */
583 }
584
585#ifdef HAVE_IPV6
586 /* IPv6 connection. */
587 if (local->sa.sa_family == AF_INET6)
588 {
589 struct interface *direct = NULL;
590
591 /* IPv4 nexthop. I don't care about it. */
592 if (peer->local_id.s_addr)
593 nexthop->v4 = peer->local_id;
594
595 /* Global address*/
596 if (! IN6_IS_ADDR_LINKLOCAL (&local->sin6.sin6_addr))
597 {
598 memcpy (&nexthop->v6_global, &local->sin6.sin6_addr,
599 IPV6_MAX_BYTELEN);
600
601 /* If directory connected set link-local address. */
602 direct = if_lookup_by_ipv6 (&remote->sin6.sin6_addr);
603 if (direct)
604 if_get_ipv6_local (ifp, &nexthop->v6_local);
605 }
606 else
607 /* Link-local address. */
608 {
609 ret = if_get_ipv6_global (ifp, &nexthop->v6_global);
610
611 /* If there is no global address. Set link-local address as
612 global. I know this break RFC specification... */
613 if (!ret)
614 memcpy (&nexthop->v6_global, &local->sin6.sin6_addr,
615 IPV6_MAX_BYTELEN);
616 else
617 memcpy (&nexthop->v6_local, &local->sin6.sin6_addr,
618 IPV6_MAX_BYTELEN);
619 }
620 }
621
622 if (IN6_IS_ADDR_LINKLOCAL (&local->sin6.sin6_addr) ||
623 if_lookup_by_ipv6 (&remote->sin6.sin6_addr))
624 peer->shared_network = 1;
625 else
626 peer->shared_network = 0;
627
628 /* KAME stack specific treatment. */
629#ifdef KAME
630 if (IN6_IS_ADDR_LINKLOCAL (&nexthop->v6_global)
631 && IN6_LINKLOCAL_IFINDEX (nexthop->v6_global))
632 {
633 SET_IN6_LINKLOCAL_IFINDEX (nexthop->v6_global, 0);
634 }
635 if (IN6_IS_ADDR_LINKLOCAL (&nexthop->v6_local)
636 && IN6_LINKLOCAL_IFINDEX (nexthop->v6_local))
637 {
638 SET_IN6_LINKLOCAL_IFINDEX (nexthop->v6_local, 0);
639 }
640#endif /* KAME */
641#endif /* HAVE_IPV6 */
642 return ret;
643}
644
paul718e3742002-12-13 20:15:29 +0000645void
646bgp_zebra_announce (struct prefix *p, struct bgp_info *info, struct bgp *bgp)
647{
648 int flags;
649 u_char distance;
650 struct peer *peer;
651
652 if (zclient->sock < 0)
653 return;
654
655 if (! zclient->redist[ZEBRA_ROUTE_BGP])
656 return;
657
658 flags = 0;
659 peer = info->peer;
660
661 if (peer_sort (peer) == BGP_PEER_IBGP || peer_sort (peer) == BGP_PEER_CONFED)
662 {
663 SET_FLAG (flags, ZEBRA_FLAG_IBGP);
664 SET_FLAG (flags, ZEBRA_FLAG_INTERNAL);
665 }
666
667 if ((peer_sort (peer) == BGP_PEER_EBGP && peer->ttl != 1)
hasso6ffd2072005-02-02 14:50:11 +0000668 || CHECK_FLAG (peer->flags, PEER_FLAG_DISABLE_CONNECTED_CHECK))
paul718e3742002-12-13 20:15:29 +0000669 SET_FLAG (flags, ZEBRA_FLAG_INTERNAL);
670
671 if (p->family == AF_INET)
672 {
673 struct zapi_ipv4 api;
674 struct in_addr *nexthop;
675
676 api.flags = flags;
677 nexthop = &info->attr->nexthop;
678
679 api.type = ZEBRA_ROUTE_BGP;
680 api.message = 0;
681 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
682 api.nexthop_num = 1;
683 api.nexthop = &nexthop;
684 api.ifindex_num = 0;
685 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
686 api.metric = info->attr->med;
687
688 distance = bgp_distance_apply (p, info, bgp);
689
690 if (distance)
691 {
692 SET_FLAG (api.message, ZAPI_MESSAGE_DISTANCE);
693 api.distance = distance;
694 }
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000695
696 if (BGP_DEBUG(zebra, ZEBRA))
697 {
698 char buf[2][INET_ADDRSTRLEN];
699 zlog_debug("Zebra send: IPv4 route add %s/%d nexthop %s metric %u",
700 inet_ntop(AF_INET, &p->u.prefix4, buf[0], sizeof(buf[0])),
701 p->prefixlen,
702 inet_ntop(AF_INET, nexthop, buf[1], sizeof(buf[1])),
703 api.metric);
704 }
705
paul0a589352004-05-08 11:48:26 +0000706 zapi_ipv4_route (ZEBRA_IPV4_ROUTE_ADD, zclient,
707 (struct prefix_ipv4 *) p, &api);
paul718e3742002-12-13 20:15:29 +0000708 }
709#ifdef HAVE_IPV6
710 /* We have to think about a IPv6 link-local address curse. */
711 if (p->family == AF_INET6)
712 {
713 unsigned int ifindex;
714 struct in6_addr *nexthop;
715 struct zapi_ipv6 api;
716
717 ifindex = 0;
718 nexthop = NULL;
Paul Jakmafb982c22007-05-04 20:15:47 +0000719
720 assert (info->attr->extra);
721
paul718e3742002-12-13 20:15:29 +0000722 /* Only global address nexthop exists. */
Paul Jakmafb982c22007-05-04 20:15:47 +0000723 if (info->attr->extra->mp_nexthop_len == 16)
724 nexthop = &info->attr->extra->mp_nexthop_global;
paul718e3742002-12-13 20:15:29 +0000725
726 /* If both global and link-local address present. */
Paul Jakmafb982c22007-05-04 20:15:47 +0000727 if (info->attr->extra->mp_nexthop_len == 32)
paul718e3742002-12-13 20:15:29 +0000728 {
729 /* Workaround for Cisco's nexthop bug. */
Paul Jakmafb982c22007-05-04 20:15:47 +0000730 if (IN6_IS_ADDR_UNSPECIFIED (&info->attr->extra->mp_nexthop_global)
paul718e3742002-12-13 20:15:29 +0000731 && peer->su_remote->sa.sa_family == AF_INET6)
732 nexthop = &peer->su_remote->sin6.sin6_addr;
733 else
Paul Jakmafb982c22007-05-04 20:15:47 +0000734 nexthop = &info->attr->extra->mp_nexthop_local;
paul718e3742002-12-13 20:15:29 +0000735
736 if (info->peer->nexthop.ifp)
737 ifindex = info->peer->nexthop.ifp->ifindex;
738 }
739
740 if (nexthop == NULL)
741 return;
742
743 if (IN6_IS_ADDR_LINKLOCAL (nexthop) && ! ifindex)
744 {
745 if (info->peer->ifname)
746 ifindex = if_nametoindex (info->peer->ifname);
747 else if (info->peer->nexthop.ifp)
748 ifindex = info->peer->nexthop.ifp->ifindex;
749 }
750
751 /* Make Zebra API structure. */
752 api.flags = flags;
753 api.type = ZEBRA_ROUTE_BGP;
754 api.message = 0;
755 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
756 api.nexthop_num = 1;
757 api.nexthop = &nexthop;
758 SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX);
759 api.ifindex_num = 1;
760 api.ifindex = &ifindex;
761 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
762 api.metric = info->attr->med;
763
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000764 if (BGP_DEBUG(zebra, ZEBRA))
765 {
766 char buf[2][INET6_ADDRSTRLEN];
767 zlog_debug("Zebra send: IPv6 route add %s/%d nexthop %s metric %u",
768 inet_ntop(AF_INET6, &p->u.prefix6, buf[0], sizeof(buf[0])),
769 p->prefixlen,
770 inet_ntop(AF_INET6, nexthop, buf[1], sizeof(buf[1])),
771 api.metric);
772 }
773
paul0a589352004-05-08 11:48:26 +0000774 zapi_ipv6_route (ZEBRA_IPV6_ROUTE_ADD, zclient,
775 (struct prefix_ipv6 *) p, &api);
paul718e3742002-12-13 20:15:29 +0000776 }
777#endif /* HAVE_IPV6 */
778}
779
780void
781bgp_zebra_withdraw (struct prefix *p, struct bgp_info *info)
782{
783 int flags;
784 struct peer *peer;
785
786 if (zclient->sock < 0)
787 return;
788
789 if (! zclient->redist[ZEBRA_ROUTE_BGP])
790 return;
791
792 peer = info->peer;
793 flags = 0;
794
795 if (peer_sort (peer) == BGP_PEER_IBGP)
796 {
797 SET_FLAG (flags, ZEBRA_FLAG_INTERNAL);
798 SET_FLAG (flags, ZEBRA_FLAG_IBGP);
799 }
800
801 if ((peer_sort (peer) == BGP_PEER_EBGP && peer->ttl != 1)
hasso6ffd2072005-02-02 14:50:11 +0000802 || CHECK_FLAG (peer->flags, PEER_FLAG_DISABLE_CONNECTED_CHECK))
paul718e3742002-12-13 20:15:29 +0000803 SET_FLAG (flags, ZEBRA_FLAG_INTERNAL);
804
805 if (p->family == AF_INET)
806 {
807 struct zapi_ipv4 api;
808 struct in_addr *nexthop;
809
810 api.flags = flags;
811 nexthop = &info->attr->nexthop;
812
813 api.type = ZEBRA_ROUTE_BGP;
814 api.message = 0;
815 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
816 api.nexthop_num = 1;
817 api.nexthop = &nexthop;
818 api.ifindex_num = 0;
819 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
820 api.metric = info->attr->med;
821
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000822 if (BGP_DEBUG(zebra, ZEBRA))
823 {
824 char buf[2][INET_ADDRSTRLEN];
825 zlog_debug("Zebra send: IPv4 route delete %s/%d nexthop %s metric %u",
826 inet_ntop(AF_INET, &p->u.prefix4, buf[0], sizeof(buf[0])),
827 p->prefixlen,
828 inet_ntop(AF_INET, nexthop, buf[1], sizeof(buf[1])),
829 api.metric);
830 }
831
paul0a589352004-05-08 11:48:26 +0000832 zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE, zclient,
833 (struct prefix_ipv4 *) p, &api);
paul718e3742002-12-13 20:15:29 +0000834 }
835#ifdef HAVE_IPV6
836 /* We have to think about a IPv6 link-local address curse. */
837 if (p->family == AF_INET6)
838 {
839 struct zapi_ipv6 api;
840 unsigned int ifindex;
841 struct in6_addr *nexthop;
Paul Jakmafb982c22007-05-04 20:15:47 +0000842
843 assert (info->attr->extra);
844
paul718e3742002-12-13 20:15:29 +0000845 ifindex = 0;
846 nexthop = NULL;
847
848 /* Only global address nexthop exists. */
Paul Jakmafb982c22007-05-04 20:15:47 +0000849 if (info->attr->extra->mp_nexthop_len == 16)
850 nexthop = &info->attr->extra->mp_nexthop_global;
paul718e3742002-12-13 20:15:29 +0000851
852 /* If both global and link-local address present. */
Paul Jakmafb982c22007-05-04 20:15:47 +0000853 if (info->attr->extra->mp_nexthop_len == 32)
paul718e3742002-12-13 20:15:29 +0000854 {
Paul Jakmafb982c22007-05-04 20:15:47 +0000855 nexthop = &info->attr->extra->mp_nexthop_local;
paul718e3742002-12-13 20:15:29 +0000856 if (info->peer->nexthop.ifp)
857 ifindex = info->peer->nexthop.ifp->ifindex;
858 }
859
860 if (nexthop == NULL)
861 return;
862
863 if (IN6_IS_ADDR_LINKLOCAL (nexthop) && ! ifindex)
864 if (info->peer->ifname)
865 ifindex = if_nametoindex (info->peer->ifname);
866
867 api.flags = flags;
868 api.type = ZEBRA_ROUTE_BGP;
869 api.message = 0;
870 SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP);
871 api.nexthop_num = 1;
872 api.nexthop = &nexthop;
873 SET_FLAG (api.message, ZAPI_MESSAGE_IFINDEX);
874 api.ifindex_num = 1;
875 api.ifindex = &ifindex;
876 SET_FLAG (api.message, ZAPI_MESSAGE_METRIC);
877 api.metric = info->attr->med;
878
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000879 if (BGP_DEBUG(zebra, ZEBRA))
880 {
881 char buf[2][INET6_ADDRSTRLEN];
882 zlog_debug("Zebra send: IPv6 route delete %s/%d nexthop %s metric %u",
883 inet_ntop(AF_INET6, &p->u.prefix6, buf[0], sizeof(buf[0])),
884 p->prefixlen,
885 inet_ntop(AF_INET6, nexthop, buf[1], sizeof(buf[1])),
886 api.metric);
887 }
888
paul0a589352004-05-08 11:48:26 +0000889 zapi_ipv6_route (ZEBRA_IPV6_ROUTE_DELETE, zclient,
890 (struct prefix_ipv6 *) p, &api);
paul718e3742002-12-13 20:15:29 +0000891 }
892#endif /* HAVE_IPV6 */
893}
894
895/* Other routes redistribution into BGP. */
896int
897bgp_redistribute_set (struct bgp *bgp, afi_t afi, int type)
898{
899 /* Set flag to BGP instance. */
900 bgp->redist[afi][type] = 1;
901
902 /* Return if already redistribute flag is set. */
903 if (zclient->redist[type])
904 return CMD_WARNING;
905
906 zclient->redist[type] = 1;
907
908 /* Return if zebra connection is not established. */
909 if (zclient->sock < 0)
910 return CMD_WARNING;
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000911
912 if (BGP_DEBUG(zebra, ZEBRA))
913 zlog_debug("Zebra send: redistribute add %s", zebra_route_string(type));
paul718e3742002-12-13 20:15:29 +0000914
915 /* Send distribute add message to zebra. */
ajs634f9ea2005-04-11 15:51:40 +0000916 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_ADD, zclient, type);
paul718e3742002-12-13 20:15:29 +0000917
918 return CMD_SUCCESS;
919}
920
921/* Redistribute with route-map specification. */
922int
paulfd79ac92004-10-13 05:06:08 +0000923bgp_redistribute_rmap_set (struct bgp *bgp, afi_t afi, int type,
924 const char *name)
paul718e3742002-12-13 20:15:29 +0000925{
926 if (bgp->rmap[afi][type].name
927 && (strcmp (bgp->rmap[afi][type].name, name) == 0))
928 return 0;
929
930 if (bgp->rmap[afi][type].name)
931 free (bgp->rmap[afi][type].name);
932 bgp->rmap[afi][type].name = strdup (name);
933 bgp->rmap[afi][type].map = route_map_lookup_by_name (name);
934
935 return 1;
936}
937
938/* Redistribute with metric specification. */
939int
940bgp_redistribute_metric_set (struct bgp *bgp, afi_t afi, int type,
941 u_int32_t metric)
942{
943 if (bgp->redist_metric_flag[afi][type]
944 && bgp->redist_metric[afi][type] == metric)
945 return 0;
946
947 bgp->redist_metric_flag[afi][type] = 1;
948 bgp->redist_metric[afi][type] = metric;
949
950 return 1;
951}
952
953/* Unset redistribution. */
954int
955bgp_redistribute_unset (struct bgp *bgp, afi_t afi, int type)
956{
957 /* Unset flag from BGP instance. */
958 bgp->redist[afi][type] = 0;
959
960 /* Unset route-map. */
961 if (bgp->rmap[afi][type].name)
962 free (bgp->rmap[afi][type].name);
963 bgp->rmap[afi][type].name = NULL;
964 bgp->rmap[afi][type].map = NULL;
965
966 /* Unset metric. */
967 bgp->redist_metric_flag[afi][type] = 0;
968 bgp->redist_metric[afi][type] = 0;
969
970 /* Return if zebra connection is disabled. */
971 if (! zclient->redist[type])
972 return CMD_WARNING;
973 zclient->redist[type] = 0;
974
975 if (bgp->redist[AFI_IP][type] == 0
976 && bgp->redist[AFI_IP6][type] == 0
977 && zclient->sock >= 0)
Andrew J. Schorra39275d2006-11-30 16:36:57 +0000978 {
979 /* Send distribute delete message to zebra. */
980 if (BGP_DEBUG(zebra, ZEBRA))
981 zlog_debug("Zebra send: redistribute delete %s",
982 zebra_route_string(type));
983 zebra_redistribute_send (ZEBRA_REDISTRIBUTE_DELETE, zclient, type);
984 }
paul718e3742002-12-13 20:15:29 +0000985
986 /* Withdraw redistributed routes from current BGP's routing table. */
987 bgp_redistribute_withdraw (bgp, afi, type);
988
989 return CMD_SUCCESS;
990}
991
992/* Unset redistribution route-map configuration. */
993int
994bgp_redistribute_routemap_unset (struct bgp *bgp, afi_t afi, int type)
995{
996 if (! bgp->rmap[afi][type].name)
997 return 0;
998
999 /* Unset route-map. */
1000 free (bgp->rmap[afi][type].name);
1001 bgp->rmap[afi][type].name = NULL;
1002 bgp->rmap[afi][type].map = NULL;
1003
1004 return 1;
1005}
1006
1007/* Unset redistribution metric configuration. */
1008int
1009bgp_redistribute_metric_unset (struct bgp *bgp, afi_t afi, int type)
1010{
1011 if (! bgp->redist_metric_flag[afi][type])
1012 return 0;
1013
1014 /* Unset metric. */
1015 bgp->redist_metric_flag[afi][type] = 0;
1016 bgp->redist_metric[afi][type] = 0;
1017
1018 return 1;
1019}
1020
1021void
paul94f2b392005-06-28 12:44:16 +00001022bgp_zclient_reset (void)
paul718e3742002-12-13 20:15:29 +00001023{
1024 zclient_reset (zclient);
1025}
1026
1027void
paul94f2b392005-06-28 12:44:16 +00001028bgp_zebra_init (void)
paul718e3742002-12-13 20:15:29 +00001029{
1030 /* Set default values. */
1031 zclient = zclient_new ();
1032 zclient_init (zclient, ZEBRA_ROUTE_BGP);
hasso18a6dce2004-10-03 18:18:34 +00001033 zclient->router_id_update = bgp_router_id_update;
paul718e3742002-12-13 20:15:29 +00001034 zclient->interface_add = bgp_interface_add;
1035 zclient->interface_delete = bgp_interface_delete;
1036 zclient->interface_address_add = bgp_interface_address_add;
1037 zclient->interface_address_delete = bgp_interface_address_delete;
1038 zclient->ipv4_route_add = zebra_read_ipv4;
1039 zclient->ipv4_route_delete = zebra_read_ipv4;
1040 zclient->interface_up = bgp_interface_up;
1041 zclient->interface_down = bgp_interface_down;
1042#ifdef HAVE_IPV6
1043 zclient->ipv6_route_add = zebra_read_ipv6;
1044 zclient->ipv6_route_delete = zebra_read_ipv6;
1045#endif /* HAVE_IPV6 */
1046
1047 /* Interface related init. */
1048 if_init ();
1049}