paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1 | /* RIP version 1 and 2. |
| 2 | * Copyright (C) 1997, 98, 99 Kunihiro Ishiguro <kunihiro@zebra.org> |
| 3 | * |
| 4 | * This file is part of GNU Zebra. |
| 5 | * |
| 6 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2, or (at your option) any |
| 9 | * later version. |
| 10 | * |
| 11 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 12 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 14 | * General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 18 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 19 | * 02111-1307, USA. |
| 20 | */ |
| 21 | |
| 22 | #include <zebra.h> |
| 23 | |
| 24 | #include "if.h" |
| 25 | #include "command.h" |
| 26 | #include "prefix.h" |
| 27 | #include "table.h" |
| 28 | #include "thread.h" |
| 29 | #include "memory.h" |
| 30 | #include "log.h" |
| 31 | #include "stream.h" |
| 32 | #include "filter.h" |
| 33 | #include "sockunion.h" |
hasso | 1af8193 | 2004-09-26 16:11:14 +0000 | [diff] [blame] | 34 | #include "sockopt.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 35 | #include "routemap.h" |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 36 | #include "if_rmap.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 37 | #include "plist.h" |
| 38 | #include "distribute.h" |
| 39 | #include "md5-gnu.h" |
| 40 | #include "keychain.h" |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 41 | #include "privs.h" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 42 | |
| 43 | #include "ripd/ripd.h" |
| 44 | #include "ripd/rip_debug.h" |
| 45 | |
paul | 0b3acf4 | 2004-09-17 08:39:08 +0000 | [diff] [blame] | 46 | /* UDP receive buffer size */ |
| 47 | #define RIP_UDP_RCV_BUF 41600 |
| 48 | |
| 49 | /* privileges global */ |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 50 | extern struct zebra_privs_t ripd_privs; |
| 51 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 52 | /* RIP Structure. */ |
| 53 | struct rip *rip = NULL; |
| 54 | |
| 55 | /* RIP neighbor address table. */ |
| 56 | struct route_table *rip_neighbor_table; |
| 57 | |
| 58 | /* RIP route changes. */ |
| 59 | long rip_global_route_changes = 0; |
| 60 | |
| 61 | /* RIP queries. */ |
| 62 | long rip_global_queries = 0; |
| 63 | |
| 64 | /* Prototypes. */ |
| 65 | void rip_event (enum rip_event, int); |
| 66 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 67 | void rip_output_process (struct connected *, struct sockaddr_in *, int, u_char); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 68 | |
| 69 | /* RIP output routes type. */ |
| 70 | enum |
| 71 | { |
| 72 | rip_all_route, |
| 73 | rip_changed_route |
| 74 | }; |
| 75 | |
| 76 | /* RIP command strings. */ |
| 77 | struct message rip_msg[] = |
| 78 | { |
| 79 | {RIP_REQUEST, "REQUEST"}, |
| 80 | {RIP_RESPONSE, "RESPONSE"}, |
| 81 | {RIP_TRACEON, "TRACEON"}, |
| 82 | {RIP_TRACEOFF, "TRACEOFF"}, |
| 83 | {RIP_POLL, "POLL"}, |
| 84 | {RIP_POLL_ENTRY, "POLL ENTRY"}, |
| 85 | {0, NULL} |
| 86 | }; |
| 87 | |
| 88 | /* Each route type's strings and default preference. */ |
| 89 | struct |
| 90 | { |
| 91 | int key; |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 92 | const char *str; |
| 93 | const char *str_long; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 94 | } route_info[] = |
| 95 | { |
| 96 | { ZEBRA_ROUTE_SYSTEM, "X", "system"}, |
| 97 | { ZEBRA_ROUTE_KERNEL, "K", "kernel"}, |
| 98 | { ZEBRA_ROUTE_CONNECT, "C", "connected"}, |
| 99 | { ZEBRA_ROUTE_STATIC, "S", "static"}, |
| 100 | { ZEBRA_ROUTE_RIP, "R", "rip"}, |
| 101 | { ZEBRA_ROUTE_RIPNG, "R", "ripng"}, |
| 102 | { ZEBRA_ROUTE_OSPF, "O", "ospf"}, |
| 103 | { ZEBRA_ROUTE_OSPF6, "O", "ospf6"}, |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 104 | { ZEBRA_ROUTE_ISIS, "I", "isis"}, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 105 | { ZEBRA_ROUTE_BGP, "B", "bgp"} |
| 106 | }; |
| 107 | |
| 108 | /* Utility function to set boradcast option to the socket. */ |
| 109 | int |
| 110 | sockopt_broadcast (int sock) |
| 111 | { |
| 112 | int ret; |
| 113 | int on = 1; |
| 114 | |
| 115 | ret = setsockopt (sock, SOL_SOCKET, SO_BROADCAST, (char *) &on, sizeof on); |
| 116 | if (ret < 0) |
| 117 | { |
| 118 | zlog_warn ("can't set sockopt SO_BROADCAST to socket %d", sock); |
| 119 | return -1; |
| 120 | } |
| 121 | return 0; |
| 122 | } |
| 123 | |
| 124 | int |
| 125 | rip_route_rte (struct rip_info *rinfo) |
| 126 | { |
| 127 | return (rinfo->type == ZEBRA_ROUTE_RIP && rinfo->sub_type == RIP_ROUTE_RTE); |
| 128 | } |
| 129 | |
| 130 | struct rip_info * |
| 131 | rip_info_new () |
| 132 | { |
| 133 | struct rip_info *new; |
| 134 | |
| 135 | new = XMALLOC (MTYPE_RIP_INFO, sizeof (struct rip_info)); |
| 136 | memset (new, 0, sizeof (struct rip_info)); |
| 137 | return new; |
| 138 | } |
| 139 | |
| 140 | void |
| 141 | rip_info_free (struct rip_info *rinfo) |
| 142 | { |
| 143 | XFREE (MTYPE_RIP_INFO, rinfo); |
| 144 | } |
| 145 | |
| 146 | /* RIP route garbage collect timer. */ |
| 147 | int |
| 148 | rip_garbage_collect (struct thread *t) |
| 149 | { |
| 150 | struct rip_info *rinfo; |
| 151 | struct route_node *rp; |
| 152 | |
| 153 | rinfo = THREAD_ARG (t); |
| 154 | rinfo->t_garbage_collect = NULL; |
| 155 | |
| 156 | /* Off timeout timer. */ |
| 157 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 158 | |
| 159 | /* Get route_node pointer. */ |
| 160 | rp = rinfo->rp; |
| 161 | |
| 162 | /* Unlock route_node. */ |
| 163 | rp->info = NULL; |
| 164 | route_unlock_node (rp); |
| 165 | |
| 166 | /* Free RIP routing information. */ |
| 167 | rip_info_free (rinfo); |
| 168 | |
| 169 | return 0; |
| 170 | } |
| 171 | |
| 172 | /* Timeout RIP routes. */ |
| 173 | int |
| 174 | rip_timeout (struct thread *t) |
| 175 | { |
| 176 | struct rip_info *rinfo; |
| 177 | struct route_node *rn; |
| 178 | |
| 179 | rinfo = THREAD_ARG (t); |
| 180 | rinfo->t_timeout = NULL; |
| 181 | |
| 182 | rn = rinfo->rp; |
| 183 | |
| 184 | /* - The garbage-collection timer is set for 120 seconds. */ |
| 185 | RIP_TIMER_ON (rinfo->t_garbage_collect, rip_garbage_collect, |
| 186 | rip->garbage_time); |
| 187 | |
| 188 | rip_zebra_ipv4_delete ((struct prefix_ipv4 *)&rn->p, &rinfo->nexthop, |
| 189 | rinfo->metric); |
| 190 | /* - The metric for the route is set to 16 (infinity). This causes |
| 191 | the route to be removed from service. */ |
| 192 | rinfo->metric = RIP_METRIC_INFINITY; |
| 193 | rinfo->flags &= ~RIP_RTF_FIB; |
| 194 | |
| 195 | /* - The route change flag is to indicate that this entry has been |
| 196 | changed. */ |
| 197 | rinfo->flags |= RIP_RTF_CHANGED; |
| 198 | |
| 199 | /* - The output process is signalled to trigger a response. */ |
| 200 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
| 201 | |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | void |
| 206 | rip_timeout_update (struct rip_info *rinfo) |
| 207 | { |
| 208 | if (rinfo->metric != RIP_METRIC_INFINITY) |
| 209 | { |
| 210 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 211 | RIP_TIMER_ON (rinfo->t_timeout, rip_timeout, rip->timeout_time); |
| 212 | } |
| 213 | } |
| 214 | |
| 215 | int |
| 216 | rip_incoming_filter (struct prefix_ipv4 *p, struct rip_interface *ri) |
| 217 | { |
| 218 | struct distribute *dist; |
| 219 | struct access_list *alist; |
| 220 | struct prefix_list *plist; |
| 221 | |
| 222 | /* Input distribute-list filtering. */ |
| 223 | if (ri->list[RIP_FILTER_IN]) |
| 224 | { |
| 225 | if (access_list_apply (ri->list[RIP_FILTER_IN], |
| 226 | (struct prefix *) p) == FILTER_DENY) |
| 227 | { |
| 228 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 229 | zlog_debug ("%s/%d filtered by distribute in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 230 | inet_ntoa (p->prefix), p->prefixlen); |
| 231 | return -1; |
| 232 | } |
| 233 | } |
| 234 | if (ri->prefix[RIP_FILTER_IN]) |
| 235 | { |
| 236 | if (prefix_list_apply (ri->prefix[RIP_FILTER_IN], |
| 237 | (struct prefix *) p) == PREFIX_DENY) |
| 238 | { |
| 239 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 240 | zlog_debug ("%s/%d filtered by prefix-list in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 241 | inet_ntoa (p->prefix), p->prefixlen); |
| 242 | return -1; |
| 243 | } |
| 244 | } |
| 245 | |
| 246 | /* All interface filter check. */ |
| 247 | dist = distribute_lookup (NULL); |
| 248 | if (dist) |
| 249 | { |
| 250 | if (dist->list[DISTRIBUTE_IN]) |
| 251 | { |
| 252 | alist = access_list_lookup (AFI_IP, dist->list[DISTRIBUTE_IN]); |
| 253 | |
| 254 | if (alist) |
| 255 | { |
| 256 | if (access_list_apply (alist, |
| 257 | (struct prefix *) p) == FILTER_DENY) |
| 258 | { |
| 259 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 260 | zlog_debug ("%s/%d filtered by distribute in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 261 | inet_ntoa (p->prefix), p->prefixlen); |
| 262 | return -1; |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | if (dist->prefix[DISTRIBUTE_IN]) |
| 267 | { |
| 268 | plist = prefix_list_lookup (AFI_IP, dist->prefix[DISTRIBUTE_IN]); |
| 269 | |
| 270 | if (plist) |
| 271 | { |
| 272 | if (prefix_list_apply (plist, |
| 273 | (struct prefix *) p) == PREFIX_DENY) |
| 274 | { |
| 275 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 276 | zlog_debug ("%s/%d filtered by prefix-list in", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 277 | inet_ntoa (p->prefix), p->prefixlen); |
| 278 | return -1; |
| 279 | } |
| 280 | } |
| 281 | } |
| 282 | } |
| 283 | return 0; |
| 284 | } |
| 285 | |
| 286 | int |
| 287 | rip_outgoing_filter (struct prefix_ipv4 *p, struct rip_interface *ri) |
| 288 | { |
| 289 | struct distribute *dist; |
| 290 | struct access_list *alist; |
| 291 | struct prefix_list *plist; |
| 292 | |
| 293 | if (ri->list[RIP_FILTER_OUT]) |
| 294 | { |
| 295 | if (access_list_apply (ri->list[RIP_FILTER_OUT], |
| 296 | (struct prefix *) p) == FILTER_DENY) |
| 297 | { |
| 298 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 299 | zlog_debug ("%s/%d is filtered by distribute out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 300 | inet_ntoa (p->prefix), p->prefixlen); |
| 301 | return -1; |
| 302 | } |
| 303 | } |
| 304 | if (ri->prefix[RIP_FILTER_OUT]) |
| 305 | { |
| 306 | if (prefix_list_apply (ri->prefix[RIP_FILTER_OUT], |
| 307 | (struct prefix *) p) == PREFIX_DENY) |
| 308 | { |
| 309 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 310 | zlog_debug ("%s/%d is filtered by prefix-list out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 311 | inet_ntoa (p->prefix), p->prefixlen); |
| 312 | return -1; |
| 313 | } |
| 314 | } |
| 315 | |
| 316 | /* All interface filter check. */ |
| 317 | dist = distribute_lookup (NULL); |
| 318 | if (dist) |
| 319 | { |
| 320 | if (dist->list[DISTRIBUTE_OUT]) |
| 321 | { |
| 322 | alist = access_list_lookup (AFI_IP, dist->list[DISTRIBUTE_OUT]); |
| 323 | |
| 324 | if (alist) |
| 325 | { |
| 326 | if (access_list_apply (alist, |
| 327 | (struct prefix *) p) == FILTER_DENY) |
| 328 | { |
| 329 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 330 | zlog_debug ("%s/%d filtered by distribute out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 331 | inet_ntoa (p->prefix), p->prefixlen); |
| 332 | return -1; |
| 333 | } |
| 334 | } |
| 335 | } |
| 336 | if (dist->prefix[DISTRIBUTE_OUT]) |
| 337 | { |
| 338 | plist = prefix_list_lookup (AFI_IP, dist->prefix[DISTRIBUTE_OUT]); |
| 339 | |
| 340 | if (plist) |
| 341 | { |
| 342 | if (prefix_list_apply (plist, |
| 343 | (struct prefix *) p) == PREFIX_DENY) |
| 344 | { |
| 345 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 346 | zlog_debug ("%s/%d filtered by prefix-list out", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 347 | inet_ntoa (p->prefix), p->prefixlen); |
| 348 | return -1; |
| 349 | } |
| 350 | } |
| 351 | } |
| 352 | } |
| 353 | return 0; |
| 354 | } |
| 355 | |
| 356 | /* Check nexthop address validity. */ |
| 357 | static int |
| 358 | rip_nexthop_check (struct in_addr *addr) |
| 359 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 360 | struct listnode *node; |
| 361 | struct listnode *cnode; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 362 | struct interface *ifp; |
| 363 | struct connected *ifc; |
| 364 | struct prefix *p; |
| 365 | |
| 366 | /* If nexthop address matches local configured address then it is |
| 367 | invalid nexthop. */ |
| 368 | for (node = listhead (iflist); node; nextnode (node)) |
| 369 | { |
| 370 | ifp = getdata (node); |
| 371 | |
| 372 | for (cnode = listhead (ifp->connected); cnode; nextnode (cnode)) |
| 373 | { |
| 374 | ifc = getdata (cnode); |
| 375 | p = ifc->address; |
| 376 | |
| 377 | if (p->family == AF_INET |
| 378 | && IPV4_ADDR_SAME (&p->u.prefix4, addr)) |
| 379 | return -1; |
| 380 | } |
| 381 | } |
| 382 | return 0; |
| 383 | } |
| 384 | |
| 385 | /* RIP add route to routing table. */ |
| 386 | void |
| 387 | rip_rte_process (struct rte *rte, struct sockaddr_in *from, |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 388 | struct interface *ifp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 389 | { |
| 390 | int ret; |
| 391 | struct prefix_ipv4 p; |
| 392 | struct route_node *rp; |
paul | b94f9db | 2004-05-01 20:45:38 +0000 | [diff] [blame] | 393 | struct rip_info *rinfo, rinfotmp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 394 | struct rip_interface *ri; |
| 395 | struct in_addr *nexthop; |
| 396 | u_char oldmetric; |
| 397 | int same = 0; |
| 398 | |
| 399 | /* Make prefix structure. */ |
| 400 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 401 | p.family = AF_INET; |
| 402 | p.prefix = rte->prefix; |
| 403 | p.prefixlen = ip_masklen (rte->mask); |
| 404 | |
| 405 | /* Make sure mask is applied. */ |
| 406 | apply_mask_ipv4 (&p); |
| 407 | |
| 408 | /* Apply input filters. */ |
| 409 | ri = ifp->info; |
| 410 | |
| 411 | ret = rip_incoming_filter (&p, ri); |
| 412 | if (ret < 0) |
| 413 | return; |
| 414 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 415 | /* Modify entry according to the interface routemap. */ |
| 416 | if (ri->routemap[RIP_FILTER_IN]) |
| 417 | { |
| 418 | int ret; |
| 419 | struct rip_info newinfo; |
| 420 | |
| 421 | memset (&newinfo, 0, sizeof (newinfo)); |
| 422 | newinfo.type = ZEBRA_ROUTE_RIP; |
| 423 | newinfo.sub_type = RIP_ROUTE_RTE; |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 424 | newinfo.nexthop = rte->nexthop; |
| 425 | newinfo.from = from->sin_addr; |
| 426 | newinfo.ifindex = ifp->ifindex; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 427 | newinfo.metric = rte->metric; |
| 428 | newinfo.metric_out = rte->metric; /* XXX */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 429 | newinfo.tag = ntohs (rte->tag); /* XXX */ |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 430 | |
| 431 | /* The object should be of the type of rip_info */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 432 | ret = route_map_apply (ri->routemap[RIP_FILTER_IN], |
| 433 | (struct prefix *) &p, RMAP_RIP, &newinfo); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 434 | |
| 435 | if (ret == RMAP_DENYMATCH) |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 436 | { |
| 437 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 438 | zlog_debug ("RIP %s/%d is filtered by route-map in", |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 439 | inet_ntoa (p.prefix), p.prefixlen); |
| 440 | return; |
| 441 | } |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 442 | |
| 443 | /* Get back the object */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 444 | rte->nexthop = newinfo.nexthop_out; |
| 445 | rte->tag = htons (newinfo.tag_out); /* XXX */ |
| 446 | rte->metric = newinfo.metric_out; /* XXX: the routemap uses the metric_out field */ |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 447 | } |
| 448 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 449 | /* Once the entry has been validated, update the metric by |
| 450 | adding the cost of the network on wich the message |
| 451 | arrived. If the result is greater than infinity, use infinity |
| 452 | (RFC2453 Sec. 3.9.2) */ |
| 453 | /* Zebra ripd can handle offset-list in. */ |
| 454 | ret = rip_offset_list_apply_in (&p, ifp, &rte->metric); |
| 455 | |
| 456 | /* If offset-list does not modify the metric use interface's |
| 457 | metric. */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 458 | if (!ret) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 459 | rte->metric += ifp->metric; |
| 460 | |
| 461 | if (rte->metric > RIP_METRIC_INFINITY) |
| 462 | rte->metric = RIP_METRIC_INFINITY; |
| 463 | |
| 464 | /* Set nexthop pointer. */ |
| 465 | if (rte->nexthop.s_addr == 0) |
| 466 | nexthop = &from->sin_addr; |
| 467 | else |
| 468 | nexthop = &rte->nexthop; |
| 469 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 470 | /* Check if nexthop address is myself, then do nothing. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 471 | if (rip_nexthop_check (nexthop) < 0) |
| 472 | { |
| 473 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 474 | zlog_debug ("Nexthop address %s is myself", inet_ntoa (*nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 475 | return; |
| 476 | } |
| 477 | |
| 478 | /* Get index for the prefix. */ |
| 479 | rp = route_node_get (rip->table, (struct prefix *) &p); |
| 480 | |
| 481 | /* Check to see whether there is already RIP route on the table. */ |
| 482 | rinfo = rp->info; |
| 483 | |
| 484 | if (rinfo) |
| 485 | { |
| 486 | /* Redistributed route check. */ |
| 487 | if (rinfo->type != ZEBRA_ROUTE_RIP |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 488 | && rinfo->metric != RIP_METRIC_INFINITY) |
| 489 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 490 | |
| 491 | /* Local static route. */ |
| 492 | if (rinfo->type == ZEBRA_ROUTE_RIP |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 493 | && ((rinfo->sub_type == RIP_ROUTE_STATIC) || |
| 494 | (rinfo->sub_type == RIP_ROUTE_DEFAULT)) |
| 495 | && rinfo->metric != RIP_METRIC_INFINITY) |
| 496 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 497 | } |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 498 | |
| 499 | if (!rinfo) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 500 | { |
| 501 | /* Now, check to see whether there is already an explicit route |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 502 | for the destination prefix. If there is no such route, add |
| 503 | this route to the routing table, unless the metric is |
| 504 | infinity (there is no point in adding a route which |
| 505 | unusable). */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 506 | if (rte->metric != RIP_METRIC_INFINITY) |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 507 | { |
| 508 | rinfo = rip_info_new (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 509 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 510 | /* - Setting the destination prefix and length to those in |
| 511 | the RTE. */ |
| 512 | rinfo->rp = rp; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 513 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 514 | /* - Setting the metric to the newly calculated metric (as |
| 515 | described above). */ |
| 516 | rinfo->metric = rte->metric; |
| 517 | rinfo->tag = ntohs (rte->tag); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 518 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 519 | /* - Set the next hop address to be the address of the router |
| 520 | from which the datagram came or the next hop address |
| 521 | specified by a next hop RTE. */ |
| 522 | IPV4_ADDR_COPY (&rinfo->nexthop, nexthop); |
| 523 | IPV4_ADDR_COPY (&rinfo->from, &from->sin_addr); |
| 524 | rinfo->ifindex = ifp->ifindex; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 525 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 526 | /* - Initialize the timeout for the route. If the |
| 527 | garbage-collection timer is running for this route, stop it |
| 528 | (see section 2.3 for a discussion of the timers). */ |
| 529 | rip_timeout_update (rinfo); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 530 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 531 | /* - Set the route change flag. */ |
| 532 | rinfo->flags |= RIP_RTF_CHANGED; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 533 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 534 | /* - Signal the output process to trigger an update (see section |
| 535 | 2.5). */ |
| 536 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 537 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 538 | /* Finally, route goes into the kernel. */ |
| 539 | rinfo->type = ZEBRA_ROUTE_RIP; |
| 540 | rinfo->sub_type = RIP_ROUTE_RTE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 541 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 542 | /* Set distance value. */ |
| 543 | rinfo->distance = rip_distance_apply (rinfo); |
| 544 | |
| 545 | rp->info = rinfo; |
| 546 | rip_zebra_ipv4_add (&p, &rinfo->nexthop, rinfo->metric, |
| 547 | rinfo->distance); |
| 548 | rinfo->flags |= RIP_RTF_FIB; |
| 549 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 550 | } |
| 551 | else |
| 552 | { |
| 553 | /* Route is there but we are not sure the route is RIP or not. */ |
| 554 | rinfo = rp->info; |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 555 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 556 | /* If there is an existing route, compare the next hop address |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 557 | to the address of the router from which the datagram came. |
| 558 | If this datagram is from the same router as the existing |
| 559 | route, reinitialize the timeout. */ |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 560 | same = (IPV4_ADDR_SAME (&rinfo->from, &from->sin_addr) |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 561 | && (rinfo->ifindex == ifp->ifindex)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 562 | |
| 563 | if (same) |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 564 | rip_timeout_update (rinfo); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 565 | |
paul | b94f9db | 2004-05-01 20:45:38 +0000 | [diff] [blame] | 566 | |
| 567 | /* Fill in a minimaly temporary rip_info structure, for a future |
| 568 | rip_distance_apply() use) */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 569 | memset (&rinfotmp, 0, sizeof (rinfotmp)); |
paul | b94f9db | 2004-05-01 20:45:38 +0000 | [diff] [blame] | 570 | IPV4_ADDR_COPY (&rinfotmp.from, &from->sin_addr); |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 571 | rinfotmp.rp = rinfo->rp; |
paul | b94f9db | 2004-05-01 20:45:38 +0000 | [diff] [blame] | 572 | |
| 573 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 574 | /* Next, compare the metrics. If the datagram is from the same |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 575 | router as the existing route, and the new metric is different |
| 576 | than the old one; or, if the new metric is lower than the old |
| 577 | one, or if the tag has been changed; or if there is a route |
| 578 | with a lower administrave distance; or an update of the |
| 579 | distance on the actual route; do the following actions: */ |
| 580 | if ((same && rinfo->metric != rte->metric) |
| 581 | || (rte->metric < rinfo->metric) |
| 582 | || ((same) |
| 583 | && (rinfo->metric == rte->metric) |
| 584 | && ntohs (rte->tag) != rinfo->tag) |
| 585 | || (rinfo->distance > rip_distance_apply (&rinfotmp)) |
| 586 | || ((rinfo->distance != rip_distance_apply (rinfo)) && same)) |
| 587 | { |
| 588 | /* - Adopt the route from the datagram. That is, put the |
| 589 | new metric in, and adjust the next hop address (if |
| 590 | necessary). */ |
| 591 | oldmetric = rinfo->metric; |
| 592 | rinfo->metric = rte->metric; |
| 593 | rinfo->tag = ntohs (rte->tag); |
| 594 | IPV4_ADDR_COPY (&rinfo->from, &from->sin_addr); |
| 595 | rinfo->ifindex = ifp->ifindex; |
| 596 | rinfo->distance = rip_distance_apply (rinfo); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 597 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 598 | /* Should a new route to this network be established |
| 599 | while the garbage-collection timer is running, the |
| 600 | new route will replace the one that is about to be |
| 601 | deleted. In this case the garbage-collection timer |
| 602 | must be cleared. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 603 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 604 | if (oldmetric == RIP_METRIC_INFINITY && |
| 605 | rinfo->metric < RIP_METRIC_INFINITY) |
| 606 | { |
| 607 | rinfo->type = ZEBRA_ROUTE_RIP; |
| 608 | rinfo->sub_type = RIP_ROUTE_RTE; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 609 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 610 | RIP_TIMER_OFF (rinfo->t_garbage_collect); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 611 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 612 | if (!IPV4_ADDR_SAME (&rinfo->nexthop, nexthop)) |
| 613 | IPV4_ADDR_COPY (&rinfo->nexthop, nexthop); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 614 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 615 | rip_zebra_ipv4_add (&p, nexthop, rinfo->metric, |
| 616 | rinfo->distance); |
| 617 | rinfo->flags |= RIP_RTF_FIB; |
| 618 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 619 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 620 | /* Update nexthop and/or metric value. */ |
| 621 | if (oldmetric != RIP_METRIC_INFINITY) |
| 622 | { |
| 623 | rip_zebra_ipv4_delete (&p, &rinfo->nexthop, oldmetric); |
| 624 | rip_zebra_ipv4_add (&p, nexthop, rinfo->metric, |
| 625 | rinfo->distance); |
| 626 | rinfo->flags |= RIP_RTF_FIB; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 627 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 628 | if (!IPV4_ADDR_SAME (&rinfo->nexthop, nexthop)) |
| 629 | IPV4_ADDR_COPY (&rinfo->nexthop, nexthop); |
| 630 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 631 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 632 | /* - Set the route change flag and signal the output process |
| 633 | to trigger an update. */ |
| 634 | rinfo->flags |= RIP_RTF_CHANGED; |
| 635 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 636 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 637 | /* - If the new metric is infinity, start the deletion |
| 638 | process (described above); */ |
| 639 | if (rinfo->metric == RIP_METRIC_INFINITY) |
| 640 | { |
| 641 | /* If the new metric is infinity, the deletion process |
| 642 | begins for the route, which is no longer used for |
| 643 | routing packets. Note that the deletion process is |
| 644 | started only when the metric is first set to |
| 645 | infinity. If the metric was already infinity, then a |
| 646 | new deletion process is not started. */ |
| 647 | if (oldmetric != RIP_METRIC_INFINITY) |
| 648 | { |
| 649 | /* - The garbage-collection timer is set for 120 seconds. */ |
| 650 | RIP_TIMER_ON (rinfo->t_garbage_collect, |
| 651 | rip_garbage_collect, rip->garbage_time); |
| 652 | RIP_TIMER_OFF (rinfo->t_timeout); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 653 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 654 | /* - The metric for the route is set to 16 |
| 655 | (infinity). This causes the route to be removed |
| 656 | from service. */ |
| 657 | rip_zebra_ipv4_delete (&p, &rinfo->nexthop, oldmetric); |
| 658 | rinfo->flags &= ~RIP_RTF_FIB; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 659 | |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 660 | /* - The route change flag is to indicate that this |
| 661 | entry has been changed. */ |
| 662 | /* - The output process is signalled to trigger a |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 663 | response. */ |
paul | a87552c | 2004-05-03 20:00:17 +0000 | [diff] [blame] | 664 | ; /* Above processes are already done previously. */ |
| 665 | } |
| 666 | } |
| 667 | else |
| 668 | { |
| 669 | /* otherwise, re-initialize the timeout. */ |
| 670 | rip_timeout_update (rinfo); |
| 671 | } |
| 672 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 673 | /* Unlock tempolary lock of the route. */ |
| 674 | route_unlock_node (rp); |
| 675 | } |
| 676 | } |
| 677 | |
| 678 | /* Dump RIP packet */ |
| 679 | void |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 680 | rip_packet_dump (struct rip_packet *packet, int size, const char *sndrcv) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 681 | { |
| 682 | caddr_t lim; |
| 683 | struct rte *rte; |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 684 | const char *command_str; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 685 | char pbuf[BUFSIZ], nbuf[BUFSIZ]; |
| 686 | u_char netmask = 0; |
| 687 | u_char *p; |
| 688 | |
| 689 | /* Set command string. */ |
| 690 | if (packet->command > 0 && packet->command < RIP_COMMAND_MAX) |
| 691 | command_str = lookup (rip_msg, packet->command); |
| 692 | else |
| 693 | command_str = "unknown"; |
| 694 | |
| 695 | /* Dump packet header. */ |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 696 | zlog_debug ("%s %s version %d packet size %d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 697 | sndrcv, command_str, packet->version, size); |
| 698 | |
| 699 | /* Dump each routing table entry. */ |
| 700 | rte = packet->rte; |
| 701 | |
| 702 | for (lim = (caddr_t) packet + size; (caddr_t) rte < lim; rte++) |
| 703 | { |
| 704 | if (packet->version == RIPv2) |
| 705 | { |
| 706 | netmask = ip_masklen (rte->mask); |
| 707 | |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 708 | if (rte->family == htons (RIP_FAMILY_AUTH)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 709 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 710 | if (rte->tag == htons (RIP_AUTH_SIMPLE_PASSWORD)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 711 | { |
| 712 | p = (u_char *)&rte->prefix; |
| 713 | |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 714 | zlog_debug (" family 0x%X type %d auth string: %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 715 | ntohs (rte->family), ntohs (rte->tag), p); |
| 716 | } |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 717 | else if (rte->tag == htons (RIP_AUTH_MD5)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 718 | { |
| 719 | struct rip_md5_info *md5; |
| 720 | |
| 721 | md5 = (struct rip_md5_info *) &packet->rte; |
| 722 | |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 723 | zlog_debug (" family 0x%X type %d (MD5 authentication)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 724 | ntohs (md5->family), ntohs (md5->type)); |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 725 | zlog_debug (" RIP-2 packet len %d Key ID %d" |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 726 | " Auth Data len %d", |
| 727 | ntohs (md5->packet_len), md5->keyid, |
| 728 | md5->auth_len); |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 729 | zlog_debug (" Sequence Number %ld", |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 730 | (u_long) ntohl (md5->sequence)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 731 | } |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 732 | else if (rte->tag == htons (RIP_AUTH_DATA)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 733 | { |
| 734 | p = (u_char *)&rte->prefix; |
| 735 | |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 736 | zlog_debug (" family 0x%X type %d (MD5 data)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 737 | ntohs (rte->family), ntohs (rte->tag)); |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 738 | zlog_debug (" MD5: %02X%02X%02X%02X%02X%02X%02X%02X" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 739 | "%02X%02X%02X%02X%02X%02X%02X", |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 740 | p[0], p[1], p[2], p[3], p[4], p[5], p[6], |
| 741 | p[7], p[9], p[10], p[11], p[12], p[13], |
| 742 | p[14], p[15]); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 743 | } |
| 744 | else |
| 745 | { |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 746 | zlog_debug (" family 0x%X type %d (Unknown auth type)", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 747 | ntohs (rte->family), ntohs (rte->tag)); |
| 748 | } |
| 749 | } |
| 750 | else |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 751 | zlog_debug (" %s/%d -> %s family %d tag %d metric %ld", |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 752 | inet_ntop (AF_INET, &rte->prefix, pbuf, BUFSIZ), |
| 753 | netmask, inet_ntop (AF_INET, &rte->nexthop, nbuf, |
| 754 | BUFSIZ), ntohs (rte->family), |
| 755 | ntohs (rte->tag), (u_long) ntohl (rte->metric)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 756 | } |
| 757 | else |
| 758 | { |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 759 | zlog_debug (" %s family %d tag %d metric %ld", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 760 | inet_ntop (AF_INET, &rte->prefix, pbuf, BUFSIZ), |
| 761 | ntohs (rte->family), ntohs (rte->tag), |
| 762 | (u_long)ntohl (rte->metric)); |
| 763 | } |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | /* Check if the destination address is valid (unicast; not net 0 |
| 768 | or 127) (RFC2453 Section 3.9.2 - Page 26). But we don't |
| 769 | check net 0 because we accept default route. */ |
| 770 | int |
| 771 | rip_destination_check (struct in_addr addr) |
| 772 | { |
| 773 | u_int32_t destination; |
| 774 | |
| 775 | /* Convert to host byte order. */ |
| 776 | destination = ntohl (addr.s_addr); |
| 777 | |
| 778 | if (IPV4_NET127 (destination)) |
| 779 | return 0; |
| 780 | |
| 781 | /* Net 0 may match to the default route. */ |
| 782 | if (IPV4_NET0 (destination) && destination != 0) |
| 783 | return 0; |
| 784 | |
| 785 | /* Unicast address must belong to class A, B, C. */ |
| 786 | if (IN_CLASSA (destination)) |
| 787 | return 1; |
| 788 | if (IN_CLASSB (destination)) |
| 789 | return 1; |
| 790 | if (IN_CLASSC (destination)) |
| 791 | return 1; |
| 792 | |
| 793 | return 0; |
| 794 | } |
| 795 | |
| 796 | /* RIP version 2 authentication. */ |
| 797 | int |
| 798 | rip_auth_simple_password (struct rte *rte, struct sockaddr_in *from, |
| 799 | struct interface *ifp) |
| 800 | { |
| 801 | struct rip_interface *ri; |
| 802 | char *auth_str; |
| 803 | |
| 804 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 805 | zlog_debug ("RIPv2 simple password authentication from %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 806 | inet_ntoa (from->sin_addr)); |
| 807 | |
| 808 | ri = ifp->info; |
| 809 | |
| 810 | if (ri->auth_type != RIP_AUTH_SIMPLE_PASSWORD |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 811 | || rte->tag != htons(RIP_AUTH_SIMPLE_PASSWORD)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 812 | return 0; |
| 813 | |
| 814 | /* Simple password authentication. */ |
| 815 | if (ri->auth_str) |
| 816 | { |
| 817 | auth_str = (char *) &rte->prefix; |
| 818 | |
| 819 | if (strncmp (auth_str, ri->auth_str, 16) == 0) |
| 820 | return 1; |
| 821 | } |
| 822 | if (ri->key_chain) |
| 823 | { |
| 824 | struct keychain *keychain; |
| 825 | struct key *key; |
| 826 | |
| 827 | keychain = keychain_lookup (ri->key_chain); |
| 828 | if (keychain == NULL) |
| 829 | return 0; |
| 830 | |
| 831 | key = key_match_for_accept (keychain, (char *) &rte->prefix); |
| 832 | if (key) |
| 833 | return 1; |
| 834 | } |
| 835 | return 0; |
| 836 | } |
| 837 | |
| 838 | /* RIP version 2 authentication with MD5. */ |
| 839 | int |
| 840 | rip_auth_md5 (struct rip_packet *packet, struct sockaddr_in *from, |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 841 | int length, struct interface *ifp) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 842 | { |
| 843 | struct rip_interface *ri; |
| 844 | struct rip_md5_info *md5; |
| 845 | struct rip_md5_data *md5data; |
| 846 | struct keychain *keychain; |
| 847 | struct key *key; |
| 848 | struct md5_ctx ctx; |
| 849 | u_char pdigest[RIP_AUTH_MD5_SIZE]; |
| 850 | u_char digest[RIP_AUTH_MD5_SIZE]; |
| 851 | u_int16_t packet_len; |
| 852 | char *auth_str = NULL; |
| 853 | |
| 854 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 855 | zlog_debug ("RIPv2 MD5 authentication from %s", |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 856 | inet_ntoa (from->sin_addr)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 857 | |
| 858 | ri = ifp->info; |
| 859 | md5 = (struct rip_md5_info *) &packet->rte; |
| 860 | |
| 861 | /* Check auth type. */ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 862 | if (ri->auth_type != RIP_AUTH_MD5 || md5->type != htons(RIP_AUTH_MD5)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 863 | return 0; |
| 864 | |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 865 | /* If the authentication length is less than 16, then it must be wrong for |
| 866 | * any interpretation of rfc2082. Some implementations also interpret |
| 867 | * this as RIP_HEADER_SIZE+ RIP_AUTH_MD5_SIZE, aka RIP_AUTH_MD5_COMPAT_SIZE. |
paul | c2bfbcc | 2004-06-04 01:42:38 +0000 | [diff] [blame] | 868 | */ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 869 | if ( !((md5->auth_len == RIP_AUTH_MD5_SIZE) |
| 870 | || (md5->auth_len == RIP_AUTH_MD5_COMPAT_SIZE))) |
paul | c2bfbcc | 2004-06-04 01:42:38 +0000 | [diff] [blame] | 871 | { |
| 872 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 873 | zlog_debug ("RIPv2 MD5 authentication, strange authentication " |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 874 | "length field %d", md5->auth_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 875 | return 0; |
paul | c2bfbcc | 2004-06-04 01:42:38 +0000 | [diff] [blame] | 876 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 877 | |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 878 | /* grab and verify check packet length */ |
| 879 | packet_len = ntohs (md5->packet_len); |
| 880 | |
| 881 | if (packet_len > (length - RIP_HEADER_SIZE - RIP_AUTH_MD5_SIZE)) |
| 882 | { |
| 883 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 884 | zlog_debug ("RIPv2 MD5 authentication, packet length field %d " |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 885 | "greater than received length %d!", |
| 886 | md5->packet_len, length); |
| 887 | return 0; |
| 888 | } |
| 889 | |
| 890 | /* retrieve authentication data */ |
| 891 | md5data = (struct rip_md5_data *) (((u_char *) packet) + packet_len); |
| 892 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 893 | if (ri->key_chain) |
| 894 | { |
| 895 | keychain = keychain_lookup (ri->key_chain); |
| 896 | if (keychain == NULL) |
| 897 | return 0; |
| 898 | |
| 899 | key = key_lookup_for_accept (keychain, md5->keyid); |
| 900 | if (key == NULL) |
| 901 | return 0; |
| 902 | |
| 903 | auth_str = key->string; |
| 904 | } |
| 905 | |
| 906 | if (ri->auth_str) |
| 907 | auth_str = ri->auth_str; |
| 908 | |
| 909 | if (! auth_str) |
| 910 | return 0; |
| 911 | |
| 912 | /* MD5 digest authentication. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 913 | |
| 914 | /* Save digest to pdigest. */ |
| 915 | memcpy (pdigest, md5data->digest, RIP_AUTH_MD5_SIZE); |
| 916 | |
| 917 | /* Overwrite digest by my secret. */ |
| 918 | memset (md5data->digest, 0, RIP_AUTH_MD5_SIZE); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 919 | strncpy ((char *)md5data->digest, auth_str, RIP_AUTH_MD5_SIZE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 920 | |
| 921 | md5_init_ctx (&ctx); |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 922 | md5_process_bytes (packet, packet_len + RIP_HEADER_SIZE + RIP_AUTH_MD5_SIZE, |
paul | c2bfbcc | 2004-06-04 01:42:38 +0000 | [diff] [blame] | 923 | &ctx); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 924 | md5_finish_ctx (&ctx, digest); |
| 925 | |
| 926 | if (memcmp (pdigest, digest, RIP_AUTH_MD5_SIZE) == 0) |
| 927 | return packet_len; |
| 928 | else |
| 929 | return 0; |
| 930 | } |
| 931 | |
| 932 | void |
| 933 | rip_auth_md5_set (struct stream *s, struct interface *ifp) |
| 934 | { |
| 935 | struct rip_interface *ri; |
| 936 | struct keychain *keychain = NULL; |
| 937 | struct key *key = NULL; |
| 938 | unsigned long len; |
| 939 | struct md5_ctx ctx; |
| 940 | unsigned char secret[RIP_AUTH_MD5_SIZE]; |
| 941 | unsigned char digest[RIP_AUTH_MD5_SIZE]; |
| 942 | char *auth_str = NULL; |
| 943 | |
| 944 | ri = ifp->info; |
| 945 | |
| 946 | /* Make it sure this interface is configured as MD5 |
| 947 | authentication. */ |
| 948 | if (ri->auth_type != RIP_AUTH_MD5) |
| 949 | return; |
| 950 | |
| 951 | /* Lookup key chain. */ |
| 952 | if (ri->key_chain) |
| 953 | { |
| 954 | keychain = keychain_lookup (ri->key_chain); |
| 955 | if (keychain == NULL) |
| 956 | return; |
| 957 | |
| 958 | /* Lookup key. */ |
| 959 | key = key_lookup_for_send (keychain); |
| 960 | if (key == NULL) |
| 961 | return; |
| 962 | |
| 963 | auth_str = key->string; |
| 964 | } |
| 965 | |
| 966 | if (ri->auth_str) |
| 967 | auth_str = ri->auth_str; |
| 968 | |
| 969 | if (! auth_str) |
| 970 | return; |
| 971 | |
| 972 | /* Get packet length. */ |
| 973 | len = s->putp; |
| 974 | |
| 975 | /* Check packet length. */ |
| 976 | if (len < (RIP_HEADER_SIZE + RIP_RTE_SIZE)) |
| 977 | { |
| 978 | zlog_err ("rip_auth_md5_set(): packet length %ld is less than minimum length.", len); |
| 979 | return; |
| 980 | } |
| 981 | |
| 982 | /* Move RTE. */ |
| 983 | memmove (s->data + RIP_HEADER_SIZE + RIP_RTE_SIZE, |
| 984 | s->data + RIP_HEADER_SIZE, |
| 985 | len - RIP_HEADER_SIZE); |
| 986 | |
| 987 | /* Set pointer to authentication header. */ |
| 988 | stream_set_putp (s, RIP_HEADER_SIZE); |
| 989 | len += RIP_RTE_SIZE; |
| 990 | |
| 991 | /* MD5 authentication. */ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 992 | stream_putw (s, RIP_FAMILY_AUTH); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 993 | stream_putw (s, RIP_AUTH_MD5); |
| 994 | |
| 995 | /* RIP-2 Packet length. Actual value is filled in |
| 996 | rip_auth_md5_set(). */ |
| 997 | stream_putw (s, len); |
| 998 | |
| 999 | /* Key ID. */ |
| 1000 | if (key) |
| 1001 | stream_putc (s, key->index % 256); |
| 1002 | else |
| 1003 | stream_putc (s, 1); |
| 1004 | |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1005 | /* Auth Data Len. Set 16 for MD5 authentication data. Older ripds |
| 1006 | * however expect RIP_HEADER_SIZE + RIP_AUTH_MD5_SIZE so we allow for this |
| 1007 | * to be configurable. |
| 1008 | */ |
| 1009 | stream_putc (s, ri->md5_auth_len); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1010 | |
| 1011 | /* Sequence Number (non-decreasing). */ |
| 1012 | /* RFC2080: The value used in the sequence number is |
| 1013 | arbitrary, but two suggestions are the time of the |
| 1014 | message's creation or a simple message counter. */ |
| 1015 | stream_putl (s, time (NULL)); |
| 1016 | |
| 1017 | /* Reserved field must be zero. */ |
| 1018 | stream_putl (s, 0); |
| 1019 | stream_putl (s, 0); |
| 1020 | |
| 1021 | /* Set pointer to authentication data. */ |
| 1022 | stream_set_putp (s, len); |
| 1023 | |
| 1024 | /* Set authentication data. */ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1025 | stream_putw (s, RIP_FAMILY_AUTH); |
| 1026 | stream_putw (s, RIP_AUTH_DATA); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1027 | |
| 1028 | /* Generate a digest for the RIP packet. */ |
| 1029 | memset (secret, 0, RIP_AUTH_MD5_SIZE); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 1030 | strncpy ((char *)secret, auth_str, RIP_AUTH_MD5_SIZE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1031 | md5_init_ctx (&ctx); |
| 1032 | md5_process_bytes (s->data, s->endp, &ctx); |
| 1033 | md5_process_bytes (secret, RIP_AUTH_MD5_SIZE, &ctx); |
| 1034 | md5_finish_ctx (&ctx, digest); |
| 1035 | |
| 1036 | /* Copy the digest to the packet. */ |
| 1037 | stream_write (s, digest, RIP_AUTH_MD5_SIZE); |
| 1038 | } |
| 1039 | |
| 1040 | /* RIP routing information. */ |
| 1041 | void |
| 1042 | rip_response_process (struct rip_packet *packet, int size, |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1043 | struct sockaddr_in *from, struct connected *ifc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1044 | { |
| 1045 | caddr_t lim; |
| 1046 | struct rte *rte; |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1047 | struct prefix_ipv4 ifaddr; |
| 1048 | struct prefix_ipv4 ifaddrclass; |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1049 | int subnetted; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1050 | |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1051 | /* We don't know yet. */ |
| 1052 | subnetted = -1; |
| 1053 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1054 | /* The Response must be ignored if it is not from the RIP |
| 1055 | port. (RFC2453 - Sec. 3.9.2)*/ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1056 | if (from->sin_port != htons(RIP_PORT_DEFAULT)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1057 | { |
| 1058 | zlog_info ("response doesn't come from RIP port: %d", |
| 1059 | from->sin_port); |
| 1060 | rip_peer_bad_packet (from); |
| 1061 | return; |
| 1062 | } |
| 1063 | |
| 1064 | /* The datagram's IPv4 source address should be checked to see |
| 1065 | whether the datagram is from a valid neighbor; the source of the |
| 1066 | datagram must be on a directly connected network */ |
paul | 31a476c | 2003-09-29 19:54:53 +0000 | [diff] [blame] | 1067 | if (! if_valid_neighbor (from->sin_addr)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1068 | { |
| 1069 | zlog_info ("This datagram doesn't came from a valid neighbor: %s", |
| 1070 | inet_ntoa (from->sin_addr)); |
| 1071 | rip_peer_bad_packet (from); |
| 1072 | return; |
| 1073 | } |
| 1074 | |
| 1075 | /* It is also worth checking to see whether the response is from one |
| 1076 | of the router's own addresses. */ |
| 1077 | |
| 1078 | ; /* Alredy done in rip_read () */ |
| 1079 | |
| 1080 | /* Update RIP peer. */ |
| 1081 | rip_peer_update (from, packet->version); |
| 1082 | |
| 1083 | /* Set RTE pointer. */ |
| 1084 | rte = packet->rte; |
| 1085 | |
| 1086 | for (lim = (caddr_t) packet + size; (caddr_t) rte < lim; rte++) |
| 1087 | { |
| 1088 | /* RIPv2 authentication check. */ |
| 1089 | /* If the Address Family Identifier of the first (and only the |
| 1090 | first) entry in the message is 0xFFFF, then the remainder of |
| 1091 | the entry contains the authentication. */ |
| 1092 | /* If the packet gets here it means authentication enabled */ |
| 1093 | /* Check is done in rip_read(). So, just skipping it */ |
| 1094 | if (packet->version == RIPv2 && |
| 1095 | rte == packet->rte && |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1096 | rte->family == htons(RIP_FAMILY_AUTH)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1097 | continue; |
| 1098 | |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1099 | if (rte->family != htons(AF_INET)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1100 | { |
| 1101 | /* Address family check. RIP only supports AF_INET. */ |
| 1102 | zlog_info ("Unsupported family %d from %s.", |
| 1103 | ntohs (rte->family), inet_ntoa (from->sin_addr)); |
| 1104 | continue; |
| 1105 | } |
| 1106 | |
| 1107 | /* - is the destination address valid (e.g., unicast; not net 0 |
| 1108 | or 127) */ |
| 1109 | if (! rip_destination_check (rte->prefix)) |
| 1110 | { |
| 1111 | zlog_info ("Network is net 0 or net 127 or it is not unicast network"); |
| 1112 | rip_peer_bad_route (from); |
| 1113 | continue; |
| 1114 | } |
| 1115 | |
| 1116 | /* Convert metric value to host byte order. */ |
| 1117 | rte->metric = ntohl (rte->metric); |
| 1118 | |
| 1119 | /* - is the metric valid (i.e., between 1 and 16, inclusive) */ |
| 1120 | if (! (rte->metric >= 1 && rte->metric <= 16)) |
| 1121 | { |
| 1122 | zlog_info ("Route's metric is not in the 1-16 range."); |
| 1123 | rip_peer_bad_route (from); |
| 1124 | continue; |
| 1125 | } |
| 1126 | |
| 1127 | /* RIPv1 does not have nexthop value. */ |
| 1128 | if (packet->version == RIPv1 && rte->nexthop.s_addr != 0) |
| 1129 | { |
| 1130 | zlog_info ("RIPv1 packet with nexthop value %s", |
| 1131 | inet_ntoa (rte->nexthop)); |
| 1132 | rip_peer_bad_route (from); |
| 1133 | continue; |
| 1134 | } |
| 1135 | |
| 1136 | /* That is, if the provided information is ignored, a possibly |
| 1137 | sub-optimal, but absolutely valid, route may be taken. If |
| 1138 | the received Next Hop is not directly reachable, it should be |
| 1139 | treated as 0.0.0.0. */ |
| 1140 | if (packet->version == RIPv2 && rte->nexthop.s_addr != 0) |
| 1141 | { |
| 1142 | u_int32_t addrval; |
| 1143 | |
| 1144 | /* Multicast address check. */ |
| 1145 | addrval = ntohl (rte->nexthop.s_addr); |
| 1146 | if (IN_CLASSD (addrval)) |
| 1147 | { |
| 1148 | zlog_info ("Nexthop %s is multicast address, skip this rte", |
| 1149 | inet_ntoa (rte->nexthop)); |
| 1150 | continue; |
| 1151 | } |
| 1152 | |
| 1153 | if (! if_lookup_address (rte->nexthop)) |
| 1154 | { |
| 1155 | struct route_node *rn; |
| 1156 | struct rip_info *rinfo; |
| 1157 | |
| 1158 | rn = route_node_match_ipv4 (rip->table, &rte->nexthop); |
| 1159 | |
| 1160 | if (rn) |
| 1161 | { |
| 1162 | rinfo = rn->info; |
| 1163 | |
| 1164 | if (rinfo->type == ZEBRA_ROUTE_RIP |
| 1165 | && rinfo->sub_type == RIP_ROUTE_RTE) |
| 1166 | { |
| 1167 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1168 | zlog_debug ("Next hop %s is on RIP network. Set nexthop to the packet's originator", inet_ntoa (rte->nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1169 | rte->nexthop = rinfo->from; |
| 1170 | } |
| 1171 | else |
| 1172 | { |
| 1173 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1174 | zlog_debug ("Next hop %s is not directly reachable. Treat it as 0.0.0.0", inet_ntoa (rte->nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1175 | rte->nexthop.s_addr = 0; |
| 1176 | } |
| 1177 | |
| 1178 | route_unlock_node (rn); |
| 1179 | } |
| 1180 | else |
| 1181 | { |
| 1182 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1183 | zlog_debug ("Next hop %s is not directly reachable. Treat it as 0.0.0.0", inet_ntoa (rte->nexthop)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1184 | rte->nexthop.s_addr = 0; |
| 1185 | } |
| 1186 | |
| 1187 | } |
| 1188 | } |
| 1189 | |
| 1190 | /* For RIPv1, there won't be a valid netmask. |
| 1191 | |
| 1192 | This is a best guess at the masks. If everyone was using old |
| 1193 | Ciscos before the 'ip subnet zero' option, it would be almost |
| 1194 | right too :-) |
| 1195 | |
| 1196 | Cisco summarize ripv1 advertisments to the classful boundary |
| 1197 | (/16 for class B's) except when the RIP packet does to inside |
| 1198 | the classful network in question. */ |
| 1199 | |
| 1200 | if ((packet->version == RIPv1 && rte->prefix.s_addr != 0) |
| 1201 | || (packet->version == RIPv2 |
| 1202 | && (rte->prefix.s_addr != 0 && rte->mask.s_addr == 0))) |
| 1203 | { |
| 1204 | u_int32_t destination; |
| 1205 | |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1206 | if (subnetted == -1) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1207 | { |
| 1208 | memcpy (&ifaddr, ifc->address, sizeof (struct prefix_ipv4)); |
| 1209 | memcpy (&ifaddrclass, &ifaddr, sizeof (struct prefix_ipv4)); |
| 1210 | apply_classful_mask_ipv4 (&ifaddrclass); |
| 1211 | subnetted = 0; |
| 1212 | if (ifaddr.prefixlen > ifaddrclass.prefixlen) |
| 1213 | subnetted = 1; |
| 1214 | } |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1215 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1216 | destination = ntohl (rte->prefix.s_addr); |
| 1217 | |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1218 | if (IN_CLASSA (destination)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1219 | masklen2ip (8, &rte->mask); |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1220 | else if (IN_CLASSB (destination)) |
| 1221 | masklen2ip (16, &rte->mask); |
| 1222 | else if (IN_CLASSC (destination)) |
| 1223 | masklen2ip (24, &rte->mask); |
| 1224 | |
| 1225 | if (subnetted == 1) |
| 1226 | masklen2ip (ifaddrclass.prefixlen, |
| 1227 | (struct in_addr *) &destination); |
| 1228 | if ((subnetted == 1) && ((rte->prefix.s_addr & destination) == |
| 1229 | ifaddrclass.prefix.s_addr)) |
| 1230 | { |
| 1231 | masklen2ip (ifaddr.prefixlen, &rte->mask); |
| 1232 | if ((rte->prefix.s_addr & rte->mask.s_addr) != rte->prefix.s_addr) |
| 1233 | masklen2ip (32, &rte->mask); |
| 1234 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1235 | zlog_debug ("Subnetted route %s", inet_ntoa (rte->prefix)); |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 1236 | } |
| 1237 | else |
| 1238 | { |
| 1239 | if ((rte->prefix.s_addr & rte->mask.s_addr) != rte->prefix.s_addr) |
| 1240 | continue; |
| 1241 | } |
| 1242 | |
| 1243 | if (IS_RIP_DEBUG_EVENT) |
| 1244 | { |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1245 | zlog_debug ("Resultant route %s", inet_ntoa (rte->prefix)); |
| 1246 | zlog_debug ("Resultant mask %s", inet_ntoa (rte->mask)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1247 | } |
| 1248 | } |
| 1249 | |
| 1250 | /* In case of RIPv2, if prefix in RTE is not netmask applied one |
| 1251 | ignore the entry. */ |
| 1252 | if ((packet->version == RIPv2) |
| 1253 | && (rte->mask.s_addr != 0) |
| 1254 | && ((rte->prefix.s_addr & rte->mask.s_addr) != rte->prefix.s_addr)) |
| 1255 | { |
| 1256 | zlog_warn ("RIPv2 address %s is not mask /%d applied one", |
| 1257 | inet_ntoa (rte->prefix), ip_masklen (rte->mask)); |
| 1258 | rip_peer_bad_route (from); |
| 1259 | continue; |
| 1260 | } |
| 1261 | |
| 1262 | /* Default route's netmask is ignored. */ |
| 1263 | if (packet->version == RIPv2 |
| 1264 | && (rte->prefix.s_addr == 0) |
| 1265 | && (rte->mask.s_addr != 0)) |
| 1266 | { |
| 1267 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1268 | zlog_debug ("Default route with non-zero netmask. Set zero to netmask"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1269 | rte->mask.s_addr = 0; |
| 1270 | } |
| 1271 | |
| 1272 | /* Routing table updates. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1273 | rip_rte_process (rte, from, ifc->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1274 | } |
| 1275 | } |
| 1276 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1277 | /* RIP packet send to destination address, on interface denoted by |
| 1278 | * by connected argument. NULL to argument denotes destination should be |
| 1279 | * should be RIP multicast group |
| 1280 | */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1281 | int |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1282 | rip_send_packet (u_char * buf, int size, struct sockaddr_in *to, |
| 1283 | struct connected *ifc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1284 | { |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1285 | int ret, send_sock; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1286 | struct sockaddr_in sin; |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1287 | |
| 1288 | assert (ifc != NULL); |
| 1289 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1290 | if (IS_RIP_DEBUG_PACKET) |
| 1291 | { |
| 1292 | char dst[20]; |
| 1293 | if (to) |
| 1294 | { |
| 1295 | strcpy(dst, inet_ntoa(to->sin_addr)); |
| 1296 | } |
| 1297 | else |
| 1298 | { |
| 1299 | sin.sin_addr.s_addr = htonl (INADDR_RIP_GROUP); |
| 1300 | strcpy(dst, inet_ntoa(sin.sin_addr)); |
| 1301 | } |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1302 | zlog_debug("rip_send_packet %s > %s (%s)", |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1303 | inet_ntoa(ifc->address->u.prefix4), |
| 1304 | dst, ifc->ifp->name); |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1305 | } |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1306 | if ( CHECK_FLAG (ifc->flags, ZEBRA_IFA_SECONDARY) ) |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1307 | { |
| 1308 | /* |
| 1309 | * ZEBRA_IFA_SECONDARY is set on linux when an interface is configured |
| 1310 | * with multiple addresses on the same subnet: the first address |
| 1311 | * on the subnet is configured "primary", and all subsequent addresses |
| 1312 | * on that subnet are treated as "secondary" addresses. |
| 1313 | * In order to avoid routing-table bloat on other rip listeners, |
| 1314 | * we do not send out RIP packets with ZEBRA_IFA_SECONDARY source addrs. |
| 1315 | * XXX Since Linux is the only system for which the ZEBRA_IFA_SECONDARY |
| 1316 | * flag is set, we would end up sending a packet for a "secondary" |
| 1317 | * source address on non-linux systems. |
| 1318 | */ |
| 1319 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1320 | zlog_debug("duplicate dropped"); |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1321 | return 0; |
| 1322 | } |
| 1323 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1324 | /* Make destination address. */ |
| 1325 | memset (&sin, 0, sizeof (struct sockaddr_in)); |
| 1326 | sin.sin_family = AF_INET; |
| 1327 | #ifdef HAVE_SIN_LEN |
| 1328 | sin.sin_len = sizeof (struct sockaddr_in); |
| 1329 | #endif /* HAVE_SIN_LEN */ |
| 1330 | |
| 1331 | /* When destination is specified, use it's port and address. */ |
| 1332 | if (to) |
| 1333 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1334 | sin.sin_port = to->sin_port; |
| 1335 | sin.sin_addr = to->sin_addr; |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1336 | send_sock = rip->sock; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1337 | } |
| 1338 | else |
| 1339 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1340 | |
| 1341 | sin.sin_port = htons (RIP_PORT_DEFAULT); |
| 1342 | sin.sin_addr.s_addr = htonl (INADDR_RIP_GROUP); |
| 1343 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1344 | /* |
| 1345 | * we have to open a new socket for each packet because this |
| 1346 | * is the most portable way to bind to a different source |
| 1347 | * ipv4 address for each packet. |
| 1348 | */ |
| 1349 | send_sock = socket(AF_INET, SOCK_DGRAM, 0); |
| 1350 | if (send_sock < 0) |
| 1351 | { |
| 1352 | zlog_warn("rip_send_packet could not create socket %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1353 | safe_strerror(errno)); |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1354 | return -1; |
| 1355 | } |
| 1356 | sockopt_broadcast (send_sock); |
| 1357 | sockopt_reuseaddr (send_sock); |
| 1358 | sockopt_reuseport (send_sock); |
| 1359 | #ifdef RIP_RECVMSG |
| 1360 | setsockopt_pktinfo (send_sock); |
| 1361 | #endif /* RIP_RECVMSG */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1362 | rip_interface_multicast_set (send_sock, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1363 | } |
| 1364 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1365 | ret = sendto (send_sock, buf, size, 0, (struct sockaddr *)&sin, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1366 | sizeof (struct sockaddr_in)); |
| 1367 | |
| 1368 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1369 | zlog_debug ("SEND to %s.%d", inet_ntoa(sin.sin_addr), |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 1370 | ntohs (sin.sin_port)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1371 | |
| 1372 | if (ret < 0) |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1373 | zlog_warn ("can't send packet : %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1374 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 1375 | if (!to) |
| 1376 | close(send_sock); |
| 1377 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1378 | return ret; |
| 1379 | } |
| 1380 | |
| 1381 | /* Add redistributed route to RIP table. */ |
| 1382 | void |
| 1383 | rip_redistribute_add (int type, int sub_type, struct prefix_ipv4 *p, |
| 1384 | unsigned int ifindex, struct in_addr *nexthop) |
| 1385 | { |
| 1386 | int ret; |
| 1387 | struct route_node *rp; |
| 1388 | struct rip_info *rinfo; |
| 1389 | |
| 1390 | /* Redistribute route */ |
| 1391 | ret = rip_destination_check (p->prefix); |
| 1392 | if (! ret) |
| 1393 | return; |
| 1394 | |
| 1395 | rp = route_node_get (rip->table, (struct prefix *) p); |
| 1396 | |
| 1397 | rinfo = rp->info; |
| 1398 | |
| 1399 | if (rinfo) |
| 1400 | { |
| 1401 | if (rinfo->type == ZEBRA_ROUTE_CONNECT |
| 1402 | && rinfo->sub_type == RIP_ROUTE_INTERFACE |
| 1403 | && rinfo->metric != RIP_METRIC_INFINITY) |
| 1404 | { |
| 1405 | route_unlock_node (rp); |
| 1406 | return; |
| 1407 | } |
| 1408 | |
| 1409 | /* Manually configured RIP route check. */ |
| 1410 | if (rinfo->type == ZEBRA_ROUTE_RIP |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1411 | && ((rinfo->sub_type == RIP_ROUTE_STATIC) || |
| 1412 | (rinfo->sub_type == RIP_ROUTE_DEFAULT)) ) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1413 | { |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1414 | if (type != ZEBRA_ROUTE_RIP || ((sub_type != RIP_ROUTE_STATIC) && |
| 1415 | (sub_type != RIP_ROUTE_DEFAULT))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1416 | { |
| 1417 | route_unlock_node (rp); |
| 1418 | return; |
| 1419 | } |
| 1420 | } |
| 1421 | |
| 1422 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 1423 | RIP_TIMER_OFF (rinfo->t_garbage_collect); |
| 1424 | |
| 1425 | if (rip_route_rte (rinfo)) |
| 1426 | rip_zebra_ipv4_delete ((struct prefix_ipv4 *)&rp->p, &rinfo->nexthop, |
| 1427 | rinfo->metric); |
| 1428 | rp->info = NULL; |
| 1429 | rip_info_free (rinfo); |
| 1430 | |
| 1431 | route_unlock_node (rp); |
| 1432 | } |
| 1433 | |
| 1434 | rinfo = rip_info_new (); |
| 1435 | |
| 1436 | rinfo->type = type; |
| 1437 | rinfo->sub_type = sub_type; |
| 1438 | rinfo->ifindex = ifindex; |
| 1439 | rinfo->metric = 1; |
| 1440 | rinfo->rp = rp; |
| 1441 | |
| 1442 | if (nexthop) |
| 1443 | rinfo->nexthop = *nexthop; |
| 1444 | |
| 1445 | rinfo->flags |= RIP_RTF_FIB; |
| 1446 | rp->info = rinfo; |
| 1447 | |
| 1448 | rinfo->flags |= RIP_RTF_CHANGED; |
| 1449 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1450 | if (IS_RIP_DEBUG_EVENT) { |
| 1451 | if (!nexthop) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1452 | zlog_debug ("Redistribute new prefix %s/%d on the interface %s", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1453 | inet_ntoa(p->prefix), p->prefixlen, |
| 1454 | ifindex2ifname(ifindex)); |
| 1455 | else |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1456 | zlog_debug ("Redistribute new prefix %s/%d with nexthop %s on the interface %s", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1457 | inet_ntoa(p->prefix), p->prefixlen, inet_ntoa(rinfo->nexthop), |
| 1458 | ifindex2ifname(ifindex)); |
| 1459 | } |
| 1460 | |
| 1461 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1462 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
| 1463 | } |
| 1464 | |
| 1465 | /* Delete redistributed route from RIP table. */ |
| 1466 | void |
| 1467 | rip_redistribute_delete (int type, int sub_type, struct prefix_ipv4 *p, |
| 1468 | unsigned int ifindex) |
| 1469 | { |
| 1470 | int ret; |
| 1471 | struct route_node *rp; |
| 1472 | struct rip_info *rinfo; |
| 1473 | |
| 1474 | ret = rip_destination_check (p->prefix); |
| 1475 | if (! ret) |
| 1476 | return; |
| 1477 | |
| 1478 | rp = route_node_lookup (rip->table, (struct prefix *) p); |
| 1479 | if (rp) |
| 1480 | { |
| 1481 | rinfo = rp->info; |
| 1482 | |
| 1483 | if (rinfo != NULL |
| 1484 | && rinfo->type == type |
| 1485 | && rinfo->sub_type == sub_type |
| 1486 | && rinfo->ifindex == ifindex) |
| 1487 | { |
| 1488 | /* Perform poisoned reverse. */ |
| 1489 | rinfo->metric = RIP_METRIC_INFINITY; |
| 1490 | RIP_TIMER_ON (rinfo->t_garbage_collect, |
| 1491 | rip_garbage_collect, rip->garbage_time); |
| 1492 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 1493 | rinfo->flags |= RIP_RTF_CHANGED; |
| 1494 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1495 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1496 | zlog_debug ("Poisone %s/%d on the interface %s with an infinity metric [delete]", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1497 | inet_ntoa(p->prefix), p->prefixlen, |
| 1498 | ifindex2ifname(ifindex)); |
| 1499 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1500 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
| 1501 | } |
| 1502 | } |
| 1503 | } |
| 1504 | |
| 1505 | /* Response to request called from rip_read ().*/ |
| 1506 | void |
| 1507 | rip_request_process (struct rip_packet *packet, int size, |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1508 | struct sockaddr_in *from, struct connected *ifc) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1509 | { |
| 1510 | caddr_t lim; |
| 1511 | struct rte *rte; |
| 1512 | struct prefix_ipv4 p; |
| 1513 | struct route_node *rp; |
| 1514 | struct rip_info *rinfo; |
| 1515 | struct rip_interface *ri; |
| 1516 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1517 | /* Does not reponse to the requests on the loopback interfaces */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1518 | if (if_is_loopback (ifc->ifp)) |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1519 | return; |
| 1520 | |
hasso | 429a0f8 | 2004-02-22 23:42:22 +0000 | [diff] [blame] | 1521 | /* Check RIP process is enabled on this interface. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1522 | ri = ifc->ifp->info; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 1523 | if (! ri->running) |
| 1524 | return; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1525 | |
| 1526 | /* When passive interface is specified, suppress responses */ |
| 1527 | if (ri->passive) |
| 1528 | return; |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1529 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1530 | /* RIP peer update. */ |
| 1531 | rip_peer_update (from, packet->version); |
| 1532 | |
| 1533 | lim = ((caddr_t) packet) + size; |
| 1534 | rte = packet->rte; |
| 1535 | |
| 1536 | /* The Request is processed entry by entry. If there are no |
| 1537 | entries, no response is given. */ |
| 1538 | if (lim == (caddr_t) rte) |
| 1539 | return; |
| 1540 | |
| 1541 | /* There is one special case. If there is exactly one entry in the |
| 1542 | request, and it has an address family identifier of zero and a |
| 1543 | metric of infinity (i.e., 16), then this is a request to send the |
| 1544 | entire routing table. */ |
| 1545 | if (lim == ((caddr_t) (rte + 1)) && |
| 1546 | ntohs (rte->family) == 0 && |
| 1547 | ntohl (rte->metric) == RIP_METRIC_INFINITY) |
| 1548 | { |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 1549 | struct prefix_ipv4 saddr; |
| 1550 | |
| 1551 | /* saddr will be used for determining which routes to split-horizon. |
| 1552 | Since the source address we'll pick will be on the same subnet as the |
| 1553 | destination, for the purpose of split-horizoning, we'll |
| 1554 | pretend that "from" is our source address. */ |
| 1555 | saddr.family = AF_INET; |
| 1556 | saddr.prefixlen = IPV4_MAX_BITLEN; |
| 1557 | saddr.prefix = from->sin_addr; |
| 1558 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1559 | /* All route with split horizon */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1560 | rip_output_process (ifc, from, rip_all_route, packet->version); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1561 | } |
| 1562 | else |
| 1563 | { |
| 1564 | /* Examine the list of RTEs in the Request one by one. For each |
| 1565 | entry, look up the destination in the router's routing |
| 1566 | database and, if there is a route, put that route's metric in |
| 1567 | the metric field of the RTE. If there is no explicit route |
| 1568 | to the specified destination, put infinity in the metric |
| 1569 | field. Once all the entries have been filled in, change the |
| 1570 | command from Request to Response and send the datagram back |
| 1571 | to the requestor. */ |
| 1572 | p.family = AF_INET; |
| 1573 | |
| 1574 | for (; ((caddr_t) rte) < lim; rte++) |
| 1575 | { |
| 1576 | p.prefix = rte->prefix; |
| 1577 | p.prefixlen = ip_masklen (rte->mask); |
| 1578 | apply_mask_ipv4 (&p); |
| 1579 | |
| 1580 | rp = route_node_lookup (rip->table, (struct prefix *) &p); |
| 1581 | if (rp) |
| 1582 | { |
| 1583 | rinfo = rp->info; |
| 1584 | rte->metric = htonl (rinfo->metric); |
| 1585 | route_unlock_node (rp); |
| 1586 | } |
| 1587 | else |
| 1588 | rte->metric = htonl (RIP_METRIC_INFINITY); |
| 1589 | } |
| 1590 | packet->command = RIP_RESPONSE; |
| 1591 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1592 | rip_send_packet ((u_char *)packet, size, from, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1593 | } |
| 1594 | rip_global_queries++; |
| 1595 | } |
| 1596 | |
| 1597 | #if RIP_RECVMSG |
| 1598 | /* Set IPv6 packet info to the socket. */ |
| 1599 | static int |
| 1600 | setsockopt_pktinfo (int sock) |
| 1601 | { |
| 1602 | int ret; |
| 1603 | int val = 1; |
| 1604 | |
| 1605 | ret = setsockopt(sock, IPPROTO_IP, IP_PKTINFO, &val, sizeof(val)); |
| 1606 | if (ret < 0) |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1607 | zlog_warn ("Can't setsockopt IP_PKTINFO : %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1608 | return ret; |
| 1609 | } |
| 1610 | |
| 1611 | /* Read RIP packet by recvmsg function. */ |
| 1612 | int |
| 1613 | rip_recvmsg (int sock, u_char *buf, int size, struct sockaddr_in *from, |
| 1614 | int *ifindex) |
| 1615 | { |
| 1616 | int ret; |
| 1617 | struct msghdr msg; |
| 1618 | struct iovec iov; |
| 1619 | struct cmsghdr *ptr; |
| 1620 | char adata[1024]; |
| 1621 | |
| 1622 | msg.msg_name = (void *) from; |
| 1623 | msg.msg_namelen = sizeof (struct sockaddr_in); |
| 1624 | msg.msg_iov = &iov; |
| 1625 | msg.msg_iovlen = 1; |
| 1626 | msg.msg_control = (void *) adata; |
| 1627 | msg.msg_controllen = sizeof adata; |
| 1628 | iov.iov_base = buf; |
| 1629 | iov.iov_len = size; |
| 1630 | |
| 1631 | ret = recvmsg (sock, &msg, 0); |
| 1632 | if (ret < 0) |
| 1633 | return ret; |
| 1634 | |
ajs | b99760a | 2005-01-04 16:24:43 +0000 | [diff] [blame^] | 1635 | for (ptr = ZCMSG_FIRSTHDR(&msg); ptr != NULL; ptr = CMSG_NXTHDR(&msg, ptr)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1636 | if (ptr->cmsg_level == IPPROTO_IP && ptr->cmsg_type == IP_PKTINFO) |
| 1637 | { |
| 1638 | struct in_pktinfo *pktinfo; |
| 1639 | int i; |
| 1640 | |
| 1641 | pktinfo = (struct in_pktinfo *) CMSG_DATA (ptr); |
| 1642 | i = pktinfo->ipi_ifindex; |
| 1643 | } |
| 1644 | return ret; |
| 1645 | } |
| 1646 | |
| 1647 | /* RIP packet read function. */ |
| 1648 | int |
| 1649 | rip_read_new (struct thread *t) |
| 1650 | { |
| 1651 | int ret; |
| 1652 | int sock; |
| 1653 | char buf[RIP_PACKET_MAXSIZ]; |
| 1654 | struct sockaddr_in from; |
| 1655 | unsigned int ifindex; |
| 1656 | |
| 1657 | /* Fetch socket then register myself. */ |
| 1658 | sock = THREAD_FD (t); |
| 1659 | rip_event (RIP_READ, sock); |
| 1660 | |
| 1661 | /* Read RIP packet. */ |
| 1662 | ret = rip_recvmsg (sock, buf, RIP_PACKET_MAXSIZ, &from, (int *)&ifindex); |
| 1663 | if (ret < 0) |
| 1664 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1665 | zlog_warn ("Can't read RIP packet: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1666 | return ret; |
| 1667 | } |
| 1668 | |
| 1669 | return ret; |
| 1670 | } |
| 1671 | #endif /* RIP_RECVMSG */ |
| 1672 | |
| 1673 | /* First entry point of RIP packet. */ |
| 1674 | int |
| 1675 | rip_read (struct thread *t) |
| 1676 | { |
| 1677 | int sock; |
| 1678 | int ret; |
| 1679 | int rtenum; |
| 1680 | union rip_buf rip_buf; |
| 1681 | struct rip_packet *packet; |
| 1682 | struct sockaddr_in from; |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 1683 | int len; |
| 1684 | socklen_t fromlen; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1685 | struct interface *ifp; |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1686 | struct connected *ifc; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1687 | struct rip_interface *ri; |
| 1688 | |
| 1689 | /* Fetch socket then register myself. */ |
| 1690 | sock = THREAD_FD (t); |
| 1691 | rip->t_read = NULL; |
| 1692 | |
| 1693 | /* Add myself to tne next event */ |
| 1694 | rip_event (RIP_READ, sock); |
| 1695 | |
| 1696 | /* RIPd manages only IPv4. */ |
| 1697 | memset (&from, 0, sizeof (struct sockaddr_in)); |
| 1698 | fromlen = sizeof (struct sockaddr_in); |
| 1699 | |
| 1700 | len = recvfrom (sock, (char *)&rip_buf.buf, sizeof (rip_buf.buf), 0, |
| 1701 | (struct sockaddr *) &from, &fromlen); |
| 1702 | if (len < 0) |
| 1703 | { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 1704 | zlog_info ("recvfrom failed: %s", safe_strerror (errno)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1705 | return len; |
| 1706 | } |
| 1707 | |
| 1708 | /* Check is this packet comming from myself? */ |
paul | 31a476c | 2003-09-29 19:54:53 +0000 | [diff] [blame] | 1709 | if (if_check_address (from.sin_addr)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1710 | { |
| 1711 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1712 | zlog_debug ("ignore packet comes from myself"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1713 | return -1; |
| 1714 | } |
| 1715 | |
| 1716 | /* Which interface is this packet comes from. */ |
| 1717 | ifp = if_lookup_address (from.sin_addr); |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1718 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1719 | /* RIP packet received */ |
| 1720 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1721 | zlog_debug ("RECV packet from %s port %d on %s", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1722 | inet_ntoa (from.sin_addr), ntohs (from.sin_port), |
| 1723 | ifp ? ifp->name : "unknown"); |
| 1724 | |
| 1725 | /* If this packet come from unknown interface, ignore it. */ |
| 1726 | if (ifp == NULL) |
| 1727 | { |
ajs | 766a0ca | 2004-12-15 14:55:51 +0000 | [diff] [blame] | 1728 | zlog_info ("rip_read: cannot find interface for packet from %s port %d", |
| 1729 | inet_ntoa(from.sin_addr), ntohs (from.sin_port)); |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1730 | return -1; |
| 1731 | } |
| 1732 | |
| 1733 | ifc = connected_lookup_address (ifp, from.sin_addr); |
| 1734 | |
| 1735 | if (ifc == NULL) |
| 1736 | { |
ajs | 766a0ca | 2004-12-15 14:55:51 +0000 | [diff] [blame] | 1737 | zlog_info ("rip_read: cannot find connected address for packet from %s " |
| 1738 | "port %d on interface %s", |
| 1739 | inet_ntoa(from.sin_addr), ntohs (from.sin_port), ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1740 | return -1; |
| 1741 | } |
| 1742 | |
| 1743 | /* Packet length check. */ |
| 1744 | if (len < RIP_PACKET_MINSIZ) |
| 1745 | { |
| 1746 | zlog_warn ("packet size %d is smaller than minimum size %d", |
| 1747 | len, RIP_PACKET_MINSIZ); |
| 1748 | rip_peer_bad_packet (&from); |
| 1749 | return len; |
| 1750 | } |
| 1751 | if (len > RIP_PACKET_MAXSIZ) |
| 1752 | { |
| 1753 | zlog_warn ("packet size %d is larger than max size %d", |
| 1754 | len, RIP_PACKET_MAXSIZ); |
| 1755 | rip_peer_bad_packet (&from); |
| 1756 | return len; |
| 1757 | } |
| 1758 | |
| 1759 | /* Packet alignment check. */ |
| 1760 | if ((len - RIP_PACKET_MINSIZ) % 20) |
| 1761 | { |
| 1762 | zlog_warn ("packet size %d is wrong for RIP packet alignment", len); |
| 1763 | rip_peer_bad_packet (&from); |
| 1764 | return len; |
| 1765 | } |
| 1766 | |
| 1767 | /* Set RTE number. */ |
| 1768 | rtenum = ((len - RIP_PACKET_MINSIZ) / 20); |
| 1769 | |
| 1770 | /* For easy to handle. */ |
| 1771 | packet = &rip_buf.rip_packet; |
| 1772 | |
| 1773 | /* RIP version check. */ |
| 1774 | if (packet->version == 0) |
| 1775 | { |
| 1776 | zlog_info ("version 0 with command %d received.", packet->command); |
| 1777 | rip_peer_bad_packet (&from); |
| 1778 | return -1; |
| 1779 | } |
| 1780 | |
| 1781 | /* Dump RIP packet. */ |
| 1782 | if (IS_RIP_DEBUG_RECV) |
| 1783 | rip_packet_dump (packet, len, "RECV"); |
| 1784 | |
| 1785 | /* RIP version adjust. This code should rethink now. RFC1058 says |
| 1786 | that "Version 1 implementations are to ignore this extra data and |
| 1787 | process only the fields specified in this document.". So RIPv3 |
| 1788 | packet should be treated as RIPv1 ignoring must be zero field. */ |
| 1789 | if (packet->version > RIPv2) |
| 1790 | packet->version = RIPv2; |
| 1791 | |
| 1792 | /* Is RIP running or is this RIP neighbor ?*/ |
| 1793 | ri = ifp->info; |
| 1794 | if (! ri->running && ! rip_neighbor_lookup (&from)) |
| 1795 | { |
| 1796 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1797 | zlog_debug ("RIP is not enabled on interface %s.", ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1798 | rip_peer_bad_packet (&from); |
| 1799 | return -1; |
| 1800 | } |
| 1801 | |
| 1802 | /* RIP Version check. */ |
| 1803 | if (packet->command == RIP_RESPONSE) |
| 1804 | { |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 1805 | int vrecv = ((ri->ri_receive == RI_RIP_UNSPEC) ? |
| 1806 | rip->version_recv : ri->ri_receive); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1807 | if (packet->version == RIPv1) |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 1808 | if (! (vrecv & RIPv1)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1809 | { |
| 1810 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1811 | zlog_debug (" packet's v%d doesn't fit to if version spec", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1812 | packet->version); |
| 1813 | rip_peer_bad_packet (&from); |
| 1814 | return -1; |
| 1815 | } |
| 1816 | if (packet->version == RIPv2) |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 1817 | if (! (vrecv & RIPv2)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1818 | { |
| 1819 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1820 | zlog_debug (" packet's v%d doesn't fit to if version spec", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1821 | packet->version); |
| 1822 | rip_peer_bad_packet (&from); |
| 1823 | return -1; |
| 1824 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1825 | } |
| 1826 | |
| 1827 | /* RFC2453 5.2 If the router is not configured to authenticate RIP-2 |
| 1828 | messages, then RIP-1 and unauthenticated RIP-2 messages will be |
| 1829 | accepted; authenticated RIP-2 messages shall be discarded. */ |
| 1830 | |
| 1831 | if ((ri->auth_type == RIP_NO_AUTH) |
| 1832 | && rtenum |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1833 | && (packet->version == RIPv2) |
| 1834 | && (packet->rte->family == htons(RIP_FAMILY_AUTH))) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1835 | { |
| 1836 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1837 | zlog_debug ("packet RIPv%d is dropped because authentication disabled", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1838 | packet->version); |
| 1839 | rip_peer_bad_packet (&from); |
| 1840 | return -1; |
| 1841 | } |
| 1842 | |
| 1843 | /* If the router is configured to authenticate RIP-2 messages, then |
| 1844 | RIP-1 messages and RIP-2 messages which pass authentication |
| 1845 | testing shall be accepted; unauthenticated and failed |
| 1846 | authentication RIP-2 messages shall be discarded. For maximum |
| 1847 | security, RIP-1 messages should be ignored when authentication is |
| 1848 | in use (see section 4.1); otherwise, the routing information from |
| 1849 | authenticated messages will be propagated by RIP-1 routers in an |
| 1850 | unauthenticated manner. */ |
| 1851 | |
| 1852 | if ((ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1853 | || ri->auth_type == RIP_AUTH_MD5) && rtenum) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1854 | { |
| 1855 | /* We follow maximum security. */ |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1856 | if (packet->version == RIPv1 |
| 1857 | && packet->rte->family == htons(RIP_FAMILY_AUTH)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1858 | { |
| 1859 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1860 | zlog_debug |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1861 | ("packet RIPv%d is dropped because authentication enabled", |
| 1862 | packet->version); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1863 | rip_peer_bad_packet (&from); |
| 1864 | return -1; |
| 1865 | } |
| 1866 | |
| 1867 | /* Check RIPv2 authentication. */ |
| 1868 | if (packet->version == RIPv2) |
| 1869 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1870 | if (packet->rte->family == htons(RIP_FAMILY_AUTH)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1871 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1872 | if (packet->rte->tag == htons(RIP_AUTH_SIMPLE_PASSWORD)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1873 | { |
| 1874 | ret = rip_auth_simple_password (packet->rte, &from, ifp); |
| 1875 | if (! ret) |
| 1876 | { |
| 1877 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1878 | zlog_debug |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1879 | ("RIPv2 simple password authentication failed"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1880 | rip_peer_bad_packet (&from); |
| 1881 | return -1; |
| 1882 | } |
| 1883 | else |
| 1884 | { |
| 1885 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1886 | zlog_debug |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1887 | ("RIPv2 simple password authentication success"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1888 | } |
| 1889 | } |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1890 | else if (packet->rte->tag == htons(RIP_AUTH_MD5)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1891 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1892 | ret = rip_auth_md5 (packet, &from, len, ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1893 | if (! ret) |
| 1894 | { |
| 1895 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1896 | zlog_debug ("RIPv2 MD5 authentication failed"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1897 | rip_peer_bad_packet (&from); |
| 1898 | return -1; |
| 1899 | } |
| 1900 | else |
| 1901 | { |
| 1902 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1903 | zlog_debug ("RIPv2 MD5 authentication success"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1904 | } |
| 1905 | /* Reset RIP packet length to trim MD5 data. */ |
| 1906 | len = ret; |
| 1907 | } |
| 1908 | else |
| 1909 | { |
| 1910 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1911 | zlog_debug ("Unknown authentication type %d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1912 | ntohs (packet->rte->tag)); |
| 1913 | rip_peer_bad_packet (&from); |
| 1914 | return -1; |
| 1915 | } |
| 1916 | } |
| 1917 | else |
| 1918 | { |
| 1919 | /* There is no authentication in the packet. */ |
| 1920 | if (ri->auth_str || ri->key_chain) |
| 1921 | { |
| 1922 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 1923 | zlog_debug |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 1924 | ("RIPv2 authentication failed: no authentication in packet"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1925 | rip_peer_bad_packet (&from); |
| 1926 | return -1; |
| 1927 | } |
| 1928 | } |
| 1929 | } |
| 1930 | } |
| 1931 | |
| 1932 | /* Process each command. */ |
| 1933 | switch (packet->command) |
| 1934 | { |
| 1935 | case RIP_RESPONSE: |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1936 | rip_response_process (packet, len, &from, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1937 | break; |
| 1938 | case RIP_REQUEST: |
| 1939 | case RIP_POLL: |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 1940 | rip_request_process (packet, len, &from, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1941 | break; |
| 1942 | case RIP_TRACEON: |
| 1943 | case RIP_TRACEOFF: |
| 1944 | zlog_info ("Obsolete command %s received, please sent it to routed", |
| 1945 | lookup (rip_msg, packet->command)); |
| 1946 | rip_peer_bad_packet (&from); |
| 1947 | break; |
| 1948 | case RIP_POLL_ENTRY: |
| 1949 | zlog_info ("Obsolete command %s received", |
| 1950 | lookup (rip_msg, packet->command)); |
| 1951 | rip_peer_bad_packet (&from); |
| 1952 | break; |
| 1953 | default: |
| 1954 | zlog_info ("Unknown RIP command %d received", packet->command); |
| 1955 | rip_peer_bad_packet (&from); |
| 1956 | break; |
| 1957 | } |
| 1958 | |
| 1959 | return len; |
| 1960 | } |
| 1961 | |
| 1962 | /* Make socket for RIP protocol. */ |
| 1963 | int |
| 1964 | rip_create_socket () |
| 1965 | { |
| 1966 | int ret; |
| 1967 | int sock; |
| 1968 | struct sockaddr_in addr; |
| 1969 | struct servent *sp; |
| 1970 | |
| 1971 | memset (&addr, 0, sizeof (struct sockaddr_in)); |
| 1972 | |
| 1973 | /* Set RIP port. */ |
| 1974 | sp = getservbyname ("router", "udp"); |
| 1975 | if (sp) |
| 1976 | addr.sin_port = sp->s_port; |
| 1977 | else |
| 1978 | addr.sin_port = htons (RIP_PORT_DEFAULT); |
| 1979 | |
| 1980 | /* Address shoud be any address. */ |
| 1981 | addr.sin_family = AF_INET; |
| 1982 | addr.sin_addr.s_addr = INADDR_ANY; |
| 1983 | |
| 1984 | /* Make datagram socket. */ |
| 1985 | sock = socket (AF_INET, SOCK_DGRAM, 0); |
| 1986 | if (sock < 0) |
| 1987 | { |
| 1988 | perror ("socket"); |
| 1989 | exit (1); |
| 1990 | } |
| 1991 | |
| 1992 | sockopt_broadcast (sock); |
| 1993 | sockopt_reuseaddr (sock); |
| 1994 | sockopt_reuseport (sock); |
paul | 0b3acf4 | 2004-09-17 08:39:08 +0000 | [diff] [blame] | 1995 | setsockopt_so_recvbuf (sock, RIP_UDP_RCV_BUF); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 1996 | #ifdef RIP_RECVMSG |
| 1997 | setsockopt_pktinfo (sock); |
| 1998 | #endif /* RIP_RECVMSG */ |
| 1999 | |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 2000 | if (ripd_privs.change (ZPRIVS_RAISE)) |
| 2001 | zlog_err ("rip_create_socket: could not raise privs"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2002 | ret = bind (sock, (struct sockaddr *) & addr, sizeof (addr)); |
| 2003 | if (ret < 0) |
| 2004 | { |
| 2005 | perror ("bind"); |
paul | d62262a | 2003-11-17 09:08:45 +0000 | [diff] [blame] | 2006 | if (ripd_privs.change (ZPRIVS_LOWER)) |
| 2007 | zlog_err ("rip_create_socket: could not lower privs"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2008 | return ret; |
| 2009 | } |
paul | edd7c24 | 2003-06-04 13:59:38 +0000 | [diff] [blame] | 2010 | if (ripd_privs.change (ZPRIVS_LOWER)) |
| 2011 | zlog_err ("rip_create_socket: could not lower privs"); |
| 2012 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2013 | return sock; |
| 2014 | } |
| 2015 | |
| 2016 | /* Write routing table entry to the stream and return next index of |
| 2017 | the routing table entry in the stream. */ |
| 2018 | int |
| 2019 | rip_write_rte (int num, struct stream *s, struct prefix_ipv4 *p, |
| 2020 | u_char version, struct rip_info *rinfo, struct interface *ifp) |
| 2021 | { |
| 2022 | struct in_addr mask; |
| 2023 | struct rip_interface *ri; |
| 2024 | |
| 2025 | /* RIP packet header. */ |
| 2026 | if (num == 0) |
| 2027 | { |
| 2028 | stream_putc (s, RIP_RESPONSE); |
| 2029 | stream_putc (s, version); |
| 2030 | stream_putw (s, 0); |
| 2031 | |
| 2032 | /* In case of we need RIPv2 authentication. */ |
| 2033 | if (version == RIPv2 && ifp) |
| 2034 | { |
| 2035 | ri = ifp->info; |
| 2036 | |
| 2037 | if (ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD) |
| 2038 | { |
| 2039 | if (ri->auth_str) |
| 2040 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 2041 | stream_putw (s, RIP_FAMILY_AUTH); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2042 | stream_putw (s, RIP_AUTH_SIMPLE_PASSWORD); |
| 2043 | |
| 2044 | memset ((s->data + s->putp), 0, 16); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 2045 | strncpy ((char *)(s->data + s->putp), ri->auth_str, 16); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2046 | stream_set_putp (s, s->putp + 16); |
| 2047 | |
| 2048 | num++; |
| 2049 | } |
| 2050 | if (ri->key_chain) |
| 2051 | { |
| 2052 | struct keychain *keychain; |
| 2053 | struct key *key; |
| 2054 | |
| 2055 | keychain = keychain_lookup (ri->key_chain); |
| 2056 | |
| 2057 | if (keychain) |
| 2058 | { |
| 2059 | key = key_lookup_for_send (keychain); |
| 2060 | |
| 2061 | if (key) |
| 2062 | { |
paul | ca5e516 | 2004-06-06 22:06:33 +0000 | [diff] [blame] | 2063 | stream_putw (s, RIP_FAMILY_AUTH); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2064 | stream_putw (s, RIP_AUTH_SIMPLE_PASSWORD); |
| 2065 | |
| 2066 | memset ((s->data + s->putp), 0, 16); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 2067 | strncpy ((char *)(s->data + s->putp), |
| 2068 | key->string, 16); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2069 | stream_set_putp (s, s->putp + 16); |
| 2070 | |
| 2071 | num++; |
| 2072 | } |
| 2073 | } |
| 2074 | } |
| 2075 | } |
| 2076 | } |
| 2077 | } |
| 2078 | |
| 2079 | /* Write routing table entry. */ |
| 2080 | if (version == RIPv1) |
| 2081 | { |
| 2082 | stream_putw (s, AF_INET); |
| 2083 | stream_putw (s, 0); |
| 2084 | stream_put_ipv4 (s, p->prefix.s_addr); |
| 2085 | stream_put_ipv4 (s, 0); |
| 2086 | stream_put_ipv4 (s, 0); |
| 2087 | stream_putl (s, rinfo->metric_out); |
| 2088 | } |
| 2089 | else |
| 2090 | { |
| 2091 | masklen2ip (p->prefixlen, &mask); |
| 2092 | |
| 2093 | stream_putw (s, AF_INET); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2094 | stream_putw (s, rinfo->tag_out); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2095 | stream_put_ipv4 (s, p->prefix.s_addr); |
| 2096 | stream_put_ipv4 (s, mask.s_addr); |
| 2097 | stream_put_ipv4 (s, rinfo->nexthop_out.s_addr); |
| 2098 | stream_putl (s, rinfo->metric_out); |
| 2099 | } |
| 2100 | |
| 2101 | return ++num; |
| 2102 | } |
| 2103 | |
| 2104 | /* Send update to the ifp or spcified neighbor. */ |
| 2105 | void |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2106 | rip_output_process (struct connected *ifc, struct sockaddr_in *to, |
| 2107 | int route_type, u_char version) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2108 | { |
| 2109 | int ret; |
| 2110 | struct stream *s; |
| 2111 | struct route_node *rp; |
| 2112 | struct rip_info *rinfo; |
| 2113 | struct rip_interface *ri; |
| 2114 | struct prefix_ipv4 *p; |
| 2115 | struct prefix_ipv4 classfull; |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2116 | struct prefix_ipv4 ifaddrclass; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2117 | int num; |
| 2118 | int rtemax; |
paul | 01d0908 | 2003-06-08 21:22:18 +0000 | [diff] [blame] | 2119 | int subnetted = 0; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2120 | |
| 2121 | /* Logging output event. */ |
| 2122 | if (IS_RIP_DEBUG_EVENT) |
| 2123 | { |
| 2124 | if (to) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2125 | zlog_debug ("update routes to neighbor %s", inet_ntoa (to->sin_addr)); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2126 | else |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2127 | zlog_debug ("update routes on interface %s ifindex %d", |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2128 | ifc->ifp->name, ifc->ifp->ifindex); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2129 | } |
| 2130 | |
| 2131 | /* Set output stream. */ |
| 2132 | s = rip->obuf; |
| 2133 | |
| 2134 | /* Reset stream and RTE counter. */ |
| 2135 | stream_reset (s); |
| 2136 | num = 0; |
| 2137 | rtemax = (RIP_PACKET_MAXSIZ - 4) / 20; |
| 2138 | |
| 2139 | /* Get RIP interface. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2140 | ri = ifc->ifp->info; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2141 | |
| 2142 | /* If output interface is in simple password authentication mode, we |
| 2143 | need space for authentication data. */ |
| 2144 | if (ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD) |
| 2145 | rtemax -= 1; |
| 2146 | |
| 2147 | /* If output interface is in MD5 authentication mode, we need space |
| 2148 | for authentication header and data. */ |
| 2149 | if (ri->auth_type == RIP_AUTH_MD5) |
| 2150 | rtemax -= 2; |
| 2151 | |
| 2152 | /* If output interface is in simple password authentication mode |
| 2153 | and string or keychain is specified we need space for auth. data */ |
| 2154 | if (ri->auth_type == RIP_AUTH_SIMPLE_PASSWORD) |
| 2155 | { |
| 2156 | if (ri->key_chain) |
| 2157 | { |
| 2158 | struct keychain *keychain; |
| 2159 | |
| 2160 | keychain = keychain_lookup (ri->key_chain); |
| 2161 | if (keychain) |
| 2162 | if (key_lookup_for_send (keychain)) |
| 2163 | rtemax -=1; |
| 2164 | } |
| 2165 | else |
| 2166 | if (ri->auth_str) |
| 2167 | rtemax -=1; |
| 2168 | } |
| 2169 | |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2170 | if (version == RIPv1) |
| 2171 | { |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2172 | memcpy (&ifaddrclass, ifc->address, sizeof (struct prefix_ipv4)); |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2173 | apply_classful_mask_ipv4 (&ifaddrclass); |
| 2174 | subnetted = 0; |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2175 | if (ifc->address->prefixlen > ifaddrclass.prefixlen) |
paul | 01d0908 | 2003-06-08 21:22:18 +0000 | [diff] [blame] | 2176 | subnetted = 1; |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2177 | } |
| 2178 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2179 | for (rp = route_top (rip->table); rp; rp = route_next (rp)) |
| 2180 | if ((rinfo = rp->info) != NULL) |
| 2181 | { |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2182 | /* For RIPv1, if we are subnetted, output subnets in our network */ |
| 2183 | /* that have the same mask as the output "interface". For other */ |
| 2184 | /* networks, only the classfull version is output. */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2185 | |
| 2186 | if (version == RIPv1) |
| 2187 | { |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2188 | p = (struct prefix_ipv4 *) &rp->p; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2189 | |
| 2190 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2191 | zlog_debug("RIPv1 mask check, %s/%d considered for output", |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2192 | inet_ntoa (rp->p.u.prefix4), rp->p.prefixlen); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2193 | |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2194 | if (subnetted && |
| 2195 | prefix_match ((struct prefix *) &ifaddrclass, &rp->p)) |
| 2196 | { |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2197 | if ((ifc->address->prefixlen != rp->p.prefixlen) && |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2198 | (rp->p.prefixlen != 32)) |
| 2199 | continue; |
| 2200 | } |
| 2201 | else |
| 2202 | { |
| 2203 | memcpy (&classfull, &rp->p, sizeof(struct prefix_ipv4)); |
| 2204 | apply_classful_mask_ipv4(&classfull); |
| 2205 | if (rp->p.u.prefix4.s_addr != 0 && |
| 2206 | classfull.prefixlen != rp->p.prefixlen) |
| 2207 | continue; |
| 2208 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2209 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2210 | zlog_debug("RIPv1 mask check, %s/%d made it through", |
paul | 727d104 | 2002-12-13 20:50:29 +0000 | [diff] [blame] | 2211 | inet_ntoa (rp->p.u.prefix4), rp->p.prefixlen); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2212 | } |
| 2213 | else |
| 2214 | p = (struct prefix_ipv4 *) &rp->p; |
| 2215 | |
| 2216 | /* Apply output filters. */ |
| 2217 | ret = rip_outgoing_filter (p, ri); |
| 2218 | if (ret < 0) |
| 2219 | continue; |
| 2220 | |
| 2221 | /* Changed route only output. */ |
| 2222 | if (route_type == rip_changed_route && |
| 2223 | (! (rinfo->flags & RIP_RTF_CHANGED))) |
| 2224 | continue; |
| 2225 | |
| 2226 | /* Split horizon. */ |
| 2227 | /* if (split_horizon == rip_split_horizon) */ |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2228 | if (ri->split_horizon == RIP_SPLIT_HORIZON) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2229 | { |
paul | 42d14d9 | 2003-11-17 09:15:18 +0000 | [diff] [blame] | 2230 | /* |
| 2231 | * We perform split horizon for RIP and connected route. |
| 2232 | * For rip routes, we want to suppress the route if we would |
| 2233 | * end up sending the route back on the interface that we |
| 2234 | * learned it from, with a higher metric. For connected routes, |
| 2235 | * we suppress the route if the prefix is a subset of the |
| 2236 | * source address that we are going to use for the packet |
| 2237 | * (in order to handle the case when multiple subnets are |
| 2238 | * configured on the same interface). |
| 2239 | */ |
| 2240 | if (rinfo->type == ZEBRA_ROUTE_RIP && |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2241 | rinfo->ifindex == ifc->ifp->ifindex) |
paul | 42d14d9 | 2003-11-17 09:15:18 +0000 | [diff] [blame] | 2242 | continue; |
| 2243 | if (rinfo->type == ZEBRA_ROUTE_CONNECT && |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2244 | prefix_match((struct prefix *)p, ifc->address)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2245 | continue; |
| 2246 | } |
| 2247 | |
| 2248 | /* Preparation for route-map. */ |
| 2249 | rinfo->metric_set = 0; |
| 2250 | rinfo->nexthop_out.s_addr = 0; |
| 2251 | rinfo->metric_out = rinfo->metric; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2252 | rinfo->tag_out = rinfo->tag; |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2253 | rinfo->ifindex_out = ifc->ifp->ifindex; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2254 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2255 | /* In order to avoid some local loops, |
| 2256 | * if the RIP route has a nexthop via this interface, keep the nexthop, |
| 2257 | * otherwise set it to 0. The nexthop should not be propagated |
| 2258 | * beyond the local broadcast/multicast area in order |
| 2259 | * to avoid an IGP multi-level recursive look-up. |
| 2260 | * see (4.4) |
| 2261 | */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2262 | if (rinfo->ifindex == ifc->ifp->ifindex) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2263 | rinfo->nexthop_out = rinfo->nexthop; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2264 | |
| 2265 | /* Interface route-map */ |
| 2266 | if (ri->routemap[RIP_FILTER_OUT]) |
| 2267 | { |
| 2268 | ret = route_map_apply (ri->routemap[RIP_FILTER_OUT], |
| 2269 | (struct prefix *) p, RMAP_RIP, |
| 2270 | rinfo); |
| 2271 | |
| 2272 | if (ret == RMAP_DENYMATCH) |
| 2273 | { |
| 2274 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2275 | zlog_debug ("RIP %s/%d is filtered by route-map out", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2276 | inet_ntoa (p->prefix), p->prefixlen); |
| 2277 | continue; |
| 2278 | } |
| 2279 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2280 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2281 | /* Apply redistribute route map - continue, if deny */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2282 | if (rip->route_map[rinfo->type].name |
| 2283 | && rinfo->sub_type != RIP_ROUTE_INTERFACE) |
| 2284 | { |
| 2285 | ret = route_map_apply (rip->route_map[rinfo->type].map, |
| 2286 | (struct prefix *)p, RMAP_RIP, rinfo); |
| 2287 | |
| 2288 | if (ret == RMAP_DENYMATCH) |
| 2289 | { |
| 2290 | if (IS_RIP_DEBUG_PACKET) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2291 | zlog_debug ("%s/%d is filtered by route-map", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2292 | inet_ntoa (p->prefix), p->prefixlen); |
| 2293 | continue; |
| 2294 | } |
| 2295 | } |
| 2296 | |
| 2297 | /* When route-map does not set metric. */ |
| 2298 | if (! rinfo->metric_set) |
| 2299 | { |
| 2300 | /* If redistribute metric is set. */ |
| 2301 | if (rip->route_map[rinfo->type].metric_config |
| 2302 | && rinfo->metric != RIP_METRIC_INFINITY) |
| 2303 | { |
| 2304 | rinfo->metric_out = rip->route_map[rinfo->type].metric; |
| 2305 | } |
| 2306 | else |
| 2307 | { |
| 2308 | /* If the route is not connected or localy generated |
| 2309 | one, use default-metric value*/ |
| 2310 | if (rinfo->type != ZEBRA_ROUTE_RIP |
| 2311 | && rinfo->type != ZEBRA_ROUTE_CONNECT |
| 2312 | && rinfo->metric != RIP_METRIC_INFINITY) |
| 2313 | rinfo->metric_out = rip->default_metric; |
| 2314 | } |
| 2315 | } |
| 2316 | |
| 2317 | /* Apply offset-list */ |
| 2318 | if (rinfo->metric != RIP_METRIC_INFINITY) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2319 | rip_offset_list_apply_out (p, ifc->ifp, &rinfo->metric_out); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2320 | |
| 2321 | if (rinfo->metric_out > RIP_METRIC_INFINITY) |
| 2322 | rinfo->metric_out = RIP_METRIC_INFINITY; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2323 | |
| 2324 | /* Perform split-horizon with poisoned reverse |
| 2325 | * for RIP and connected routes. |
| 2326 | **/ |
| 2327 | if (ri->split_horizon == RIP_SPLIT_HORIZON_POISONED_REVERSE) { |
paul | 42d14d9 | 2003-11-17 09:15:18 +0000 | [diff] [blame] | 2328 | /* |
| 2329 | * We perform split horizon for RIP and connected route. |
| 2330 | * For rip routes, we want to suppress the route if we would |
| 2331 | * end up sending the route back on the interface that we |
| 2332 | * learned it from, with a higher metric. For connected routes, |
| 2333 | * we suppress the route if the prefix is a subset of the |
| 2334 | * source address that we are going to use for the packet |
| 2335 | * (in order to handle the case when multiple subnets are |
| 2336 | * configured on the same interface). |
| 2337 | */ |
| 2338 | if (rinfo->type == ZEBRA_ROUTE_RIP && |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2339 | rinfo->ifindex == ifc->ifp->ifindex) |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2340 | rinfo->metric_out = RIP_METRIC_INFINITY; |
paul | 42d14d9 | 2003-11-17 09:15:18 +0000 | [diff] [blame] | 2341 | if (rinfo->type == ZEBRA_ROUTE_CONNECT && |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2342 | prefix_match((struct prefix *)p, ifc->address)) |
paul | 42d14d9 | 2003-11-17 09:15:18 +0000 | [diff] [blame] | 2343 | rinfo->metric_out = RIP_METRIC_INFINITY; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2344 | } |
| 2345 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2346 | /* Write RTE to the stream. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2347 | num = rip_write_rte (num, s, p, version, rinfo, to ? NULL : ifc->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2348 | if (num == rtemax) |
| 2349 | { |
| 2350 | if (version == RIPv2 && ri->auth_type == RIP_AUTH_MD5) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2351 | rip_auth_md5_set (s, ifc->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2352 | |
| 2353 | ret = rip_send_packet (STREAM_DATA (s), stream_get_endp (s), |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2354 | to, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2355 | |
| 2356 | if (ret >= 0 && IS_RIP_DEBUG_SEND) |
| 2357 | rip_packet_dump ((struct rip_packet *)STREAM_DATA (s), |
| 2358 | stream_get_endp(s), "SEND"); |
| 2359 | num = 0; |
| 2360 | stream_reset (s); |
| 2361 | } |
| 2362 | } |
| 2363 | |
| 2364 | /* Flush unwritten RTE. */ |
| 2365 | if (num != 0) |
| 2366 | { |
| 2367 | if (version == RIPv2 && ri->auth_type == RIP_AUTH_MD5) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2368 | rip_auth_md5_set (s, ifc->ifp); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2369 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2370 | ret = rip_send_packet (STREAM_DATA (s), stream_get_endp (s), to, ifc); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2371 | |
| 2372 | if (ret >= 0 && IS_RIP_DEBUG_SEND) |
| 2373 | rip_packet_dump ((struct rip_packet *)STREAM_DATA (s), |
| 2374 | stream_get_endp (s), "SEND"); |
| 2375 | num = 0; |
| 2376 | stream_reset (s); |
| 2377 | } |
| 2378 | |
| 2379 | /* Statistics updates. */ |
| 2380 | ri->sent_updates++; |
| 2381 | } |
| 2382 | |
| 2383 | /* Send RIP packet to the interface. */ |
| 2384 | void |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2385 | rip_update_interface (struct connected *ifc, u_char version, int route_type) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2386 | { |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2387 | struct sockaddr_in to; |
| 2388 | |
| 2389 | /* When RIP version is 2 and multicast enable interface. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2390 | if (version == RIPv2 && if_is_multicast (ifc->ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2391 | { |
| 2392 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2393 | zlog_debug ("multicast announce on %s ", ifc->ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2394 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2395 | rip_output_process (ifc, NULL, route_type, version); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2396 | return; |
| 2397 | } |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2398 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2399 | /* If we can't send multicast packet, send it with unicast. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2400 | if (if_is_broadcast (ifc->ifp) || if_is_pointopoint (ifc->ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2401 | { |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2402 | if (ifc->address->family == AF_INET) |
| 2403 | { |
| 2404 | /* Destination address and port setting. */ |
| 2405 | memset (&to, 0, sizeof (struct sockaddr_in)); |
| 2406 | if (ifc->destination) |
| 2407 | /* use specified broadcast or point-to-point destination addr */ |
| 2408 | to.sin_addr = ifc->destination->u.prefix4; |
| 2409 | else |
| 2410 | /* calculate the appropriate broadcast address */ |
| 2411 | to.sin_addr.s_addr = |
| 2412 | ipv4_broadcast_addr(ifc->address->u.prefix4.s_addr, |
| 2413 | ifc->address->prefixlen); |
| 2414 | to.sin_port = htons (RIP_PORT_DEFAULT); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2415 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2416 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2417 | zlog_debug ("%s announce to %s on %s", |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2418 | if_is_pointopoint (ifc->ifp) ? "unicast" : "broadcast", |
| 2419 | inet_ntoa (to.sin_addr), ifc->ifp->name); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2420 | |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2421 | rip_output_process (ifc, &to, route_type, version); |
| 2422 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2423 | } |
| 2424 | } |
| 2425 | |
| 2426 | /* Update send to all interface and neighbor. */ |
| 2427 | void |
| 2428 | rip_update_process (int route_type) |
| 2429 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 2430 | struct listnode *node, *ifnode; |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 2431 | struct connected *connected; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2432 | struct interface *ifp; |
| 2433 | struct rip_interface *ri; |
| 2434 | struct route_node *rp; |
| 2435 | struct sockaddr_in to; |
| 2436 | struct prefix_ipv4 *p; |
| 2437 | |
| 2438 | /* Send RIP update to each interface. */ |
| 2439 | for (node = listhead (iflist); node; nextnode (node)) |
| 2440 | { |
| 2441 | ifp = getdata (node); |
| 2442 | |
| 2443 | if (if_is_loopback (ifp)) |
| 2444 | continue; |
| 2445 | |
paul | 2e3b2e4 | 2002-12-13 21:03:13 +0000 | [diff] [blame] | 2446 | if (! if_is_operative (ifp)) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2447 | continue; |
| 2448 | |
| 2449 | /* Fetch RIP interface information. */ |
| 2450 | ri = ifp->info; |
| 2451 | |
| 2452 | /* When passive interface is specified, suppress announce to the |
| 2453 | interface. */ |
| 2454 | if (ri->passive) |
| 2455 | continue; |
| 2456 | |
| 2457 | if (ri->running) |
| 2458 | { |
| 2459 | if (IS_RIP_DEBUG_EVENT) |
| 2460 | { |
| 2461 | if (ifp->name) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2462 | zlog_debug ("SEND UPDATE to %s ifindex %d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2463 | ifp->name, ifp->ifindex); |
| 2464 | else |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2465 | zlog_debug ("SEND UPDATE to _unknown_ ifindex %d", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2466 | ifp->ifindex); |
| 2467 | } |
| 2468 | |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 2469 | /* send update on each connected network */ |
| 2470 | |
| 2471 | LIST_LOOP(ifp->connected, connected, ifnode) |
| 2472 | { |
| 2473 | struct prefix_ipv4 *ifaddr; |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2474 | int done = 0; |
| 2475 | /* |
| 2476 | * If there is no version configuration in the interface, |
| 2477 | * use rip's version setting. |
| 2478 | */ |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 2479 | int vsend = ((ri->ri_send == RI_RIP_UNSPEC) ? |
| 2480 | rip->version_send : ri->ri_send); |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 2481 | |
| 2482 | ifaddr = (struct prefix_ipv4 *) connected->address; |
| 2483 | |
| 2484 | if (ifaddr->family != AF_INET) |
| 2485 | continue; |
| 2486 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2487 | if ((vsend & RIPv1) && !done) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2488 | rip_update_interface (connected, RIPv1, route_type); |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2489 | if ((vsend & RIPv2) && if_is_multicast(ifp)) |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2490 | rip_update_interface (connected, RIPv2, route_type); |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2491 | done = 1; |
| 2492 | if (!(vsend & RIPv2) || !if_is_multicast(ifp)) |
| 2493 | break; |
| 2494 | |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 2495 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2496 | } |
| 2497 | } |
| 2498 | |
| 2499 | /* RIP send updates to each neighbor. */ |
| 2500 | for (rp = route_top (rip->neighbor); rp; rp = route_next (rp)) |
| 2501 | if (rp->info != NULL) |
| 2502 | { |
| 2503 | p = (struct prefix_ipv4 *) &rp->p; |
| 2504 | |
| 2505 | ifp = if_lookup_address (p->prefix); |
| 2506 | if (! ifp) |
| 2507 | { |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2508 | zlog_warn ("Neighbor %s doesnt have connected interface!", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2509 | inet_ntoa (p->prefix)); |
| 2510 | continue; |
| 2511 | } |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2512 | |
| 2513 | if ( (connected = connected_lookup_address (ifp, p->prefix)) == NULL) |
| 2514 | { |
| 2515 | zlog_warn ("Neighbor %s doesnt have connected network", |
| 2516 | inet_ntoa (p->prefix)); |
| 2517 | continue; |
| 2518 | } |
| 2519 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2520 | /* Set destination address and port */ |
| 2521 | memset (&to, 0, sizeof (struct sockaddr_in)); |
| 2522 | to.sin_addr = p->prefix; |
| 2523 | to.sin_port = htons (RIP_PORT_DEFAULT); |
| 2524 | |
| 2525 | /* RIP version is rip's configuration. */ |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2526 | rip_output_process (connected, &to, route_type, rip->version_send); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2527 | } |
| 2528 | } |
| 2529 | |
| 2530 | /* RIP's periodical timer. */ |
| 2531 | int |
| 2532 | rip_update (struct thread *t) |
| 2533 | { |
| 2534 | /* Clear timer pointer. */ |
| 2535 | rip->t_update = NULL; |
| 2536 | |
| 2537 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2538 | zlog_debug ("update timer fire!"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2539 | |
| 2540 | /* Process update output. */ |
| 2541 | rip_update_process (rip_all_route); |
| 2542 | |
| 2543 | /* Triggered updates may be suppressed if a regular update is due by |
| 2544 | the time the triggered update would be sent. */ |
| 2545 | if (rip->t_triggered_interval) |
| 2546 | { |
| 2547 | thread_cancel (rip->t_triggered_interval); |
| 2548 | rip->t_triggered_interval = NULL; |
| 2549 | } |
| 2550 | rip->trigger = 0; |
| 2551 | |
| 2552 | /* Register myself. */ |
| 2553 | rip_event (RIP_UPDATE_EVENT, 0); |
| 2554 | |
| 2555 | return 0; |
| 2556 | } |
| 2557 | |
| 2558 | /* Walk down the RIP routing table then clear changed flag. */ |
| 2559 | void |
| 2560 | rip_clear_changed_flag () |
| 2561 | { |
| 2562 | struct route_node *rp; |
| 2563 | struct rip_info *rinfo; |
| 2564 | |
| 2565 | for (rp = route_top (rip->table); rp; rp = route_next (rp)) |
| 2566 | if ((rinfo = rp->info) != NULL) |
| 2567 | if (rinfo->flags & RIP_RTF_CHANGED) |
| 2568 | rinfo->flags &= ~RIP_RTF_CHANGED; |
| 2569 | } |
| 2570 | |
| 2571 | /* Triggered update interval timer. */ |
| 2572 | int |
| 2573 | rip_triggered_interval (struct thread *t) |
| 2574 | { |
| 2575 | int rip_triggered_update (struct thread *); |
| 2576 | |
| 2577 | rip->t_triggered_interval = NULL; |
| 2578 | |
| 2579 | if (rip->trigger) |
| 2580 | { |
| 2581 | rip->trigger = 0; |
| 2582 | rip_triggered_update (t); |
| 2583 | } |
| 2584 | return 0; |
| 2585 | } |
| 2586 | |
| 2587 | /* Execute triggered update. */ |
| 2588 | int |
| 2589 | rip_triggered_update (struct thread *t) |
| 2590 | { |
| 2591 | int interval; |
| 2592 | |
| 2593 | /* Clear thred pointer. */ |
| 2594 | rip->t_triggered_update = NULL; |
| 2595 | |
| 2596 | /* Cancel interval timer. */ |
| 2597 | if (rip->t_triggered_interval) |
| 2598 | { |
| 2599 | thread_cancel (rip->t_triggered_interval); |
| 2600 | rip->t_triggered_interval = NULL; |
| 2601 | } |
| 2602 | rip->trigger = 0; |
| 2603 | |
| 2604 | /* Logging triggered update. */ |
| 2605 | if (IS_RIP_DEBUG_EVENT) |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2606 | zlog_debug ("triggered update!"); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2607 | |
| 2608 | /* Split Horizon processing is done when generating triggered |
| 2609 | updates as well as normal updates (see section 2.6). */ |
| 2610 | rip_update_process (rip_changed_route); |
| 2611 | |
| 2612 | /* Once all of the triggered updates have been generated, the route |
| 2613 | change flags should be cleared. */ |
| 2614 | rip_clear_changed_flag (); |
| 2615 | |
| 2616 | /* After a triggered update is sent, a timer should be set for a |
| 2617 | random interval between 1 and 5 seconds. If other changes that |
| 2618 | would trigger updates occur before the timer expires, a single |
| 2619 | update is triggered when the timer expires. */ |
| 2620 | interval = (random () % 5) + 1; |
| 2621 | |
| 2622 | rip->t_triggered_interval = |
| 2623 | thread_add_timer (master, rip_triggered_interval, NULL, interval); |
| 2624 | |
| 2625 | return 0; |
| 2626 | } |
| 2627 | |
| 2628 | /* Withdraw redistributed route. */ |
| 2629 | void |
| 2630 | rip_redistribute_withdraw (int type) |
| 2631 | { |
| 2632 | struct route_node *rp; |
| 2633 | struct rip_info *rinfo; |
| 2634 | |
| 2635 | if (!rip) |
| 2636 | return; |
| 2637 | |
| 2638 | for (rp = route_top (rip->table); rp; rp = route_next (rp)) |
| 2639 | if ((rinfo = rp->info) != NULL) |
| 2640 | { |
| 2641 | if (rinfo->type == type |
| 2642 | && rinfo->sub_type != RIP_ROUTE_INTERFACE) |
| 2643 | { |
| 2644 | /* Perform poisoned reverse. */ |
| 2645 | rinfo->metric = RIP_METRIC_INFINITY; |
| 2646 | RIP_TIMER_ON (rinfo->t_garbage_collect, |
| 2647 | rip_garbage_collect, rip->garbage_time); |
| 2648 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 2649 | rinfo->flags |= RIP_RTF_CHANGED; |
| 2650 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2651 | if (IS_RIP_DEBUG_EVENT) { |
| 2652 | struct prefix_ipv4 *p = (struct prefix_ipv4 *) &rp->p; |
| 2653 | |
ajs | 5d6c377 | 2004-12-08 19:24:06 +0000 | [diff] [blame] | 2654 | zlog_debug ("Poisone %s/%d on the interface %s with an infinity metric [withdraw]", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 2655 | inet_ntoa(p->prefix), p->prefixlen, |
| 2656 | ifindex2ifname(rinfo->ifindex)); |
| 2657 | } |
| 2658 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2659 | rip_event (RIP_TRIGGERED_UPDATE, 0); |
| 2660 | } |
| 2661 | } |
| 2662 | } |
| 2663 | |
| 2664 | /* Create new RIP instance and set it to global variable. */ |
| 2665 | int |
| 2666 | rip_create () |
| 2667 | { |
| 2668 | rip = XMALLOC (MTYPE_RIP, sizeof (struct rip)); |
| 2669 | memset (rip, 0, sizeof (struct rip)); |
| 2670 | |
| 2671 | /* Set initial value. */ |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 2672 | rip->version_send = RI_RIP_VERSION_2; |
| 2673 | rip->version_recv = RI_RIP_VERSION_1_AND_2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2674 | rip->update_time = RIP_UPDATE_TIMER_DEFAULT; |
| 2675 | rip->timeout_time = RIP_TIMEOUT_TIMER_DEFAULT; |
| 2676 | rip->garbage_time = RIP_GARBAGE_TIMER_DEFAULT; |
| 2677 | rip->default_metric = RIP_DEFAULT_METRIC_DEFAULT; |
| 2678 | |
| 2679 | /* Initialize RIP routig table. */ |
| 2680 | rip->table = route_table_init (); |
| 2681 | rip->route = route_table_init (); |
| 2682 | rip->neighbor = route_table_init (); |
| 2683 | |
| 2684 | /* Make output stream. */ |
| 2685 | rip->obuf = stream_new (1500); |
| 2686 | |
| 2687 | /* Make socket. */ |
| 2688 | rip->sock = rip_create_socket (); |
| 2689 | if (rip->sock < 0) |
| 2690 | return rip->sock; |
| 2691 | |
| 2692 | /* Create read and timer thread. */ |
| 2693 | rip_event (RIP_READ, rip->sock); |
| 2694 | rip_event (RIP_UPDATE_EVENT, 1); |
| 2695 | |
| 2696 | return 0; |
| 2697 | } |
| 2698 | |
| 2699 | /* Sned RIP request to the destination. */ |
| 2700 | int |
| 2701 | rip_request_send (struct sockaddr_in *to, struct interface *ifp, |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2702 | u_char version, struct connected *connected) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2703 | { |
| 2704 | struct rte *rte; |
| 2705 | struct rip_packet rip_packet; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 2706 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2707 | |
| 2708 | memset (&rip_packet, 0, sizeof (rip_packet)); |
| 2709 | |
| 2710 | rip_packet.command = RIP_REQUEST; |
| 2711 | rip_packet.version = version; |
| 2712 | rte = rip_packet.rte; |
| 2713 | rte->metric = htonl (RIP_METRIC_INFINITY); |
| 2714 | |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2715 | if (connected) |
| 2716 | { |
| 2717 | /* |
| 2718 | * connected is only sent for ripv1 case, or when |
| 2719 | * interface does not support multicast. Caller loops |
| 2720 | * over each connected address for this case. |
| 2721 | */ |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 2722 | if (rip_send_packet ((u_char *) &rip_packet, sizeof (rip_packet), |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2723 | to, connected) != sizeof (rip_packet)) |
paul | 931cd54 | 2004-01-23 15:31:42 +0000 | [diff] [blame] | 2724 | return -1; |
| 2725 | else |
| 2726 | return sizeof (rip_packet); |
| 2727 | } |
| 2728 | |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 2729 | /* send request on each connected network */ |
| 2730 | LIST_LOOP(ifp->connected, connected, node) |
| 2731 | { |
| 2732 | struct prefix_ipv4 *p; |
| 2733 | |
| 2734 | p = (struct prefix_ipv4 *) connected->address; |
| 2735 | |
| 2736 | if (p->family != AF_INET) |
| 2737 | continue; |
| 2738 | |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 2739 | if (rip_send_packet ((u_char *) &rip_packet, sizeof (rip_packet), |
paul | c49ad8f | 2004-10-22 10:27:28 +0000 | [diff] [blame] | 2740 | to, connected) != sizeof (rip_packet)) |
paul | cc1131a | 2003-10-15 23:20:17 +0000 | [diff] [blame] | 2741 | return -1; |
| 2742 | } |
| 2743 | return sizeof (rip_packet); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2744 | } |
| 2745 | |
| 2746 | int |
| 2747 | rip_update_jitter (unsigned long time) |
| 2748 | { |
paul | 239389b | 2004-05-05 14:09:37 +0000 | [diff] [blame] | 2749 | #define JITTER_BOUND 4 |
| 2750 | /* We want to get the jitter to +/- 1/JITTER_BOUND the interval. |
| 2751 | Given that, we cannot let time be less than JITTER_BOUND seconds. |
| 2752 | The RIPv2 RFC says jitter should be small compared to |
| 2753 | update_time. We consider 1/JITTER_BOUND to be small. |
| 2754 | */ |
| 2755 | |
| 2756 | int jitter_input = time; |
| 2757 | int jitter; |
| 2758 | |
| 2759 | if (jitter_input < JITTER_BOUND) |
| 2760 | jitter_input = JITTER_BOUND; |
| 2761 | |
| 2762 | jitter = (((rand () % ((jitter_input * 2) + 1)) - jitter_input)); |
| 2763 | |
| 2764 | return jitter/JITTER_BOUND; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2765 | } |
| 2766 | |
| 2767 | void |
| 2768 | rip_event (enum rip_event event, int sock) |
| 2769 | { |
| 2770 | int jitter = 0; |
| 2771 | |
| 2772 | switch (event) |
| 2773 | { |
| 2774 | case RIP_READ: |
| 2775 | rip->t_read = thread_add_read (master, rip_read, NULL, sock); |
| 2776 | break; |
| 2777 | case RIP_UPDATE_EVENT: |
| 2778 | if (rip->t_update) |
| 2779 | { |
| 2780 | thread_cancel (rip->t_update); |
| 2781 | rip->t_update = NULL; |
| 2782 | } |
| 2783 | jitter = rip_update_jitter (rip->update_time); |
| 2784 | rip->t_update = |
| 2785 | thread_add_timer (master, rip_update, NULL, |
| 2786 | sock ? 2 : rip->update_time + jitter); |
| 2787 | break; |
| 2788 | case RIP_TRIGGERED_UPDATE: |
| 2789 | if (rip->t_triggered_interval) |
| 2790 | rip->trigger = 1; |
| 2791 | else if (! rip->t_triggered_update) |
| 2792 | rip->t_triggered_update = |
| 2793 | thread_add_event (master, rip_triggered_update, NULL, 0); |
| 2794 | break; |
| 2795 | default: |
| 2796 | break; |
| 2797 | } |
| 2798 | } |
| 2799 | |
| 2800 | DEFUN (router_rip, |
| 2801 | router_rip_cmd, |
| 2802 | "router rip", |
| 2803 | "Enable a routing process\n" |
| 2804 | "Routing Information Protocol (RIP)\n") |
| 2805 | { |
| 2806 | int ret; |
| 2807 | |
| 2808 | /* If rip is not enabled before. */ |
| 2809 | if (! rip) |
| 2810 | { |
| 2811 | ret = rip_create (); |
| 2812 | if (ret < 0) |
| 2813 | { |
| 2814 | zlog_info ("Can't create RIP"); |
| 2815 | return CMD_WARNING; |
| 2816 | } |
| 2817 | } |
| 2818 | vty->node = RIP_NODE; |
| 2819 | vty->index = rip; |
| 2820 | |
| 2821 | return CMD_SUCCESS; |
| 2822 | } |
| 2823 | |
| 2824 | DEFUN (no_router_rip, |
| 2825 | no_router_rip_cmd, |
| 2826 | "no router rip", |
| 2827 | NO_STR |
| 2828 | "Enable a routing process\n" |
| 2829 | "Routing Information Protocol (RIP)\n") |
| 2830 | { |
| 2831 | if (rip) |
| 2832 | rip_clean (); |
| 2833 | return CMD_SUCCESS; |
| 2834 | } |
| 2835 | |
| 2836 | DEFUN (rip_version, |
| 2837 | rip_version_cmd, |
| 2838 | "version <1-2>", |
| 2839 | "Set routing protocol version\n" |
| 2840 | "version\n") |
| 2841 | { |
| 2842 | int version; |
| 2843 | |
| 2844 | version = atoi (argv[0]); |
| 2845 | if (version != RIPv1 && version != RIPv2) |
| 2846 | { |
| 2847 | vty_out (vty, "invalid rip version %d%s", version, |
| 2848 | VTY_NEWLINE); |
| 2849 | return CMD_WARNING; |
| 2850 | } |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 2851 | rip->version_send = version; |
| 2852 | rip->version_recv = version; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2853 | |
| 2854 | return CMD_SUCCESS; |
| 2855 | } |
| 2856 | |
| 2857 | DEFUN (no_rip_version, |
| 2858 | no_rip_version_cmd, |
| 2859 | "no version", |
| 2860 | NO_STR |
| 2861 | "Set routing protocol version\n") |
| 2862 | { |
| 2863 | /* Set RIP version to the default. */ |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 2864 | rip->version_send = RI_RIP_VERSION_2; |
| 2865 | rip->version_recv = RI_RIP_VERSION_1_AND_2; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2866 | |
| 2867 | return CMD_SUCCESS; |
| 2868 | } |
| 2869 | |
| 2870 | ALIAS (no_rip_version, |
| 2871 | no_rip_version_val_cmd, |
| 2872 | "no version <1-2>", |
| 2873 | NO_STR |
| 2874 | "Set routing protocol version\n" |
| 2875 | "version\n") |
| 2876 | |
| 2877 | DEFUN (rip_route, |
| 2878 | rip_route_cmd, |
| 2879 | "route A.B.C.D/M", |
| 2880 | "RIP static route configuration\n" |
| 2881 | "IP prefix <network>/<length>\n") |
| 2882 | { |
| 2883 | int ret; |
| 2884 | struct prefix_ipv4 p; |
| 2885 | struct route_node *node; |
| 2886 | |
| 2887 | ret = str2prefix_ipv4 (argv[0], &p); |
| 2888 | if (ret < 0) |
| 2889 | { |
| 2890 | vty_out (vty, "Malformed address%s", VTY_NEWLINE); |
| 2891 | return CMD_WARNING; |
| 2892 | } |
| 2893 | apply_mask_ipv4 (&p); |
| 2894 | |
| 2895 | /* For router rip configuration. */ |
| 2896 | node = route_node_get (rip->route, (struct prefix *) &p); |
| 2897 | |
| 2898 | if (node->info) |
| 2899 | { |
| 2900 | vty_out (vty, "There is already same static route.%s", VTY_NEWLINE); |
| 2901 | route_unlock_node (node); |
| 2902 | return CMD_WARNING; |
| 2903 | } |
| 2904 | |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 2905 | node->info = (char *)"static"; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 2906 | |
| 2907 | rip_redistribute_add (ZEBRA_ROUTE_RIP, RIP_ROUTE_STATIC, &p, 0, NULL); |
| 2908 | |
| 2909 | return CMD_SUCCESS; |
| 2910 | } |
| 2911 | |
| 2912 | DEFUN (no_rip_route, |
| 2913 | no_rip_route_cmd, |
| 2914 | "no route A.B.C.D/M", |
| 2915 | NO_STR |
| 2916 | "RIP static route configuration\n" |
| 2917 | "IP prefix <network>/<length>\n") |
| 2918 | { |
| 2919 | int ret; |
| 2920 | struct prefix_ipv4 p; |
| 2921 | struct route_node *node; |
| 2922 | |
| 2923 | ret = str2prefix_ipv4 (argv[0], &p); |
| 2924 | if (ret < 0) |
| 2925 | { |
| 2926 | vty_out (vty, "Malformed address%s", VTY_NEWLINE); |
| 2927 | return CMD_WARNING; |
| 2928 | } |
| 2929 | apply_mask_ipv4 (&p); |
| 2930 | |
| 2931 | /* For router rip configuration. */ |
| 2932 | node = route_node_lookup (rip->route, (struct prefix *) &p); |
| 2933 | if (! node) |
| 2934 | { |
| 2935 | vty_out (vty, "Can't find route %s.%s", argv[0], |
| 2936 | VTY_NEWLINE); |
| 2937 | return CMD_WARNING; |
| 2938 | } |
| 2939 | |
| 2940 | rip_redistribute_delete (ZEBRA_ROUTE_RIP, RIP_ROUTE_STATIC, &p, 0); |
| 2941 | route_unlock_node (node); |
| 2942 | |
| 2943 | node->info = NULL; |
| 2944 | route_unlock_node (node); |
| 2945 | |
| 2946 | return CMD_SUCCESS; |
| 2947 | } |
| 2948 | |
| 2949 | void |
| 2950 | rip_update_default_metric () |
| 2951 | { |
| 2952 | struct route_node *np; |
| 2953 | struct rip_info *rinfo; |
| 2954 | |
| 2955 | for (np = route_top (rip->table); np; np = route_next (np)) |
| 2956 | if ((rinfo = np->info) != NULL) |
| 2957 | if (rinfo->type != ZEBRA_ROUTE_RIP && rinfo->type != ZEBRA_ROUTE_CONNECT) |
| 2958 | rinfo->metric = rip->default_metric; |
| 2959 | } |
| 2960 | |
| 2961 | DEFUN (rip_default_metric, |
| 2962 | rip_default_metric_cmd, |
| 2963 | "default-metric <1-16>", |
| 2964 | "Set a metric of redistribute routes\n" |
| 2965 | "Default metric\n") |
| 2966 | { |
| 2967 | if (rip) |
| 2968 | { |
| 2969 | rip->default_metric = atoi (argv[0]); |
| 2970 | /* rip_update_default_metric (); */ |
| 2971 | } |
| 2972 | return CMD_SUCCESS; |
| 2973 | } |
| 2974 | |
| 2975 | DEFUN (no_rip_default_metric, |
| 2976 | no_rip_default_metric_cmd, |
| 2977 | "no default-metric", |
| 2978 | NO_STR |
| 2979 | "Set a metric of redistribute routes\n" |
| 2980 | "Default metric\n") |
| 2981 | { |
| 2982 | if (rip) |
| 2983 | { |
| 2984 | rip->default_metric = RIP_DEFAULT_METRIC_DEFAULT; |
| 2985 | /* rip_update_default_metric (); */ |
| 2986 | } |
| 2987 | return CMD_SUCCESS; |
| 2988 | } |
| 2989 | |
| 2990 | ALIAS (no_rip_default_metric, |
| 2991 | no_rip_default_metric_val_cmd, |
| 2992 | "no default-metric <1-16>", |
| 2993 | NO_STR |
| 2994 | "Set a metric of redistribute routes\n" |
| 2995 | "Default metric\n") |
| 2996 | |
| 2997 | DEFUN (rip_timers, |
| 2998 | rip_timers_cmd, |
| 2999 | "timers basic <5-2147483647> <5-2147483647> <5-2147483647>", |
| 3000 | "Adjust routing timers\n" |
| 3001 | "Basic routing protocol update timers\n" |
| 3002 | "Routing table update timer value in second. Default is 30.\n" |
| 3003 | "Routing information timeout timer. Default is 180.\n" |
| 3004 | "Garbage collection timer. Default is 120.\n") |
| 3005 | { |
| 3006 | unsigned long update; |
| 3007 | unsigned long timeout; |
| 3008 | unsigned long garbage; |
| 3009 | char *endptr = NULL; |
| 3010 | unsigned long RIP_TIMER_MAX = 2147483647; |
| 3011 | unsigned long RIP_TIMER_MIN = 5; |
| 3012 | |
| 3013 | update = strtoul (argv[0], &endptr, 10); |
| 3014 | if (update > RIP_TIMER_MAX || update < RIP_TIMER_MIN || *endptr != '\0') |
| 3015 | { |
| 3016 | vty_out (vty, "update timer value error%s", VTY_NEWLINE); |
| 3017 | return CMD_WARNING; |
| 3018 | } |
| 3019 | |
| 3020 | timeout = strtoul (argv[1], &endptr, 10); |
| 3021 | if (timeout > RIP_TIMER_MAX || timeout < RIP_TIMER_MIN || *endptr != '\0') |
| 3022 | { |
| 3023 | vty_out (vty, "timeout timer value error%s", VTY_NEWLINE); |
| 3024 | return CMD_WARNING; |
| 3025 | } |
| 3026 | |
| 3027 | garbage = strtoul (argv[2], &endptr, 10); |
| 3028 | if (garbage > RIP_TIMER_MAX || garbage < RIP_TIMER_MIN || *endptr != '\0') |
| 3029 | { |
| 3030 | vty_out (vty, "garbage timer value error%s", VTY_NEWLINE); |
| 3031 | return CMD_WARNING; |
| 3032 | } |
| 3033 | |
| 3034 | /* Set each timer value. */ |
| 3035 | rip->update_time = update; |
| 3036 | rip->timeout_time = timeout; |
| 3037 | rip->garbage_time = garbage; |
| 3038 | |
| 3039 | /* Reset update timer thread. */ |
| 3040 | rip_event (RIP_UPDATE_EVENT, 0); |
| 3041 | |
| 3042 | return CMD_SUCCESS; |
| 3043 | } |
| 3044 | |
| 3045 | DEFUN (no_rip_timers, |
| 3046 | no_rip_timers_cmd, |
| 3047 | "no timers basic", |
| 3048 | NO_STR |
| 3049 | "Adjust routing timers\n" |
| 3050 | "Basic routing protocol update timers\n") |
| 3051 | { |
| 3052 | /* Set each timer value to the default. */ |
| 3053 | rip->update_time = RIP_UPDATE_TIMER_DEFAULT; |
| 3054 | rip->timeout_time = RIP_TIMEOUT_TIMER_DEFAULT; |
| 3055 | rip->garbage_time = RIP_GARBAGE_TIMER_DEFAULT; |
| 3056 | |
| 3057 | /* Reset update timer thread. */ |
| 3058 | rip_event (RIP_UPDATE_EVENT, 0); |
| 3059 | |
| 3060 | return CMD_SUCCESS; |
| 3061 | } |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3062 | |
| 3063 | ALIAS (no_rip_timers, |
| 3064 | no_rip_timers_val_cmd, |
| 3065 | "no timers basic <0-65535> <0-65535> <0-65535>", |
| 3066 | NO_STR |
| 3067 | "Adjust routing timers\n" |
| 3068 | "Basic routing protocol update timers\n" |
| 3069 | "Routing table update timer value in second. Default is 30.\n" |
| 3070 | "Routing information timeout timer. Default is 180.\n" |
| 3071 | "Garbage collection timer. Default is 120.\n") |
| 3072 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3073 | |
| 3074 | struct route_table *rip_distance_table; |
| 3075 | |
| 3076 | struct rip_distance |
| 3077 | { |
| 3078 | /* Distance value for the IP source prefix. */ |
| 3079 | u_char distance; |
| 3080 | |
| 3081 | /* Name of the access-list to be matched. */ |
| 3082 | char *access_list; |
| 3083 | }; |
| 3084 | |
| 3085 | struct rip_distance * |
| 3086 | rip_distance_new () |
| 3087 | { |
| 3088 | struct rip_distance *new; |
| 3089 | new = XMALLOC (MTYPE_RIP_DISTANCE, sizeof (struct rip_distance)); |
| 3090 | memset (new, 0, sizeof (struct rip_distance)); |
| 3091 | return new; |
| 3092 | } |
| 3093 | |
| 3094 | void |
| 3095 | rip_distance_free (struct rip_distance *rdistance) |
| 3096 | { |
| 3097 | XFREE (MTYPE_RIP_DISTANCE, rdistance); |
| 3098 | } |
| 3099 | |
| 3100 | int |
hasso | 98b718a | 2004-10-11 12:57:57 +0000 | [diff] [blame] | 3101 | rip_distance_set (struct vty *vty, const char *distance_str, const char *ip_str, |
| 3102 | const char *access_list_str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3103 | { |
| 3104 | int ret; |
| 3105 | struct prefix_ipv4 p; |
| 3106 | u_char distance; |
| 3107 | struct route_node *rn; |
| 3108 | struct rip_distance *rdistance; |
| 3109 | |
| 3110 | ret = str2prefix_ipv4 (ip_str, &p); |
| 3111 | if (ret == 0) |
| 3112 | { |
| 3113 | vty_out (vty, "Malformed prefix%s", VTY_NEWLINE); |
| 3114 | return CMD_WARNING; |
| 3115 | } |
| 3116 | |
| 3117 | distance = atoi (distance_str); |
| 3118 | |
| 3119 | /* Get RIP distance node. */ |
| 3120 | rn = route_node_get (rip_distance_table, (struct prefix *) &p); |
| 3121 | if (rn->info) |
| 3122 | { |
| 3123 | rdistance = rn->info; |
| 3124 | route_unlock_node (rn); |
| 3125 | } |
| 3126 | else |
| 3127 | { |
| 3128 | rdistance = rip_distance_new (); |
| 3129 | rn->info = rdistance; |
| 3130 | } |
| 3131 | |
| 3132 | /* Set distance value. */ |
| 3133 | rdistance->distance = distance; |
| 3134 | |
| 3135 | /* Reset access-list configuration. */ |
| 3136 | if (rdistance->access_list) |
| 3137 | { |
| 3138 | free (rdistance->access_list); |
| 3139 | rdistance->access_list = NULL; |
| 3140 | } |
| 3141 | if (access_list_str) |
| 3142 | rdistance->access_list = strdup (access_list_str); |
| 3143 | |
| 3144 | return CMD_SUCCESS; |
| 3145 | } |
| 3146 | |
| 3147 | int |
hasso | 98b718a | 2004-10-11 12:57:57 +0000 | [diff] [blame] | 3148 | rip_distance_unset (struct vty *vty, const char *distance_str, |
| 3149 | const char *ip_str, const char *access_list_str) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3150 | { |
| 3151 | int ret; |
| 3152 | struct prefix_ipv4 p; |
| 3153 | u_char distance; |
| 3154 | struct route_node *rn; |
| 3155 | struct rip_distance *rdistance; |
| 3156 | |
| 3157 | ret = str2prefix_ipv4 (ip_str, &p); |
| 3158 | if (ret == 0) |
| 3159 | { |
| 3160 | vty_out (vty, "Malformed prefix%s", VTY_NEWLINE); |
| 3161 | return CMD_WARNING; |
| 3162 | } |
| 3163 | |
| 3164 | distance = atoi (distance_str); |
| 3165 | |
| 3166 | rn = route_node_lookup (rip_distance_table, (struct prefix *)&p); |
| 3167 | if (! rn) |
| 3168 | { |
| 3169 | vty_out (vty, "Can't find specified prefix%s", VTY_NEWLINE); |
| 3170 | return CMD_WARNING; |
| 3171 | } |
| 3172 | |
| 3173 | rdistance = rn->info; |
| 3174 | |
| 3175 | if (rdistance->access_list) |
| 3176 | free (rdistance->access_list); |
| 3177 | rip_distance_free (rdistance); |
| 3178 | |
| 3179 | rn->info = NULL; |
| 3180 | route_unlock_node (rn); |
| 3181 | route_unlock_node (rn); |
| 3182 | |
| 3183 | return CMD_SUCCESS; |
| 3184 | } |
| 3185 | |
| 3186 | void |
| 3187 | rip_distance_reset () |
| 3188 | { |
| 3189 | struct route_node *rn; |
| 3190 | struct rip_distance *rdistance; |
| 3191 | |
| 3192 | for (rn = route_top (rip_distance_table); rn; rn = route_next (rn)) |
| 3193 | if ((rdistance = rn->info) != NULL) |
| 3194 | { |
| 3195 | if (rdistance->access_list) |
| 3196 | free (rdistance->access_list); |
| 3197 | rip_distance_free (rdistance); |
| 3198 | rn->info = NULL; |
| 3199 | route_unlock_node (rn); |
| 3200 | } |
| 3201 | } |
| 3202 | |
| 3203 | /* Apply RIP information to distance method. */ |
| 3204 | u_char |
| 3205 | rip_distance_apply (struct rip_info *rinfo) |
| 3206 | { |
| 3207 | struct route_node *rn; |
| 3208 | struct prefix_ipv4 p; |
| 3209 | struct rip_distance *rdistance; |
| 3210 | struct access_list *alist; |
| 3211 | |
| 3212 | if (! rip) |
| 3213 | return 0; |
| 3214 | |
| 3215 | memset (&p, 0, sizeof (struct prefix_ipv4)); |
| 3216 | p.family = AF_INET; |
| 3217 | p.prefix = rinfo->from; |
| 3218 | p.prefixlen = IPV4_MAX_BITLEN; |
| 3219 | |
| 3220 | /* Check source address. */ |
| 3221 | rn = route_node_match (rip_distance_table, (struct prefix *) &p); |
| 3222 | if (rn) |
| 3223 | { |
| 3224 | rdistance = rn->info; |
| 3225 | route_unlock_node (rn); |
| 3226 | |
| 3227 | if (rdistance->access_list) |
| 3228 | { |
| 3229 | alist = access_list_lookup (AFI_IP, rdistance->access_list); |
| 3230 | if (alist == NULL) |
| 3231 | return 0; |
| 3232 | if (access_list_apply (alist, &rinfo->rp->p) == FILTER_DENY) |
| 3233 | return 0; |
| 3234 | |
| 3235 | return rdistance->distance; |
| 3236 | } |
| 3237 | else |
| 3238 | return rdistance->distance; |
| 3239 | } |
| 3240 | |
| 3241 | if (rip->distance) |
| 3242 | return rip->distance; |
| 3243 | |
| 3244 | return 0; |
| 3245 | } |
| 3246 | |
| 3247 | void |
| 3248 | rip_distance_show (struct vty *vty) |
| 3249 | { |
| 3250 | struct route_node *rn; |
| 3251 | struct rip_distance *rdistance; |
| 3252 | int header = 1; |
| 3253 | char buf[BUFSIZ]; |
| 3254 | |
| 3255 | vty_out (vty, " Distance: (default is %d)%s", |
| 3256 | rip->distance ? rip->distance :ZEBRA_RIP_DISTANCE_DEFAULT, |
| 3257 | VTY_NEWLINE); |
| 3258 | |
| 3259 | for (rn = route_top (rip_distance_table); rn; rn = route_next (rn)) |
| 3260 | if ((rdistance = rn->info) != NULL) |
| 3261 | { |
| 3262 | if (header) |
| 3263 | { |
| 3264 | vty_out (vty, " Address Distance List%s", |
| 3265 | VTY_NEWLINE); |
| 3266 | header = 0; |
| 3267 | } |
| 3268 | sprintf (buf, "%s/%d", inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen); |
| 3269 | vty_out (vty, " %-20s %4d %s%s", |
| 3270 | buf, rdistance->distance, |
| 3271 | rdistance->access_list ? rdistance->access_list : "", |
| 3272 | VTY_NEWLINE); |
| 3273 | } |
| 3274 | } |
| 3275 | |
| 3276 | DEFUN (rip_distance, |
| 3277 | rip_distance_cmd, |
| 3278 | "distance <1-255>", |
| 3279 | "Administrative distance\n" |
| 3280 | "Distance value\n") |
| 3281 | { |
| 3282 | rip->distance = atoi (argv[0]); |
| 3283 | return CMD_SUCCESS; |
| 3284 | } |
| 3285 | |
| 3286 | DEFUN (no_rip_distance, |
| 3287 | no_rip_distance_cmd, |
| 3288 | "no distance <1-255>", |
| 3289 | NO_STR |
| 3290 | "Administrative distance\n" |
| 3291 | "Distance value\n") |
| 3292 | { |
| 3293 | rip->distance = 0; |
| 3294 | return CMD_SUCCESS; |
| 3295 | } |
| 3296 | |
| 3297 | DEFUN (rip_distance_source, |
| 3298 | rip_distance_source_cmd, |
| 3299 | "distance <1-255> A.B.C.D/M", |
| 3300 | "Administrative distance\n" |
| 3301 | "Distance value\n" |
| 3302 | "IP source prefix\n") |
| 3303 | { |
| 3304 | rip_distance_set (vty, argv[0], argv[1], NULL); |
| 3305 | return CMD_SUCCESS; |
| 3306 | } |
| 3307 | |
| 3308 | DEFUN (no_rip_distance_source, |
| 3309 | no_rip_distance_source_cmd, |
| 3310 | "no distance <1-255> A.B.C.D/M", |
| 3311 | NO_STR |
| 3312 | "Administrative distance\n" |
| 3313 | "Distance value\n" |
| 3314 | "IP source prefix\n") |
| 3315 | { |
| 3316 | rip_distance_unset (vty, argv[0], argv[1], NULL); |
| 3317 | return CMD_SUCCESS; |
| 3318 | } |
| 3319 | |
| 3320 | DEFUN (rip_distance_source_access_list, |
| 3321 | rip_distance_source_access_list_cmd, |
| 3322 | "distance <1-255> A.B.C.D/M WORD", |
| 3323 | "Administrative distance\n" |
| 3324 | "Distance value\n" |
| 3325 | "IP source prefix\n" |
| 3326 | "Access list name\n") |
| 3327 | { |
| 3328 | rip_distance_set (vty, argv[0], argv[1], argv[2]); |
| 3329 | return CMD_SUCCESS; |
| 3330 | } |
| 3331 | |
| 3332 | DEFUN (no_rip_distance_source_access_list, |
| 3333 | no_rip_distance_source_access_list_cmd, |
| 3334 | "no distance <1-255> A.B.C.D/M WORD", |
| 3335 | NO_STR |
| 3336 | "Administrative distance\n" |
| 3337 | "Distance value\n" |
| 3338 | "IP source prefix\n" |
| 3339 | "Access list name\n") |
| 3340 | { |
| 3341 | rip_distance_unset (vty, argv[0], argv[1], argv[2]); |
| 3342 | return CMD_SUCCESS; |
| 3343 | } |
| 3344 | |
| 3345 | /* Print out routes update time. */ |
| 3346 | void |
| 3347 | rip_vty_out_uptime (struct vty *vty, struct rip_info *rinfo) |
| 3348 | { |
| 3349 | struct timeval timer_now; |
| 3350 | time_t clock; |
| 3351 | struct tm *tm; |
| 3352 | #define TIME_BUF 25 |
| 3353 | char timebuf [TIME_BUF]; |
| 3354 | struct thread *thread; |
| 3355 | |
| 3356 | gettimeofday (&timer_now, NULL); |
| 3357 | |
| 3358 | if ((thread = rinfo->t_timeout) != NULL) |
| 3359 | { |
| 3360 | clock = thread->u.sands.tv_sec - timer_now.tv_sec; |
| 3361 | tm = gmtime (&clock); |
| 3362 | strftime (timebuf, TIME_BUF, "%M:%S", tm); |
| 3363 | vty_out (vty, "%5s", timebuf); |
| 3364 | } |
| 3365 | else if ((thread = rinfo->t_garbage_collect) != NULL) |
| 3366 | { |
| 3367 | clock = thread->u.sands.tv_sec - timer_now.tv_sec; |
| 3368 | tm = gmtime (&clock); |
| 3369 | strftime (timebuf, TIME_BUF, "%M:%S", tm); |
| 3370 | vty_out (vty, "%5s", timebuf); |
| 3371 | } |
| 3372 | } |
| 3373 | |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 3374 | const char * |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3375 | rip_route_type_print (int sub_type) |
| 3376 | { |
| 3377 | switch (sub_type) |
| 3378 | { |
| 3379 | case RIP_ROUTE_RTE: |
| 3380 | return "n"; |
| 3381 | case RIP_ROUTE_STATIC: |
| 3382 | return "s"; |
| 3383 | case RIP_ROUTE_DEFAULT: |
| 3384 | return "d"; |
| 3385 | case RIP_ROUTE_REDISTRIBUTE: |
| 3386 | return "r"; |
| 3387 | case RIP_ROUTE_INTERFACE: |
| 3388 | return "i"; |
| 3389 | default: |
| 3390 | return "?"; |
| 3391 | } |
| 3392 | } |
| 3393 | |
| 3394 | DEFUN (show_ip_rip, |
| 3395 | show_ip_rip_cmd, |
| 3396 | "show ip rip", |
| 3397 | SHOW_STR |
| 3398 | IP_STR |
| 3399 | "Show RIP routes\n") |
| 3400 | { |
| 3401 | struct route_node *np; |
| 3402 | struct rip_info *rinfo; |
| 3403 | |
| 3404 | if (! rip) |
| 3405 | return CMD_SUCCESS; |
| 3406 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3407 | vty_out (vty, "Codes: R - RIP, C - connected, S - Static, O - OSPF, B - BGP%s" |
| 3408 | "Sub-codes:%s" |
| 3409 | " (n) - normal, (s) - static, (d) - default, (r) - redistribute,%s" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3410 | " (i) - interface%s%s" |
hasso | a1455d8 | 2004-03-03 19:36:24 +0000 | [diff] [blame] | 3411 | " Network Next Hop Metric From Tag Time%s", |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3412 | VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE, VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3413 | |
| 3414 | for (np = route_top (rip->table); np; np = route_next (np)) |
| 3415 | if ((rinfo = np->info) != NULL) |
| 3416 | { |
| 3417 | int len; |
| 3418 | |
| 3419 | len = vty_out (vty, "%s(%s) %s/%d", |
| 3420 | /* np->lock, For debugging. */ |
| 3421 | route_info[rinfo->type].str, |
| 3422 | rip_route_type_print (rinfo->sub_type), |
| 3423 | inet_ntoa (np->p.u.prefix4), np->p.prefixlen); |
| 3424 | |
hasso | a1455d8 | 2004-03-03 19:36:24 +0000 | [diff] [blame] | 3425 | len = 24 - len; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3426 | |
| 3427 | if (len > 0) |
| 3428 | vty_out (vty, "%*s", len, " "); |
| 3429 | |
| 3430 | if (rinfo->nexthop.s_addr) |
| 3431 | vty_out (vty, "%-20s %2d ", inet_ntoa (rinfo->nexthop), |
| 3432 | rinfo->metric); |
| 3433 | else |
| 3434 | vty_out (vty, "0.0.0.0 %2d ", rinfo->metric); |
| 3435 | |
| 3436 | /* Route which exist in kernel routing table. */ |
| 3437 | if ((rinfo->type == ZEBRA_ROUTE_RIP) && |
| 3438 | (rinfo->sub_type == RIP_ROUTE_RTE)) |
| 3439 | { |
| 3440 | vty_out (vty, "%-15s ", inet_ntoa (rinfo->from)); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3441 | vty_out (vty, "%3d ", rinfo->tag); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3442 | rip_vty_out_uptime (vty, rinfo); |
| 3443 | } |
| 3444 | else if (rinfo->metric == RIP_METRIC_INFINITY) |
| 3445 | { |
| 3446 | vty_out (vty, "self "); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3447 | vty_out (vty, "%3d ", rinfo->tag); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3448 | rip_vty_out_uptime (vty, rinfo); |
| 3449 | } |
| 3450 | else |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3451 | { |
| 3452 | vty_out (vty, "self "); |
| 3453 | vty_out (vty, "%3d", rinfo->tag); |
| 3454 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3455 | |
| 3456 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3457 | } |
| 3458 | return CMD_SUCCESS; |
| 3459 | } |
| 3460 | |
| 3461 | /* Return next event time. */ |
| 3462 | int |
| 3463 | rip_next_thread_timer (struct thread *thread) |
| 3464 | { |
| 3465 | struct timeval timer_now; |
| 3466 | |
| 3467 | gettimeofday (&timer_now, NULL); |
| 3468 | |
| 3469 | return thread->u.sands.tv_sec - timer_now.tv_sec; |
| 3470 | } |
| 3471 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3472 | /* Vincent: formerly, it was show_ip_protocols_rip: "show ip protocols" */ |
| 3473 | DEFUN (show_ip_rip_status, |
| 3474 | show_ip_rip_status_cmd, |
| 3475 | "show ip rip status", |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3476 | SHOW_STR |
| 3477 | IP_STR |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3478 | "Show RIP routes\n" |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3479 | "IP routing protocol process parameters and statistics\n") |
| 3480 | { |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3481 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3482 | struct interface *ifp; |
| 3483 | struct rip_interface *ri; |
| 3484 | extern struct message ri_version_msg[]; |
hasso | 8a676be | 2004-10-08 06:36:38 +0000 | [diff] [blame] | 3485 | const char *send_version; |
| 3486 | const char *receive_version; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3487 | |
| 3488 | if (! rip) |
| 3489 | return CMD_SUCCESS; |
| 3490 | |
| 3491 | vty_out (vty, "Routing Protocol is \"rip\"%s", VTY_NEWLINE); |
| 3492 | vty_out (vty, " Sending updates every %ld seconds with +/-50%%,", |
| 3493 | rip->update_time); |
| 3494 | vty_out (vty, " next due in %d seconds%s", |
| 3495 | rip_next_thread_timer (rip->t_update), |
| 3496 | VTY_NEWLINE); |
| 3497 | vty_out (vty, " Timeout after %ld seconds,", rip->timeout_time); |
| 3498 | vty_out (vty, " garbage collect after %ld seconds%s", rip->garbage_time, |
| 3499 | VTY_NEWLINE); |
| 3500 | |
| 3501 | /* Filtering status show. */ |
| 3502 | config_show_distribute (vty); |
| 3503 | |
| 3504 | /* Default metric information. */ |
| 3505 | vty_out (vty, " Default redistribution metric is %d%s", |
| 3506 | rip->default_metric, VTY_NEWLINE); |
| 3507 | |
| 3508 | /* Redistribute information. */ |
| 3509 | vty_out (vty, " Redistributing:"); |
| 3510 | config_write_rip_redistribute (vty, 0); |
| 3511 | vty_out (vty, "%s", VTY_NEWLINE); |
| 3512 | |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 3513 | vty_out (vty, " Default version control: send version %s,", |
| 3514 | lookup(ri_version_msg,rip->version_send)); |
| 3515 | if (rip->version_recv == RI_RIP_VERSION_1_AND_2) |
| 3516 | vty_out (vty, " receive any version %s", VTY_NEWLINE); |
| 3517 | else |
| 3518 | vty_out (vty, " receive version %s %s", |
| 3519 | lookup(ri_version_msg,rip->version_recv), VTY_NEWLINE); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3520 | |
| 3521 | vty_out (vty, " Interface Send Recv Key-chain%s", VTY_NEWLINE); |
| 3522 | |
| 3523 | for (node = listhead (iflist); node; node = nextnode (node)) |
| 3524 | { |
| 3525 | ifp = getdata (node); |
| 3526 | ri = ifp->info; |
| 3527 | |
| 3528 | if (ri->enable_network || ri->enable_interface) |
| 3529 | { |
| 3530 | if (ri->ri_send == RI_RIP_UNSPEC) |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 3531 | send_version = lookup (ri_version_msg, rip->version_send); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3532 | else |
| 3533 | send_version = lookup (ri_version_msg, ri->ri_send); |
| 3534 | |
| 3535 | if (ri->ri_receive == RI_RIP_UNSPEC) |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 3536 | receive_version = lookup (ri_version_msg, rip->version_recv); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3537 | else |
| 3538 | receive_version = lookup (ri_version_msg, ri->ri_receive); |
| 3539 | |
| 3540 | vty_out (vty, " %-17s%-3s %-3s %s%s", ifp->name, |
| 3541 | send_version, |
| 3542 | receive_version, |
| 3543 | ri->key_chain ? ri->key_chain : "", |
| 3544 | VTY_NEWLINE); |
| 3545 | } |
| 3546 | } |
| 3547 | |
| 3548 | vty_out (vty, " Routing for Networks:%s", VTY_NEWLINE); |
| 3549 | config_write_rip_network (vty, 0); |
| 3550 | |
paul | 4aaff3f | 2003-06-07 01:04:45 +0000 | [diff] [blame] | 3551 | { |
| 3552 | int found_passive = 0; |
| 3553 | for (node = listhead (iflist); node; node = nextnode (node)) |
| 3554 | { |
| 3555 | ifp = getdata (node); |
| 3556 | ri = ifp->info; |
| 3557 | |
| 3558 | if ((ri->enable_network || ri->enable_interface) && ri->passive) |
| 3559 | { |
| 3560 | if (!found_passive) |
| 3561 | { |
| 3562 | vty_out (vty, " Passive Interface(s):%s", VTY_NEWLINE); |
| 3563 | found_passive = 1; |
| 3564 | } |
| 3565 | vty_out (vty, " %s%s", ifp->name, VTY_NEWLINE); |
| 3566 | } |
| 3567 | } |
| 3568 | } |
| 3569 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3570 | vty_out (vty, " Routing Information Sources:%s", VTY_NEWLINE); |
| 3571 | vty_out (vty, " Gateway BadPackets BadRoutes Distance Last Update%s", VTY_NEWLINE); |
| 3572 | rip_peer_display (vty); |
| 3573 | |
| 3574 | rip_distance_show (vty); |
| 3575 | |
| 3576 | return CMD_SUCCESS; |
| 3577 | } |
| 3578 | |
| 3579 | /* RIP configuration write function. */ |
| 3580 | int |
| 3581 | config_write_rip (struct vty *vty) |
| 3582 | { |
| 3583 | int write = 0; |
| 3584 | struct route_node *rn; |
| 3585 | struct rip_distance *rdistance; |
| 3586 | |
| 3587 | if (rip) |
| 3588 | { |
| 3589 | /* Router RIP statement. */ |
| 3590 | vty_out (vty, "router rip%s", VTY_NEWLINE); |
| 3591 | write++; |
| 3592 | |
| 3593 | /* RIP version statement. Default is RIP version 2. */ |
paul | f38a471 | 2003-06-07 01:10:00 +0000 | [diff] [blame] | 3594 | if (rip->version_send != RI_RIP_VERSION_2 |
| 3595 | || rip->version_recv != RI_RIP_VERSION_1_AND_2) |
| 3596 | vty_out (vty, " version %d%s", rip->version_send, |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3597 | VTY_NEWLINE); |
| 3598 | |
| 3599 | /* RIP timer configuration. */ |
| 3600 | if (rip->update_time != RIP_UPDATE_TIMER_DEFAULT |
| 3601 | || rip->timeout_time != RIP_TIMEOUT_TIMER_DEFAULT |
| 3602 | || rip->garbage_time != RIP_GARBAGE_TIMER_DEFAULT) |
| 3603 | vty_out (vty, " timers basic %lu %lu %lu%s", |
| 3604 | rip->update_time, |
| 3605 | rip->timeout_time, |
| 3606 | rip->garbage_time, |
| 3607 | VTY_NEWLINE); |
| 3608 | |
| 3609 | /* Default information configuration. */ |
| 3610 | if (rip->default_information) |
| 3611 | { |
| 3612 | if (rip->default_information_route_map) |
| 3613 | vty_out (vty, " default-information originate route-map %s%s", |
| 3614 | rip->default_information_route_map, VTY_NEWLINE); |
| 3615 | else |
| 3616 | vty_out (vty, " default-information originate%s", |
| 3617 | VTY_NEWLINE); |
| 3618 | } |
| 3619 | |
| 3620 | /* Redistribute configuration. */ |
| 3621 | config_write_rip_redistribute (vty, 1); |
| 3622 | |
| 3623 | /* RIP offset-list configuration. */ |
| 3624 | config_write_rip_offset_list (vty); |
| 3625 | |
| 3626 | /* RIP enabled network and interface configuration. */ |
| 3627 | config_write_rip_network (vty, 1); |
| 3628 | |
| 3629 | /* RIP default metric configuration */ |
| 3630 | if (rip->default_metric != RIP_DEFAULT_METRIC_DEFAULT) |
| 3631 | vty_out (vty, " default-metric %d%s", |
| 3632 | rip->default_metric, VTY_NEWLINE); |
| 3633 | |
| 3634 | /* Distribute configuration. */ |
| 3635 | write += config_write_distribute (vty); |
| 3636 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3637 | /* Interface routemap configuration */ |
| 3638 | write += config_write_if_rmap (vty); |
| 3639 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3640 | /* Distance configuration. */ |
| 3641 | if (rip->distance) |
| 3642 | vty_out (vty, " distance %d%s", rip->distance, VTY_NEWLINE); |
| 3643 | |
| 3644 | /* RIP source IP prefix distance configuration. */ |
| 3645 | for (rn = route_top (rip_distance_table); rn; rn = route_next (rn)) |
| 3646 | if ((rdistance = rn->info) != NULL) |
| 3647 | vty_out (vty, " distance %d %s/%d %s%s", rdistance->distance, |
| 3648 | inet_ntoa (rn->p.u.prefix4), rn->p.prefixlen, |
| 3649 | rdistance->access_list ? rdistance->access_list : "", |
| 3650 | VTY_NEWLINE); |
| 3651 | |
| 3652 | /* RIP static route configuration. */ |
| 3653 | for (rn = route_top (rip->route); rn; rn = route_next (rn)) |
| 3654 | if (rn->info) |
| 3655 | vty_out (vty, " route %s/%d%s", |
| 3656 | inet_ntoa (rn->p.u.prefix4), |
| 3657 | rn->p.prefixlen, |
| 3658 | VTY_NEWLINE); |
| 3659 | |
| 3660 | } |
| 3661 | return write; |
| 3662 | } |
| 3663 | |
| 3664 | /* RIP node structure. */ |
| 3665 | struct cmd_node rip_node = |
| 3666 | { |
| 3667 | RIP_NODE, |
| 3668 | "%s(config-router)# ", |
| 3669 | 1 |
| 3670 | }; |
| 3671 | |
| 3672 | /* Distribute-list update functions. */ |
| 3673 | void |
| 3674 | rip_distribute_update (struct distribute *dist) |
| 3675 | { |
| 3676 | struct interface *ifp; |
| 3677 | struct rip_interface *ri; |
| 3678 | struct access_list *alist; |
| 3679 | struct prefix_list *plist; |
| 3680 | |
| 3681 | if (! dist->ifname) |
| 3682 | return; |
| 3683 | |
| 3684 | ifp = if_lookup_by_name (dist->ifname); |
| 3685 | if (ifp == NULL) |
| 3686 | return; |
| 3687 | |
| 3688 | ri = ifp->info; |
| 3689 | |
| 3690 | if (dist->list[DISTRIBUTE_IN]) |
| 3691 | { |
| 3692 | alist = access_list_lookup (AFI_IP, dist->list[DISTRIBUTE_IN]); |
| 3693 | if (alist) |
| 3694 | ri->list[RIP_FILTER_IN] = alist; |
| 3695 | else |
| 3696 | ri->list[RIP_FILTER_IN] = NULL; |
| 3697 | } |
| 3698 | else |
| 3699 | ri->list[RIP_FILTER_IN] = NULL; |
| 3700 | |
| 3701 | if (dist->list[DISTRIBUTE_OUT]) |
| 3702 | { |
| 3703 | alist = access_list_lookup (AFI_IP, dist->list[DISTRIBUTE_OUT]); |
| 3704 | if (alist) |
| 3705 | ri->list[RIP_FILTER_OUT] = alist; |
| 3706 | else |
| 3707 | ri->list[RIP_FILTER_OUT] = NULL; |
| 3708 | } |
| 3709 | else |
| 3710 | ri->list[RIP_FILTER_OUT] = NULL; |
| 3711 | |
| 3712 | if (dist->prefix[DISTRIBUTE_IN]) |
| 3713 | { |
| 3714 | plist = prefix_list_lookup (AFI_IP, dist->prefix[DISTRIBUTE_IN]); |
| 3715 | if (plist) |
| 3716 | ri->prefix[RIP_FILTER_IN] = plist; |
| 3717 | else |
| 3718 | ri->prefix[RIP_FILTER_IN] = NULL; |
| 3719 | } |
| 3720 | else |
| 3721 | ri->prefix[RIP_FILTER_IN] = NULL; |
| 3722 | |
| 3723 | if (dist->prefix[DISTRIBUTE_OUT]) |
| 3724 | { |
| 3725 | plist = prefix_list_lookup (AFI_IP, dist->prefix[DISTRIBUTE_OUT]); |
| 3726 | if (plist) |
| 3727 | ri->prefix[RIP_FILTER_OUT] = plist; |
| 3728 | else |
| 3729 | ri->prefix[RIP_FILTER_OUT] = NULL; |
| 3730 | } |
| 3731 | else |
| 3732 | ri->prefix[RIP_FILTER_OUT] = NULL; |
| 3733 | } |
| 3734 | |
| 3735 | void |
| 3736 | rip_distribute_update_interface (struct interface *ifp) |
| 3737 | { |
| 3738 | struct distribute *dist; |
| 3739 | |
| 3740 | dist = distribute_lookup (ifp->name); |
| 3741 | if (dist) |
| 3742 | rip_distribute_update (dist); |
| 3743 | } |
| 3744 | |
| 3745 | /* Update all interface's distribute list. */ |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 3746 | /* ARGSUSED */ |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3747 | void |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 3748 | rip_distribute_update_all (struct prefix_list *notused) |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3749 | { |
| 3750 | struct interface *ifp; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3751 | struct listnode *node; |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3752 | |
| 3753 | for (node = listhead (iflist); node; nextnode (node)) |
| 3754 | { |
| 3755 | ifp = getdata (node); |
| 3756 | rip_distribute_update_interface (ifp); |
| 3757 | } |
| 3758 | } |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 3759 | /* ARGSUSED */ |
| 3760 | void |
| 3761 | rip_distribute_update_all_wrapper(struct access_list *notused) |
| 3762 | { |
paul | 02ff83c | 2004-06-11 11:27:03 +0000 | [diff] [blame] | 3763 | rip_distribute_update_all(NULL); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 3764 | } |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3765 | |
| 3766 | /* Delete all added rip route. */ |
| 3767 | void |
| 3768 | rip_clean () |
| 3769 | { |
| 3770 | int i; |
| 3771 | struct route_node *rp; |
| 3772 | struct rip_info *rinfo; |
| 3773 | |
| 3774 | if (rip) |
| 3775 | { |
| 3776 | /* Clear RIP routes */ |
| 3777 | for (rp = route_top (rip->table); rp; rp = route_next (rp)) |
| 3778 | if ((rinfo = rp->info) != NULL) |
| 3779 | { |
| 3780 | if (rinfo->type == ZEBRA_ROUTE_RIP && |
| 3781 | rinfo->sub_type == RIP_ROUTE_RTE) |
| 3782 | rip_zebra_ipv4_delete ((struct prefix_ipv4 *)&rp->p, |
| 3783 | &rinfo->nexthop, rinfo->metric); |
| 3784 | |
| 3785 | RIP_TIMER_OFF (rinfo->t_timeout); |
| 3786 | RIP_TIMER_OFF (rinfo->t_garbage_collect); |
| 3787 | |
| 3788 | rp->info = NULL; |
| 3789 | route_unlock_node (rp); |
| 3790 | |
| 3791 | rip_info_free (rinfo); |
| 3792 | } |
| 3793 | |
| 3794 | /* Cancel RIP related timers. */ |
| 3795 | RIP_TIMER_OFF (rip->t_update); |
| 3796 | RIP_TIMER_OFF (rip->t_triggered_update); |
| 3797 | RIP_TIMER_OFF (rip->t_triggered_interval); |
| 3798 | |
| 3799 | /* Cancel read thread. */ |
| 3800 | if (rip->t_read) |
| 3801 | { |
| 3802 | thread_cancel (rip->t_read); |
| 3803 | rip->t_read = NULL; |
| 3804 | } |
| 3805 | |
| 3806 | /* Close RIP socket. */ |
| 3807 | if (rip->sock >= 0) |
| 3808 | { |
| 3809 | close (rip->sock); |
| 3810 | rip->sock = -1; |
| 3811 | } |
| 3812 | |
| 3813 | /* Static RIP route configuration. */ |
| 3814 | for (rp = route_top (rip->route); rp; rp = route_next (rp)) |
| 3815 | if (rp->info) |
| 3816 | { |
| 3817 | rp->info = NULL; |
| 3818 | route_unlock_node (rp); |
| 3819 | } |
| 3820 | |
| 3821 | /* RIP neighbor configuration. */ |
| 3822 | for (rp = route_top (rip->neighbor); rp; rp = route_next (rp)) |
| 3823 | if (rp->info) |
| 3824 | { |
| 3825 | rp->info = NULL; |
| 3826 | route_unlock_node (rp); |
| 3827 | } |
| 3828 | |
| 3829 | /* Redistribute related clear. */ |
| 3830 | if (rip->default_information_route_map) |
| 3831 | free (rip->default_information_route_map); |
| 3832 | |
| 3833 | for (i = 0; i < ZEBRA_ROUTE_MAX; i++) |
| 3834 | if (rip->route_map[i].name) |
| 3835 | free (rip->route_map[i].name); |
| 3836 | |
| 3837 | XFREE (MTYPE_ROUTE_TABLE, rip->table); |
| 3838 | XFREE (MTYPE_ROUTE_TABLE, rip->route); |
| 3839 | XFREE (MTYPE_ROUTE_TABLE, rip->neighbor); |
| 3840 | |
| 3841 | XFREE (MTYPE_RIP, rip); |
| 3842 | rip = NULL; |
| 3843 | } |
| 3844 | |
| 3845 | rip_clean_network (); |
paul | 4aaff3f | 2003-06-07 01:04:45 +0000 | [diff] [blame] | 3846 | rip_passive_nondefault_clean (); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3847 | rip_offset_clean (); |
| 3848 | rip_interface_clean (); |
| 3849 | rip_distance_reset (); |
| 3850 | rip_redistribute_clean (); |
| 3851 | } |
| 3852 | |
| 3853 | /* Reset all values to the default settings. */ |
| 3854 | void |
| 3855 | rip_reset () |
| 3856 | { |
| 3857 | /* Reset global counters. */ |
| 3858 | rip_global_route_changes = 0; |
| 3859 | rip_global_queries = 0; |
| 3860 | |
| 3861 | /* Call ripd related reset functions. */ |
| 3862 | rip_debug_reset (); |
| 3863 | rip_route_map_reset (); |
| 3864 | |
| 3865 | /* Call library reset functions. */ |
| 3866 | vty_reset (); |
| 3867 | access_list_reset (); |
| 3868 | prefix_list_reset (); |
| 3869 | |
| 3870 | distribute_list_reset (); |
| 3871 | |
| 3872 | rip_interface_reset (); |
| 3873 | rip_distance_reset (); |
| 3874 | |
| 3875 | rip_zclient_reset (); |
| 3876 | } |
| 3877 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3878 | void |
| 3879 | rip_if_rmap_update (struct if_rmap *if_rmap) |
| 3880 | { |
| 3881 | struct interface *ifp; |
| 3882 | struct rip_interface *ri; |
| 3883 | struct route_map *rmap; |
| 3884 | |
| 3885 | ifp = if_lookup_by_name (if_rmap->ifname); |
| 3886 | if (ifp == NULL) |
| 3887 | return; |
| 3888 | |
| 3889 | ri = ifp->info; |
| 3890 | |
| 3891 | if (if_rmap->routemap[IF_RMAP_IN]) |
| 3892 | { |
| 3893 | rmap = route_map_lookup_by_name (if_rmap->routemap[IF_RMAP_IN]); |
| 3894 | if (rmap) |
| 3895 | ri->routemap[IF_RMAP_IN] = rmap; |
| 3896 | else |
| 3897 | ri->routemap[IF_RMAP_IN] = NULL; |
| 3898 | } |
| 3899 | else |
| 3900 | ri->routemap[RIP_FILTER_IN] = NULL; |
| 3901 | |
| 3902 | if (if_rmap->routemap[IF_RMAP_OUT]) |
| 3903 | { |
| 3904 | rmap = route_map_lookup_by_name (if_rmap->routemap[IF_RMAP_OUT]); |
| 3905 | if (rmap) |
| 3906 | ri->routemap[IF_RMAP_OUT] = rmap; |
| 3907 | else |
| 3908 | ri->routemap[IF_RMAP_OUT] = NULL; |
| 3909 | } |
| 3910 | else |
| 3911 | ri->routemap[RIP_FILTER_OUT] = NULL; |
| 3912 | } |
| 3913 | |
| 3914 | void |
| 3915 | rip_if_rmap_update_interface (struct interface *ifp) |
| 3916 | { |
| 3917 | struct if_rmap *if_rmap; |
| 3918 | |
| 3919 | if_rmap = if_rmap_lookup (ifp->name); |
| 3920 | if (if_rmap) |
| 3921 | rip_if_rmap_update (if_rmap); |
| 3922 | } |
| 3923 | |
| 3924 | void |
| 3925 | rip_routemap_update_redistribute (void) |
| 3926 | { |
| 3927 | int i; |
| 3928 | |
| 3929 | if (rip) |
| 3930 | { |
| 3931 | for (i = 0; i < ZEBRA_ROUTE_MAX; i++) |
| 3932 | { |
| 3933 | if (rip->route_map[i].name) |
| 3934 | rip->route_map[i].map = |
| 3935 | route_map_lookup_by_name (rip->route_map[i].name); |
| 3936 | } |
| 3937 | } |
| 3938 | } |
| 3939 | |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 3940 | /* ARGSUSED */ |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3941 | void |
hasso | 98b718a | 2004-10-11 12:57:57 +0000 | [diff] [blame] | 3942 | rip_routemap_update (const char *notused) |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3943 | { |
| 3944 | struct interface *ifp; |
hasso | 52dc7ee | 2004-09-23 19:18:23 +0000 | [diff] [blame] | 3945 | struct listnode *node; |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3946 | |
| 3947 | for (node = listhead (iflist); node; nextnode (node)) |
| 3948 | { |
| 3949 | ifp = getdata (node); |
| 3950 | rip_if_rmap_update_interface (ifp); |
| 3951 | } |
| 3952 | |
| 3953 | rip_routemap_update_redistribute (); |
| 3954 | } |
| 3955 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3956 | /* Allocate new rip structure and set default value. */ |
| 3957 | void |
| 3958 | rip_init () |
| 3959 | { |
| 3960 | /* Randomize for triggered update random(). */ |
| 3961 | srand (time (NULL)); |
| 3962 | |
| 3963 | /* Install top nodes. */ |
| 3964 | install_node (&rip_node, config_write_rip); |
| 3965 | |
| 3966 | /* Install rip commands. */ |
| 3967 | install_element (VIEW_NODE, &show_ip_rip_cmd); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3968 | install_element (VIEW_NODE, &show_ip_rip_status_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3969 | install_element (ENABLE_NODE, &show_ip_rip_cmd); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3970 | install_element (ENABLE_NODE, &show_ip_rip_status_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3971 | install_element (CONFIG_NODE, &router_rip_cmd); |
| 3972 | install_element (CONFIG_NODE, &no_router_rip_cmd); |
| 3973 | |
| 3974 | install_default (RIP_NODE); |
| 3975 | install_element (RIP_NODE, &rip_version_cmd); |
| 3976 | install_element (RIP_NODE, &no_rip_version_cmd); |
| 3977 | install_element (RIP_NODE, &no_rip_version_val_cmd); |
| 3978 | install_element (RIP_NODE, &rip_default_metric_cmd); |
| 3979 | install_element (RIP_NODE, &no_rip_default_metric_cmd); |
| 3980 | install_element (RIP_NODE, &no_rip_default_metric_val_cmd); |
| 3981 | install_element (RIP_NODE, &rip_timers_cmd); |
| 3982 | install_element (RIP_NODE, &no_rip_timers_cmd); |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 3983 | install_element (RIP_NODE, &no_rip_timers_val_cmd); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3984 | install_element (RIP_NODE, &rip_route_cmd); |
| 3985 | install_element (RIP_NODE, &no_rip_route_cmd); |
| 3986 | install_element (RIP_NODE, &rip_distance_cmd); |
| 3987 | install_element (RIP_NODE, &no_rip_distance_cmd); |
| 3988 | install_element (RIP_NODE, &rip_distance_source_cmd); |
| 3989 | install_element (RIP_NODE, &no_rip_distance_source_cmd); |
| 3990 | install_element (RIP_NODE, &rip_distance_source_access_list_cmd); |
| 3991 | install_element (RIP_NODE, &no_rip_distance_source_access_list_cmd); |
| 3992 | |
| 3993 | /* Debug related init. */ |
| 3994 | rip_debug_init (); |
| 3995 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 3996 | /* SNMP init. */ |
| 3997 | #ifdef HAVE_SNMP |
| 3998 | rip_snmp_init (); |
| 3999 | #endif /* HAVE_SNMP */ |
| 4000 | |
| 4001 | /* Access list install. */ |
| 4002 | access_list_init (); |
paul | 11dde9c | 2004-05-31 14:00:00 +0000 | [diff] [blame] | 4003 | access_list_add_hook (rip_distribute_update_all_wrapper); |
| 4004 | access_list_delete_hook (rip_distribute_update_all_wrapper); |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 4005 | |
| 4006 | /* Prefix list initialize.*/ |
| 4007 | prefix_list_init (); |
| 4008 | prefix_list_add_hook (rip_distribute_update_all); |
| 4009 | prefix_list_delete_hook (rip_distribute_update_all); |
| 4010 | |
| 4011 | /* Distribute list install. */ |
| 4012 | distribute_list_init (RIP_NODE); |
| 4013 | distribute_list_add_hook (rip_distribute_update); |
| 4014 | distribute_list_delete_hook (rip_distribute_update); |
| 4015 | |
hasso | 1670513 | 2003-05-25 14:49:19 +0000 | [diff] [blame] | 4016 | /* Route-map */ |
| 4017 | rip_route_map_init (); |
| 4018 | rip_offset_init (); |
| 4019 | |
| 4020 | route_map_add_hook (rip_routemap_update); |
| 4021 | route_map_delete_hook (rip_routemap_update); |
| 4022 | |
| 4023 | if_rmap_init (RIP_NODE); |
| 4024 | if_rmap_hook_add (rip_if_rmap_update); |
| 4025 | if_rmap_hook_delete (rip_if_rmap_update); |
| 4026 | |
paul | 718e374 | 2002-12-13 20:15:29 +0000 | [diff] [blame] | 4027 | /* Distance control. */ |
| 4028 | rip_distance_table = route_table_init (); |
| 4029 | } |