blob: a4ed2416399ed52622b9c60460d411b9507e6d85 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * RAW sockets for IPv6
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09003 * Linux INET6 implementation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Authors:
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +09006 * Pedro Roque <roque@di.fc.ul.pt>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Adapted from linux/net/ipv4/raw.c
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * Fixes:
11 * Hideaki YOSHIFUJI : sin6_scope_id support
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +090012 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version
18 * 2 of the License, or (at your option) any later version.
19 */
20
21#include <linux/errno.h>
22#include <linux/types.h>
23#include <linux/socket.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/sockios.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/net.h>
27#include <linux/in6.h>
28#include <linux/netdevice.h>
29#include <linux/if_arp.h>
30#include <linux/icmpv6.h>
31#include <linux/netfilter.h>
32#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080033#include <linux/skbuff.h>
David S. Millere2d57762011-02-03 17:59:32 -080034#include <linux/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36#include <asm/ioctls.h>
37
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020038#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <net/ip.h>
40#include <net/sock.h>
41#include <net/snmp.h>
42
43#include <net/ipv6.h>
44#include <net/ndisc.h>
45#include <net/protocol.h>
46#include <net/ip6_route.h>
47#include <net/ip6_checksum.h>
48#include <net/addrconf.h>
49#include <net/transp_v6.h>
50#include <net/udp.h>
51#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070052#include <net/tcp_states.h>
Amerigo Wang07a93622012-10-29 16:23:10 +000053#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070054#include <net/mip6.h>
55#endif
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +090056#include <linux/mroute6.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080058#include <net/raw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/rawv6.h>
60#include <net/xfrm.h>
61
62#include <linux/proc_fs.h>
63#include <linux/seq_file.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040064#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Werner Almesbergerd1c53c82013-08-02 10:51:34 -030066#define ICMPV6_HDRLEN 4 /* ICMPv6 header, RFC 4443 Section 2.1 */
67
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080068static struct raw_hashinfo raw_v6_hashinfo = {
Robert P. J. Day938b93a2008-03-18 00:59:23 -070069 .lock = __RW_LOCK_UNLOCKED(raw_v6_hashinfo.lock),
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -080070};
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Pavel Emelyanovbe185882008-01-14 05:35:31 -080072static struct sock *__raw_v6_lookup(struct net *net, struct sock *sk,
Eric Dumazetb71d1d42011-04-22 04:53:02 +000073 unsigned short num, const struct in6_addr *loc_addr,
74 const struct in6_addr *rmt_addr, int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075{
Eric Dumazeta50feda2012-05-18 18:57:34 +000076 bool is_multicast = ipv6_addr_is_multicast(loc_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Sasha Levinb67bfe02013-02-27 17:06:00 -080078 sk_for_each_from(sk)
Eric Dumazetc720c7e2009-10-15 06:30:45 +000079 if (inet_sk(sk)->inet_num == num) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 struct ipv6_pinfo *np = inet6_sk(sk);
81
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +090082 if (!net_eq(sock_net(sk), net))
Pavel Emelyanovbe185882008-01-14 05:35:31 -080083 continue;
84
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (!ipv6_addr_any(&np->daddr) &&
86 !ipv6_addr_equal(&np->daddr, rmt_addr))
87 continue;
88
Andrew McDonald0bd1b592005-08-09 19:44:42 -070089 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
90 continue;
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!ipv6_addr_any(&np->rcv_saddr)) {
93 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
94 goto found;
95 if (is_multicast &&
96 inet6_mc_check(sk, loc_addr, rmt_addr))
97 goto found;
98 continue;
99 }
100 goto found;
101 }
102 sk = NULL;
103found:
104 return sk;
105}
106
107/*
108 * 0 - deliver
109 * 1 - block
110 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000111static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112{
Werner Almesberger9cc08af2013-08-02 10:51:19 -0300113 struct icmp6hdr _hdr;
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000114 const struct icmp6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300116 /* We require only the four bytes of the ICMPv6 header, not any
117 * additional bytes of message body in "struct icmp6hdr".
118 */
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000119 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
Werner Almesbergerd1c53c82013-08-02 10:51:34 -0300120 ICMPV6_HDRLEN, &_hdr);
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000121 if (hdr) {
122 const __u32 *data = &raw6_sk(sk)->filter.data[0];
123 unsigned int type = hdr->icmp6_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000125 return (data[type >> 5] & (1U << (type & 31))) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
Eric Dumazet1b05c4b2012-09-25 07:03:40 +0000127 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128}
129
Amerigo Wang07a93622012-10-29 16:23:10 +0000130#if IS_ENABLED(CONFIG_IPV6_MIP6)
Eric Dumazetf2eda472011-01-20 07:37:53 +0000131typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700132
Eric Dumazetf2eda472011-01-20 07:37:53 +0000133static mh_filter_t __rcu *mh_filter __read_mostly;
134
135int rawv6_mh_filter_register(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700136{
Eric Dumazetcf778b02012-01-12 04:41:32 +0000137 rcu_assign_pointer(mh_filter, filter);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700138 return 0;
139}
140EXPORT_SYMBOL(rawv6_mh_filter_register);
141
Eric Dumazetf2eda472011-01-20 07:37:53 +0000142int rawv6_mh_filter_unregister(mh_filter_t filter)
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700143{
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +0000144 RCU_INIT_POINTER(mh_filter, NULL);
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700145 synchronize_rcu();
146 return 0;
147}
148EXPORT_SYMBOL(rawv6_mh_filter_unregister);
149
150#endif
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * demultiplex raw sockets.
154 * (should consider queueing the skb in the sock receive_queue
155 * without calling rawv6.c)
156 *
157 * Caller owns SKB so we must make clones.
158 */
Eric Dumazeta50feda2012-05-18 18:57:34 +0000159static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000161 const struct in6_addr *saddr;
162 const struct in6_addr *daddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 struct sock *sk;
Eric Dumazeta50feda2012-05-18 18:57:34 +0000164 bool delivered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 __u8 hash;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800166 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700168 saddr = &ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 daddr = saddr + 1;
170
David S. Millerf9242b62012-06-19 18:56:21 -0700171 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800173 read_lock(&raw_v6_hashinfo.lock);
174 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 if (sk == NULL)
177 goto out;
178
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900179 net = dev_net(skb->dev);
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800180 sk = __raw_v6_lookup(net, sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
182 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700183 int filtered;
184
Eric Dumazeta50feda2012-05-18 18:57:34 +0000185 delivered = true;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700186 switch (nexthdr) {
187 case IPPROTO_ICMPV6:
188 filtered = icmpv6_filter(sk, skb);
189 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700190
Amerigo Wang07a93622012-10-29 16:23:10 +0000191#if IS_ENABLED(CONFIG_IPV6_MIP6)
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700192 case IPPROTO_MH:
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700193 {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700194 /* XXX: To validate MH only once for each packet,
195 * this is placed here. It should be after checking
196 * xfrm policy, however it doesn't. The checking xfrm
197 * policy is placed in rawv6_rcv() because it is
198 * required for each socket.
199 */
Eric Dumazetf2eda472011-01-20 07:37:53 +0000200 mh_filter_t *filter;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700201
202 filter = rcu_dereference(mh_filter);
Eric Dumazetf2eda472011-01-20 07:37:53 +0000203 filtered = filter ? (*filter)(sk, skb) : 0;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700204 break;
Masahide NAKAMURA59fbb3a62007-06-26 23:56:32 -0700205 }
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700206#endif
207 default:
208 filtered = 0;
209 break;
210 }
211
212 if (filtered < 0)
213 break;
214 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
216
217 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800218 if (clone) {
219 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800223 sk = __raw_v6_lookup(net, sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700224 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 }
226out:
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800227 read_unlock(&raw_v6_hashinfo.lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700228 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Eric Dumazeta50feda2012-05-18 18:57:34 +0000231bool raw6_local_deliver(struct sk_buff *skb, int nexthdr)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800232{
233 struct sock *raw_sk;
234
David S. Millerf9242b62012-06-19 18:56:21 -0700235 raw_sk = sk_head(&raw_v6_hashinfo.ht[nexthdr & (RAW_HTABLE_SIZE - 1)]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800236 if (raw_sk && !ipv6_raw_deliver(skb, nexthdr))
237 raw_sk = NULL;
238
239 return raw_sk != NULL;
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/* This cleans up af_inet6 a bit. -DaveM */
243static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
244{
245 struct inet_sock *inet = inet_sk(sk);
246 struct ipv6_pinfo *np = inet6_sk(sk);
247 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
Al Viroe69a4adc2006-11-14 20:56:00 -0800248 __be32 v4addr = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 int addr_type;
250 int err;
251
252 if (addr_len < SIN6_LEN_RFC2133)
253 return -EINVAL;
254 addr_type = ipv6_addr_type(&addr->sin6_addr);
255
256 /* Raw sockets are IPv6 only */
257 if (addr_type == IPV6_ADDR_MAPPED)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000258 return -EADDRNOTAVAIL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260 lock_sock(sk);
261
262 err = -EINVAL;
263 if (sk->sk_state != TCP_CLOSE)
264 goto out;
265
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000266 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 /* Check if the address belongs to the host. */
268 if (addr_type != IPV6_ADDR_ANY) {
269 struct net_device *dev = NULL;
270
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000271 if (__ipv6_addr_needs_scope_id(addr_type)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 if (addr_len >= sizeof(struct sockaddr_in6) &&
273 addr->sin6_scope_id) {
274 /* Override any existing binding, if another
275 * one is supplied by user.
276 */
277 sk->sk_bound_dev_if = addr->sin6_scope_id;
278 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Binding to link-local address requires an interface */
281 if (!sk->sk_bound_dev_if)
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000282 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000284 err = -ENODEV;
285 dev = dev_get_by_index_rcu(sock_net(sk),
286 sk->sk_bound_dev_if);
287 if (!dev)
288 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /* ipv4 addr of the socket is invalid. Only the
292 * unspecified and mapped address have a v4 equivalent.
293 */
294 v4addr = LOOPBACK4_IPV6;
295 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
296 err = -EADDRNOTAVAIL;
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900297 if (!ipv6_chk_addr(sock_net(sk), &addr->sin6_addr,
Daniel Lezcanobfeade02008-01-10 22:43:18 -0800298 dev, 0)) {
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000299 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 }
303
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000304 inet->inet_rcv_saddr = inet->inet_saddr = v4addr;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000305 np->rcv_saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 if (!(addr_type & IPV6_ADDR_MULTICAST))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000307 np->saddr = addr->sin6_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 err = 0;
Eric Dumazetfd5c0022009-11-06 07:01:17 +0000309out_unlock:
310 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311out:
312 release_sock(sk);
313 return err;
314}
315
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800316static void rawv6_err(struct sock *sk, struct sk_buff *skb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 struct inet6_skb_parm *opt,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700318 u8 type, u8 code, int offset, __be32 info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct inet_sock *inet = inet_sk(sk);
321 struct ipv6_pinfo *np = inet6_sk(sk);
322 int err;
323 int harderr;
324
325 /* Report error on raw socket, if:
326 1. User requested recverr.
327 2. Socket is connected (otherwise the error indication
328 is useless without recverr and error is hard.
329 */
330 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
331 return;
332
333 harderr = icmpv6_err_convert(type, code, &err);
David S. Miller81aded22012-06-15 14:54:11 -0700334 if (type == ICMPV6_PKT_TOOBIG) {
335 ip6_sk_update_pmtu(skb, sk, info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
David S. Miller81aded22012-06-15 14:54:11 -0700337 }
Duan Jiong8d65b112013-09-20 18:21:25 +0800338 if (type == NDISC_REDIRECT) {
David S. Millerec18d9a2012-07-12 00:25:15 -0700339 ip6_sk_redirect(skb, sk);
Duan Jiong8d65b112013-09-20 18:21:25 +0800340 return;
341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (np->recverr) {
343 u8 *payload = skb->data;
344 if (!inet->hdrincl)
345 payload += offset;
346 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
347 }
348
349 if (np->recverr || harderr) {
350 sk->sk_err = err;
351 sk->sk_error_report(sk);
352 }
353}
354
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800355void raw6_icmp_error(struct sk_buff *skb, int nexthdr,
Brian Haleyd5fdd6b2009-06-23 04:31:07 -0700356 u8 type, u8 code, int inner_offset, __be32 info)
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800357{
358 struct sock *sk;
359 int hash;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000360 const struct in6_addr *saddr, *daddr;
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800361 struct net *net;
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800362
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800363 hash = nexthdr & (RAW_HTABLE_SIZE - 1);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800364
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800365 read_lock(&raw_v6_hashinfo.lock);
366 sk = sk_head(&raw_v6_hashinfo.ht[hash]);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800367 if (sk != NULL) {
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900368 /* Note: ipv6_hdr(skb) != skb->data */
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000369 const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data;
YOSHIFUJI Hideaki05f175c2008-04-11 23:51:26 +0900370 saddr = &ip6h->saddr;
371 daddr = &ip6h->daddr;
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900372 net = dev_net(skb->dev);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800373
Pavel Emelyanovbe185882008-01-14 05:35:31 -0800374 while ((sk = __raw_v6_lookup(net, sk, nexthdr, saddr, daddr,
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800375 IP6CB(skb)->iif))) {
376 rawv6_err(sk, skb, NULL, type, code,
377 inner_offset, info);
378 sk = sk_next(sk);
379 }
380 }
Pavel Emelyanovb673e4d2007-11-19 22:36:45 -0800381 read_unlock(&raw_v6_hashinfo.lock);
Pavel Emelyanov69d6da02007-11-19 22:35:57 -0800382}
383
Eric Dumazet33d480c2011-08-11 19:30:52 +0000384static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385{
Eric Dumazet33d480c2011-08-11 19:30:52 +0000386 if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800387 skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800388 atomic_inc(&sk->sk_drops);
Herbert Xufb286bb2005-11-10 13:01:24 -0800389 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700390 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 }
392
393 /* Charge it to the socket. */
Eric Dumazetd826eb12011-11-09 07:24:35 +0000394 skb_dst_drop(skb);
395 if (sock_queue_rcv_skb(sk, skb) < 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700397 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
399
400 return 0;
401}
402
403/*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900404 * This is next to useless...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 * if we demultiplex in network layer we don't need the extra call
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900406 * just to queue the skb...
407 * maybe we could have the network decide upon a hint if it
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 * should call raw_rcv for demultiplexing
409 */
410int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
411{
412 struct inet_sock *inet = inet_sk(sk);
413 struct raw6_sock *rp = raw6_sk(sk);
414
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900415 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800416 atomic_inc(&sk->sk_drops);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900417 kfree_skb(skb);
418 return NET_RX_DROP;
419 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 if (!rp->checksum)
422 skb->ip_summed = CHECKSUM_UNNECESSARY;
423
Patrick McHardy84fa7932006-08-29 16:44:56 -0700424 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700425 skb_postpull_rcsum(skb, skb_network_header(skb),
Arnaldo Carvalho de Melocfe1fc72007-03-16 17:26:39 -0300426 skb_network_header_len(skb));
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700427 if (!csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
428 &ipv6_hdr(skb)->daddr,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000429 skb->len, inet->inet_num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Herbert Xu60476372007-04-09 11:59:39 -0700432 if (!skb_csum_unnecessary(skb))
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700433 skb->csum = ~csum_unfold(csum_ipv6_magic(&ipv6_hdr(skb)->saddr,
434 &ipv6_hdr(skb)->daddr,
435 skb->len,
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000436 inet->inet_num, 0));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
438 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800439 if (skb_checksum_complete(skb)) {
Wang Chena92aa312007-11-13 20:31:14 -0800440 atomic_inc(&sk->sk_drops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 kfree_skb(skb);
Yang Hongyang3cc76ca2008-08-29 14:06:51 -0700442 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 }
445
446 rawv6_rcv_skb(sk, skb);
447 return 0;
448}
449
450
451/*
452 * This should be easy, if there is something there
453 * we return it, otherwise we block.
454 */
455
456static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
457 struct msghdr *msg, size_t len,
458 int noblock, int flags, int *addr_len)
459{
460 struct ipv6_pinfo *np = inet6_sk(sk);
461 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
462 struct sk_buff *skb;
463 size_t copied;
464 int err;
465
466 if (flags & MSG_OOB)
467 return -EOPNOTSUPP;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900468
469 if (addr_len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *addr_len=sizeof(*sin6);
471
472 if (flags & MSG_ERRQUEUE)
473 return ipv6_recv_error(sk, msg, len);
474
Brian Haley4b340ae2010-04-23 11:26:09 +0000475 if (np->rxpmtu && np->rxopt.bits.rxpmtu)
476 return ipv6_recv_rxpmtu(sk, msg, len);
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 skb = skb_recv_datagram(sk, flags, noblock, &err);
479 if (!skb)
480 goto out;
481
482 copied = skb->len;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900483 if (copied > len) {
484 copied = len;
485 msg->msg_flags |= MSG_TRUNC;
486 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Herbert Xu60476372007-04-09 11:59:39 -0700488 if (skb_csum_unnecessary(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
490 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800491 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 goto csum_copy_err;
493 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
494 } else {
495 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
496 if (err == -EINVAL)
497 goto csum_copy_err;
498 }
499 if (err)
500 goto out_free;
501
502 /* Copy the address. */
503 if (sin6) {
504 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700505 sin6->sin6_port = 0;
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000506 sin6->sin6_addr = ipv6_hdr(skb)->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 sin6->sin6_flowinfo = 0;
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000508 sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr,
509 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 }
511
Neil Horman3b885782009-10-12 13:26:31 -0700512 sock_recv_ts_and_drops(msg, sk, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (np->rxopt.all)
Tom Parkin73df66f2013-01-31 01:02:24 +0000515 ip6_datagram_recv_ctl(sk, msg, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 err = copied;
518 if (flags & MSG_TRUNC)
519 err = skb->len;
520
521out_free:
522 skb_free_datagram(sk, skb);
523out:
524 return err;
525
526csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800527 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 /* Error for blocking case is chosen to masquerade
530 as some normal condition.
531 */
532 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
Herbert Xu3305b802005-12-13 23:16:37 -0800533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
David S. Miller4c9483b2011-03-12 16:22:43 -0500536static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6,
Herbert Xu357b40a2005-04-19 22:30:14 -0700537 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538{
539 struct sk_buff *skb;
540 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700541 int offset;
542 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700543 int total_len;
Al Viro868c86b2006-11-14 21:35:48 -0800544 __wsum tmp_csum;
545 __sum16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 if (!rp->checksum)
548 goto send;
549
550 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
551 goto out;
552
Herbert Xu357b40a2005-04-19 22:30:14 -0700553 offset = rp->offset;
Steffen Klassert299b0762011-10-11 01:43:33 +0000554 total_len = inet_sk(sk)->cork.base.length;
Herbert Xu679a8732005-05-03 14:24:36 -0700555 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700557 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 goto out;
559 }
560
561 /* should be check HW csum miyazawa */
562 if (skb_queue_len(&sk->sk_write_queue) == 1) {
563 /*
564 * Only one fragment on the socket.
565 */
566 tmp_csum = skb->csum;
567 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700568 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 tmp_csum = 0;
570
571 skb_queue_walk(&sk->sk_write_queue, skb) {
572 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700573
574 if (csum_skb)
575 continue;
576
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700577 len = skb->len - skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700578 if (offset >= len) {
579 offset -= len;
580 continue;
581 }
582
583 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700585
586 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 }
588
Arnaldo Carvalho de Meloea2ae172007-04-25 17:55:53 -0700589 offset += skb_transport_offset(skb);
Herbert Xu357b40a2005-04-19 22:30:14 -0700590 if (skb_copy_bits(skb, offset, &csum, 2))
591 BUG();
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700594 if (unlikely(csum))
Al Viro5f92a732006-11-14 21:36:54 -0800595 tmp_csum = csum_sub(tmp_csum, csum_unfold(csum));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
David S. Miller4c9483b2011-03-12 16:22:43 -0500597 csum = csum_ipv6_magic(&fl6->saddr, &fl6->daddr,
598 total_len, fl6->flowi6_proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
David S. Miller4c9483b2011-03-12 16:22:43 -0500600 if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP)
Al Virof6ab0282006-11-16 02:36:50 -0800601 csum = CSUM_MANGLED_0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700602
Herbert Xu357b40a2005-04-19 22:30:14 -0700603 if (skb_store_bits(skb, offset, &csum, 2))
604 BUG();
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606send:
607 err = ip6_push_pending_frames(sk);
608out:
609 return err;
610}
611
612static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
David S. Miller4c9483b2011-03-12 16:22:43 -0500613 struct flowi6 *fl6, struct dst_entry **dstp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 unsigned int flags)
615{
Herbert Xu3320da82005-04-19 22:32:22 -0700616 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct ipv6hdr *iph;
618 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 int err;
Eric Dumazet1789a642010-06-03 22:23:57 +0000620 struct rt6_info *rt = (struct rt6_info *)*dstp;
Herbert Xua7ae1992011-11-18 02:20:04 +0000621 int hlen = LL_RESERVED_SPACE(rt->dst.dev);
622 int tlen = rt->dst.dev->needed_tailroom;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
Changli Gaod8d1f302010-06-10 23:31:35 -0700624 if (length > rt->dst.dev->mtu) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500625 ipv6_local_error(sk, EMSGSIZE, fl6, rt->dst.dev->mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return -EMSGSIZE;
627 }
628 if (flags&MSG_PROBE)
629 goto out;
630
Johannes Bergf5184d22008-05-12 20:48:31 -0700631 skb = sock_alloc_send_skb(sk,
Herbert Xua7ae1992011-11-18 02:20:04 +0000632 length + hlen + tlen + 15,
Johannes Bergf5184d22008-05-12 20:48:31 -0700633 flags & MSG_DONTWAIT, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (skb == NULL)
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900635 goto error;
Herbert Xua7ae1992011-11-18 02:20:04 +0000636 skb_reserve(skb, hlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
Hannes Frederic Sowa9c9c9ad2013-08-26 12:31:23 +0200638 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 skb->priority = sk->sk_priority;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800640 skb->mark = sk->sk_mark;
Changli Gaod8d1f302010-06-10 23:31:35 -0700641 skb_dst_set(skb, &rt->dst);
Eric Dumazet1789a642010-06-03 22:23:57 +0000642 *dstp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
Arnaldo Carvalho de Melo1ced98e2007-03-10 19:57:15 -0300644 skb_put(skb, length);
645 skb_reset_network_header(skb);
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700646 iph = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 skb->ip_summed = CHECKSUM_NONE;
649
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -0700650 skb->transport_header = skb->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 err = memcpy_fromiovecend((void *)iph, from, 0, length);
652 if (err)
653 goto error_fault;
654
Neil Hormanedf391f2009-04-27 02:45:02 -0700655 IP6_UPD_PO_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUT, skb->len);
Jan Engelhardtb2e0b382010-03-23 04:09:07 +0100656 err = NF_HOOK(NFPROTO_IPV6, NF_INET_LOCAL_OUT, skb, NULL,
Changli Gaod8d1f302010-06-10 23:31:35 -0700657 rt->dst.dev, dst_output);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (err > 0)
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700659 err = net_xmit_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (err)
661 goto error;
662out:
663 return 0;
664
665error_fault:
666 err = -EFAULT;
667 kfree_skb(skb);
668error:
Denis V. Lunev3bd653c2008-10-08 10:54:51 -0700669 IP6_INC_STATS(sock_net(sk), rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS);
Eric Dumazet6ce9e7b2009-09-02 18:05:33 -0700670 if (err == -ENOBUFS && !np->recverr)
671 err = 0;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900672 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
David S. Miller4c9483b2011-03-12 16:22:43 -0500675static int rawv6_probe_proto_opt(struct flowi6 *fl6, struct msghdr *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 struct iovec *iov;
678 u8 __user *type = NULL;
679 u8 __user *code = NULL;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700680 u8 len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 int probed = 0;
682 int i;
683
684 if (!msg->msg_iov)
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800685 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 for (i = 0; i < msg->msg_iovlen; i++) {
688 iov = &msg->msg_iov[i];
689 if (!iov)
690 continue;
691
David S. Miller4c9483b2011-03-12 16:22:43 -0500692 switch (fl6->flowi6_proto) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 case IPPROTO_ICMPV6:
694 /* check if one-byte field is readable or not. */
695 if (iov->iov_base && iov->iov_len < 1)
696 break;
697
698 if (!type) {
699 type = iov->iov_base;
700 /* check if code field is readable or not. */
701 if (iov->iov_len > 1)
702 code = type + 1;
703 } else if (!code)
704 code = iov->iov_base;
705
706 if (type && code) {
David S. Miller1958b852011-03-12 16:36:19 -0500707 if (get_user(fl6->fl6_icmp_type, type) ||
708 get_user(fl6->fl6_icmp_code, code))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800709 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 probed = 1;
711 }
712 break;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700713 case IPPROTO_MH:
714 if (iov->iov_base && iov->iov_len < 1)
715 break;
716 /* check if type field is readable or not. */
717 if (iov->iov_len > 2 - len) {
718 u8 __user *p = iov->iov_base;
David S. Miller1958b852011-03-12 16:36:19 -0500719 if (get_user(fl6->fl6_mh_type, &p[2 - len]))
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800720 return -EFAULT;
Masahide NAKAMURA6e8f4d42006-08-23 20:36:47 -0700721 probed = 1;
722 } else
723 len += iov->iov_len;
724
725 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 default:
727 probed = 1;
728 break;
729 }
730 if (probed)
731 break;
732 }
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800733 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734}
735
736static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
737 struct msghdr *msg, size_t len)
738{
739 struct ipv6_txoptions opt_space;
740 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
Arnaud Ebalard20c59de2010-06-01 21:35:01 +0000741 struct in6_addr *daddr, *final_p, final;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 struct inet_sock *inet = inet_sk(sk);
743 struct ipv6_pinfo *np = inet6_sk(sk);
744 struct raw6_sock *rp = raw6_sk(sk);
745 struct ipv6_txoptions *opt = NULL;
746 struct ip6_flowlabel *flowlabel = NULL;
747 struct dst_entry *dst = NULL;
David S. Miller4c9483b2011-03-12 16:22:43 -0500748 struct flowi6 fl6;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 int addr_len = msg->msg_namelen;
750 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900751 int tclass = -1;
Brian Haley13b52cd2010-04-23 11:26:08 +0000752 int dontfrag = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 u16 proto;
754 int err;
755
756 /* Rough check on arithmetic overflow,
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700757 better check is made in ip6_append_data().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 */
YOSHIFUJI Hideakib59e1392007-03-30 14:45:35 -0700759 if (len > INT_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return -EMSGSIZE;
761
762 /* Mirror BSD error message compatibility */
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900763 if (msg->msg_flags & MSG_OOB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 return -EOPNOTSUPP;
765
766 /*
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900767 * Get and verify the address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 */
David S. Miller4c9483b2011-03-12 16:22:43 -0500769 memset(&fl6, 0, sizeof(fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
David S. Miller4c9483b2011-03-12 16:22:43 -0500771 fl6.flowi6_mark = sk->sk_mark;
Laszlo Attila Toth4a19ec52008-01-30 19:08:16 -0800772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 if (sin6) {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900774 if (addr_len < SIN6_LEN_RFC2133)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 return -EINVAL;
776
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900777 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000778 return -EAFNOSUPPORT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780 /* port is the proto value [0..255] carried in nexthdr */
781 proto = ntohs(sin6->sin6_port);
782
783 if (!proto)
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000784 proto = inet->inet_num;
785 else if (proto != inet->inet_num)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000786 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 if (proto > 255)
Eric Dumazeta02cec22010-09-22 20:43:57 +0000789 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 daddr = &sin6->sin6_addr;
792 if (np->sndflow) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500793 fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
794 if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) {
795 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 if (flowlabel == NULL)
797 return -EINVAL;
798 daddr = &flowlabel->dst;
799 }
800 }
801
802 /*
803 * Otherwise it will be difficult to maintain
804 * sk->sk_dst_cache.
805 */
806 if (sk->sk_state == TCP_ESTABLISHED &&
807 ipv6_addr_equal(daddr, &np->daddr))
808 daddr = &np->daddr;
809
810 if (addr_len >= sizeof(struct sockaddr_in6) &&
811 sin6->sin6_scope_id &&
Hannes Frederic Sowa842df072013-03-08 02:07:19 +0000812 __ipv6_addr_needs_scope_id(__ipv6_addr_type(daddr)))
David S. Miller4c9483b2011-03-12 16:22:43 -0500813 fl6.flowi6_oif = sin6->sin6_scope_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 } else {
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900815 if (sk->sk_state != TCP_ESTABLISHED)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 return -EDESTADDRREQ;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900817
Eric Dumazetc720c7e2009-10-15 06:30:45 +0000818 proto = inet->inet_num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 daddr = &np->daddr;
David S. Miller4c9483b2011-03-12 16:22:43 -0500820 fl6.flowlabel = np->flow_label;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
David S. Miller4c9483b2011-03-12 16:22:43 -0500823 if (fl6.flowi6_oif == 0)
824 fl6.flowi6_oif = sk->sk_bound_dev_if;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 if (msg->msg_controllen) {
827 opt = &opt_space;
828 memset(opt, 0, sizeof(struct ipv6_txoptions));
829 opt->tot_len = sizeof(struct ipv6_txoptions);
830
Tom Parkin73df66f2013-01-31 01:02:24 +0000831 err = ip6_datagram_send_ctl(sock_net(sk), sk, msg, &fl6, opt,
832 &hlimit, &tclass, &dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 if (err < 0) {
834 fl6_sock_release(flowlabel);
835 return err;
836 }
David S. Miller4c9483b2011-03-12 16:22:43 -0500837 if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
838 flowlabel = fl6_sock_lookup(sk, fl6.flowlabel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (flowlabel == NULL)
840 return -EINVAL;
841 }
842 if (!(opt->opt_nflen|opt->opt_flen))
843 opt = NULL;
844 }
845 if (opt == NULL)
846 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900847 if (flowlabel)
848 opt = fl6_merge_options(&opt_space, flowlabel, opt);
849 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
David S. Miller4c9483b2011-03-12 16:22:43 -0500851 fl6.flowi6_proto = proto;
852 err = rawv6_probe_proto_opt(&fl6, msg);
Heiko Carstensa27b58f2006-10-30 15:06:12 -0800853 if (err)
854 goto out;
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900855
Brian Haley876c7f42008-04-11 00:38:24 -0400856 if (!ipv6_addr_any(daddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000857 fl6.daddr = *daddr;
Brian Haley876c7f42008-04-11 00:38:24 -0400858 else
David S. Miller4c9483b2011-03-12 16:22:43 -0500859 fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */
860 if (ipv6_addr_any(&fl6.saddr) && !ipv6_addr_any(&np->saddr))
Alexey Dobriyan4e3fd7a2011-11-21 03:39:03 +0000861 fl6.saddr = np->saddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
David S. Miller4c9483b2011-03-12 16:22:43 -0500863 final_p = fl6_update_dst(&fl6, opt, &final);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
David S. Miller4c9483b2011-03-12 16:22:43 -0500865 if (!fl6.flowi6_oif && ipv6_addr_is_multicast(&fl6.daddr))
866 fl6.flowi6_oif = np->mcast_oif;
Erich E. Hooverc4062df2012-02-08 09:11:08 +0000867 else if (!fl6.flowi6_oif)
868 fl6.flowi6_oif = np->ucast_oif;
David S. Miller4c9483b2011-03-12 16:22:43 -0500869 security_sk_classify_flow(sk, flowi6_to_flowi(&fl6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
David S. Miller4c9483b2011-03-12 16:22:43 -0500871 dst = ip6_dst_lookup_flow(sk, &fl6, final_p, true);
David S. Miller68d0c6d2011-03-01 13:19:07 -0800872 if (IS_ERR(dst)) {
873 err = PTR_ERR(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 goto out;
David S. Miller14e50e52007-05-24 18:17:54 -0700875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (hlimit < 0) {
David S. Miller4c9483b2011-03-12 16:22:43 -0500877 if (ipv6_addr_is_multicast(&fl6.daddr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 hlimit = np->mcast_hops;
879 else
880 hlimit = np->hop_limit;
881 if (hlimit < 0)
YOSHIFUJI Hideaki6b75d092008-03-10 06:00:30 -0400882 hlimit = ip6_dst_hoplimit(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884
Gerrit Renkere651f032009-08-09 08:12:48 +0000885 if (tclass < 0)
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700886 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900887
Brian Haley13b52cd2010-04-23 11:26:08 +0000888 if (dontfrag < 0)
889 dontfrag = np->dontfrag;
890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (msg->msg_flags&MSG_CONFIRM)
892 goto do_confirm;
893
894back_from_confirm:
Eric Dumazet1789a642010-06-03 22:23:57 +0000895 if (inet->hdrincl)
David S. Miller4c9483b2011-03-12 16:22:43 -0500896 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl6, &dst, msg->msg_flags);
Eric Dumazet1789a642010-06-03 22:23:57 +0000897 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900899 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
David S. Miller4c9483b2011-03-12 16:22:43 -0500900 len, 0, hlimit, tclass, opt, &fl6, (struct rt6_info*)dst,
Brian Haley13b52cd2010-04-23 11:26:08 +0000901 msg->msg_flags, dontfrag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if (err)
904 ip6_flush_pending_frames(sk);
905 else if (!(msg->msg_flags & MSG_MORE))
David S. Miller4c9483b2011-03-12 16:22:43 -0500906 err = rawv6_push_pending_frames(sk, &fl6, rp);
YOSHIFUJI Hideaki3ef9d942007-09-14 16:45:40 -0700907 release_sock(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800910 dst_release(dst);
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900911out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 fl6_sock_release(flowlabel);
913 return err<0?err:len;
914do_confirm:
915 dst_confirm(dst);
916 if (!(msg->msg_flags & MSG_PROBE) || len)
917 goto back_from_confirm;
918 err = 0;
919 goto done;
920}
921
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900922static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 char __user *optval, int optlen)
924{
925 switch (optname) {
926 case ICMPV6_FILTER:
927 if (optlen > sizeof(struct icmp6_filter))
928 optlen = sizeof(struct icmp6_filter);
929 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
930 return -EFAULT;
931 return 0;
932 default:
933 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 return 0;
937}
938
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900939static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 char __user *optval, int __user *optlen)
941{
942 int len;
943
944 switch (optname) {
945 case ICMPV6_FILTER:
946 if (get_user(len, optlen))
947 return -EFAULT;
948 if (len < 0)
949 return -EINVAL;
950 if (len > sizeof(struct icmp6_filter))
951 len = sizeof(struct icmp6_filter);
952 if (put_user(len, optlen))
953 return -EFAULT;
954 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
955 return -EFAULT;
956 return 0;
957 default:
958 return -ENOPROTOOPT;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 return 0;
962}
963
964
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800965static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700966 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 struct raw6_sock *rp = raw6_sk(sk);
969 int val;
970
YOSHIFUJI Hideaki1ab14572007-02-09 23:24:49 +0900971 if (get_user(val, (int __user *)optval))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return -EFAULT;
973
974 switch (optname) {
Joe Perches207ec0a2011-07-01 09:43:08 +0000975 case IPV6_CHECKSUM:
976 if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 &&
977 level == IPPROTO_IPV6) {
978 /*
979 * RFC3542 tells that IPV6_CHECKSUM socket
980 * option in the IPPROTO_IPV6 level is not
981 * allowed on ICMPv6 sockets.
982 * If you want to set it, use IPPROTO_RAW
983 * level IPV6_CHECKSUM socket option
984 * (Linux extension).
985 */
986 return -EINVAL;
987 }
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -0700988
Joe Perches207ec0a2011-07-01 09:43:08 +0000989 /* You may get strange result with a positive odd offset;
990 RFC2292bis agrees with me. */
991 if (val > 0 && (val&1))
992 return -EINVAL;
993 if (val < 0) {
994 rp->checksum = 0;
995 } else {
996 rp->checksum = 1;
997 rp->offset = val;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Joe Perches207ec0a2011-07-01 09:43:08 +00001000 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Joe Perches207ec0a2011-07-01 09:43:08 +00001002 default:
1003 return -ENOPROTOOPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005}
1006
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001007static int rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001008 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
Joe Perches207ec0a2011-07-01 09:43:08 +00001010 switch (level) {
1011 case SOL_RAW:
1012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Joe Perches207ec0a2011-07-01 09:43:08 +00001014 case SOL_ICMPV6:
1015 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1016 return -EOPNOTSUPP;
1017 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1018 case SOL_IPV6:
1019 if (optname == IPV6_CHECKSUM)
1020 break;
1021 default:
1022 return ipv6_setsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001023 }
1024
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001025 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1026}
1027
1028#ifdef CONFIG_COMPAT
1029static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -07001030 char __user *optval, unsigned int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001031{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001032 switch (level) {
1033 case SOL_RAW:
1034 break;
1035 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001036 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001037 return -EOPNOTSUPP;
1038 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
1039 case SOL_IPV6:
1040 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001041 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001042 default:
1043 return compat_ipv6_setsockopt(sk, level, optname,
1044 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001045 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001046 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
1047}
1048#endif
1049
1050static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
1051 char __user *optval, int __user *optlen)
1052{
1053 struct raw6_sock *rp = raw6_sk(sk);
1054 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
1056 if (get_user(len,optlen))
1057 return -EFAULT;
1058
1059 switch (optname) {
1060 case IPV6_CHECKSUM:
YOSHIFUJI Hideaki1a98d052008-04-24 21:30:38 -07001061 /*
1062 * We allow getsockopt() for IPPROTO_IPV6-level
1063 * IPV6_CHECKSUM socket option on ICMPv6 sockets
1064 * since RFC3542 is silent about it.
1065 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 if (rp->checksum == 0)
1067 val = -1;
1068 else
1069 val = rp->offset;
1070 break;
1071
1072 default:
1073 return -ENOPROTOOPT;
1074 }
1075
1076 len = min_t(unsigned int, sizeof(int), len);
1077
1078 if (put_user(len, optlen))
1079 return -EFAULT;
1080 if (copy_to_user(optval,&val,len))
1081 return -EFAULT;
1082 return 0;
1083}
1084
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001085static int rawv6_getsockopt(struct sock *sk, int level, int optname,
1086 char __user *optval, int __user *optlen)
1087{
Joe Perches207ec0a2011-07-01 09:43:08 +00001088 switch (level) {
1089 case SOL_RAW:
1090 break;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001091
Joe Perches207ec0a2011-07-01 09:43:08 +00001092 case SOL_ICMPV6:
1093 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
1094 return -EOPNOTSUPP;
1095 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1096 case SOL_IPV6:
1097 if (optname == IPV6_CHECKSUM)
1098 break;
1099 default:
1100 return ipv6_getsockopt(sk, level, optname, optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001101 }
1102
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001103 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1104}
1105
1106#ifdef CONFIG_COMPAT
1107static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001108 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001109{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001110 switch (level) {
1111 case SOL_RAW:
1112 break;
1113 case SOL_ICMPV6:
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001114 if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6)
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001115 return -EOPNOTSUPP;
1116 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1117 case SOL_IPV6:
1118 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001119 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001120 default:
1121 return compat_ipv6_getsockopt(sk, level, optname,
1122 optval, optlen);
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001123 }
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001124 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1125}
1126#endif
1127
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1129{
Joe Perches207ec0a2011-07-01 09:43:08 +00001130 switch (cmd) {
1131 case SIOCOUTQ: {
1132 int amount = sk_wmem_alloc_get(sk);
Eric Dumazet31e6d362009-06-17 19:05:41 -07001133
Joe Perches207ec0a2011-07-01 09:43:08 +00001134 return put_user(amount, (int __user *)arg);
1135 }
1136 case SIOCINQ: {
1137 struct sk_buff *skb;
1138 int amount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Joe Perches207ec0a2011-07-01 09:43:08 +00001140 spin_lock_bh(&sk->sk_receive_queue.lock);
1141 skb = skb_peek(&sk->sk_receive_queue);
1142 if (skb != NULL)
Simon Horman29a3cad2013-05-28 20:34:26 +00001143 amount = skb_tail_pointer(skb) -
1144 skb_transport_header(skb);
Joe Perches207ec0a2011-07-01 09:43:08 +00001145 spin_unlock_bh(&sk->sk_receive_queue.lock);
1146 return put_user(amount, (int __user *)arg);
1147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Joe Perches207ec0a2011-07-01 09:43:08 +00001149 default:
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001150#ifdef CONFIG_IPV6_MROUTE
Joe Perches207ec0a2011-07-01 09:43:08 +00001151 return ip6mr_ioctl(sk, cmd, (void __user *)arg);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001152#else
Joe Perches207ec0a2011-07-01 09:43:08 +00001153 return -ENOIOCTLCMD;
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001154#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
1156}
1157
David S. Millere2d57762011-02-03 17:59:32 -08001158#ifdef CONFIG_COMPAT
1159static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
1160{
1161 switch (cmd) {
1162 case SIOCOUTQ:
1163 case SIOCINQ:
1164 return -ENOIOCTLCMD;
1165 default:
1166#ifdef CONFIG_IPV6_MROUTE
1167 return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg));
1168#else
1169 return -ENOIOCTLCMD;
1170#endif
1171 }
1172}
1173#endif
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175static void rawv6_close(struct sock *sk, long timeout)
1176{
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001177 if (inet_sk(sk)->inet_num == IPPROTO_RAW)
Denis V. Lunev725a8ff2008-07-19 00:28:58 -07001178 ip6_ra_control(sk, -1);
YOSHIFUJI Hideaki7bc570c2008-04-03 09:22:53 +09001179 ip6mr_sk_done(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 sk_common_release(sk);
1181}
1182
Brian Haley7d06b2e2008-06-14 17:04:49 -07001183static void raw6_destroy(struct sock *sk)
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001184{
1185 lock_sock(sk);
1186 ip6_flush_pending_frames(sk);
1187 release_sock(sk);
David S. Millerf23d60d2008-06-12 14:47:58 -07001188
Brian Haley7d06b2e2008-06-14 17:04:49 -07001189 inet6_destroy_sock(sk);
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001190}
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192static int rawv6_init_sk(struct sock *sk)
1193{
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001194 struct raw6_sock *rp = raw6_sk(sk);
1195
Eric Dumazetc720c7e2009-10-15 06:30:45 +00001196 switch (inet_sk(sk)->inet_num) {
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001197 case IPPROTO_ICMPV6:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 rp->checksum = 1;
1199 rp->offset = 2;
Masahide NAKAMURAf48d5ff2007-02-07 00:07:39 -08001200 break;
1201 case IPPROTO_MH:
1202 rp->checksum = 1;
1203 rp->offset = 4;
1204 break;
1205 default:
1206 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 }
Eric Dumazeta02cec22010-09-22 20:43:57 +00001208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
1211struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001212 .name = "RAWv6",
1213 .owner = THIS_MODULE,
1214 .close = rawv6_close,
Denis V. Lunev22dd4852008-06-04 15:16:12 -07001215 .destroy = raw6_destroy,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001216 .connect = ip6_datagram_connect,
1217 .disconnect = udp_disconnect,
1218 .ioctl = rawv6_ioctl,
1219 .init = rawv6_init_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001220 .setsockopt = rawv6_setsockopt,
1221 .getsockopt = rawv6_getsockopt,
1222 .sendmsg = rawv6_sendmsg,
1223 .recvmsg = rawv6_recvmsg,
1224 .bind = rawv6_bind,
1225 .backlog_rcv = rawv6_rcv_skb,
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001226 .hash = raw_hash_sk,
1227 .unhash = raw_unhash_sk,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001228 .obj_size = sizeof(struct raw6_sock),
Pavel Emelyanovfc8717b2008-03-22 16:56:51 -07001229 .h.raw_hash = &raw_v6_hashinfo,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001230#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001231 .compat_setsockopt = compat_rawv6_setsockopt,
1232 .compat_getsockopt = compat_rawv6_getsockopt,
David S. Millere2d57762011-02-03 17:59:32 -08001233 .compat_ioctl = compat_rawv6_ioctl,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235};
1236
1237#ifdef CONFIG_PROC_FS
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238static int raw6_seq_show(struct seq_file *seq, void *v)
1239{
Lorenzo Colitti17ef66af2013-05-31 15:05:48 +00001240 if (v == SEQ_START_TOKEN) {
1241 seq_puts(seq, IPV6_SEQ_DGRAM_HEADER);
1242 } else {
1243 struct sock *sp = v;
1244 __u16 srcp = inet_sk(sp)->inet_num;
1245 ip6_dgram_sock_seq_show(seq, v, srcp, 0,
1246 raw_seq_private(seq)->bucket);
1247 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 return 0;
1249}
1250
Philippe De Muyter56b3d972007-07-10 23:07:31 -07001251static const struct seq_operations raw6_seq_ops = {
Pavel Emelyanov42a73802007-11-19 22:38:33 -08001252 .start = raw_seq_start,
1253 .next = raw_seq_next,
1254 .stop = raw_seq_stop,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 .show = raw6_seq_show,
1256};
1257
1258static int raw6_seq_open(struct inode *inode, struct file *file)
1259{
Denis V. Lunev3046d762008-01-31 03:48:55 -08001260 return raw_seq_open(inode, file, &raw_v6_hashinfo, &raw6_seq_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
Arjan van de Ven9a321442007-02-12 00:55:35 -08001263static const struct file_operations raw6_seq_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 .owner = THIS_MODULE,
1265 .open = raw6_seq_open,
1266 .read = seq_read,
1267 .llseek = seq_lseek,
Pavel Emelyanovf51d5992008-01-14 05:35:57 -08001268 .release = seq_release_net,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269};
1270
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001271static int __net_init raw6_init_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001272{
Gao fengd4beaa62013-02-18 01:34:54 +00001273 if (!proc_create("raw6", S_IRUGO, net->proc_net, &raw6_seq_fops))
Pavel Emelyanova308da12008-01-14 05:36:50 -08001274 return -ENOMEM;
1275
1276 return 0;
1277}
1278
Alexey Dobriyan2c8c1e72010-01-17 03:35:32 +00001279static void __net_exit raw6_exit_net(struct net *net)
Pavel Emelyanova308da12008-01-14 05:36:50 -08001280{
Gao fengece31ff2013-02-18 01:34:56 +00001281 remove_proc_entry("raw6", net->proc_net);
Pavel Emelyanova308da12008-01-14 05:36:50 -08001282}
1283
1284static struct pernet_operations raw6_net_ops = {
1285 .init = raw6_init_net,
1286 .exit = raw6_exit_net,
1287};
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289int __init raw6_proc_init(void)
1290{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001291 return register_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294void raw6_proc_exit(void)
1295{
Pavel Emelyanova308da12008-01-14 05:36:50 -08001296 unregister_pernet_subsys(&raw6_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298#endif /* CONFIG_PROC_FS */
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001299
1300/* Same as inet6_dgram_ops, sans udp_poll. */
1301static const struct proto_ops inet6_sockraw_ops = {
1302 .family = PF_INET6,
1303 .owner = THIS_MODULE,
1304 .release = inet6_release,
1305 .bind = inet6_bind,
1306 .connect = inet_dgram_connect, /* ok */
1307 .socketpair = sock_no_socketpair, /* a do nothing */
1308 .accept = sock_no_accept, /* a do nothing */
1309 .getname = inet6_getname,
1310 .poll = datagram_poll, /* ok */
1311 .ioctl = inet6_ioctl, /* must change */
1312 .listen = sock_no_listen, /* ok */
1313 .shutdown = inet_shutdown, /* ok */
1314 .setsockopt = sock_common_setsockopt, /* ok */
1315 .getsockopt = sock_common_getsockopt, /* ok */
1316 .sendmsg = inet_sendmsg, /* ok */
1317 .recvmsg = sock_common_recvmsg, /* ok */
1318 .mmap = sock_no_mmap,
1319 .sendpage = sock_no_sendpage,
1320#ifdef CONFIG_COMPAT
1321 .compat_setsockopt = compat_sock_common_setsockopt,
1322 .compat_getsockopt = compat_sock_common_getsockopt,
1323#endif
1324};
1325
1326static struct inet_protosw rawv6_protosw = {
1327 .type = SOCK_RAW,
1328 .protocol = IPPROTO_IP, /* wild card */
1329 .prot = &rawv6_prot,
1330 .ops = &inet6_sockraw_ops,
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001331 .no_check = UDP_CSUM_DEFAULT,
1332 .flags = INET_PROTOSW_REUSE,
1333};
1334
1335int __init rawv6_init(void)
1336{
1337 int ret;
1338
1339 ret = inet6_register_protosw(&rawv6_protosw);
1340 if (ret)
1341 goto out;
1342out:
1343 return ret;
1344}
1345
Daniel Lezcano09f77092007-12-13 05:34:58 -08001346void rawv6_exit(void)
Daniel Lezcano7f4e4862007-12-11 02:25:35 -08001347{
1348 inet6_unregister_protosw(&rawv6_protosw);
1349}