blob: 4276f1d04ffaff6282509f073ce6dad0db24ca92 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/* Redistribution Handler
2 * Copyright (C) 1998 Kunihiro Ishiguro
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 "vector.h"
25#include "vty.h"
26#include "command.h"
27#include "prefix.h"
28#include "table.h"
29#include "stream.h"
30#include "zclient.h"
31#include "linklist.h"
32#include "log.h"
33
34#include "zebra/rib.h"
35#include "zebra/zserv.h"
36#include "zebra/redistribute.h"
37#include "zebra/debug.h"
hasso18a6dce2004-10-03 18:18:34 +000038#include "zebra/router-id.h"
paul718e3742002-12-13 20:15:29 +000039
paulb21b19c2003-06-15 01:28:29 +000040/* master zebra server structure */
41extern struct zebra_t zebrad;
42
Paul Jakma6dc686a2007-04-10 19:24:45 +000043int
paul718e3742002-12-13 20:15:29 +000044zebra_check_addr (struct prefix *p)
45{
46 if (p->family == AF_INET)
47 {
48 u_int32_t addr;
49
50 addr = p->u.prefix4.s_addr;
51 addr = ntohl (addr);
52
Paul Jakma6dc686a2007-04-10 19:24:45 +000053 if (IPV4_NET127 (addr)
54 || IN_CLASSD (addr)
55 || IPV4_LINKLOCAL(addr))
paul718e3742002-12-13 20:15:29 +000056 return 0;
57 }
58#ifdef HAVE_IPV6
59 if (p->family == AF_INET6)
60 {
61 if (IN6_IS_ADDR_LOOPBACK (&p->u.prefix6))
62 return 0;
63 if (IN6_IS_ADDR_LINKLOCAL(&p->u.prefix6))
64 return 0;
65 }
66#endif /* HAVE_IPV6 */
67 return 1;
68}
69
ajs27da3982005-02-24 16:06:33 +000070static int
paul718e3742002-12-13 20:15:29 +000071is_default (struct prefix *p)
72{
73 if (p->family == AF_INET)
74 if (p->u.prefix4.s_addr == 0 && p->prefixlen == 0)
75 return 1;
76#ifdef HAVE_IPV6
77#if 0 /* IPv6 default separation is now pending until protocol daemon
78 can handle that. */
79 if (p->family == AF_INET6)
80 if (IN6_IS_ADDR_UNSPECIFIED (&p->u.prefix6) && p->prefixlen == 0)
81 return 1;
82#endif /* 0 */
83#endif /* HAVE_IPV6 */
84 return 0;
85}
86
ajs27da3982005-02-24 16:06:33 +000087static void
paul718e3742002-12-13 20:15:29 +000088zebra_redistribute_default (struct zserv *client)
89{
90 struct prefix_ipv4 p;
91 struct route_table *table;
92 struct route_node *rn;
93 struct rib *newrib;
94#ifdef HAVE_IPV6
95 struct prefix_ipv6 p6;
96#endif /* HAVE_IPV6 */
97
98
99 /* Lookup default route. */
100 memset (&p, 0, sizeof (struct prefix_ipv4));
101 p.family = AF_INET;
102
103 /* Lookup table. */
104 table = vrf_table (AFI_IP, SAFI_UNICAST, 0);
105 if (table)
106 {
107 rn = route_node_lookup (table, (struct prefix *)&p);
108 if (rn)
109 {
110 for (newrib = rn->info; newrib; newrib = newrib->next)
111 if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
112 && newrib->distance != DISTANCE_INFINITY)
paulb9df2d22004-05-09 09:09:59 +0000113 zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib);
paul718e3742002-12-13 20:15:29 +0000114 route_unlock_node (rn);
115 }
116 }
117
118#ifdef HAVE_IPV6
119 /* Lookup default route. */
120 memset (&p6, 0, sizeof (struct prefix_ipv6));
121 p6.family = AF_INET6;
122
123 /* Lookup table. */
124 table = vrf_table (AFI_IP6, SAFI_UNICAST, 0);
125 if (table)
126 {
127 rn = route_node_lookup (table, (struct prefix *)&p6);
128 if (rn)
129 {
130 for (newrib = rn->info; newrib; newrib = newrib->next)
131 if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
132 && newrib->distance != DISTANCE_INFINITY)
paulb9df2d22004-05-09 09:09:59 +0000133 zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib);
paul718e3742002-12-13 20:15:29 +0000134 route_unlock_node (rn);
135 }
136 }
137#endif /* HAVE_IPV6 */
138}
139
140/* Redistribute routes. */
ajs27da3982005-02-24 16:06:33 +0000141static void
paul718e3742002-12-13 20:15:29 +0000142zebra_redistribute (struct zserv *client, int type)
143{
144 struct rib *newrib;
145 struct route_table *table;
146 struct route_node *rn;
147
148 table = vrf_table (AFI_IP, SAFI_UNICAST, 0);
149 if (table)
150 for (rn = route_top (table); rn; rn = route_next (rn))
151 for (newrib = rn->info; newrib; newrib = newrib->next)
152 if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
153 && newrib->type == type
154 && newrib->distance != DISTANCE_INFINITY
155 && zebra_check_addr (&rn->p))
paulb9df2d22004-05-09 09:09:59 +0000156 zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib);
paul718e3742002-12-13 20:15:29 +0000157
158#ifdef HAVE_IPV6
159 table = vrf_table (AFI_IP6, SAFI_UNICAST, 0);
160 if (table)
161 for (rn = route_top (table); rn; rn = route_next (rn))
162 for (newrib = rn->info; newrib; newrib = newrib->next)
163 if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
164 && newrib->type == type
165 && newrib->distance != DISTANCE_INFINITY
166 && zebra_check_addr (&rn->p))
paulb9df2d22004-05-09 09:09:59 +0000167 zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib);
paul718e3742002-12-13 20:15:29 +0000168#endif /* HAVE_IPV6 */
169}
170
paul718e3742002-12-13 20:15:29 +0000171void
172redistribute_add (struct prefix *p, struct rib *rib)
173{
paul1eb8ef22005-04-07 07:30:20 +0000174 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000175 struct zserv *client;
176
paul1eb8ef22005-04-07 07:30:20 +0000177 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
178 {
179 if (is_default (p))
180 {
181 if (client->redist_default || client->redist[rib->type])
182 {
183 if (p->family == AF_INET)
184 zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, p, rib);
paul718e3742002-12-13 20:15:29 +0000185#ifdef HAVE_IPV6
paul1eb8ef22005-04-07 07:30:20 +0000186 if (p->family == AF_INET6)
187 zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, p, rib);
paul718e3742002-12-13 20:15:29 +0000188#endif /* HAVE_IPV6 */
paul1eb8ef22005-04-07 07:30:20 +0000189 }
190 }
191 else if (client->redist[rib->type])
192 {
193 if (p->family == AF_INET)
194 zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, p, rib);
paul718e3742002-12-13 20:15:29 +0000195#ifdef HAVE_IPV6
paul1eb8ef22005-04-07 07:30:20 +0000196 if (p->family == AF_INET6)
197 zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, p, rib);
paul718e3742002-12-13 20:15:29 +0000198#endif /* HAVE_IPV6 */
paul1eb8ef22005-04-07 07:30:20 +0000199 }
200 }
paul718e3742002-12-13 20:15:29 +0000201}
202
203void
204redistribute_delete (struct prefix *p, struct rib *rib)
205{
paul1eb8ef22005-04-07 07:30:20 +0000206 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000207 struct zserv *client;
208
209 /* Add DISTANCE_INFINITY check. */
210 if (rib->distance == DISTANCE_INFINITY)
211 return;
212
paul1eb8ef22005-04-07 07:30:20 +0000213 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
214 {
215 if (is_default (p))
216 {
217 if (client->redist_default || client->redist[rib->type])
218 {
219 if (p->family == AF_INET)
220 zsend_route_multipath (ZEBRA_IPV4_ROUTE_DELETE, client, p,
221 rib);
paul718e3742002-12-13 20:15:29 +0000222#ifdef HAVE_IPV6
paul1eb8ef22005-04-07 07:30:20 +0000223 if (p->family == AF_INET6)
224 zsend_route_multipath (ZEBRA_IPV6_ROUTE_DELETE, client, p,
225 rib);
226#endif /* HAVE_IPV6 */
227 }
228 }
229 else if (client->redist[rib->type])
230 {
231 if (p->family == AF_INET)
232 zsend_route_multipath (ZEBRA_IPV4_ROUTE_DELETE, client, p, rib);
paul718e3742002-12-13 20:15:29 +0000233#ifdef HAVE_IPV6
paul1eb8ef22005-04-07 07:30:20 +0000234 if (p->family == AF_INET6)
235 zsend_route_multipath (ZEBRA_IPV6_ROUTE_DELETE, client, p, rib);
236#endif /* HAVE_IPV6 */
237 }
238 }
paul718e3742002-12-13 20:15:29 +0000239}
240
241void
242zebra_redistribute_add (int command, struct zserv *client, int length)
243{
244 int type;
245
246 type = stream_getc (client->ibuf);
247
David Lamparterebf08632009-08-27 00:27:40 +0200248 if (type == 0 || type >= ZEBRA_ROUTE_MAX)
249 return;
250
251 if (! client->redist[type])
paul718e3742002-12-13 20:15:29 +0000252 {
David Lamparterebf08632009-08-27 00:27:40 +0200253 client->redist[type] = 1;
254 zebra_redistribute (client, type);
paul718e3742002-12-13 20:15:29 +0000255 }
David Lamparterebf08632009-08-27 00:27:40 +0200256}
paul718e3742002-12-13 20:15:29 +0000257
258void
259zebra_redistribute_delete (int command, struct zserv *client, int length)
260{
261 int type;
262
263 type = stream_getc (client->ibuf);
264
David Lamparterebf08632009-08-27 00:27:40 +0200265 if (type == 0 || type >= ZEBRA_ROUTE_MAX)
266 return;
267
268 client->redist[type] = 0;
269}
paul718e3742002-12-13 20:15:29 +0000270
271void
272zebra_redistribute_default_add (int command, struct zserv *client, int length)
273{
274 client->redist_default = 1;
275 zebra_redistribute_default (client);
276}
277
278void
279zebra_redistribute_default_delete (int command, struct zserv *client,
280 int length)
281{
282 client->redist_default = 0;;
283}
284
285/* Interface up information. */
286void
287zebra_interface_up_update (struct interface *ifp)
288{
paul1eb8ef22005-04-07 07:30:20 +0000289 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000290 struct zserv *client;
291
292 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +0000293 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_UP %s", ifp->name);
paul718e3742002-12-13 20:15:29 +0000294
paul1eb8ef22005-04-07 07:30:20 +0000295 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
296 zsend_interface_update (ZEBRA_INTERFACE_UP, client, ifp);
paul718e3742002-12-13 20:15:29 +0000297}
298
299/* Interface down information. */
300void
301zebra_interface_down_update (struct interface *ifp)
302{
paul1eb8ef22005-04-07 07:30:20 +0000303 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000304 struct zserv *client;
305
306 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +0000307 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DOWN %s", ifp->name);
paul718e3742002-12-13 20:15:29 +0000308
paul1eb8ef22005-04-07 07:30:20 +0000309 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
310 zsend_interface_update (ZEBRA_INTERFACE_DOWN, client, ifp);
paul718e3742002-12-13 20:15:29 +0000311}
312
313/* Interface information update. */
314void
315zebra_interface_add_update (struct interface *ifp)
316{
paul1eb8ef22005-04-07 07:30:20 +0000317 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000318 struct zserv *client;
319
320 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +0000321 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADD %s", ifp->name);
paul718e3742002-12-13 20:15:29 +0000322
paul1eb8ef22005-04-07 07:30:20 +0000323 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
324 if (client->ifinfo)
325 zsend_interface_add (client, ifp);
paul718e3742002-12-13 20:15:29 +0000326}
327
328void
329zebra_interface_delete_update (struct interface *ifp)
330{
paul1eb8ef22005-04-07 07:30:20 +0000331 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000332 struct zserv *client;
333
334 if (IS_ZEBRA_DEBUG_EVENT)
ajsb6178002004-12-07 21:12:56 +0000335 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DELETE %s", ifp->name);
paul718e3742002-12-13 20:15:29 +0000336
paul1eb8ef22005-04-07 07:30:20 +0000337 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
338 if (client->ifinfo)
339 zsend_interface_delete (client, ifp);
paul718e3742002-12-13 20:15:29 +0000340}
341
342/* Interface address addition. */
343void
344zebra_interface_address_add_update (struct interface *ifp,
345 struct connected *ifc)
346{
paul1eb8ef22005-04-07 07:30:20 +0000347 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000348 struct zserv *client;
349 struct prefix *p;
paul718e3742002-12-13 20:15:29 +0000350
351 if (IS_ZEBRA_DEBUG_EVENT)
352 {
Stephen Hemminger81cce012009-04-28 14:28:00 -0700353 char buf[INET6_ADDRSTRLEN];
354
paul718e3742002-12-13 20:15:29 +0000355 p = ifc->address;
ajsb6178002004-12-07 21:12:56 +0000356 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_ADD %s/%d on %s",
Stephen Hemminger81cce012009-04-28 14:28:00 -0700357 inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN),
ajsb6178002004-12-07 21:12:56 +0000358 p->prefixlen, ifc->ifp->name);
paul718e3742002-12-13 20:15:29 +0000359 }
360
hasso18a6dce2004-10-03 18:18:34 +0000361 router_id_add_address(ifc);
362
paul1eb8ef22005-04-07 07:30:20 +0000363 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
364 if (client->ifinfo && CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
365 zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_ADD, client, ifp, ifc);
paul718e3742002-12-13 20:15:29 +0000366}
367
368/* Interface address deletion. */
369void
370zebra_interface_address_delete_update (struct interface *ifp,
371 struct connected *ifc)
372{
paul1eb8ef22005-04-07 07:30:20 +0000373 struct listnode *node, *nnode;
paul718e3742002-12-13 20:15:29 +0000374 struct zserv *client;
375 struct prefix *p;
paul718e3742002-12-13 20:15:29 +0000376
377 if (IS_ZEBRA_DEBUG_EVENT)
378 {
Stephen Hemminger81cce012009-04-28 14:28:00 -0700379 char buf[INET6_ADDRSTRLEN];
380
paul718e3742002-12-13 20:15:29 +0000381 p = ifc->address;
ajsb6178002004-12-07 21:12:56 +0000382 zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_DELETE %s/%d on %s",
Stephen Hemminger81cce012009-04-28 14:28:00 -0700383 inet_ntop (p->family, &p->u.prefix, buf, INET6_ADDRSTRLEN),
paul718e3742002-12-13 20:15:29 +0000384 p->prefixlen, ifc->ifp->name);
385 }
386
hasso18a6dce2004-10-03 18:18:34 +0000387 router_id_del_address(ifc);
388
paul1eb8ef22005-04-07 07:30:20 +0000389 for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
390 if (client->ifinfo && CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
391 zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_DELETE, client, ifp, ifc);
paul718e3742002-12-13 20:15:29 +0000392}