GNU Linux-libre 4.9.333-gnu1
[releases.git] / net / ipv6 / ping.c
1 /*
2  * INET         An implementation of the TCP/IP protocol suite for the LINUX
3  *              operating system.  INET is implemented using the  BSD Socket
4  *              interface as the means of communication with the user level.
5  *
6  *              "Ping" sockets
7  *
8  *              This program is free software; you can redistribute it and/or
9  *              modify it under the terms of the GNU General Public License
10  *              as published by the Free Software Foundation; either version
11  *              2 of the License, or (at your option) any later version.
12  *
13  * Based on ipv4/ping.c code.
14  *
15  * Authors:     Lorenzo Colitti (IPv6 support)
16  *              Vasiliy Kulikov / Openwall (IPv4 implementation, for Linux 2.6),
17  *              Pavel Kankovsky (IPv4 implementation, for Linux 2.4.32)
18  *
19  */
20
21 #include <net/addrconf.h>
22 #include <net/ipv6.h>
23 #include <net/ip6_route.h>
24 #include <net/protocol.h>
25 #include <net/udp.h>
26 #include <net/transp_v6.h>
27 #include <net/ping.h>
28
29 static void ping_v6_destroy(struct sock *sk)
30 {
31         inet6_destroy_sock(sk);
32 }
33
34 /* Compatibility glue so we can support IPv6 when it's compiled as a module */
35 static int dummy_ipv6_recv_error(struct sock *sk, struct msghdr *msg, int len,
36                                  int *addr_len)
37 {
38         return -EAFNOSUPPORT;
39 }
40 static void dummy_ip6_datagram_recv_ctl(struct sock *sk, struct msghdr *msg,
41                                        struct sk_buff *skb)
42 {
43 }
44 static int dummy_icmpv6_err_convert(u8 type, u8 code, int *err)
45 {
46         return -EAFNOSUPPORT;
47 }
48 static void dummy_ipv6_icmp_error(struct sock *sk, struct sk_buff *skb, int err,
49                                   __be16 port, u32 info, u8 *payload) {}
50 static int dummy_ipv6_chk_addr(struct net *net, const struct in6_addr *addr,
51                                const struct net_device *dev, int strict)
52 {
53         return 0;
54 }
55
56 static int ping_v6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
57 {
58         struct inet_sock *inet = inet_sk(sk);
59         struct ipv6_pinfo *np = inet6_sk(sk);
60         struct icmp6hdr user_icmph;
61         int addr_type;
62         struct in6_addr *daddr;
63         int oif = 0;
64         struct flowi6 fl6;
65         int err;
66         struct dst_entry *dst;
67         struct rt6_info *rt;
68         struct pingfakehdr pfh;
69         struct sockcm_cookie junk = {0};
70         struct ipcm6_cookie ipc6;
71
72         pr_debug("ping_v6_sendmsg(sk=%p,sk->num=%u)\n", inet, inet->inet_num);
73
74         err = ping_common_sendmsg(AF_INET6, msg, len, &user_icmph,
75                                   sizeof(user_icmph));
76         if (err)
77                 return err;
78
79         if (msg->msg_name) {
80                 DECLARE_SOCKADDR(struct sockaddr_in6 *, u, msg->msg_name);
81                 if (msg->msg_namelen < sizeof(*u))
82                         return -EINVAL;
83                 if (u->sin6_family != AF_INET6) {
84                         return -EAFNOSUPPORT;
85                 }
86                 daddr = &(u->sin6_addr);
87                 if (__ipv6_addr_needs_scope_id(ipv6_addr_type(daddr)))
88                         oif = u->sin6_scope_id;
89         } else {
90                 if (sk->sk_state != TCP_ESTABLISHED)
91                         return -EDESTADDRREQ;
92                 daddr = &sk->sk_v6_daddr;
93         }
94
95         if (!oif)
96                 oif = sk->sk_bound_dev_if;
97
98         if (!oif)
99                 oif = np->sticky_pktinfo.ipi6_ifindex;
100
101         if (!oif && ipv6_addr_is_multicast(daddr))
102                 oif = np->mcast_oif;
103         else if (!oif)
104                 oif = np->ucast_oif;
105
106         addr_type = ipv6_addr_type(daddr);
107         if ((__ipv6_addr_needs_scope_id(addr_type) && !oif) ||
108             (addr_type & IPV6_ADDR_MAPPED) ||
109             (oif && sk->sk_bound_dev_if && oif != sk->sk_bound_dev_if))
110                 return -EINVAL;
111
112         /* TODO: use ip6_datagram_send_ctl to get options from cmsg */
113
114         memset(&fl6, 0, sizeof(fl6));
115
116         fl6.flowi6_proto = IPPROTO_ICMPV6;
117         fl6.saddr = np->saddr;
118         fl6.daddr = *daddr;
119         fl6.flowi6_oif = oif;
120         fl6.flowi6_mark = sk->sk_mark;
121         fl6.fl6_icmp_type = user_icmph.icmp6_type;
122         fl6.fl6_icmp_code = user_icmph.icmp6_code;
123         security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
124
125         ipc6.tclass = np->tclass;
126         fl6.flowlabel = ip6_make_flowinfo(ipc6.tclass, fl6.flowlabel);
127
128         dst = ip6_sk_dst_lookup_flow(sk, &fl6,  daddr);
129         if (IS_ERR(dst))
130                 return PTR_ERR(dst);
131         rt = (struct rt6_info *) dst;
132
133         np = inet6_sk(sk);
134         if (!np) {
135                 err = -EBADF;
136                 goto dst_err_out;
137         }
138
139         if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
140                 fl6.flowi6_oif = np->mcast_oif;
141         else if (!fl6.flowi6_oif)
142                 fl6.flowi6_oif = np->ucast_oif;
143
144         pfh.icmph.type = user_icmph.icmp6_type;
145         pfh.icmph.code = user_icmph.icmp6_code;
146         pfh.icmph.checksum = 0;
147         pfh.icmph.un.echo.id = inet->inet_sport;
148         pfh.icmph.un.echo.sequence = user_icmph.icmp6_sequence;
149         pfh.msg = msg;
150         pfh.wcheck = 0;
151         pfh.family = AF_INET6;
152
153         ipc6.hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);
154         ipc6.dontfrag = np->dontfrag;
155         ipc6.opt = NULL;
156
157         lock_sock(sk);
158         err = ip6_append_data(sk, ping_getfrag, &pfh, len,
159                               0, &ipc6, &fl6, rt,
160                               MSG_DONTWAIT, &junk);
161
162         if (err) {
163                 ICMP6_INC_STATS(sock_net(sk), rt->rt6i_idev,
164                                 ICMP6_MIB_OUTERRORS);
165                 ip6_flush_pending_frames(sk);
166         } else {
167                 err = icmpv6_push_pending_frames(sk, &fl6,
168                                                  (struct icmp6hdr *) &pfh.icmph,
169                                                  len);
170         }
171         release_sock(sk);
172
173 dst_err_out:
174         dst_release(dst);
175
176         if (err)
177                 return err;
178
179         return len;
180 }
181
182 struct proto pingv6_prot = {
183         .name =         "PINGv6",
184         .owner =        THIS_MODULE,
185         .init =         ping_init_sock,
186         .close =        ping_close,
187         .destroy =      ping_v6_destroy,
188         .connect =      ip6_datagram_connect_v6_only,
189         .disconnect =   __udp_disconnect,
190         .setsockopt =   ipv6_setsockopt,
191         .getsockopt =   ipv6_getsockopt,
192         .sendmsg =      ping_v6_sendmsg,
193         .recvmsg =      ping_recvmsg,
194         .bind =         ping_bind,
195         .backlog_rcv =  ping_queue_rcv_skb,
196         .hash =         ping_hash,
197         .unhash =       ping_unhash,
198         .get_port =     ping_get_port,
199         .obj_size =     sizeof(struct raw6_sock),
200 };
201 EXPORT_SYMBOL_GPL(pingv6_prot);
202
203 static struct inet_protosw pingv6_protosw = {
204         .type =      SOCK_DGRAM,
205         .protocol =  IPPROTO_ICMPV6,
206         .prot =      &pingv6_prot,
207         .ops =       &inet6_sockraw_ops,
208         .flags =     INET_PROTOSW_REUSE,
209 };
210
211 #ifdef CONFIG_PROC_FS
212 static void *ping_v6_seq_start(struct seq_file *seq, loff_t *pos)
213 {
214         return ping_seq_start(seq, pos, AF_INET6);
215 }
216
217 static int ping_v6_seq_show(struct seq_file *seq, void *v)
218 {
219         if (v == SEQ_START_TOKEN) {
220                 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
221         } else {
222                 int bucket = ((struct ping_iter_state *) seq->private)->bucket;
223                 struct inet_sock *inet = inet_sk(v);
224                 __u16 srcp = ntohs(inet->inet_sport);
225                 __u16 destp = ntohs(inet->inet_dport);
226                 ip6_dgram_sock_seq_show(seq, v, srcp, destp, bucket);
227         }
228         return 0;
229 }
230
231 static struct ping_seq_afinfo ping_v6_seq_afinfo = {
232         .name           = "icmp6",
233         .family         = AF_INET6,
234         .seq_fops       = &ping_seq_fops,
235         .seq_ops        = {
236                 .start          = ping_v6_seq_start,
237                 .show           = ping_v6_seq_show,
238                 .next           = ping_seq_next,
239                 .stop           = ping_seq_stop,
240         },
241 };
242
243 static int __net_init ping_v6_proc_init_net(struct net *net)
244 {
245         return ping_proc_register(net, &ping_v6_seq_afinfo);
246 }
247
248 static void __net_exit ping_v6_proc_exit_net(struct net *net)
249 {
250         return ping_proc_unregister(net, &ping_v6_seq_afinfo);
251 }
252
253 static struct pernet_operations ping_v6_net_ops = {
254         .init = ping_v6_proc_init_net,
255         .exit = ping_v6_proc_exit_net,
256 };
257 #endif
258
259 int __init pingv6_init(void)
260 {
261 #ifdef CONFIG_PROC_FS
262         int ret = register_pernet_subsys(&ping_v6_net_ops);
263         if (ret)
264                 return ret;
265 #endif
266         pingv6_ops.ipv6_recv_error = ipv6_recv_error;
267         pingv6_ops.ip6_datagram_recv_common_ctl = ip6_datagram_recv_common_ctl;
268         pingv6_ops.ip6_datagram_recv_specific_ctl =
269                 ip6_datagram_recv_specific_ctl;
270         pingv6_ops.icmpv6_err_convert = icmpv6_err_convert;
271         pingv6_ops.ipv6_icmp_error = ipv6_icmp_error;
272         pingv6_ops.ipv6_chk_addr = ipv6_chk_addr;
273         return inet6_register_protosw(&pingv6_protosw);
274 }
275
276 /* This never gets called because it's not possible to unload the ipv6 module,
277  * but just in case.
278  */
279 void pingv6_exit(void)
280 {
281         pingv6_ops.ipv6_recv_error = dummy_ipv6_recv_error;
282         pingv6_ops.ip6_datagram_recv_common_ctl = dummy_ip6_datagram_recv_ctl;
283         pingv6_ops.ip6_datagram_recv_specific_ctl = dummy_ip6_datagram_recv_ctl;
284         pingv6_ops.icmpv6_err_convert = dummy_icmpv6_err_convert;
285         pingv6_ops.ipv6_icmp_error = dummy_ipv6_icmp_error;
286         pingv6_ops.ipv6_chk_addr = dummy_ipv6_chk_addr;
287 #ifdef CONFIG_PROC_FS
288         unregister_pernet_subsys(&ping_v6_net_ops);
289 #endif
290         inet6_unregister_protosw(&pingv6_protosw);
291 }