Import Upstream version 1.2.2
[quagga-debian.git] / zebra / redistribute.c
1 /* 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 #include "vrf.h"
34
35 #include "zebra/rib.h"
36 #include "zebra/zserv.h"
37 #include "zebra/redistribute.h"
38 #include "zebra/debug.h"
39 #include "zebra/router-id.h"
40
41 /* master zebra server structure */
42 extern struct zebra_t zebrad;
43
44 int
45 zebra_check_addr (struct prefix *p)
46 {
47   if (p->family == AF_INET)
48     {
49       u_int32_t addr;
50
51       addr = p->u.prefix4.s_addr;
52       addr = ntohl (addr);
53
54       if (IPV4_NET127 (addr)
55           || IN_CLASSD (addr)
56           || IPV4_LINKLOCAL(addr))
57         return 0;
58     }
59 #ifdef HAVE_IPV6
60   if (p->family == AF_INET6)
61     {
62       if (IN6_IS_ADDR_LOOPBACK (&p->u.prefix6))
63         return 0;
64       if (IN6_IS_ADDR_LINKLOCAL(&p->u.prefix6))
65         return 0;
66     }
67 #endif /* HAVE_IPV6 */
68   return 1;
69 }
70
71 int
72 is_default (struct prefix *p)
73 {
74   if (p->family == AF_INET)
75     if (p->u.prefix4.s_addr == 0 && p->prefixlen == 0)
76       return 1;
77 #ifdef HAVE_IPV6
78 #if 0  /* IPv6 default separation is now pending until protocol daemon
79           can handle that. */
80   if (p->family == AF_INET6)
81     if (IN6_IS_ADDR_UNSPECIFIED (&p->u.prefix6) && p->prefixlen == 0)
82       return 1;
83 #endif /* 0 */
84 #endif /* HAVE_IPV6 */
85   return 0;
86 }
87
88 static void
89 zebra_redistribute_default (struct zserv *client, vrf_id_t vrf_id)
90 {
91   struct prefix_ipv4 p;
92   struct route_table *table;
93   struct route_node *rn;
94   struct rib *newrib;
95 #ifdef HAVE_IPV6
96   struct prefix_ipv6 p6;
97 #endif /* HAVE_IPV6 */
98
99
100   /* Lookup default route. */
101   memset (&p, 0, sizeof (struct prefix_ipv4));
102   p.family = AF_INET;
103
104   /* Lookup table.  */
105   table = zebra_vrf_table (AFI_IP, SAFI_UNICAST, vrf_id);
106   if (table)
107     {
108       rn = route_node_lookup (table, (struct prefix *)&p);
109       if (rn)
110         {
111           RNODE_FOREACH_RIB (rn, newrib)
112             if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
113                 && newrib->distance != DISTANCE_INFINITY)
114               zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib);
115           route_unlock_node (rn);
116         }
117     }
118
119 #ifdef HAVE_IPV6
120   /* Lookup default route. */
121   memset (&p6, 0, sizeof (struct prefix_ipv6));
122   p6.family = AF_INET6;
123
124   /* Lookup table.  */
125   table = zebra_vrf_table (AFI_IP6, SAFI_UNICAST, vrf_id);
126   if (table)
127     {
128       rn = route_node_lookup (table, (struct prefix *)&p6);
129       if (rn)
130         {
131           RNODE_FOREACH_RIB (rn, newrib)
132             if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
133                 && newrib->distance != DISTANCE_INFINITY)
134               zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib);
135           route_unlock_node (rn);
136         }
137     }
138 #endif /* HAVE_IPV6 */
139 }
140
141 /* Redistribute routes. */
142 static void
143 zebra_redistribute (struct zserv *client, int type, vrf_id_t vrf_id)
144 {
145   struct rib *newrib;
146   struct route_table *table;
147   struct route_node *rn;
148
149   table = zebra_vrf_table (AFI_IP, SAFI_UNICAST, vrf_id);
150   if (table)
151     for (rn = route_top (table); rn; rn = route_next (rn))
152       RNODE_FOREACH_RIB (rn, newrib)
153         {
154           if (IS_ZEBRA_DEBUG_EVENT)
155             zlog_debug("%s: checking: selected=%d, type=%d, distance=%d, zebra_check_addr=%d",
156                        __func__, CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED),
157                        newrib->type, newrib->distance, zebra_check_addr (&rn->p));
158           if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
159               && newrib->type == type
160               && newrib->distance != DISTANCE_INFINITY
161               && zebra_check_addr (&rn->p))
162             {
163               client->redist_v4_add_cnt++;
164               zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib);
165             }
166         }
167
168 #ifdef HAVE_IPV6
169   table = zebra_vrf_table (AFI_IP6, SAFI_UNICAST, vrf_id);
170   if (table)
171     for (rn = route_top (table); rn; rn = route_next (rn))
172       RNODE_FOREACH_RIB (rn, newrib)
173         if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED)
174             && newrib->type == type 
175             && newrib->distance != DISTANCE_INFINITY
176             && zebra_check_addr (&rn->p))
177           {
178             client->redist_v6_add_cnt++;
179             zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib);
180           }
181 #endif /* HAVE_IPV6 */
182 }
183
184 void
185 redistribute_add (struct prefix *p, struct rib *rib)
186 {
187   struct listnode *node, *nnode;
188   struct zserv *client;
189
190   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
191     {
192       if ((is_default (p) &&
193            vrf_bitmap_check (client->redist_default, rib->vrf_id))
194           || vrf_bitmap_check (client->redist[rib->type], rib->vrf_id))
195         {
196           if (p->family == AF_INET)
197             {
198               client->redist_v4_add_cnt++;
199               zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, p, rib);
200             }
201           if (p->family == AF_INET6)
202             {
203               client->redist_v6_add_cnt++;
204               zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, p, rib);
205             }
206         }
207     }
208 }
209
210 void
211 redistribute_delete (struct prefix *p, struct rib *rib)
212 {
213   struct listnode *node, *nnode;
214   struct zserv *client;
215
216   /* Add DISTANCE_INFINITY check. */
217   if (rib->distance == DISTANCE_INFINITY)
218     return;
219
220   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
221     {
222       if ((is_default (p) &&
223            vrf_bitmap_check (client->redist_default, rib->vrf_id))
224           || vrf_bitmap_check (client->redist[rib->type], rib->vrf_id))
225         {
226           if (p->family == AF_INET)
227             zsend_route_multipath (ZEBRA_IPV4_ROUTE_DELETE, client, p, rib);
228 #ifdef HAVE_IPV6
229           if (p->family == AF_INET6)
230             zsend_route_multipath (ZEBRA_IPV6_ROUTE_DELETE, client, p, rib);
231 #endif /* HAVE_IPV6 */
232         }
233     }
234 }
235
236 void
237 zebra_redistribute_add (int command, struct zserv *client, int length,
238     vrf_id_t vrf_id)
239 {
240   int type;
241
242   type = stream_getc (client->ibuf);
243
244   if (type == 0 || type >= ZEBRA_ROUTE_MAX)
245     return;
246
247   if (! vrf_bitmap_check (client->redist[type], vrf_id))
248     {
249       vrf_bitmap_set (client->redist[type], vrf_id);
250       zebra_redistribute (client, type, vrf_id);
251     }
252 }
253
254 void
255 zebra_redistribute_delete (int command, struct zserv *client, int length,
256     vrf_id_t vrf_id)
257 {
258   int type;
259
260   type = stream_getc (client->ibuf);
261
262   if (type == 0 || type >= ZEBRA_ROUTE_MAX)
263     return;
264
265   vrf_bitmap_unset (client->redist[type], vrf_id);
266 }
267
268 void
269 zebra_redistribute_default_add (int command, struct zserv *client, int length,
270     vrf_id_t vrf_id)
271 {
272   vrf_bitmap_set (client->redist_default, vrf_id);
273   zebra_redistribute_default (client, vrf_id);
274 }     
275
276 void
277 zebra_redistribute_default_delete (int command, struct zserv *client,
278     int length, vrf_id_t vrf_id)
279 {
280   vrf_bitmap_unset (client->redist_default, vrf_id);
281 }     
282
283 /* Interface up information. */
284 void
285 zebra_interface_up_update (struct interface *ifp)
286 {
287   struct listnode *node, *nnode;
288   struct zserv *client;
289
290   if (IS_ZEBRA_DEBUG_EVENT)
291     zlog_debug ("MESSAGE: ZEBRA_INTERFACE_UP %s", ifp->name);
292
293   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
294     if (client->ifinfo)
295       {
296         zsend_interface_update (ZEBRA_INTERFACE_UP, client, ifp);
297         zsend_interface_link_params (client, ifp);
298       }
299 }
300
301 /* Interface down information. */
302 void
303 zebra_interface_down_update (struct interface *ifp)
304 {
305   struct listnode *node, *nnode;
306   struct zserv *client;
307
308   if (IS_ZEBRA_DEBUG_EVENT)
309     zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DOWN %s", ifp->name);
310
311   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
312     {
313       zsend_interface_update (ZEBRA_INTERFACE_DOWN, client, ifp);
314     }
315 }
316
317 /* Interface information update. */
318 void
319 zebra_interface_add_update (struct interface *ifp)
320 {
321   struct listnode *node, *nnode;
322   struct zserv *client;
323
324   if (IS_ZEBRA_DEBUG_EVENT)
325     zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADD %s", ifp->name);
326     
327   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
328     if (client->ifinfo)
329       {
330         client->ifadd_cnt++;
331         zsend_interface_add (client, ifp);
332         zsend_interface_link_params (client, ifp);
333       }
334 }
335
336 void
337 zebra_interface_delete_update (struct interface *ifp)
338 {
339   struct listnode *node, *nnode;
340   struct zserv *client;
341
342   if (IS_ZEBRA_DEBUG_EVENT)
343     zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DELETE %s", ifp->name);
344
345   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
346     if (client->ifinfo)
347       {
348         client->ifdel_cnt++;
349         zsend_interface_delete (client, ifp);
350       }
351 }
352
353 /* Interface address addition. */
354 void
355 zebra_interface_address_add_update (struct interface *ifp,
356                                     struct connected *ifc)
357 {
358   struct listnode *node, *nnode;
359   struct zserv *client;
360   struct prefix *p;
361
362   if (IS_ZEBRA_DEBUG_EVENT)
363     {
364       char buf[PREFIX_STRLEN];
365
366       p = ifc->address;
367       zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_ADD %s on %s",
368                   prefix2str (p, buf, sizeof(buf)),
369                   ifc->ifp->name);
370     }
371
372   if (!CHECK_FLAG(ifc->conf, ZEBRA_IFC_REAL))
373     zlog_warn("WARNING: advertising address to clients that is not yet usable.");
374
375   router_id_add_address(ifc);
376
377   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
378     if (client->ifinfo && CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
379       {
380         client->connected_rt_add_cnt++;
381         zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_ADD, client, ifp, ifc);
382       }
383 }
384
385 /* Interface address deletion. */
386 void
387 zebra_interface_address_delete_update (struct interface *ifp,
388                                        struct connected *ifc)
389 {
390   struct listnode *node, *nnode;
391   struct zserv *client;
392   struct prefix *p;
393
394   if (IS_ZEBRA_DEBUG_EVENT)
395     {
396       char buf[PREFIX_STRLEN];
397
398       p = ifc->address;
399       zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_DELETE %s on %s",
400                   prefix2str (p, buf, sizeof(buf)),
401                   ifc->ifp->name);
402     }
403
404   router_id_del_address(ifc);
405
406   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
407     if (client->ifinfo && CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
408       {
409         client->connected_rt_del_cnt++;
410         zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_DELETE, client, ifp, ifc);
411       }
412 }
413
414 /* Interface parameters update */
415 void
416 zebra_interface_parameters_update (struct interface *ifp)
417 {
418   struct listnode *node, *nnode;
419   struct zserv *client;
420
421   if (IS_ZEBRA_DEBUG_EVENT)
422     zlog_debug ("MESSAGE: ZEBRA_INTERFACE_LINK_PARAMS %s", ifp->name);
423
424   for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client))
425     if (client->ifinfo)
426       zsend_interface_link_params (client, ifp);
427 }