blob: 8c164486001bd435dca404b3023a7c3e26658625 [file] [log] [blame]
hassoca776982004-06-12 14:33:05 +00001/*
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"
hassoc9e52be2004-09-26 16:09:34 +000044#include "sockopt.h"
hassoca776982004-06-12 14:33:05 +000045#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"
hasso25dac852004-07-13 03:06:51 +000054#include "privs.h"
hassoca776982004-06-12 14:33:05 +000055#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
hasso25dac852004-07-13 03:06:51 +000069extern struct zebra_privs_t zserv_privs;
70
hassoca776982004-06-12 14:33:05 +000071/* Master of threads. */
72extern struct zebra_t zebrad;
73struct thread *t_irdp_raw;
74
75/* Timer interval of irdp. */
76int irdp_timer_interval = IRDP_DEFAULT_INTERVAL;
77
78int irdp_read_raw(struct thread *r);
79int in_cksum (void *ptr, int nbytes);
80extern int irdp_sock;
81void send_packet(struct interface *ifp,
82 struct stream *s,
83 u_int32_t dst,
84 struct prefix *p,
85 u_int32_t ttl);
86
87void irdp_if_init ();
88
89char *
90inet_2a(u_int32_t a, char *b)
91{
92 sprintf(b, "%u.%u.%u.%u",
93 (a ) & 0xFF,
94 (a>> 8) & 0xFF,
95 (a>>16) & 0xFF,
96 (a>>24) & 0xFF);
97 return b;
98}
99
100int
101irdp_sock_init (void)
102{
103 int ret, i;
104
hasso25dac852004-07-13 03:06:51 +0000105 if ( zserv_privs.change (ZPRIVS_RAISE) )
106 zlog_err ("irdp_sock_init: could not raise privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000107 safe_strerror (errno) );
hasso25dac852004-07-13 03:06:51 +0000108
hassoca776982004-06-12 14:33:05 +0000109 irdp_sock = socket (AF_INET, SOCK_RAW, IPPROTO_ICMP);
hasso25dac852004-07-13 03:06:51 +0000110
111 if ( zserv_privs.change (ZPRIVS_LOWER) )
112 zlog_err ("irdp_sock_init: could not lower privs, %s",
ajs6099b3b2004-11-20 02:06:59 +0000113 safe_strerror (errno) );
hasso25dac852004-07-13 03:06:51 +0000114
hassoca776982004-06-12 14:33:05 +0000115 if (irdp_sock < 0) {
ajs6099b3b2004-11-20 02:06:59 +0000116 zlog_warn ("IRDP: can't create irdp socket %s", safe_strerror(errno));
hassoca776982004-06-12 14:33:05 +0000117 return irdp_sock;
118 };
119
120 i = 1;
121 ret = setsockopt (irdp_sock, IPPROTO_IP, IP_TTL,
122 (void *) &i, sizeof (i));
123 if (ret < 0) {
ajs6099b3b2004-11-20 02:06:59 +0000124 zlog_warn ("IRDP: can't do irdp sockopt %s", safe_strerror(errno));
hassoca776982004-06-12 14:33:05 +0000125 return ret;
126 };
127
paul06f953f2004-10-22 17:00:38 +0000128 ret = setsockopt_ifindex (AF_INET, irdp_sock, 1);
hassoca776982004-06-12 14:33:05 +0000129 if (ret < 0) {
ajs6099b3b2004-11-20 02:06:59 +0000130 zlog_warn ("IRDP: can't do irdp sockopt %s", safe_strerror(errno));
hassoca776982004-06-12 14:33:05 +0000131 return ret;
132 };
133
134 t_irdp_raw = thread_add_read (zebrad.master, irdp_read_raw, NULL, irdp_sock);
135
136 return irdp_sock;
137}
138
139
140int get_pref(struct irdp_interface *irdp, struct prefix *p)
141{
paul0c0f9112004-09-24 08:24:42 +0000142 struct listnode *node;
hassoca776982004-06-12 14:33:05 +0000143 struct Adv *adv;
144
145 /* Use default preference or use the override pref */
146
paul0c0f9112004-09-24 08:24:42 +0000147 if( irdp->AdvPrefList == NULL )
148 return irdp->Preference;
hassoca776982004-06-12 14:33:05 +0000149
paul0c0f9112004-09-24 08:24:42 +0000150 LIST_LOOP (irdp->AdvPrefList, adv, node)
hassoca776982004-06-12 14:33:05 +0000151 if( p->u.prefix4.s_addr == adv->ip.s_addr )
152 return adv->pref;
paul0c0f9112004-09-24 08:24:42 +0000153
hassoca776982004-06-12 14:33:05 +0000154 return irdp->Preference;
155}
156
157/* Make ICMP Router Advertisement Message. */
158int make_advertisement_packet (struct interface *ifp,
159 struct prefix *p,
160 struct stream *s)
161{
162 struct zebra_if *zi=ifp->info;
163 struct irdp_interface *irdp=&zi->irdp;
164 int size;
165 int pref;
166 u_int16_t checksum;
167
168 pref = get_pref(irdp, p);
169
170 stream_putc (s, ICMP_ROUTERADVERT); /* Type. */
171 stream_putc (s, 0); /* Code. */
172 stream_putw (s, 0); /* Checksum. */
173 stream_putc (s, 1); /* Num address. */
174 stream_putc (s, 2); /* Address Entry Size. */
175
176 if(irdp->flags & IF_SHUTDOWN)
177 stream_putw (s, 0);
178 else
179 stream_putw (s, irdp->Lifetime);
180
181 stream_putl (s, htonl(p->u.prefix4.s_addr)); /* Router address. */
182 stream_putl (s, pref);
183
184 /* in_cksum return network byte order value */
185 size = 16;
186 checksum = in_cksum (s->data, size);
187 stream_putw_at (s, 2, htons(checksum));
188
189 return size;
190}
191
192void irdp_send(struct interface *ifp,
193 struct prefix *p,
194 struct stream *s)
195{
196 struct zebra_if *zi=ifp->info;
197 struct irdp_interface *irdp=&zi->irdp;
198 u_int32_t dst;
199 u_int32_t ttl=1;
200
201 if (! (ifp->flags & IFF_UP)) return;
202
203 if (irdp->flags & IF_BROADCAST)
204 dst =INADDR_BROADCAST ;
205 else
206 dst = htonl(INADDR_ALLHOSTS_GROUP);
207
208 if(irdp->flags & IF_DEBUG_MESSAGES)
ajsb6178002004-12-07 21:12:56 +0000209 zlog_debug("IRDP: TX Advert on %s %s/%d Holdtime=%d Preference=%d",
hassoca776982004-06-12 14:33:05 +0000210 ifp->name,
211 inet_ntoa(p->u.prefix4),
212 p->prefixlen,
213 irdp->flags & IF_SHUTDOWN? 0 : irdp->Lifetime,
214 get_pref(irdp, p));
215
216 send_packet (ifp, s, dst, p, ttl);
217}
218
219void irdp_advertisement (struct interface *ifp,
220 struct prefix *p)
221{
222 struct stream *s;
223 s = stream_new (128);
224 make_advertisement_packet (ifp, p, s);
225 irdp_send(ifp, p, s);
226}
227
228int irdp_send_thread(struct thread *t_advert)
229{
230 u_int32_t timer, tmp;
231 struct interface *ifp = THREAD_ARG (t_advert);
232 struct zebra_if *zi=ifp->info;
233 struct irdp_interface *irdp=&zi->irdp;
234 struct prefix *p;
paul0c0f9112004-09-24 08:24:42 +0000235 struct listnode *node;
hassoca776982004-06-12 14:33:05 +0000236 struct connected *ifc;
237
238 irdp->flags &= ~IF_SOLICIT;
239
240 if(ifp->connected)
paul0c0f9112004-09-24 08:24:42 +0000241 LIST_LOOP (ifp->connected, ifc, node)
242 {
243 p = ifc->address;
244 irdp_advertisement(ifp, p);
245 irdp->irdp_sent++;
246 }
hassoca776982004-06-12 14:33:05 +0000247
248 tmp = irdp->MaxAdvertInterval-irdp->MinAdvertInterval;
249 timer = (random () % tmp ) + 1;
250 timer = irdp->MinAdvertInterval + timer;
251
252 if(irdp->irdp_sent < MAX_INITIAL_ADVERTISEMENTS &&
253 timer > MAX_INITIAL_ADVERT_INTERVAL )
254 timer= MAX_INITIAL_ADVERT_INTERVAL;
255
256 if(irdp->flags & IF_DEBUG_MISC)
ajsb6178002004-12-07 21:12:56 +0000257 zlog_debug("IRDP: New timer for %s set to %u\n", ifp->name, timer);
hassoca776982004-06-12 14:33:05 +0000258
259 irdp->t_advertise = thread_add_timer(zebrad.master, irdp_send_thread, ifp, timer);
260 return 0;
261}
262
263void irdp_advert_off(struct interface *ifp)
264{
265 struct zebra_if *zi=ifp->info;
266 struct irdp_interface *irdp=&zi->irdp;
paul0c0f9112004-09-24 08:24:42 +0000267 struct listnode *node;
hassoca776982004-06-12 14:33:05 +0000268 int i;
269 struct connected *ifc;
270 struct prefix *p;
271
272 if(irdp->t_advertise) thread_cancel(irdp->t_advertise);
273 irdp->t_advertise = NULL;
274
275 if(ifp->connected)
paul0c0f9112004-09-24 08:24:42 +0000276 LIST_LOOP (ifp->connected, ifc, node)
277 {
278 p = ifc->address;
hassoca776982004-06-12 14:33:05 +0000279
paul0c0f9112004-09-24 08:24:42 +0000280 /* Output some packets with Lifetime 0
281 we should add a wait...
282 */
hassoca776982004-06-12 14:33:05 +0000283
paul0c0f9112004-09-24 08:24:42 +0000284 for(i=0; i< IRDP_LAST_ADVERT_MESSAGES; i++)
285 {
286 irdp->irdp_sent++;
287 irdp_advertisement(ifp, p);
288 }
hassoca776982004-06-12 14:33:05 +0000289 }
hassoca776982004-06-12 14:33:05 +0000290}
291
292
293void process_solicit (struct interface *ifp)
294{
295 struct zebra_if *zi=ifp->info;
296 struct irdp_interface *irdp=&zi->irdp;
297 u_int32_t timer;
298
299 /* When SOLICIT is active we reject further incoming solicits
300 this keeps down the answering rate so we don't have think
301 about DoS attacks here. */
302
303 if( irdp->flags & IF_SOLICIT) return;
304
305 irdp->flags |= IF_SOLICIT;
306 if(irdp->t_advertise) thread_cancel(irdp->t_advertise);
307 irdp->t_advertise = NULL;
308
309 timer = (random () % MAX_RESPONSE_DELAY) + 1;
310
311 irdp->t_advertise = thread_add_timer(zebrad.master,
312 irdp_send_thread,
313 ifp,
314 timer);
315}
316
317void irdp_finish()
318{
319
paul0c0f9112004-09-24 08:24:42 +0000320 struct listnode *node;
hassoca776982004-06-12 14:33:05 +0000321 struct interface *ifp;
322 struct zebra_if *zi;
323 struct irdp_interface *irdp;
324
ajs274a4a42004-12-07 15:39:31 +0000325 zlog_info("IRDP: Received shutdown notification.");
hassoca776982004-06-12 14:33:05 +0000326
327 for (node = listhead (iflist); node; node = nextnode (node))
328 {
329 ifp = getdata(node);
paul0c0f9112004-09-24 08:24:42 +0000330 zi = ifp->info;
331
332 if (!zi)
333 continue;
hassoca776982004-06-12 14:33:05 +0000334 irdp = &zi->irdp;
paul0c0f9112004-09-24 08:24:42 +0000335 if (!irdp)
336 continue;
hassoca776982004-06-12 14:33:05 +0000337
paul0c0f9112004-09-24 08:24:42 +0000338 if (irdp->flags & IF_ACTIVE )
339 {
340 irdp->flags |= IF_SHUTDOWN;
341 irdp_advert_off(ifp);
342 }
hassoca776982004-06-12 14:33:05 +0000343 }
344}
345
346void irdp_init()
347{
348 irdp_sock_init();
349 irdp_if_init ();
350}
351
hassoca776982004-06-12 14:33:05 +0000352#endif /* HAVE_IRDP */
353
354
355
356