2 * INET An implementation of the TCP/IP protocol suite for the LINUX
3 * operating system. INET is implemented using the BSD Socket
4 * interface as the means of communication with the user level.
6 * RAW - implementation of IP "raw" sockets.
8 * Version: $Id: raw.c,v 1.64 2002/02/01 22:01:04 davem Exp $
11 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
14 * Alan Cox : verify_area() fixed up
15 * Alan Cox : ICMP error handling
16 * Alan Cox : EMSGSIZE if you send too big a packet
17 * Alan Cox : Now uses generic datagrams and shared
18 * skbuff library. No more peek crashes,
20 * Alan Cox : Checks sk->broadcast.
21 * Alan Cox : Uses skb_free_datagram/skb_copy_datagram
22 * Alan Cox : Raw passes ip options too
23 * Alan Cox : Setsocketopt added
24 * Alan Cox : Fixed error return for broadcasts
25 * Alan Cox : Removed wake_up calls
26 * Alan Cox : Use ttl/tos
27 * Alan Cox : Cleaned up old debugging
28 * Alan Cox : Use new kernel side addresses
29 * Arnt Gulbrandsen : Fixed MSG_DONTROUTE in raw sockets.
30 * Alan Cox : BSD style RAW socket demultiplexing.
31 * Alan Cox : Beginnings of mrouted support.
32 * Alan Cox : Added IP_HDRINCL option.
33 * Alan Cox : Skip broadcast check if BSDism set.
34 * David S. Miller : New socket lookup architecture.
36 * This program is free software; you can redistribute it and/or
37 * modify it under the terms of the GNU General Public License
38 * as published by the Free Software Foundation; either version
39 * 2 of the License, or (at your option) any later version.
42 #include <linux/types.h>
43 #include <asm/atomic.h>
44 #include <asm/byteorder.h>
45 #include <asm/current.h>
46 #include <asm/uaccess.h>
47 #include <asm/ioctls.h>
48 #include <linux/stddef.h>
49 #include <linux/slab.h>
50 #include <linux/errno.h>
51 #include <linux/aio.h>
52 #include <linux/kernel.h>
53 #include <linux/spinlock.h>
54 #include <linux/sockios.h>
55 #include <linux/socket.h>
57 #include <linux/mroute.h>
58 #include <linux/netdevice.h>
59 #include <linux/in_route.h>
60 #include <linux/route.h>
61 #include <linux/skbuff.h>
62 #include <net/net_namespace.h>
65 #include <linux/gfp.h>
67 #include <linux/net.h>
73 #include <net/tcp_states.h>
74 #include <net/inet_common.h>
75 #include <net/checksum.h>
77 #include <linux/rtnetlink.h>
78 #include <linux/proc_fs.h>
79 #include <linux/seq_file.h>
80 #include <linux/netfilter.h>
81 #include <linux/netfilter_ipv4.h>
83 static struct raw_hashinfo raw_v4_hashinfo = {
84 .lock = __RW_LOCK_UNLOCKED(),
87 void raw_hash_sk(struct sock *sk, struct raw_hashinfo *h)
89 struct hlist_head *head;
91 head = &h->ht[inet_sk(sk)->num & (RAW_HTABLE_SIZE - 1)];
93 write_lock_bh(&h->lock);
94 sk_add_node(sk, head);
95 sock_prot_inuse_add(sk->sk_prot, 1);
96 write_unlock_bh(&h->lock);
98 EXPORT_SYMBOL_GPL(raw_hash_sk);
100 void raw_unhash_sk(struct sock *sk, struct raw_hashinfo *h)
102 write_lock_bh(&h->lock);
103 if (sk_del_node_init(sk))
104 sock_prot_inuse_add(sk->sk_prot, -1);
105 write_unlock_bh(&h->lock);
107 EXPORT_SYMBOL_GPL(raw_unhash_sk);
109 static void raw_v4_hash(struct sock *sk)
111 raw_hash_sk(sk, &raw_v4_hashinfo);
114 static void raw_v4_unhash(struct sock *sk)
116 raw_unhash_sk(sk, &raw_v4_hashinfo);
119 static struct sock *__raw_v4_lookup(struct net *net, struct sock *sk,
120 unsigned short num, __be32 raddr, __be32 laddr, int dif)
122 struct hlist_node *node;
124 sk_for_each_from(sk, node) {
125 struct inet_sock *inet = inet_sk(sk);
127 if (sk->sk_net == net && inet->num == num &&
128 !(inet->daddr && inet->daddr != raddr) &&
129 !(inet->rcv_saddr && inet->rcv_saddr != laddr) &&
130 !(sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif))
131 goto found; /* gotcha */
142 static __inline__ int icmp_filter(struct sock *sk, struct sk_buff *skb)
146 if (!pskb_may_pull(skb, sizeof(struct icmphdr)))
149 type = icmp_hdr(skb)->type;
151 __u32 data = raw_sk(sk)->filter.data;
153 return ((1 << type) & data) != 0;
156 /* Do not block unknown ICMP types */
160 /* IP input processing comes here for RAW socket delivery.
161 * Caller owns SKB, so we must make clones.
163 * RFC 1122: SHOULD pass TOS value up to the transport layer.
164 * -> It does. And not only TOS, but all IP header.
166 static int raw_v4_input(struct sk_buff *skb, struct iphdr *iph, int hash)
169 struct hlist_head *head;
173 read_lock(&raw_v4_hashinfo.lock);
174 head = &raw_v4_hashinfo.ht[hash];
175 if (hlist_empty(head))
178 net = skb->dev->nd_net;
179 sk = __raw_v4_lookup(net, __sk_head(head), iph->protocol,
180 iph->saddr, iph->daddr,
185 if (iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) {
186 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
188 /* Not releasing hash table! */
192 sk = __raw_v4_lookup(net, sk_next(sk), iph->protocol,
193 iph->saddr, iph->daddr,
197 read_unlock(&raw_v4_hashinfo.lock);
201 int raw_local_deliver(struct sk_buff *skb, int protocol)
206 hash = protocol & (RAW_HTABLE_SIZE - 1);
207 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
209 /* If there maybe a raw socket we must check - if not we
212 if (raw_sk && !raw_v4_input(skb, ip_hdr(skb), hash))
215 return raw_sk != NULL;
219 static void raw_err(struct sock *sk, struct sk_buff *skb, u32 info)
221 struct inet_sock *inet = inet_sk(sk);
222 const int type = icmp_hdr(skb)->type;
223 const int code = icmp_hdr(skb)->code;
227 /* Report error on raw socket, if:
228 1. User requested ip_recverr.
229 2. Socket is connected (otherwise the error indication
230 is useless without ip_recverr and error is hard.
232 if (!inet->recverr && sk->sk_state != TCP_ESTABLISHED)
237 case ICMP_TIME_EXCEEDED:
240 case ICMP_SOURCE_QUENCH:
242 case ICMP_PARAMETERPROB:
246 case ICMP_DEST_UNREACH:
248 if (code > NR_ICMP_UNREACH)
250 err = icmp_err_convert[code].errno;
251 harderr = icmp_err_convert[code].fatal;
252 if (code == ICMP_FRAG_NEEDED) {
253 harderr = inet->pmtudisc != IP_PMTUDISC_DONT;
259 struct iphdr *iph = (struct iphdr*)skb->data;
260 u8 *payload = skb->data + (iph->ihl << 2);
264 ip_icmp_error(sk, skb, err, 0, info, payload);
267 if (inet->recverr || harderr) {
269 sk->sk_error_report(sk);
273 void raw_icmp_error(struct sk_buff *skb, int protocol, u32 info)
280 hash = protocol & (RAW_HTABLE_SIZE - 1);
282 read_lock(&raw_v4_hashinfo.lock);
283 raw_sk = sk_head(&raw_v4_hashinfo.ht[hash]);
284 if (raw_sk != NULL) {
285 iph = (struct iphdr *)skb->data;
286 net = skb->dev->nd_net;
288 while ((raw_sk = __raw_v4_lookup(net, raw_sk, protocol,
289 iph->daddr, iph->saddr,
290 skb->dev->ifindex)) != NULL) {
291 raw_err(raw_sk, skb, info);
292 raw_sk = sk_next(raw_sk);
293 iph = (struct iphdr *)skb->data;
296 read_unlock(&raw_v4_hashinfo.lock);
299 static int raw_rcv_skb(struct sock * sk, struct sk_buff * skb)
301 /* Charge it to the socket. */
303 if (sock_queue_rcv_skb(sk, skb) < 0) {
304 atomic_inc(&sk->sk_drops);
309 return NET_RX_SUCCESS;
312 int raw_rcv(struct sock *sk, struct sk_buff *skb)
314 if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
315 atomic_inc(&sk->sk_drops);
321 skb_push(skb, skb->data - skb_network_header(skb));
323 raw_rcv_skb(sk, skb);
327 static int raw_send_hdrinc(struct sock *sk, void *from, size_t length,
331 struct inet_sock *inet = inet_sk(sk);
338 if (length > rt->u.dst.dev->mtu) {
339 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport,
346 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
348 skb = sock_alloc_send_skb(sk, length+hh_len+15,
349 flags&MSG_DONTWAIT, &err);
352 skb_reserve(skb, hh_len);
354 skb->priority = sk->sk_priority;
355 skb->dst = dst_clone(&rt->u.dst);
357 skb_reset_network_header(skb);
359 skb_put(skb, length);
361 skb->ip_summed = CHECKSUM_NONE;
363 skb->transport_header = skb->network_header;
364 err = memcpy_fromiovecend((void *)iph, from, 0, length);
368 /* We don't modify invalid header */
369 iphlen = iph->ihl * 4;
370 if (iphlen >= sizeof(*iph) && iphlen <= length) {
372 iph->saddr = rt->rt_src;
374 iph->tot_len = htons(length);
376 ip_select_ident(iph, &rt->u.dst, NULL);
378 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
380 if (iph->protocol == IPPROTO_ICMP)
381 icmp_out_count(((struct icmphdr *)
382 skb_transport_header(skb))->type);
384 err = NF_HOOK(PF_INET, NF_INET_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
387 err = inet->recverr ? net_xmit_errno(err) : 0;
397 IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
401 static int raw_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
404 u8 __user *type = NULL;
405 u8 __user *code = NULL;
412 for (i = 0; i < msg->msg_iovlen; i++) {
413 iov = &msg->msg_iov[i];
419 /* check if one-byte field is readable or not. */
420 if (iov->iov_base && iov->iov_len < 1)
424 type = iov->iov_base;
425 /* check if code field is readable or not. */
426 if (iov->iov_len > 1)
429 code = iov->iov_base;
432 if (get_user(fl->fl_icmp_type, type) ||
433 get_user(fl->fl_icmp_code, code))
448 static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
451 struct inet_sock *inet = inet_sk(sk);
452 struct ipcm_cookie ipc;
453 struct rtable *rt = NULL;
469 if (msg->msg_flags & MSG_OOB) /* Mirror BSD error message */
470 goto out; /* compatibility */
473 * Get and verify the address.
476 if (msg->msg_namelen) {
477 struct sockaddr_in *usin = (struct sockaddr_in*)msg->msg_name;
479 if (msg->msg_namelen < sizeof(*usin))
481 if (usin->sin_family != AF_INET) {
482 static int complained;
484 printk(KERN_INFO "%s forgot to set AF_INET in "
485 "raw sendmsg. Fix it!\n",
488 if (usin->sin_family)
491 daddr = usin->sin_addr.s_addr;
492 /* ANK: I did not forget to get protocol from port field.
493 * I just do not know, who uses this weirdness.
494 * IP_HDRINCL is much more convenient.
498 if (sk->sk_state != TCP_ESTABLISHED)
503 ipc.addr = inet->saddr;
505 ipc.oif = sk->sk_bound_dev_if;
507 if (msg->msg_controllen) {
508 err = ip_cmsg_send(msg, &ipc);
523 /* Linux does not mangle headers on raw sockets,
524 * so that IP options + IP_HDRINCL is non-sense.
531 daddr = ipc.opt->faddr;
534 tos = RT_CONN_FLAGS(sk);
535 if (msg->msg_flags & MSG_DONTROUTE)
538 if (ipv4_is_multicast(daddr)) {
540 ipc.oif = inet->mc_index;
542 saddr = inet->mc_addr;
546 struct flowi fl = { .oif = ipc.oif,
551 .proto = inet->hdrincl ? IPPROTO_RAW :
554 if (!inet->hdrincl) {
555 err = raw_probe_proto_opt(&fl, msg);
560 security_sk_classify_flow(sk, &fl);
561 err = ip_route_output_flow(&init_net, &rt, &fl, sk, 1);
567 if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
570 if (msg->msg_flags & MSG_CONFIRM)
575 err = raw_send_hdrinc(sk, msg->msg_iov, len,
580 ipc.addr = rt->rt_dst;
582 err = ip_append_data(sk, ip_generic_getfrag, msg->msg_iov, len, 0,
583 &ipc, rt, msg->msg_flags);
585 ip_flush_pending_frames(sk);
586 else if (!(msg->msg_flags & MSG_MORE))
587 err = ip_push_pending_frames(sk);
601 dst_confirm(&rt->u.dst);
602 if (!(msg->msg_flags & MSG_PROBE) || len)
603 goto back_from_confirm;
608 static void raw_close(struct sock *sk, long timeout)
611 * Raw sockets may have direct kernel refereneces. Kill them.
613 ip_ra_control(sk, 0, NULL);
615 sk_common_release(sk);
618 /* This gets rid of all the nasties in af_inet. -DaveM */
619 static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
621 struct inet_sock *inet = inet_sk(sk);
622 struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
626 if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
628 chk_addr_ret = inet_addr_type(sk->sk_net, addr->sin_addr.s_addr);
629 ret = -EADDRNOTAVAIL;
630 if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
631 chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
633 inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
634 if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
635 inet->saddr = 0; /* Use device */
642 * This should be easy, if there is something there
643 * we return it, otherwise we block.
646 static int raw_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
647 size_t len, int noblock, int flags, int *addr_len)
649 struct inet_sock *inet = inet_sk(sk);
651 int err = -EOPNOTSUPP;
652 struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
659 *addr_len = sizeof(*sin);
661 if (flags & MSG_ERRQUEUE) {
662 err = ip_recv_error(sk, msg, len);
666 skb = skb_recv_datagram(sk, flags, noblock, &err);
672 msg->msg_flags |= MSG_TRUNC;
676 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
680 sock_recv_timestamp(msg, sk, skb);
682 /* Copy the address. */
684 sin->sin_family = AF_INET;
685 sin->sin_addr.s_addr = ip_hdr(skb)->saddr;
687 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
689 if (inet->cmsg_flags)
690 ip_cmsg_recv(msg, skb);
691 if (flags & MSG_TRUNC)
694 skb_free_datagram(sk, skb);
701 static int raw_init(struct sock *sk)
703 struct raw_sock *rp = raw_sk(sk);
705 if (inet_sk(sk)->num == IPPROTO_ICMP)
706 memset(&rp->filter, 0, sizeof(rp->filter));
710 static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
712 if (optlen > sizeof(struct icmp_filter))
713 optlen = sizeof(struct icmp_filter);
714 if (copy_from_user(&raw_sk(sk)->filter, optval, optlen))
719 static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
721 int len, ret = -EFAULT;
723 if (get_user(len, optlen))
728 if (len > sizeof(struct icmp_filter))
729 len = sizeof(struct icmp_filter);
731 if (put_user(len, optlen) ||
732 copy_to_user(optval, &raw_sk(sk)->filter, len))
738 static int do_raw_setsockopt(struct sock *sk, int level, int optname,
739 char __user *optval, int optlen)
741 if (optname == ICMP_FILTER) {
742 if (inet_sk(sk)->num != IPPROTO_ICMP)
745 return raw_seticmpfilter(sk, optval, optlen);
750 static int raw_setsockopt(struct sock *sk, int level, int optname,
751 char __user *optval, int optlen)
753 if (level != SOL_RAW)
754 return ip_setsockopt(sk, level, optname, optval, optlen);
755 return do_raw_setsockopt(sk, level, optname, optval, optlen);
759 static int compat_raw_setsockopt(struct sock *sk, int level, int optname,
760 char __user *optval, int optlen)
762 if (level != SOL_RAW)
763 return compat_ip_setsockopt(sk, level, optname, optval, optlen);
764 return do_raw_setsockopt(sk, level, optname, optval, optlen);
768 static int do_raw_getsockopt(struct sock *sk, int level, int optname,
769 char __user *optval, int __user *optlen)
771 if (optname == ICMP_FILTER) {
772 if (inet_sk(sk)->num != IPPROTO_ICMP)
775 return raw_geticmpfilter(sk, optval, optlen);
780 static int raw_getsockopt(struct sock *sk, int level, int optname,
781 char __user *optval, int __user *optlen)
783 if (level != SOL_RAW)
784 return ip_getsockopt(sk, level, optname, optval, optlen);
785 return do_raw_getsockopt(sk, level, optname, optval, optlen);
789 static int compat_raw_getsockopt(struct sock *sk, int level, int optname,
790 char __user *optval, int __user *optlen)
792 if (level != SOL_RAW)
793 return compat_ip_getsockopt(sk, level, optname, optval, optlen);
794 return do_raw_getsockopt(sk, level, optname, optval, optlen);
798 static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
802 int amount = atomic_read(&sk->sk_wmem_alloc);
803 return put_user(amount, (int __user *)arg);
809 spin_lock_bh(&sk->sk_receive_queue.lock);
810 skb = skb_peek(&sk->sk_receive_queue);
813 spin_unlock_bh(&sk->sk_receive_queue.lock);
814 return put_user(amount, (int __user *)arg);
818 #ifdef CONFIG_IP_MROUTE
819 return ipmr_ioctl(sk, cmd, (void __user *)arg);
826 DEFINE_PROTO_INUSE(raw)
828 struct proto raw_prot = {
830 .owner = THIS_MODULE,
832 .connect = ip4_datagram_connect,
833 .disconnect = udp_disconnect,
836 .setsockopt = raw_setsockopt,
837 .getsockopt = raw_getsockopt,
838 .sendmsg = raw_sendmsg,
839 .recvmsg = raw_recvmsg,
841 .backlog_rcv = raw_rcv_skb,
843 .unhash = raw_v4_unhash,
844 .obj_size = sizeof(struct raw_sock),
846 .compat_setsockopt = compat_raw_setsockopt,
847 .compat_getsockopt = compat_raw_getsockopt,
852 #ifdef CONFIG_PROC_FS
853 static struct sock *raw_get_first(struct seq_file *seq)
856 struct raw_iter_state* state = raw_seq_private(seq);
858 for (state->bucket = 0; state->bucket < RAW_HTABLE_SIZE;
860 struct hlist_node *node;
862 sk_for_each(sk, node, &state->h->ht[state->bucket])
863 if (sk->sk_net == state->p.net &&
864 sk->sk_family == state->family)
872 static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
874 struct raw_iter_state* state = raw_seq_private(seq);
880 } while (sk && sk->sk_net != state->p.net &&
881 sk->sk_family != state->family);
883 if (!sk && ++state->bucket < RAW_HTABLE_SIZE) {
884 sk = sk_head(&state->h->ht[state->bucket]);
890 static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
892 struct sock *sk = raw_get_first(seq);
895 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
897 return pos ? NULL : sk;
900 void *raw_seq_start(struct seq_file *seq, loff_t *pos)
902 struct raw_iter_state *state = raw_seq_private(seq);
904 read_lock(&state->h->lock);
905 return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
907 EXPORT_SYMBOL_GPL(raw_seq_start);
909 void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
913 if (v == SEQ_START_TOKEN)
914 sk = raw_get_first(seq);
916 sk = raw_get_next(seq, v);
920 EXPORT_SYMBOL_GPL(raw_seq_next);
922 void raw_seq_stop(struct seq_file *seq, void *v)
924 struct raw_iter_state *state = raw_seq_private(seq);
926 read_unlock(&state->h->lock);
928 EXPORT_SYMBOL_GPL(raw_seq_stop);
930 static __inline__ char *get_raw_sock(struct sock *sp, char *tmpbuf, int i)
932 struct inet_sock *inet = inet_sk(sp);
933 __be32 dest = inet->daddr,
934 src = inet->rcv_saddr;
938 sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
939 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p %d",
940 i, src, srcp, dest, destp, sp->sk_state,
941 atomic_read(&sp->sk_wmem_alloc),
942 atomic_read(&sp->sk_rmem_alloc),
943 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
944 atomic_read(&sp->sk_refcnt), sp, atomic_read(&sp->sk_drops));
950 static int raw_seq_show(struct seq_file *seq, void *v)
952 char tmpbuf[TMPSZ+1];
954 if (v == SEQ_START_TOKEN)
955 seq_printf(seq, "%-*s\n", TMPSZ-1,
956 " sl local_address rem_address st tx_queue "
957 "rx_queue tr tm->when retrnsmt uid timeout "
960 struct raw_iter_state *state = raw_seq_private(seq);
962 seq_printf(seq, "%-*s\n", TMPSZ-1,
963 get_raw_sock(v, tmpbuf, state->bucket));
968 static const struct seq_operations raw_seq_ops = {
969 .start = raw_seq_start,
970 .next = raw_seq_next,
971 .stop = raw_seq_stop,
972 .show = raw_seq_show,
975 int raw_seq_open(struct inode *ino, struct file *file, struct raw_hashinfo *h,
976 unsigned short family)
979 struct raw_iter_state *i;
981 err = seq_open_net(ino, file, &raw_seq_ops,
982 sizeof(struct raw_iter_state));
986 i = raw_seq_private((struct seq_file *)file->private_data);
991 EXPORT_SYMBOL_GPL(raw_seq_open);
993 static int raw_v4_seq_open(struct inode *inode, struct file *file)
995 return raw_seq_open(inode, file, &raw_v4_hashinfo, PF_INET);
998 static const struct file_operations raw_seq_fops = {
999 .owner = THIS_MODULE,
1000 .open = raw_v4_seq_open,
1002 .llseek = seq_lseek,
1003 .release = seq_release_net,
1006 static __net_init int raw_init_net(struct net *net)
1008 if (!proc_net_fops_create(net, "raw", S_IRUGO, &raw_seq_fops))
1014 static __net_exit void raw_exit_net(struct net *net)
1016 proc_net_remove(net, "raw");
1019 static __net_initdata struct pernet_operations raw_net_ops = {
1020 .init = raw_init_net,
1021 .exit = raw_exit_net,
1024 int __init raw_proc_init(void)
1026 return register_pernet_subsys(&raw_net_ops);
1029 void __init raw_proc_exit(void)
1031 unregister_pernet_subsys(&raw_net_ops);
1033 #endif /* CONFIG_PROC_FS */