1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * INET An implementation of the TCP/IP protocol suite for the LINUX
4 * operating system. INET is implemented using the BSD Socket
5 * interface as the means of communication with the user level.
7 * RAW - implementation of IP "raw" sockets.
10 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
13 * Alan Cox : verify_area() fixed up
14 * Alan Cox : ICMP error handling
15 * Alan Cox : EMSGSIZE if you send too big a packet
16 * Alan Cox : Now uses generic datagrams and shared
17 * skbuff library. No more peek crashes,
19 * Alan Cox : Checks sk->broadcast.
20 * Alan Cox : Uses skb_free_datagram/skb_copy_datagram
21 * Alan Cox : Raw passes ip options too
22 * Alan Cox : Setsocketopt added
23 * Alan Cox : Fixed error return for broadcasts
24 * Alan Cox : Removed wake_up calls
25 * Alan Cox : Use ttl/tos
26 * Alan Cox : Cleaned up old debugging
27 * Alan Cox : Use new kernel side addresses
28 * Arnt Gulbrandsen : Fixed MSG_DONTROUTE in raw sockets.
29 * Alan Cox : BSD style RAW socket demultiplexing.
30 * Alan Cox : Beginnings of mrouted support.
31 * Alan Cox : Added IP_HDRINCL option.
32 * Alan Cox : Skip broadcast check if BSDism set.
33 * David S. Miller : New socket lookup architecture.
36 #include <linux/types.h>
37 #include <linux/atomic.h>
38 #include <asm/byteorder.h>
39 #include <asm/current.h>
40 #include <linux/uaccess.h>
41 #include <asm/ioctls.h>
42 #include <linux/stddef.h>
43 #include <linux/slab.h>
44 #include <linux/errno.h>
45 #include <linux/kernel.h>
46 #include <linux/export.h>
47 #include <linux/spinlock.h>
48 #include <linux/sockios.h>
49 #include <linux/socket.h>
51 #include <linux/mroute.h>
52 #include <linux/netdevice.h>
53 #include <linux/in_route.h>
54 #include <linux/route.h>
55 #include <linux/skbuff.h>
56 #include <linux/igmp.h>
57 #include <net/net_namespace.h>
61 #include <linux/net.h>
67 #include <net/tcp_states.h>
68 #include <net/inet_common.h>
69 #include <net/checksum.h>
71 #include <linux/rtnetlink.h>
72 #include <linux/proc_fs.h>
73 #include <linux/seq_file.h>
74 #include <linux/netfilter.h>
75 #include <linux/netfilter_ipv4.h>
76 #include <linux/compat.h>
77 #include <linux/uio.h>
88 struct raw_hashinfo raw_v4_hashinfo
= {
89 .lock
= __RW_LOCK_UNLOCKED(raw_v4_hashinfo
.lock
),
91 EXPORT_SYMBOL_GPL(raw_v4_hashinfo
);
93 int raw_hash_sk(struct sock
*sk
)
95 struct raw_hashinfo
*h
= sk
->sk_prot
->h
.raw_hash
;
96 struct hlist_head
*head
;
98 head
= &h
->ht
[inet_sk(sk
)->inet_num
& (RAW_HTABLE_SIZE
- 1)];
100 write_lock_bh(&h
->lock
);
101 sk_add_node(sk
, head
);
102 sock_prot_inuse_add(sock_net(sk
), sk
->sk_prot
, 1);
103 write_unlock_bh(&h
->lock
);
107 EXPORT_SYMBOL_GPL(raw_hash_sk
);
109 void raw_unhash_sk(struct sock
*sk
)
111 struct raw_hashinfo
*h
= sk
->sk_prot
->h
.raw_hash
;
113 write_lock_bh(&h
->lock
);
114 if (sk_del_node_init(sk
))
115 sock_prot_inuse_add(sock_net(sk
), sk
->sk_prot
, -1);
116 write_unlock_bh(&h
->lock
);
118 EXPORT_SYMBOL_GPL(raw_unhash_sk
);
120 struct sock
*__raw_v4_lookup(struct net
*net
, struct sock
*sk
,
121 unsigned short num
, __be32 raddr
, __be32 laddr
,
124 sk_for_each_from(sk
) {
125 struct inet_sock
*inet
= inet_sk(sk
);
127 if (net_eq(sock_net(sk
), net
) && inet
->inet_num
== num
&&
128 !(inet
->inet_daddr
&& inet
->inet_daddr
!= raddr
) &&
129 !(inet
->inet_rcv_saddr
&& inet
->inet_rcv_saddr
!= laddr
) &&
130 raw_sk_bound_dev_eq(net
, sk
->sk_bound_dev_if
, dif
, sdif
))
131 goto found
; /* gotcha */
137 EXPORT_SYMBOL_GPL(__raw_v4_lookup
);
143 static int icmp_filter(const struct sock
*sk
, const struct sk_buff
*skb
)
146 const struct icmphdr
*hdr
;
148 hdr
= skb_header_pointer(skb
, skb_transport_offset(skb
),
149 sizeof(_hdr
), &_hdr
);
153 if (hdr
->type
< 32) {
154 __u32 data
= raw_sk(sk
)->filter
.data
;
156 return ((1U << hdr
->type
) & data
) != 0;
159 /* Do not block unknown ICMP types */
163 /* IP input processing comes here for RAW socket delivery.
164 * Caller owns SKB, so we must make clones.
166 * RFC 1122: SHOULD pass TOS value up to the transport layer.
167 * -> It does. And not only TOS, but all IP header.
169 static int raw_v4_input(struct sk_buff
*skb
, const struct iphdr
*iph
, int hash
)
171 int sdif
= inet_sdif(skb
);
172 int dif
= inet_iif(skb
);
174 struct hlist_head
*head
;
178 read_lock(&raw_v4_hashinfo
.lock
);
179 head
= &raw_v4_hashinfo
.ht
[hash
];
180 if (hlist_empty(head
))
183 net
= dev_net(skb
->dev
);
184 sk
= __raw_v4_lookup(net
, __sk_head(head
), iph
->protocol
,
185 iph
->saddr
, iph
->daddr
, dif
, sdif
);
189 if ((iph
->protocol
!= IPPROTO_ICMP
|| !icmp_filter(sk
, skb
)) &&
190 ip_mc_sf_allow(sk
, iph
->daddr
, iph
->saddr
,
191 skb
->dev
->ifindex
, sdif
)) {
192 struct sk_buff
*clone
= skb_clone(skb
, GFP_ATOMIC
);
194 /* Not releasing hash table! */
198 sk
= __raw_v4_lookup(net
, sk_next(sk
), iph
->protocol
,
199 iph
->saddr
, iph
->daddr
,
203 read_unlock(&raw_v4_hashinfo
.lock
);
207 int raw_local_deliver(struct sk_buff
*skb
, int protocol
)
212 hash
= protocol
& (RAW_HTABLE_SIZE
- 1);
213 raw_sk
= sk_head(&raw_v4_hashinfo
.ht
[hash
]);
215 /* If there maybe a raw socket we must check - if not we
218 if (raw_sk
&& !raw_v4_input(skb
, ip_hdr(skb
), hash
))
221 return raw_sk
!= NULL
;
225 static void raw_err(struct sock
*sk
, struct sk_buff
*skb
, u32 info
)
227 struct inet_sock
*inet
= inet_sk(sk
);
228 const int type
= icmp_hdr(skb
)->type
;
229 const int code
= icmp_hdr(skb
)->code
;
233 if (type
== ICMP_DEST_UNREACH
&& code
== ICMP_FRAG_NEEDED
)
234 ipv4_sk_update_pmtu(skb
, sk
, info
);
235 else if (type
== ICMP_REDIRECT
) {
236 ipv4_sk_redirect(skb
, sk
);
240 /* Report error on raw socket, if:
241 1. User requested ip_recverr.
242 2. Socket is connected (otherwise the error indication
243 is useless without ip_recverr and error is hard.
245 if (!inet
->recverr
&& sk
->sk_state
!= TCP_ESTABLISHED
)
250 case ICMP_TIME_EXCEEDED
:
253 case ICMP_SOURCE_QUENCH
:
255 case ICMP_PARAMETERPROB
:
259 case ICMP_DEST_UNREACH
:
261 if (code
> NR_ICMP_UNREACH
)
263 err
= icmp_err_convert
[code
].errno
;
264 harderr
= icmp_err_convert
[code
].fatal
;
265 if (code
== ICMP_FRAG_NEEDED
) {
266 harderr
= inet
->pmtudisc
!= IP_PMTUDISC_DONT
;
272 const struct iphdr
*iph
= (const struct iphdr
*)skb
->data
;
273 u8
*payload
= skb
->data
+ (iph
->ihl
<< 2);
277 ip_icmp_error(sk
, skb
, err
, 0, info
, payload
);
280 if (inet
->recverr
|| harderr
) {
282 sk
->sk_error_report(sk
);
286 void raw_icmp_error(struct sk_buff
*skb
, int protocol
, u32 info
)
290 const struct iphdr
*iph
;
293 hash
= protocol
& (RAW_HTABLE_SIZE
- 1);
295 read_lock(&raw_v4_hashinfo
.lock
);
296 raw_sk
= sk_head(&raw_v4_hashinfo
.ht
[hash
]);
298 int dif
= skb
->dev
->ifindex
;
299 int sdif
= inet_sdif(skb
);
301 iph
= (const struct iphdr
*)skb
->data
;
302 net
= dev_net(skb
->dev
);
304 while ((raw_sk
= __raw_v4_lookup(net
, raw_sk
, protocol
,
305 iph
->daddr
, iph
->saddr
,
306 dif
, sdif
)) != NULL
) {
307 raw_err(raw_sk
, skb
, info
);
308 raw_sk
= sk_next(raw_sk
);
309 iph
= (const struct iphdr
*)skb
->data
;
312 read_unlock(&raw_v4_hashinfo
.lock
);
315 static int raw_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
317 /* Charge it to the socket. */
319 ipv4_pktinfo_prepare(sk
, skb
);
320 if (sock_queue_rcv_skb(sk
, skb
) < 0) {
325 return NET_RX_SUCCESS
;
328 int raw_rcv(struct sock
*sk
, struct sk_buff
*skb
)
330 if (!xfrm4_policy_check(sk
, XFRM_POLICY_IN
, skb
)) {
331 atomic_inc(&sk
->sk_drops
);
337 skb_push(skb
, skb
->data
- skb_network_header(skb
));
339 raw_rcv_skb(sk
, skb
);
343 static int raw_send_hdrinc(struct sock
*sk
, struct flowi4
*fl4
,
344 struct msghdr
*msg
, size_t length
,
345 struct rtable
**rtp
, unsigned int flags
,
346 const struct sockcm_cookie
*sockc
)
348 struct inet_sock
*inet
= inet_sk(sk
);
349 struct net
*net
= sock_net(sk
);
354 struct rtable
*rt
= *rtp
;
357 if (length
> rt
->dst
.dev
->mtu
) {
358 ip_local_error(sk
, EMSGSIZE
, fl4
->daddr
, inet
->inet_dport
,
362 if (length
< sizeof(struct iphdr
))
368 hlen
= LL_RESERVED_SPACE(rt
->dst
.dev
);
369 tlen
= rt
->dst
.dev
->needed_tailroom
;
370 skb
= sock_alloc_send_skb(sk
,
371 length
+ hlen
+ tlen
+ 15,
372 flags
& MSG_DONTWAIT
, &err
);
375 skb_reserve(skb
, hlen
);
377 skb
->priority
= sk
->sk_priority
;
378 skb
->mark
= sockc
->mark
;
379 skb
->tstamp
= sockc
->transmit_time
;
380 skb_dst_set(skb
, &rt
->dst
);
383 skb_reset_network_header(skb
);
385 skb_put(skb
, length
);
387 skb
->ip_summed
= CHECKSUM_NONE
;
389 skb_setup_tx_timestamp(skb
, sockc
->tsflags
);
391 if (flags
& MSG_CONFIRM
)
392 skb_set_dst_pending_confirm(skb
, 1);
394 skb
->transport_header
= skb
->network_header
;
396 if (memcpy_from_msg(iph
, msg
, length
))
399 iphlen
= iph
->ihl
* 4;
402 * We don't want to modify the ip header, but we do need to
403 * be sure that it won't cause problems later along the network
404 * stack. Specifically we want to make sure that iph->ihl is a
405 * sane value. If ihl points beyond the length of the buffer passed
406 * in, reject the frame as invalid
412 if (iphlen
>= sizeof(*iph
)) {
414 iph
->saddr
= fl4
->saddr
;
416 iph
->tot_len
= htons(length
);
418 ip_select_ident(net
, skb
, NULL
);
420 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
421 skb
->transport_header
+= iphlen
;
422 if (iph
->protocol
== IPPROTO_ICMP
&&
423 length
>= iphlen
+ sizeof(struct icmphdr
))
424 icmp_out_count(net
, ((struct icmphdr
*)
425 skb_transport_header(skb
))->type
);
428 err
= NF_HOOK(NFPROTO_IPV4
, NF_INET_LOCAL_OUT
,
429 net
, sk
, skb
, NULL
, rt
->dst
.dev
,
432 err
= net_xmit_errno(err
);
441 IP_INC_STATS(net
, IPSTATS_MIB_OUTDISCARDS
);
442 if (err
== -ENOBUFS
&& !inet
->recverr
)
447 static int raw_probe_proto_opt(struct raw_frag_vec
*rfv
, struct flowi4
*fl4
)
451 if (fl4
->flowi4_proto
!= IPPROTO_ICMP
)
454 /* We only need the first two bytes. */
457 err
= memcpy_from_msg(rfv
->hdr
.c
, rfv
->msg
, rfv
->hlen
);
461 fl4
->fl4_icmp_type
= rfv
->hdr
.icmph
.type
;
462 fl4
->fl4_icmp_code
= rfv
->hdr
.icmph
.code
;
467 static int raw_getfrag(void *from
, char *to
, int offset
, int len
, int odd
,
470 struct raw_frag_vec
*rfv
= from
;
472 if (offset
< rfv
->hlen
) {
473 int copy
= min(rfv
->hlen
- offset
, len
);
475 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
476 memcpy(to
, rfv
->hdr
.c
+ offset
, copy
);
478 skb
->csum
= csum_block_add(
480 csum_partial_copy_nocheck(rfv
->hdr
.c
+ offset
,
495 return ip_generic_getfrag(rfv
->msg
, to
, offset
, len
, odd
, skb
);
498 static int raw_sendmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
)
500 struct inet_sock
*inet
= inet_sk(sk
);
501 struct net
*net
= sock_net(sk
);
502 struct ipcm_cookie ipc
;
503 struct rtable
*rt
= NULL
;
510 struct ip_options_data opt_copy
;
511 struct raw_frag_vec rfv
;
518 /* hdrincl should be READ_ONCE(inet->hdrincl)
519 * but READ_ONCE() doesn't work with bit fields.
520 * Doing this indirectly yields the same result.
522 hdrincl
= inet
->hdrincl
;
523 hdrincl
= READ_ONCE(hdrincl
);
529 if (msg
->msg_flags
& MSG_OOB
) /* Mirror BSD error message */
530 goto out
; /* compatibility */
533 * Get and verify the address.
536 if (msg
->msg_namelen
) {
537 DECLARE_SOCKADDR(struct sockaddr_in
*, usin
, msg
->msg_name
);
539 if (msg
->msg_namelen
< sizeof(*usin
))
541 if (usin
->sin_family
!= AF_INET
) {
542 pr_info_once("%s: %s forgot to set AF_INET. Fix it!\n",
543 __func__
, current
->comm
);
545 if (usin
->sin_family
)
548 daddr
= usin
->sin_addr
.s_addr
;
549 /* ANK: I did not forget to get protocol from port field.
550 * I just do not know, who uses this weirdness.
551 * IP_HDRINCL is much more convenient.
555 if (sk
->sk_state
!= TCP_ESTABLISHED
)
557 daddr
= inet
->inet_daddr
;
560 ipcm_init_sk(&ipc
, inet
);
562 if (msg
->msg_controllen
) {
563 err
= ip_cmsg_send(sk
, msg
, &ipc
, false);
576 struct ip_options_rcu
*inet_opt
;
579 inet_opt
= rcu_dereference(inet
->inet_opt
);
581 memcpy(&opt_copy
, inet_opt
,
582 sizeof(*inet_opt
) + inet_opt
->opt
.optlen
);
583 ipc
.opt
= &opt_copy
.opt
;
590 /* Linux does not mangle headers on raw sockets,
591 * so that IP options + IP_HDRINCL is non-sense.
595 if (ipc
.opt
->opt
.srr
) {
598 daddr
= ipc
.opt
->opt
.faddr
;
601 tos
= get_rtconn_flags(&ipc
, sk
);
602 if (msg
->msg_flags
& MSG_DONTROUTE
)
605 if (ipv4_is_multicast(daddr
)) {
606 if (!ipc
.oif
|| netif_index_is_l3_master(sock_net(sk
), ipc
.oif
))
607 ipc
.oif
= inet
->mc_index
;
609 saddr
= inet
->mc_addr
;
610 } else if (!ipc
.oif
) {
611 ipc
.oif
= inet
->uc_index
;
612 } else if (ipv4_is_lbcast(daddr
) && inet
->uc_index
) {
613 /* oif is set, packet is to local broadcast and
614 * and uc_index is set. oif is most likely set
615 * by sk_bound_dev_if. If uc_index != oif check if the
616 * oif is an L3 master and uc_index is an L3 slave.
617 * If so, we want to allow the send using the uc_index.
619 if (ipc
.oif
!= inet
->uc_index
&&
620 ipc
.oif
== l3mdev_master_ifindex_by_index(sock_net(sk
),
622 ipc
.oif
= inet
->uc_index
;
626 flowi4_init_output(&fl4
, ipc
.oif
, ipc
.sockc
.mark
, tos
,
628 hdrincl
? IPPROTO_RAW
: sk
->sk_protocol
,
629 inet_sk_flowi_flags(sk
) |
630 (hdrincl
? FLOWI_FLAG_KNOWN_NH
: 0),
631 daddr
, saddr
, 0, 0, sk
->sk_uid
);
637 err
= raw_probe_proto_opt(&rfv
, &fl4
);
642 security_sk_classify_flow(sk
, flowi4_to_flowi(&fl4
));
643 rt
= ip_route_output_flow(net
, &fl4
, sk
);
651 if (rt
->rt_flags
& RTCF_BROADCAST
&& !sock_flag(sk
, SOCK_BROADCAST
))
654 if (msg
->msg_flags
& MSG_CONFIRM
)
659 err
= raw_send_hdrinc(sk
, &fl4
, msg
, len
,
660 &rt
, msg
->msg_flags
, &ipc
.sockc
);
664 ipc
.addr
= fl4
.daddr
;
666 err
= ip_append_data(sk
, &fl4
, raw_getfrag
,
668 &ipc
, &rt
, msg
->msg_flags
);
670 ip_flush_pending_frames(sk
);
671 else if (!(msg
->msg_flags
& MSG_MORE
)) {
672 err
= ip_push_pending_frames(sk
, &fl4
);
673 if (err
== -ENOBUFS
&& !inet
->recverr
)
689 if (msg
->msg_flags
& MSG_PROBE
)
690 dst_confirm_neigh(&rt
->dst
, &fl4
.daddr
);
691 if (!(msg
->msg_flags
& MSG_PROBE
) || len
)
692 goto back_from_confirm
;
697 static void raw_close(struct sock
*sk
, long timeout
)
700 * Raw sockets may have direct kernel references. Kill them.
702 ip_ra_control(sk
, 0, NULL
);
704 sk_common_release(sk
);
707 static void raw_destroy(struct sock
*sk
)
710 ip_flush_pending_frames(sk
);
714 /* This gets rid of all the nasties in af_inet. -DaveM */
715 static int raw_bind(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
717 struct inet_sock
*inet
= inet_sk(sk
);
718 struct sockaddr_in
*addr
= (struct sockaddr_in
*) uaddr
;
719 u32 tb_id
= RT_TABLE_LOCAL
;
723 if (sk
->sk_state
!= TCP_CLOSE
|| addr_len
< sizeof(struct sockaddr_in
))
726 if (sk
->sk_bound_dev_if
)
727 tb_id
= l3mdev_fib_table_by_index(sock_net(sk
),
728 sk
->sk_bound_dev_if
) ? : tb_id
;
730 chk_addr_ret
= inet_addr_type_table(sock_net(sk
), addr
->sin_addr
.s_addr
,
733 ret
= -EADDRNOTAVAIL
;
734 if (addr
->sin_addr
.s_addr
&& chk_addr_ret
!= RTN_LOCAL
&&
735 chk_addr_ret
!= RTN_MULTICAST
&& chk_addr_ret
!= RTN_BROADCAST
)
737 inet
->inet_rcv_saddr
= inet
->inet_saddr
= addr
->sin_addr
.s_addr
;
738 if (chk_addr_ret
== RTN_MULTICAST
|| chk_addr_ret
== RTN_BROADCAST
)
739 inet
->inet_saddr
= 0; /* Use device */
746 * This should be easy, if there is something there
747 * we return it, otherwise we block.
750 static int raw_recvmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
,
751 int noblock
, int flags
, int *addr_len
)
753 struct inet_sock
*inet
= inet_sk(sk
);
755 int err
= -EOPNOTSUPP
;
756 DECLARE_SOCKADDR(struct sockaddr_in
*, sin
, msg
->msg_name
);
762 if (flags
& MSG_ERRQUEUE
) {
763 err
= ip_recv_error(sk
, msg
, len
, addr_len
);
767 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
773 msg
->msg_flags
|= MSG_TRUNC
;
777 err
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
781 sock_recv_ts_and_drops(msg
, sk
, skb
);
783 /* Copy the address. */
785 sin
->sin_family
= AF_INET
;
786 sin
->sin_addr
.s_addr
= ip_hdr(skb
)->saddr
;
788 memset(&sin
->sin_zero
, 0, sizeof(sin
->sin_zero
));
789 *addr_len
= sizeof(*sin
);
791 if (inet
->cmsg_flags
)
792 ip_cmsg_recv(msg
, skb
);
793 if (flags
& MSG_TRUNC
)
796 skb_free_datagram(sk
, skb
);
803 static int raw_sk_init(struct sock
*sk
)
805 struct raw_sock
*rp
= raw_sk(sk
);
807 if (inet_sk(sk
)->inet_num
== IPPROTO_ICMP
)
808 memset(&rp
->filter
, 0, sizeof(rp
->filter
));
812 static int raw_seticmpfilter(struct sock
*sk
, char __user
*optval
, int optlen
)
814 if (optlen
> sizeof(struct icmp_filter
))
815 optlen
= sizeof(struct icmp_filter
);
816 if (copy_from_user(&raw_sk(sk
)->filter
, optval
, optlen
))
821 static int raw_geticmpfilter(struct sock
*sk
, char __user
*optval
, int __user
*optlen
)
823 int len
, ret
= -EFAULT
;
825 if (get_user(len
, optlen
))
830 if (len
> sizeof(struct icmp_filter
))
831 len
= sizeof(struct icmp_filter
);
833 if (put_user(len
, optlen
) ||
834 copy_to_user(optval
, &raw_sk(sk
)->filter
, len
))
840 static int do_raw_setsockopt(struct sock
*sk
, int level
, int optname
,
841 char __user
*optval
, unsigned int optlen
)
843 if (optname
== ICMP_FILTER
) {
844 if (inet_sk(sk
)->inet_num
!= IPPROTO_ICMP
)
847 return raw_seticmpfilter(sk
, optval
, optlen
);
852 static int raw_setsockopt(struct sock
*sk
, int level
, int optname
,
853 char __user
*optval
, unsigned int optlen
)
855 if (level
!= SOL_RAW
)
856 return ip_setsockopt(sk
, level
, optname
, optval
, optlen
);
857 return do_raw_setsockopt(sk
, level
, optname
, optval
, optlen
);
861 static int compat_raw_setsockopt(struct sock
*sk
, int level
, int optname
,
862 char __user
*optval
, unsigned int optlen
)
864 if (level
!= SOL_RAW
)
865 return compat_ip_setsockopt(sk
, level
, optname
, optval
, optlen
);
866 return do_raw_setsockopt(sk
, level
, optname
, optval
, optlen
);
870 static int do_raw_getsockopt(struct sock
*sk
, int level
, int optname
,
871 char __user
*optval
, int __user
*optlen
)
873 if (optname
== ICMP_FILTER
) {
874 if (inet_sk(sk
)->inet_num
!= IPPROTO_ICMP
)
877 return raw_geticmpfilter(sk
, optval
, optlen
);
882 static int raw_getsockopt(struct sock
*sk
, int level
, int optname
,
883 char __user
*optval
, int __user
*optlen
)
885 if (level
!= SOL_RAW
)
886 return ip_getsockopt(sk
, level
, optname
, optval
, optlen
);
887 return do_raw_getsockopt(sk
, level
, optname
, optval
, optlen
);
891 static int compat_raw_getsockopt(struct sock
*sk
, int level
, int optname
,
892 char __user
*optval
, int __user
*optlen
)
894 if (level
!= SOL_RAW
)
895 return compat_ip_getsockopt(sk
, level
, optname
, optval
, optlen
);
896 return do_raw_getsockopt(sk
, level
, optname
, optval
, optlen
);
900 static int raw_ioctl(struct sock
*sk
, int cmd
, unsigned long arg
)
904 int amount
= sk_wmem_alloc_get(sk
);
906 return put_user(amount
, (int __user
*)arg
);
912 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
913 skb
= skb_peek(&sk
->sk_receive_queue
);
916 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
917 return put_user(amount
, (int __user
*)arg
);
921 #ifdef CONFIG_IP_MROUTE
922 return ipmr_ioctl(sk
, cmd
, (void __user
*)arg
);
930 static int compat_raw_ioctl(struct sock
*sk
, unsigned int cmd
, unsigned long arg
)
937 #ifdef CONFIG_IP_MROUTE
938 return ipmr_compat_ioctl(sk
, cmd
, compat_ptr(arg
));
946 int raw_abort(struct sock
*sk
, int err
)
951 sk
->sk_error_report(sk
);
952 __udp_disconnect(sk
, 0);
958 EXPORT_SYMBOL_GPL(raw_abort
);
960 struct proto raw_prot
= {
962 .owner
= THIS_MODULE
,
964 .destroy
= raw_destroy
,
965 .connect
= ip4_datagram_connect
,
966 .disconnect
= __udp_disconnect
,
969 .setsockopt
= raw_setsockopt
,
970 .getsockopt
= raw_getsockopt
,
971 .sendmsg
= raw_sendmsg
,
972 .recvmsg
= raw_recvmsg
,
974 .backlog_rcv
= raw_rcv_skb
,
975 .release_cb
= ip4_datagram_release_cb
,
977 .unhash
= raw_unhash_sk
,
978 .obj_size
= sizeof(struct raw_sock
),
979 .useroffset
= offsetof(struct raw_sock
, filter
),
980 .usersize
= sizeof_field(struct raw_sock
, filter
),
981 .h
.raw_hash
= &raw_v4_hashinfo
,
983 .compat_setsockopt
= compat_raw_setsockopt
,
984 .compat_getsockopt
= compat_raw_getsockopt
,
985 .compat_ioctl
= compat_raw_ioctl
,
987 .diag_destroy
= raw_abort
,
990 #ifdef CONFIG_PROC_FS
991 static struct sock
*raw_get_first(struct seq_file
*seq
)
994 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
995 struct raw_iter_state
*state
= raw_seq_private(seq
);
997 for (state
->bucket
= 0; state
->bucket
< RAW_HTABLE_SIZE
;
999 sk_for_each(sk
, &h
->ht
[state
->bucket
])
1000 if (sock_net(sk
) == seq_file_net(seq
))
1008 static struct sock
*raw_get_next(struct seq_file
*seq
, struct sock
*sk
)
1010 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
1011 struct raw_iter_state
*state
= raw_seq_private(seq
);
1017 } while (sk
&& sock_net(sk
) != seq_file_net(seq
));
1019 if (!sk
&& ++state
->bucket
< RAW_HTABLE_SIZE
) {
1020 sk
= sk_head(&h
->ht
[state
->bucket
]);
1026 static struct sock
*raw_get_idx(struct seq_file
*seq
, loff_t pos
)
1028 struct sock
*sk
= raw_get_first(seq
);
1031 while (pos
&& (sk
= raw_get_next(seq
, sk
)) != NULL
)
1033 return pos
? NULL
: sk
;
1036 void *raw_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1038 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
1040 read_lock(&h
->lock
);
1041 return *pos
? raw_get_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
1043 EXPORT_SYMBOL_GPL(raw_seq_start
);
1045 void *raw_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1049 if (v
== SEQ_START_TOKEN
)
1050 sk
= raw_get_first(seq
);
1052 sk
= raw_get_next(seq
, v
);
1056 EXPORT_SYMBOL_GPL(raw_seq_next
);
1058 void raw_seq_stop(struct seq_file
*seq
, void *v
)
1060 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
1062 read_unlock(&h
->lock
);
1064 EXPORT_SYMBOL_GPL(raw_seq_stop
);
1066 static void raw_sock_seq_show(struct seq_file
*seq
, struct sock
*sp
, int i
)
1068 struct inet_sock
*inet
= inet_sk(sp
);
1069 __be32 dest
= inet
->inet_daddr
,
1070 src
= inet
->inet_rcv_saddr
;
1072 srcp
= inet
->inet_num
;
1074 seq_printf(seq
, "%4d: %08X:%04X %08X:%04X"
1075 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u\n",
1076 i
, src
, srcp
, dest
, destp
, sp
->sk_state
,
1077 sk_wmem_alloc_get(sp
),
1078 sk_rmem_alloc_get(sp
),
1080 from_kuid_munged(seq_user_ns(seq
), sock_i_uid(sp
)),
1082 refcount_read(&sp
->sk_refcnt
), sp
, atomic_read(&sp
->sk_drops
));
1085 static int raw_seq_show(struct seq_file
*seq
, void *v
)
1087 if (v
== SEQ_START_TOKEN
)
1088 seq_printf(seq
, " sl local_address rem_address st tx_queue "
1089 "rx_queue tr tm->when retrnsmt uid timeout "
1090 "inode ref pointer drops\n");
1092 raw_sock_seq_show(seq
, v
, raw_seq_private(seq
)->bucket
);
1096 static const struct seq_operations raw_seq_ops
= {
1097 .start
= raw_seq_start
,
1098 .next
= raw_seq_next
,
1099 .stop
= raw_seq_stop
,
1100 .show
= raw_seq_show
,
1103 static __net_init
int raw_init_net(struct net
*net
)
1105 if (!proc_create_net_data("raw", 0444, net
->proc_net
, &raw_seq_ops
,
1106 sizeof(struct raw_iter_state
), &raw_v4_hashinfo
))
1112 static __net_exit
void raw_exit_net(struct net
*net
)
1114 remove_proc_entry("raw", net
->proc_net
);
1117 static __net_initdata
struct pernet_operations raw_net_ops
= {
1118 .init
= raw_init_net
,
1119 .exit
= raw_exit_net
,
1122 int __init
raw_proc_init(void)
1124 return register_pernet_subsys(&raw_net_ops
);
1127 void __init
raw_proc_exit(void)
1129 unregister_pernet_subsys(&raw_net_ops
);
1131 #endif /* CONFIG_PROC_FS */
1133 static void raw_sysctl_init_net(struct net
*net
)
1135 #ifdef CONFIG_NET_L3_MASTER_DEV
1136 net
->ipv4
.sysctl_raw_l3mdev_accept
= 1;
1140 static int __net_init
raw_sysctl_init(struct net
*net
)
1142 raw_sysctl_init_net(net
);
1146 static struct pernet_operations __net_initdata raw_sysctl_ops
= {
1147 .init
= raw_sysctl_init
,
1150 void __init
raw_init(void)
1152 raw_sysctl_init_net(&init_net
);
1153 if (register_pernet_subsys(&raw_sysctl_ops
))
1154 panic("RAW: failed to init sysctl parameters.\n");