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