chiark / gitweb /
sd-icmp6-nd: Add Router Solicitation and Advertisement support
[elogind.git] / src / libsystemd-network / dhcp6-network.c
1 /***
2   This file is part of systemd.
3
4   Copyright (C) 2014 Intel Corporation. All rights reserved.
5
6   systemd is free software; you can redistribute it and/or modify it
7   under the terms of the GNU Lesser General Public License as published by
8   the Free Software Foundation; either version 2.1 of the License, or
9   (at your option) any later version.
10
11   systemd is distributed in the hope that it will be useful, but
12   WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14   Lesser General Public License for more details.
15
16   You should have received a copy of the GNU Lesser General Public License
17   along with systemd; If not, see <http://www.gnu.org/licenses/>.
18 ***/
19
20 #include <errno.h>
21 #include <sys/types.h>
22 #include <sys/socket.h>
23 #include <string.h>
24 #include <linux/if_packet.h>
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <netinet/ip6.h>
28 #include <netinet/icmp6.h>
29 #include <netinet/in.h>
30
31 #include "socket-util.h"
32
33 #include "dhcp6-internal.h"
34
35 #define IN6ADDR_ALL_ROUTERS_MULTICAST_INIT \
36         { { { 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
37               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02 } } }
38
39 #define IN6ADDR_ALL_NODES_MULTICAST_INIT \
40         { { { 0xff, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, \
41               0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01 } } }
42
43 int dhcp_network_icmp6_bind_router_solicitation(int index)
44 {
45         struct icmp6_filter filter = { };
46         struct ipv6_mreq mreq = {
47                 .ipv6mr_multiaddr = IN6ADDR_ALL_NODES_MULTICAST_INIT,
48                 .ipv6mr_interface = index,
49         };
50         _cleanup_close_ int s = -1;
51         int r, zero = 0, hops = 255;
52
53         s = socket(AF_INET6, SOCK_RAW | SOCK_CLOEXEC | SOCK_NONBLOCK,
54                    IPPROTO_ICMPV6);
55         if (s < 0)
56                 return -errno;
57
58         ICMP6_FILTER_SETBLOCKALL(&filter);
59         ICMP6_FILTER_SETPASS(ND_ROUTER_ADVERT, &filter);
60         r = setsockopt(s, IPPROTO_ICMPV6, ICMP6_FILTER, &filter,
61                        sizeof(filter));
62         if (r < 0)
63                 return -errno;
64
65         /* RFC 3315, section 6.7, bullet point 2 may indicate that an
66            IPV6_PKTINFO socket option also applies for ICMPv6 multicast.
67            Empirical experiments indicates otherwise and therefore an
68            IPV6_MULTICAST_IF socket option is used here instead */
69         r = setsockopt(s, IPPROTO_IPV6, IPV6_MULTICAST_IF, &index,
70                        sizeof(index));
71         if (r < 0)
72                 return -errno;
73
74         r = setsockopt(s, IPPROTO_IPV6, IPV6_MULTICAST_LOOP, &zero,
75                        sizeof(zero));
76         if (r < 0)
77                 return -errno;
78
79         r = setsockopt(s, IPPROTO_IPV6, IPV6_MULTICAST_HOPS, &hops,
80                        sizeof(hops));
81         if (r < 0)
82                 return -errno;
83
84         r = setsockopt(s, IPPROTO_IPV6, IPV6_ADD_MEMBERSHIP, &mreq,
85                        sizeof(mreq));
86         if (r < 0)
87                 return -errno;
88
89         r = s;
90         s = -1;
91         return r;
92 }
93
94 int dhcp_network_icmp6_send_router_solicitation(int s, const struct ether_addr *ether_addr)
95 {
96         struct sockaddr_in6 dst = {
97                 .sin6_family = AF_INET6,
98                 .sin6_addr = IN6ADDR_ALL_ROUTERS_MULTICAST_INIT,
99         };
100         struct {
101                 struct nd_router_solicit rs;
102                 struct nd_opt_hdr rs_opt;
103                 struct ether_addr rs_opt_mac;
104         } _packed_ rs = {
105                 .rs.nd_rs_type = ND_ROUTER_SOLICIT,
106         };
107         struct iovec iov[1] = {
108                 { &rs, },
109         };
110         struct msghdr msg = {
111                 .msg_name = &dst,
112                 .msg_namelen = sizeof(dst),
113                 .msg_iov = iov,
114                 .msg_iovlen = 1,
115         };
116         int r;
117
118         if (ether_addr) {
119                 memcpy(&rs.rs_opt_mac, ether_addr, ETH_ALEN);
120                 rs.rs_opt.nd_opt_type = ND_OPT_SOURCE_LINKADDR;
121                 rs.rs_opt.nd_opt_len = 1;
122                 iov[0].iov_len = sizeof(rs);
123         } else
124                 iov[0].iov_len = sizeof(rs.rs);
125
126         r = sendmsg(s, &msg, 0);
127         if (r < 0)
128                 return -errno;
129
130         return 0;
131 }