| 1 | // SPDX-License-Identifier: GPL-2.0-or-later | 
|---|
| 2 | /* | 
|---|
| 3 | *	RAW sockets for IPv6 | 
|---|
| 4 | *	Linux INET6 implementation | 
|---|
| 5 | * | 
|---|
| 6 | *	Authors: | 
|---|
| 7 | *	Pedro Roque		<roque@di.fc.ul.pt> | 
|---|
| 8 | * | 
|---|
| 9 | *	Adapted from linux/net/ipv4/raw.c | 
|---|
| 10 | * | 
|---|
| 11 | *	Fixes: | 
|---|
| 12 | *	Hideaki YOSHIFUJI	:	sin6_scope_id support | 
|---|
| 13 | *	YOSHIFUJI,H.@USAGI	:	raw checksum (RFC2292(bis) compliance) | 
|---|
| 14 | *	Kazunori MIYAZAWA @USAGI:	change process style to use ip6_append_data | 
|---|
| 15 | */ | 
|---|
| 16 |  | 
|---|
| 17 | #include <linux/errno.h> | 
|---|
| 18 | #include <linux/types.h> | 
|---|
| 19 | #include <linux/socket.h> | 
|---|
| 20 | #include <linux/slab.h> | 
|---|
| 21 | #include <linux/sockios.h> | 
|---|
| 22 | #include <linux/net.h> | 
|---|
| 23 | #include <linux/in6.h> | 
|---|
| 24 | #include <linux/netdevice.h> | 
|---|
| 25 | #include <linux/if_arp.h> | 
|---|
| 26 | #include <linux/icmpv6.h> | 
|---|
| 27 | #include <linux/netfilter.h> | 
|---|
| 28 | #include <linux/netfilter_ipv6.h> | 
|---|
| 29 | #include <linux/skbuff.h> | 
|---|
| 30 | #include <linux/compat.h> | 
|---|
| 31 | #include <linux/uaccess.h> | 
|---|
| 32 | #include <asm/ioctls.h> | 
|---|
| 33 |  | 
|---|
| 34 | #include <net/net_namespace.h> | 
|---|
| 35 | #include <net/ip.h> | 
|---|
| 36 | #include <net/sock.h> | 
|---|
| 37 | #include <net/snmp.h> | 
|---|
| 38 |  | 
|---|
| 39 | #include <net/ipv6.h> | 
|---|
| 40 | #include <net/ndisc.h> | 
|---|
| 41 | #include <net/protocol.h> | 
|---|
| 42 | #include <net/ip6_route.h> | 
|---|
| 43 | #include <net/ip6_checksum.h> | 
|---|
| 44 | #include <net/addrconf.h> | 
|---|
| 45 | #include <net/transp_v6.h> | 
|---|
| 46 | #include <net/udp.h> | 
|---|
| 47 | #include <net/inet_common.h> | 
|---|
| 48 | #include <net/tcp_states.h> | 
|---|
| 49 | #if IS_ENABLED(CONFIG_IPV6_MIP6) | 
|---|
| 50 | #include <net/mip6.h> | 
|---|
| 51 | #endif | 
|---|
| 52 | #include <linux/mroute6.h> | 
|---|
| 53 |  | 
|---|
| 54 | #include <net/raw.h> | 
|---|
| 55 | #include <net/rawv6.h> | 
|---|
| 56 | #include <net/xfrm.h> | 
|---|
| 57 |  | 
|---|
| 58 | #include <linux/proc_fs.h> | 
|---|
| 59 | #include <linux/seq_file.h> | 
|---|
| 60 | #include <linux/export.h> | 
|---|
| 61 |  | 
|---|
| 62 | #define	ICMPV6_HDRLEN	4	/* ICMPv6 header, RFC 4443 Section 2.1 */ | 
|---|
| 63 |  | 
|---|
| 64 | struct raw_hashinfo raw_v6_hashinfo; | 
|---|
| 65 | EXPORT_SYMBOL_GPL(raw_v6_hashinfo); | 
|---|
| 66 |  | 
|---|
| 67 | bool raw_v6_match(struct net *net, const struct sock *sk, unsigned short num, | 
|---|
| 68 | const struct in6_addr *loc_addr, | 
|---|
| 69 | const struct in6_addr *rmt_addr, int dif, int sdif) | 
|---|
| 70 | { | 
|---|
| 71 | if (inet_sk(sk)->inet_num != num || | 
|---|
| 72 | !net_eq(net1: sock_net(sk), net2: net) || | 
|---|
| 73 | (!ipv6_addr_any(a: &sk->sk_v6_daddr) && | 
|---|
| 74 | !ipv6_addr_equal(a1: &sk->sk_v6_daddr, a2: rmt_addr)) || | 
|---|
| 75 | !raw_sk_bound_dev_eq(net, bound_dev_if: sk->sk_bound_dev_if, | 
|---|
| 76 | dif, sdif)) | 
|---|
| 77 | return false; | 
|---|
| 78 |  | 
|---|
| 79 | if (ipv6_addr_any(a: &sk->sk_v6_rcv_saddr) || | 
|---|
| 80 | ipv6_addr_equal(a1: &sk->sk_v6_rcv_saddr, a2: loc_addr) || | 
|---|
| 81 | (ipv6_addr_is_multicast(addr: loc_addr) && | 
|---|
| 82 | inet6_mc_check(sk, mc_addr: loc_addr, src_addr: rmt_addr))) | 
|---|
| 83 | return true; | 
|---|
| 84 |  | 
|---|
| 85 | return false; | 
|---|
| 86 | } | 
|---|
| 87 | EXPORT_SYMBOL_GPL(raw_v6_match); | 
|---|
| 88 |  | 
|---|
| 89 | /* | 
|---|
| 90 | *	0 - deliver | 
|---|
| 91 | *	1 - block | 
|---|
| 92 | */ | 
|---|
| 93 | static int icmpv6_filter(const struct sock *sk, const struct sk_buff *skb) | 
|---|
| 94 | { | 
|---|
| 95 | struct icmp6hdr _hdr; | 
|---|
| 96 | const struct icmp6hdr *hdr; | 
|---|
| 97 |  | 
|---|
| 98 | /* We require only the four bytes of the ICMPv6 header, not any | 
|---|
| 99 | * additional bytes of message body in "struct icmp6hdr". | 
|---|
| 100 | */ | 
|---|
| 101 | hdr = skb_header_pointer(skb, offset: skb_transport_offset(skb), | 
|---|
| 102 | ICMPV6_HDRLEN, buffer: &_hdr); | 
|---|
| 103 | if (hdr) { | 
|---|
| 104 | const __u32 *data = &raw6_sk(sk)->filter.data[0]; | 
|---|
| 105 | unsigned int type = hdr->icmp6_type; | 
|---|
| 106 |  | 
|---|
| 107 | return (data[type >> 5] & (1U << (type & 31))) != 0; | 
|---|
| 108 | } | 
|---|
| 109 | return 1; | 
|---|
| 110 | } | 
|---|
| 111 |  | 
|---|
| 112 | #if IS_ENABLED(CONFIG_IPV6_MIP6) | 
|---|
| 113 | typedef int mh_filter_t(struct sock *sock, struct sk_buff *skb); | 
|---|
| 114 |  | 
|---|
| 115 | static mh_filter_t __rcu *mh_filter __read_mostly; | 
|---|
| 116 |  | 
|---|
| 117 | int rawv6_mh_filter_register(mh_filter_t filter) | 
|---|
| 118 | { | 
|---|
| 119 | rcu_assign_pointer(mh_filter, filter); | 
|---|
| 120 | return 0; | 
|---|
| 121 | } | 
|---|
| 122 | EXPORT_SYMBOL(rawv6_mh_filter_register); | 
|---|
| 123 |  | 
|---|
| 124 | int rawv6_mh_filter_unregister(mh_filter_t filter) | 
|---|
| 125 | { | 
|---|
| 126 | RCU_INIT_POINTER(mh_filter, NULL); | 
|---|
| 127 | synchronize_rcu(); | 
|---|
| 128 | return 0; | 
|---|
| 129 | } | 
|---|
| 130 | EXPORT_SYMBOL(rawv6_mh_filter_unregister); | 
|---|
| 131 |  | 
|---|
| 132 | #endif | 
|---|
| 133 |  | 
|---|
| 134 | /* | 
|---|
| 135 | *	demultiplex raw sockets. | 
|---|
| 136 | *	(should consider queueing the skb in the sock receive_queue | 
|---|
| 137 | *	without calling rawv6.c) | 
|---|
| 138 | * | 
|---|
| 139 | *	Caller owns SKB so we must make clones. | 
|---|
| 140 | */ | 
|---|
| 141 | static bool ipv6_raw_deliver(struct sk_buff *skb, int nexthdr) | 
|---|
| 142 | { | 
|---|
| 143 | struct net *net = dev_net(dev: skb->dev); | 
|---|
| 144 | const struct in6_addr *saddr; | 
|---|
| 145 | const struct in6_addr *daddr; | 
|---|
| 146 | struct hlist_head *hlist; | 
|---|
| 147 | struct sock *sk; | 
|---|
| 148 | bool delivered = false; | 
|---|
| 149 | __u8 hash; | 
|---|
| 150 |  | 
|---|
| 151 | saddr = &ipv6_hdr(skb)->saddr; | 
|---|
| 152 | daddr = saddr + 1; | 
|---|
| 153 |  | 
|---|
| 154 | hash = raw_hashfunc(net, proto: nexthdr); | 
|---|
| 155 | hlist = &raw_v6_hashinfo.ht[hash]; | 
|---|
| 156 | rcu_read_lock(); | 
|---|
| 157 | sk_for_each_rcu(sk, hlist) { | 
|---|
| 158 | int filtered; | 
|---|
| 159 |  | 
|---|
| 160 | if (!raw_v6_match(net, sk, nexthdr, daddr, saddr, | 
|---|
| 161 | inet6_iif(skb), inet6_sdif(skb))) | 
|---|
| 162 | continue; | 
|---|
| 163 |  | 
|---|
| 164 | if (atomic_read(v: &sk->sk_rmem_alloc) >= | 
|---|
| 165 | READ_ONCE(sk->sk_rcvbuf)) { | 
|---|
| 166 | sk_drops_inc(sk); | 
|---|
| 167 | continue; | 
|---|
| 168 | } | 
|---|
| 169 |  | 
|---|
| 170 | delivered = true; | 
|---|
| 171 | switch (nexthdr) { | 
|---|
| 172 | case IPPROTO_ICMPV6: | 
|---|
| 173 | filtered = icmpv6_filter(sk, skb); | 
|---|
| 174 | break; | 
|---|
| 175 |  | 
|---|
| 176 | #if IS_ENABLED(CONFIG_IPV6_MIP6) | 
|---|
| 177 | case IPPROTO_MH: | 
|---|
| 178 | { | 
|---|
| 179 | /* XXX: To validate MH only once for each packet, | 
|---|
| 180 | * this is placed here. It should be after checking | 
|---|
| 181 | * xfrm policy, however it doesn't. The checking xfrm | 
|---|
| 182 | * policy is placed in rawv6_rcv() because it is | 
|---|
| 183 | * required for each socket. | 
|---|
| 184 | */ | 
|---|
| 185 | mh_filter_t *filter; | 
|---|
| 186 |  | 
|---|
| 187 | filter = rcu_dereference(mh_filter); | 
|---|
| 188 | filtered = filter ? (*filter)(sk, skb) : 0; | 
|---|
| 189 | break; | 
|---|
| 190 | } | 
|---|
| 191 | #endif | 
|---|
| 192 | default: | 
|---|
| 193 | filtered = 0; | 
|---|
| 194 | break; | 
|---|
| 195 | } | 
|---|
| 196 |  | 
|---|
| 197 | if (filtered < 0) | 
|---|
| 198 | break; | 
|---|
| 199 | if (filtered == 0) { | 
|---|
| 200 | struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC); | 
|---|
| 201 |  | 
|---|
| 202 | /* Not releasing hash table! */ | 
|---|
| 203 | if (clone) | 
|---|
| 204 | rawv6_rcv(sk, skb: clone); | 
|---|
| 205 | } | 
|---|
| 206 | } | 
|---|
| 207 | rcu_read_unlock(); | 
|---|
| 208 | return delivered; | 
|---|
| 209 | } | 
|---|
| 210 |  | 
|---|
| 211 | bool raw6_local_deliver(struct sk_buff *skb, int nexthdr) | 
|---|
| 212 | { | 
|---|
| 213 | return ipv6_raw_deliver(skb, nexthdr); | 
|---|
| 214 | } | 
|---|
| 215 |  | 
|---|
| 216 | /* This cleans up af_inet6 a bit. -DaveM */ | 
|---|
| 217 | static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len) | 
|---|
| 218 | { | 
|---|
| 219 | struct inet_sock *inet = inet_sk(sk); | 
|---|
| 220 | struct ipv6_pinfo *np = inet6_sk(sk: sk); | 
|---|
| 221 | struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr; | 
|---|
| 222 | __be32 v4addr = 0; | 
|---|
| 223 | int addr_type; | 
|---|
| 224 | int err; | 
|---|
| 225 |  | 
|---|
| 226 | if (addr_len < SIN6_LEN_RFC2133) | 
|---|
| 227 | return -EINVAL; | 
|---|
| 228 |  | 
|---|
| 229 | if (addr->sin6_family != AF_INET6) | 
|---|
| 230 | return -EINVAL; | 
|---|
| 231 |  | 
|---|
| 232 | addr_type = ipv6_addr_type(addr: &addr->sin6_addr); | 
|---|
| 233 |  | 
|---|
| 234 | /* Raw sockets are IPv6 only */ | 
|---|
| 235 | if (addr_type == IPV6_ADDR_MAPPED) | 
|---|
| 236 | return -EADDRNOTAVAIL; | 
|---|
| 237 |  | 
|---|
| 238 | lock_sock(sk); | 
|---|
| 239 |  | 
|---|
| 240 | err = -EINVAL; | 
|---|
| 241 | if (sk->sk_state != TCP_CLOSE) | 
|---|
| 242 | goto out; | 
|---|
| 243 |  | 
|---|
| 244 | rcu_read_lock(); | 
|---|
| 245 | /* Check if the address belongs to the host. */ | 
|---|
| 246 | if (addr_type != IPV6_ADDR_ANY) { | 
|---|
| 247 | struct net_device *dev = NULL; | 
|---|
| 248 |  | 
|---|
| 249 | if (__ipv6_addr_needs_scope_id(type: addr_type)) { | 
|---|
| 250 | if (addr_len >= sizeof(struct sockaddr_in6) && | 
|---|
| 251 | addr->sin6_scope_id) { | 
|---|
| 252 | /* Override any existing binding, if another | 
|---|
| 253 | * one is supplied by user. | 
|---|
| 254 | */ | 
|---|
| 255 | sk->sk_bound_dev_if = addr->sin6_scope_id; | 
|---|
| 256 | } | 
|---|
| 257 |  | 
|---|
| 258 | /* Binding to link-local address requires an interface */ | 
|---|
| 259 | if (!sk->sk_bound_dev_if) | 
|---|
| 260 | goto out_unlock; | 
|---|
| 261 | } | 
|---|
| 262 |  | 
|---|
| 263 | if (sk->sk_bound_dev_if) { | 
|---|
| 264 | err = -ENODEV; | 
|---|
| 265 | dev = dev_get_by_index_rcu(net: sock_net(sk), | 
|---|
| 266 | ifindex: sk->sk_bound_dev_if); | 
|---|
| 267 | if (!dev) | 
|---|
| 268 | goto out_unlock; | 
|---|
| 269 | } | 
|---|
| 270 |  | 
|---|
| 271 | /* ipv4 addr of the socket is invalid.  Only the | 
|---|
| 272 | * unspecified and mapped address have a v4 equivalent. | 
|---|
| 273 | */ | 
|---|
| 274 | v4addr = LOOPBACK4_IPV6; | 
|---|
| 275 | if (!(addr_type & IPV6_ADDR_MULTICAST) && | 
|---|
| 276 | !ipv6_can_nonlocal_bind(net: sock_net(sk), inet)) { | 
|---|
| 277 | err = -EADDRNOTAVAIL; | 
|---|
| 278 | if (!ipv6_chk_addr(net: sock_net(sk), addr: &addr->sin6_addr, | 
|---|
| 279 | dev, strict: 0)) { | 
|---|
| 280 | goto out_unlock; | 
|---|
| 281 | } | 
|---|
| 282 | } | 
|---|
| 283 | } | 
|---|
| 284 |  | 
|---|
| 285 | inet->inet_rcv_saddr = inet->inet_saddr = v4addr; | 
|---|
| 286 | sk->sk_v6_rcv_saddr = addr->sin6_addr; | 
|---|
| 287 | if (!(addr_type & IPV6_ADDR_MULTICAST)) | 
|---|
| 288 | np->saddr = addr->sin6_addr; | 
|---|
| 289 | err = 0; | 
|---|
| 290 | out_unlock: | 
|---|
| 291 | rcu_read_unlock(); | 
|---|
| 292 | out: | 
|---|
| 293 | release_sock(sk); | 
|---|
| 294 | return err; | 
|---|
| 295 | } | 
|---|
| 296 |  | 
|---|
| 297 | static void rawv6_err(struct sock *sk, struct sk_buff *skb, | 
|---|
| 298 | u8 type, u8 code, int offset, __be32 info) | 
|---|
| 299 | { | 
|---|
| 300 | bool recverr = inet6_test_bit(RECVERR6, sk); | 
|---|
| 301 | struct ipv6_pinfo *np = inet6_sk(sk: sk); | 
|---|
| 302 | int err; | 
|---|
| 303 | int harderr; | 
|---|
| 304 |  | 
|---|
| 305 | /* Report error on raw socket, if: | 
|---|
| 306 | 1. User requested recverr. | 
|---|
| 307 | 2. Socket is connected (otherwise the error indication | 
|---|
| 308 | is useless without recverr and error is hard. | 
|---|
| 309 | */ | 
|---|
| 310 | if (!recverr && sk->sk_state != TCP_ESTABLISHED) | 
|---|
| 311 | return; | 
|---|
| 312 |  | 
|---|
| 313 | harderr = icmpv6_err_convert(type, code, err: &err); | 
|---|
| 314 | if (type == ICMPV6_PKT_TOOBIG) { | 
|---|
| 315 | ip6_sk_update_pmtu(skb, sk, mtu: info); | 
|---|
| 316 | harderr = (READ_ONCE(np->pmtudisc) == IPV6_PMTUDISC_DO); | 
|---|
| 317 | } | 
|---|
| 318 | if (type == NDISC_REDIRECT) { | 
|---|
| 319 | ip6_sk_redirect(skb, sk); | 
|---|
| 320 | return; | 
|---|
| 321 | } | 
|---|
| 322 | if (recverr) { | 
|---|
| 323 | u8 *payload = skb->data; | 
|---|
| 324 | if (!inet_test_bit(HDRINCL, sk)) | 
|---|
| 325 | payload += offset; | 
|---|
| 326 | ipv6_icmp_error(sk, skb, err, port: 0, ntohl(info), payload); | 
|---|
| 327 | } | 
|---|
| 328 |  | 
|---|
| 329 | if (recverr || harderr) { | 
|---|
| 330 | sk->sk_err = err; | 
|---|
| 331 | sk_error_report(sk); | 
|---|
| 332 | } | 
|---|
| 333 | } | 
|---|
| 334 |  | 
|---|
| 335 | void raw6_icmp_error(struct sk_buff *skb, int nexthdr, | 
|---|
| 336 | u8 type, u8 code, int inner_offset, __be32 info) | 
|---|
| 337 | { | 
|---|
| 338 | struct net *net = dev_net(dev: skb->dev); | 
|---|
| 339 | struct hlist_head *hlist; | 
|---|
| 340 | struct sock *sk; | 
|---|
| 341 | int hash; | 
|---|
| 342 |  | 
|---|
| 343 | hash = raw_hashfunc(net, proto: nexthdr); | 
|---|
| 344 | hlist = &raw_v6_hashinfo.ht[hash]; | 
|---|
| 345 | rcu_read_lock(); | 
|---|
| 346 | sk_for_each_rcu(sk, hlist) { | 
|---|
| 347 | /* Note: ipv6_hdr(skb) != skb->data */ | 
|---|
| 348 | const struct ipv6hdr *ip6h = (const struct ipv6hdr *)skb->data; | 
|---|
| 349 |  | 
|---|
| 350 | if (!raw_v6_match(net, sk, nexthdr, &ip6h->saddr, &ip6h->daddr, | 
|---|
| 351 | inet6_iif(skb), inet6_iif(skb))) | 
|---|
| 352 | continue; | 
|---|
| 353 | rawv6_err(sk, skb, type, code, offset: inner_offset, info); | 
|---|
| 354 | } | 
|---|
| 355 | rcu_read_unlock(); | 
|---|
| 356 | } | 
|---|
| 357 |  | 
|---|
| 358 | static inline int rawv6_rcv_skb(struct sock *sk, struct sk_buff *skb) | 
|---|
| 359 | { | 
|---|
| 360 | enum skb_drop_reason reason; | 
|---|
| 361 |  | 
|---|
| 362 | if ((raw6_sk(sk)->checksum || rcu_access_pointer(sk->sk_filter)) && | 
|---|
| 363 | skb_checksum_complete(skb)) { | 
|---|
| 364 | sk_drops_inc(sk); | 
|---|
| 365 | sk_skb_reason_drop(sk, skb, reason: SKB_DROP_REASON_SKB_CSUM); | 
|---|
| 366 | return NET_RX_DROP; | 
|---|
| 367 | } | 
|---|
| 368 |  | 
|---|
| 369 | /* Charge it to the socket. */ | 
|---|
| 370 | skb_dst_drop(skb); | 
|---|
| 371 | if (sock_queue_rcv_skb_reason(sk, skb, reason: &reason) < 0) { | 
|---|
| 372 | sk_skb_reason_drop(sk, skb, reason); | 
|---|
| 373 | return NET_RX_DROP; | 
|---|
| 374 | } | 
|---|
| 375 |  | 
|---|
| 376 | return 0; | 
|---|
| 377 | } | 
|---|
| 378 |  | 
|---|
| 379 | /* | 
|---|
| 380 | *	This is next to useless... | 
|---|
| 381 | *	if we demultiplex in network layer we don't need the extra call | 
|---|
| 382 | *	just to queue the skb... | 
|---|
| 383 | *	maybe we could have the network decide upon a hint if it | 
|---|
| 384 | *	should call raw_rcv for demultiplexing | 
|---|
| 385 | */ | 
|---|
| 386 | int rawv6_rcv(struct sock *sk, struct sk_buff *skb) | 
|---|
| 387 | { | 
|---|
| 388 | struct inet_sock *inet = inet_sk(sk); | 
|---|
| 389 | struct raw6_sock *rp = raw6_sk(sk); | 
|---|
| 390 |  | 
|---|
| 391 | if (!xfrm6_policy_check(sk, dir: XFRM_POLICY_IN, skb)) { | 
|---|
| 392 | sk_drops_inc(sk); | 
|---|
| 393 | sk_skb_reason_drop(sk, skb, reason: SKB_DROP_REASON_XFRM_POLICY); | 
|---|
| 394 | return NET_RX_DROP; | 
|---|
| 395 | } | 
|---|
| 396 | nf_reset_ct(skb); | 
|---|
| 397 |  | 
|---|
| 398 | if (!rp->checksum) | 
|---|
| 399 | skb->ip_summed = CHECKSUM_UNNECESSARY; | 
|---|
| 400 |  | 
|---|
| 401 | if (skb->ip_summed == CHECKSUM_COMPLETE) { | 
|---|
| 402 | skb_postpull_rcsum(skb, start: skb_network_header(skb), | 
|---|
| 403 | len: skb_network_header_len(skb)); | 
|---|
| 404 | if (!csum_ipv6_magic(saddr: &ipv6_hdr(skb)->saddr, | 
|---|
| 405 | daddr: &ipv6_hdr(skb)->daddr, | 
|---|
| 406 | len: skb->len, proto: inet->inet_num, sum: skb->csum)) | 
|---|
| 407 | skb->ip_summed = CHECKSUM_UNNECESSARY; | 
|---|
| 408 | } | 
|---|
| 409 | if (!skb_csum_unnecessary(skb)) | 
|---|
| 410 | skb->csum = ~csum_unfold(n: csum_ipv6_magic(saddr: &ipv6_hdr(skb)->saddr, | 
|---|
| 411 | daddr: &ipv6_hdr(skb)->daddr, | 
|---|
| 412 | len: skb->len, | 
|---|
| 413 | proto: inet->inet_num, sum: 0)); | 
|---|
| 414 |  | 
|---|
| 415 | if (inet_test_bit(HDRINCL, sk)) { | 
|---|
| 416 | if (skb_checksum_complete(skb)) { | 
|---|
| 417 | sk_drops_inc(sk); | 
|---|
| 418 | sk_skb_reason_drop(sk, skb, reason: SKB_DROP_REASON_SKB_CSUM); | 
|---|
| 419 | return NET_RX_DROP; | 
|---|
| 420 | } | 
|---|
| 421 | } | 
|---|
| 422 |  | 
|---|
| 423 | rawv6_rcv_skb(sk, skb); | 
|---|
| 424 | return 0; | 
|---|
| 425 | } | 
|---|
| 426 |  | 
|---|
| 427 |  | 
|---|
| 428 | /* | 
|---|
| 429 | *	This should be easy, if there is something there | 
|---|
| 430 | *	we return it, otherwise we block. | 
|---|
| 431 | */ | 
|---|
| 432 |  | 
|---|
| 433 | static int rawv6_recvmsg(struct sock *sk, struct msghdr *msg, size_t len, | 
|---|
| 434 | int flags, int *addr_len) | 
|---|
| 435 | { | 
|---|
| 436 | struct ipv6_pinfo *np = inet6_sk(sk: sk); | 
|---|
| 437 | DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); | 
|---|
| 438 | struct sk_buff *skb; | 
|---|
| 439 | size_t copied; | 
|---|
| 440 | int err; | 
|---|
| 441 |  | 
|---|
| 442 | if (flags & MSG_OOB) | 
|---|
| 443 | return -EOPNOTSUPP; | 
|---|
| 444 |  | 
|---|
| 445 | if (flags & MSG_ERRQUEUE) | 
|---|
| 446 | return ipv6_recv_error(sk, msg, len, addr_len); | 
|---|
| 447 |  | 
|---|
| 448 | if (np->rxopt.bits.rxpmtu && READ_ONCE(np->rxpmtu)) | 
|---|
| 449 | return ipv6_recv_rxpmtu(sk, msg, len, addr_len); | 
|---|
| 450 |  | 
|---|
| 451 | skb = skb_recv_datagram(sk, flags, err: &err); | 
|---|
| 452 | if (!skb) | 
|---|
| 453 | goto out; | 
|---|
| 454 |  | 
|---|
| 455 | copied = skb->len; | 
|---|
| 456 | if (copied > len) { | 
|---|
| 457 | copied = len; | 
|---|
| 458 | msg->msg_flags |= MSG_TRUNC; | 
|---|
| 459 | } | 
|---|
| 460 |  | 
|---|
| 461 | if (skb_csum_unnecessary(skb)) { | 
|---|
| 462 | err = skb_copy_datagram_msg(from: skb, offset: 0, msg, size: copied); | 
|---|
| 463 | } else if (msg->msg_flags&MSG_TRUNC) { | 
|---|
| 464 | if (__skb_checksum_complete(skb)) | 
|---|
| 465 | goto csum_copy_err; | 
|---|
| 466 | err = skb_copy_datagram_msg(from: skb, offset: 0, msg, size: copied); | 
|---|
| 467 | } else { | 
|---|
| 468 | err = skb_copy_and_csum_datagram_msg(skb, hlen: 0, msg); | 
|---|
| 469 | if (err == -EINVAL) | 
|---|
| 470 | goto csum_copy_err; | 
|---|
| 471 | } | 
|---|
| 472 | if (err) | 
|---|
| 473 | goto out_free; | 
|---|
| 474 |  | 
|---|
| 475 | /* Copy the address. */ | 
|---|
| 476 | if (sin6) { | 
|---|
| 477 | sin6->sin6_family = AF_INET6; | 
|---|
| 478 | sin6->sin6_port = 0; | 
|---|
| 479 | sin6->sin6_addr = ipv6_hdr(skb)->saddr; | 
|---|
| 480 | sin6->sin6_flowinfo = 0; | 
|---|
| 481 | sin6->sin6_scope_id = ipv6_iface_scope_id(addr: &sin6->sin6_addr, | 
|---|
| 482 | iface: inet6_iif(skb)); | 
|---|
| 483 | *addr_len = sizeof(*sin6); | 
|---|
| 484 | } | 
|---|
| 485 |  | 
|---|
| 486 | sock_recv_cmsgs(msg, sk, skb); | 
|---|
| 487 |  | 
|---|
| 488 | if (np->rxopt.all) | 
|---|
| 489 | ip6_datagram_recv_ctl(sk, msg, skb); | 
|---|
| 490 |  | 
|---|
| 491 | err = copied; | 
|---|
| 492 | if (flags & MSG_TRUNC) | 
|---|
| 493 | err = skb->len; | 
|---|
| 494 |  | 
|---|
| 495 | out_free: | 
|---|
| 496 | skb_free_datagram(sk, skb); | 
|---|
| 497 | out: | 
|---|
| 498 | return err; | 
|---|
| 499 |  | 
|---|
| 500 | csum_copy_err: | 
|---|
| 501 | skb_kill_datagram(sk, skb, flags); | 
|---|
| 502 |  | 
|---|
| 503 | /* Error for blocking case is chosen to masquerade | 
|---|
| 504 | as some normal condition. | 
|---|
| 505 | */ | 
|---|
| 506 | err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH; | 
|---|
| 507 | goto out; | 
|---|
| 508 | } | 
|---|
| 509 |  | 
|---|
| 510 | static int rawv6_push_pending_frames(struct sock *sk, struct flowi6 *fl6, | 
|---|
| 511 | struct raw6_sock *rp) | 
|---|
| 512 | { | 
|---|
| 513 | struct ipv6_txoptions *opt; | 
|---|
| 514 | struct sk_buff *skb; | 
|---|
| 515 | int err = 0; | 
|---|
| 516 | int offset; | 
|---|
| 517 | int len; | 
|---|
| 518 | int total_len; | 
|---|
| 519 | __wsum tmp_csum; | 
|---|
| 520 | __sum16 csum; | 
|---|
| 521 |  | 
|---|
| 522 | if (!rp->checksum) | 
|---|
| 523 | goto send; | 
|---|
| 524 |  | 
|---|
| 525 | skb = skb_peek(list_: &sk->sk_write_queue); | 
|---|
| 526 | if (!skb) | 
|---|
| 527 | goto out; | 
|---|
| 528 |  | 
|---|
| 529 | offset = rp->offset; | 
|---|
| 530 | total_len = inet_sk(sk)->cork.base.length; | 
|---|
| 531 | opt = inet6_sk(sk: sk)->cork.opt; | 
|---|
| 532 | total_len -= opt ? opt->opt_flen : 0; | 
|---|
| 533 |  | 
|---|
| 534 | if (offset >= total_len - 1) { | 
|---|
| 535 | err = -EINVAL; | 
|---|
| 536 | ip6_flush_pending_frames(sk); | 
|---|
| 537 | goto out; | 
|---|
| 538 | } | 
|---|
| 539 |  | 
|---|
| 540 | /* should be check HW csum miyazawa */ | 
|---|
| 541 | if (skb_queue_len(list_: &sk->sk_write_queue) == 1) { | 
|---|
| 542 | /* | 
|---|
| 543 | * Only one fragment on the socket. | 
|---|
| 544 | */ | 
|---|
| 545 | tmp_csum = skb->csum; | 
|---|
| 546 | } else { | 
|---|
| 547 | struct sk_buff *csum_skb = NULL; | 
|---|
| 548 | tmp_csum = 0; | 
|---|
| 549 |  | 
|---|
| 550 | skb_queue_walk(&sk->sk_write_queue, skb) { | 
|---|
| 551 | tmp_csum = csum_add(csum: tmp_csum, addend: skb->csum); | 
|---|
| 552 |  | 
|---|
| 553 | if (csum_skb) | 
|---|
| 554 | continue; | 
|---|
| 555 |  | 
|---|
| 556 | len = skb->len - skb_transport_offset(skb); | 
|---|
| 557 | if (offset >= len) { | 
|---|
| 558 | offset -= len; | 
|---|
| 559 | continue; | 
|---|
| 560 | } | 
|---|
| 561 |  | 
|---|
| 562 | csum_skb = skb; | 
|---|
| 563 | } | 
|---|
| 564 |  | 
|---|
| 565 | skb = csum_skb; | 
|---|
| 566 | } | 
|---|
| 567 |  | 
|---|
| 568 | offset += skb_transport_offset(skb); | 
|---|
| 569 | err = skb_copy_bits(skb, offset, to: &csum, len: 2); | 
|---|
| 570 | if (err < 0) { | 
|---|
| 571 | ip6_flush_pending_frames(sk); | 
|---|
| 572 | goto out; | 
|---|
| 573 | } | 
|---|
| 574 |  | 
|---|
| 575 | /* in case cksum was not initialized */ | 
|---|
| 576 | if (unlikely(csum)) | 
|---|
| 577 | tmp_csum = csum_sub(csum: tmp_csum, addend: csum_unfold(n: csum)); | 
|---|
| 578 |  | 
|---|
| 579 | csum = csum_ipv6_magic(saddr: &fl6->saddr, daddr: &fl6->daddr, | 
|---|
| 580 | len: total_len, proto: fl6->flowi6_proto, sum: tmp_csum); | 
|---|
| 581 |  | 
|---|
| 582 | if (csum == 0 && fl6->flowi6_proto == IPPROTO_UDP) | 
|---|
| 583 | csum = CSUM_MANGLED_0; | 
|---|
| 584 |  | 
|---|
| 585 | BUG_ON(skb_store_bits(skb, offset, &csum, 2)); | 
|---|
| 586 |  | 
|---|
| 587 | send: | 
|---|
| 588 | err = ip6_push_pending_frames(sk); | 
|---|
| 589 | out: | 
|---|
| 590 | return err; | 
|---|
| 591 | } | 
|---|
| 592 |  | 
|---|
| 593 | static int rawv6_send_hdrinc(struct sock *sk, struct msghdr *msg, int length, | 
|---|
| 594 | struct flowi6 *fl6, struct dst_entry **dstp, | 
|---|
| 595 | unsigned int flags, const struct sockcm_cookie *sockc) | 
|---|
| 596 | { | 
|---|
| 597 | struct net *net = sock_net(sk); | 
|---|
| 598 | struct ipv6hdr *iph; | 
|---|
| 599 | struct sk_buff *skb; | 
|---|
| 600 | int err; | 
|---|
| 601 | struct rt6_info *rt = dst_rt6_info(*dstp); | 
|---|
| 602 | int hlen = LL_RESERVED_SPACE(rt->dst.dev); | 
|---|
| 603 | int tlen = rt->dst.dev->needed_tailroom; | 
|---|
| 604 |  | 
|---|
| 605 | if (length > rt->dst.dev->mtu) { | 
|---|
| 606 | ipv6_local_error(sk, EMSGSIZE, fl6, info: rt->dst.dev->mtu); | 
|---|
| 607 | return -EMSGSIZE; | 
|---|
| 608 | } | 
|---|
| 609 | if (length < sizeof(struct ipv6hdr)) | 
|---|
| 610 | return -EINVAL; | 
|---|
| 611 | if (flags&MSG_PROBE) | 
|---|
| 612 | goto out; | 
|---|
| 613 |  | 
|---|
| 614 | skb = sock_alloc_send_skb(sk, | 
|---|
| 615 | size: length + hlen + tlen + 15, | 
|---|
| 616 | noblock: flags & MSG_DONTWAIT, errcode: &err); | 
|---|
| 617 | if (!skb) | 
|---|
| 618 | goto error; | 
|---|
| 619 | skb_reserve(skb, len: hlen); | 
|---|
| 620 |  | 
|---|
| 621 | skb->protocol = htons(ETH_P_IPV6); | 
|---|
| 622 | skb->priority = sockc->priority; | 
|---|
| 623 | skb->mark = sockc->mark; | 
|---|
| 624 | skb_set_delivery_type_by_clockid(skb, kt: sockc->transmit_time, clockid: sk->sk_clockid); | 
|---|
| 625 |  | 
|---|
| 626 | skb_put(skb, len: length); | 
|---|
| 627 | skb_reset_network_header(skb); | 
|---|
| 628 | iph = ipv6_hdr(skb); | 
|---|
| 629 |  | 
|---|
| 630 | skb->ip_summed = CHECKSUM_NONE; | 
|---|
| 631 |  | 
|---|
| 632 | skb_setup_tx_timestamp(skb, sockc); | 
|---|
| 633 |  | 
|---|
| 634 | if (flags & MSG_CONFIRM) | 
|---|
| 635 | skb_set_dst_pending_confirm(skb, val: 1); | 
|---|
| 636 |  | 
|---|
| 637 | skb->transport_header = skb->network_header; | 
|---|
| 638 | err = memcpy_from_msg(data: iph, msg, len: length); | 
|---|
| 639 | if (err) { | 
|---|
| 640 | err = -EFAULT; | 
|---|
| 641 | kfree_skb(skb); | 
|---|
| 642 | goto error; | 
|---|
| 643 | } | 
|---|
| 644 |  | 
|---|
| 645 | skb_dst_set(skb, dst: &rt->dst); | 
|---|
| 646 | *dstp = NULL; | 
|---|
| 647 |  | 
|---|
| 648 | /* if egress device is enslaved to an L3 master device pass the | 
|---|
| 649 | * skb to its handler for processing | 
|---|
| 650 | */ | 
|---|
| 651 | skb = l3mdev_ip6_out(sk, skb); | 
|---|
| 652 | if (unlikely(!skb)) | 
|---|
| 653 | return 0; | 
|---|
| 654 |  | 
|---|
| 655 | /* Acquire rcu_read_lock() in case we need to use rt->rt6i_idev | 
|---|
| 656 | * in the error path. Since skb has been freed, the dst could | 
|---|
| 657 | * have been queued for deletion. | 
|---|
| 658 | */ | 
|---|
| 659 | rcu_read_lock(); | 
|---|
| 660 | IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTREQUESTS); | 
|---|
| 661 | err = NF_HOOK(pf: NFPROTO_IPV6, hook: NF_INET_LOCAL_OUT, net, sk, skb, | 
|---|
| 662 | NULL, out: rt->dst.dev, okfn: dst_output); | 
|---|
| 663 | if (err > 0) | 
|---|
| 664 | err = net_xmit_errno(err); | 
|---|
| 665 | if (err) { | 
|---|
| 666 | IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS); | 
|---|
| 667 | rcu_read_unlock(); | 
|---|
| 668 | goto error_check; | 
|---|
| 669 | } | 
|---|
| 670 | rcu_read_unlock(); | 
|---|
| 671 | out: | 
|---|
| 672 | return 0; | 
|---|
| 673 |  | 
|---|
| 674 | error: | 
|---|
| 675 | IP6_INC_STATS(net, rt->rt6i_idev, IPSTATS_MIB_OUTDISCARDS); | 
|---|
| 676 | error_check: | 
|---|
| 677 | if (err == -ENOBUFS && !inet6_test_bit(RECVERR6, sk)) | 
|---|
| 678 | err = 0; | 
|---|
| 679 | return err; | 
|---|
| 680 | } | 
|---|
| 681 |  | 
|---|
| 682 | struct raw6_frag_vec { | 
|---|
| 683 | struct msghdr *msg; | 
|---|
| 684 | int hlen; | 
|---|
| 685 | char c[4]; | 
|---|
| 686 | }; | 
|---|
| 687 |  | 
|---|
| 688 | static int rawv6_probe_proto_opt(struct raw6_frag_vec *rfv, struct flowi6 *fl6) | 
|---|
| 689 | { | 
|---|
| 690 | int err = 0; | 
|---|
| 691 | switch (fl6->flowi6_proto) { | 
|---|
| 692 | case IPPROTO_ICMPV6: | 
|---|
| 693 | rfv->hlen = 2; | 
|---|
| 694 | err = memcpy_from_msg(data: rfv->c, msg: rfv->msg, len: rfv->hlen); | 
|---|
| 695 | if (!err) { | 
|---|
| 696 | fl6->fl6_icmp_type = rfv->c[0]; | 
|---|
| 697 | fl6->fl6_icmp_code = rfv->c[1]; | 
|---|
| 698 | } | 
|---|
| 699 | break; | 
|---|
| 700 | case IPPROTO_MH: | 
|---|
| 701 | rfv->hlen = 4; | 
|---|
| 702 | err = memcpy_from_msg(data: rfv->c, msg: rfv->msg, len: rfv->hlen); | 
|---|
| 703 | if (!err) | 
|---|
| 704 | fl6->fl6_mh_type = rfv->c[2]; | 
|---|
| 705 | } | 
|---|
| 706 | return err; | 
|---|
| 707 | } | 
|---|
| 708 |  | 
|---|
| 709 | static int raw6_getfrag(void *from, char *to, int offset, int len, int odd, | 
|---|
| 710 | struct sk_buff *skb) | 
|---|
| 711 | { | 
|---|
| 712 | struct raw6_frag_vec *rfv = from; | 
|---|
| 713 |  | 
|---|
| 714 | if (offset < rfv->hlen) { | 
|---|
| 715 | int copy = min(rfv->hlen - offset, len); | 
|---|
| 716 |  | 
|---|
| 717 | if (skb->ip_summed == CHECKSUM_PARTIAL) | 
|---|
| 718 | memcpy(to, from: rfv->c + offset, len: copy); | 
|---|
| 719 | else | 
|---|
| 720 | skb->csum = csum_block_add( | 
|---|
| 721 | csum: skb->csum, | 
|---|
| 722 | csum2: csum_partial_copy_nocheck(src: rfv->c + offset, | 
|---|
| 723 | dst: to, len: copy), | 
|---|
| 724 | offset: odd); | 
|---|
| 725 |  | 
|---|
| 726 | odd = 0; | 
|---|
| 727 | offset += copy; | 
|---|
| 728 | to += copy; | 
|---|
| 729 | len -= copy; | 
|---|
| 730 |  | 
|---|
| 731 | if (!len) | 
|---|
| 732 | return 0; | 
|---|
| 733 | } | 
|---|
| 734 |  | 
|---|
| 735 | offset -= rfv->hlen; | 
|---|
| 736 |  | 
|---|
| 737 | return ip_generic_getfrag(from: rfv->msg, to, offset, len, odd, skb); | 
|---|
| 738 | } | 
|---|
| 739 |  | 
|---|
| 740 | static int rawv6_sendmsg(struct sock *sk, struct msghdr *msg, size_t len) | 
|---|
| 741 | { | 
|---|
| 742 | struct ipv6_txoptions *opt_to_free = NULL; | 
|---|
| 743 | struct ipv6_txoptions opt_space; | 
|---|
| 744 | DECLARE_SOCKADDR(struct sockaddr_in6 *, sin6, msg->msg_name); | 
|---|
| 745 | struct in6_addr *daddr, *final_p, final; | 
|---|
| 746 | struct inet_sock *inet = inet_sk(sk); | 
|---|
| 747 | struct ipv6_pinfo *np = inet6_sk(sk: sk); | 
|---|
| 748 | struct raw6_sock *rp = raw6_sk(sk); | 
|---|
| 749 | struct ipv6_txoptions *opt = NULL; | 
|---|
| 750 | struct ip6_flowlabel *flowlabel = NULL; | 
|---|
| 751 | struct dst_entry *dst = NULL; | 
|---|
| 752 | struct raw6_frag_vec rfv; | 
|---|
| 753 | struct flowi6 fl6; | 
|---|
| 754 | struct ipcm6_cookie ipc6; | 
|---|
| 755 | int addr_len = msg->msg_namelen; | 
|---|
| 756 | int hdrincl; | 
|---|
| 757 | u16 proto; | 
|---|
| 758 | int err; | 
|---|
| 759 |  | 
|---|
| 760 | /* Rough check on arithmetic overflow, | 
|---|
| 761 | better check is made in ip6_append_data(). | 
|---|
| 762 | */ | 
|---|
| 763 | if (len > INT_MAX) | 
|---|
| 764 | return -EMSGSIZE; | 
|---|
| 765 |  | 
|---|
| 766 | /* Mirror BSD error message compatibility */ | 
|---|
| 767 | if (msg->msg_flags & MSG_OOB) | 
|---|
| 768 | return -EOPNOTSUPP; | 
|---|
| 769 |  | 
|---|
| 770 | hdrincl = inet_test_bit(HDRINCL, sk); | 
|---|
| 771 |  | 
|---|
| 772 | ipcm6_init_sk(ipc6: &ipc6, sk); | 
|---|
| 773 |  | 
|---|
| 774 | /* | 
|---|
| 775 | *	Get and verify the address. | 
|---|
| 776 | */ | 
|---|
| 777 | memset(s: &fl6, c: 0, n: sizeof(fl6)); | 
|---|
| 778 |  | 
|---|
| 779 | fl6.flowi6_mark = ipc6.sockc.mark; | 
|---|
| 780 | fl6.flowi6_uid = sk_uid(sk); | 
|---|
| 781 |  | 
|---|
| 782 | if (sin6) { | 
|---|
| 783 | if (addr_len < SIN6_LEN_RFC2133) | 
|---|
| 784 | return -EINVAL; | 
|---|
| 785 |  | 
|---|
| 786 | if (sin6->sin6_family && sin6->sin6_family != AF_INET6) | 
|---|
| 787 | return -EAFNOSUPPORT; | 
|---|
| 788 |  | 
|---|
| 789 | /* port is the proto value [0..255] carried in nexthdr */ | 
|---|
| 790 | proto = ntohs(sin6->sin6_port); | 
|---|
| 791 |  | 
|---|
| 792 | if (!proto) | 
|---|
| 793 | proto = inet->inet_num; | 
|---|
| 794 | else if (proto != inet->inet_num && | 
|---|
| 795 | inet->inet_num != IPPROTO_RAW) | 
|---|
| 796 | return -EINVAL; | 
|---|
| 797 |  | 
|---|
| 798 | if (proto > 255) | 
|---|
| 799 | return -EINVAL; | 
|---|
| 800 |  | 
|---|
| 801 | daddr = &sin6->sin6_addr; | 
|---|
| 802 | if (inet6_test_bit(SNDFLOW, sk)) { | 
|---|
| 803 | fl6.flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK; | 
|---|
| 804 | if (fl6.flowlabel&IPV6_FLOWLABEL_MASK) { | 
|---|
| 805 | flowlabel = fl6_sock_lookup(sk, label: fl6.flowlabel); | 
|---|
| 806 | if (IS_ERR(ptr: flowlabel)) | 
|---|
| 807 | return -EINVAL; | 
|---|
| 808 | } | 
|---|
| 809 | } | 
|---|
| 810 |  | 
|---|
| 811 | /* | 
|---|
| 812 | * Otherwise it will be difficult to maintain | 
|---|
| 813 | * sk->sk_dst_cache. | 
|---|
| 814 | */ | 
|---|
| 815 | if (sk->sk_state == TCP_ESTABLISHED && | 
|---|
| 816 | ipv6_addr_equal(a1: daddr, a2: &sk->sk_v6_daddr)) | 
|---|
| 817 | daddr = &sk->sk_v6_daddr; | 
|---|
| 818 |  | 
|---|
| 819 | if (addr_len >= sizeof(struct sockaddr_in6) && | 
|---|
| 820 | sin6->sin6_scope_id && | 
|---|
| 821 | __ipv6_addr_needs_scope_id(type: __ipv6_addr_type(addr: daddr))) | 
|---|
| 822 | fl6.flowi6_oif = sin6->sin6_scope_id; | 
|---|
| 823 | } else { | 
|---|
| 824 | if (sk->sk_state != TCP_ESTABLISHED) | 
|---|
| 825 | return -EDESTADDRREQ; | 
|---|
| 826 |  | 
|---|
| 827 | proto = inet->inet_num; | 
|---|
| 828 | daddr = &sk->sk_v6_daddr; | 
|---|
| 829 | fl6.flowlabel = np->flow_label; | 
|---|
| 830 | } | 
|---|
| 831 |  | 
|---|
| 832 | if (fl6.flowi6_oif == 0) | 
|---|
| 833 | fl6.flowi6_oif = sk->sk_bound_dev_if; | 
|---|
| 834 |  | 
|---|
| 835 | if (msg->msg_controllen) { | 
|---|
| 836 | opt = &opt_space; | 
|---|
| 837 | memset(s: opt, c: 0, n: sizeof(struct ipv6_txoptions)); | 
|---|
| 838 | opt->tot_len = sizeof(struct ipv6_txoptions); | 
|---|
| 839 | ipc6.opt = opt; | 
|---|
| 840 |  | 
|---|
| 841 | err = ip6_datagram_send_ctl(net: sock_net(sk), sk, msg, fl6: &fl6, ipc6: &ipc6); | 
|---|
| 842 | if (err < 0) { | 
|---|
| 843 | fl6_sock_release(fl: flowlabel); | 
|---|
| 844 | return err; | 
|---|
| 845 | } | 
|---|
| 846 | if ((fl6.flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) { | 
|---|
| 847 | flowlabel = fl6_sock_lookup(sk, label: fl6.flowlabel); | 
|---|
| 848 | if (IS_ERR(ptr: flowlabel)) | 
|---|
| 849 | return -EINVAL; | 
|---|
| 850 | } | 
|---|
| 851 | if (!(opt->opt_nflen|opt->opt_flen)) | 
|---|
| 852 | opt = NULL; | 
|---|
| 853 | } | 
|---|
| 854 | if (!opt) { | 
|---|
| 855 | opt = txopt_get(np); | 
|---|
| 856 | opt_to_free = opt; | 
|---|
| 857 | } | 
|---|
| 858 | if (flowlabel) | 
|---|
| 859 | opt = fl6_merge_options(opt_space: &opt_space, fl: flowlabel, fopt: opt); | 
|---|
| 860 | opt = ipv6_fixup_options(opt_space: &opt_space, opt); | 
|---|
| 861 |  | 
|---|
| 862 | fl6.flowi6_proto = proto; | 
|---|
| 863 | fl6.flowi6_mark = ipc6.sockc.mark; | 
|---|
| 864 |  | 
|---|
| 865 | if (!hdrincl) { | 
|---|
| 866 | rfv.msg = msg; | 
|---|
| 867 | rfv.hlen = 0; | 
|---|
| 868 | err = rawv6_probe_proto_opt(rfv: &rfv, fl6: &fl6); | 
|---|
| 869 | if (err) | 
|---|
| 870 | goto out; | 
|---|
| 871 | } | 
|---|
| 872 |  | 
|---|
| 873 | if (!ipv6_addr_any(a: daddr)) | 
|---|
| 874 | fl6.daddr = *daddr; | 
|---|
| 875 | else | 
|---|
| 876 | fl6.daddr.s6_addr[15] = 0x1; /* :: means loopback (BSD'ism) */ | 
|---|
| 877 | if (ipv6_addr_any(a: &fl6.saddr) && !ipv6_addr_any(a: &np->saddr)) | 
|---|
| 878 | fl6.saddr = np->saddr; | 
|---|
| 879 |  | 
|---|
| 880 | final_p = fl6_update_dst(fl6: &fl6, opt, orig: &final); | 
|---|
| 881 |  | 
|---|
| 882 | if (!fl6.flowi6_oif && ipv6_addr_is_multicast(addr: &fl6.daddr)) | 
|---|
| 883 | fl6.flowi6_oif = READ_ONCE(np->mcast_oif); | 
|---|
| 884 | else if (!fl6.flowi6_oif) | 
|---|
| 885 | fl6.flowi6_oif = READ_ONCE(np->ucast_oif); | 
|---|
| 886 | security_sk_classify_flow(sk, flic: flowi6_to_flowi_common(fl6: &fl6)); | 
|---|
| 887 |  | 
|---|
| 888 | if (hdrincl) | 
|---|
| 889 | fl6.flowi6_flags |= FLOWI_FLAG_KNOWN_NH; | 
|---|
| 890 |  | 
|---|
| 891 | fl6.flowlabel = ip6_make_flowinfo(tclass: ipc6.tclass, flowlabel: fl6.flowlabel); | 
|---|
| 892 |  | 
|---|
| 893 | dst = ip6_dst_lookup_flow(net: sock_net(sk), sk, fl6: &fl6, final_dst: final_p); | 
|---|
| 894 | if (IS_ERR(ptr: dst)) { | 
|---|
| 895 | err = PTR_ERR(ptr: dst); | 
|---|
| 896 | goto out; | 
|---|
| 897 | } | 
|---|
| 898 | if (ipc6.hlimit < 0) | 
|---|
| 899 | ipc6.hlimit = ip6_sk_dst_hoplimit(np, fl6: &fl6, dst); | 
|---|
| 900 |  | 
|---|
| 901 | if (msg->msg_flags&MSG_CONFIRM) | 
|---|
| 902 | goto do_confirm; | 
|---|
| 903 |  | 
|---|
| 904 | back_from_confirm: | 
|---|
| 905 | if (hdrincl) | 
|---|
| 906 | err = rawv6_send_hdrinc(sk, msg, length: len, fl6: &fl6, dstp: &dst, | 
|---|
| 907 | flags: msg->msg_flags, sockc: &ipc6.sockc); | 
|---|
| 908 | else { | 
|---|
| 909 | ipc6.opt = opt; | 
|---|
| 910 | lock_sock(sk); | 
|---|
| 911 | err = ip6_append_data(sk, getfrag: raw6_getfrag, from: &rfv, | 
|---|
| 912 | length: len, transhdrlen: 0, ipc6: &ipc6, fl6: &fl6, dst_rt6_info(dst), | 
|---|
| 913 | flags: msg->msg_flags); | 
|---|
| 914 |  | 
|---|
| 915 | if (err) | 
|---|
| 916 | ip6_flush_pending_frames(sk); | 
|---|
| 917 | else if (!(msg->msg_flags & MSG_MORE)) | 
|---|
| 918 | err = rawv6_push_pending_frames(sk, fl6: &fl6, rp); | 
|---|
| 919 | release_sock(sk); | 
|---|
| 920 | } | 
|---|
| 921 | done: | 
|---|
| 922 | dst_release(dst); | 
|---|
| 923 | out: | 
|---|
| 924 | fl6_sock_release(fl: flowlabel); | 
|---|
| 925 | txopt_put(opt: opt_to_free); | 
|---|
| 926 | return err < 0 ? err : len; | 
|---|
| 927 | do_confirm: | 
|---|
| 928 | if (msg->msg_flags & MSG_PROBE) | 
|---|
| 929 | dst_confirm_neigh(dst, daddr: &fl6.daddr); | 
|---|
| 930 | if (!(msg->msg_flags & MSG_PROBE) || len) | 
|---|
| 931 | goto back_from_confirm; | 
|---|
| 932 | err = 0; | 
|---|
| 933 | goto done; | 
|---|
| 934 | } | 
|---|
| 935 |  | 
|---|
| 936 | static int rawv6_seticmpfilter(struct sock *sk, int optname, | 
|---|
| 937 | sockptr_t optval, int optlen) | 
|---|
| 938 | { | 
|---|
| 939 | switch (optname) { | 
|---|
| 940 | case ICMPV6_FILTER: | 
|---|
| 941 | if (optlen > sizeof(struct icmp6_filter)) | 
|---|
| 942 | optlen = sizeof(struct icmp6_filter); | 
|---|
| 943 | if (copy_from_sockptr(dst: &raw6_sk(sk)->filter, src: optval, size: optlen)) | 
|---|
| 944 | return -EFAULT; | 
|---|
| 945 | return 0; | 
|---|
| 946 | default: | 
|---|
| 947 | return -ENOPROTOOPT; | 
|---|
| 948 | } | 
|---|
| 949 |  | 
|---|
| 950 | return 0; | 
|---|
| 951 | } | 
|---|
| 952 |  | 
|---|
| 953 | static int rawv6_geticmpfilter(struct sock *sk, int optname, | 
|---|
| 954 | char __user *optval, int __user *optlen) | 
|---|
| 955 | { | 
|---|
| 956 | int len; | 
|---|
| 957 |  | 
|---|
| 958 | switch (optname) { | 
|---|
| 959 | case ICMPV6_FILTER: | 
|---|
| 960 | if (get_user(len, optlen)) | 
|---|
| 961 | return -EFAULT; | 
|---|
| 962 | if (len < 0) | 
|---|
| 963 | return -EINVAL; | 
|---|
| 964 | if (len > sizeof(struct icmp6_filter)) | 
|---|
| 965 | len = sizeof(struct icmp6_filter); | 
|---|
| 966 | if (put_user(len, optlen)) | 
|---|
| 967 | return -EFAULT; | 
|---|
| 968 | if (copy_to_user(to: optval, from: &raw6_sk(sk)->filter, n: len)) | 
|---|
| 969 | return -EFAULT; | 
|---|
| 970 | return 0; | 
|---|
| 971 | default: | 
|---|
| 972 | return -ENOPROTOOPT; | 
|---|
| 973 | } | 
|---|
| 974 |  | 
|---|
| 975 | return 0; | 
|---|
| 976 | } | 
|---|
| 977 |  | 
|---|
| 978 |  | 
|---|
| 979 | static int do_rawv6_setsockopt(struct sock *sk, int level, int optname, | 
|---|
| 980 | sockptr_t optval, unsigned int optlen) | 
|---|
| 981 | { | 
|---|
| 982 | struct raw6_sock *rp = raw6_sk(sk); | 
|---|
| 983 | int val; | 
|---|
| 984 |  | 
|---|
| 985 | if (optlen < sizeof(val)) | 
|---|
| 986 | return -EINVAL; | 
|---|
| 987 |  | 
|---|
| 988 | if (copy_from_sockptr(dst: &val, src: optval, size: sizeof(val))) | 
|---|
| 989 | return -EFAULT; | 
|---|
| 990 |  | 
|---|
| 991 | switch (optname) { | 
|---|
| 992 | case IPV6_HDRINCL: | 
|---|
| 993 | if (sk->sk_type != SOCK_RAW) | 
|---|
| 994 | return -EINVAL; | 
|---|
| 995 | inet_assign_bit(HDRINCL, sk, val); | 
|---|
| 996 | return 0; | 
|---|
| 997 | case IPV6_CHECKSUM: | 
|---|
| 998 | if (inet_sk(sk)->inet_num == IPPROTO_ICMPV6 && | 
|---|
| 999 | level == IPPROTO_IPV6) { | 
|---|
| 1000 | /* | 
|---|
| 1001 | * RFC3542 tells that IPV6_CHECKSUM socket | 
|---|
| 1002 | * option in the IPPROTO_IPV6 level is not | 
|---|
| 1003 | * allowed on ICMPv6 sockets. | 
|---|
| 1004 | * If you want to set it, use IPPROTO_RAW | 
|---|
| 1005 | * level IPV6_CHECKSUM socket option | 
|---|
| 1006 | * (Linux extension). | 
|---|
| 1007 | */ | 
|---|
| 1008 | return -EINVAL; | 
|---|
| 1009 | } | 
|---|
| 1010 |  | 
|---|
| 1011 | /* You may get strange result with a positive odd offset; | 
|---|
| 1012 | RFC2292bis agrees with me. */ | 
|---|
| 1013 | if (val > 0 && (val&1)) | 
|---|
| 1014 | return -EINVAL; | 
|---|
| 1015 | if (val < 0) { | 
|---|
| 1016 | rp->checksum = 0; | 
|---|
| 1017 | } else { | 
|---|
| 1018 | rp->checksum = 1; | 
|---|
| 1019 | rp->offset = val; | 
|---|
| 1020 | } | 
|---|
| 1021 |  | 
|---|
| 1022 | return 0; | 
|---|
| 1023 |  | 
|---|
| 1024 | default: | 
|---|
| 1025 | return -ENOPROTOOPT; | 
|---|
| 1026 | } | 
|---|
| 1027 | } | 
|---|
| 1028 |  | 
|---|
| 1029 | static int rawv6_setsockopt(struct sock *sk, int level, int optname, | 
|---|
| 1030 | sockptr_t optval, unsigned int optlen) | 
|---|
| 1031 | { | 
|---|
| 1032 | switch (level) { | 
|---|
| 1033 | case SOL_RAW: | 
|---|
| 1034 | break; | 
|---|
| 1035 |  | 
|---|
| 1036 | case SOL_ICMPV6: | 
|---|
| 1037 | if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6) | 
|---|
| 1038 | return -EOPNOTSUPP; | 
|---|
| 1039 | return rawv6_seticmpfilter(sk, optname, optval, optlen); | 
|---|
| 1040 | case SOL_IPV6: | 
|---|
| 1041 | if (optname == IPV6_CHECKSUM || | 
|---|
| 1042 | optname == IPV6_HDRINCL) | 
|---|
| 1043 | break; | 
|---|
| 1044 | fallthrough; | 
|---|
| 1045 | default: | 
|---|
| 1046 | return ipv6_setsockopt(sk, level, optname, optval, optlen); | 
|---|
| 1047 | } | 
|---|
| 1048 |  | 
|---|
| 1049 | return do_rawv6_setsockopt(sk, level, optname, optval, optlen); | 
|---|
| 1050 | } | 
|---|
| 1051 |  | 
|---|
| 1052 | static int do_rawv6_getsockopt(struct sock *sk, int level, int optname, | 
|---|
| 1053 | char __user *optval, int __user *optlen) | 
|---|
| 1054 | { | 
|---|
| 1055 | struct raw6_sock *rp = raw6_sk(sk); | 
|---|
| 1056 | int val, len; | 
|---|
| 1057 |  | 
|---|
| 1058 | if (get_user(len, optlen)) | 
|---|
| 1059 | return -EFAULT; | 
|---|
| 1060 |  | 
|---|
| 1061 | switch (optname) { | 
|---|
| 1062 | case IPV6_HDRINCL: | 
|---|
| 1063 | val = inet_test_bit(HDRINCL, sk); | 
|---|
| 1064 | break; | 
|---|
| 1065 | case IPV6_CHECKSUM: | 
|---|
| 1066 | /* | 
|---|
| 1067 | * We allow getsockopt() for IPPROTO_IPV6-level | 
|---|
| 1068 | * IPV6_CHECKSUM socket option on ICMPv6 sockets | 
|---|
| 1069 | * since RFC3542 is silent about it. | 
|---|
| 1070 | */ | 
|---|
| 1071 | if (rp->checksum == 0) | 
|---|
| 1072 | val = -1; | 
|---|
| 1073 | else | 
|---|
| 1074 | val = rp->offset; | 
|---|
| 1075 | break; | 
|---|
| 1076 |  | 
|---|
| 1077 | default: | 
|---|
| 1078 | return -ENOPROTOOPT; | 
|---|
| 1079 | } | 
|---|
| 1080 |  | 
|---|
| 1081 | len = min_t(unsigned int, sizeof(int), len); | 
|---|
| 1082 |  | 
|---|
| 1083 | if (put_user(len, optlen)) | 
|---|
| 1084 | return -EFAULT; | 
|---|
| 1085 | if (copy_to_user(to: optval, from: &val, n: len)) | 
|---|
| 1086 | return -EFAULT; | 
|---|
| 1087 | return 0; | 
|---|
| 1088 | } | 
|---|
| 1089 |  | 
|---|
| 1090 | static int rawv6_getsockopt(struct sock *sk, int level, int optname, | 
|---|
| 1091 | char __user *optval, int __user *optlen) | 
|---|
| 1092 | { | 
|---|
| 1093 | switch (level) { | 
|---|
| 1094 | case SOL_RAW: | 
|---|
| 1095 | break; | 
|---|
| 1096 |  | 
|---|
| 1097 | case SOL_ICMPV6: | 
|---|
| 1098 | if (inet_sk(sk)->inet_num != IPPROTO_ICMPV6) | 
|---|
| 1099 | return -EOPNOTSUPP; | 
|---|
| 1100 | return rawv6_geticmpfilter(sk, optname, optval, optlen); | 
|---|
| 1101 | case SOL_IPV6: | 
|---|
| 1102 | if (optname == IPV6_CHECKSUM || | 
|---|
| 1103 | optname == IPV6_HDRINCL) | 
|---|
| 1104 | break; | 
|---|
| 1105 | fallthrough; | 
|---|
| 1106 | default: | 
|---|
| 1107 | return ipv6_getsockopt(sk, level, optname, optval, optlen); | 
|---|
| 1108 | } | 
|---|
| 1109 |  | 
|---|
| 1110 | return do_rawv6_getsockopt(sk, level, optname, optval, optlen); | 
|---|
| 1111 | } | 
|---|
| 1112 |  | 
|---|
| 1113 | static int rawv6_ioctl(struct sock *sk, int cmd, int *karg) | 
|---|
| 1114 | { | 
|---|
| 1115 | switch (cmd) { | 
|---|
| 1116 | case SIOCOUTQ: { | 
|---|
| 1117 | *karg = sk_wmem_alloc_get(sk); | 
|---|
| 1118 | return 0; | 
|---|
| 1119 | } | 
|---|
| 1120 | case SIOCINQ: { | 
|---|
| 1121 | struct sk_buff *skb; | 
|---|
| 1122 |  | 
|---|
| 1123 | spin_lock_bh(lock: &sk->sk_receive_queue.lock); | 
|---|
| 1124 | skb = skb_peek(list_: &sk->sk_receive_queue); | 
|---|
| 1125 | if (skb) | 
|---|
| 1126 | *karg = skb->len; | 
|---|
| 1127 | else | 
|---|
| 1128 | *karg = 0; | 
|---|
| 1129 | spin_unlock_bh(lock: &sk->sk_receive_queue.lock); | 
|---|
| 1130 | return 0; | 
|---|
| 1131 | } | 
|---|
| 1132 |  | 
|---|
| 1133 | default: | 
|---|
| 1134 | #ifdef CONFIG_IPV6_MROUTE | 
|---|
| 1135 | return ip6mr_ioctl(sk, cmd, karg); | 
|---|
| 1136 | #else | 
|---|
| 1137 | return -ENOIOCTLCMD; | 
|---|
| 1138 | #endif | 
|---|
| 1139 | } | 
|---|
| 1140 | } | 
|---|
| 1141 |  | 
|---|
| 1142 | #ifdef CONFIG_COMPAT | 
|---|
| 1143 | static int compat_rawv6_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg) | 
|---|
| 1144 | { | 
|---|
| 1145 | switch (cmd) { | 
|---|
| 1146 | case SIOCOUTQ: | 
|---|
| 1147 | case SIOCINQ: | 
|---|
| 1148 | return -ENOIOCTLCMD; | 
|---|
| 1149 | default: | 
|---|
| 1150 | #ifdef CONFIG_IPV6_MROUTE | 
|---|
| 1151 | return ip6mr_compat_ioctl(sk, cmd, compat_ptr(arg)); | 
|---|
| 1152 | #else | 
|---|
| 1153 | return -ENOIOCTLCMD; | 
|---|
| 1154 | #endif | 
|---|
| 1155 | } | 
|---|
| 1156 | } | 
|---|
| 1157 | #endif | 
|---|
| 1158 |  | 
|---|
| 1159 | static void rawv6_close(struct sock *sk, long timeout) | 
|---|
| 1160 | { | 
|---|
| 1161 | if (inet_sk(sk)->inet_num == IPPROTO_RAW) | 
|---|
| 1162 | ip6_ra_control(sk, sel: -1); | 
|---|
| 1163 | ip6mr_sk_done(sk); | 
|---|
| 1164 | sk_common_release(sk); | 
|---|
| 1165 | } | 
|---|
| 1166 |  | 
|---|
| 1167 | static void raw6_destroy(struct sock *sk) | 
|---|
| 1168 | { | 
|---|
| 1169 | lock_sock(sk); | 
|---|
| 1170 | ip6_flush_pending_frames(sk); | 
|---|
| 1171 | release_sock(sk); | 
|---|
| 1172 | } | 
|---|
| 1173 |  | 
|---|
| 1174 | static int rawv6_init_sk(struct sock *sk) | 
|---|
| 1175 | { | 
|---|
| 1176 | struct raw6_sock *rp = raw6_sk(sk); | 
|---|
| 1177 |  | 
|---|
| 1178 | sk->sk_drop_counters = &rp->drop_counters; | 
|---|
| 1179 | switch (inet_sk(sk)->inet_num) { | 
|---|
| 1180 | case IPPROTO_ICMPV6: | 
|---|
| 1181 | rp->checksum = 1; | 
|---|
| 1182 | rp->offset   = 2; | 
|---|
| 1183 | break; | 
|---|
| 1184 | case IPPROTO_MH: | 
|---|
| 1185 | rp->checksum = 1; | 
|---|
| 1186 | rp->offset   = 4; | 
|---|
| 1187 | break; | 
|---|
| 1188 | default: | 
|---|
| 1189 | break; | 
|---|
| 1190 | } | 
|---|
| 1191 | return 0; | 
|---|
| 1192 | } | 
|---|
| 1193 |  | 
|---|
| 1194 | struct proto rawv6_prot = { | 
|---|
| 1195 | .name		   = "RAWv6", | 
|---|
| 1196 | .owner		   = THIS_MODULE, | 
|---|
| 1197 | .close		   = rawv6_close, | 
|---|
| 1198 | .destroy	   = raw6_destroy, | 
|---|
| 1199 | .connect	   = ip6_datagram_connect_v6_only, | 
|---|
| 1200 | .disconnect	   = __udp_disconnect, | 
|---|
| 1201 | .ioctl		   = rawv6_ioctl, | 
|---|
| 1202 | .init		   = rawv6_init_sk, | 
|---|
| 1203 | .setsockopt	   = rawv6_setsockopt, | 
|---|
| 1204 | .getsockopt	   = rawv6_getsockopt, | 
|---|
| 1205 | .sendmsg	   = rawv6_sendmsg, | 
|---|
| 1206 | .recvmsg	   = rawv6_recvmsg, | 
|---|
| 1207 | .bind		   = rawv6_bind, | 
|---|
| 1208 | .backlog_rcv	   = rawv6_rcv_skb, | 
|---|
| 1209 | .hash		   = raw_hash_sk, | 
|---|
| 1210 | .unhash		   = raw_unhash_sk, | 
|---|
| 1211 | .obj_size	   = sizeof(struct raw6_sock), | 
|---|
| 1212 | .ipv6_pinfo_offset = offsetof(struct raw6_sock, inet6), | 
|---|
| 1213 | .useroffset	   = offsetof(struct raw6_sock, filter), | 
|---|
| 1214 | .usersize	   = sizeof_field(struct raw6_sock, filter), | 
|---|
| 1215 | .h.raw_hash	   = &raw_v6_hashinfo, | 
|---|
| 1216 | #ifdef CONFIG_COMPAT | 
|---|
| 1217 | .compat_ioctl	   = compat_rawv6_ioctl, | 
|---|
| 1218 | #endif | 
|---|
| 1219 | .diag_destroy	   = raw_abort, | 
|---|
| 1220 | }; | 
|---|
| 1221 |  | 
|---|
| 1222 | #ifdef CONFIG_PROC_FS | 
|---|
| 1223 | static int raw6_seq_show(struct seq_file *seq, void *v) | 
|---|
| 1224 | { | 
|---|
| 1225 | if (v == SEQ_START_TOKEN) { | 
|---|
| 1226 | seq_puts(m: seq, IPV6_SEQ_DGRAM_HEADER); | 
|---|
| 1227 | } else { | 
|---|
| 1228 | struct sock *sp = v; | 
|---|
| 1229 | __u16 srcp  = inet_sk(sp)->inet_num; | 
|---|
| 1230 | ip6_dgram_sock_seq_show(seq, sp: v, srcp, destp: 0, | 
|---|
| 1231 | bucket: raw_seq_private(seq)->bucket); | 
|---|
| 1232 | } | 
|---|
| 1233 | return 0; | 
|---|
| 1234 | } | 
|---|
| 1235 |  | 
|---|
| 1236 | static const struct seq_operations raw6_seq_ops = { | 
|---|
| 1237 | .start =	raw_seq_start, | 
|---|
| 1238 | .next =		raw_seq_next, | 
|---|
| 1239 | .stop =		raw_seq_stop, | 
|---|
| 1240 | .show =		raw6_seq_show, | 
|---|
| 1241 | }; | 
|---|
| 1242 |  | 
|---|
| 1243 | static int __net_init raw6_init_net(struct net *net) | 
|---|
| 1244 | { | 
|---|
| 1245 | if (!proc_create_net_data(name: "raw6", mode: 0444, parent: net->proc_net, ops: &raw6_seq_ops, | 
|---|
| 1246 | state_size: sizeof(struct raw_iter_state), data: &raw_v6_hashinfo)) | 
|---|
| 1247 | return -ENOMEM; | 
|---|
| 1248 |  | 
|---|
| 1249 | return 0; | 
|---|
| 1250 | } | 
|---|
| 1251 |  | 
|---|
| 1252 | static void __net_exit raw6_exit_net(struct net *net) | 
|---|
| 1253 | { | 
|---|
| 1254 | remove_proc_entry( "raw6", net->proc_net); | 
|---|
| 1255 | } | 
|---|
| 1256 |  | 
|---|
| 1257 | static struct pernet_operations raw6_net_ops = { | 
|---|
| 1258 | .init = raw6_init_net, | 
|---|
| 1259 | .exit = raw6_exit_net, | 
|---|
| 1260 | }; | 
|---|
| 1261 |  | 
|---|
| 1262 | int __init raw6_proc_init(void) | 
|---|
| 1263 | { | 
|---|
| 1264 | return register_pernet_subsys(&raw6_net_ops); | 
|---|
| 1265 | } | 
|---|
| 1266 |  | 
|---|
| 1267 | void raw6_proc_exit(void) | 
|---|
| 1268 | { | 
|---|
| 1269 | unregister_pernet_subsys(&raw6_net_ops); | 
|---|
| 1270 | } | 
|---|
| 1271 | #endif	/* CONFIG_PROC_FS */ | 
|---|
| 1272 |  | 
|---|
| 1273 | /* Same as inet6_dgram_ops, sans udp_poll.  */ | 
|---|
| 1274 | const struct proto_ops inet6_sockraw_ops = { | 
|---|
| 1275 | .family		   = PF_INET6, | 
|---|
| 1276 | .owner		   = THIS_MODULE, | 
|---|
| 1277 | .release	   = inet6_release, | 
|---|
| 1278 | .bind		   = inet6_bind, | 
|---|
| 1279 | .connect	   = inet_dgram_connect,	/* ok		*/ | 
|---|
| 1280 | .socketpair	   = sock_no_socketpair,	/* a do nothing	*/ | 
|---|
| 1281 | .accept		   = sock_no_accept,		/* a do nothing	*/ | 
|---|
| 1282 | .getname	   = inet6_getname, | 
|---|
| 1283 | .poll		   = datagram_poll,		/* ok		*/ | 
|---|
| 1284 | .ioctl		   = inet6_ioctl,		/* must change  */ | 
|---|
| 1285 | .gettstamp	   = sock_gettstamp, | 
|---|
| 1286 | .listen		   = sock_no_listen,		/* ok		*/ | 
|---|
| 1287 | .shutdown	   = inet_shutdown,		/* ok		*/ | 
|---|
| 1288 | .setsockopt	   = sock_common_setsockopt,	/* ok		*/ | 
|---|
| 1289 | .getsockopt	   = sock_common_getsockopt,	/* ok		*/ | 
|---|
| 1290 | .sendmsg	   = inet_sendmsg,		/* ok		*/ | 
|---|
| 1291 | .recvmsg	   = sock_common_recvmsg,	/* ok		*/ | 
|---|
| 1292 | .mmap		   = sock_no_mmap, | 
|---|
| 1293 | #ifdef CONFIG_COMPAT | 
|---|
| 1294 | .compat_ioctl	   = inet6_compat_ioctl, | 
|---|
| 1295 | #endif | 
|---|
| 1296 | }; | 
|---|
| 1297 |  | 
|---|
| 1298 | static struct inet_protosw rawv6_protosw = { | 
|---|
| 1299 | .type		= SOCK_RAW, | 
|---|
| 1300 | .protocol	= IPPROTO_IP,	/* wild card */ | 
|---|
| 1301 | .prot		= &rawv6_prot, | 
|---|
| 1302 | .ops		= &inet6_sockraw_ops, | 
|---|
| 1303 | .flags		= INET_PROTOSW_REUSE, | 
|---|
| 1304 | }; | 
|---|
| 1305 |  | 
|---|
| 1306 | int __init rawv6_init(void) | 
|---|
| 1307 | { | 
|---|
| 1308 | return inet6_register_protosw(p: &rawv6_protosw); | 
|---|
| 1309 | } | 
|---|
| 1310 |  | 
|---|
| 1311 | void rawv6_exit(void) | 
|---|
| 1312 | { | 
|---|
| 1313 | inet6_unregister_protosw(p: &rawv6_protosw); | 
|---|
| 1314 | } | 
|---|
| 1315 |  | 
|---|