paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Zebra connect library for OSPFd |
| 3 | * Copyright (C) 1997, 98, 99, 2000 Kunihiro Ishiguro, Toshiaki Takada |
| 4 | * |
| 5 | * This file is part of GNU Zebra. |
| 6 | * |
| 7 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2, or (at your option) any |
| 10 | * later version. |
| 11 | * |
| 12 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with GNU Zebra; see the file COPYING. If not, write to the |
| 19 | * Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
| 20 | * Boston, MA 02111-1307, USA. |
| 21 | */ |
| 22 | |
| 23 | #include <zebra.h> |
| 24 | |
| 25 | #include "thread.h" |
| 26 | #include "command.h" |
| 27 | #include "network.h" |
| 28 | #include "prefix.h" |
| 29 | #include "routemap.h" |
| 30 | #include "table.h" |
| 31 | #include "stream.h" |
| 32 | #include "memory.h" |
| 33 | #include "zclient.h" |
| 34 | #include "filter.h" |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 35 | #include "plist.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 36 | #include "log.h" |
| 37 | |
| 38 | #include "ospfd/ospfd.h" |
| 39 | #include "ospfd/ospf_interface.h" |
| 40 | #include "ospfd/ospf_ism.h" |
| 41 | #include "ospfd/ospf_asbr.h" |
| 42 | #include "ospfd/ospf_asbr.h" |
| 43 | #include "ospfd/ospf_abr.h" |
| 44 | #include "ospfd/ospf_lsa.h" |
| 45 | #include "ospfd/ospf_dump.h" |
| 46 | #include "ospfd/ospf_route.h" |
| 47 | #include "ospfd/ospf_zebra.h" |
| 48 | #ifdef HAVE_SNMP |
| 49 | #include "ospfd/ospf_snmp.h" |
| 50 | #endif /* HAVE_SNMP */ |
| 51 | |
| 52 | /* Zebra structure to hold current status. */ |
| 53 | struct zclient *zclient = NULL; |
| 54 | |
| 55 | /* For registering threads. */ |
| 56 | extern struct thread_master *master; |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 57 | struct in_addr router_id_zebra; |
| 58 | |
| 59 | /* Router-id update message from zebra. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 60 | static int |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 61 | ospf_router_id_update_zebra (int command, struct zclient *zclient, |
| 62 | zebra_size_t length) |
| 63 | { |
| 64 | struct ospf *ospf; |
| 65 | struct prefix router_id; |
| 66 | zebra_router_id_update_read(zclient->ibuf,&router_id); |
| 67 | |
Andrew J. Schorr | 7f643eb | 2006-11-30 16:17:02 +0000 | [diff] [blame] | 68 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
| 69 | { |
| 70 | char buf[128]; |
| 71 | prefix2str(&router_id, buf, sizeof(buf)); |
| 72 | zlog_debug("Zebra rcvd: router id update %s", buf); |
| 73 | } |
| 74 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 75 | router_id_zebra = router_id.u.prefix4; |
| 76 | |
| 77 | ospf = ospf_lookup (); |
paul | b29800a | 2005-11-20 14:50:45 +0000 | [diff] [blame] | 78 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 79 | if (ospf != NULL) |
paul | b29800a | 2005-11-20 14:50:45 +0000 | [diff] [blame] | 80 | ospf_router_id_update (ospf); |
| 81 | |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 82 | return 0; |
| 83 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 84 | |
| 85 | /* Inteface addition message from zebra. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 86 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 87 | ospf_interface_add (int command, struct zclient *zclient, zebra_size_t length) |
| 88 | { |
| 89 | struct interface *ifp; |
| 90 | |
| 91 | ifp = zebra_interface_add_read (zclient->ibuf); |
| 92 | |
| 93 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 94 | zlog_debug ("Zebra: interface add %s index %d flags %ld metric %d mtu %d", |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 95 | ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 96 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 97 | assert (ifp->info); |
paul | f2c8065 | 2002-12-13 21:44:27 +0000 | [diff] [blame] | 98 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 99 | if (!OSPF_IF_PARAM_CONFIGURED (IF_DEF_PARAMS (ifp), type)) |
| 100 | { |
| 101 | SET_IF_PARAM (IF_DEF_PARAMS (ifp), type); |
ajs | bc18d61 | 2004-12-15 15:07:19 +0000 | [diff] [blame] | 102 | IF_DEF_PARAMS (ifp)->type = ospf_default_iftype(ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 103 | } |
| 104 | |
Joakim Tjernlund | a49eb30 | 2008-09-02 19:06:31 +0100 | [diff] [blame] | 105 | ospf_if_update (NULL, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 106 | |
| 107 | #ifdef HAVE_SNMP |
| 108 | ospf_snmp_if_update (ifp); |
| 109 | #endif /* HAVE_SNMP */ |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 114 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 115 | ospf_interface_delete (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 116 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 117 | { |
| 118 | struct interface *ifp; |
| 119 | struct stream *s; |
| 120 | struct route_node *rn; |
| 121 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 122 | s = zclient->ibuf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 123 | /* zebra_interface_state_read() updates interface structure in iflist */ |
| 124 | ifp = zebra_interface_state_read (s); |
| 125 | |
| 126 | if (ifp == NULL) |
| 127 | return 0; |
| 128 | |
| 129 | if (if_is_up (ifp)) |
| 130 | zlog_warn ("Zebra: got delete of %s, but interface is still up", |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 131 | ifp->name); |
| 132 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 133 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 134 | zlog_debug |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 135 | ("Zebra: interface delete %s index %d flags %ld metric %d mtu %d", |
| 136 | ifp->name, ifp->ifindex, ifp->flags, ifp->metric, ifp->mtu); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 137 | |
| 138 | #ifdef HAVE_SNMP |
| 139 | ospf_snmp_if_delete (ifp); |
| 140 | #endif /* HAVE_SNMP */ |
| 141 | |
| 142 | for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn)) |
| 143 | if (rn->info) |
| 144 | ospf_if_free ((struct ospf_interface *) rn->info); |
| 145 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 146 | ifp->ifindex = IFINDEX_INTERNAL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 147 | return 0; |
| 148 | } |
| 149 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 150 | static struct interface * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 151 | zebra_interface_if_lookup (struct stream *s) |
| 152 | { |
ajs | 21fefa9 | 2005-04-02 23:16:41 +0000 | [diff] [blame] | 153 | char ifname_tmp[INTERFACE_NAMSIZ]; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 154 | |
| 155 | /* Read interface name. */ |
| 156 | stream_get (ifname_tmp, s, INTERFACE_NAMSIZ); |
| 157 | |
ajs | d2fc889 | 2005-04-02 18:38:43 +0000 | [diff] [blame] | 158 | /* And look it up. */ |
ajs | 21fefa9 | 2005-04-02 23:16:41 +0000 | [diff] [blame] | 159 | return if_lookup_by_name_len(ifname_tmp, |
| 160 | strnlen(ifname_tmp, INTERFACE_NAMSIZ)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 161 | } |
| 162 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 163 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 164 | ospf_interface_state_up (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 165 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 166 | { |
| 167 | struct interface *ifp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 168 | struct ospf_interface *oi; |
| 169 | struct route_node *rn; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 170 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 171 | ifp = zebra_interface_if_lookup (zclient->ibuf); |
| 172 | |
| 173 | if (ifp == NULL) |
| 174 | return 0; |
| 175 | |
| 176 | /* Interface is already up. */ |
paul | 2e3b2e4 | 2002-12-13 21:03:13 +0000 | [diff] [blame] | 177 | if (if_is_operative (ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 178 | { |
| 179 | /* Temporarily keep ifp values. */ |
ajs | a608bbf | 2005-03-29 17:03:49 +0000 | [diff] [blame] | 180 | struct interface if_tmp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 181 | memcpy (&if_tmp, ifp, sizeof (struct interface)); |
| 182 | |
| 183 | zebra_interface_if_set_value (zclient->ibuf, ifp); |
| 184 | |
| 185 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 186 | zlog_debug ("Zebra: Interface[%s] state update.", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 187 | |
| 188 | if (if_tmp.bandwidth != ifp->bandwidth) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 189 | { |
| 190 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 191 | zlog_debug ("Zebra: Interface[%s] bandwidth change %d -> %d.", |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 192 | ifp->name, if_tmp.bandwidth, ifp->bandwidth); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 193 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 194 | ospf_if_recalculate_output_cost (ifp); |
| 195 | } |
ajs | a608bbf | 2005-03-29 17:03:49 +0000 | [diff] [blame] | 196 | |
| 197 | if (if_tmp.mtu != ifp->mtu) |
| 198 | { |
| 199 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
| 200 | zlog_debug ("Zebra: Interface[%s] MTU change %u -> %u.", |
| 201 | ifp->name, if_tmp.mtu, ifp->mtu); |
| 202 | |
| 203 | /* Must reset the interface (simulate down/up) when MTU changes. */ |
| 204 | ospf_if_reset(ifp); |
| 205 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 206 | return 0; |
| 207 | } |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 208 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 209 | zebra_interface_if_set_value (zclient->ibuf, ifp); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 210 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 211 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 212 | zlog_debug ("Zebra: Interface[%s] state change to up.", ifp->name); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 213 | |
| 214 | for (rn = route_top (IF_OIFS (ifp)); rn; rn = route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 215 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 216 | if ((oi = rn->info) == NULL) |
| 217 | continue; |
| 218 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 219 | ospf_if_up (oi); |
| 220 | } |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 221 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 222 | return 0; |
| 223 | } |
| 224 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 225 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 226 | ospf_interface_state_down (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 227 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 228 | { |
| 229 | struct interface *ifp; |
| 230 | struct ospf_interface *oi; |
| 231 | struct route_node *node; |
| 232 | |
| 233 | ifp = zebra_interface_state_read (zclient->ibuf); |
| 234 | |
| 235 | if (ifp == NULL) |
| 236 | return 0; |
| 237 | |
| 238 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 239 | zlog_debug ("Zebra: Interface[%s] state change to down.", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 240 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 241 | for (node = route_top (IF_OIFS (ifp)); node; node = route_next (node)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 242 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 243 | if ((oi = node->info) == NULL) |
| 244 | continue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 245 | ospf_if_down (oi); |
| 246 | } |
| 247 | |
| 248 | return 0; |
| 249 | } |
| 250 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 251 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 252 | ospf_interface_address_add (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 253 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 254 | { |
| 255 | struct connected *c; |
| 256 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 257 | c = zebra_interface_address_read (command, zclient->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 258 | |
| 259 | if (c == NULL) |
| 260 | return 0; |
| 261 | |
Andrew J. Schorr | 7f643eb | 2006-11-30 16:17:02 +0000 | [diff] [blame] | 262 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
| 263 | { |
| 264 | char buf[128]; |
| 265 | prefix2str(c->address, buf, sizeof(buf)); |
| 266 | zlog_debug("Zebra: interface %s address add %s", c->ifp->name, buf); |
| 267 | } |
| 268 | |
Joakim Tjernlund | a49eb30 | 2008-09-02 19:06:31 +0100 | [diff] [blame] | 269 | ospf_if_update (NULL, c->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 270 | |
| 271 | #ifdef HAVE_SNMP |
| 272 | ospf_snmp_if_update (c->ifp); |
| 273 | #endif /* HAVE_SNMP */ |
| 274 | |
| 275 | return 0; |
| 276 | } |
| 277 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 278 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 279 | ospf_interface_address_delete (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 280 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 281 | { |
| 282 | struct connected *c; |
| 283 | struct interface *ifp; |
| 284 | struct ospf_interface *oi; |
| 285 | struct route_node *rn; |
| 286 | struct prefix p; |
| 287 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 288 | c = zebra_interface_address_read (command, zclient->ibuf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 289 | |
| 290 | if (c == NULL) |
| 291 | return 0; |
| 292 | |
Andrew J. Schorr | 7f643eb | 2006-11-30 16:17:02 +0000 | [diff] [blame] | 293 | if (IS_DEBUG_OSPF (zebra, ZEBRA_INTERFACE)) |
| 294 | { |
| 295 | char buf[128]; |
| 296 | prefix2str(c->address, buf, sizeof(buf)); |
| 297 | zlog_debug("Zebra: interface %s address delete %s", c->ifp->name, buf); |
| 298 | } |
| 299 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 300 | ifp = c->ifp; |
| 301 | p = *c->address; |
| 302 | p.prefixlen = IPV4_MAX_PREFIXLEN; |
| 303 | |
| 304 | rn = route_node_lookup (IF_OIFS (ifp), &p); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 305 | if (!rn) |
paul | 98429f6 | 2006-01-10 22:11:54 +0000 | [diff] [blame] | 306 | { |
| 307 | connected_free (c); |
| 308 | return 0; |
| 309 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 310 | |
| 311 | assert (rn->info); |
| 312 | oi = rn->info; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 313 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | /* Call interface hook functions to clean up */ |
| 315 | ospf_if_free (oi); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 316 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 317 | #ifdef HAVE_SNMP |
| 318 | ospf_snmp_if_update (c->ifp); |
| 319 | #endif /* HAVE_SNMP */ |
| 320 | |
| 321 | connected_free (c); |
| 322 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 323 | return 0; |
| 324 | } |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 325 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 326 | void |
| 327 | ospf_zebra_add (struct prefix_ipv4 *p, struct ospf_route *or) |
| 328 | { |
| 329 | u_char message; |
| 330 | u_char distance; |
| 331 | u_char flags; |
| 332 | int psize; |
| 333 | struct stream *s; |
| 334 | struct ospf_path *path; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 335 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 336 | |
| 337 | if (zclient->redist[ZEBRA_ROUTE_OSPF]) |
| 338 | { |
| 339 | message = 0; |
| 340 | flags = 0; |
| 341 | |
| 342 | /* OSPF pass nexthop and metric */ |
| 343 | SET_FLAG (message, ZAPI_MESSAGE_NEXTHOP); |
| 344 | SET_FLAG (message, ZAPI_MESSAGE_METRIC); |
| 345 | |
| 346 | /* Distance value. */ |
| 347 | distance = ospf_distance_apply (p, or); |
| 348 | if (distance) |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 349 | SET_FLAG (message, ZAPI_MESSAGE_DISTANCE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 350 | |
| 351 | /* Make packet. */ |
| 352 | s = zclient->obuf; |
| 353 | stream_reset (s); |
| 354 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 355 | /* Put command, type, flags, message. */ |
paul | c637171 | 2006-01-17 17:49:53 +0000 | [diff] [blame] | 356 | zclient_create_header (s, ZEBRA_IPV4_ROUTE_ADD); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 357 | stream_putc (s, ZEBRA_ROUTE_OSPF); |
| 358 | stream_putc (s, flags); |
| 359 | stream_putc (s, message); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 360 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 361 | /* Put prefix information. */ |
| 362 | psize = PSIZE (p->prefixlen); |
| 363 | stream_putc (s, p->prefixlen); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 364 | stream_write (s, (u_char *) & p->prefix, psize); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 365 | |
| 366 | /* Nexthop count. */ |
paul | 96735ee | 2003-08-10 02:51:22 +0000 | [diff] [blame] | 367 | stream_putc (s, or->paths->count); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 368 | |
| 369 | /* Nexthop, ifindex, distance and metric information. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 370 | for (ALL_LIST_ELEMENTS_RO (or->paths, node, path)) |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 371 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 372 | if (path->nexthop.s_addr != INADDR_ANY) |
| 373 | { |
| 374 | stream_putc (s, ZEBRA_NEXTHOP_IPV4); |
| 375 | stream_put_in_addr (s, &path->nexthop); |
| 376 | } |
| 377 | else |
| 378 | { |
| 379 | stream_putc (s, ZEBRA_NEXTHOP_IFINDEX); |
| 380 | if (path->oi) |
| 381 | stream_putl (s, path->oi->ifp->ifindex); |
| 382 | else |
| 383 | stream_putl (s, 0); |
| 384 | } |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 385 | |
| 386 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
| 387 | { |
Andrew J. Schorr | 56b3ea0 | 2007-03-14 20:21:43 +0000 | [diff] [blame] | 388 | char buf[2][INET_ADDRSTRLEN]; |
| 389 | zlog_debug("Zebra: Route add %s/%d nexthop %s", |
| 390 | inet_ntop(AF_INET, &p->prefix, |
| 391 | buf[0], sizeof(buf[0])), |
| 392 | p->prefixlen, |
| 393 | inet_ntop(AF_INET, &path->nexthop, |
| 394 | buf[1], sizeof(buf[1]))); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 395 | } |
| 396 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 397 | |
| 398 | if (CHECK_FLAG (message, ZAPI_MESSAGE_DISTANCE)) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 399 | stream_putc (s, distance); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 400 | if (CHECK_FLAG (message, ZAPI_MESSAGE_METRIC)) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 401 | { |
| 402 | if (or->path_type == OSPF_PATH_TYPE1_EXTERNAL) |
| 403 | stream_putl (s, or->cost + or->u.ext.type2_cost); |
| 404 | else if (or->path_type == OSPF_PATH_TYPE2_EXTERNAL) |
| 405 | stream_putl (s, or->u.ext.type2_cost); |
| 406 | else |
| 407 | stream_putl (s, or->cost); |
| 408 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 409 | |
| 410 | stream_putw_at (s, 0, stream_get_endp (s)); |
| 411 | |
ajs | 634f9ea | 2005-04-11 15:51:40 +0000 | [diff] [blame] | 412 | zclient_send_message(zclient); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 413 | } |
| 414 | } |
| 415 | |
| 416 | void |
| 417 | ospf_zebra_delete (struct prefix_ipv4 *p, struct ospf_route *or) |
| 418 | { |
| 419 | struct zapi_ipv4 api; |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 420 | struct ospf_path *path; |
| 421 | struct in_addr *nexthop; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 422 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 423 | |
| 424 | if (zclient->redist[ZEBRA_ROUTE_OSPF]) |
| 425 | { |
| 426 | api.type = ZEBRA_ROUTE_OSPF; |
| 427 | api.flags = 0; |
| 428 | api.message = 0; |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 429 | api.ifindex_num = 0; |
| 430 | api.nexthop_num = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 431 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 432 | for (ALL_LIST_ELEMENTS (or->paths, node, nnode, path)) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 433 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 434 | if (path->nexthop.s_addr != INADDR_ANY) |
| 435 | { |
paul | d8e1d6b | 2003-08-10 04:04:41 +0000 | [diff] [blame] | 436 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 437 | api.nexthop_num = 1; |
| 438 | nexthop = &path->nexthop; |
| 439 | api.nexthop = &nexthop; |
| 440 | } |
hasso | 2db3d05 | 2004-02-11 21:52:13 +0000 | [diff] [blame] | 441 | else if (ospf_if_exists(path->oi) && (path->oi->ifp)) |
paul | bb8ff1e | 2003-08-12 06:00:30 +0000 | [diff] [blame] | 442 | { |
| 443 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
| 444 | api.ifindex_num = 1; |
| 445 | api.ifindex = &path->oi->ifp->ifindex; |
| 446 | } |
| 447 | else if ( IS_DEBUG_OSPF(zebra,ZEBRA_REDISTRIBUTE) ) |
| 448 | { |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 449 | zlog_debug("Zebra: no ifp %s %d", |
paul | bb8ff1e | 2003-08-12 06:00:30 +0000 | [diff] [blame] | 450 | inet_ntoa(p->prefix), |
| 451 | p->prefixlen); |
| 452 | } |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 453 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 454 | zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE, zclient, p, &api); |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 455 | |
| 456 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE) && api.nexthop_num) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 457 | { |
Andrew J. Schorr | 56b3ea0 | 2007-03-14 20:21:43 +0000 | [diff] [blame] | 458 | char buf[2][INET_ADDRSTRLEN]; |
| 459 | zlog_debug("Zebra: Route delete %s/%d nexthop %s", |
| 460 | inet_ntop(AF_INET, &p->prefix, buf[0], sizeof(buf[0])), |
| 461 | p->prefixlen, |
| 462 | inet_ntop(AF_INET, *api.nexthop, |
| 463 | buf[1], sizeof(buf[1]))); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 464 | } |
paul | bb8ff1e | 2003-08-12 06:00:30 +0000 | [diff] [blame] | 465 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE) && api.ifindex_num) |
| 466 | { |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 467 | zlog_debug ("Zebra: Route delete %s/%d ifindex %d", |
paul | bb8ff1e | 2003-08-12 06:00:30 +0000 | [diff] [blame] | 468 | inet_ntoa (p->prefix), |
| 469 | p->prefixlen, *api.ifindex); |
| 470 | } |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 471 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 472 | } |
| 473 | } |
| 474 | |
| 475 | void |
| 476 | ospf_zebra_add_discard (struct prefix_ipv4 *p) |
| 477 | { |
| 478 | struct zapi_ipv4 api; |
| 479 | |
| 480 | if (zclient->redist[ZEBRA_ROUTE_OSPF]) |
| 481 | { |
| 482 | api.type = ZEBRA_ROUTE_OSPF; |
| 483 | api.flags = ZEBRA_FLAG_BLACKHOLE; |
| 484 | api.message = 0; |
| 485 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
| 486 | api.nexthop_num = 0; |
| 487 | api.ifindex_num = 0; |
| 488 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 489 | zapi_ipv4_route (ZEBRA_IPV4_ROUTE_ADD, zclient, p, &api); |
Andrew J. Schorr | 7f643eb | 2006-11-30 16:17:02 +0000 | [diff] [blame] | 490 | |
| 491 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
| 492 | zlog_debug ("Zebra: Route add discard %s/%d", |
| 493 | inet_ntoa (p->prefix), p->prefixlen); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 494 | } |
| 495 | } |
| 496 | |
| 497 | void |
| 498 | ospf_zebra_delete_discard (struct prefix_ipv4 *p) |
| 499 | { |
| 500 | struct zapi_ipv4 api; |
| 501 | |
| 502 | if (zclient->redist[ZEBRA_ROUTE_OSPF]) |
| 503 | { |
| 504 | api.type = ZEBRA_ROUTE_OSPF; |
| 505 | api.flags = ZEBRA_FLAG_BLACKHOLE; |
| 506 | api.message = 0; |
| 507 | SET_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP); |
| 508 | api.nexthop_num = 0; |
| 509 | api.ifindex_num = 0; |
| 510 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 511 | zapi_ipv4_route (ZEBRA_IPV4_ROUTE_DELETE, zclient, p, &api); |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 512 | |
| 513 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 514 | zlog_debug ("Zebra: Route delete discard %s/%d", |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 515 | inet_ntoa (p->prefix), p->prefixlen); |
paul | 72357f2 | 2003-06-19 02:11:23 +0000 | [diff] [blame] | 516 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 517 | } |
| 518 | } |
| 519 | |
| 520 | int |
| 521 | ospf_is_type_redistributed (int type) |
| 522 | { |
| 523 | return (DEFAULT_ROUTE_TYPE (type)) ? |
| 524 | zclient->default_information : zclient->redist[type]; |
| 525 | } |
| 526 | |
| 527 | int |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 528 | ospf_redistribute_set (struct ospf *ospf, int type, int mtype, int mvalue) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 529 | { |
| 530 | int force = 0; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 531 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 532 | if (ospf_is_type_redistributed (type)) |
| 533 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 534 | if (mtype != ospf->dmetric[type].type) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 535 | { |
| 536 | ospf->dmetric[type].type = mtype; |
| 537 | force = LSA_REFRESH_FORCE; |
| 538 | } |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 539 | if (mvalue != ospf->dmetric[type].value) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 540 | { |
| 541 | ospf->dmetric[type].value = mvalue; |
| 542 | force = LSA_REFRESH_FORCE; |
| 543 | } |
| 544 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 545 | ospf_external_lsa_refresh_type (ospf, type, force); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 546 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 547 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 548 | zlog_debug ("Redistribute[%s]: Refresh Type[%d], Metric[%d]", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 549 | ospf_redist_string(type), |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 550 | metric_type (ospf, type), metric_value (ospf, type)); |
| 551 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 552 | return CMD_SUCCESS; |
| 553 | } |
| 554 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 555 | ospf->dmetric[type].type = mtype; |
| 556 | ospf->dmetric[type].value = mvalue; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 557 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 558 | zclient_redistribute (ZEBRA_REDISTRIBUTE_ADD, zclient, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 559 | |
| 560 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 561 | zlog_debug ("Redistribute[%s]: Start Type[%d], Metric[%d]", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 562 | ospf_redist_string(type), |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 563 | metric_type (ospf, type), metric_value (ospf, type)); |
| 564 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 565 | ospf_asbr_status_update (ospf, ++ospf->redistribute); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 566 | |
| 567 | return CMD_SUCCESS; |
| 568 | } |
| 569 | |
| 570 | int |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 571 | ospf_redistribute_unset (struct ospf *ospf, int type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 572 | { |
| 573 | if (type == zclient->redist_default) |
| 574 | return CMD_SUCCESS; |
| 575 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 576 | if (!ospf_is_type_redistributed (type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 577 | return CMD_SUCCESS; |
| 578 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 579 | zclient_redistribute (ZEBRA_REDISTRIBUTE_DELETE, zclient, type); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 580 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 581 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 582 | zlog_debug ("Redistribute[%s]: Stop", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 583 | ospf_redist_string(type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 584 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 585 | ospf->dmetric[type].type = -1; |
| 586 | ospf->dmetric[type].value = -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 587 | |
| 588 | /* Remove the routes from OSPF table. */ |
Paul Jakma | 6db3a6f | 2006-05-12 23:02:46 +0000 | [diff] [blame] | 589 | ospf_redistribute_withdraw (ospf, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 590 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 591 | ospf_asbr_status_update (ospf, --ospf->redistribute); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 592 | |
| 593 | return CMD_SUCCESS; |
| 594 | } |
| 595 | |
| 596 | int |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 597 | ospf_redistribute_default_set (struct ospf *ospf, int originate, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 598 | int mtype, int mvalue) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 599 | { |
Andrew J. Schorr | 8fb8a50 | 2006-10-24 19:04:26 +0000 | [diff] [blame] | 600 | ospf->default_originate = originate; |
| 601 | ospf->dmetric[DEFAULT_ROUTE].type = mtype; |
| 602 | ospf->dmetric[DEFAULT_ROUTE].value = mvalue; |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 603 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 604 | if (ospf_is_type_redistributed (DEFAULT_ROUTE)) |
| 605 | { |
Andrew J. Schorr | 8fb8a50 | 2006-10-24 19:04:26 +0000 | [diff] [blame] | 606 | /* if ospf->default_originate changes value, is calling |
| 607 | ospf_external_lsa_refresh_default sufficient to implement |
| 608 | the change? */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 609 | ospf_external_lsa_refresh_default (ospf); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 610 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 611 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 612 | zlog_debug ("Redistribute[%s]: Refresh Type[%d], Metric[%d]", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 613 | ospf_redist_string(DEFAULT_ROUTE), |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 614 | metric_type (ospf, DEFAULT_ROUTE), |
| 615 | metric_value (ospf, DEFAULT_ROUTE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 616 | return CMD_SUCCESS; |
| 617 | } |
| 618 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 619 | zclient_redistribute_default (ZEBRA_REDISTRIBUTE_DEFAULT_ADD, zclient); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 620 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 621 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 622 | zlog_debug ("Redistribute[DEFAULT]: Start Type[%d], Metric[%d]", |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 623 | metric_type (ospf, DEFAULT_ROUTE), |
| 624 | metric_value (ospf, DEFAULT_ROUTE)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 625 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 626 | if (ospf->router_id.s_addr == 0) |
| 627 | ospf->external_origin |= (1 << DEFAULT_ROUTE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 628 | else |
Paul Jakma | 4021b60 | 2006-05-12 22:55:41 +0000 | [diff] [blame] | 629 | thread_add_timer (master, ospf_default_originate_timer, ospf, 1); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 630 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 631 | ospf_asbr_status_update (ospf, ++ospf->redistribute); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 632 | |
| 633 | return CMD_SUCCESS; |
| 634 | } |
| 635 | |
| 636 | int |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 637 | ospf_redistribute_default_unset (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 638 | { |
| 639 | if (!ospf_is_type_redistributed (DEFAULT_ROUTE)) |
| 640 | return CMD_SUCCESS; |
| 641 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 642 | ospf->default_originate = DEFAULT_ORIGINATE_NONE; |
| 643 | ospf->dmetric[DEFAULT_ROUTE].type = -1; |
| 644 | ospf->dmetric[DEFAULT_ROUTE].value = -1; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 645 | |
paul | 0a58935 | 2004-05-08 11:48:26 +0000 | [diff] [blame] | 646 | zclient_redistribute_default (ZEBRA_REDISTRIBUTE_DEFAULT_DELETE, zclient); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 647 | |
| 648 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 649 | zlog_debug ("Redistribute[DEFAULT]: Stop"); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 650 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 651 | ospf_asbr_status_update (ospf, --ospf->redistribute); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 652 | |
| 653 | return CMD_SUCCESS; |
| 654 | } |
| 655 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 656 | static int |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 657 | ospf_external_lsa_originate_check (struct ospf *ospf, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 658 | struct external_info *ei) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 659 | { |
| 660 | /* If prefix is multicast, then do not originate LSA. */ |
| 661 | if (IN_MULTICAST (htonl (ei->p.prefix.s_addr))) |
| 662 | { |
| 663 | zlog_info ("LSA[Type5:%s]: Not originate AS-external-LSA, " |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 664 | "Prefix belongs multicast", inet_ntoa (ei->p.prefix)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 665 | return 0; |
| 666 | } |
| 667 | |
| 668 | /* Take care of default-originate. */ |
| 669 | if (is_prefix_default (&ei->p)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 670 | if (ospf->default_originate == DEFAULT_ORIGINATE_NONE) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 671 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 672 | zlog_info ("LSA[Type5:0.0.0.0]: Not originate AS-exntenal-LSA " |
| 673 | "for default"); |
| 674 | return 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 675 | } |
| 676 | |
| 677 | return 1; |
| 678 | } |
| 679 | |
| 680 | /* If connected prefix is OSPF enable interface, then do not announce. */ |
| 681 | int |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 682 | ospf_distribute_check_connected (struct ospf *ospf, struct external_info *ei) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 683 | { |
| 684 | struct route_node *rn; |
| 685 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 686 | for (rn = route_top (ospf->networks); rn; rn = route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 687 | if (rn->info != NULL) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 688 | if (prefix_match (&rn->p, (struct prefix *) &ei->p)) |
| 689 | { |
| 690 | route_unlock_node (rn); |
| 691 | return 0; |
| 692 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 693 | |
| 694 | return 1; |
| 695 | } |
| 696 | |
| 697 | /* return 1 if external LSA must be originated, 0 otherwise */ |
| 698 | int |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 699 | ospf_redistribute_check (struct ospf *ospf, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 700 | struct external_info *ei, int *changed) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 701 | { |
| 702 | struct route_map_set_values save_values; |
| 703 | struct prefix_ipv4 *p = &ei->p; |
| 704 | u_char type = is_prefix_default (&ei->p) ? DEFAULT_ROUTE : ei->type; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 705 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 706 | if (changed) |
| 707 | *changed = 0; |
| 708 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 709 | if (!ospf_external_lsa_originate_check (ospf, ei)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 710 | return 0; |
| 711 | |
| 712 | /* Take care connected route. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 713 | if (type == ZEBRA_ROUTE_CONNECT && |
| 714 | !ospf_distribute_check_connected (ospf, ei)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 715 | return 0; |
| 716 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 717 | if (!DEFAULT_ROUTE_TYPE (type) && DISTRIBUTE_NAME (ospf, type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 718 | /* distirbute-list exists, but access-list may not? */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 719 | if (DISTRIBUTE_LIST (ospf, type)) |
| 720 | if (access_list_apply (DISTRIBUTE_LIST (ospf, type), p) == FILTER_DENY) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 721 | { |
| 722 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 723 | zlog_debug ("Redistribute[%s]: %s/%d filtered by ditribute-list.", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 724 | ospf_redist_string(type), |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 725 | inet_ntoa (p->prefix), p->prefixlen); |
| 726 | return 0; |
| 727 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 728 | |
| 729 | save_values = ei->route_map_set; |
| 730 | ospf_reset_route_map_set_values (&ei->route_map_set); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 731 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 732 | /* apply route-map if needed */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 733 | if (ROUTEMAP_NAME (ospf, type)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 734 | { |
| 735 | int ret; |
| 736 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 737 | ret = route_map_apply (ROUTEMAP (ospf, type), (struct prefix *) p, |
| 738 | RMAP_OSPF, ei); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 739 | |
| 740 | if (ret == RMAP_DENYMATCH) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 741 | { |
| 742 | ei->route_map_set = save_values; |
| 743 | if (IS_DEBUG_OSPF (zebra, ZEBRA_REDISTRIBUTE)) |
ajs | 9b0e25c | 2004-12-08 19:06:51 +0000 | [diff] [blame] | 744 | zlog_debug ("Redistribute[%s]: %s/%d filtered by route-map.", |
ajs | f52d13c | 2005-10-01 17:38:06 +0000 | [diff] [blame] | 745 | ospf_redist_string(type), |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 746 | inet_ntoa (p->prefix), p->prefixlen); |
| 747 | return 0; |
| 748 | } |
| 749 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 750 | /* check if 'route-map set' changed something */ |
| 751 | if (changed) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 752 | *changed = !ospf_route_map_set_compare (&ei->route_map_set, |
| 753 | &save_values); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 754 | } |
| 755 | |
| 756 | return 1; |
| 757 | } |
| 758 | |
| 759 | /* OSPF route-map set for redistribution */ |
| 760 | void |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 761 | ospf_routemap_set (struct ospf *ospf, int type, const char *name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 762 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 763 | if (ROUTEMAP_NAME (ospf, type)) |
| 764 | free (ROUTEMAP_NAME (ospf, type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 765 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 766 | ROUTEMAP_NAME (ospf, type) = strdup (name); |
| 767 | ROUTEMAP (ospf, type) = route_map_lookup_by_name (name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 768 | } |
| 769 | |
| 770 | void |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 771 | ospf_routemap_unset (struct ospf *ospf, int type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 772 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 773 | if (ROUTEMAP_NAME (ospf, type)) |
| 774 | free (ROUTEMAP_NAME (ospf, type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 775 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 776 | ROUTEMAP_NAME (ospf, type) = NULL; |
| 777 | ROUTEMAP (ospf, type) = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 778 | } |
| 779 | |
| 780 | /* Zebra route add and delete treatment. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 781 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 782 | ospf_zebra_read_ipv4 (int command, struct zclient *zclient, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 783 | zebra_size_t length) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 784 | { |
| 785 | struct stream *s; |
| 786 | struct zapi_ipv4 api; |
| 787 | unsigned long ifindex; |
| 788 | struct in_addr nexthop; |
| 789 | struct prefix_ipv4 p; |
| 790 | struct external_info *ei; |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 791 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 792 | |
| 793 | s = zclient->ibuf; |
| 794 | ifindex = 0; |
| 795 | nexthop.s_addr = 0; |
| 796 | |
| 797 | /* Type, flags, message. */ |
| 798 | api.type = stream_getc (s); |
| 799 | api.flags = stream_getc (s); |
| 800 | api.message = stream_getc (s); |
| 801 | |
| 802 | /* IPv4 prefix. */ |
| 803 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 804 | p.family = AF_INET; |
| 805 | p.prefixlen = stream_getc (s); |
| 806 | stream_get (&p.prefix, s, PSIZE (p.prefixlen)); |
| 807 | |
hasso | 8585d4e | 2004-04-20 17:25:12 +0000 | [diff] [blame] | 808 | if (IPV4_NET127(ntohl(p.prefix.s_addr))) |
| 809 | return 0; |
| 810 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 811 | /* Nexthop, ifindex, distance, metric. */ |
| 812 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_NEXTHOP)) |
| 813 | { |
| 814 | api.nexthop_num = stream_getc (s); |
| 815 | nexthop.s_addr = stream_get_ipv4 (s); |
| 816 | } |
| 817 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_IFINDEX)) |
| 818 | { |
| 819 | api.ifindex_num = stream_getc (s); |
gdt | 6a8da85 | 2004-02-13 17:40:51 +0000 | [diff] [blame] | 820 | /* XXX assert(api.ifindex_num == 1); */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 821 | ifindex = stream_getl (s); |
| 822 | } |
| 823 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_DISTANCE)) |
| 824 | api.distance = stream_getc (s); |
| 825 | if (CHECK_FLAG (api.message, ZAPI_MESSAGE_METRIC)) |
| 826 | api.metric = stream_getl (s); |
| 827 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 828 | ospf = ospf_lookup (); |
| 829 | if (ospf == NULL) |
| 830 | return 0; |
| 831 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 832 | if (command == ZEBRA_IPV4_ROUTE_ADD) |
| 833 | { |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 834 | /* XXX|HACK|TODO|FIXME: |
hasso | a0a3976 | 2004-04-23 08:51:10 +0000 | [diff] [blame] | 835 | * Maybe we should ignore reject/blackhole routes? Testing shows that |
| 836 | * there is no problems though and this is only way to "summarize" |
| 837 | * routes in ASBR at the moment. Maybe we need just a better generalised |
| 838 | * solution for these types? |
| 839 | * |
| 840 | * if ( CHECK_FLAG (api.flags, ZEBRA_FLAG_BLACKHOLE) |
| 841 | * || CHECK_FLAG (api.flags, ZEBRA_FLAG_REJECT)) |
| 842 | * return 0; |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 843 | */ |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 844 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 845 | ei = ospf_external_info_add (api.type, p, ifindex, nexthop); |
| 846 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 847 | if (ospf->router_id.s_addr == 0) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 848 | /* Set flags to generate AS-external-LSA originate event |
| 849 | for each redistributed protocols later. */ |
| 850 | ospf->external_origin |= (1 << api.type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 851 | else |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 852 | { |
| 853 | if (ei) |
| 854 | { |
| 855 | if (is_prefix_default (&p)) |
| 856 | ospf_external_lsa_refresh_default (ospf); |
| 857 | else |
| 858 | { |
| 859 | struct ospf_lsa *current; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 860 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 861 | current = ospf_external_info_find_lsa (ospf, &ei->p); |
| 862 | if (!current) |
| 863 | ospf_external_lsa_originate (ospf, ei); |
| 864 | else if (IS_LSA_MAXAGE (current)) |
| 865 | ospf_external_lsa_refresh (ospf, current, |
| 866 | ei, LSA_REFRESH_FORCE); |
| 867 | else |
| 868 | zlog_warn ("ospf_zebra_read_ipv4() : %s already exists", |
| 869 | inet_ntoa (p.prefix)); |
| 870 | } |
| 871 | } |
| 872 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 873 | } |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 874 | else /* if (command == ZEBRA_IPV4_ROUTE_DELETE) */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 875 | { |
| 876 | ospf_external_info_delete (api.type, p); |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 877 | if (is_prefix_default (&p)) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 878 | ospf_external_lsa_refresh_default (ospf); |
paul | 7021c42 | 2003-07-15 12:52:22 +0000 | [diff] [blame] | 879 | else |
ajs | 5339cfd | 2005-09-19 13:28:05 +0000 | [diff] [blame] | 880 | ospf_external_lsa_flush (ospf, api.type, &p, ifindex /*, nexthop */); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 881 | } |
| 882 | |
| 883 | return 0; |
| 884 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 885 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 886 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 887 | int |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 888 | ospf_distribute_list_out_set (struct ospf *ospf, int type, const char *name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 889 | { |
| 890 | /* Lookup access-list for distribute-list. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 891 | DISTRIBUTE_LIST (ospf, type) = access_list_lookup (AFI_IP, name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 892 | |
| 893 | /* Clear previous distribute-name. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 894 | if (DISTRIBUTE_NAME (ospf, type)) |
| 895 | free (DISTRIBUTE_NAME (ospf, type)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 896 | |
| 897 | /* Set distribute-name. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 898 | DISTRIBUTE_NAME (ospf, type) = strdup (name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 899 | |
| 900 | /* If access-list have been set, schedule update timer. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 901 | if (DISTRIBUTE_LIST (ospf, type)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 902 | ospf_distribute_list_update (ospf, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 903 | |
| 904 | return CMD_SUCCESS; |
| 905 | } |
| 906 | |
| 907 | int |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 908 | ospf_distribute_list_out_unset (struct ospf *ospf, int type, const char *name) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 909 | { |
| 910 | /* Schedule update timer. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 911 | if (DISTRIBUTE_LIST (ospf, type)) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 912 | ospf_distribute_list_update (ospf, type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 913 | |
| 914 | /* Unset distribute-list. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 915 | DISTRIBUTE_LIST (ospf, type) = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 916 | |
| 917 | /* Clear distribute-name. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 918 | if (DISTRIBUTE_NAME (ospf, type)) |
| 919 | free (DISTRIBUTE_NAME (ospf, type)); |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 920 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 921 | DISTRIBUTE_NAME (ospf, type) = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 922 | |
| 923 | return CMD_SUCCESS; |
| 924 | } |
| 925 | |
| 926 | /* distribute-list update timer. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 927 | static int |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 928 | ospf_distribute_list_update_timer (struct thread *thread) |
| 929 | { |
| 930 | struct route_node *rn; |
| 931 | struct external_info *ei; |
| 932 | struct route_table *rt; |
| 933 | struct ospf_lsa *lsa; |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 934 | intptr_t type; |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 935 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 936 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 937 | type = (intptr_t)THREAD_ARG (thread); |
hasso | 01018ce | 2005-08-05 07:40:15 +0000 | [diff] [blame] | 938 | assert (type <= ZEBRA_ROUTE_MAX); |
paul | 64511f3 | 2004-10-31 18:01:13 +0000 | [diff] [blame] | 939 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 940 | rt = EXTERNAL_INFO (type); |
| 941 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 942 | ospf = ospf_lookup (); |
| 943 | if (ospf == NULL) |
| 944 | return 0; |
| 945 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 946 | ospf->t_distribute_update = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 947 | |
| 948 | zlog_info ("Zebra[Redistribute]: distribute-list update timer fired!"); |
| 949 | |
| 950 | /* foreach all external info. */ |
| 951 | if (rt) |
| 952 | for (rn = route_top (rt); rn; rn = route_next (rn)) |
| 953 | if ((ei = rn->info) != NULL) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 954 | { |
| 955 | if (is_prefix_default (&ei->p)) |
| 956 | ospf_external_lsa_refresh_default (ospf); |
| 957 | else if ((lsa = ospf_external_info_find_lsa (ospf, &ei->p))) |
| 958 | ospf_external_lsa_refresh (ospf, lsa, ei, LSA_REFRESH_IF_CHANGED); |
| 959 | else |
| 960 | ospf_external_lsa_originate (ospf, ei); |
| 961 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 962 | return 0; |
| 963 | } |
| 964 | |
| 965 | #define OSPF_DISTRIBUTE_UPDATE_DELAY 5 |
| 966 | |
| 967 | /* Update distribute-list and set timer to apply access-list. */ |
| 968 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 969 | ospf_distribute_list_update (struct ospf *ospf, int type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 970 | { |
| 971 | struct route_table *rt; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 972 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 973 | /* External info does not exist. */ |
| 974 | if (!(rt = EXTERNAL_INFO (type))) |
| 975 | return; |
| 976 | |
| 977 | /* If exists previously invoked thread, then cancel it. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 978 | if (ospf->t_distribute_update) |
| 979 | OSPF_TIMER_OFF (ospf->t_distribute_update); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 980 | |
| 981 | /* Set timer. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 982 | ospf->t_distribute_update = |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 983 | thread_add_timer (master, ospf_distribute_list_update_timer, |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 984 | (void *) type, OSPF_DISTRIBUTE_UPDATE_DELAY); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | /* If access-list is updated, apply some check. */ |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 988 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 989 | ospf_filter_update (struct access_list *access) |
| 990 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 991 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 992 | int type; |
| 993 | int abr_inv = 0; |
| 994 | struct ospf_area *area; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 995 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 996 | |
| 997 | /* If OSPF instatnce does not exist, return right now. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 998 | ospf = ospf_lookup (); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 999 | if (ospf == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1000 | return; |
| 1001 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1002 | /* Update distribute-list, and apply filter. */ |
hasso | 01018ce | 2005-08-05 07:40:15 +0000 | [diff] [blame] | 1003 | for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1004 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1005 | if (ROUTEMAP (ospf, type) != NULL) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1006 | { |
| 1007 | /* if route-map is not NULL it may be using this access list */ |
| 1008 | ospf_distribute_list_update (ospf, type); |
| 1009 | continue; |
| 1010 | } |
| 1011 | |
hasso | 01018ce | 2005-08-05 07:40:15 +0000 | [diff] [blame] | 1012 | /* There is place for route-map for default-information (ZEBRA_ROUTE_MAX), |
| 1013 | * but no distribute list. */ |
| 1014 | if (type == ZEBRA_ROUTE_MAX) |
| 1015 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1016 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1017 | if (DISTRIBUTE_NAME (ospf, type)) |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1018 | { |
| 1019 | /* Keep old access-list for distribute-list. */ |
| 1020 | struct access_list *old = DISTRIBUTE_LIST (ospf, type); |
| 1021 | |
| 1022 | /* Update access-list for distribute-list. */ |
| 1023 | DISTRIBUTE_LIST (ospf, type) = |
| 1024 | access_list_lookup (AFI_IP, DISTRIBUTE_NAME (ospf, type)); |
| 1025 | |
| 1026 | /* No update for this distribute type. */ |
| 1027 | if (old == NULL && DISTRIBUTE_LIST (ospf, type) == NULL) |
| 1028 | continue; |
| 1029 | |
| 1030 | /* Schedule distribute-list update timer. */ |
| 1031 | if (DISTRIBUTE_LIST (ospf, type) == NULL || |
| 1032 | strcmp (DISTRIBUTE_NAME (ospf, type), access->name) == 0) |
| 1033 | ospf_distribute_list_update (ospf, type); |
| 1034 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
| 1037 | /* Update Area access-list. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1038 | for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area)) |
| 1039 | { |
| 1040 | if (EXPORT_NAME (area)) |
| 1041 | { |
| 1042 | EXPORT_LIST (area) = NULL; |
| 1043 | abr_inv++; |
| 1044 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1045 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1046 | if (IMPORT_NAME (area)) |
| 1047 | { |
| 1048 | IMPORT_LIST (area) = NULL; |
| 1049 | abr_inv++; |
| 1050 | } |
| 1051 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1052 | |
| 1053 | /* Schedule ABR tasks -- this will be changed -- takada. */ |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1054 | if (IS_OSPF_ABR (ospf) && abr_inv) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1055 | ospf_schedule_abr_task (ospf); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1056 | } |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1057 | |
| 1058 | /* If prefix-list is updated, do some updates. */ |
| 1059 | void |
| 1060 | ospf_prefix_list_update (struct prefix_list *plist) |
| 1061 | { |
| 1062 | struct ospf *ospf; |
| 1063 | int type; |
| 1064 | int abr_inv = 0; |
| 1065 | struct ospf_area *area; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 1066 | struct listnode *node; |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1067 | |
| 1068 | /* If OSPF instatnce does not exist, return right now. */ |
| 1069 | ospf = ospf_lookup (); |
| 1070 | if (ospf == NULL) |
| 1071 | return; |
| 1072 | |
| 1073 | /* Update all route-maps which are used as redistribution filters. |
| 1074 | * They might use prefix-list. |
| 1075 | */ |
hasso | 01018ce | 2005-08-05 07:40:15 +0000 | [diff] [blame] | 1076 | for (type = 0; type <= ZEBRA_ROUTE_MAX; type++) |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1077 | { |
| 1078 | if (ROUTEMAP (ospf, type) != NULL) |
| 1079 | { |
| 1080 | /* If route-map is not NULL it may be using this prefix list */ |
| 1081 | ospf_distribute_list_update (ospf, type); |
| 1082 | continue; |
| 1083 | } |
| 1084 | } |
| 1085 | |
| 1086 | /* Update area filter-lists. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1087 | for (ALL_LIST_ELEMENTS_RO (ospf->areas, node, area)) |
| 1088 | { |
| 1089 | /* Update filter-list in. */ |
| 1090 | if (PREFIX_NAME_IN (area)) |
| 1091 | if (strcmp (PREFIX_NAME_IN (area), plist->name) == 0) |
| 1092 | { |
| 1093 | PREFIX_LIST_IN (area) = |
| 1094 | prefix_list_lookup (AFI_IP, PREFIX_NAME_IN (area)); |
| 1095 | abr_inv++; |
| 1096 | } |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1097 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1098 | /* Update filter-list out. */ |
| 1099 | if (PREFIX_NAME_OUT (area)) |
| 1100 | if (strcmp (PREFIX_NAME_OUT (area), plist->name) == 0) |
| 1101 | { |
| 1102 | PREFIX_LIST_IN (area) = |
| 1103 | prefix_list_lookup (AFI_IP, PREFIX_NAME_OUT (area)); |
| 1104 | abr_inv++; |
| 1105 | } |
| 1106 | } |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1107 | |
| 1108 | /* Schedule ABR task. */ |
| 1109 | if (IS_OSPF_ABR (ospf) && abr_inv) |
| 1110 | ospf_schedule_abr_task (ospf); |
| 1111 | } |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1112 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1113 | static struct ospf_distance * |
| 1114 | ospf_distance_new (void) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1115 | { |
Stephen Hemminger | 393deb9 | 2008-08-18 14:13:29 -0700 | [diff] [blame] | 1116 | return XCALLOC (MTYPE_OSPF_DISTANCE, sizeof (struct ospf_distance)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1117 | } |
| 1118 | |
paul | 4dadc29 | 2005-05-06 21:37:42 +0000 | [diff] [blame] | 1119 | static void |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1120 | ospf_distance_free (struct ospf_distance *odistance) |
| 1121 | { |
| 1122 | XFREE (MTYPE_OSPF_DISTANCE, odistance); |
| 1123 | } |
| 1124 | |
| 1125 | int |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 1126 | ospf_distance_set (struct vty *vty, struct ospf *ospf, |
| 1127 | const char *distance_str, |
| 1128 | const char *ip_str, |
| 1129 | const char *access_list_str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1130 | { |
| 1131 | int ret; |
| 1132 | struct prefix_ipv4 p; |
| 1133 | u_char distance; |
| 1134 | struct route_node *rn; |
| 1135 | struct ospf_distance *odistance; |
| 1136 | |
| 1137 | ret = str2prefix_ipv4 (ip_str, &p); |
| 1138 | if (ret == 0) |
| 1139 | { |
| 1140 | vty_out (vty, "Malformed prefix%s", VTY_NEWLINE); |
| 1141 | return CMD_WARNING; |
| 1142 | } |
| 1143 | |
| 1144 | distance = atoi (distance_str); |
| 1145 | |
| 1146 | /* Get OSPF distance node. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1147 | rn = route_node_get (ospf->distance_table, (struct prefix *) &p); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1148 | if (rn->info) |
| 1149 | { |
| 1150 | odistance = rn->info; |
| 1151 | route_unlock_node (rn); |
| 1152 | } |
| 1153 | else |
| 1154 | { |
| 1155 | odistance = ospf_distance_new (); |
| 1156 | rn->info = odistance; |
| 1157 | } |
| 1158 | |
| 1159 | /* Set distance value. */ |
| 1160 | odistance->distance = distance; |
| 1161 | |
| 1162 | /* Reset access-list configuration. */ |
| 1163 | if (odistance->access_list) |
| 1164 | { |
| 1165 | free (odistance->access_list); |
| 1166 | odistance->access_list = NULL; |
| 1167 | } |
| 1168 | if (access_list_str) |
| 1169 | odistance->access_list = strdup (access_list_str); |
| 1170 | |
| 1171 | return CMD_SUCCESS; |
| 1172 | } |
| 1173 | |
| 1174 | int |
paul | 6c83567 | 2004-10-11 11:00:30 +0000 | [diff] [blame] | 1175 | ospf_distance_unset (struct vty *vty, struct ospf *ospf, |
| 1176 | const char *distance_str, |
| 1177 | const char *ip_str, char |
| 1178 | const *access_list_str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1179 | { |
| 1180 | int ret; |
| 1181 | struct prefix_ipv4 p; |
| 1182 | u_char distance; |
| 1183 | struct route_node *rn; |
| 1184 | struct ospf_distance *odistance; |
| 1185 | |
| 1186 | ret = str2prefix_ipv4 (ip_str, &p); |
| 1187 | if (ret == 0) |
| 1188 | { |
| 1189 | vty_out (vty, "Malformed prefix%s", VTY_NEWLINE); |
| 1190 | return CMD_WARNING; |
| 1191 | } |
| 1192 | |
| 1193 | distance = atoi (distance_str); |
| 1194 | |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1195 | rn = route_node_lookup (ospf->distance_table, (struct prefix *) &p); |
| 1196 | if (!rn) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1197 | { |
| 1198 | vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE); |
| 1199 | return CMD_WARNING; |
| 1200 | } |
| 1201 | |
| 1202 | odistance = rn->info; |
| 1203 | |
| 1204 | if (odistance->access_list) |
| 1205 | free (odistance->access_list); |
| 1206 | ospf_distance_free (odistance); |
| 1207 | |
| 1208 | rn->info = NULL; |
| 1209 | route_unlock_node (rn); |
| 1210 | route_unlock_node (rn); |
| 1211 | |
| 1212 | return CMD_SUCCESS; |
| 1213 | } |
| 1214 | |
| 1215 | void |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1216 | ospf_distance_reset (struct ospf *ospf) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1217 | { |
| 1218 | struct route_node *rn; |
| 1219 | struct ospf_distance *odistance; |
| 1220 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1221 | for (rn = route_top (ospf->distance_table); rn; rn = route_next (rn)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1222 | if ((odistance = rn->info) != NULL) |
| 1223 | { |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1224 | if (odistance->access_list) |
| 1225 | free (odistance->access_list); |
| 1226 | ospf_distance_free (odistance); |
| 1227 | rn->info = NULL; |
| 1228 | route_unlock_node (rn); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1229 | } |
| 1230 | } |
| 1231 | |
| 1232 | u_char |
| 1233 | ospf_distance_apply (struct prefix_ipv4 *p, struct ospf_route *or) |
| 1234 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1235 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1236 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1237 | ospf = ospf_lookup (); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1238 | if (ospf == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1239 | return 0; |
| 1240 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1241 | if (ospf->distance_intra) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1242 | if (or->path_type == OSPF_PATH_INTRA_AREA) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1243 | return ospf->distance_intra; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1244 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1245 | if (ospf->distance_inter) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1246 | if (or->path_type == OSPF_PATH_INTER_AREA) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1247 | return ospf->distance_inter; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1248 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1249 | if (ospf->distance_external) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1250 | if (or->path_type == OSPF_PATH_TYPE1_EXTERNAL |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1251 | || or->path_type == OSPF_PATH_TYPE2_EXTERNAL) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1252 | return ospf->distance_external; |
paul | cf795c5 | 2003-06-19 02:13:25 +0000 | [diff] [blame] | 1253 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1254 | if (ospf->distance_all) |
| 1255 | return ospf->distance_all; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1256 | |
| 1257 | return 0; |
| 1258 | } |
| 1259 | |
| 1260 | void |
| 1261 | ospf_zebra_init () |
| 1262 | { |
| 1263 | /* Allocate zebra structure. */ |
| 1264 | zclient = zclient_new (); |
| 1265 | zclient_init (zclient, ZEBRA_ROUTE_OSPF); |
hasso | 18a6dce | 2004-10-03 18:18:34 +0000 | [diff] [blame] | 1266 | zclient->router_id_update = ospf_router_id_update_zebra; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1267 | zclient->interface_add = ospf_interface_add; |
| 1268 | zclient->interface_delete = ospf_interface_delete; |
| 1269 | zclient->interface_up = ospf_interface_state_up; |
| 1270 | zclient->interface_down = ospf_interface_state_down; |
| 1271 | zclient->interface_address_add = ospf_interface_address_add; |
| 1272 | zclient->interface_address_delete = ospf_interface_address_delete; |
| 1273 | zclient->ipv4_route_add = ospf_zebra_read_ipv4; |
| 1274 | zclient->ipv4_route_delete = ospf_zebra_read_ipv4; |
| 1275 | |
| 1276 | access_list_add_hook (ospf_filter_update); |
| 1277 | access_list_delete_hook (ospf_filter_update); |
hasso | dd669bb | 2004-05-10 07:43:59 +0000 | [diff] [blame] | 1278 | prefix_list_add_hook (ospf_prefix_list_update); |
| 1279 | prefix_list_delete_hook (ospf_prefix_list_update); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1280 | } |