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 if (code
== ICMP_FRAG_NEEDED
) {
264 harderr
= inet
->pmtudisc
!= IP_PMTUDISC_DONT
;
267 err
= icmp_err_convert
[code
].errno
;
268 harderr
= icmp_err_convert
[code
].fatal
;
273 const struct iphdr
*iph
= (const struct iphdr
*)skb
->data
;
274 u8
*payload
= skb
->data
+ (iph
->ihl
<< 2);
278 ip_icmp_error(sk
, skb
, err
, 0, info
, payload
);
281 if (inet
->recverr
|| harderr
) {
283 sk
->sk_error_report(sk
);
287 void raw_icmp_error(struct sk_buff
*skb
, int protocol
, u32 info
)
291 const struct iphdr
*iph
;
294 hash
= protocol
& (RAW_HTABLE_SIZE
- 1);
296 read_lock(&raw_v4_hashinfo
.lock
);
297 raw_sk
= sk_head(&raw_v4_hashinfo
.ht
[hash
]);
299 int dif
= skb
->dev
->ifindex
;
300 int sdif
= inet_sdif(skb
);
302 iph
= (const struct iphdr
*)skb
->data
;
303 net
= dev_net(skb
->dev
);
305 while ((raw_sk
= __raw_v4_lookup(net
, raw_sk
, protocol
,
306 iph
->daddr
, iph
->saddr
,
307 dif
, sdif
)) != NULL
) {
308 raw_err(raw_sk
, skb
, info
);
309 raw_sk
= sk_next(raw_sk
);
310 iph
= (const struct iphdr
*)skb
->data
;
313 read_unlock(&raw_v4_hashinfo
.lock
);
316 static int raw_rcv_skb(struct sock
*sk
, struct sk_buff
*skb
)
318 /* Charge it to the socket. */
320 ipv4_pktinfo_prepare(sk
, skb
);
321 if (sock_queue_rcv_skb(sk
, skb
) < 0) {
326 return NET_RX_SUCCESS
;
329 int raw_rcv(struct sock
*sk
, struct sk_buff
*skb
)
331 if (!xfrm4_policy_check(sk
, XFRM_POLICY_IN
, skb
)) {
332 atomic_inc(&sk
->sk_drops
);
338 skb_push(skb
, skb
->data
- skb_network_header(skb
));
340 raw_rcv_skb(sk
, skb
);
344 static int raw_send_hdrinc(struct sock
*sk
, struct flowi4
*fl4
,
345 struct msghdr
*msg
, size_t length
,
346 struct rtable
**rtp
, unsigned int flags
,
347 const struct sockcm_cookie
*sockc
)
349 struct inet_sock
*inet
= inet_sk(sk
);
350 struct net
*net
= sock_net(sk
);
355 struct rtable
*rt
= *rtp
;
358 if (length
> rt
->dst
.dev
->mtu
) {
359 ip_local_error(sk
, EMSGSIZE
, fl4
->daddr
, inet
->inet_dport
,
363 if (length
< sizeof(struct iphdr
))
369 hlen
= LL_RESERVED_SPACE(rt
->dst
.dev
);
370 tlen
= rt
->dst
.dev
->needed_tailroom
;
371 skb
= sock_alloc_send_skb(sk
,
372 length
+ hlen
+ tlen
+ 15,
373 flags
& MSG_DONTWAIT
, &err
);
376 skb_reserve(skb
, hlen
);
378 skb
->priority
= sk
->sk_priority
;
379 skb
->mark
= sockc
->mark
;
380 skb
->tstamp
= sockc
->transmit_time
;
381 skb_dst_set(skb
, &rt
->dst
);
384 skb_reset_network_header(skb
);
386 skb_put(skb
, length
);
388 skb
->ip_summed
= CHECKSUM_NONE
;
390 skb_setup_tx_timestamp(skb
, sockc
->tsflags
);
392 if (flags
& MSG_CONFIRM
)
393 skb_set_dst_pending_confirm(skb
, 1);
395 skb
->transport_header
= skb
->network_header
;
397 if (memcpy_from_msg(iph
, msg
, length
))
400 iphlen
= iph
->ihl
* 4;
403 * We don't want to modify the ip header, but we do need to
404 * be sure that it won't cause problems later along the network
405 * stack. Specifically we want to make sure that iph->ihl is a
406 * sane value. If ihl points beyond the length of the buffer passed
407 * in, reject the frame as invalid
413 if (iphlen
>= sizeof(*iph
)) {
415 iph
->saddr
= fl4
->saddr
;
417 iph
->tot_len
= htons(length
);
419 ip_select_ident(net
, skb
, NULL
);
421 iph
->check
= ip_fast_csum((unsigned char *)iph
, iph
->ihl
);
422 skb
->transport_header
+= iphlen
;
423 if (iph
->protocol
== IPPROTO_ICMP
&&
424 length
>= iphlen
+ sizeof(struct icmphdr
))
425 icmp_out_count(net
, ((struct icmphdr
*)
426 skb_transport_header(skb
))->type
);
429 err
= NF_HOOK(NFPROTO_IPV4
, NF_INET_LOCAL_OUT
,
430 net
, sk
, skb
, NULL
, rt
->dst
.dev
,
433 err
= net_xmit_errno(err
);
442 IP_INC_STATS(net
, IPSTATS_MIB_OUTDISCARDS
);
443 if (err
== -ENOBUFS
&& !inet
->recverr
)
448 static int raw_probe_proto_opt(struct raw_frag_vec
*rfv
, struct flowi4
*fl4
)
452 if (fl4
->flowi4_proto
!= IPPROTO_ICMP
)
455 /* We only need the first two bytes. */
458 err
= memcpy_from_msg(rfv
->hdr
.c
, rfv
->msg
, rfv
->hlen
);
462 fl4
->fl4_icmp_type
= rfv
->hdr
.icmph
.type
;
463 fl4
->fl4_icmp_code
= rfv
->hdr
.icmph
.code
;
468 static int raw_getfrag(void *from
, char *to
, int offset
, int len
, int odd
,
471 struct raw_frag_vec
*rfv
= from
;
473 if (offset
< rfv
->hlen
) {
474 int copy
= min(rfv
->hlen
- offset
, len
);
476 if (skb
->ip_summed
== CHECKSUM_PARTIAL
)
477 memcpy(to
, rfv
->hdr
.c
+ offset
, copy
);
479 skb
->csum
= csum_block_add(
481 csum_partial_copy_nocheck(rfv
->hdr
.c
+ offset
,
496 return ip_generic_getfrag(rfv
->msg
, to
, offset
, len
, odd
, skb
);
499 static int raw_sendmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
)
501 struct inet_sock
*inet
= inet_sk(sk
);
502 struct net
*net
= sock_net(sk
);
503 struct ipcm_cookie ipc
;
504 struct rtable
*rt
= NULL
;
511 struct ip_options_data opt_copy
;
512 struct raw_frag_vec rfv
;
519 /* hdrincl should be READ_ONCE(inet->hdrincl)
520 * but READ_ONCE() doesn't work with bit fields.
521 * Doing this indirectly yields the same result.
523 hdrincl
= inet
->hdrincl
;
524 hdrincl
= READ_ONCE(hdrincl
);
530 if (msg
->msg_flags
& MSG_OOB
) /* Mirror BSD error message */
531 goto out
; /* compatibility */
534 * Get and verify the address.
537 if (msg
->msg_namelen
) {
538 DECLARE_SOCKADDR(struct sockaddr_in
*, usin
, msg
->msg_name
);
540 if (msg
->msg_namelen
< sizeof(*usin
))
542 if (usin
->sin_family
!= AF_INET
) {
543 pr_info_once("%s: %s forgot to set AF_INET. Fix it!\n",
544 __func__
, current
->comm
);
546 if (usin
->sin_family
)
549 daddr
= usin
->sin_addr
.s_addr
;
550 /* ANK: I did not forget to get protocol from port field.
551 * I just do not know, who uses this weirdness.
552 * IP_HDRINCL is much more convenient.
556 if (sk
->sk_state
!= TCP_ESTABLISHED
)
558 daddr
= inet
->inet_daddr
;
561 ipcm_init_sk(&ipc
, inet
);
563 if (msg
->msg_controllen
) {
564 err
= ip_cmsg_send(sk
, msg
, &ipc
, false);
577 struct ip_options_rcu
*inet_opt
;
580 inet_opt
= rcu_dereference(inet
->inet_opt
);
582 memcpy(&opt_copy
, inet_opt
,
583 sizeof(*inet_opt
) + inet_opt
->opt
.optlen
);
584 ipc
.opt
= &opt_copy
.opt
;
591 /* Linux does not mangle headers on raw sockets,
592 * so that IP options + IP_HDRINCL is non-sense.
596 if (ipc
.opt
->opt
.srr
) {
599 daddr
= ipc
.opt
->opt
.faddr
;
602 tos
= get_rtconn_flags(&ipc
, sk
);
603 if (msg
->msg_flags
& MSG_DONTROUTE
)
606 if (ipv4_is_multicast(daddr
)) {
607 if (!ipc
.oif
|| netif_index_is_l3_master(sock_net(sk
), ipc
.oif
))
608 ipc
.oif
= inet
->mc_index
;
610 saddr
= inet
->mc_addr
;
611 } else if (!ipc
.oif
) {
612 ipc
.oif
= inet
->uc_index
;
613 } else if (ipv4_is_lbcast(daddr
) && inet
->uc_index
) {
614 /* oif is set, packet is to local broadcast
615 * and uc_index is set. oif is most likely set
616 * by sk_bound_dev_if. If uc_index != oif check if the
617 * oif is an L3 master and uc_index is an L3 slave.
618 * If so, we want to allow the send using the uc_index.
620 if (ipc
.oif
!= inet
->uc_index
&&
621 ipc
.oif
== l3mdev_master_ifindex_by_index(sock_net(sk
),
623 ipc
.oif
= inet
->uc_index
;
627 flowi4_init_output(&fl4
, ipc
.oif
, ipc
.sockc
.mark
, tos
,
629 hdrincl
? IPPROTO_RAW
: sk
->sk_protocol
,
630 inet_sk_flowi_flags(sk
) |
631 (hdrincl
? FLOWI_FLAG_KNOWN_NH
: 0),
632 daddr
, saddr
, 0, 0, sk
->sk_uid
);
638 err
= raw_probe_proto_opt(&rfv
, &fl4
);
643 security_sk_classify_flow(sk
, flowi4_to_flowi_common(&fl4
));
644 rt
= ip_route_output_flow(net
, &fl4
, sk
);
652 if (rt
->rt_flags
& RTCF_BROADCAST
&& !sock_flag(sk
, SOCK_BROADCAST
))
655 if (msg
->msg_flags
& MSG_CONFIRM
)
660 err
= raw_send_hdrinc(sk
, &fl4
, msg
, len
,
661 &rt
, msg
->msg_flags
, &ipc
.sockc
);
665 ipc
.addr
= fl4
.daddr
;
667 err
= ip_append_data(sk
, &fl4
, raw_getfrag
,
669 &ipc
, &rt
, msg
->msg_flags
);
671 ip_flush_pending_frames(sk
);
672 else if (!(msg
->msg_flags
& MSG_MORE
)) {
673 err
= ip_push_pending_frames(sk
, &fl4
);
674 if (err
== -ENOBUFS
&& !inet
->recverr
)
690 if (msg
->msg_flags
& MSG_PROBE
)
691 dst_confirm_neigh(&rt
->dst
, &fl4
.daddr
);
692 if (!(msg
->msg_flags
& MSG_PROBE
) || len
)
693 goto back_from_confirm
;
698 static void raw_close(struct sock
*sk
, long timeout
)
701 * Raw sockets may have direct kernel references. Kill them.
703 ip_ra_control(sk
, 0, NULL
);
705 sk_common_release(sk
);
708 static void raw_destroy(struct sock
*sk
)
711 ip_flush_pending_frames(sk
);
715 /* This gets rid of all the nasties in af_inet. -DaveM */
716 static int raw_bind(struct sock
*sk
, struct sockaddr
*uaddr
, int addr_len
)
718 struct inet_sock
*inet
= inet_sk(sk
);
719 struct sockaddr_in
*addr
= (struct sockaddr_in
*) uaddr
;
720 u32 tb_id
= RT_TABLE_LOCAL
;
724 if (sk
->sk_state
!= TCP_CLOSE
|| addr_len
< sizeof(struct sockaddr_in
))
727 if (sk
->sk_bound_dev_if
)
728 tb_id
= l3mdev_fib_table_by_index(sock_net(sk
),
729 sk
->sk_bound_dev_if
) ? : tb_id
;
731 chk_addr_ret
= inet_addr_type_table(sock_net(sk
), addr
->sin_addr
.s_addr
,
734 ret
= -EADDRNOTAVAIL
;
735 if (addr
->sin_addr
.s_addr
&& chk_addr_ret
!= RTN_LOCAL
&&
736 chk_addr_ret
!= RTN_MULTICAST
&& chk_addr_ret
!= RTN_BROADCAST
)
738 inet
->inet_rcv_saddr
= inet
->inet_saddr
= addr
->sin_addr
.s_addr
;
739 if (chk_addr_ret
== RTN_MULTICAST
|| chk_addr_ret
== RTN_BROADCAST
)
740 inet
->inet_saddr
= 0; /* Use device */
747 * This should be easy, if there is something there
748 * we return it, otherwise we block.
751 static int raw_recvmsg(struct sock
*sk
, struct msghdr
*msg
, size_t len
,
752 int noblock
, int flags
, int *addr_len
)
754 struct inet_sock
*inet
= inet_sk(sk
);
756 int err
= -EOPNOTSUPP
;
757 DECLARE_SOCKADDR(struct sockaddr_in
*, sin
, msg
->msg_name
);
763 if (flags
& MSG_ERRQUEUE
) {
764 err
= ip_recv_error(sk
, msg
, len
, addr_len
);
768 skb
= skb_recv_datagram(sk
, flags
, noblock
, &err
);
774 msg
->msg_flags
|= MSG_TRUNC
;
778 err
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
782 sock_recv_ts_and_drops(msg
, sk
, skb
);
784 /* Copy the address. */
786 sin
->sin_family
= AF_INET
;
787 sin
->sin_addr
.s_addr
= ip_hdr(skb
)->saddr
;
789 memset(&sin
->sin_zero
, 0, sizeof(sin
->sin_zero
));
790 *addr_len
= sizeof(*sin
);
792 if (inet
->cmsg_flags
)
793 ip_cmsg_recv(msg
, skb
);
794 if (flags
& MSG_TRUNC
)
797 skb_free_datagram(sk
, skb
);
804 static int raw_sk_init(struct sock
*sk
)
806 struct raw_sock
*rp
= raw_sk(sk
);
808 if (inet_sk(sk
)->inet_num
== IPPROTO_ICMP
)
809 memset(&rp
->filter
, 0, sizeof(rp
->filter
));
813 static int raw_seticmpfilter(struct sock
*sk
, sockptr_t optval
, int optlen
)
815 if (optlen
> sizeof(struct icmp_filter
))
816 optlen
= sizeof(struct icmp_filter
);
817 if (copy_from_sockptr(&raw_sk(sk
)->filter
, optval
, optlen
))
822 static int raw_geticmpfilter(struct sock
*sk
, char __user
*optval
, int __user
*optlen
)
824 int len
, ret
= -EFAULT
;
826 if (get_user(len
, optlen
))
831 if (len
> sizeof(struct icmp_filter
))
832 len
= sizeof(struct icmp_filter
);
834 if (put_user(len
, optlen
) ||
835 copy_to_user(optval
, &raw_sk(sk
)->filter
, len
))
841 static int do_raw_setsockopt(struct sock
*sk
, int level
, int optname
,
842 sockptr_t optval
, unsigned int optlen
)
844 if (optname
== ICMP_FILTER
) {
845 if (inet_sk(sk
)->inet_num
!= IPPROTO_ICMP
)
848 return raw_seticmpfilter(sk
, optval
, optlen
);
853 static int raw_setsockopt(struct sock
*sk
, int level
, int optname
,
854 sockptr_t optval
, unsigned int optlen
)
856 if (level
!= SOL_RAW
)
857 return ip_setsockopt(sk
, level
, optname
, optval
, optlen
);
858 return do_raw_setsockopt(sk
, level
, optname
, optval
, optlen
);
861 static int do_raw_getsockopt(struct sock
*sk
, int level
, int optname
,
862 char __user
*optval
, int __user
*optlen
)
864 if (optname
== ICMP_FILTER
) {
865 if (inet_sk(sk
)->inet_num
!= IPPROTO_ICMP
)
868 return raw_geticmpfilter(sk
, optval
, optlen
);
873 static int raw_getsockopt(struct sock
*sk
, int level
, int optname
,
874 char __user
*optval
, int __user
*optlen
)
876 if (level
!= SOL_RAW
)
877 return ip_getsockopt(sk
, level
, optname
, optval
, optlen
);
878 return do_raw_getsockopt(sk
, level
, optname
, optval
, optlen
);
881 static int raw_ioctl(struct sock
*sk
, int cmd
, unsigned long arg
)
885 int amount
= sk_wmem_alloc_get(sk
);
887 return put_user(amount
, (int __user
*)arg
);
893 spin_lock_bh(&sk
->sk_receive_queue
.lock
);
894 skb
= skb_peek(&sk
->sk_receive_queue
);
897 spin_unlock_bh(&sk
->sk_receive_queue
.lock
);
898 return put_user(amount
, (int __user
*)arg
);
902 #ifdef CONFIG_IP_MROUTE
903 return ipmr_ioctl(sk
, cmd
, (void __user
*)arg
);
911 static int compat_raw_ioctl(struct sock
*sk
, unsigned int cmd
, unsigned long arg
)
918 #ifdef CONFIG_IP_MROUTE
919 return ipmr_compat_ioctl(sk
, cmd
, compat_ptr(arg
));
927 int raw_abort(struct sock
*sk
, int err
)
932 sk
->sk_error_report(sk
);
933 __udp_disconnect(sk
, 0);
939 EXPORT_SYMBOL_GPL(raw_abort
);
941 struct proto raw_prot
= {
943 .owner
= THIS_MODULE
,
945 .destroy
= raw_destroy
,
946 .connect
= ip4_datagram_connect
,
947 .disconnect
= __udp_disconnect
,
950 .setsockopt
= raw_setsockopt
,
951 .getsockopt
= raw_getsockopt
,
952 .sendmsg
= raw_sendmsg
,
953 .recvmsg
= raw_recvmsg
,
955 .backlog_rcv
= raw_rcv_skb
,
956 .release_cb
= ip4_datagram_release_cb
,
958 .unhash
= raw_unhash_sk
,
959 .obj_size
= sizeof(struct raw_sock
),
960 .useroffset
= offsetof(struct raw_sock
, filter
),
961 .usersize
= sizeof_field(struct raw_sock
, filter
),
962 .h
.raw_hash
= &raw_v4_hashinfo
,
964 .compat_ioctl
= compat_raw_ioctl
,
966 .diag_destroy
= raw_abort
,
969 #ifdef CONFIG_PROC_FS
970 static struct sock
*raw_get_first(struct seq_file
*seq
)
973 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
974 struct raw_iter_state
*state
= raw_seq_private(seq
);
976 for (state
->bucket
= 0; state
->bucket
< RAW_HTABLE_SIZE
;
978 sk_for_each(sk
, &h
->ht
[state
->bucket
])
979 if (sock_net(sk
) == seq_file_net(seq
))
987 static struct sock
*raw_get_next(struct seq_file
*seq
, struct sock
*sk
)
989 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
990 struct raw_iter_state
*state
= raw_seq_private(seq
);
996 } while (sk
&& sock_net(sk
) != seq_file_net(seq
));
998 if (!sk
&& ++state
->bucket
< RAW_HTABLE_SIZE
) {
999 sk
= sk_head(&h
->ht
[state
->bucket
]);
1005 static struct sock
*raw_get_idx(struct seq_file
*seq
, loff_t pos
)
1007 struct sock
*sk
= raw_get_first(seq
);
1010 while (pos
&& (sk
= raw_get_next(seq
, sk
)) != NULL
)
1012 return pos
? NULL
: sk
;
1015 void *raw_seq_start(struct seq_file
*seq
, loff_t
*pos
)
1016 __acquires(&h
->lock
)
1018 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
1020 read_lock(&h
->lock
);
1021 return *pos
? raw_get_idx(seq
, *pos
- 1) : SEQ_START_TOKEN
;
1023 EXPORT_SYMBOL_GPL(raw_seq_start
);
1025 void *raw_seq_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1029 if (v
== SEQ_START_TOKEN
)
1030 sk
= raw_get_first(seq
);
1032 sk
= raw_get_next(seq
, v
);
1036 EXPORT_SYMBOL_GPL(raw_seq_next
);
1038 void raw_seq_stop(struct seq_file
*seq
, void *v
)
1039 __releases(&h
->lock
)
1041 struct raw_hashinfo
*h
= PDE_DATA(file_inode(seq
->file
));
1043 read_unlock(&h
->lock
);
1045 EXPORT_SYMBOL_GPL(raw_seq_stop
);
1047 static void raw_sock_seq_show(struct seq_file
*seq
, struct sock
*sp
, int i
)
1049 struct inet_sock
*inet
= inet_sk(sp
);
1050 __be32 dest
= inet
->inet_daddr
,
1051 src
= inet
->inet_rcv_saddr
;
1053 srcp
= inet
->inet_num
;
1055 seq_printf(seq
, "%4d: %08X:%04X %08X:%04X"
1056 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u\n",
1057 i
, src
, srcp
, dest
, destp
, sp
->sk_state
,
1058 sk_wmem_alloc_get(sp
),
1059 sk_rmem_alloc_get(sp
),
1061 from_kuid_munged(seq_user_ns(seq
), sock_i_uid(sp
)),
1063 refcount_read(&sp
->sk_refcnt
), sp
, atomic_read(&sp
->sk_drops
));
1066 static int raw_seq_show(struct seq_file
*seq
, void *v
)
1068 if (v
== SEQ_START_TOKEN
)
1069 seq_printf(seq
, " sl local_address rem_address st tx_queue "
1070 "rx_queue tr tm->when retrnsmt uid timeout "
1071 "inode ref pointer drops\n");
1073 raw_sock_seq_show(seq
, v
, raw_seq_private(seq
)->bucket
);
1077 static const struct seq_operations raw_seq_ops
= {
1078 .start
= raw_seq_start
,
1079 .next
= raw_seq_next
,
1080 .stop
= raw_seq_stop
,
1081 .show
= raw_seq_show
,
1084 static __net_init
int raw_init_net(struct net
*net
)
1086 if (!proc_create_net_data("raw", 0444, net
->proc_net
, &raw_seq_ops
,
1087 sizeof(struct raw_iter_state
), &raw_v4_hashinfo
))
1093 static __net_exit
void raw_exit_net(struct net
*net
)
1095 remove_proc_entry("raw", net
->proc_net
);
1098 static __net_initdata
struct pernet_operations raw_net_ops
= {
1099 .init
= raw_init_net
,
1100 .exit
= raw_exit_net
,
1103 int __init
raw_proc_init(void)
1105 return register_pernet_subsys(&raw_net_ops
);
1108 void __init
raw_proc_exit(void)
1110 unregister_pernet_subsys(&raw_net_ops
);
1112 #endif /* CONFIG_PROC_FS */
1114 static void raw_sysctl_init_net(struct net
*net
)
1116 #ifdef CONFIG_NET_L3_MASTER_DEV
1117 net
->ipv4
.sysctl_raw_l3mdev_accept
= 1;
1121 static int __net_init
raw_sysctl_init(struct net
*net
)
1123 raw_sysctl_init_net(net
);
1127 static struct pernet_operations __net_initdata raw_sysctl_ops
= {
1128 .init
= raw_sysctl_init
,
1131 void __init
raw_init(void)
1133 raw_sysctl_init_net(&init_net
);
1134 if (register_pernet_subsys(&raw_sysctl_ops
))
1135 panic("RAW: failed to init sysctl parameters.\n");