hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Copyright (C) 2000 Robert Olsson. |
| 4 | * Swedish University of Agricultural Sciences |
| 5 | * |
| 6 | * This file is part of GNU Zebra. |
| 7 | * |
| 8 | * GNU Zebra is free software; you can redistribute it and/or modify it |
| 9 | * under the terms of the GNU General Public License as published by the |
| 10 | * Free Software Foundation; either version 2, or (at your option) any |
| 11 | * later version. |
| 12 | * |
| 13 | * GNU Zebra is distributed in the hope that it will be useful, but |
| 14 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with GNU Zebra; see the file COPYING. If not, write to the Free |
| 20 | * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
| 21 | * 02111-1307, USA. |
| 22 | */ |
| 23 | |
| 24 | /* |
| 25 | * This work includes work with the following copywrite: |
| 26 | * |
| 27 | * Copyright (C) 1997, 2000 Kunihiro Ishiguro |
| 28 | * |
| 29 | */ |
| 30 | |
| 31 | /* |
| 32 | * Thanks to Jens Låås at Swedish University of Agricultural Sciences |
| 33 | * for reviewing and tests. |
| 34 | */ |
| 35 | |
| 36 | |
| 37 | #include <zebra.h> |
| 38 | |
| 39 | #ifdef HAVE_IRDP |
| 40 | |
| 41 | #include "if.h" |
| 42 | #include "vty.h" |
| 43 | #include "sockunion.h" |
hasso | c9e52be | 2004-09-26 16:09:34 +0000 | [diff] [blame] | 44 | #include "sockopt.h" |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 45 | #include "prefix.h" |
| 46 | #include "command.h" |
| 47 | #include "memory.h" |
| 48 | #include "stream.h" |
| 49 | #include "ioctl.h" |
| 50 | #include "connected.h" |
| 51 | #include "log.h" |
| 52 | #include "zclient.h" |
| 53 | #include "thread.h" |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 54 | #include "privs.h" |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 55 | #include "zebra/interface.h" |
| 56 | #include "zebra/rtadv.h" |
| 57 | #include "zebra/rib.h" |
| 58 | #include "zebra/zserv.h" |
| 59 | #include "zebra/redistribute.h" |
| 60 | #include "zebra/irdp.h" |
| 61 | #include <netinet/ip_icmp.h> |
| 62 | |
| 63 | #include "if.h" |
| 64 | #include "sockunion.h" |
| 65 | #include "log.h" |
| 66 | |
| 67 | /* GLOBAL VARS */ |
| 68 | |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 69 | extern struct zebra_privs_t zserv_privs; |
| 70 | |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 71 | /* Master of threads. */ |
| 72 | extern struct zebra_t zebrad; |
| 73 | struct thread *t_irdp_raw; |
| 74 | |
| 75 | /* Timer interval of irdp. */ |
| 76 | int irdp_timer_interval = IRDP_DEFAULT_INTERVAL; |
| 77 | |
| 78 | int irdp_read_raw(struct thread *r); |
| 79 | int in_cksum (void *ptr, int nbytes); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 80 | void send_packet(struct interface *ifp, |
| 81 | struct stream *s, |
| 82 | u_int32_t dst, |
| 83 | struct prefix *p, |
| 84 | u_int32_t ttl); |
| 85 | |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 86 | char * |
| 87 | inet_2a(u_int32_t a, char *b) |
| 88 | { |
| 89 | sprintf(b, "%u.%u.%u.%u", |
| 90 | (a ) & 0xFF, |
| 91 | (a>> 8) & 0xFF, |
| 92 | (a>>16) & 0xFF, |
| 93 | (a>>24) & 0xFF); |
| 94 | return b; |
| 95 | } |
| 96 | |
| 97 | int |
| 98 | irdp_sock_init (void) |
| 99 | { |
| 100 | int ret, i; |
ajs | 4460e7a | 2005-01-29 17:07:40 +0000 | [diff] [blame] | 101 | int save_errno; |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 102 | int sock; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 103 | |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 104 | if ( zserv_privs.change (ZPRIVS_RAISE) ) |
| 105 | zlog_err ("irdp_sock_init: could not raise privs, %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 106 | safe_strerror (errno) ); |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 107 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 108 | sock = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP); |
ajs | 4460e7a | 2005-01-29 17:07:40 +0000 | [diff] [blame] | 109 | save_errno = errno; |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 110 | |
| 111 | if ( zserv_privs.change (ZPRIVS_LOWER) ) |
| 112 | zlog_err ("irdp_sock_init: could not lower privs, %s", |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 113 | safe_strerror (errno) ); |
hasso | 25dac85 | 2004-07-13 03:06:51 +0000 | [diff] [blame] | 114 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 115 | if (sock < 0) { |
ajs | 4460e7a | 2005-01-29 17:07:40 +0000 | [diff] [blame] | 116 | zlog_warn ("IRDP: can't create irdp socket %s", safe_strerror(save_errno)); |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 117 | return sock; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | i = 1; |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 121 | ret = setsockopt (sock, IPPROTO_IP, IP_TTL, |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 122 | (void *) &i, sizeof (i)); |
| 123 | if (ret < 0) { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 124 | zlog_warn ("IRDP: can't do irdp sockopt %s", safe_strerror(errno)); |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 125 | close(sock); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 126 | return ret; |
| 127 | }; |
| 128 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 129 | ret = setsockopt_ifindex (AF_INET, sock, 1); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 130 | if (ret < 0) { |
ajs | 6099b3b | 2004-11-20 02:06:59 +0000 | [diff] [blame] | 131 | zlog_warn ("IRDP: can't do irdp sockopt %s", safe_strerror(errno)); |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 132 | close(sock); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 133 | return ret; |
| 134 | }; |
| 135 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 136 | t_irdp_raw = thread_add_read (zebrad.master, irdp_read_raw, NULL, sock); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 137 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 138 | return sock; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 139 | } |
| 140 | |
| 141 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 142 | static int |
| 143 | get_pref(struct irdp_interface *irdp, struct prefix *p) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 144 | { |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 145 | struct listnode *node; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 146 | struct Adv *adv; |
| 147 | |
| 148 | /* Use default preference or use the override pref */ |
| 149 | |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 150 | if( irdp->AdvPrefList == NULL ) |
| 151 | return irdp->Preference; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 152 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 153 | for (ALL_LIST_ELEMENTS_RO (irdp->AdvPrefList, node, adv)) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 154 | if( p->u.prefix4.s_addr == adv->ip.s_addr ) |
| 155 | return adv->pref; |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 156 | |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 157 | return irdp->Preference; |
| 158 | } |
| 159 | |
| 160 | /* Make ICMP Router Advertisement Message. */ |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 161 | static int |
| 162 | make_advertisement_packet (struct interface *ifp, |
| 163 | struct prefix *p, |
| 164 | struct stream *s) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 165 | { |
| 166 | struct zebra_if *zi=ifp->info; |
| 167 | struct irdp_interface *irdp=&zi->irdp; |
| 168 | int size; |
| 169 | int pref; |
| 170 | u_int16_t checksum; |
| 171 | |
| 172 | pref = get_pref(irdp, p); |
| 173 | |
| 174 | stream_putc (s, ICMP_ROUTERADVERT); /* Type. */ |
| 175 | stream_putc (s, 0); /* Code. */ |
| 176 | stream_putw (s, 0); /* Checksum. */ |
| 177 | stream_putc (s, 1); /* Num address. */ |
| 178 | stream_putc (s, 2); /* Address Entry Size. */ |
| 179 | |
| 180 | if(irdp->flags & IF_SHUTDOWN) |
| 181 | stream_putw (s, 0); |
| 182 | else |
| 183 | stream_putw (s, irdp->Lifetime); |
| 184 | |
| 185 | stream_putl (s, htonl(p->u.prefix4.s_addr)); /* Router address. */ |
| 186 | stream_putl (s, pref); |
| 187 | |
| 188 | /* in_cksum return network byte order value */ |
| 189 | size = 16; |
| 190 | checksum = in_cksum (s->data, size); |
| 191 | stream_putw_at (s, 2, htons(checksum)); |
| 192 | |
| 193 | return size; |
| 194 | } |
| 195 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 196 | static void |
| 197 | irdp_send(struct interface *ifp, struct prefix *p, struct stream *s) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 198 | { |
| 199 | struct zebra_if *zi=ifp->info; |
| 200 | struct irdp_interface *irdp=&zi->irdp; |
| 201 | u_int32_t dst; |
| 202 | u_int32_t ttl=1; |
| 203 | |
| 204 | if (! (ifp->flags & IFF_UP)) return; |
| 205 | |
| 206 | if (irdp->flags & IF_BROADCAST) |
| 207 | dst =INADDR_BROADCAST ; |
| 208 | else |
| 209 | dst = htonl(INADDR_ALLHOSTS_GROUP); |
| 210 | |
| 211 | if(irdp->flags & IF_DEBUG_MESSAGES) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 212 | zlog_debug("IRDP: TX Advert on %s %s/%d Holdtime=%d Preference=%d", |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 213 | ifp->name, |
| 214 | inet_ntoa(p->u.prefix4), |
| 215 | p->prefixlen, |
| 216 | irdp->flags & IF_SHUTDOWN? 0 : irdp->Lifetime, |
| 217 | get_pref(irdp, p)); |
| 218 | |
| 219 | send_packet (ifp, s, dst, p, ttl); |
| 220 | } |
| 221 | |
ajs | 2da40f4 | 2005-03-30 16:33:13 +0000 | [diff] [blame] | 222 | static void irdp_advertisement (struct interface *ifp, struct prefix *p) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 223 | { |
| 224 | struct stream *s; |
| 225 | s = stream_new (128); |
| 226 | make_advertisement_packet (ifp, p, s); |
Paul Jakma | 3694374 | 2006-08-04 06:18:04 +0000 | [diff] [blame] | 227 | irdp_send(ifp, p, s); |
| 228 | stream_free (s); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 229 | } |
| 230 | |
| 231 | int irdp_send_thread(struct thread *t_advert) |
| 232 | { |
| 233 | u_int32_t timer, tmp; |
| 234 | struct interface *ifp = THREAD_ARG (t_advert); |
| 235 | struct zebra_if *zi=ifp->info; |
| 236 | struct irdp_interface *irdp=&zi->irdp; |
| 237 | struct prefix *p; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 238 | struct listnode *node, *nnode; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 239 | struct connected *ifc; |
| 240 | |
| 241 | irdp->flags &= ~IF_SOLICIT; |
| 242 | |
| 243 | if(ifp->connected) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 244 | for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, ifc)) |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 245 | { |
| 246 | p = ifc->address; |
| 247 | irdp_advertisement(ifp, p); |
| 248 | irdp->irdp_sent++; |
| 249 | } |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 250 | |
| 251 | tmp = irdp->MaxAdvertInterval-irdp->MinAdvertInterval; |
| 252 | timer = (random () % tmp ) + 1; |
| 253 | timer = irdp->MinAdvertInterval + timer; |
| 254 | |
| 255 | if(irdp->irdp_sent < MAX_INITIAL_ADVERTISEMENTS && |
| 256 | timer > MAX_INITIAL_ADVERT_INTERVAL ) |
| 257 | timer= MAX_INITIAL_ADVERT_INTERVAL; |
| 258 | |
| 259 | if(irdp->flags & IF_DEBUG_MISC) |
ajs | b617800 | 2004-12-07 21:12:56 +0000 | [diff] [blame] | 260 | zlog_debug("IRDP: New timer for %s set to %u\n", ifp->name, timer); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 261 | |
| 262 | irdp->t_advertise = thread_add_timer(zebrad.master, irdp_send_thread, ifp, timer); |
| 263 | return 0; |
| 264 | } |
| 265 | |
| 266 | void irdp_advert_off(struct interface *ifp) |
| 267 | { |
| 268 | struct zebra_if *zi=ifp->info; |
| 269 | struct irdp_interface *irdp=&zi->irdp; |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 270 | struct listnode *node, *nnode; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 271 | int i; |
| 272 | struct connected *ifc; |
| 273 | struct prefix *p; |
| 274 | |
| 275 | if(irdp->t_advertise) thread_cancel(irdp->t_advertise); |
| 276 | irdp->t_advertise = NULL; |
| 277 | |
| 278 | if(ifp->connected) |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 279 | for (ALL_LIST_ELEMENTS (ifp->connected, node, nnode, ifc)) |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 280 | { |
| 281 | p = ifc->address; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 282 | |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 283 | /* Output some packets with Lifetime 0 |
| 284 | we should add a wait... |
| 285 | */ |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 286 | |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 287 | for(i=0; i< IRDP_LAST_ADVERT_MESSAGES; i++) |
| 288 | { |
| 289 | irdp->irdp_sent++; |
| 290 | irdp_advertisement(ifp, p); |
| 291 | } |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 292 | } |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | |
| 296 | void process_solicit (struct interface *ifp) |
| 297 | { |
| 298 | struct zebra_if *zi=ifp->info; |
| 299 | struct irdp_interface *irdp=&zi->irdp; |
| 300 | u_int32_t timer; |
| 301 | |
| 302 | /* When SOLICIT is active we reject further incoming solicits |
| 303 | this keeps down the answering rate so we don't have think |
| 304 | about DoS attacks here. */ |
| 305 | |
| 306 | if( irdp->flags & IF_SOLICIT) return; |
| 307 | |
| 308 | irdp->flags |= IF_SOLICIT; |
| 309 | if(irdp->t_advertise) thread_cancel(irdp->t_advertise); |
| 310 | irdp->t_advertise = NULL; |
| 311 | |
| 312 | timer = (random () % MAX_RESPONSE_DELAY) + 1; |
| 313 | |
| 314 | irdp->t_advertise = thread_add_timer(zebrad.master, |
| 315 | irdp_send_thread, |
| 316 | ifp, |
| 317 | timer); |
| 318 | } |
| 319 | |
| 320 | void irdp_finish() |
| 321 | { |
| 322 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 323 | struct listnode *node, *nnode; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 324 | struct interface *ifp; |
| 325 | struct zebra_if *zi; |
| 326 | struct irdp_interface *irdp; |
| 327 | |
ajs | 274a4a4 | 2004-12-07 15:39:31 +0000 | [diff] [blame] | 328 | zlog_info("IRDP: Received shutdown notification."); |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 329 | |
paul | 1eb8ef2 | 2005-04-07 07:30:20 +0000 | [diff] [blame] | 330 | for (ALL_LIST_ELEMENTS (iflist, node, nnode, ifp)) |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 331 | { |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 332 | zi = ifp->info; |
| 333 | |
| 334 | if (!zi) |
| 335 | continue; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 336 | irdp = &zi->irdp; |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 337 | if (!irdp) |
| 338 | continue; |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 339 | |
paul | 0c0f911 | 2004-09-24 08:24:42 +0000 | [diff] [blame] | 340 | if (irdp->flags & IF_ACTIVE ) |
| 341 | { |
| 342 | irdp->flags |= IF_SHUTDOWN; |
| 343 | irdp_advert_off(ifp); |
| 344 | } |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 345 | } |
| 346 | } |
| 347 | |
hasso | ca77698 | 2004-06-12 14:33:05 +0000 | [diff] [blame] | 348 | #endif /* HAVE_IRDP */ |