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.
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 EXPORT_SYMBOL_GPL(raw_v4_hashinfo);
91 int raw_hash_sk(struct sock *sk)
93 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
94 struct hlist_nulls_head *hlist;
96 hlist = &h->ht[inet_sk(sk)->inet_num & (RAW_HTABLE_SIZE - 1)];
99 __sk_nulls_add_node_rcu(sk, hlist);
100 sock_set_flag(sk, SOCK_RCU_FREE);
101 spin_unlock(&h->lock);
102 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1);
106 EXPORT_SYMBOL_GPL(raw_hash_sk);
108 void raw_unhash_sk(struct sock *sk)
110 struct raw_hashinfo *h = sk->sk_prot->h.raw_hash;
113 if (__sk_nulls_del_node_init_rcu(sk))
114 sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
115 spin_unlock(&h->lock);
117 EXPORT_SYMBOL_GPL(raw_unhash_sk);
119 bool raw_v4_match(struct net *net, struct sock *sk, unsigned short num,
120 __be32 raddr, __be32 laddr, int dif, int sdif)
122 struct inet_sock *inet = inet_sk(sk);
124 if (net_eq(sock_net(sk), net) && inet->inet_num == num &&
125 !(inet->inet_daddr && inet->inet_daddr != raddr) &&
126 !(inet->inet_rcv_saddr && inet->inet_rcv_saddr != laddr) &&
127 raw_sk_bound_dev_eq(net, sk->sk_bound_dev_if, dif, sdif))
131 EXPORT_SYMBOL_GPL(raw_v4_match);
137 static int icmp_filter(const struct sock *sk, const struct sk_buff *skb)
140 const struct icmphdr *hdr;
142 hdr = skb_header_pointer(skb, skb_transport_offset(skb),
143 sizeof(_hdr), &_hdr);
147 if (hdr->type < 32) {
148 __u32 data = raw_sk(sk)->filter.data;
150 return ((1U << hdr->type) & data) != 0;
153 /* Do not block unknown ICMP types */
157 /* IP input processing comes here for RAW socket delivery.
158 * Caller owns SKB, so we must make clones.
160 * RFC 1122: SHOULD pass TOS value up to the transport layer.
161 * -> It does. And not only TOS, but all IP header.
163 static int raw_v4_input(struct sk_buff *skb, const struct iphdr *iph, int hash)
165 struct net *net = dev_net(skb->dev);
166 struct hlist_nulls_head *hlist;
167 struct hlist_nulls_node *hnode;
168 int sdif = inet_sdif(skb);
169 int dif = inet_iif(skb);
173 hlist = &raw_v4_hashinfo.ht[hash];
175 sk_nulls_for_each(sk, hnode, hlist) {
176 if (!raw_v4_match(net, sk, iph->protocol,
177 iph->saddr, iph->daddr, dif, sdif))
180 if ((iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) &&
181 ip_mc_sf_allow(sk, iph->daddr, iph->saddr,
182 skb->dev->ifindex, sdif)) {
183 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
185 /* Not releasing hash table! */
194 int raw_local_deliver(struct sk_buff *skb, int protocol)
196 int hash = protocol & (RAW_HTABLE_SIZE - 1);
198 return raw_v4_input(skb, ip_hdr(skb), hash);
201 static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
203 struct inet_sock *inet = inet_sk(sk);
204 const int type = icmp_hdr(skb)->type;
205 const int code = icmp_hdr(skb)->code;
209 if (type == ICMP_DEST_UNREACH && code == ICMP_FRAG_NEEDED)
210 ipv4_sk_update_pmtu(skb, sk, info);
211 else if (type == ICMP_REDIRECT) {
212 ipv4_sk_redirect(skb, sk);
216 /* Report error on raw socket, if:
217 1. User requested ip_recverr.
218 2. Socket is connected (otherwise the error indication
219 is useless without ip_recverr and error is hard.
221 if (!inet->recverr && sk->sk_state != TCP_ESTABLISHED)
226 case ICMP_TIME_EXCEEDED:
229 case ICMP_SOURCE_QUENCH:
231 case ICMP_PARAMETERPROB:
235 case ICMP_DEST_UNREACH:
237 if (code > NR_ICMP_UNREACH)
239 if (code == ICMP_FRAG_NEEDED) {
240 harderr = inet->pmtudisc != IP_PMTUDISC_DONT;
243 err = icmp_err_convert[code].errno;
244 harderr = icmp_err_convert[code].fatal;
249 const struct iphdr *iph = (const struct iphdr *)skb->data;
250 u8 *payload = skb->data + (iph->ihl << 2);
254 ip_icmp_error(sk, skb, err, 0, info, payload);
257 if (inet->recverr || harderr) {
263 void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
265 struct net *net = dev_net(skb->dev);
266 struct hlist_nulls_head *hlist;
267 struct hlist_nulls_node *hnode;
268 int dif = skb->dev->ifindex;
269 int sdif = inet_sdif(skb);
270 const struct iphdr *iph;
274 hash = protocol & (RAW_HTABLE_SIZE - 1);
275 hlist = &raw_v4_hashinfo.ht[hash];
278 sk_nulls_for_each(sk, hnode, hlist) {
279 iph = (const struct iphdr *)skb->data;
280 if (!raw_v4_match(net, sk, iph->protocol,
281 iph->daddr, iph->saddr, dif, sdif))
283 raw_err(sk, skb, info);
288 static int raw_rcv_skb(struct sock *sk, struct sk_buff *skb)
290 /* Charge it to the socket. */
292 ipv4_pktinfo_prepare(sk, skb);
293 if (sock_queue_rcv_skb(sk, skb) < 0) {
298 return NET_RX_SUCCESS;
301 int raw_rcv(struct sock *sk, struct sk_buff *skb)
303 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
304 atomic_inc(&sk->sk_drops);
310 skb_push(skb, skb->data - skb_network_header(skb));
312 raw_rcv_skb(sk, skb);
316 static int raw_send_hdrinc(struct sock *sk, struct flowi4 *fl4,
317 struct msghdr *msg, size_t length,
318 struct rtable **rtp, unsigned int flags,
319 const struct sockcm_cookie *sockc)
321 struct inet_sock *inet = inet_sk(sk);
322 struct net *net = sock_net(sk);
327 struct rtable *rt = *rtp;
330 if (length > rt->dst.dev->mtu) {
331 ip_local_error(sk, EMSGSIZE, fl4->daddr, inet->inet_dport,
335 if (length < sizeof(struct iphdr))
341 hlen = LL_RESERVED_SPACE(rt->dst.dev);
342 tlen = rt->dst.dev->needed_tailroom;
343 skb = sock_alloc_send_skb(sk,
344 length + hlen + tlen + 15,
345 flags & MSG_DONTWAIT, &err);
348 skb_reserve(skb, hlen);
350 skb->priority = sk->sk_priority;
351 skb->mark = sockc->mark;
352 skb->tstamp = sockc->transmit_time;
353 skb_dst_set(skb, &rt->dst);
356 skb_reset_network_header(skb);
358 skb_put(skb, length);
360 skb->ip_summed = CHECKSUM_NONE;
362 skb_setup_tx_timestamp(skb, sockc->tsflags);
364 if (flags & MSG_CONFIRM)
365 skb_set_dst_pending_confirm(skb, 1);
367 skb->transport_header = skb->network_header;
369 if (memcpy_from_msg(iph, msg, length))
372 iphlen = iph->ihl * 4;
375 * We don't want to modify the ip header, but we do need to
376 * be sure that it won't cause problems later along the network
377 * stack. Specifically we want to make sure that iph->ihl is a
378 * sane value. If ihl points beyond the length of the buffer passed
379 * in, reject the frame as invalid
385 if (iphlen >= sizeof(*iph)) {
387 iph->saddr = fl4->saddr;
389 iph->tot_len = htons(length);
391 ip_select_ident(net, skb, NULL);
393 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
394 skb->transport_header += iphlen;
395 if (iph->protocol == IPPROTO_ICMP &&
396 length >= iphlen + sizeof(struct icmphdr))
397 icmp_out_count(net, ((struct icmphdr *)
398 skb_transport_header(skb))->type);
401 err = NF_HOOK(NFPROTO_IPV4, NF_INET_LOCAL_OUT,
402 net, sk, skb, NULL, rt->dst.dev,
405 err = net_xmit_errno(err);
414 IP_INC_STATS(net, IPSTATS_MIB_OUTDISCARDS);
415 if (err == -ENOBUFS && !inet->recverr)
420 static int raw_probe_proto_opt(struct raw_frag_vec *rfv, struct flowi4 *fl4)
424 if (fl4->flowi4_proto != IPPROTO_ICMP)
427 /* We only need the first two bytes. */
430 err = memcpy_from_msg(rfv->hdr.c, rfv->msg, rfv->hlen);
434 fl4->fl4_icmp_type = rfv->hdr.icmph.type;
435 fl4->fl4_icmp_code = rfv->hdr.icmph.code;
440 static int raw_getfrag(void *from, char *to, int offset, int len, int odd,
443 struct raw_frag_vec *rfv = from;
445 if (offset < rfv->hlen) {
446 int copy = min(rfv->hlen - offset, len);
448 if (skb->ip_summed == CHECKSUM_PARTIAL)
449 memcpy(to, rfv->hdr.c + offset, copy);
451 skb->csum = csum_block_add(
453 csum_partial_copy_nocheck(rfv->hdr.c + offset,
468 return ip_generic_getfrag(rfv->msg, to, offset, len, odd, skb);
471 static int raw_sendmsg(struct sock *sk, struct msghdr *msg, size_t len)
473 struct inet_sock *inet = inet_sk(sk);
474 struct net *net = sock_net(sk);
475 struct ipcm_cookie ipc;
476 struct rtable *rt = NULL;
483 struct ip_options_data opt_copy;
484 struct raw_frag_vec rfv;
491 /* hdrincl should be READ_ONCE(inet->hdrincl)
492 * but READ_ONCE() doesn't work with bit fields.
493 * Doing this indirectly yields the same result.
495 hdrincl = inet->hdrincl;
496 hdrincl = READ_ONCE(hdrincl);
502 if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message */
503 goto out; /* compatibility */
506 * Get and verify the address.
509 if (msg->msg_namelen) {
510 DECLARE_SOCKADDR(struct sockaddr_in *, usin, msg->msg_name);
512 if (msg->msg_namelen < sizeof(*usin))
514 if (usin->sin_family != AF_INET) {
515 pr_info_once("%s: %s forgot to set AF_INET. Fix it!\n",
516 __func__, current->comm);
518 if (usin->sin_family)
521 daddr = usin->sin_addr.s_addr;
522 /* ANK: I did not forget to get protocol from port field.
523 * I just do not know, who uses this weirdness.
524 * IP_HDRINCL is much more convenient.
528 if (sk->sk_state != TCP_ESTABLISHED)
530 daddr = inet->inet_daddr;
533 ipcm_init_sk(&ipc, inet);
535 if (msg->msg_controllen) {
536 err = ip_cmsg_send(sk, msg, &ipc, false);
549 struct ip_options_rcu *inet_opt;
552 inet_opt = rcu_dereference(inet->inet_opt);
554 memcpy(&opt_copy, inet_opt,
555 sizeof(*inet_opt) + inet_opt->opt.optlen);
556 ipc.opt = &opt_copy.opt;
563 /* Linux does not mangle headers on raw sockets,
564 * so that IP options + IP_HDRINCL is non-sense.
568 if (ipc.opt->opt.srr) {
571 daddr = ipc.opt->opt.faddr;
574 tos = get_rtconn_flags(&ipc, sk);
575 if (msg->msg_flags & MSG_DONTROUTE)
578 if (ipv4_is_multicast(daddr)) {
579 if (!ipc.oif || netif_index_is_l3_master(sock_net(sk), ipc.oif))
580 ipc.oif = inet->mc_index;
582 saddr = inet->mc_addr;
583 } else if (!ipc.oif) {
584 ipc.oif = inet->uc_index;
585 } else if (ipv4_is_lbcast(daddr) && inet->uc_index) {
586 /* oif is set, packet is to local broadcast
587 * and uc_index is set. oif is most likely set
588 * by sk_bound_dev_if. If uc_index != oif check if the
589 * oif is an L3 master and uc_index is an L3 slave.
590 * If so, we want to allow the send using the uc_index.
592 if (ipc.oif != inet->uc_index &&
593 ipc.oif == l3mdev_master_ifindex_by_index(sock_net(sk),
595 ipc.oif = inet->uc_index;
599 flowi4_init_output(&fl4, ipc.oif, ipc.sockc.mark, tos,
601 hdrincl ? IPPROTO_RAW : sk->sk_protocol,
602 inet_sk_flowi_flags(sk) |
603 (hdrincl ? FLOWI_FLAG_KNOWN_NH : 0),
604 daddr, saddr, 0, 0, sk->sk_uid);
610 err = raw_probe_proto_opt(&rfv, &fl4);
615 security_sk_classify_flow(sk, flowi4_to_flowi_common(&fl4));
616 rt = ip_route_output_flow(net, &fl4, sk);
624 if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
627 if (msg->msg_flags & MSG_CONFIRM)
632 err = raw_send_hdrinc(sk, &fl4, msg, len,
633 &rt, msg->msg_flags, &ipc.sockc);
637 ipc.addr = fl4.daddr;
639 err = ip_append_data(sk, &fl4, raw_getfrag,
641 &ipc, &rt, msg->msg_flags);
643 ip_flush_pending_frames(sk);
644 else if (!(msg->msg_flags & MSG_MORE)) {
645 err = ip_push_pending_frames(sk, &fl4);
646 if (err == -ENOBUFS && !inet->recverr)
662 if (msg->msg_flags & MSG_PROBE)
663 dst_confirm_neigh(&rt->dst, &fl4.daddr);
664 if (!(msg->msg_flags & MSG_PROBE) || len)
665 goto back_from_confirm;
670 static void raw_close(struct sock *sk, long timeout)
673 * Raw sockets may have direct kernel references. Kill them.
675 ip_ra_control(sk, 0, NULL);
677 sk_common_release(sk);
680 static void raw_destroy(struct sock *sk)
683 ip_flush_pending_frames(sk);
687 /* This gets rid of all the nasties in af_inet. -DaveM */
688 static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
690 struct inet_sock *inet = inet_sk(sk);
691 struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
692 struct net *net = sock_net(sk);
693 u32 tb_id = RT_TABLE_LOCAL;
698 if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
701 if (sk->sk_bound_dev_if)
702 tb_id = l3mdev_fib_table_by_index(net,
703 sk->sk_bound_dev_if) ? : tb_id;
705 chk_addr_ret = inet_addr_type_table(net, addr->sin_addr.s_addr, tb_id);
707 ret = -EADDRNOTAVAIL;
708 if (!inet_addr_valid_or_nonlocal(net, inet, addr->sin_addr.s_addr,
712 inet->inet_rcv_saddr = inet->inet_saddr = addr->sin_addr.s_addr;
713 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
714 inet->inet_saddr = 0; /* Use device */
723 * This should be easy, if there is something there
724 * we return it, otherwise we block.
727 static int raw_recvmsg(struct sock *sk, struct msghdr *msg, size_t len,
728 int flags, int *addr_len)
730 struct inet_sock *inet = inet_sk(sk);
732 int err = -EOPNOTSUPP;
733 DECLARE_SOCKADDR(struct sockaddr_in *, sin, msg->msg_name);
739 if (flags & MSG_ERRQUEUE) {
740 err = ip_recv_error(sk, msg, len, addr_len);
744 skb = skb_recv_datagram(sk, flags, &err);
750 msg->msg_flags |= MSG_TRUNC;
754 err = skb_copy_datagram_msg(skb, 0, msg, copied);
758 sock_recv_cmsgs(msg, sk, skb);
760 /* Copy the address. */
762 sin->sin_family = AF_INET;
763 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
765 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
766 *addr_len = sizeof(*sin);
768 if (inet->cmsg_flags)
769 ip_cmsg_recv(msg, skb);
770 if (flags & MSG_TRUNC)
773 skb_free_datagram(sk, skb);
780 static int raw_sk_init(struct sock *sk)
782 struct raw_sock *rp = raw_sk(sk);
784 if (inet_sk(sk)->inet_num == IPPROTO_ICMP)
785 memset(&rp->filter, 0, sizeof(rp->filter));
789 static int raw_seticmpfilter(struct sock *sk, sockptr_t optval, int optlen)
791 if (optlen > sizeof(struct icmp_filter))
792 optlen = sizeof(struct icmp_filter);
793 if (copy_from_sockptr(&raw_sk(sk)->filter, optval, optlen))
798 static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
800 int len, ret = -EFAULT;
802 if (get_user(len, optlen))
807 if (len > sizeof(struct icmp_filter))
808 len = sizeof(struct icmp_filter);
810 if (put_user(len, optlen) ||
811 copy_to_user(optval, &raw_sk(sk)->filter, len))
817 static int do_raw_setsockopt(struct sock *sk, int level, int optname,
818 sockptr_t optval, unsigned int optlen)
820 if (optname == ICMP_FILTER) {
821 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
824 return raw_seticmpfilter(sk, optval, optlen);
829 static int raw_setsockopt(struct sock *sk, int level, int optname,
830 sockptr_t optval, unsigned int optlen)
832 if (level != SOL_RAW)
833 return ip_setsockopt(sk, level, optname, optval, optlen);
834 return do_raw_setsockopt(sk, level, optname, optval, optlen);
837 static int do_raw_getsockopt(struct sock *sk, int level, int optname,
838 char __user *optval, int __user *optlen)
840 if (optname == ICMP_FILTER) {
841 if (inet_sk(sk)->inet_num != IPPROTO_ICMP)
844 return raw_geticmpfilter(sk, optval, optlen);
849 static int raw_getsockopt(struct sock *sk, int level, int optname,
850 char __user *optval, int __user *optlen)
852 if (level != SOL_RAW)
853 return ip_getsockopt(sk, level, optname, optval, optlen);
854 return do_raw_getsockopt(sk, level, optname, optval, optlen);
857 static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
861 int amount = sk_wmem_alloc_get(sk);
863 return put_user(amount, (int __user *)arg);
869 spin_lock_bh(&sk->sk_receive_queue.lock);
870 skb = skb_peek(&sk->sk_receive_queue);
873 spin_unlock_bh(&sk->sk_receive_queue.lock);
874 return put_user(amount, (int __user *)arg);
878 #ifdef CONFIG_IP_MROUTE
879 return ipmr_ioctl(sk, cmd, (void __user *)arg);
887 static int compat_raw_ioctl(struct sock *sk, unsigned int cmd, unsigned long arg)
894 #ifdef CONFIG_IP_MROUTE
895 return ipmr_compat_ioctl(sk, cmd, compat_ptr(arg));
903 int raw_abort(struct sock *sk, int err)
909 __udp_disconnect(sk, 0);
915 EXPORT_SYMBOL_GPL(raw_abort);
917 struct proto raw_prot = {
919 .owner = THIS_MODULE,
921 .destroy = raw_destroy,
922 .connect = ip4_datagram_connect,
923 .disconnect = __udp_disconnect,
926 .setsockopt = raw_setsockopt,
927 .getsockopt = raw_getsockopt,
928 .sendmsg = raw_sendmsg,
929 .recvmsg = raw_recvmsg,
931 .backlog_rcv = raw_rcv_skb,
932 .release_cb = ip4_datagram_release_cb,
934 .unhash = raw_unhash_sk,
935 .obj_size = sizeof(struct raw_sock),
936 .useroffset = offsetof(struct raw_sock, filter),
937 .usersize = sizeof_field(struct raw_sock, filter),
938 .h.raw_hash = &raw_v4_hashinfo,
940 .compat_ioctl = compat_raw_ioctl,
942 .diag_destroy = raw_abort,
945 #ifdef CONFIG_PROC_FS
946 static struct sock *raw_get_first(struct seq_file *seq, int bucket)
948 struct raw_hashinfo *h = pde_data(file_inode(seq->file));
949 struct raw_iter_state *state = raw_seq_private(seq);
950 struct hlist_nulls_head *hlist;
951 struct hlist_nulls_node *hnode;
954 for (state->bucket = bucket; state->bucket < RAW_HTABLE_SIZE;
956 hlist = &h->ht[state->bucket];
957 sk_nulls_for_each(sk, hnode, hlist) {
958 if (sock_net(sk) == seq_file_net(seq))
965 static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
967 struct raw_iter_state *state = raw_seq_private(seq);
970 sk = sk_nulls_next(sk);
971 } while (sk && sock_net(sk) != seq_file_net(seq));
974 return raw_get_first(seq, state->bucket + 1);
978 static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
980 struct sock *sk = raw_get_first(seq, 0);
983 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
985 return pos ? NULL : sk;
988 void *raw_seq_start(struct seq_file *seq, loff_t *pos)
992 return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
994 EXPORT_SYMBOL_GPL(raw_seq_start);
996 void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1000 if (v == SEQ_START_TOKEN)
1001 sk = raw_get_first(seq, 0);
1003 sk = raw_get_next(seq, v);
1007 EXPORT_SYMBOL_GPL(raw_seq_next);
1009 void raw_seq_stop(struct seq_file *seq, void *v)
1014 EXPORT_SYMBOL_GPL(raw_seq_stop);
1016 static void raw_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1018 struct inet_sock *inet = inet_sk(sp);
1019 __be32 dest = inet->inet_daddr,
1020 src = inet->inet_rcv_saddr;
1022 srcp = inet->inet_num;
1024 seq_printf(seq, "%4d: %08X:%04X %08X:%04X"
1025 " %02X %08X:%08X %02X:%08lX %08X %5u %8d %lu %d %pK %u\n",
1026 i, src, srcp, dest, destp, sp->sk_state,
1027 sk_wmem_alloc_get(sp),
1028 sk_rmem_alloc_get(sp),
1030 from_kuid_munged(seq_user_ns(seq), sock_i_uid(sp)),
1032 refcount_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
1035 static int raw_seq_show(struct seq_file *seq, void *v)
1037 if (v == SEQ_START_TOKEN)
1038 seq_printf(seq, " sl local_address rem_address st tx_queue "
1039 "rx_queue tr tm->when retrnsmt uid timeout "
1040 "inode ref pointer drops\n");
1042 raw_sock_seq_show(seq, v, raw_seq_private(seq)->bucket);
1046 static const struct seq_operations raw_seq_ops = {
1047 .start = raw_seq_start,
1048 .next = raw_seq_next,
1049 .stop = raw_seq_stop,
1050 .show = raw_seq_show,
1053 static __net_init int raw_init_net(struct net *net)
1055 if (!proc_create_net_data("raw", 0444, net->proc_net, &raw_seq_ops,
1056 sizeof(struct raw_iter_state), &raw_v4_hashinfo))
1062 static __net_exit void raw_exit_net(struct net *net)
1064 remove_proc_entry("raw", net->proc_net);
1067 static __net_initdata struct pernet_operations raw_net_ops = {
1068 .init = raw_init_net,
1069 .exit = raw_exit_net,
1072 int __init raw_proc_init(void)
1075 return register_pernet_subsys(&raw_net_ops);
1078 void __init raw_proc_exit(void)
1080 unregister_pernet_subsys(&raw_net_ops);
1082 #endif /* CONFIG_PROC_FS */
1084 static void raw_sysctl_init_net(struct net *net)
1086 #ifdef CONFIG_NET_L3_MASTER_DEV
1087 net->ipv4.sysctl_raw_l3mdev_accept = 1;
1091 static int __net_init raw_sysctl_init(struct net *net)
1093 raw_sysctl_init_net(net);
1097 static struct pernet_operations __net_initdata raw_sysctl_ops = {
1098 .init = raw_sysctl_init,
1101 void __init raw_init(void)
1103 raw_sysctl_init_net(&init_net);
1104 if (register_pernet_subsys(&raw_sysctl_ops))
1105 panic("RAW: failed to init sysctl parameters.\n");