paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 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 | |
| 34 | #include "zebra/rib.h" |
| 35 | #include "zebra/zserv.h" |
| 36 | #include "zebra/redistribute.h" |
| 37 | #include "zebra/debug.h" |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 38 | #include "zebra/router-id.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 39 | |
paul | b21b19c | 2003-06-15 01:28:29 +0000 | [diff] [blame] | 40 | /* master zebra server structure */ |
| 41 | extern struct zebra_t zebrad; |
| 42 | |
ajs | 27da398 | 2005-02-24 16:06:33 +0000 | [diff] [blame] | 43 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 44 | zebra_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 | |
| 53 | if (IPV4_NET127 (addr) || IN_CLASSD (addr)) |
| 54 | return 0; |
| 55 | } |
| 56 | #ifdef HAVE_IPV6 |
| 57 | if (p->family == AF_INET6) |
| 58 | { |
| 59 | if (IN6_IS_ADDR_LOOPBACK (&p->u.prefix6)) |
| 60 | return 0; |
| 61 | if (IN6_IS_ADDR_LINKLOCAL(&p->u.prefix6)) |
| 62 | return 0; |
| 63 | } |
| 64 | #endif /* HAVE_IPV6 */ |
| 65 | return 1; |
| 66 | } |
| 67 | |
ajs | 27da398 | 2005-02-24 16:06:33 +0000 | [diff] [blame] | 68 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 69 | is_default (struct prefix *p) |
| 70 | { |
| 71 | if (p->family == AF_INET) |
| 72 | if (p->u.prefix4.s_addr == 0 && p->prefixlen == 0) |
| 73 | return 1; |
| 74 | #ifdef HAVE_IPV6 |
| 75 | #if 0 /* IPv6 default separation is now pending until protocol daemon |
| 76 | can handle that. */ |
| 77 | if (p->family == AF_INET6) |
| 78 | if (IN6_IS_ADDR_UNSPECIFIED (&p->u.prefix6) && p->prefixlen == 0) |
| 79 | return 1; |
| 80 | #endif /* 0 */ |
| 81 | #endif /* HAVE_IPV6 */ |
| 82 | return 0; |
| 83 | } |
| 84 | |
ajs | 27da398 | 2005-02-24 16:06:33 +0000 | [diff] [blame] | 85 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 86 | zebra_redistribute_default (struct zserv *client) |
| 87 | { |
| 88 | struct prefix_ipv4 p; |
| 89 | struct route_table *table; |
| 90 | struct route_node *rn; |
| 91 | struct rib *newrib; |
| 92 | #ifdef HAVE_IPV6 |
| 93 | struct prefix_ipv6 p6; |
| 94 | #endif /* HAVE_IPV6 */ |
| 95 | |
| 96 | |
| 97 | /* Lookup default route. */ |
| 98 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 99 | p.family = AF_INET; |
| 100 | |
| 101 | /* Lookup table. */ |
| 102 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 103 | if (table) |
| 104 | { |
| 105 | rn = route_node_lookup (table, (struct prefix *)&p); |
| 106 | if (rn) |
| 107 | { |
| 108 | for (newrib = rn->info; newrib; newrib = newrib->next) |
| 109 | if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED) |
| 110 | && newrib->distance != DISTANCE_INFINITY) |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 111 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 112 | route_unlock_node (rn); |
| 113 | } |
| 114 | } |
| 115 | |
| 116 | #ifdef HAVE_IPV6 |
| 117 | /* Lookup default route. */ |
| 118 | memset (&p6, 0, sizeof (struct prefix_ipv6)); |
| 119 | p6.family = AF_INET6; |
| 120 | |
| 121 | /* Lookup table. */ |
| 122 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 123 | if (table) |
| 124 | { |
| 125 | rn = route_node_lookup (table, (struct prefix *)&p6); |
| 126 | if (rn) |
| 127 | { |
| 128 | for (newrib = rn->info; newrib; newrib = newrib->next) |
| 129 | if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED) |
| 130 | && newrib->distance != DISTANCE_INFINITY) |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 131 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 132 | route_unlock_node (rn); |
| 133 | } |
| 134 | } |
| 135 | #endif /* HAVE_IPV6 */ |
| 136 | } |
| 137 | |
| 138 | /* Redistribute routes. */ |
ajs | 27da398 | 2005-02-24 16:06:33 +0000 | [diff] [blame] | 139 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 140 | zebra_redistribute (struct zserv *client, int type) |
| 141 | { |
| 142 | struct rib *newrib; |
| 143 | struct route_table *table; |
| 144 | struct route_node *rn; |
| 145 | |
| 146 | table = vrf_table (AFI_IP, SAFI_UNICAST, 0); |
| 147 | if (table) |
| 148 | for (rn = route_top (table); rn; rn = route_next (rn)) |
| 149 | for (newrib = rn->info; newrib; newrib = newrib->next) |
| 150 | if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED) |
| 151 | && newrib->type == type |
| 152 | && newrib->distance != DISTANCE_INFINITY |
| 153 | && zebra_check_addr (&rn->p)) |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 154 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, &rn->p, newrib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 155 | |
| 156 | #ifdef HAVE_IPV6 |
| 157 | table = vrf_table (AFI_IP6, SAFI_UNICAST, 0); |
| 158 | if (table) |
| 159 | for (rn = route_top (table); rn; rn = route_next (rn)) |
| 160 | for (newrib = rn->info; newrib; newrib = newrib->next) |
| 161 | if (CHECK_FLAG (newrib->flags, ZEBRA_FLAG_SELECTED) |
| 162 | && newrib->type == type |
| 163 | && newrib->distance != DISTANCE_INFINITY |
| 164 | && zebra_check_addr (&rn->p)) |
paul | b9df2d2 | 2004-05-09 09:09:59 +0000 | [diff] [blame] | 165 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, &rn->p, newrib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 166 | #endif /* HAVE_IPV6 */ |
| 167 | } |
| 168 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 169 | void |
| 170 | redistribute_add (struct prefix *p, struct rib *rib) |
| 171 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 172 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 173 | struct zserv *client; |
| 174 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 175 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 176 | { |
| 177 | if (is_default (p)) |
| 178 | { |
| 179 | if (client->redist_default || client->redist[rib->type]) |
| 180 | { |
| 181 | if (p->family == AF_INET) |
| 182 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, p, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 183 | #ifdef HAVE_IPV6 |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 184 | if (p->family == AF_INET6) |
| 185 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, p, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 186 | #endif /* HAVE_IPV6 */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 187 | } |
| 188 | } |
| 189 | else if (client->redist[rib->type]) |
| 190 | { |
| 191 | if (p->family == AF_INET) |
| 192 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_ADD, client, p, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | #ifdef HAVE_IPV6 |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 194 | if (p->family == AF_INET6) |
| 195 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_ADD, client, p, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 196 | #endif /* HAVE_IPV6 */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 197 | } |
| 198 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | void |
| 202 | redistribute_delete (struct prefix *p, struct rib *rib) |
| 203 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 204 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 205 | struct zserv *client; |
| 206 | |
| 207 | /* Add DISTANCE_INFINITY check. */ |
| 208 | if (rib->distance == DISTANCE_INFINITY) |
| 209 | return; |
| 210 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 211 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 212 | { |
| 213 | if (is_default (p)) |
| 214 | { |
| 215 | if (client->redist_default || client->redist[rib->type]) |
| 216 | { |
| 217 | if (p->family == AF_INET) |
| 218 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_DELETE, client, p, |
| 219 | rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 220 | #ifdef HAVE_IPV6 |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 221 | if (p->family == AF_INET6) |
| 222 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_DELETE, client, p, |
| 223 | rib); |
| 224 | #endif /* HAVE_IPV6 */ |
| 225 | } |
| 226 | } |
| 227 | else if (client->redist[rib->type]) |
| 228 | { |
| 229 | if (p->family == AF_INET) |
| 230 | zsend_route_multipath (ZEBRA_IPV4_ROUTE_DELETE, client, p, rib); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 231 | #ifdef HAVE_IPV6 |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 232 | if (p->family == AF_INET6) |
| 233 | zsend_route_multipath (ZEBRA_IPV6_ROUTE_DELETE, client, p, rib); |
| 234 | #endif /* HAVE_IPV6 */ |
| 235 | } |
| 236 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | void |
| 240 | zebra_redistribute_add (int command, struct zserv *client, int length) |
| 241 | { |
| 242 | int type; |
| 243 | |
| 244 | type = stream_getc (client->ibuf); |
| 245 | |
| 246 | switch (type) |
| 247 | { |
| 248 | case ZEBRA_ROUTE_KERNEL: |
| 249 | case ZEBRA_ROUTE_CONNECT: |
| 250 | case ZEBRA_ROUTE_STATIC: |
| 251 | case ZEBRA_ROUTE_RIP: |
| 252 | case ZEBRA_ROUTE_RIPNG: |
| 253 | case ZEBRA_ROUTE_OSPF: |
| 254 | case ZEBRA_ROUTE_OSPF6: |
| 255 | case ZEBRA_ROUTE_BGP: |
| 256 | if (! client->redist[type]) |
| 257 | { |
| 258 | client->redist[type] = 1; |
| 259 | zebra_redistribute (client, type); |
| 260 | } |
| 261 | break; |
| 262 | default: |
| 263 | break; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | void |
| 268 | zebra_redistribute_delete (int command, struct zserv *client, int length) |
| 269 | { |
| 270 | int type; |
| 271 | |
| 272 | type = stream_getc (client->ibuf); |
| 273 | |
| 274 | switch (type) |
| 275 | { |
| 276 | case ZEBRA_ROUTE_KERNEL: |
| 277 | case ZEBRA_ROUTE_CONNECT: |
| 278 | case ZEBRA_ROUTE_STATIC: |
| 279 | case ZEBRA_ROUTE_RIP: |
| 280 | case ZEBRA_ROUTE_RIPNG: |
| 281 | case ZEBRA_ROUTE_OSPF: |
| 282 | case ZEBRA_ROUTE_OSPF6: |
| 283 | case ZEBRA_ROUTE_BGP: |
| 284 | client->redist[type] = 0; |
| 285 | break; |
| 286 | default: |
| 287 | break; |
| 288 | } |
| 289 | } |
| 290 | |
| 291 | void |
| 292 | zebra_redistribute_default_add (int command, struct zserv *client, int length) |
| 293 | { |
| 294 | client->redist_default = 1; |
| 295 | zebra_redistribute_default (client); |
| 296 | } |
| 297 | |
| 298 | void |
| 299 | zebra_redistribute_default_delete (int command, struct zserv *client, |
| 300 | int length) |
| 301 | { |
| 302 | client->redist_default = 0;; |
| 303 | } |
| 304 | |
| 305 | /* Interface up information. */ |
| 306 | void |
| 307 | zebra_interface_up_update (struct interface *ifp) |
| 308 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 309 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 310 | struct zserv *client; |
| 311 | |
| 312 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 313 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_UP %s", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 315 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 316 | zsend_interface_update (ZEBRA_INTERFACE_UP, client, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | /* Interface down information. */ |
| 320 | void |
| 321 | zebra_interface_down_update (struct interface *ifp) |
| 322 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 323 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 324 | struct zserv *client; |
| 325 | |
| 326 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 327 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DOWN %s", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 328 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 329 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 330 | zsend_interface_update (ZEBRA_INTERFACE_DOWN, client, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* Interface information update. */ |
| 334 | void |
| 335 | zebra_interface_add_update (struct interface *ifp) |
| 336 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 337 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 338 | struct zserv *client; |
| 339 | |
| 340 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 341 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADD %s", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 342 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 343 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 344 | if (client->ifinfo) |
| 345 | zsend_interface_add (client, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 346 | } |
| 347 | |
paul | c50ae8b | 2004-05-11 11:31:07 +0000 | [diff] [blame] | 348 | /* |
| 349 | * This function is only called when support for |
| 350 | * RTM_IFANNOUNCE or AF_NETLINK sockets (RTM_DELLINK message) |
| 351 | * is available. It is not called on Solaris. |
| 352 | */ |
| 353 | #if (defined(RTM_IFANNOUNCE) || defined(HAVE_NETLINK)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 354 | void |
| 355 | zebra_interface_delete_update (struct interface *ifp) |
| 356 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 357 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 358 | struct zserv *client; |
| 359 | |
| 360 | if (IS_ZEBRA_DEBUG_EVENT) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 361 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_DELETE %s", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 362 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 363 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 364 | if (client->ifinfo) |
| 365 | zsend_interface_delete (client, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 366 | } |
paul | c50ae8b | 2004-05-11 11:31:07 +0000 | [diff] [blame] | 367 | #endif /* defined(RTM_IFANNOUNCE) || defined(HAVE_NETLINK) */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 368 | |
| 369 | /* Interface address addition. */ |
| 370 | void |
| 371 | zebra_interface_address_add_update (struct interface *ifp, |
| 372 | struct connected *ifc) |
| 373 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 374 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | struct zserv *client; |
| 376 | struct prefix *p; |
| 377 | char buf[BUFSIZ]; |
| 378 | |
| 379 | if (IS_ZEBRA_DEBUG_EVENT) |
| 380 | { |
| 381 | p = ifc->address; |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 382 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_ADD %s/%d on %s", |
| 383 | inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ), |
| 384 | p->prefixlen, ifc->ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 385 | } |
| 386 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 387 | router_id_add_address(ifc); |
| 388 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 389 | 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_ADD, client, ifp, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | /* Interface address deletion. */ |
| 395 | void |
| 396 | zebra_interface_address_delete_update (struct interface *ifp, |
| 397 | struct connected *ifc) |
| 398 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 399 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 400 | struct zserv *client; |
| 401 | struct prefix *p; |
| 402 | char buf[BUFSIZ]; |
| 403 | |
| 404 | if (IS_ZEBRA_DEBUG_EVENT) |
| 405 | { |
| 406 | p = ifc->address; |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 407 | zlog_debug ("MESSAGE: ZEBRA_INTERFACE_ADDRESS_DELETE %s/%d on %s", |
| 408 | inet_ntop (p->family, &p->u.prefix, buf, BUFSIZ), |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 409 | p->prefixlen, ifc->ifp->name); |
| 410 | } |
| 411 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 412 | router_id_del_address(ifc); |
| 413 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 414 | for (ALL_LIST_ELEMENTS (zebrad.client_list, node, nnode, client)) |
| 415 | if (client->ifinfo && CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL)) |
| 416 | zsend_interface_address (ZEBRA_INTERFACE_ADDRESS_DELETE, client, ifp, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 417 | } |