paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * This is an implementation of rfc2370. |
| 3 | * Copyright (C) 2001 KDD R&D Laboratories, Inc. |
| 4 | * http://www.kddlabs.co.jp/ |
| 5 | * |
| 6 | * This file is part of GNU Zebra. |
| 7 | * |
| 8 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the |
| 10 | * Free Software Foundation; either version 2, or (at your option) any |
| 11 | * later version. |
| 12 | * |
| 13 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 20 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 21 | * 02111-1307, USA. |
| 22 | */ |
| 23 | |
| 24 | /***** MTYPE definitions are not reflected to "memory.h" yet. *****/ |
| 25 | #define MTYPE_OSPF_OPAQUE_FUNCTAB 0 |
| 26 | #define MTYPE_OPAQUE_INFO_PER_TYPE 0 |
| 27 | #define MTYPE_OPAQUE_INFO_PER_ID 0 |
| 28 | |
| 29 | #include <zebra.h> |
| 30 | #ifdef HAVE_OPAQUE_LSA |
| 31 | |
| 32 | #include "linklist.h" |
| 33 | #include "prefix.h" |
| 34 | #include "if.h" |
| 35 | #include "table.h" |
| 36 | #include "memory.h" |
| 37 | #include "command.h" |
| 38 | #include "vty.h" |
| 39 | #include "stream.h" |
| 40 | #include "log.h" |
| 41 | #include "thread.h" |
| 42 | #include "hash.h" |
| 43 | #include "sockunion.h" /* for inet_aton() */ |
| 44 | |
| 45 | #include "ospfd/ospfd.h" |
| 46 | #include "ospfd/ospf_interface.h" |
| 47 | #include "ospfd/ospf_ism.h" |
| 48 | #include "ospfd/ospf_asbr.h" |
| 49 | #include "ospfd/ospf_lsa.h" |
| 50 | #include "ospfd/ospf_lsdb.h" |
| 51 | #include "ospfd/ospf_neighbor.h" |
| 52 | #include "ospfd/ospf_nsm.h" |
| 53 | #include "ospfd/ospf_flood.h" |
| 54 | #include "ospfd/ospf_packet.h" |
| 55 | #include "ospfd/ospf_spf.h" |
| 56 | #include "ospfd/ospf_dump.h" |
| 57 | #include "ospfd/ospf_route.h" |
| 58 | #include "ospfd/ospf_ase.h" |
| 59 | #include "ospfd/ospf_zebra.h" |
| 60 | |
| 61 | /*------------------------------------------------------------------------* |
| 62 | * Followings are initialize/terminate functions for Opaque-LSAs handling. |
| 63 | *------------------------------------------------------------------------*/ |
| 64 | |
| 65 | #ifdef HAVE_OSPF_TE |
| 66 | #include "ospfd/ospf_te.h" |
| 67 | #endif /* HAVE_OSPF_TE */ |
| 68 | |
paul | 283ae33 | 2003-03-17 01:16:55 +0000 | [diff] [blame] | 69 | #ifdef SUPPORT_OSPF_API |
| 70 | int ospf_apiserver_init (void); |
| 71 | void ospf_apiserver_term (void); |
hasso | f4d58ce | 2004-10-12 06:13:54 +0000 | [diff] [blame] | 72 | /* Init apiserver? It's disabled by default. */ |
| 73 | int ospf_apiserver_enable; |
paul | 283ae33 | 2003-03-17 01:16:55 +0000 | [diff] [blame] | 74 | #endif /* SUPPORT_OSPF_API */ |
| 75 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 76 | static void ospf_opaque_register_vty (void); |
| 77 | static void ospf_opaque_funclist_init (void); |
| 78 | static void ospf_opaque_funclist_term (void); |
| 79 | static void free_opaque_info_per_type (void *val); |
| 80 | static void free_opaque_info_per_id (void *val); |
| 81 | static int ospf_opaque_lsa_install_hook (struct ospf_lsa *lsa); |
| 82 | static int ospf_opaque_lsa_delete_hook (struct ospf_lsa *lsa); |
| 83 | |
| 84 | void |
| 85 | ospf_opaque_init (void) |
| 86 | { |
| 87 | ospf_opaque_register_vty (); |
| 88 | ospf_opaque_funclist_init (); |
| 89 | |
| 90 | #ifdef HAVE_OSPF_TE |
| 91 | if (ospf_mpls_te_init () != 0) |
| 92 | exit (1); |
| 93 | #endif /* HAVE_OSPF_TE */ |
| 94 | |
paul | 283ae33 | 2003-03-17 01:16:55 +0000 | [diff] [blame] | 95 | #ifdef SUPPORT_OSPF_API |
hasso | c3abdb7 | 2004-10-11 16:27:03 +0000 | [diff] [blame] | 96 | if ((ospf_apiserver_enable) && (ospf_apiserver_init () != 0)) |
paul | 283ae33 | 2003-03-17 01:16:55 +0000 | [diff] [blame] | 97 | exit (1); |
| 98 | #endif /* SUPPORT_OSPF_API */ |
| 99 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 100 | return; |
| 101 | } |
| 102 | |
| 103 | void |
| 104 | ospf_opaque_term (void) |
| 105 | { |
| 106 | #ifdef HAVE_OSPF_TE |
| 107 | ospf_mpls_te_term (); |
| 108 | #endif /* HAVE_OSPF_TE */ |
| 109 | |
paul | 283ae33 | 2003-03-17 01:16:55 +0000 | [diff] [blame] | 110 | #ifdef SUPPORT_OSPF_API |
| 111 | ospf_apiserver_term (); |
| 112 | #endif /* SUPPORT_OSPF_API */ |
| 113 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 114 | ospf_opaque_funclist_term (); |
| 115 | return; |
| 116 | } |
| 117 | |
| 118 | int |
| 119 | ospf_opaque_type9_lsa_init (struct ospf_interface *oi) |
| 120 | { |
| 121 | if (oi->opaque_lsa_self != NULL) |
| 122 | list_delete (oi->opaque_lsa_self); |
| 123 | |
| 124 | oi->opaque_lsa_self = list_new (); |
| 125 | oi->opaque_lsa_self->del = free_opaque_info_per_type; |
| 126 | oi->t_opaque_lsa_self = NULL; |
| 127 | return 0; |
| 128 | } |
| 129 | |
| 130 | void |
| 131 | ospf_opaque_type9_lsa_term (struct ospf_interface *oi) |
| 132 | { |
| 133 | OSPF_TIMER_OFF (oi->t_opaque_lsa_self); |
| 134 | if (oi->opaque_lsa_self != NULL) |
| 135 | list_delete (oi->opaque_lsa_self); |
| 136 | oi->opaque_lsa_self = NULL; |
| 137 | return; |
| 138 | } |
| 139 | |
| 140 | int |
| 141 | ospf_opaque_type10_lsa_init (struct ospf_area *area) |
| 142 | { |
| 143 | if (area->opaque_lsa_self != NULL) |
| 144 | list_delete (area->opaque_lsa_self); |
| 145 | |
| 146 | area->opaque_lsa_self = list_new (); |
| 147 | area->opaque_lsa_self->del = free_opaque_info_per_type; |
| 148 | area->t_opaque_lsa_self = NULL; |
| 149 | |
| 150 | #ifdef MONITOR_LSDB_CHANGE |
| 151 | area->lsdb->new_lsa_hook = ospf_opaque_lsa_install_hook; |
| 152 | area->lsdb->del_lsa_hook = ospf_opaque_lsa_delete_hook; |
| 153 | #endif /* MONITOR_LSDB_CHANGE */ |
| 154 | return 0; |
| 155 | } |
| 156 | |
| 157 | void |
| 158 | ospf_opaque_type10_lsa_term (struct ospf_area *area) |
| 159 | { |
| 160 | #ifdef MONITOR_LSDB_CHANGE |
| 161 | area->lsdb->new_lsa_hook = |
| 162 | area->lsdb->del_lsa_hook = NULL; |
| 163 | #endif /* MONITOR_LSDB_CHANGE */ |
| 164 | |
| 165 | OSPF_TIMER_OFF (area->t_opaque_lsa_self); |
| 166 | if (area->opaque_lsa_self != NULL) |
| 167 | list_delete (area->opaque_lsa_self); |
| 168 | area->opaque_lsa_self = NULL; |
| 169 | return; |
| 170 | } |
| 171 | |
| 172 | int |
| 173 | ospf_opaque_type11_lsa_init (struct ospf *top) |
| 174 | { |
| 175 | if (top->opaque_lsa_self != NULL) |
| 176 | list_delete (top->opaque_lsa_self); |
| 177 | |
| 178 | top->opaque_lsa_self = list_new (); |
| 179 | top->opaque_lsa_self->del = free_opaque_info_per_type; |
| 180 | top->t_opaque_lsa_self = NULL; |
| 181 | |
| 182 | #ifdef MONITOR_LSDB_CHANGE |
| 183 | top->lsdb->new_lsa_hook = ospf_opaque_lsa_install_hook; |
| 184 | top->lsdb->del_lsa_hook = ospf_opaque_lsa_delete_hook; |
| 185 | #endif /* MONITOR_LSDB_CHANGE */ |
| 186 | return 0; |
| 187 | } |
| 188 | |
| 189 | void |
| 190 | ospf_opaque_type11_lsa_term (struct ospf *top) |
| 191 | { |
| 192 | #ifdef MONITOR_LSDB_CHANGE |
| 193 | top->lsdb->new_lsa_hook = |
| 194 | top->lsdb->del_lsa_hook = NULL; |
| 195 | #endif /* MONITOR_LSDB_CHANGE */ |
| 196 | |
| 197 | OSPF_TIMER_OFF (top->t_opaque_lsa_self); |
| 198 | if (top->opaque_lsa_self != NULL) |
| 199 | list_delete (top->opaque_lsa_self); |
| 200 | top->opaque_lsa_self = NULL; |
| 201 | return; |
| 202 | } |
| 203 | |
| 204 | static const char * |
| 205 | ospf_opaque_type_name (u_char opaque_type) |
| 206 | { |
| 207 | const char *name = "Unknown"; |
| 208 | |
| 209 | switch (opaque_type) |
| 210 | { |
| 211 | case OPAQUE_TYPE_WILDCARD: /* This is a special assignment! */ |
| 212 | name = "Wildcard"; |
| 213 | break; |
| 214 | case OPAQUE_TYPE_TRAFFIC_ENGINEERING_LSA: |
| 215 | name = "Traffic Engineering LSA"; |
| 216 | break; |
| 217 | case OPAQUE_TYPE_SYCAMORE_OPTICAL_TOPOLOGY_DESC: |
| 218 | name = "Sycamore optical topology description"; |
| 219 | break; |
| 220 | case OPAQUE_TYPE_GRACE_LSA: |
| 221 | name = "Grace-LSA"; |
| 222 | break; |
| 223 | default: |
| 224 | if (OPAQUE_TYPE_RANGE_UNASSIGNED (opaque_type)) |
| 225 | name = "Unassigned"; |
gdt | f4436f7 | 2004-12-09 14:49:51 +0000 | [diff] [blame] | 226 | /* XXX warning: comparison is always true due to limited range of data type */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 227 | else if (OPAQUE_TYPE_RANGE_RESERVED (opaque_type)) |
| 228 | name = "Private/Experimental"; |
| 229 | break; |
| 230 | } |
| 231 | return name; |
| 232 | } |
| 233 | |
| 234 | /*------------------------------------------------------------------------* |
| 235 | * Followings are management functions to store user specified callbacks. |
| 236 | *------------------------------------------------------------------------*/ |
| 237 | |
| 238 | struct opaque_info_per_type; /* Forward declaration. */ |
| 239 | |
| 240 | struct ospf_opaque_functab |
| 241 | { |
| 242 | u_char opaque_type; |
| 243 | struct opaque_info_per_type *oipt; |
| 244 | |
| 245 | int (* new_if_hook)(struct interface *ifp); |
| 246 | int (* del_if_hook)(struct interface *ifp); |
| 247 | void (* ism_change_hook)(struct ospf_interface *oi, int old_status); |
| 248 | void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status); |
| 249 | void (* config_write_router)(struct vty *vty); |
| 250 | void (* config_write_if )(struct vty *vty, struct interface *ifp); |
| 251 | void (* config_write_debug )(struct vty *vty); |
| 252 | void (* show_opaque_info )(struct vty *vty, struct ospf_lsa *lsa); |
| 253 | int (* lsa_originator)(void *arg); |
| 254 | void (* lsa_refresher )(struct ospf_lsa *lsa); |
| 255 | int (* new_lsa_hook)(struct ospf_lsa *lsa); |
| 256 | int (* del_lsa_hook)(struct ospf_lsa *lsa); |
| 257 | }; |
| 258 | |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 259 | /* Handle LSA-9/10/11 altogether. */ |
| 260 | static struct list *ospf_opaque_wildcard_funclist; |
| 261 | static struct list *ospf_opaque_type9_funclist; |
| 262 | static struct list *ospf_opaque_type10_funclist; |
| 263 | static struct list *ospf_opaque_type11_funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 264 | |
| 265 | static void |
| 266 | ospf_opaque_del_functab (void *val) |
| 267 | { |
| 268 | XFREE (MTYPE_OSPF_OPAQUE_FUNCTAB, val); |
| 269 | return; |
| 270 | } |
| 271 | |
| 272 | static void |
| 273 | ospf_opaque_funclist_init (void) |
| 274 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 275 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 276 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 277 | funclist = ospf_opaque_wildcard_funclist = list_new (); |
| 278 | funclist->del = ospf_opaque_del_functab; |
| 279 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 280 | funclist = ospf_opaque_type9_funclist = list_new (); |
| 281 | funclist->del = ospf_opaque_del_functab; |
| 282 | |
| 283 | funclist = ospf_opaque_type10_funclist = list_new (); |
| 284 | funclist->del = ospf_opaque_del_functab; |
| 285 | |
| 286 | funclist = ospf_opaque_type11_funclist = list_new (); |
| 287 | funclist->del = ospf_opaque_del_functab; |
| 288 | return; |
| 289 | } |
| 290 | |
| 291 | static void |
| 292 | ospf_opaque_funclist_term (void) |
| 293 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 294 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 295 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 296 | funclist = ospf_opaque_wildcard_funclist; |
| 297 | list_delete (funclist); |
| 298 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 299 | funclist = ospf_opaque_type9_funclist; |
| 300 | list_delete (funclist); |
| 301 | |
| 302 | funclist = ospf_opaque_type10_funclist; |
| 303 | list_delete (funclist); |
| 304 | |
| 305 | funclist = ospf_opaque_type11_funclist; |
| 306 | list_delete (funclist); |
| 307 | return; |
| 308 | } |
| 309 | |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 310 | static struct list * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 311 | ospf_get_opaque_funclist (u_char lsa_type) |
| 312 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 313 | struct list *funclist = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 314 | |
| 315 | switch (lsa_type) |
| 316 | { |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 317 | case OPAQUE_TYPE_WILDCARD: |
| 318 | /* XXX |
| 319 | * This is an ugly trick to handle type-9/10/11 LSA altogether. |
| 320 | * Yes, "OPAQUE_TYPE_WILDCARD (value 0)" is not an LSA-type, nor |
| 321 | * an officially assigned opaque-type. |
| 322 | * Though it is possible that the value might be officially used |
| 323 | * in the future, we use it internally as a special label, for now. |
| 324 | */ |
| 325 | funclist = ospf_opaque_wildcard_funclist; |
| 326 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 327 | case OSPF_OPAQUE_LINK_LSA: |
| 328 | funclist = ospf_opaque_type9_funclist; |
| 329 | break; |
| 330 | case OSPF_OPAQUE_AREA_LSA: |
| 331 | funclist = ospf_opaque_type10_funclist; |
| 332 | break; |
| 333 | case OSPF_OPAQUE_AS_LSA: |
| 334 | funclist = ospf_opaque_type11_funclist; |
| 335 | break; |
| 336 | default: |
| 337 | zlog_warn ("ospf_get_opaque_funclist: Unexpected LSA-type(%u)", lsa_type); |
| 338 | break; |
| 339 | } |
| 340 | return funclist; |
| 341 | } |
| 342 | |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 343 | /* XXX: such a huge argument list can /not/ be healthy... */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 344 | int |
| 345 | ospf_register_opaque_functab ( |
| 346 | u_char lsa_type, |
| 347 | u_char opaque_type, |
| 348 | int (* new_if_hook)(struct interface *ifp), |
| 349 | int (* del_if_hook)(struct interface *ifp), |
| 350 | void (* ism_change_hook)(struct ospf_interface *oi, int old_status), |
| 351 | void (* nsm_change_hook)(struct ospf_neighbor *nbr, int old_status), |
| 352 | void (* config_write_router)(struct vty *vty), |
| 353 | void (* config_write_if )(struct vty *vty, struct interface *ifp), |
| 354 | void (* config_write_debug )(struct vty *vty), |
| 355 | void (* show_opaque_info )(struct vty *vty, struct ospf_lsa *lsa), |
| 356 | int (* lsa_originator)(void *arg), |
| 357 | void (* lsa_refresher )(struct ospf_lsa *lsa), |
| 358 | int (* new_lsa_hook)(struct ospf_lsa *lsa), |
| 359 | int (* del_lsa_hook)(struct ospf_lsa *lsa)) |
| 360 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 361 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 362 | struct ospf_opaque_functab *new; |
| 363 | int rc = -1; |
| 364 | |
| 365 | if ((funclist = ospf_get_opaque_funclist (lsa_type)) == NULL) |
| 366 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 367 | zlog_warn ("ospf_register_opaque_functab: Cannot get funclist" |
| 368 | " for Type-%u LSAs?", |
| 369 | lsa_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 370 | goto out; |
| 371 | } |
| 372 | else |
| 373 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 374 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 375 | struct ospf_opaque_functab *functab; |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 376 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 377 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 378 | if (functab->opaque_type == opaque_type) |
| 379 | { |
| 380 | zlog_warn ("ospf_register_opaque_functab: Duplicated entry?:" |
| 381 | " lsa_type(%u), opaque_type(%u)", |
| 382 | lsa_type, opaque_type); |
| 383 | goto out; |
| 384 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | if ((new = XCALLOC (MTYPE_OSPF_OPAQUE_FUNCTAB, |
| 388 | sizeof (struct ospf_opaque_functab))) == NULL) |
| 389 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 390 | zlog_warn ("ospf_register_opaque_functab: XMALLOC: %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 391 | safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 392 | goto out; |
| 393 | } |
| 394 | |
| 395 | new->opaque_type = opaque_type; |
| 396 | new->oipt = NULL; |
| 397 | new->new_if_hook = new_if_hook; |
| 398 | new->del_if_hook = del_if_hook; |
| 399 | new->ism_change_hook = ism_change_hook; |
| 400 | new->nsm_change_hook = nsm_change_hook; |
| 401 | new->config_write_router = config_write_router; |
| 402 | new->config_write_if = config_write_if; |
| 403 | new->config_write_debug = config_write_debug; |
| 404 | new->show_opaque_info = show_opaque_info; |
| 405 | new->lsa_originator = lsa_originator; |
| 406 | new->lsa_refresher = lsa_refresher; |
| 407 | new->new_lsa_hook = new_lsa_hook; |
| 408 | new->del_lsa_hook = del_lsa_hook; |
| 409 | |
| 410 | listnode_add (funclist, new); |
| 411 | rc = 0; |
| 412 | |
| 413 | out: |
| 414 | return rc; |
| 415 | } |
| 416 | |
| 417 | void |
| 418 | ospf_delete_opaque_functab (u_char lsa_type, u_char opaque_type) |
| 419 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 420 | struct list *funclist; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 421 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 422 | struct ospf_opaque_functab *functab; |
| 423 | |
| 424 | if ((funclist = ospf_get_opaque_funclist (lsa_type)) != NULL) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 425 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 426 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 427 | if (functab->opaque_type == opaque_type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 428 | { |
| 429 | /* Cleanup internal control information, if it still remains. */ |
| 430 | if (functab->oipt != NULL) |
| 431 | free_opaque_info_per_type (functab->oipt); |
| 432 | |
| 433 | /* Dequeue listnode entry from the list. */ |
| 434 | listnode_delete (funclist, functab); |
| 435 | |
| 436 | /* Avoid misjudgement in the next lookup. */ |
| 437 | if (listcount (funclist) == 0) |
| 438 | funclist->head = funclist->tail = NULL; |
| 439 | |
| 440 | XFREE (MTYPE_OSPF_OPAQUE_FUNCTAB, functab); |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 441 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 442 | } |
| 443 | } |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 444 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 445 | return; |
| 446 | } |
| 447 | |
| 448 | static struct ospf_opaque_functab * |
| 449 | ospf_opaque_functab_lookup (struct ospf_lsa *lsa) |
| 450 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 451 | struct list *funclist; |
| 452 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 453 | struct ospf_opaque_functab *functab; |
| 454 | u_char key = GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)); |
| 455 | |
| 456 | if ((funclist = ospf_get_opaque_funclist (lsa->data->type)) != NULL) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 457 | for (ALL_LIST_ELEMENTS_RO (funclist, node, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 458 | if (functab->opaque_type == key) |
| 459 | return functab; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 460 | |
| 461 | return NULL; |
| 462 | } |
| 463 | |
| 464 | /*------------------------------------------------------------------------* |
| 465 | * Followings are management functions for self-originated LSA entries. |
| 466 | *------------------------------------------------------------------------*/ |
| 467 | |
| 468 | /* |
| 469 | * Opaque-LSA control information per opaque-type. |
| 470 | * Single Opaque-Type may have multiple instances; each of them will be |
| 471 | * identified by their opaque-id. |
| 472 | */ |
| 473 | struct opaque_info_per_type |
| 474 | { |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 475 | u_char lsa_type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 476 | u_char opaque_type; |
| 477 | |
| 478 | enum { PROC_NORMAL, PROC_SUSPEND } status; |
| 479 | |
| 480 | /* |
| 481 | * Thread for (re-)origination scheduling for this opaque-type. |
| 482 | * |
| 483 | * Initial origination of Opaque-LSAs is controlled by generic |
| 484 | * Opaque-LSA handling module so that same opaque-type entries are |
| 485 | * called all at once when certain conditions are met. |
| 486 | * However, there might be cases that some Opaque-LSA clients need |
| 487 | * to (re-)originate their own Opaque-LSAs out-of-sync with others. |
| 488 | * This thread is prepared for that specific purpose. |
| 489 | */ |
| 490 | struct thread *t_opaque_lsa_self; |
| 491 | |
| 492 | /* |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 493 | * Backpointer to an "owner" which is LSA-type dependent. |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 494 | * type-9: struct ospf_interface |
| 495 | * type-10: struct ospf_area |
| 496 | * type-11: struct ospf |
| 497 | */ |
| 498 | void *owner; |
| 499 | |
| 500 | /* Collection of callback functions for this opaque-type. */ |
| 501 | struct ospf_opaque_functab *functab; |
| 502 | |
| 503 | /* List of Opaque-LSA control informations per opaque-id. */ |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 504 | struct list *id_list; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 505 | }; |
| 506 | |
| 507 | /* Opaque-LSA control information per opaque-id. */ |
| 508 | struct opaque_info_per_id |
| 509 | { |
| 510 | u_int32_t opaque_id; |
| 511 | |
| 512 | /* Thread for refresh/flush scheduling for this opaque-type/id. */ |
| 513 | struct thread *t_opaque_lsa_self; |
| 514 | |
| 515 | /* Backpointer to Opaque-LSA control information per opaque-type. */ |
| 516 | struct opaque_info_per_type *opqctl_type; |
| 517 | |
| 518 | /* Here comes an actual Opaque-LSA entry for this opaque-type/id. */ |
| 519 | struct ospf_lsa *lsa; |
| 520 | }; |
| 521 | |
| 522 | static struct opaque_info_per_type *register_opaque_info_per_type (struct ospf_opaque_functab *functab, struct ospf_lsa *new); |
| 523 | static struct opaque_info_per_type *lookup_opaque_info_by_type (struct ospf_lsa *lsa); |
| 524 | static struct opaque_info_per_id *register_opaque_info_per_id (struct opaque_info_per_type *oipt, struct ospf_lsa *new); |
| 525 | static struct opaque_info_per_id *lookup_opaque_info_by_id (struct opaque_info_per_type *oipt, struct ospf_lsa *lsa); |
| 526 | static struct opaque_info_per_id *register_opaque_lsa (struct ospf_lsa *new); |
| 527 | |
| 528 | |
| 529 | static struct opaque_info_per_type * |
| 530 | register_opaque_info_per_type (struct ospf_opaque_functab *functab, |
| 531 | struct ospf_lsa *new) |
| 532 | { |
| 533 | struct ospf *top; |
| 534 | struct opaque_info_per_type *oipt; |
| 535 | |
| 536 | if ((oipt = XCALLOC (MTYPE_OPAQUE_INFO_PER_TYPE, |
| 537 | sizeof (struct opaque_info_per_type))) == NULL) |
| 538 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 539 | zlog_warn ("register_opaque_info_per_type: XMALLOC: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 540 | goto out; |
| 541 | } |
| 542 | |
| 543 | switch (new->data->type) |
| 544 | { |
| 545 | case OSPF_OPAQUE_LINK_LSA: |
| 546 | oipt->owner = new->oi; |
| 547 | listnode_add (new->oi->opaque_lsa_self, oipt); |
| 548 | break; |
| 549 | case OSPF_OPAQUE_AREA_LSA: |
| 550 | oipt->owner = new->area; |
| 551 | listnode_add (new->area->opaque_lsa_self, oipt); |
| 552 | break; |
| 553 | case OSPF_OPAQUE_AS_LSA: |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 554 | top = ospf_lookup (); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 555 | if (new->area != NULL && (top = new->area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | { |
| 557 | free_opaque_info_per_type ((void *) oipt); |
| 558 | oipt = NULL; |
| 559 | goto out; /* This case may not exist. */ |
| 560 | } |
| 561 | oipt->owner = top; |
| 562 | listnode_add (top->opaque_lsa_self, oipt); |
| 563 | break; |
| 564 | default: |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 565 | zlog_warn ("register_opaque_info_per_type: Unexpected LSA-type(%u)", new->data->type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 566 | free_opaque_info_per_type ((void *) oipt); |
| 567 | oipt = NULL; |
| 568 | goto out; /* This case may not exist. */ |
| 569 | } |
| 570 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 571 | oipt->lsa_type = new->data->type; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 572 | oipt->opaque_type = GET_OPAQUE_TYPE (ntohl (new->data->id.s_addr)); |
| 573 | oipt->status = PROC_NORMAL; |
| 574 | oipt->t_opaque_lsa_self = NULL; |
| 575 | oipt->functab = functab; |
| 576 | functab->oipt = oipt; |
| 577 | oipt->id_list = list_new (); |
| 578 | oipt->id_list->del = free_opaque_info_per_id; |
| 579 | |
| 580 | out: |
| 581 | return oipt; |
| 582 | } |
| 583 | |
| 584 | static void |
| 585 | free_opaque_info_per_type (void *val) |
| 586 | { |
| 587 | struct opaque_info_per_type *oipt = (struct opaque_info_per_type *) val; |
| 588 | struct opaque_info_per_id *oipi; |
| 589 | struct ospf_lsa *lsa; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 590 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 591 | |
| 592 | /* Control information per opaque-id may still exist. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 593 | for (ALL_LIST_ELEMENTS (oipt->id_list, node, nnode, oipi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 594 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 595 | if ((lsa = oipi->lsa) == NULL) |
| 596 | continue; |
| 597 | if (IS_LSA_MAXAGE (lsa)) |
| 598 | continue; |
| 599 | ospf_opaque_lsa_flush_schedule (lsa); |
| 600 | } |
| 601 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 602 | /* Remove "oipt" from its owner's self-originated LSA list. */ |
| 603 | switch (oipt->lsa_type) |
| 604 | { |
| 605 | case OSPF_OPAQUE_LINK_LSA: |
| 606 | { |
| 607 | struct ospf_interface *oi = (struct ospf_interface *)(oipt->owner); |
| 608 | listnode_delete (oi->opaque_lsa_self, oipt); |
| 609 | break; |
| 610 | } |
| 611 | case OSPF_OPAQUE_AREA_LSA: |
| 612 | { |
| 613 | struct ospf_area *area = (struct ospf_area *)(oipt->owner); |
| 614 | listnode_delete (area->opaque_lsa_self, oipt); |
| 615 | break; |
| 616 | } |
| 617 | case OSPF_OPAQUE_AS_LSA: |
| 618 | { |
| 619 | struct ospf *top = (struct ospf *)(oipt->owner); |
| 620 | listnode_delete (top->opaque_lsa_self, oipt); |
| 621 | break; |
| 622 | } |
| 623 | default: |
| 624 | zlog_warn ("free_opaque_info_per_type: Unexpected LSA-type(%u)", oipt->lsa_type); |
| 625 | break; /* This case may not exist. */ |
| 626 | } |
| 627 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 628 | OSPF_TIMER_OFF (oipt->t_opaque_lsa_self); |
| 629 | list_delete (oipt->id_list); |
| 630 | XFREE (MTYPE_OPAQUE_INFO_PER_TYPE, oipt); |
| 631 | return; |
| 632 | } |
| 633 | |
| 634 | static struct opaque_info_per_type * |
| 635 | lookup_opaque_info_by_type (struct ospf_lsa *lsa) |
| 636 | { |
| 637 | struct ospf *top; |
| 638 | struct ospf_area *area; |
| 639 | struct ospf_interface *oi; |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 640 | struct list *listtop = NULL; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 641 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 642 | struct opaque_info_per_type *oipt = NULL; |
| 643 | u_char key = GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)); |
| 644 | |
| 645 | switch (lsa->data->type) |
| 646 | { |
| 647 | case OSPF_OPAQUE_LINK_LSA: |
| 648 | if ((oi = lsa->oi) != NULL) |
| 649 | listtop = oi->opaque_lsa_self; |
| 650 | else |
| 651 | zlog_warn ("Type-9 Opaque-LSA: Reference to OI is missing?"); |
| 652 | break; |
| 653 | case OSPF_OPAQUE_AREA_LSA: |
| 654 | if ((area = lsa->area) != NULL) |
| 655 | listtop = area->opaque_lsa_self; |
| 656 | else |
| 657 | zlog_warn ("Type-10 Opaque-LSA: Reference to AREA is missing?"); |
| 658 | break; |
| 659 | case OSPF_OPAQUE_AS_LSA: |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 660 | top = ospf_lookup (); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 661 | if ((area = lsa->area) != NULL && (top = area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 662 | { |
| 663 | zlog_warn ("Type-11 Opaque-LSA: Reference to OSPF is missing?"); |
| 664 | break; /* Unlikely to happen. */ |
| 665 | } |
| 666 | listtop = top->opaque_lsa_self; |
| 667 | break; |
| 668 | default: |
| 669 | zlog_warn ("lookup_opaque_info_by_type: Unexpected LSA-type(%u)", lsa->data->type); |
| 670 | break; |
| 671 | } |
| 672 | |
| 673 | if (listtop != NULL) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 674 | for (ALL_LIST_ELEMENTS (listtop, node, nnode, oipt)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 675 | if (oipt->opaque_type == key) |
| 676 | return oipt; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 677 | |
| 678 | return NULL; |
| 679 | } |
| 680 | |
| 681 | static struct opaque_info_per_id * |
| 682 | register_opaque_info_per_id (struct opaque_info_per_type *oipt, |
| 683 | struct ospf_lsa *new) |
| 684 | { |
| 685 | struct opaque_info_per_id *oipi; |
| 686 | |
| 687 | if ((oipi = XCALLOC (MTYPE_OPAQUE_INFO_PER_ID, |
| 688 | sizeof (struct opaque_info_per_id))) == NULL) |
| 689 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 690 | zlog_warn ("register_opaque_info_per_id: XMALLOC: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 691 | goto out; |
| 692 | } |
| 693 | oipi->opaque_id = GET_OPAQUE_ID (ntohl (new->data->id.s_addr)); |
| 694 | oipi->t_opaque_lsa_self = NULL; |
| 695 | oipi->opqctl_type = oipt; |
| 696 | oipi->lsa = ospf_lsa_lock (new); |
| 697 | |
| 698 | listnode_add (oipt->id_list, oipi); |
| 699 | |
| 700 | out: |
| 701 | return oipi; |
| 702 | } |
| 703 | |
| 704 | static void |
| 705 | free_opaque_info_per_id (void *val) |
| 706 | { |
| 707 | struct opaque_info_per_id *oipi = (struct opaque_info_per_id *) val; |
| 708 | |
| 709 | OSPF_TIMER_OFF (oipi->t_opaque_lsa_self); |
| 710 | if (oipi->lsa != NULL) |
| 711 | ospf_lsa_unlock (oipi->lsa); |
| 712 | XFREE (MTYPE_OPAQUE_INFO_PER_ID, oipi); |
| 713 | return; |
| 714 | } |
| 715 | |
| 716 | static struct opaque_info_per_id * |
| 717 | lookup_opaque_info_by_id (struct opaque_info_per_type *oipt, |
| 718 | struct ospf_lsa *lsa) |
| 719 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 720 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 721 | struct opaque_info_per_id *oipi; |
| 722 | u_int32_t key = GET_OPAQUE_ID (ntohl (lsa->data->id.s_addr)); |
| 723 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 724 | for (ALL_LIST_ELEMENTS (oipt->id_list, node, nnode, oipi)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 725 | if (oipi->opaque_id == key) |
| 726 | return oipi; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 727 | |
| 728 | return NULL; |
| 729 | } |
| 730 | |
| 731 | static struct opaque_info_per_id * |
| 732 | register_opaque_lsa (struct ospf_lsa *new) |
| 733 | { |
| 734 | struct ospf_opaque_functab *functab; |
| 735 | struct opaque_info_per_type *oipt; |
| 736 | struct opaque_info_per_id *oipi = NULL; |
| 737 | |
| 738 | if ((functab = ospf_opaque_functab_lookup (new)) == NULL) |
| 739 | goto out; |
| 740 | |
| 741 | if ((oipt = lookup_opaque_info_by_type (new)) == NULL |
| 742 | && (oipt = register_opaque_info_per_type (functab, new)) == NULL) |
| 743 | goto out; |
| 744 | |
| 745 | if ((oipi = register_opaque_info_per_id (oipt, new)) == NULL) |
| 746 | goto out; |
| 747 | |
| 748 | out: |
| 749 | return oipi; |
| 750 | } |
| 751 | |
| 752 | /*------------------------------------------------------------------------* |
| 753 | * Followings are (vty) configuration functions for Opaque-LSAs handling. |
| 754 | *------------------------------------------------------------------------*/ |
| 755 | |
| 756 | DEFUN (capability_opaque, |
| 757 | capability_opaque_cmd, |
| 758 | "capability opaque", |
| 759 | "Enable specific OSPF feature\n" |
| 760 | "Opaque LSA\n") |
| 761 | { |
| 762 | struct ospf *ospf = (struct ospf *) vty->index; |
| 763 | |
| 764 | /* Turn on the "master switch" of opaque-lsa capability. */ |
| 765 | if (!CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE)) |
| 766 | { |
| 767 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 768 | zlog_debug ("Opaque capability: OFF -> ON"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 769 | |
| 770 | SET_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE); |
| 771 | ospf_renegotiate_optional_capabilities (ospf); |
| 772 | } |
| 773 | return CMD_SUCCESS; |
| 774 | } |
| 775 | |
| 776 | ALIAS (capability_opaque, |
| 777 | ospf_opaque_capable_cmd, |
| 778 | "ospf opaque-lsa", |
| 779 | "OSPF specific commands\n" |
| 780 | "Enable the Opaque-LSA capability (rfc2370)\n") |
| 781 | |
| 782 | DEFUN (no_capability_opaque, |
| 783 | no_capability_opaque_cmd, |
| 784 | "no capability opaque", |
| 785 | NO_STR |
| 786 | "Enable specific OSPF feature\n" |
| 787 | "Opaque LSA\n") |
| 788 | { |
| 789 | struct ospf *ospf = (struct ospf *) vty->index; |
| 790 | |
| 791 | /* Turn off the "master switch" of opaque-lsa capability. */ |
| 792 | if (CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE)) |
| 793 | { |
| 794 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 795 | zlog_debug ("Opaque capability: ON -> OFF"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 796 | |
| 797 | UNSET_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE); |
| 798 | ospf_renegotiate_optional_capabilities (ospf); |
| 799 | } |
| 800 | return CMD_SUCCESS; |
| 801 | } |
| 802 | |
| 803 | ALIAS (no_capability_opaque, |
| 804 | no_ospf_opaque_capable_cmd, |
| 805 | "no ospf opaque-lsa", |
| 806 | NO_STR |
| 807 | "OSPF specific commands\n" |
| 808 | "Disable the Opaque-LSA capability (rfc2370)\n") |
| 809 | |
| 810 | static void |
| 811 | ospf_opaque_register_vty (void) |
| 812 | { |
| 813 | install_element (OSPF_NODE, &capability_opaque_cmd); |
| 814 | install_element (OSPF_NODE, &no_capability_opaque_cmd); |
| 815 | install_element (OSPF_NODE, &ospf_opaque_capable_cmd); |
| 816 | install_element (OSPF_NODE, &no_ospf_opaque_capable_cmd); |
| 817 | return; |
| 818 | } |
| 819 | |
| 820 | /*------------------------------------------------------------------------* |
| 821 | * Followings are collection of user-registered function callers. |
| 822 | *------------------------------------------------------------------------*/ |
| 823 | |
| 824 | static int |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 825 | opaque_lsa_new_if_callback (struct list *funclist, struct interface *ifp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 826 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 827 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 828 | struct ospf_opaque_functab *functab; |
| 829 | int rc = -1; |
| 830 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 831 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 832 | if (functab->new_if_hook != NULL) |
| 833 | if ((* functab->new_if_hook)(ifp) != 0) |
| 834 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 835 | rc = 0; |
| 836 | out: |
| 837 | return rc; |
| 838 | } |
| 839 | |
| 840 | static int |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 841 | opaque_lsa_del_if_callback (struct list *funclist, struct interface *ifp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 842 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 843 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 844 | struct ospf_opaque_functab *functab; |
| 845 | int rc = -1; |
| 846 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 847 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 848 | if (functab->del_if_hook != NULL) |
| 849 | if ((* functab->del_if_hook)(ifp) != 0) |
| 850 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 851 | rc = 0; |
| 852 | out: |
| 853 | return rc; |
| 854 | } |
| 855 | |
| 856 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 857 | opaque_lsa_ism_change_callback (struct list *funclist, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 858 | struct ospf_interface *oi, int old_status) |
| 859 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 860 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 861 | struct ospf_opaque_functab *functab; |
| 862 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 863 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 864 | if (functab->ism_change_hook != NULL) |
| 865 | (* functab->ism_change_hook)(oi, old_status); |
| 866 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 867 | return; |
| 868 | } |
| 869 | |
| 870 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 871 | opaque_lsa_nsm_change_callback (struct list *funclist, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 872 | struct ospf_neighbor *nbr, int old_status) |
| 873 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 874 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 875 | struct ospf_opaque_functab *functab; |
| 876 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 877 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 878 | if (functab->nsm_change_hook != NULL) |
| 879 | (* functab->nsm_change_hook)(nbr, old_status); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 880 | return; |
| 881 | } |
| 882 | |
| 883 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 884 | opaque_lsa_config_write_router_callback (struct list *funclist, |
| 885 | struct vty *vty) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 886 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 887 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 888 | struct ospf_opaque_functab *functab; |
| 889 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 890 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 891 | if (functab->config_write_router != NULL) |
| 892 | (* functab->config_write_router)(vty); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 893 | return; |
| 894 | } |
| 895 | |
| 896 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 897 | opaque_lsa_config_write_if_callback (struct list *funclist, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 898 | struct vty *vty, struct interface *ifp) |
| 899 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 900 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 901 | struct ospf_opaque_functab *functab; |
| 902 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 903 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 904 | if (functab->config_write_if != NULL) |
| 905 | (* functab->config_write_if)(vty, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 906 | return; |
| 907 | } |
| 908 | |
| 909 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 910 | opaque_lsa_config_write_debug_callback (struct list *funclist, struct vty *vty) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 911 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 912 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 913 | struct ospf_opaque_functab *functab; |
| 914 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 915 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 916 | if (functab->config_write_debug != NULL) |
| 917 | (* functab->config_write_debug)(vty); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 918 | return; |
| 919 | } |
| 920 | |
| 921 | static int |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 922 | opaque_lsa_originate_callback (struct list *funclist, void *lsa_type_dependent) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 923 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 924 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 925 | struct ospf_opaque_functab *functab; |
| 926 | int rc = -1; |
| 927 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 928 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 929 | if (functab->lsa_originator != NULL) |
| 930 | if ((* functab->lsa_originator)(lsa_type_dependent) != 0) |
| 931 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 932 | rc = 0; |
| 933 | out: |
| 934 | return rc; |
| 935 | } |
| 936 | |
| 937 | static int |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 938 | new_lsa_callback (struct list *funclist, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 939 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 940 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 941 | struct ospf_opaque_functab *functab; |
| 942 | int rc = -1; |
| 943 | |
| 944 | /* This function handles ALL types of LSAs, not only opaque ones. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 945 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 946 | if (functab->new_lsa_hook != NULL) |
| 947 | if ((* functab->new_lsa_hook)(lsa) != 0) |
| 948 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 949 | rc = 0; |
| 950 | out: |
| 951 | return rc; |
| 952 | } |
| 953 | |
| 954 | static int |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 955 | del_lsa_callback (struct list *funclist, struct ospf_lsa *lsa) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 956 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 957 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 958 | struct ospf_opaque_functab *functab; |
| 959 | int rc = -1; |
| 960 | |
| 961 | /* This function handles ALL types of LSAs, not only opaque ones. */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 962 | for (ALL_LIST_ELEMENTS (funclist, node, nnode, functab)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 963 | if (functab->del_lsa_hook != NULL) |
| 964 | if ((* functab->del_lsa_hook)(lsa) != 0) |
| 965 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 966 | rc = 0; |
| 967 | out: |
| 968 | return rc; |
| 969 | } |
| 970 | |
| 971 | /*------------------------------------------------------------------------* |
| 972 | * Followings are glue functions to call Opaque-LSA specific processing. |
| 973 | *------------------------------------------------------------------------*/ |
| 974 | |
| 975 | int |
| 976 | ospf_opaque_new_if (struct interface *ifp) |
| 977 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 978 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 979 | int rc = -1; |
| 980 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 981 | funclist = ospf_opaque_wildcard_funclist; |
| 982 | if (opaque_lsa_new_if_callback (funclist, ifp) != 0) |
| 983 | goto out; |
| 984 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 985 | funclist = ospf_opaque_type9_funclist; |
| 986 | if (opaque_lsa_new_if_callback (funclist, ifp) != 0) |
| 987 | goto out; |
| 988 | |
| 989 | funclist = ospf_opaque_type10_funclist; |
| 990 | if (opaque_lsa_new_if_callback (funclist, ifp) != 0) |
| 991 | goto out; |
| 992 | |
| 993 | funclist = ospf_opaque_type11_funclist; |
| 994 | if (opaque_lsa_new_if_callback (funclist, ifp) != 0) |
| 995 | goto out; |
| 996 | |
| 997 | rc = 0; |
| 998 | out: |
| 999 | return rc; |
| 1000 | } |
| 1001 | |
| 1002 | int |
| 1003 | ospf_opaque_del_if (struct interface *ifp) |
| 1004 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1005 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1006 | int rc = -1; |
| 1007 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1008 | funclist = ospf_opaque_wildcard_funclist; |
| 1009 | if (opaque_lsa_del_if_callback (funclist, ifp) != 0) |
| 1010 | goto out; |
| 1011 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1012 | funclist = ospf_opaque_type9_funclist; |
| 1013 | if (opaque_lsa_del_if_callback (funclist, ifp) != 0) |
| 1014 | goto out; |
| 1015 | |
| 1016 | funclist = ospf_opaque_type10_funclist; |
| 1017 | if (opaque_lsa_del_if_callback (funclist, ifp) != 0) |
| 1018 | goto out; |
| 1019 | |
| 1020 | funclist = ospf_opaque_type11_funclist; |
| 1021 | if (opaque_lsa_del_if_callback (funclist, ifp) != 0) |
| 1022 | goto out; |
| 1023 | |
| 1024 | rc = 0; |
| 1025 | out: |
| 1026 | return rc; |
| 1027 | } |
| 1028 | |
| 1029 | void |
| 1030 | ospf_opaque_ism_change (struct ospf_interface *oi, int old_status) |
| 1031 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1032 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1033 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1034 | funclist = ospf_opaque_wildcard_funclist; |
| 1035 | opaque_lsa_ism_change_callback (funclist, oi, old_status); |
| 1036 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1037 | funclist = ospf_opaque_type9_funclist; |
| 1038 | opaque_lsa_ism_change_callback (funclist, oi, old_status); |
| 1039 | |
| 1040 | funclist = ospf_opaque_type10_funclist; |
| 1041 | opaque_lsa_ism_change_callback (funclist, oi, old_status); |
| 1042 | |
| 1043 | funclist = ospf_opaque_type11_funclist; |
| 1044 | opaque_lsa_ism_change_callback (funclist, oi, old_status); |
| 1045 | |
| 1046 | return; |
| 1047 | } |
| 1048 | |
| 1049 | void |
| 1050 | ospf_opaque_nsm_change (struct ospf_neighbor *nbr, int old_state) |
| 1051 | { |
| 1052 | struct ospf *top; |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1053 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1054 | |
| 1055 | if ((top = oi_to_top (nbr->oi)) == NULL) |
| 1056 | goto out; |
| 1057 | |
| 1058 | if (old_state != NSM_Full && nbr->state == NSM_Full) |
| 1059 | { |
| 1060 | if (CHECK_FLAG (nbr->options, OSPF_OPTION_O)) |
| 1061 | { |
| 1062 | if (! CHECK_FLAG (top->opaque, OPAQUE_OPERATION_READY_BIT)) |
| 1063 | { |
| 1064 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1065 | zlog_debug ("Opaque-LSA: Now get operational!"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1066 | |
| 1067 | SET_FLAG (top->opaque, OPAQUE_OPERATION_READY_BIT); |
| 1068 | } |
| 1069 | |
| 1070 | ospf_opaque_lsa_originate_schedule (nbr->oi, NULL); |
| 1071 | } |
| 1072 | } |
| 1073 | else |
| 1074 | if (old_state == NSM_Full && nbr->state != NSM_Full) |
| 1075 | { |
| 1076 | #ifdef NOTYET |
| 1077 | /* |
| 1078 | * If no more opaque-capable full-state neighbor remains in the |
| 1079 | * flooding scope which corresponds to Opaque-LSA type, periodic |
| 1080 | * LS flooding should be stopped. |
| 1081 | */ |
| 1082 | #endif /* NOTYET */ |
| 1083 | ; |
| 1084 | } |
| 1085 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1086 | funclist = ospf_opaque_wildcard_funclist; |
| 1087 | opaque_lsa_nsm_change_callback (funclist, nbr, old_state); |
| 1088 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1089 | funclist = ospf_opaque_type9_funclist; |
| 1090 | opaque_lsa_nsm_change_callback (funclist, nbr, old_state); |
| 1091 | |
| 1092 | funclist = ospf_opaque_type10_funclist; |
| 1093 | opaque_lsa_nsm_change_callback (funclist, nbr, old_state); |
| 1094 | |
| 1095 | funclist = ospf_opaque_type11_funclist; |
| 1096 | opaque_lsa_nsm_change_callback (funclist, nbr, old_state); |
| 1097 | |
| 1098 | out: |
| 1099 | return; |
| 1100 | } |
| 1101 | |
| 1102 | void |
| 1103 | ospf_opaque_config_write_router (struct vty *vty, struct ospf *ospf) |
| 1104 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1105 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1106 | |
| 1107 | if (CHECK_FLAG (ospf->config, OSPF_OPAQUE_CAPABLE)) |
| 1108 | vty_out (vty, " capability opaque%s", VTY_NEWLINE); |
| 1109 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1110 | funclist = ospf_opaque_wildcard_funclist; |
| 1111 | opaque_lsa_config_write_router_callback (funclist, vty); |
| 1112 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1113 | funclist = ospf_opaque_type9_funclist; |
| 1114 | opaque_lsa_config_write_router_callback (funclist, vty); |
| 1115 | |
| 1116 | funclist = ospf_opaque_type10_funclist; |
| 1117 | opaque_lsa_config_write_router_callback (funclist, vty); |
| 1118 | |
| 1119 | funclist = ospf_opaque_type11_funclist; |
| 1120 | opaque_lsa_config_write_router_callback (funclist, vty); |
| 1121 | |
| 1122 | return; |
| 1123 | } |
| 1124 | |
| 1125 | void |
| 1126 | ospf_opaque_config_write_if (struct vty *vty, struct interface *ifp) |
| 1127 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1128 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1129 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1130 | funclist = ospf_opaque_wildcard_funclist; |
| 1131 | opaque_lsa_config_write_if_callback (funclist, vty, ifp); |
| 1132 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1133 | funclist = ospf_opaque_type9_funclist; |
| 1134 | opaque_lsa_config_write_if_callback (funclist, vty, ifp); |
| 1135 | |
| 1136 | funclist = ospf_opaque_type10_funclist; |
| 1137 | opaque_lsa_config_write_if_callback (funclist, vty, ifp); |
| 1138 | |
| 1139 | funclist = ospf_opaque_type11_funclist; |
| 1140 | opaque_lsa_config_write_if_callback (funclist, vty, ifp); |
| 1141 | |
| 1142 | return; |
| 1143 | } |
| 1144 | |
| 1145 | void |
| 1146 | ospf_opaque_config_write_debug (struct vty *vty) |
| 1147 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1148 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1149 | |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1150 | funclist = ospf_opaque_wildcard_funclist; |
| 1151 | opaque_lsa_config_write_debug_callback (funclist, vty); |
| 1152 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1153 | funclist = ospf_opaque_type9_funclist; |
| 1154 | opaque_lsa_config_write_debug_callback (funclist, vty); |
| 1155 | |
| 1156 | funclist = ospf_opaque_type10_funclist; |
| 1157 | opaque_lsa_config_write_debug_callback (funclist, vty); |
| 1158 | |
| 1159 | funclist = ospf_opaque_type11_funclist; |
| 1160 | opaque_lsa_config_write_debug_callback (funclist, vty); |
| 1161 | |
| 1162 | return; |
| 1163 | } |
| 1164 | |
| 1165 | void |
| 1166 | show_opaque_info_detail (struct vty *vty, struct ospf_lsa *lsa) |
| 1167 | { |
| 1168 | struct lsa_header *lsah = (struct lsa_header *) lsa->data; |
| 1169 | u_int32_t lsid = ntohl (lsah->id.s_addr); |
| 1170 | u_char opaque_type = GET_OPAQUE_TYPE (lsid); |
| 1171 | u_int32_t opaque_id = GET_OPAQUE_ID (lsid); |
| 1172 | struct ospf_opaque_functab *functab; |
| 1173 | |
| 1174 | /* Switch output functionality by vty address. */ |
| 1175 | if (vty != NULL) |
| 1176 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1177 | vty_out (vty, " Opaque-Type %u (%s)%s", opaque_type, |
| 1178 | ospf_opaque_type_name (opaque_type), VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1179 | vty_out (vty, " Opaque-ID 0x%x%s", opaque_id, VTY_NEWLINE); |
| 1180 | |
| 1181 | vty_out (vty, " Opaque-Info: %u octets of data%s%s", |
| 1182 | ntohs (lsah->length) - OSPF_LSA_HEADER_SIZE, |
| 1183 | VALID_OPAQUE_INFO_LEN(lsah) ? "" : "(Invalid length?)", |
| 1184 | VTY_NEWLINE); |
| 1185 | } |
| 1186 | else |
| 1187 | { |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1188 | zlog_debug (" Opaque-Type %u (%s)", opaque_type, |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1189 | ospf_opaque_type_name (opaque_type)); |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1190 | zlog_debug (" Opaque-ID 0x%x", opaque_id); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1191 | |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1192 | zlog_debug (" Opaque-Info: %u octets of data%s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1193 | ntohs (lsah->length) - OSPF_LSA_HEADER_SIZE, |
| 1194 | VALID_OPAQUE_INFO_LEN(lsah) ? "" : "(Invalid length?)"); |
| 1195 | } |
| 1196 | |
| 1197 | /* Call individual output functions. */ |
| 1198 | if ((functab = ospf_opaque_functab_lookup (lsa)) != NULL) |
| 1199 | if (functab->show_opaque_info != NULL) |
| 1200 | (* functab->show_opaque_info)(vty, lsa); |
| 1201 | |
| 1202 | return; |
| 1203 | } |
| 1204 | |
| 1205 | void |
| 1206 | ospf_opaque_lsa_dump (struct stream *s, u_int16_t length) |
| 1207 | { |
| 1208 | struct ospf_lsa lsa; |
| 1209 | |
| 1210 | lsa.data = (struct lsa_header *) STREAM_PNT (s); |
| 1211 | show_opaque_info_detail (NULL, &lsa); |
| 1212 | return; |
| 1213 | } |
| 1214 | |
| 1215 | static int |
| 1216 | ospf_opaque_lsa_install_hook (struct ospf_lsa *lsa) |
| 1217 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1218 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1219 | int rc = -1; |
| 1220 | |
| 1221 | /* |
| 1222 | * Some Opaque-LSA user may want to monitor every LSA installation |
| 1223 | * into the LSDB, regardless with target LSA type. |
| 1224 | */ |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1225 | funclist = ospf_opaque_wildcard_funclist; |
| 1226 | if (new_lsa_callback (funclist, lsa) != 0) |
| 1227 | goto out; |
| 1228 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1229 | funclist = ospf_opaque_type9_funclist; |
| 1230 | if (new_lsa_callback (funclist, lsa) != 0) |
| 1231 | goto out; |
| 1232 | |
| 1233 | funclist = ospf_opaque_type10_funclist; |
| 1234 | if (new_lsa_callback (funclist, lsa) != 0) |
| 1235 | goto out; |
| 1236 | |
| 1237 | funclist = ospf_opaque_type11_funclist; |
| 1238 | if (new_lsa_callback (funclist, lsa) != 0) |
| 1239 | goto out; |
| 1240 | |
| 1241 | rc = 0; |
| 1242 | out: |
| 1243 | return rc; |
| 1244 | } |
| 1245 | |
| 1246 | static int |
| 1247 | ospf_opaque_lsa_delete_hook (struct ospf_lsa *lsa) |
| 1248 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1249 | struct list *funclist; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1250 | int rc = -1; |
| 1251 | |
| 1252 | /* |
| 1253 | * Some Opaque-LSA user may want to monitor every LSA deletion |
| 1254 | * from the LSDB, regardless with target LSA type. |
| 1255 | */ |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1256 | funclist = ospf_opaque_wildcard_funclist; |
| 1257 | if (del_lsa_callback (funclist, lsa) != 0) |
| 1258 | goto out; |
| 1259 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1260 | funclist = ospf_opaque_type9_funclist; |
| 1261 | if (del_lsa_callback (funclist, lsa) != 0) |
| 1262 | goto out; |
| 1263 | |
| 1264 | funclist = ospf_opaque_type10_funclist; |
| 1265 | if (del_lsa_callback (funclist, lsa) != 0) |
| 1266 | goto out; |
| 1267 | |
| 1268 | funclist = ospf_opaque_type11_funclist; |
| 1269 | if (del_lsa_callback (funclist, lsa) != 0) |
| 1270 | goto out; |
| 1271 | |
| 1272 | rc = 0; |
| 1273 | out: |
| 1274 | return rc; |
| 1275 | } |
| 1276 | |
| 1277 | /*------------------------------------------------------------------------* |
| 1278 | * Followings are Opaque-LSA origination/refresh management functions. |
| 1279 | *------------------------------------------------------------------------*/ |
| 1280 | |
| 1281 | static int ospf_opaque_type9_lsa_originate (struct thread *t); |
| 1282 | static int ospf_opaque_type10_lsa_originate (struct thread *t); |
| 1283 | static int ospf_opaque_type11_lsa_originate (struct thread *t); |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1284 | static void ospf_opaque_lsa_reoriginate_resume (struct list *listtop, void *arg); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1285 | |
| 1286 | void |
| 1287 | ospf_opaque_lsa_originate_schedule (struct ospf_interface *oi, int *delay0) |
| 1288 | { |
| 1289 | struct ospf *top; |
| 1290 | struct ospf_area *area; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1291 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1292 | struct opaque_info_per_type *oipt; |
| 1293 | int delay = 0; |
| 1294 | |
| 1295 | if ((top = oi_to_top (oi)) == NULL || (area = oi->area) == NULL) |
| 1296 | { |
| 1297 | zlog_warn ("ospf_opaque_lsa_originate_schedule: Invalid argument?"); |
| 1298 | goto out; |
| 1299 | } |
| 1300 | |
| 1301 | /* It may not a right time to schedule origination now. */ |
| 1302 | if (! CHECK_FLAG (top->opaque, OPAQUE_OPERATION_READY_BIT)) |
| 1303 | { |
| 1304 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1305 | zlog_debug ("ospf_opaque_lsa_originate_schedule: Not operational."); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1306 | goto out; /* This is not an error. */ |
| 1307 | } |
| 1308 | if (IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque)) |
| 1309 | { |
| 1310 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1311 | zlog_debug ("ospf_opaque_lsa_originate_schedule: Under blockade."); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1312 | goto out; /* This is not an error, too. */ |
| 1313 | } |
| 1314 | |
| 1315 | if (delay0 != NULL) |
| 1316 | delay = *delay0; |
| 1317 | |
| 1318 | /* |
| 1319 | * There might be some entries that have been waiting for triggering |
| 1320 | * of per opaque-type re-origination get resumed. |
| 1321 | */ |
| 1322 | ospf_opaque_lsa_reoriginate_resume ( oi->opaque_lsa_self, (void *) oi); |
| 1323 | ospf_opaque_lsa_reoriginate_resume (area->opaque_lsa_self, (void *) area); |
| 1324 | ospf_opaque_lsa_reoriginate_resume ( top->opaque_lsa_self, (void *) top); |
| 1325 | |
| 1326 | /* |
| 1327 | * Now, schedule origination of all Opaque-LSAs per opaque-type. |
| 1328 | */ |
| 1329 | if (! list_isempty (ospf_opaque_type9_funclist) |
| 1330 | && list_isempty (oi->opaque_lsa_self) |
| 1331 | && oi->t_opaque_lsa_self == NULL) |
| 1332 | { |
| 1333 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1334 | zlog_debug ("Schedule Type-9 Opaque-LSA origination in %d sec later.", delay); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1335 | oi->t_opaque_lsa_self = |
| 1336 | thread_add_timer (master, ospf_opaque_type9_lsa_originate, oi, delay); |
| 1337 | delay += OSPF_MIN_LS_INTERVAL; |
| 1338 | } |
| 1339 | |
| 1340 | if (! list_isempty (ospf_opaque_type10_funclist) |
| 1341 | && list_isempty (area->opaque_lsa_self) |
| 1342 | && area->t_opaque_lsa_self == NULL) |
| 1343 | { |
| 1344 | /* |
| 1345 | * One AREA may contain multiple OIs, but above 2nd and 3rd |
| 1346 | * conditions prevent from scheduling the originate function |
| 1347 | * again and again. |
| 1348 | */ |
| 1349 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1350 | zlog_debug ("Schedule Type-10 Opaque-LSA origination in %d sec later.", delay); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1351 | area->t_opaque_lsa_self = |
| 1352 | thread_add_timer (master, ospf_opaque_type10_lsa_originate, |
| 1353 | area, delay); |
| 1354 | delay += OSPF_MIN_LS_INTERVAL; |
| 1355 | } |
| 1356 | |
| 1357 | if (! list_isempty (ospf_opaque_type11_funclist) |
| 1358 | && list_isempty (top->opaque_lsa_self) |
| 1359 | && top->t_opaque_lsa_self == NULL) |
| 1360 | { |
| 1361 | /* |
| 1362 | * One OSPF may contain multiple AREAs, but above 2nd and 3rd |
| 1363 | * conditions prevent from scheduling the originate function |
| 1364 | * again and again. |
| 1365 | */ |
| 1366 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1367 | zlog_debug ("Schedule Type-11 Opaque-LSA origination in %d sec later.", delay); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1368 | top->t_opaque_lsa_self = |
| 1369 | thread_add_timer (master, ospf_opaque_type11_lsa_originate, |
| 1370 | top, delay); |
| 1371 | delay += OSPF_MIN_LS_INTERVAL; |
| 1372 | } |
| 1373 | |
| 1374 | /* |
| 1375 | * Following section treats a special situation that this node's |
| 1376 | * opaque capability has changed as "ON -> OFF -> ON". |
| 1377 | */ |
| 1378 | if (! list_isempty (ospf_opaque_type9_funclist) |
| 1379 | && ! list_isempty (oi->opaque_lsa_self)) |
| 1380 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1381 | for (ALL_LIST_ELEMENTS (oi->opaque_lsa_self, node, nnode, oipt)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1382 | { |
hasso | 0d85b99 | 2004-03-18 19:18:33 +0000 | [diff] [blame] | 1383 | /* |
| 1384 | * removed the test for |
| 1385 | * (! list_isempty (oipt->id_list)) * Handler is already active. * |
| 1386 | * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list) |
| 1387 | * not being empty. |
| 1388 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1389 | if (oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */ |
| 1390 | || oipt->status == PROC_SUSPEND) /* Cannot originate now. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1391 | continue; |
| 1392 | |
| 1393 | ospf_opaque_lsa_reoriginate_schedule ((void *) oi, |
| 1394 | OSPF_OPAQUE_LINK_LSA, oipt->opaque_type); |
| 1395 | } |
| 1396 | } |
| 1397 | |
| 1398 | if (! list_isempty (ospf_opaque_type10_funclist) |
| 1399 | && ! list_isempty (area->opaque_lsa_self)) |
| 1400 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1401 | for (ALL_LIST_ELEMENTS (area->opaque_lsa_self, node, nnode, oipt)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1402 | { |
hasso | 0d85b99 | 2004-03-18 19:18:33 +0000 | [diff] [blame] | 1403 | /* |
| 1404 | * removed the test for |
| 1405 | * (! list_isempty (oipt->id_list)) * Handler is already active. * |
| 1406 | * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list) |
| 1407 | * not being empty. |
| 1408 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1409 | if (oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */ |
| 1410 | || oipt->status == PROC_SUSPEND) /* Cannot originate now. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1411 | continue; |
| 1412 | |
| 1413 | ospf_opaque_lsa_reoriginate_schedule ((void *) area, |
| 1414 | OSPF_OPAQUE_AREA_LSA, oipt->opaque_type); |
| 1415 | } |
| 1416 | } |
| 1417 | |
| 1418 | if (! list_isempty (ospf_opaque_type11_funclist) |
| 1419 | && ! list_isempty (top->opaque_lsa_self)) |
| 1420 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1421 | for (ALL_LIST_ELEMENTS (top->opaque_lsa_self, node, nnode, oipt)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1422 | { |
hasso | 0d85b99 | 2004-03-18 19:18:33 +0000 | [diff] [blame] | 1423 | /* |
| 1424 | * removed the test for |
| 1425 | * (! list_isempty (oipt->id_list)) * Handler is already active. * |
| 1426 | * because opaque cababilities ON -> OFF -> ON result in list_isempty (oipt->id_list) |
| 1427 | * not being empty. |
| 1428 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1429 | if (oipt->t_opaque_lsa_self != NULL /* Waiting for a thread call. */ |
| 1430 | || oipt->status == PROC_SUSPEND) /* Cannot originate now. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1431 | continue; |
| 1432 | |
| 1433 | ospf_opaque_lsa_reoriginate_schedule ((void *) top, |
| 1434 | OSPF_OPAQUE_AS_LSA, oipt->opaque_type); |
| 1435 | } |
| 1436 | } |
| 1437 | |
| 1438 | if (delay0 != NULL) |
| 1439 | *delay0 = delay; |
| 1440 | |
| 1441 | out: |
| 1442 | return; |
| 1443 | } |
| 1444 | |
| 1445 | static int |
| 1446 | ospf_opaque_type9_lsa_originate (struct thread *t) |
| 1447 | { |
| 1448 | struct ospf_interface *oi; |
| 1449 | int rc; |
| 1450 | |
| 1451 | oi = THREAD_ARG (t); |
| 1452 | oi->t_opaque_lsa_self = NULL; |
| 1453 | |
| 1454 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1455 | zlog_debug ("Timer[Type9-LSA]: Originate Opaque-LSAs for OI %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1456 | IF_NAME (oi)); |
| 1457 | |
| 1458 | rc = opaque_lsa_originate_callback (ospf_opaque_type9_funclist, oi); |
| 1459 | |
| 1460 | return rc; |
| 1461 | } |
| 1462 | |
| 1463 | static int |
| 1464 | ospf_opaque_type10_lsa_originate (struct thread *t) |
| 1465 | { |
| 1466 | struct ospf_area *area; |
| 1467 | int rc; |
| 1468 | |
| 1469 | area = THREAD_ARG (t); |
| 1470 | area->t_opaque_lsa_self = NULL; |
| 1471 | |
| 1472 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1473 | zlog_debug ("Timer[Type10-LSA]: Originate Opaque-LSAs for Area %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1474 | inet_ntoa (area->area_id)); |
| 1475 | |
| 1476 | rc = opaque_lsa_originate_callback (ospf_opaque_type10_funclist, area); |
| 1477 | |
| 1478 | return rc; |
| 1479 | } |
| 1480 | |
| 1481 | static int |
| 1482 | ospf_opaque_type11_lsa_originate (struct thread *t) |
| 1483 | { |
| 1484 | struct ospf *top; |
| 1485 | int rc; |
| 1486 | |
| 1487 | top = THREAD_ARG (t); |
| 1488 | top->t_opaque_lsa_self = NULL; |
| 1489 | |
| 1490 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1491 | zlog_debug ("Timer[Type11-LSA]: Originate AS-External Opaque-LSAs"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1492 | |
| 1493 | rc = opaque_lsa_originate_callback (ospf_opaque_type11_funclist, top); |
| 1494 | |
| 1495 | return rc; |
| 1496 | } |
| 1497 | |
| 1498 | static void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1499 | ospf_opaque_lsa_reoriginate_resume (struct list *listtop, void *arg) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1500 | { |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1501 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1502 | struct opaque_info_per_type *oipt; |
| 1503 | struct ospf_opaque_functab *functab; |
| 1504 | |
| 1505 | if (listtop == NULL) |
| 1506 | goto out; |
| 1507 | |
| 1508 | /* |
| 1509 | * Pickup oipt entries those which in SUSPEND status, and give |
| 1510 | * them a chance to start re-origination now. |
| 1511 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1512 | for (ALL_LIST_ELEMENTS (listtop, node, nnode, oipt)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1513 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1514 | if (oipt->status != PROC_SUSPEND) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1515 | continue; |
| 1516 | |
| 1517 | oipt->status = PROC_NORMAL; |
| 1518 | |
| 1519 | if ((functab = oipt->functab) == NULL |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1520 | || functab->lsa_originator == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1521 | continue; |
| 1522 | |
| 1523 | if ((* functab->lsa_originator)(arg) != 0) |
| 1524 | { |
| 1525 | zlog_warn ("ospf_opaque_lsa_reoriginate_resume: Failed (opaque-type=%u)", oipt->opaque_type); |
| 1526 | continue; |
| 1527 | } |
| 1528 | } |
| 1529 | |
| 1530 | out: |
| 1531 | return; |
| 1532 | } |
| 1533 | |
| 1534 | struct ospf_lsa * |
| 1535 | ospf_opaque_lsa_install (struct ospf_lsa *lsa, int rt_recalc) |
| 1536 | { |
| 1537 | struct ospf_lsa *new = NULL; |
| 1538 | struct opaque_info_per_type *oipt; |
| 1539 | struct opaque_info_per_id *oipi; |
| 1540 | struct ospf *top; |
| 1541 | |
| 1542 | /* Don't take "rt_recalc" into consideration for now. *//* XXX */ |
| 1543 | |
| 1544 | if (! IS_LSA_SELF (lsa)) |
| 1545 | { |
| 1546 | new = lsa; /* Don't touch this LSA. */ |
| 1547 | goto out; |
| 1548 | } |
| 1549 | |
| 1550 | if (IS_DEBUG_OSPF (lsa, LSA_INSTALL)) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1551 | zlog_debug ("Install Type-%u Opaque-LSA: [opaque-type=%u, opaque-id=%x]", lsa->data->type, GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)), GET_OPAQUE_ID (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1552 | |
| 1553 | /* Replace the existing lsa with the new one. */ |
| 1554 | if ((oipt = lookup_opaque_info_by_type (lsa)) != NULL |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1555 | && (oipi = lookup_opaque_info_by_id (oipt, lsa)) != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1556 | { |
| 1557 | ospf_lsa_unlock (oipi->lsa); |
| 1558 | oipi->lsa = ospf_lsa_lock (lsa); |
| 1559 | } |
| 1560 | /* Register the new lsa entry and get its control info. */ |
| 1561 | else |
| 1562 | if ((oipi = register_opaque_lsa (lsa)) == NULL) |
| 1563 | { |
| 1564 | zlog_warn ("ospf_opaque_lsa_install: register_opaque_lsa() ?"); |
| 1565 | goto out; |
| 1566 | } |
| 1567 | |
| 1568 | /* |
| 1569 | * Make use of a common mechanism (ospf_lsa_refresh_walker) |
| 1570 | * for periodic refresh of self-originated Opaque-LSAs. |
| 1571 | */ |
| 1572 | switch (lsa->data->type) |
| 1573 | { |
| 1574 | case OSPF_OPAQUE_LINK_LSA: |
paul | 09e4efd | 2003-01-18 00:12:02 +0000 | [diff] [blame] | 1575 | if ((top = oi_to_top (lsa->oi)) == NULL) |
| 1576 | { |
| 1577 | /* Above conditions must have passed. */ |
| 1578 | zlog_warn ("ospf_opaque_lsa_install: Sonmething wrong?"); |
| 1579 | goto out; |
| 1580 | } |
| 1581 | break; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1582 | case OSPF_OPAQUE_AREA_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1583 | if (lsa->area == NULL || (top = lsa->area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1584 | { |
| 1585 | /* Above conditions must have passed. */ |
| 1586 | zlog_warn ("ospf_opaque_lsa_install: Sonmething wrong?"); |
| 1587 | goto out; |
| 1588 | } |
| 1589 | break; |
| 1590 | case OSPF_OPAQUE_AS_LSA: |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1591 | top = ospf_lookup (); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1592 | if (lsa->area != NULL && (top = lsa->area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1593 | { |
| 1594 | /* Above conditions must have passed. */ |
| 1595 | zlog_warn ("ospf_opaque_lsa_install: Sonmething wrong?"); |
| 1596 | goto out; |
| 1597 | } |
| 1598 | break; |
| 1599 | default: |
| 1600 | zlog_warn ("ospf_opaque_lsa_install: Unexpected LSA-type(%u)", lsa->data->type); |
| 1601 | goto out; |
| 1602 | } |
| 1603 | |
| 1604 | ospf_refresher_register_lsa (top, lsa); |
| 1605 | new = lsa; |
| 1606 | |
| 1607 | out: |
| 1608 | return new; |
| 1609 | } |
| 1610 | |
| 1611 | void |
| 1612 | ospf_opaque_lsa_refresh (struct ospf_lsa *lsa) |
| 1613 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1614 | struct ospf *ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1615 | struct ospf_opaque_functab *functab; |
| 1616 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1617 | ospf = ospf_lookup (); |
| 1618 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1619 | if ((functab = ospf_opaque_functab_lookup (lsa)) == NULL |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1620 | || functab->lsa_refresher == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1621 | { |
| 1622 | /* |
| 1623 | * Though this LSA seems to have originated on this node, the |
| 1624 | * handling module for this "lsa-type and opaque-type" was |
| 1625 | * already deleted sometime ago. |
| 1626 | * Anyway, this node still has a responsibility to flush this |
| 1627 | * LSA from the routing domain. |
| 1628 | */ |
| 1629 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1630 | zlog_debug ("LSA[Type%d:%s]: Flush stray Opaque-LSA", lsa->data->type, inet_ntoa (lsa->data->id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1631 | |
| 1632 | lsa->data->ls_age = htons (OSPF_LSA_MAXAGE); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1633 | ospf_lsa_maxage (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1634 | } |
| 1635 | else |
| 1636 | (* functab->lsa_refresher)(lsa); |
| 1637 | |
| 1638 | return; |
| 1639 | } |
| 1640 | |
| 1641 | /*------------------------------------------------------------------------* |
| 1642 | * Followings are re-origination/refresh/flush operations of Opaque-LSAs, |
| 1643 | * triggered by external interventions (vty session, signaling, etc). |
| 1644 | *------------------------------------------------------------------------*/ |
| 1645 | |
| 1646 | #define OSPF_OPAQUE_TIMER_ON(T,F,L,V) \ |
| 1647 | if (!(T)) \ |
| 1648 | (T) = thread_add_timer (master, (F), (L), (V)) |
| 1649 | |
| 1650 | static struct ospf_lsa *pseudo_lsa (struct ospf_interface *oi, struct ospf_area *area, u_char lsa_type, u_char opaque_type); |
| 1651 | static int ospf_opaque_type9_lsa_reoriginate_timer (struct thread *t); |
| 1652 | static int ospf_opaque_type10_lsa_reoriginate_timer (struct thread *t); |
| 1653 | static int ospf_opaque_type11_lsa_reoriginate_timer (struct thread *t); |
| 1654 | static int ospf_opaque_lsa_refresh_timer (struct thread *t); |
| 1655 | |
| 1656 | void |
| 1657 | ospf_opaque_lsa_reoriginate_schedule (void *lsa_type_dependent, |
| 1658 | u_char lsa_type, u_char opaque_type) |
| 1659 | { |
| 1660 | struct ospf *top; |
| 1661 | struct ospf_area dummy, *area = NULL; |
| 1662 | struct ospf_interface *oi = NULL; |
| 1663 | |
| 1664 | struct ospf_lsa *lsa; |
| 1665 | struct opaque_info_per_type *oipt; |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1666 | int (*func) (struct thread * t) = NULL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1667 | int delay; |
| 1668 | |
| 1669 | switch (lsa_type) |
| 1670 | { |
| 1671 | case OSPF_OPAQUE_LINK_LSA: |
| 1672 | if ((oi = (struct ospf_interface *) lsa_type_dependent) == NULL) |
| 1673 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1674 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1675 | " Type-9 Opaque-LSA: Invalid parameter?"); |
| 1676 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1677 | } |
| 1678 | if ((top = oi_to_top (oi)) == NULL) |
| 1679 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1680 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule: OI(%s) -> TOP?", |
| 1681 | IF_NAME (oi)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1682 | goto out; |
| 1683 | } |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1684 | if (!list_isempty (ospf_opaque_type9_funclist) |
| 1685 | && list_isempty (oi->opaque_lsa_self) |
| 1686 | && oi->t_opaque_lsa_self != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1687 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1688 | zlog_warn ("Type-9 Opaque-LSA (opaque_type=%u):" |
| 1689 | " Common origination for OI(%s) has already started", |
| 1690 | opaque_type, IF_NAME (oi)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1691 | goto out; |
| 1692 | } |
| 1693 | func = ospf_opaque_type9_lsa_reoriginate_timer; |
| 1694 | break; |
| 1695 | case OSPF_OPAQUE_AREA_LSA: |
| 1696 | if ((area = (struct ospf_area *) lsa_type_dependent) == NULL) |
| 1697 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1698 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1699 | " Type-10 Opaque-LSA: Invalid parameter?"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1700 | goto out; |
| 1701 | } |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1702 | if ((top = area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1703 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1704 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1705 | " AREA(%s) -> TOP?", inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1706 | goto out; |
| 1707 | } |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1708 | if (!list_isempty (ospf_opaque_type10_funclist) |
| 1709 | && list_isempty (area->opaque_lsa_self) |
| 1710 | && area->t_opaque_lsa_self != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1711 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1712 | zlog_warn ("Type-10 Opaque-LSA (opaque_type=%u):" |
| 1713 | " Common origination for AREA(%s) has already started", |
| 1714 | opaque_type, inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1715 | goto out; |
| 1716 | } |
| 1717 | func = ospf_opaque_type10_lsa_reoriginate_timer; |
| 1718 | break; |
| 1719 | case OSPF_OPAQUE_AS_LSA: |
| 1720 | if ((top = (struct ospf *) lsa_type_dependent) == NULL) |
| 1721 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1722 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1723 | " Type-11 Opaque-LSA: Invalid parameter?"); |
| 1724 | goto out; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1725 | } |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1726 | if (!list_isempty (ospf_opaque_type11_funclist) |
| 1727 | && list_isempty (top->opaque_lsa_self) |
| 1728 | && top->t_opaque_lsa_self != NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1729 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1730 | zlog_warn ("Type-11 Opaque-LSA (opaque_type=%u):" |
| 1731 | " Common origination has already started", opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1732 | goto out; |
| 1733 | } |
| 1734 | |
| 1735 | /* Fake "area" to pass "ospf" to a lookup function later. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1736 | dummy.ospf = top; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1737 | area = &dummy; |
| 1738 | |
| 1739 | func = ospf_opaque_type11_lsa_reoriginate_timer; |
| 1740 | break; |
| 1741 | default: |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1742 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1743 | " Unexpected LSA-type(%u)", |
| 1744 | lsa_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1745 | goto out; |
| 1746 | } |
| 1747 | |
| 1748 | /* It may not a right time to schedule reorigination now. */ |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1749 | if (!CHECK_FLAG (top->opaque, OPAQUE_OPERATION_READY_BIT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1750 | { |
| 1751 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1752 | zlog_debug ("ospf_opaque_lsa_reoriginate_schedule: Not operational."); |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1753 | goto out; /* This is not an error. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1754 | } |
| 1755 | if (IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque)) |
| 1756 | { |
| 1757 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1758 | zlog_debug ("ospf_opaque_lsa_reoriginate_schedule: Under blockade."); |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1759 | goto out; /* This is not an error, too. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | /* Generate a dummy lsa to be passed for a lookup function. */ |
| 1763 | lsa = pseudo_lsa (oi, area, lsa_type, opaque_type); |
| 1764 | |
| 1765 | if ((oipt = lookup_opaque_info_by_type (lsa)) == NULL) |
| 1766 | { |
| 1767 | struct ospf_opaque_functab *functab; |
| 1768 | if ((functab = ospf_opaque_functab_lookup (lsa)) == NULL) |
| 1769 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1770 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1771 | " No associated function?: lsa_type(%u)," |
| 1772 | " opaque_type(%u)", |
| 1773 | lsa_type, opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1774 | goto out; |
| 1775 | } |
| 1776 | if ((oipt = register_opaque_info_per_type (functab, lsa)) == NULL) |
| 1777 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1778 | zlog_warn ("ospf_opaque_lsa_reoriginate_schedule:" |
| 1779 | " Cannot get a control info?: lsa_type(%u)," |
| 1780 | " opaque_type(%u)", |
| 1781 | lsa_type, opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1782 | goto out; |
| 1783 | } |
| 1784 | } |
| 1785 | |
| 1786 | if (oipt->t_opaque_lsa_self != NULL) |
| 1787 | { |
| 1788 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1789 | zlog_debug ("Type-%u Opaque-LSA has already scheduled to" |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1790 | " RE-ORIGINATE: [opaque-type=%u]", |
| 1791 | lsa_type, GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1792 | goto out; |
| 1793 | } |
| 1794 | |
| 1795 | /* |
| 1796 | * Different from initial origination time, in which various conditions |
| 1797 | * (opaque capability, neighbor status etc) are assured by caller of |
| 1798 | * the originating function "ospf_opaque_lsa_originate_schedule ()", |
| 1799 | * it is highly possible that these conditions might not be satisfied |
| 1800 | * at the time of re-origination function is to be called. |
| 1801 | */ |
| 1802 | delay = OSPF_MIN_LS_INTERVAL; /* XXX */ |
| 1803 | |
| 1804 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1805 | zlog_debug ("Schedule Type-%u Opaque-LSA to RE-ORIGINATE in %d" |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1806 | " sec later: [opaque-type=%u]", |
| 1807 | lsa_type, delay, |
| 1808 | GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1809 | |
| 1810 | OSPF_OPAQUE_TIMER_ON (oipt->t_opaque_lsa_self, func, oipt, delay); |
| 1811 | |
| 1812 | out: |
| 1813 | return; |
| 1814 | } |
| 1815 | |
| 1816 | static struct ospf_lsa * |
| 1817 | pseudo_lsa (struct ospf_interface *oi, struct ospf_area *area, |
| 1818 | u_char lsa_type, u_char opaque_type) |
| 1819 | { |
| 1820 | static struct ospf_lsa lsa = { 0 }; |
| 1821 | static struct lsa_header lsah = { 0 }; |
| 1822 | u_int32_t tmp; |
| 1823 | |
| 1824 | lsa.oi = oi; |
| 1825 | lsa.area = area; |
| 1826 | lsa.data = &lsah; |
| 1827 | |
| 1828 | lsah.type = lsa_type; |
| 1829 | tmp = SET_OPAQUE_LSID (opaque_type, 0); /* Opaque-ID is unused here. */ |
| 1830 | lsah.id.s_addr = htonl (tmp); |
| 1831 | |
| 1832 | return &lsa; |
| 1833 | } |
| 1834 | |
| 1835 | static int |
| 1836 | ospf_opaque_type9_lsa_reoriginate_timer (struct thread *t) |
| 1837 | { |
| 1838 | struct opaque_info_per_type *oipt; |
| 1839 | struct ospf_opaque_functab *functab; |
| 1840 | struct ospf *top; |
| 1841 | struct ospf_interface *oi; |
| 1842 | int rc = -1; |
| 1843 | |
| 1844 | oipt = THREAD_ARG (t); |
| 1845 | oipt->t_opaque_lsa_self = NULL; |
| 1846 | |
| 1847 | if ((functab = oipt->functab) == NULL |
| 1848 | || functab->lsa_originator == NULL) |
| 1849 | { |
| 1850 | zlog_warn ("ospf_opaque_type9_lsa_reoriginate_timer: No associated function?"); |
| 1851 | goto out; |
| 1852 | } |
| 1853 | |
| 1854 | oi = (struct ospf_interface *) oipt->owner; |
| 1855 | if ((top = oi_to_top (oi)) == NULL) |
| 1856 | { |
| 1857 | zlog_warn ("ospf_opaque_type9_lsa_reoriginate_timer: Something wrong?"); |
| 1858 | goto out; |
| 1859 | } |
| 1860 | |
| 1861 | if (! CHECK_FLAG (top->config, OSPF_OPAQUE_CAPABLE) |
| 1862 | || ! ospf_if_is_enable (oi) |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1863 | || ospf_nbr_count_opaque_capable (oi) == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1864 | { |
| 1865 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1866 | zlog_debug ("Suspend re-origination of Type-9 Opaque-LSAs (opaque-type=%u) for a while...", oipt->opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1867 | |
| 1868 | oipt->status = PROC_SUSPEND; |
| 1869 | rc = 0; |
| 1870 | goto out; |
| 1871 | } |
| 1872 | |
| 1873 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1874 | zlog_debug ("Timer[Type9-LSA]: Re-originate Opaque-LSAs (opaque-type=%u) for OI (%s)", oipt->opaque_type, IF_NAME (oi)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1875 | |
| 1876 | rc = (* functab->lsa_originator)(oi); |
| 1877 | out: |
| 1878 | return rc; |
| 1879 | } |
| 1880 | |
| 1881 | static int |
| 1882 | ospf_opaque_type10_lsa_reoriginate_timer (struct thread *t) |
| 1883 | { |
| 1884 | struct opaque_info_per_type *oipt; |
| 1885 | struct ospf_opaque_functab *functab; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1886 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1887 | struct ospf *top; |
| 1888 | struct ospf_area *area; |
| 1889 | struct ospf_interface *oi; |
| 1890 | int n, rc = -1; |
| 1891 | |
| 1892 | oipt = THREAD_ARG (t); |
| 1893 | oipt->t_opaque_lsa_self = NULL; |
| 1894 | |
| 1895 | if ((functab = oipt->functab) == NULL |
| 1896 | || functab->lsa_originator == NULL) |
| 1897 | { |
| 1898 | zlog_warn ("ospf_opaque_type10_lsa_reoriginate_timer: No associated function?"); |
| 1899 | goto out; |
| 1900 | } |
| 1901 | |
| 1902 | area = (struct ospf_area *) oipt->owner; |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1903 | if (area == NULL || (top = area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1904 | { |
| 1905 | zlog_warn ("ospf_opaque_type10_lsa_reoriginate_timer: Something wrong?"); |
| 1906 | goto out; |
| 1907 | } |
| 1908 | |
| 1909 | /* There must be at least one "opaque-capable, full-state" neighbor. */ |
| 1910 | n = 0; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 1911 | for (ALL_LIST_ELEMENTS (area->oiflist, node, nnode, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1912 | { |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 1913 | if ((n = ospf_nbr_count_opaque_capable (oi)) > 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1914 | break; |
| 1915 | } |
| 1916 | |
| 1917 | if (n == 0 || ! CHECK_FLAG (top->config, OSPF_OPAQUE_CAPABLE)) |
| 1918 | { |
| 1919 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1920 | zlog_debug ("Suspend re-origination of Type-10 Opaque-LSAs" |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1921 | " (opaque-type=%u) for a while...", |
| 1922 | oipt->opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1923 | |
| 1924 | oipt->status = PROC_SUSPEND; |
| 1925 | rc = 0; |
| 1926 | goto out; |
| 1927 | } |
| 1928 | |
| 1929 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1930 | zlog_debug ("Timer[Type10-LSA]: Re-originate Opaque-LSAs" |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1931 | " (opaque-type=%u) for Area %s", |
| 1932 | oipt->opaque_type, inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1933 | |
| 1934 | rc = (* functab->lsa_originator)(area); |
| 1935 | out: |
| 1936 | return rc; |
| 1937 | } |
| 1938 | |
| 1939 | static int |
| 1940 | ospf_opaque_type11_lsa_reoriginate_timer (struct thread *t) |
| 1941 | { |
| 1942 | struct opaque_info_per_type *oipt; |
| 1943 | struct ospf_opaque_functab *functab; |
| 1944 | struct ospf *top; |
| 1945 | int rc = -1; |
| 1946 | |
| 1947 | oipt = THREAD_ARG (t); |
| 1948 | oipt->t_opaque_lsa_self = NULL; |
| 1949 | |
| 1950 | if ((functab = oipt->functab) == NULL |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1951 | || functab->lsa_originator == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1952 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 1953 | zlog_warn ("ospf_opaque_type11_lsa_reoriginate_timer:" |
| 1954 | " No associated function?"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1955 | goto out; |
| 1956 | } |
| 1957 | |
| 1958 | if ((top = (struct ospf *) oipt->owner) == NULL) |
| 1959 | { |
| 1960 | zlog_warn ("ospf_opaque_type11_lsa_reoriginate_timer: Something wrong?"); |
| 1961 | goto out; |
| 1962 | } |
| 1963 | |
| 1964 | if (! CHECK_FLAG (top->config, OSPF_OPAQUE_CAPABLE)) |
| 1965 | { |
| 1966 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1967 | zlog_debug ("Suspend re-origination of Type-11 Opaque-LSAs (opaque-type=%u) for a while...", oipt->opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1968 | |
| 1969 | oipt->status = PROC_SUSPEND; |
| 1970 | rc = 0; |
| 1971 | goto out; |
| 1972 | } |
| 1973 | |
| 1974 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 1975 | zlog_debug ("Timer[Type11-LSA]: Re-originate Opaque-LSAs (opaque-type=%u).", oipt->opaque_type); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1976 | |
| 1977 | rc = (* functab->lsa_originator)(top); |
| 1978 | out: |
| 1979 | return rc; |
| 1980 | } |
| 1981 | |
| 1982 | extern int ospf_lsa_refresh_delay (struct ospf_lsa *); /* ospf_lsa.c */ |
| 1983 | |
| 1984 | void |
| 1985 | ospf_opaque_lsa_refresh_schedule (struct ospf_lsa *lsa0) |
| 1986 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1987 | struct ospf *ospf = ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1988 | struct opaque_info_per_type *oipt; |
| 1989 | struct opaque_info_per_id *oipi; |
| 1990 | struct ospf_lsa *lsa; |
| 1991 | int delay; |
| 1992 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 1993 | ospf = ospf_lookup (); |
| 1994 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1995 | if ((oipt = lookup_opaque_info_by_type (lsa0)) == NULL |
| 1996 | || (oipi = lookup_opaque_info_by_id (oipt, lsa0)) == NULL) |
| 1997 | { |
| 1998 | zlog_warn ("ospf_opaque_lsa_refresh_schedule: Invalid parameter?"); |
| 1999 | goto out; |
| 2000 | } |
| 2001 | |
| 2002 | /* Given "lsa0" and current "oipi->lsa" may different, but harmless. */ |
| 2003 | if ((lsa = oipi->lsa) == NULL) |
| 2004 | { |
| 2005 | zlog_warn ("ospf_opaque_lsa_refresh_schedule: Something wrong?"); |
| 2006 | goto out; |
| 2007 | } |
| 2008 | |
| 2009 | if (oipi->t_opaque_lsa_self != NULL) |
| 2010 | { |
| 2011 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2012 | zlog_debug ("Type-%u Opaque-LSA has already scheduled to REFRESH: [opaque-type=%u, opaque-id=%x]", lsa->data->type, GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)), GET_OPAQUE_ID (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2013 | goto out; |
| 2014 | } |
| 2015 | |
| 2016 | /* Delete this lsa from neighbor retransmit-list. */ |
| 2017 | switch (lsa->data->type) |
| 2018 | { |
| 2019 | case OSPF_OPAQUE_LINK_LSA: |
| 2020 | case OSPF_OPAQUE_AREA_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2021 | ospf_ls_retransmit_delete_nbr_area (lsa->area, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2022 | break; |
| 2023 | case OSPF_OPAQUE_AS_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2024 | ospf_ls_retransmit_delete_nbr_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2025 | break; |
| 2026 | default: |
| 2027 | zlog_warn ("ospf_opaque_lsa_refresh_schedule: Unexpected LSA-type(%u)", lsa->data->type); |
| 2028 | goto out; |
| 2029 | } |
| 2030 | |
| 2031 | delay = ospf_lsa_refresh_delay (lsa); |
| 2032 | |
| 2033 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2034 | zlog_debug ("Schedule Type-%u Opaque-LSA to REFRESH in %d sec later: [opaque-type=%u, opaque-id=%x]", lsa->data->type, delay, GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)), GET_OPAQUE_ID (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2035 | |
| 2036 | OSPF_OPAQUE_TIMER_ON (oipi->t_opaque_lsa_self, |
| 2037 | ospf_opaque_lsa_refresh_timer, oipi, delay); |
| 2038 | out: |
| 2039 | return; |
| 2040 | } |
| 2041 | |
| 2042 | static int |
| 2043 | ospf_opaque_lsa_refresh_timer (struct thread *t) |
| 2044 | { |
| 2045 | struct opaque_info_per_id *oipi; |
| 2046 | struct ospf_opaque_functab *functab; |
| 2047 | struct ospf_lsa *lsa; |
| 2048 | |
| 2049 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2050 | zlog_debug ("Timer[Opaque-LSA]: (Opaque-LSA Refresh expire)"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2051 | |
| 2052 | oipi = THREAD_ARG (t); |
| 2053 | oipi->t_opaque_lsa_self = NULL; |
| 2054 | |
| 2055 | if ((lsa = oipi->lsa) != NULL) |
| 2056 | if ((functab = oipi->opqctl_type->functab) != NULL) |
| 2057 | if (functab->lsa_refresher != NULL) |
| 2058 | (* functab->lsa_refresher)(lsa); |
| 2059 | |
| 2060 | return 0; |
| 2061 | } |
| 2062 | |
| 2063 | void |
| 2064 | ospf_opaque_lsa_flush_schedule (struct ospf_lsa *lsa0) |
| 2065 | { |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2066 | struct ospf *ospf = ospf; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2067 | struct opaque_info_per_type *oipt; |
| 2068 | struct opaque_info_per_id *oipi; |
| 2069 | struct ospf_lsa *lsa; |
| 2070 | |
paul | 020709f | 2003-04-04 02:44:16 +0000 | [diff] [blame] | 2071 | ospf = ospf_lookup (); |
| 2072 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2073 | if ((oipt = lookup_opaque_info_by_type (lsa0)) == NULL |
| 2074 | || (oipi = lookup_opaque_info_by_id (oipt, lsa0)) == NULL) |
| 2075 | { |
| 2076 | zlog_warn ("ospf_opaque_lsa_flush_schedule: Invalid parameter?"); |
| 2077 | goto out; |
| 2078 | } |
| 2079 | |
| 2080 | /* Given "lsa0" and current "oipi->lsa" may different, but harmless. */ |
| 2081 | if ((lsa = oipi->lsa) == NULL) |
| 2082 | { |
| 2083 | zlog_warn ("ospf_opaque_lsa_flush_schedule: Something wrong?"); |
| 2084 | goto out; |
| 2085 | } |
| 2086 | |
| 2087 | /* Delete this lsa from neighbor retransmit-list. */ |
| 2088 | switch (lsa->data->type) |
| 2089 | { |
| 2090 | case OSPF_OPAQUE_LINK_LSA: |
| 2091 | case OSPF_OPAQUE_AREA_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2092 | ospf_ls_retransmit_delete_nbr_area (lsa->area, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2093 | break; |
| 2094 | case OSPF_OPAQUE_AS_LSA: |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2095 | ospf_ls_retransmit_delete_nbr_as (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2096 | break; |
| 2097 | default: |
| 2098 | zlog_warn ("ospf_opaque_lsa_flush_schedule: Unexpected LSA-type(%u)", lsa->data->type); |
| 2099 | goto out; |
| 2100 | } |
| 2101 | |
| 2102 | /* Dequeue listnode entry from the list. */ |
| 2103 | listnode_delete (oipt->id_list, oipi); |
| 2104 | |
| 2105 | /* Avoid misjudgement in the next lookup. */ |
| 2106 | if (listcount (oipt->id_list) == 0) |
| 2107 | oipt->id_list->head = oipt->id_list->tail = NULL; |
| 2108 | |
| 2109 | /* Disassociate internal control information with the given lsa. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2110 | free_opaque_info_per_id ((void *) oipi); |
| 2111 | |
| 2112 | /* Force given lsa's age to MaxAge. */ |
| 2113 | lsa->data->ls_age = htons (OSPF_LSA_MAXAGE); |
| 2114 | |
| 2115 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2116 | zlog_debug ("Schedule Type-%u Opaque-LSA to FLUSH: [opaque-type=%u, opaque-id=%x]", lsa->data->type, GET_OPAQUE_TYPE (ntohl (lsa->data->id.s_addr)), GET_OPAQUE_ID (ntohl (lsa->data->id.s_addr))); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2117 | |
| 2118 | /* This lsa will be flushed and removed eventually. */ |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2119 | ospf_lsa_maxage (ospf, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2120 | |
| 2121 | out: |
| 2122 | return; |
| 2123 | } |
| 2124 | |
| 2125 | /*------------------------------------------------------------------------* |
| 2126 | * Followings are control functions to block origination after restart. |
| 2127 | *------------------------------------------------------------------------*/ |
| 2128 | |
| 2129 | static void ospf_opaque_exclude_lsa_from_lsreq (struct route_table *nbrs, struct ospf_neighbor *inbr, struct ospf_lsa *lsa); |
| 2130 | static void ospf_opaque_type9_lsa_rxmt_nbr_check (struct ospf_interface *oi); |
| 2131 | static void ospf_opaque_type10_lsa_rxmt_nbr_check (struct ospf_area *area); |
| 2132 | static void ospf_opaque_type11_lsa_rxmt_nbr_check (struct ospf *top); |
| 2133 | static unsigned long ospf_opaque_nrxmt_self (struct route_table *nbrs, int lsa_type); |
| 2134 | |
| 2135 | void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2136 | ospf_opaque_adjust_lsreq (struct ospf_neighbor *nbr, struct list *lsas) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2137 | { |
| 2138 | struct ospf *top; |
| 2139 | struct ospf_area *area; |
| 2140 | struct ospf_interface *oi; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2141 | struct listnode *node1, *nnode1; |
| 2142 | struct listnode *node2, *nnode2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2143 | struct ospf_lsa *lsa; |
| 2144 | |
| 2145 | if ((top = oi_to_top (nbr->oi)) == NULL) |
| 2146 | goto out; |
| 2147 | |
| 2148 | /* |
| 2149 | * If an instance of self-originated Opaque-LSA is found in the given |
| 2150 | * LSA list, and it is not installed to LSDB yet, exclude it from the |
| 2151 | * list "nbr->ls_req". In this way, it is assured that an LSReq message, |
| 2152 | * which might be sent in the process of flooding, will not request for |
| 2153 | * the LSA to be flushed immediately; otherwise, depending on timing, |
| 2154 | * an LSUpd message will carry instances of target LSAs with MaxAge, |
| 2155 | * while other LSUpd message might carry old LSA instances (non-MaxAge). |
| 2156 | * Obviously, the latter would trigger miserable situations that repeat |
| 2157 | * installation and removal of unwanted LSAs indefinitely. |
| 2158 | */ |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2159 | for (ALL_LIST_ELEMENTS (lsas, node1, nnode1, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2160 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2161 | /* Filter out unwanted LSAs. */ |
| 2162 | if (! IS_OPAQUE_LSA (lsa->data->type)) |
| 2163 | continue; |
| 2164 | if (! IPV4_ADDR_SAME (&lsa->data->adv_router, &top->router_id)) |
| 2165 | continue; |
| 2166 | |
| 2167 | /* |
| 2168 | * Don't touch an LSA which has MaxAge; two possible cases. |
| 2169 | * |
| 2170 | * 1) This LSA has originally flushed by myself (received LSUpd |
| 2171 | * message's router-id is equal to my router-id), and flooded |
| 2172 | * back by an opaque-capable router. |
| 2173 | * |
| 2174 | * 2) This LSA has expired in an opaque-capable router and thus |
| 2175 | * flushed by the router. |
| 2176 | */ |
| 2177 | if (IS_LSA_MAXAGE (lsa)) |
| 2178 | continue; |
| 2179 | |
| 2180 | /* If the LSA has installed in the LSDB, nothing to do here. */ |
| 2181 | if (ospf_lsa_lookup_by_header (nbr->oi->area, lsa->data) != NULL) |
| 2182 | continue; |
| 2183 | |
| 2184 | /* Ok, here we go. */ |
| 2185 | switch (lsa->data->type) |
| 2186 | { |
| 2187 | case OSPF_OPAQUE_LINK_LSA: |
| 2188 | oi = nbr->oi; |
| 2189 | ospf_opaque_exclude_lsa_from_lsreq (oi->nbrs, nbr, lsa); |
| 2190 | break; |
| 2191 | case OSPF_OPAQUE_AREA_LSA: |
| 2192 | area = nbr->oi->area; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2193 | for (ALL_LIST_ELEMENTS (area->oiflist, node2, nnode2, oi)) |
| 2194 | ospf_opaque_exclude_lsa_from_lsreq (oi->nbrs, nbr, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2195 | break; |
| 2196 | case OSPF_OPAQUE_AS_LSA: |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2197 | for (ALL_LIST_ELEMENTS (top->oiflist, node2, nnode2, oi)) |
| 2198 | ospf_opaque_exclude_lsa_from_lsreq (oi->nbrs, nbr, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2199 | break; |
| 2200 | default: |
| 2201 | break; |
| 2202 | } |
| 2203 | } |
| 2204 | |
| 2205 | out: |
| 2206 | return; |
| 2207 | } |
| 2208 | |
| 2209 | static void |
| 2210 | ospf_opaque_exclude_lsa_from_lsreq (struct route_table *nbrs, |
| 2211 | struct ospf_neighbor *inbr, |
| 2212 | struct ospf_lsa *lsa) |
| 2213 | { |
| 2214 | struct route_node *rn; |
| 2215 | struct ospf_neighbor *onbr; |
| 2216 | struct ospf_lsa *ls_req; |
| 2217 | |
| 2218 | for (rn = route_top (nbrs); rn; rn = route_next (rn)) |
| 2219 | { |
| 2220 | if ((onbr = rn->info) == NULL) |
| 2221 | continue; |
| 2222 | if (onbr == inbr) |
| 2223 | continue; |
| 2224 | if ((ls_req = ospf_ls_request_lookup (onbr, lsa)) == NULL) |
| 2225 | continue; |
| 2226 | |
| 2227 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2228 | zlog_debug ("LSA[%s]: Exclude this entry from LSReq to send.", dump_lsa_key (lsa)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2229 | |
| 2230 | ospf_ls_request_delete (onbr, ls_req); |
| 2231 | /* ospf_check_nbr_loading (onbr);*//* XXX */ |
| 2232 | } |
| 2233 | |
| 2234 | return; |
| 2235 | } |
| 2236 | |
| 2237 | void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2238 | ospf_opaque_self_originated_lsa_received (struct ospf_neighbor *nbr, |
| 2239 | struct list *lsas) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2240 | { |
| 2241 | struct ospf *top; |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2242 | struct listnode *node, *next; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2243 | struct ospf_lsa *lsa; |
| 2244 | u_char before; |
| 2245 | |
| 2246 | if ((top = oi_to_top (nbr->oi)) == NULL) |
| 2247 | goto out; |
| 2248 | |
| 2249 | before = IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque); |
| 2250 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2251 | for (ALL_LIST_ELEMENTS (lsas, node, next, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2252 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2253 | listnode_delete (lsas, lsa); |
| 2254 | |
| 2255 | /* |
| 2256 | * Since these LSA entries are not yet installed into corresponding |
| 2257 | * LSDB, just flush them without calling ospf_ls_maxage() afterward. |
| 2258 | */ |
| 2259 | lsa->data->ls_age = htons (OSPF_LSA_MAXAGE); |
| 2260 | switch (lsa->data->type) |
| 2261 | { |
| 2262 | case OSPF_OPAQUE_LINK_LSA: |
| 2263 | SET_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_09_LSA_BIT); |
| 2264 | ospf_flood_through_area (nbr->oi->area, NULL/*inbr*/, lsa); |
| 2265 | break; |
| 2266 | case OSPF_OPAQUE_AREA_LSA: |
| 2267 | SET_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_10_LSA_BIT); |
| 2268 | ospf_flood_through_area (nbr->oi->area, NULL/*inbr*/, lsa); |
| 2269 | break; |
| 2270 | case OSPF_OPAQUE_AS_LSA: |
| 2271 | SET_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_11_LSA_BIT); |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2272 | ospf_flood_through_as (top, NULL/*inbr*/, lsa); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2273 | break; |
| 2274 | default: |
| 2275 | zlog_warn ("ospf_opaque_self_originated_lsa_received: Unexpected LSA-type(%u)", lsa->data->type); |
| 2276 | goto out; |
| 2277 | } |
| 2278 | |
| 2279 | ospf_lsa_discard (lsa); /* List "lsas" will be deleted by caller. */ |
| 2280 | } |
| 2281 | |
| 2282 | if (before == 0 && IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque)) |
| 2283 | { |
| 2284 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2285 | zlog_debug ("Block Opaque-LSA origination: OFF -> ON"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2286 | } |
| 2287 | |
| 2288 | out: |
| 2289 | return; |
| 2290 | } |
| 2291 | |
| 2292 | void |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2293 | ospf_opaque_ls_ack_received (struct ospf_neighbor *nbr, struct list *acks) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2294 | { |
| 2295 | struct ospf *top; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2296 | struct listnode *node, *nnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2297 | struct ospf_lsa *lsa; |
| 2298 | char type9_lsa_rcv = 0, type10_lsa_rcv = 0, type11_lsa_rcv = 0; |
| 2299 | |
| 2300 | if ((top = oi_to_top (nbr->oi)) == NULL) |
| 2301 | goto out; |
| 2302 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2303 | for (ALL_LIST_ELEMENTS (acks, node, nnode, lsa)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2304 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2305 | switch (lsa->data->type) |
| 2306 | { |
| 2307 | case OSPF_OPAQUE_LINK_LSA: |
| 2308 | type9_lsa_rcv = 1; |
| 2309 | /* Callback function... */ |
| 2310 | break; |
| 2311 | case OSPF_OPAQUE_AREA_LSA: |
| 2312 | type10_lsa_rcv = 1; |
| 2313 | /* Callback function... */ |
| 2314 | break; |
| 2315 | case OSPF_OPAQUE_AS_LSA: |
| 2316 | type11_lsa_rcv = 1; |
| 2317 | /* Callback function... */ |
| 2318 | break; |
| 2319 | default: |
| 2320 | zlog_warn ("ospf_opaque_ls_ack_received: Unexpected LSA-type(%u)", lsa->data->type); |
| 2321 | goto out; |
| 2322 | } |
| 2323 | } |
| 2324 | |
| 2325 | if (IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque)) |
| 2326 | { |
| 2327 | int delay; |
| 2328 | struct ospf_interface *oi; |
| 2329 | |
| 2330 | if (type9_lsa_rcv |
| 2331 | && CHECK_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_09_LSA_BIT)) |
| 2332 | ospf_opaque_type9_lsa_rxmt_nbr_check (nbr->oi); |
| 2333 | |
| 2334 | if (type10_lsa_rcv |
| 2335 | && CHECK_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_10_LSA_BIT)) |
| 2336 | ospf_opaque_type10_lsa_rxmt_nbr_check (nbr->oi->area); |
| 2337 | |
| 2338 | if (type11_lsa_rcv |
| 2339 | && CHECK_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_11_LSA_BIT)) |
| 2340 | ospf_opaque_type11_lsa_rxmt_nbr_check (top); |
| 2341 | |
| 2342 | if (IS_OPAQUE_LSA_ORIGINATION_BLOCKED (top->opaque)) |
| 2343 | goto out; /* Blocking still in progress. */ |
| 2344 | |
| 2345 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2346 | zlog_debug ("Block Opaque-LSA origination: ON -> OFF"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2347 | |
| 2348 | if (! CHECK_FLAG (top->config, OSPF_OPAQUE_CAPABLE)) |
| 2349 | goto out; /* Opaque capability condition must have changed. */ |
| 2350 | |
| 2351 | /* Ok, let's start origination of Opaque-LSAs. */ |
| 2352 | delay = OSPF_MIN_LS_INTERVAL; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2353 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2354 | for (ALL_LIST_ELEMENTS (top->oiflist, node, nnode, oi)) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2355 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2356 | if (! ospf_if_is_enable (oi) |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2357 | || ospf_nbr_count_opaque_capable (oi) == 0) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2358 | continue; |
| 2359 | |
| 2360 | ospf_opaque_lsa_originate_schedule (oi, &delay); |
| 2361 | } |
| 2362 | } |
| 2363 | |
| 2364 | out: |
| 2365 | return; |
| 2366 | } |
| 2367 | |
| 2368 | static void |
| 2369 | ospf_opaque_type9_lsa_rxmt_nbr_check (struct ospf_interface *oi) |
| 2370 | { |
| 2371 | unsigned long n; |
| 2372 | |
| 2373 | n = ospf_opaque_nrxmt_self (oi->nbrs, OSPF_OPAQUE_LINK_LSA); |
| 2374 | if (n == 0) |
| 2375 | { |
| 2376 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2377 | zlog_debug ("Self-originated type-9 Opaque-LSAs: OI(%s): Flush completed", IF_NAME (oi)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2378 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2379 | UNSET_FLAG (oi->area->ospf->opaque, OPAQUE_BLOCK_TYPE_09_LSA_BIT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2380 | } |
| 2381 | return; |
| 2382 | } |
| 2383 | |
| 2384 | static void |
| 2385 | ospf_opaque_type10_lsa_rxmt_nbr_check (struct ospf_area *area) |
| 2386 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2387 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2388 | struct ospf_interface *oi; |
| 2389 | unsigned long n = 0; |
| 2390 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2391 | for (ALL_LIST_ELEMENTS_RO (area->oiflist, node, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2392 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2393 | if (area->area_id.s_addr != OSPF_AREA_BACKBONE |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2394 | && oi->type == OSPF_IFTYPE_VIRTUALLINK) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2395 | continue; |
| 2396 | |
| 2397 | n = ospf_opaque_nrxmt_self (oi->nbrs, OSPF_OPAQUE_AREA_LSA); |
| 2398 | if (n > 0) |
| 2399 | break; |
| 2400 | } |
| 2401 | |
| 2402 | if (n == 0) |
| 2403 | { |
| 2404 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2405 | zlog_debug ("Self-originated type-10 Opaque-LSAs: AREA(%s): Flush completed", inet_ntoa (area->area_id)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2406 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2407 | UNSET_FLAG (area->ospf->opaque, OPAQUE_BLOCK_TYPE_10_LSA_BIT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2408 | } |
| 2409 | |
| 2410 | return; |
| 2411 | } |
| 2412 | |
| 2413 | static void |
| 2414 | ospf_opaque_type11_lsa_rxmt_nbr_check (struct ospf *top) |
| 2415 | { |
paul | 87d6f87 | 2004-09-24 08:01:38 +0000 | [diff] [blame] | 2416 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2417 | struct ospf_interface *oi; |
| 2418 | unsigned long n = 0; |
| 2419 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 2420 | for (ALL_LIST_ELEMENTS_RO (top->oiflist, node, oi)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2421 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2422 | switch (oi->type) |
| 2423 | { |
| 2424 | case OSPF_IFTYPE_VIRTUALLINK: |
| 2425 | continue; |
| 2426 | default: |
| 2427 | break; |
| 2428 | } |
| 2429 | |
| 2430 | n = ospf_opaque_nrxmt_self (oi->nbrs, OSPF_OPAQUE_AS_LSA); |
| 2431 | if (n > 0) |
| 2432 | goto out; |
| 2433 | } |
| 2434 | |
| 2435 | if (n == 0) |
| 2436 | { |
| 2437 | if (IS_DEBUG_OSPF_EVENT) |
ajs | 2a42e28 | 2004-12-08 18:43:03 +0000 | [diff] [blame] | 2438 | zlog_debug ("Self-originated type-11 Opaque-LSAs: Flush completed"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2439 | |
| 2440 | UNSET_FLAG (top->opaque, OPAQUE_BLOCK_TYPE_11_LSA_BIT); |
| 2441 | } |
| 2442 | |
| 2443 | out: |
| 2444 | return; |
| 2445 | } |
| 2446 | |
| 2447 | static unsigned long |
| 2448 | ospf_opaque_nrxmt_self (struct route_table *nbrs, int lsa_type) |
| 2449 | { |
| 2450 | struct route_node *rn; |
| 2451 | struct ospf_neighbor *nbr; |
| 2452 | struct ospf *top; |
| 2453 | unsigned long n = 0; |
| 2454 | |
| 2455 | for (rn = route_top (nbrs); rn; rn = route_next (rn)) |
| 2456 | { |
| 2457 | if ((nbr = rn->info) == NULL) |
| 2458 | continue; |
| 2459 | if ((top = oi_to_top (nbr->oi)) == NULL) |
| 2460 | continue; |
| 2461 | if (IPV4_ADDR_SAME (&nbr->router_id, &top->router_id)) |
| 2462 | continue; |
| 2463 | n += ospf_ls_retransmit_count_self (nbr, lsa_type); |
| 2464 | } |
| 2465 | |
| 2466 | return n; |
| 2467 | } |
| 2468 | |
| 2469 | /*------------------------------------------------------------------------* |
| 2470 | * Followings are util functions; probably be used by Opaque-LSAs only... |
| 2471 | *------------------------------------------------------------------------*/ |
| 2472 | |
| 2473 | void |
| 2474 | htonf (float *src, float *dst) |
| 2475 | { |
| 2476 | u_int32_t lu1, lu2; |
| 2477 | |
| 2478 | memcpy (&lu1, src, sizeof (u_int32_t)); |
| 2479 | lu2 = htonl (lu1); |
| 2480 | memcpy (dst, &lu2, sizeof (u_int32_t)); |
| 2481 | return; |
| 2482 | } |
| 2483 | |
| 2484 | void |
| 2485 | ntohf (float *src, float *dst) |
| 2486 | { |
| 2487 | u_int32_t lu1, lu2; |
| 2488 | |
| 2489 | memcpy (&lu1, src, sizeof (u_int32_t)); |
| 2490 | lu2 = ntohl (lu1); |
| 2491 | memcpy (dst, &lu2, sizeof (u_int32_t)); |
| 2492 | return; |
| 2493 | } |
| 2494 | |
| 2495 | struct ospf * |
| 2496 | oi_to_top (struct ospf_interface *oi) |
| 2497 | { |
| 2498 | struct ospf *top = NULL; |
| 2499 | struct ospf_area *area; |
| 2500 | |
paul | 6898008 | 2003-03-25 05:07:42 +0000 | [diff] [blame] | 2501 | if (oi == NULL || (area = oi->area) == NULL || (top = area->ospf) == NULL) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2502 | zlog_warn ("Broken relationship for \"OI -> AREA -> OSPF\"?"); |
| 2503 | |
| 2504 | return top; |
| 2505 | } |
| 2506 | |
| 2507 | #endif /* HAVE_OPAQUE_LSA */ |