blob: 38ac5a71d6d64f96c03b71dd86eae26a50f4ec38 [file] [log] [blame]
paul88424682004-05-09 18:21:35 +00001/*
2 * Interface looking up by ioctl () on Solaris.
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 "if.h"
26#include "sockunion.h"
27#include "prefix.h"
28#include "ioctl.h"
29#include "connected.h"
30#include "memory.h"
31#include "log.h"
paul48a46fa2004-05-11 10:55:22 +000032#include "privs.h"
paul88424682004-05-09 18:21:35 +000033
34#include "zebra/interface.h"
35
36void lifreq_set_name (struct lifreq *, struct interface *);
37static int if_get_addr (struct interface *, struct sockaddr *);
38static void interface_info_ioctl (struct interface *);
paul48a46fa2004-05-11 10:55:22 +000039extern struct zebra_privs_t zserv_privs;
paul88424682004-05-09 18:21:35 +000040
41int
42interface_list_ioctl (int af)
43{
44 int ret;
45 int sock;
46#define IFNUM_BASE 32
47 struct lifnum lifn;
48 int ifnum;
49 struct lifreq *lifreq;
50 struct lifconf lifconf;
51 struct interface *ifp;
52 int n;
ajs4460e7a2005-01-29 17:07:40 +000053 int save_errno;
paul88424682004-05-09 18:21:35 +000054 size_t needed, lastneeded = 0;
55 char *buf = NULL;
56
57 if (zserv_privs.change(ZPRIVS_RAISE))
58 zlog (NULL, LOG_ERR, "Can't raise privileges");
59
60 sock = socket (af, SOCK_DGRAM, 0);
61 if (sock < 0)
62 {
63 zlog_warn ("Can't make %s socket stream: %s",
ajs6099b3b2004-11-20 02:06:59 +000064 (af == AF_INET ? "AF_INET" : "AF_INET6"), safe_strerror (errno));
paul88424682004-05-09 18:21:35 +000065
66 if (zserv_privs.change(ZPRIVS_LOWER))
67 zlog (NULL, LOG_ERR, "Can't lower privileges");
68
69 return -1;
70 }
71
72calculate_lifc_len: /* must hold privileges to enter here */
73 lifn.lifn_family = af;
74 lifn.lifn_flags = 0;
75 ret = ioctl (sock, SIOCGLIFNUM, &lifn);
ajs4460e7a2005-01-29 17:07:40 +000076 save_errno = errno;
paul88424682004-05-09 18:21:35 +000077
78 if (zserv_privs.change(ZPRIVS_LOWER))
79 zlog (NULL, LOG_ERR, "Can't lower privileges");
80
81 if (ret < 0)
82 {
83 zlog_warn ("interface_list_ioctl: SIOCGLIFNUM failed %s",
ajs4460e7a2005-01-29 17:07:40 +000084 safe_strerror (save_errno));
paul88424682004-05-09 18:21:35 +000085 close (sock);
86 return -1;
87 }
88 ifnum = lifn.lifn_count;
89
90 /*
91 * When calculating the buffer size needed, add a small number
92 * of interfaces to those we counted. We do this to capture
93 * the interface status of potential interfaces which may have
94 * been plumbed between the SIOCGLIFNUM and the SIOCGLIFCONF.
95 */
96 needed = (ifnum + 4) * sizeof (struct lifreq);
97 if (needed > lastneeded || needed < lastneeded / 2)
98 {
99 if (buf != NULL)
100 XFREE (MTYPE_TMP, buf);
101 if ((buf = XMALLOC (MTYPE_TMP, needed)) == NULL)
102 {
103 zlog_warn ("interface_list_ioctl: malloc failed");
104 close (sock);
105 return -1;
106 }
107 }
108 lastneeded = needed;
109
110 lifconf.lifc_family = af;
111 lifconf.lifc_flags = 0;
112 lifconf.lifc_len = needed;
113 lifconf.lifc_buf = buf;
114
115 if (zserv_privs.change(ZPRIVS_RAISE))
116 zlog (NULL, LOG_ERR, "Can't raise privileges");
117
118 ret = ioctl (sock, SIOCGLIFCONF, &lifconf);
119
120 if (ret < 0)
121 {
122 if (errno == EINVAL)
123 goto calculate_lifc_len; /* deliberately hold privileges */
124
ajs6099b3b2004-11-20 02:06:59 +0000125 zlog_warn ("SIOCGLIFCONF: %s", safe_strerror (errno));
paul88424682004-05-09 18:21:35 +0000126
127 if (zserv_privs.change(ZPRIVS_LOWER))
128 zlog (NULL, LOG_ERR, "Can't lower privileges");
129
130 goto end;
131 }
132
133 if (zserv_privs.change(ZPRIVS_LOWER))
134 zlog (NULL, LOG_ERR, "Can't lower privileges");
135
136 /* Allocate interface. */
137 lifreq = lifconf.lifc_req;
138
139 for (n = 0; n < lifconf.lifc_len; n += sizeof (struct lifreq))
140 {
141 ifp = if_get_by_name (lifreq->lifr_name);
paul5b73a672004-07-23 15:26:14 +0000142
paul88424682004-05-09 18:21:35 +0000143 if (lifreq->lifr_addr.ss_family == AF_INET)
144 ifp->flags |= IFF_IPV4;
paul5b73a672004-07-23 15:26:14 +0000145
paul88424682004-05-09 18:21:35 +0000146 if (lifreq->lifr_addr.ss_family == AF_INET6)
paul5b73a672004-07-23 15:26:14 +0000147 {
148#ifdef HAVE_IPV6
149 ifp->flags |= IFF_IPV6;
150#else
151 lifreq++;
152 continue;
153#endif /* HAVE_IPV6 */
154 }
155
paul88424682004-05-09 18:21:35 +0000156 if_add_update (ifp);
paul5b73a672004-07-23 15:26:14 +0000157
paul88424682004-05-09 18:21:35 +0000158 interface_info_ioctl (ifp);
159 if_get_addr (ifp, (struct sockaddr *) &lifreq->lifr_addr);
160 lifreq++;
161 }
162
163end:
164 close (sock);
165 XFREE (MTYPE_TMP, lifconf.lifc_buf);
166 return ret;
167}
168
169/* Get interface's index by ioctl. */
170int
171if_get_index (struct interface *ifp)
172{
173 int ret;
174 struct lifreq lifreq;
175
176 lifreq_set_name (&lifreq, ifp);
177
paul88424682004-05-09 18:21:35 +0000178 if (ifp->flags & IFF_IPV4)
179 ret = AF_IOCTL (AF_INET, SIOCGLIFINDEX, (caddr_t) & lifreq);
180 else if (ifp->flags & IFF_IPV6)
181 ret = AF_IOCTL (AF_INET6, SIOCGLIFINDEX, (caddr_t) & lifreq);
182 else
183 ret = -1;
184
paul88424682004-05-09 18:21:35 +0000185 if (ret < 0)
186 {
187 zlog_warn ("SIOCGLIFINDEX(%s) failed", ifp->name);
188 return ret;
189 }
190
191 /* OK we got interface index. */
192#ifdef ifr_ifindex
193 ifp->ifindex = lifreq.lifr_ifindex;
194#else
195 ifp->ifindex = lifreq.lifr_index;
196#endif
197 return ifp->ifindex;
198
199}
200
201
202/* Interface address lookup by ioctl. This function only looks up
203 IPv4 address. */
204#define ADDRLEN(sa) (((sa)->sa_family == AF_INET ? \
205 sizeof (struct sockaddr_in) : sizeof (struct sockaddr_in6)))
206
207#define SIN(s) ((struct sockaddr_in *)(s))
208#define SIN6(s) ((struct sockaddr_in6 *)(s))
209
210static int
211if_get_addr (struct interface *ifp, struct sockaddr *addr)
212{
213 int ret;
214 struct lifreq lifreq;
215 struct sockaddr_storage mask, dest;
216 char *dest_pnt = NULL;
217 u_char prefixlen = 0;
218 afi_t af;
219
220 /* Interface's name and address family. */
221 strncpy (lifreq.lifr_name, ifp->name, IFNAMSIZ);
222
223 /* Interface's address. */
224 memcpy (&lifreq.lifr_addr, addr, ADDRLEN (addr));
225 af = addr->sa_family;
226
227 /* Point to point or broad cast address pointer init. */
228 dest_pnt = NULL;
229
230 if (ifp->flags & IFF_POINTOPOINT)
231 {
paul88424682004-05-09 18:21:35 +0000232 ret = AF_IOCTL (af, SIOCGLIFDSTADDR, (caddr_t) & lifreq);
paul88424682004-05-09 18:21:35 +0000233
234 if (ret < 0)
235 {
236 zlog_warn ("SIOCGLIFDSTADDR (%s) fail: %s",
ajs6099b3b2004-11-20 02:06:59 +0000237 ifp->name, safe_strerror (errno));
paul88424682004-05-09 18:21:35 +0000238 return ret;
239 }
240 memcpy (&dest, &lifreq.lifr_dstaddr, ADDRLEN (addr));
241 if (af == AF_INET)
242 dest_pnt = (char *) &(SIN (&dest)->sin_addr);
243 else
244 dest_pnt = (char *) &(SIN6 (&dest)->sin6_addr);
245 }
246
247 if (af == AF_INET)
248 {
249 ret = if_ioctl (SIOCGLIFNETMASK, (caddr_t) & lifreq);
250
251 if (ret < 0)
252 {
253 if (errno != EADDRNOTAVAIL)
254 {
255 zlog_warn ("SIOCGLIFNETMASK (%s) fail: %s", ifp->name,
ajs6099b3b2004-11-20 02:06:59 +0000256 safe_strerror (errno));
paul88424682004-05-09 18:21:35 +0000257 return ret;
258 }
259 return 0;
260 }
261 memcpy (&mask, &lifreq.lifr_addr, ADDRLEN (addr));
262
263 prefixlen = ip_masklen (SIN (&mask)->sin_addr);
264 if (ifp->flags & IFF_BROADCAST)
265 {
266 ret = if_ioctl (SIOCGLIFBRDADDR, (caddr_t) & lifreq);
267 if (ret < 0)
268 {
269 if (errno != EADDRNOTAVAIL)
270 {
271 zlog_warn ("SIOCGLIFBRDADDR (%s) fail: %s",
ajs6099b3b2004-11-20 02:06:59 +0000272 ifp->name, safe_strerror (errno));
paul88424682004-05-09 18:21:35 +0000273 return ret;
274 }
275 return 0;
276 }
277 memcpy (&dest, &lifreq.lifr_broadaddr, sizeof (struct sockaddr_in));
278 dest_pnt = (char *) &SIN (&dest)->sin_addr;
279 }
280 }
paul5b73a672004-07-23 15:26:14 +0000281#ifdef HAVE_IPV6
282 else if (af == AF_INET6)
paul88424682004-05-09 18:21:35 +0000283 {
284 if (ifp->flags & IFF_POINTOPOINT)
285 {
286 prefixlen = IPV6_MAX_BITLEN;
287 }
288 else
289 {
290 ret = if_ioctl_ipv6 (SIOCGLIFSUBNET, (caddr_t) & lifreq);
291 if (ret < 0)
292 {
293 zlog_warn ("SIOCGLIFSUBNET (%s) fail: %s",
ajs6099b3b2004-11-20 02:06:59 +0000294 ifp->name, safe_strerror (errno));
paul88424682004-05-09 18:21:35 +0000295 }
296 else
297 {
298 prefixlen = lifreq.lifr_addrlen;
299 }
300 }
301 }
paul5b73a672004-07-23 15:26:14 +0000302#endif /* HAVE_IPV6 */
paul88424682004-05-09 18:21:35 +0000303
304 /* Set address to the interface. */
305 if (af == AF_INET)
306 connected_add_ipv4 (ifp, 0, &SIN (addr)->sin_addr, prefixlen,
307 (struct in_addr *) dest_pnt, NULL);
paul5b73a672004-07-23 15:26:14 +0000308#ifdef HAVE_IPV6
309 else if (af == AF_INET6)
paul88424682004-05-09 18:21:35 +0000310 connected_add_ipv6 (ifp, &SIN6 (addr)->sin6_addr, prefixlen,
311 (struct in6_addr *) dest_pnt);
paul5b73a672004-07-23 15:26:14 +0000312#endif /* HAVE_IPV6 */
paul88424682004-05-09 18:21:35 +0000313
314 return 0;
315}
316
317/* Fetch interface information via ioctl(). */
318static void
319interface_info_ioctl (struct interface *ifp)
320{
321 if_get_index (ifp);
322 if_get_flags (ifp);
323 if_get_mtu (ifp);
324 if_get_metric (ifp);
325}
326
327/* Lookup all interface information. */
328void
329interface_list ()
330{
331 interface_list_ioctl (AF_INET);
332 interface_list_ioctl (AF_INET6);
333}
334
335struct connected *
336if_lookup_linklocal (struct interface *ifp)
337{
paul5b73a672004-07-23 15:26:14 +0000338#ifdef HAVE_IPV6
paul0c0f9112004-09-24 08:24:42 +0000339 struct listnode *node;
paul88424682004-05-09 18:21:35 +0000340 struct connected *ifc;
341
342 if (ifp == NULL)
343 return NULL;
344
paul0c0f9112004-09-24 08:24:42 +0000345 LIST_LOOP (ifp->connected, ifc, node)
paul88424682004-05-09 18:21:35 +0000346 {
paul88424682004-05-09 18:21:35 +0000347 if ((ifc->address->family == AF_INET6) &&
348 (IN6_IS_ADDR_LINKLOCAL (&ifc->address->u.prefix6)))
349 return ifc;
350 }
paul5b73a672004-07-23 15:26:14 +0000351#endif /* HAVE_IPV6 */
352
paul88424682004-05-09 18:21:35 +0000353 return NULL;
354}