blob: f699b147d817bf714ed500e54b082d2ad89fbe94 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Address linked list routine.
3 * Copyright (C) 1997, 98 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2, or (at your option) any
10 * later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the Free
19 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 * 02111-1307, USA.
21 */
22
23#include <zebra.h>
24
25#include "prefix.h"
26#include "linklist.h"
27#include "if.h"
28#include "table.h"
29#include "rib.h"
30#include "table.h"
31#include "log.h"
paul0752ef02005-11-03 12:35:21 +000032#include "memory.h"
paul718e3742002-12-13 20:15:29 +000033
34#include "zebra/zserv.h"
35#include "zebra/redistribute.h"
hassoeef1fe12004-10-03 18:46:08 +000036#include "zebra/interface.h"
paula1ac18c2005-06-28 17:17:12 +000037#include "zebra/connected.h"
Denis Ovsienko6ce80bd2007-11-12 14:55:01 +000038extern struct zebra_t zebrad;
paul718e3742002-12-13 20:15:29 +000039
paulca162182005-09-12 16:58:52 +000040/* withdraw a connected address */
41static void
42connected_withdraw (struct connected *ifc)
43{
44 if (! ifc)
45 return;
46
47 /* Update interface address information to protocol daemon. */
48 if (CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
49 {
50 zebra_interface_address_delete_update (ifc->ifp, ifc);
51
52 if_subnet_delete (ifc->ifp, ifc);
53
54 if (ifc->address->family == AF_INET)
55 connected_down_ipv4 (ifc->ifp, ifc);
vincentaa2e32b2005-09-28 13:42:11 +000056#ifdef HAVE_IPV6
paulca162182005-09-12 16:58:52 +000057 else
58 connected_down_ipv6 (ifc->ifp, ifc);
vincentaa2e32b2005-09-28 13:42:11 +000059#endif
paulca162182005-09-12 16:58:52 +000060
61 UNSET_FLAG (ifc->conf, ZEBRA_IFC_REAL);
62 }
63
Andrew J. Schorr9c378512006-05-21 04:04:49 +000064 if (!CHECK_FLAG (ifc->conf, ZEBRA_IFC_CONFIGURED))
65 {
66 listnode_delete (ifc->ifp->connected, ifc);
67 connected_free (ifc);
68 }
paulca162182005-09-12 16:58:52 +000069}
70
71static void
72connected_announce (struct interface *ifp, struct connected *ifc)
73{
74 if (!ifc)
75 return;
76
77 listnode_add (ifp->connected, ifc);
78
79 /* Update interface address information to protocol daemon. */
80 if (! CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
81 {
82 if (ifc->address->family == AF_INET)
83 if_subnet_add (ifp, ifc);
84
85 SET_FLAG (ifc->conf, ZEBRA_IFC_REAL);
86
87 zebra_interface_address_add_update (ifp, ifc);
88
Stephen Hemmingerfd213252008-07-05 16:32:37 -070089 if (if_is_operative(ifp))
paulca162182005-09-12 16:58:52 +000090 {
91 if (ifc->address->family == AF_INET)
92 connected_up_ipv4 (ifp, ifc);
vincentaa2e32b2005-09-28 13:42:11 +000093#ifdef HAVE_IPV6
paulca162182005-09-12 16:58:52 +000094 else
95 connected_up_ipv6 (ifp, ifc);
vincentaa2e32b2005-09-28 13:42:11 +000096#endif
paulca162182005-09-12 16:58:52 +000097 }
98 }
99}
100
paul718e3742002-12-13 20:15:29 +0000101/* If same interface address is already exist... */
102struct connected *
paulca162182005-09-12 16:58:52 +0000103connected_check (struct interface *ifp, struct prefix *p)
paul718e3742002-12-13 20:15:29 +0000104{
105 struct connected *ifc;
hasso52dc7ee2004-09-23 19:18:23 +0000106 struct listnode *node;
paul718e3742002-12-13 20:15:29 +0000107
paul1eb8ef22005-04-07 07:30:20 +0000108 for (ALL_LIST_ELEMENTS_RO (ifp->connected, node, ifc))
109 if (prefix_same (ifc->address, p))
110 return ifc;
paul718e3742002-12-13 20:15:29 +0000111
paul718e3742002-12-13 20:15:29 +0000112 return NULL;
113}
114
Paul Jakma74ecdc92006-06-15 18:10:47 +0000115/* Check if two ifc's describe the same address */
116static int
117connected_same (struct connected *ifc1, struct connected *ifc2)
118{
119 if (ifc1->ifp != ifc2->ifp)
120 return 0;
121
122 if (ifc1->destination)
123 if (!ifc2->destination)
124 return 0;
125 if (ifc2->destination)
126 if (!ifc1->destination)
127 return 0;
128
129 if (ifc1->destination && ifc2->destination)
130 if (!prefix_same (ifc1->destination, ifc2->destination))
131 return 0;
132
133 if (ifc1->flags != ifc2->flags)
134 return 0;
135
136 return 1;
137}
138
139/* Handle implicit withdrawals of addresses, where a system ADDs an address
140 * to an interface which already has the same address configured.
141 *
142 * Returns the struct connected which must be announced to clients,
143 * or NULL if nothing to do.
144 */
145static struct connected *
146connected_implicit_withdraw (struct interface *ifp, struct connected *ifc)
147{
148 struct connected *current;
149
150 /* Check same connected route. */
151 if ((current = connected_check (ifp, (struct prefix *) ifc->address)))
152 {
153 if (CHECK_FLAG(current->conf, ZEBRA_IFC_CONFIGURED))
154 SET_FLAG(ifc->conf, ZEBRA_IFC_CONFIGURED);
155
156 /* Avoid spurious withdraws, this might be just the kernel 'reflecting'
157 * back an address we have already added.
158 */
David Young33b931e2007-04-16 05:54:02 +0000159 if (connected_same (current, ifc) && CHECK_FLAG(current->conf, ZEBRA_IFC_REAL))
Paul Jakma74ecdc92006-06-15 18:10:47 +0000160 {
161 /* nothing to do */
162 connected_free (ifc);
163 return NULL;
164 }
165
166 UNSET_FLAG(current->conf, ZEBRA_IFC_CONFIGURED);
167 connected_withdraw (current); /* implicit withdraw - freebsd does this */
168 }
169 return ifc;
170}
171
paul718e3742002-12-13 20:15:29 +0000172/* Called from if_up(). */
173void
174connected_up_ipv4 (struct interface *ifp, struct connected *ifc)
175{
176 struct prefix_ipv4 p;
paul718e3742002-12-13 20:15:29 +0000177
178 if (! CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
179 return;
180
Andrew J. Schorre4529632006-12-12 19:18:21 +0000181 PREFIX_COPY_IPV4(&p, CONNECTED_PREFIX(ifc));
paul718e3742002-12-13 20:15:29 +0000182
183 /* Apply mask to the network. */
184 apply_mask_ipv4 (&p);
185
186 /* In case of connected address is 0.0.0.0/0 we treat it tunnel
187 address. */
188 if (prefix_ipv4_any (&p))
189 return;
190
Paul Jakma7514fb72007-05-02 16:05:35 +0000191 rib_add_ipv4 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, NULL, ifp->ifindex,
G.Balajicddf3912011-11-26 21:59:32 +0400192 RT_TABLE_MAIN, ifp->metric, 0, SAFI_UNICAST);
paul718e3742002-12-13 20:15:29 +0000193
194 rib_update ();
195}
196
197/* Add connected IPv4 route to the interface. */
198void
199connected_add_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,
pauld06b2a62005-10-11 03:53:54 +0000200 u_char prefixlen, struct in_addr *broad,
201 const char *label)
paul718e3742002-12-13 20:15:29 +0000202{
203 struct prefix_ipv4 *p;
204 struct connected *ifc;
paul718e3742002-12-13 20:15:29 +0000205
206 /* Make connected structure. */
207 ifc = connected_new ();
208 ifc->ifp = ifp;
209 ifc->flags = flags;
210
211 /* Allocate new connected address. */
212 p = prefix_ipv4_new ();
213 p->family = AF_INET;
214 p->prefix = *addr;
215 p->prefixlen = prefixlen;
216 ifc->address = (struct prefix *) p;
paulca162182005-09-12 16:58:52 +0000217
Andrew J. Schorre4529632006-12-12 19:18:21 +0000218 /* If there is broadcast or peer address. */
paul718e3742002-12-13 20:15:29 +0000219 if (broad)
220 {
221 p = prefix_ipv4_new ();
222 p->family = AF_INET;
223 p->prefix = *broad;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000224 p->prefixlen = prefixlen;
paul718e3742002-12-13 20:15:29 +0000225 ifc->destination = (struct prefix *) p;
hasso3fb9cd62004-10-19 19:44:43 +0000226
227 /* validate the destination address */
Andrew J. Schorre4529632006-12-12 19:18:21 +0000228 if (CONNECTED_PEER(ifc))
hasso3fb9cd62004-10-19 19:44:43 +0000229 {
230 if (IPV4_ADDR_SAME(addr,broad))
Andrew J. Schorre4529632006-12-12 19:18:21 +0000231 zlog_warn("warning: interface %s has same local and peer "
hasso3fb9cd62004-10-19 19:44:43 +0000232 "address %s, routing protocols may malfunction",
233 ifp->name,inet_ntoa(*addr));
hasso3fb9cd62004-10-19 19:44:43 +0000234 }
235 else
236 {
237 if (broad->s_addr != ipv4_broadcast_addr(addr->s_addr,prefixlen))
238 {
239 char buf[2][INET_ADDRSTRLEN];
240 struct in_addr bcalc;
241 bcalc.s_addr = ipv4_broadcast_addr(addr->s_addr,prefixlen);
242 zlog_warn("warning: interface %s broadcast addr %s/%d != "
243 "calculated %s, routing protocols may malfunction",
244 ifp->name,
245 inet_ntop (AF_INET, broad, buf[0], sizeof(buf[0])),
246 prefixlen,
247 inet_ntop (AF_INET, &bcalc, buf[1], sizeof(buf[1])));
248 }
249 }
250
paul718e3742002-12-13 20:15:29 +0000251 }
hasso3fb9cd62004-10-19 19:44:43 +0000252 else
Andrew J. Schorre4529632006-12-12 19:18:21 +0000253 {
254 if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER))
255 {
256 zlog_warn("warning: %s called for interface %s "
257 "with peer flag set, but no peer address supplied",
258 __func__, ifp->name);
259 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
260 }
261
262 /* no broadcast or destination address was supplied */
263 if ((prefixlen == IPV4_MAX_PREFIXLEN) && if_is_pointopoint(ifp))
264 zlog_warn("warning: PtP interface %s with addr %s/%d needs a "
265 "peer address",ifp->name,inet_ntoa(*addr),prefixlen);
266 }
paul718e3742002-12-13 20:15:29 +0000267
268 /* Label of this address. */
269 if (label)
paul0752ef02005-11-03 12:35:21 +0000270 ifc->label = XSTRDUP (MTYPE_CONNECTED_LABEL, label);
paul718e3742002-12-13 20:15:29 +0000271
Paul Jakma74ecdc92006-06-15 18:10:47 +0000272 /* nothing to do? */
273 if ((ifc = connected_implicit_withdraw (ifp, ifc)) == NULL)
274 return;
paulca162182005-09-12 16:58:52 +0000275
276 connected_announce (ifp, ifc);
paul718e3742002-12-13 20:15:29 +0000277}
278
279void
280connected_down_ipv4 (struct interface *ifp, struct connected *ifc)
281{
282 struct prefix_ipv4 p;
paul718e3742002-12-13 20:15:29 +0000283
284 if (! CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
285 return;
286
Andrew J. Schorre4529632006-12-12 19:18:21 +0000287 PREFIX_COPY_IPV4(&p, CONNECTED_PREFIX(ifc));
paul718e3742002-12-13 20:15:29 +0000288
289 /* Apply mask to the network. */
290 apply_mask_ipv4 (&p);
291
292 /* In case of connected address is 0.0.0.0/0 we treat it tunnel
293 address. */
294 if (prefix_ipv4_any (&p))
295 return;
296
Denis Ovsienko6ce80bd2007-11-12 14:55:01 +0000297 /* Same logic as for connected_up_ipv4(): push the changes into the head. */
G.Balajicddf3912011-11-26 21:59:32 +0400298 rib_delete_ipv4 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0, SAFI_UNICAST);
paul718e3742002-12-13 20:15:29 +0000299
300 rib_update ();
301}
302
303/* Delete connected IPv4 route to the interface. */
304void
305connected_delete_ipv4 (struct interface *ifp, int flags, struct in_addr *addr,
paul0752ef02005-11-03 12:35:21 +0000306 u_char prefixlen, struct in_addr *broad)
paul718e3742002-12-13 20:15:29 +0000307{
308 struct prefix_ipv4 p;
309 struct connected *ifc;
310
311 memset (&p, 0, sizeof (struct prefix_ipv4));
312 p.family = AF_INET;
313 p.prefix = *addr;
314 p.prefixlen = prefixlen;
315
paulca162182005-09-12 16:58:52 +0000316 ifc = connected_check (ifp, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +0000317 if (! ifc)
318 return;
paulca162182005-09-12 16:58:52 +0000319
320 connected_withdraw (ifc);
Stephen Hemminger90d2ab02009-04-29 21:54:59 -0700321
322 rib_update();
paul718e3742002-12-13 20:15:29 +0000323}
324
325#ifdef HAVE_IPV6
paul718e3742002-12-13 20:15:29 +0000326void
327connected_up_ipv6 (struct interface *ifp, struct connected *ifc)
328{
329 struct prefix_ipv6 p;
paul718e3742002-12-13 20:15:29 +0000330
331 if (! CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
332 return;
333
Andrew J. Schorre4529632006-12-12 19:18:21 +0000334 PREFIX_COPY_IPV6(&p, CONNECTED_PREFIX(ifc));
paul718e3742002-12-13 20:15:29 +0000335
336 /* Apply mask to the network. */
337 apply_mask_ipv6 (&p);
338
hasso726f9b22003-05-25 21:04:54 +0000339#if ! defined (MUSICA) && ! defined (LINUX)
340 /* XXX: It is already done by rib_bogus_ipv6 within rib_add_ipv6 */
paul718e3742002-12-13 20:15:29 +0000341 if (IN6_IS_ADDR_UNSPECIFIED (&p.prefix))
342 return;
hasso726f9b22003-05-25 21:04:54 +0000343#endif
paul718e3742002-12-13 20:15:29 +0000344
Mathieu Goessensd13c3b42009-06-23 15:59:45 +0100345 rib_add_ipv6 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, RT_TABLE_MAIN,
G.Balajif768f362011-11-26 22:10:39 +0400346 ifp->metric, 0, SAFI_UNICAST);
paul718e3742002-12-13 20:15:29 +0000347
348 rib_update ();
349}
350
351/* Add connected IPv6 route to the interface. */
352void
Andrew J. Schorre4529632006-12-12 19:18:21 +0000353connected_add_ipv6 (struct interface *ifp, int flags, struct in6_addr *addr,
paul89368d92005-11-26 09:14:07 +0000354 u_char prefixlen, struct in6_addr *broad,
355 const char *label)
paul718e3742002-12-13 20:15:29 +0000356{
357 struct prefix_ipv6 *p;
358 struct connected *ifc;
paul718e3742002-12-13 20:15:29 +0000359
360 /* Make connected structure. */
361 ifc = connected_new ();
362 ifc->ifp = ifp;
Andrew J. Schorre4529632006-12-12 19:18:21 +0000363 ifc->flags = flags;
paul718e3742002-12-13 20:15:29 +0000364
365 /* Allocate new connected address. */
366 p = prefix_ipv6_new ();
367 p->family = AF_INET6;
368 IPV6_ADDR_COPY (&p->prefix, addr);
369 p->prefixlen = prefixlen;
370 ifc->address = (struct prefix *) p;
371
Andrew J. Schorre4529632006-12-12 19:18:21 +0000372 /* If there is broadcast or peer address. */
paul718e3742002-12-13 20:15:29 +0000373 if (broad)
374 {
Andrew J. Schorre4529632006-12-12 19:18:21 +0000375 if (IN6_IS_ADDR_UNSPECIFIED(broad))
376 zlog_warn("warning: %s called for interface %s with unspecified "
377 "destination address; ignoring!", __func__, ifp->name);
378 else
379 {
380 p = prefix_ipv6_new ();
381 p->family = AF_INET6;
382 IPV6_ADDR_COPY (&p->prefix, broad);
383 p->prefixlen = prefixlen;
384 ifc->destination = (struct prefix *) p;
385 }
386 }
387 if (CHECK_FLAG(ifc->flags, ZEBRA_IFA_PEER) && !ifc->destination)
388 {
389 zlog_warn("warning: %s called for interface %s "
390 "with peer flag set, but no peer address supplied",
391 __func__, ifp->name);
392 UNSET_FLAG(ifc->flags, ZEBRA_IFA_PEER);
paul718e3742002-12-13 20:15:29 +0000393 }
394
paul0752ef02005-11-03 12:35:21 +0000395 /* Label of this address. */
396 if (label)
397 ifc->label = XSTRDUP (MTYPE_CONNECTED_LABEL, label);
398
Paul Jakma74ecdc92006-06-15 18:10:47 +0000399 if ((ifc = connected_implicit_withdraw (ifp, ifc)) == NULL)
400 return;
paulca162182005-09-12 16:58:52 +0000401
402 connected_announce (ifp, ifc);
paul718e3742002-12-13 20:15:29 +0000403}
404
405void
406connected_down_ipv6 (struct interface *ifp, struct connected *ifc)
407{
408 struct prefix_ipv6 p;
paul718e3742002-12-13 20:15:29 +0000409
410 if (! CHECK_FLAG (ifc->conf, ZEBRA_IFC_REAL))
411 return;
412
Andrew J. Schorre4529632006-12-12 19:18:21 +0000413 PREFIX_COPY_IPV6(&p, CONNECTED_PREFIX(ifc));
paul718e3742002-12-13 20:15:29 +0000414
415 apply_mask_ipv6 (&p);
416
417 if (IN6_IS_ADDR_UNSPECIFIED (&p.prefix))
418 return;
419
G.Balajif768f362011-11-26 22:10:39 +0400420 rib_delete_ipv6 (ZEBRA_ROUTE_CONNECT, 0, &p, NULL, ifp->ifindex, 0, SAFI_UNICAST);
paul718e3742002-12-13 20:15:29 +0000421
422 rib_update ();
423}
424
425void
426connected_delete_ipv6 (struct interface *ifp, struct in6_addr *address,
hassofce954f2004-10-07 20:29:24 +0000427 u_char prefixlen, struct in6_addr *broad)
paul718e3742002-12-13 20:15:29 +0000428{
429 struct prefix_ipv6 p;
430 struct connected *ifc;
431
432 memset (&p, 0, sizeof (struct prefix_ipv6));
433 p.family = AF_INET6;
434 memcpy (&p.prefix, address, sizeof (struct in6_addr));
435 p.prefixlen = prefixlen;
436
paulca162182005-09-12 16:58:52 +0000437 ifc = connected_check (ifp, (struct prefix *) &p);
paul718e3742002-12-13 20:15:29 +0000438 if (! ifc)
439 return;
440
paulca162182005-09-12 16:58:52 +0000441 connected_withdraw (ifc);
Stephen Hemminger90d2ab02009-04-29 21:54:59 -0700442
443 rib_update();
paul718e3742002-12-13 20:15:29 +0000444}
445#endif /* HAVE_IPV6 */