1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2008-2011 Lennart Poettering
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
13 systemd 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 Lesser General Public License for more details.
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 #include <sys/socket.h>
24 #include <asm/types.h>
26 #include <linux/netlink.h>
27 #include <linux/rtnetlink.h>
32 #include <arpa/inet.h>
39 int ifconf_acquire_addresses(struct address **_list, unsigned *_n_list) {
48 struct address *list = NULL;
51 fd = socket(PF_NETLINK, SOCK_DGRAM, NETLINK_ROUTE);
55 if (setsockopt(fd, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) {
60 memset(&req, 0, sizeof(req));
61 req.hdr.nlmsg_len = NLMSG_LENGTH(sizeof(struct rtgenmsg));
62 req.hdr.nlmsg_type = RTM_GETADDR;
63 req.hdr.nlmsg_flags = NLM_F_REQUEST|NLM_F_DUMP|NLM_F_ACK;
64 req.hdr.nlmsg_seq = seq;
65 req.hdr.nlmsg_pid = 0;
67 gen = NLMSG_DATA(&req.hdr);
68 gen->rtgen_family = AF_UNSPEC;
70 if (send(fd, &req, req.hdr.nlmsg_len, 0) < 0) {
82 uint8_t cred_buffer[CMSG_SPACE(sizeof(struct ucred))];
85 struct ifaddrmsg ifaddrmsg;
86 uint8_t payload[16*1024];
89 memset(&iov, 0, sizeof(iov));
91 iov.iov_len = sizeof(resp);
93 memset(&msg, 0, sizeof(msg));
98 msg.msg_control = cred_buffer;
99 msg.msg_controllen = sizeof(cred_buffer);
102 bytes = recvmsg(fd, &msg, 0);
108 cmsg = CMSG_FIRSTHDR(&msg);
109 if (!cmsg || cmsg->cmsg_type != SCM_CREDENTIALS) {
114 ucred = (struct ucred*) CMSG_DATA(cmsg);
115 if (ucred->uid != 0 || ucred->pid != 0)
118 for (p = &resp.hdr; bytes > 0; p = NLMSG_NEXT(p, bytes)) {
119 struct ifaddrmsg *ifaddrmsg;
122 void *local = NULL, *address = NULL;
124 if (!NLMSG_OK(p, (size_t) bytes)) {
129 if (p->nlmsg_seq != seq)
132 if (p->nlmsg_type == NLMSG_DONE) {
137 if (p->nlmsg_type == NLMSG_ERROR) {
138 struct nlmsgerr *nlmsgerr;
140 nlmsgerr = NLMSG_DATA(p);
141 r = -nlmsgerr->error;
145 if (p->nlmsg_type != RTM_NEWADDR)
148 ifaddrmsg = NLMSG_DATA(p);
150 if (ifaddrmsg->ifa_family != AF_INET &&
151 ifaddrmsg->ifa_family != AF_INET6)
154 if (ifaddrmsg->ifa_scope == RT_SCOPE_HOST ||
155 ifaddrmsg->ifa_scope == RT_SCOPE_NOWHERE)
158 if (ifaddrmsg->ifa_flags & IFA_F_DEPRECATED)
161 l = NLMSG_PAYLOAD(p, sizeof(struct ifaddrmsg));
162 a = IFA_RTA(ifaddrmsg);
164 while (RTA_OK(a, l)) {
166 if (a->rta_type == IFA_ADDRESS)
167 address = RTA_DATA(a);
168 else if (a->rta_type == IFA_LOCAL)
180 list = realloc(list, (n_list+1) * sizeof(struct address));
186 list[n_list].family = ifaddrmsg->ifa_family;
187 list[n_list].scope = ifaddrmsg->ifa_scope;
188 memcpy(list[n_list].address, address, ifaddrmsg->ifa_family == AF_INET ? 4 : 16);
189 list[n_list].ifindex = ifaddrmsg->ifa_index;
201 qsort(list, n_list, sizeof(struct address), address_compare);