patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / ipv4 / raw.c
1 /*
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.
5  *
6  *              RAW - implementation of IP "raw" sockets.
7  *
8  * Version:     $Id: raw.c,v 1.64 2002/02/01 22:01:04 davem Exp $
9  *
10  * Authors:     Ross Biro, <bir7@leland.Stanford.Edu>
11  *              Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12  *
13  * Fixes:
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,
19  *                                      no more backlogs
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.
35  *
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.
40  */
41  
42 #include <linux/config.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/types.h>
49 #include <linux/stddef.h>
50 #include <linux/slab.h>
51 #include <linux/errno.h>
52 #include <linux/aio.h>
53 #include <linux/kernel.h>
54 #include <linux/spinlock.h>
55 #include <linux/sockios.h>
56 #include <linux/socket.h>
57 #include <linux/in.h>
58 #include <linux/mroute.h>
59 #include <linux/netdevice.h>
60 #include <linux/in_route.h>
61 #include <linux/route.h>
62 #include <linux/tcp.h>
63 #include <linux/skbuff.h>
64 #include <net/dst.h>
65 #include <net/sock.h>
66 #include <linux/gfp.h>
67 #include <linux/ip.h>
68 #include <linux/net.h>
69 #include <net/ip.h>
70 #include <net/icmp.h>
71 #include <net/udp.h>
72 #include <net/raw.h>
73 #include <net/snmp.h>
74 #include <net/inet_common.h>
75 #include <net/checksum.h>
76 #include <net/xfrm.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>
82
83 struct hlist_head raw_v4_htable[RAWV4_HTABLE_SIZE];
84 rwlock_t raw_v4_lock = RW_LOCK_UNLOCKED;
85
86 static void raw_v4_hash(struct sock *sk)
87 {
88         struct hlist_head *head = &raw_v4_htable[inet_sk(sk)->num &
89                                                  (RAWV4_HTABLE_SIZE - 1)];
90
91         write_lock_bh(&raw_v4_lock);
92         sk_add_node(sk, head);
93         sock_prot_inc_use(sk->sk_prot);
94         write_unlock_bh(&raw_v4_lock);
95 }
96
97 static void raw_v4_unhash(struct sock *sk)
98 {
99         write_lock_bh(&raw_v4_lock);
100         if (sk_del_node_init(sk))
101                 sock_prot_dec_use(sk->sk_prot);
102         write_unlock_bh(&raw_v4_lock);
103 }
104
105
106 /*
107         Check if an address is in the list
108 */
109 static inline int raw_addr_in_list (
110         u32 rcv_saddr1,
111         u32 rcv_saddr2,
112         u32 loc_addr,
113         struct nx_info *nx_info)
114 {
115         int ret = 0;
116         if (loc_addr != 0 &&
117                 (rcv_saddr1 == loc_addr || rcv_saddr2 == loc_addr))
118                 ret = 1;
119         else if (rcv_saddr1 == 0) {
120                 /* Accept any address or only the one in the list */
121                 if (nx_info == NULL)
122                         ret = 1;
123                 else {
124                         int n = nx_info->nbipv4;
125                         int i;
126                         for (i=0; i<n; i++) {
127                                 if (nx_info->ipv4[i] == loc_addr) {
128                                         ret = 1;
129                                         break;
130                                 }
131                         }
132                 }
133         }
134         return ret;
135 }
136
137 struct sock *__raw_v4_lookup(struct sock *sk, unsigned short num,
138                              unsigned long raddr, unsigned long laddr,
139                              int dif)
140 {
141         struct hlist_node *node;
142
143         sk_for_each_from(sk, node) {
144                 struct inet_opt *inet = inet_sk(sk);
145
146                 if (inet->num == num                                    &&
147                     !(inet->daddr && inet->daddr != raddr)              &&
148                     raw_addr_in_list(inet->rcv_saddr, inet->rcv_saddr2,
149                         laddr, sk->sk_nx_info) &&
150                     !(sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif))
151                         goto found; /* gotcha */
152         }
153         sk = NULL;
154 found:
155         return sk;
156 }
157
158 /*
159  *      0 - deliver
160  *      1 - block
161  */
162 static __inline__ int icmp_filter(struct sock *sk, struct sk_buff *skb)
163 {
164         int type;
165
166         type = skb->h.icmph->type;
167         if (type < 32) {
168                 __u32 data = raw4_sk(sk)->filter.data;
169
170                 return ((1 << type) & data) != 0;
171         }
172
173         /* Do not block unknown ICMP types */
174         return 0;
175 }
176
177 /* IP input processing comes here for RAW socket delivery.
178  * Caller owns SKB, so we must make clones.
179  *
180  * RFC 1122: SHOULD pass TOS value up to the transport layer.
181  * -> It does. And not only TOS, but all IP header.
182  */
183 void raw_v4_input(struct sk_buff *skb, struct iphdr *iph, int hash)
184 {
185         struct sock *sk;
186         struct hlist_head *head;
187
188         read_lock(&raw_v4_lock);
189         head = &raw_v4_htable[hash];
190         if (hlist_empty(head))
191                 goto out;
192         sk = __raw_v4_lookup(__sk_head(head), iph->protocol,
193                              iph->saddr, iph->daddr,
194                              skb->dev->ifindex);
195
196         while (sk) {
197                 if (iph->protocol != IPPROTO_ICMP || !icmp_filter(sk, skb)) {
198                         struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
199
200                         /* Not releasing hash table! */
201                         if (clone)
202                                 raw_rcv(sk, clone);
203                 }
204                 sk = __raw_v4_lookup(sk_next(sk), iph->protocol,
205                                      iph->saddr, iph->daddr,
206                                      skb->dev->ifindex);
207         }
208 out:
209         read_unlock(&raw_v4_lock);
210 }
211
212 void raw_err (struct sock *sk, struct sk_buff *skb, u32 info)
213 {
214         struct inet_opt *inet = inet_sk(sk);
215         int type = skb->h.icmph->type;
216         int code = skb->h.icmph->code;
217         int err = 0;
218         int harderr = 0;
219
220         /* Report error on raw socket, if:
221            1. User requested ip_recverr.
222            2. Socket is connected (otherwise the error indication
223               is useless without ip_recverr and error is hard.
224          */
225         if (!inet->recverr && sk->sk_state != TCP_ESTABLISHED)
226                 return;
227
228         switch (type) {
229         default:
230         case ICMP_TIME_EXCEEDED:
231                 err = EHOSTUNREACH;
232                 break;
233         case ICMP_SOURCE_QUENCH:
234                 return;
235         case ICMP_PARAMETERPROB:
236                 err = EPROTO;
237                 harderr = 1;
238                 break;
239         case ICMP_DEST_UNREACH:
240                 err = EHOSTUNREACH;
241                 if (code > NR_ICMP_UNREACH)
242                         break;
243                 err = icmp_err_convert[code].errno;
244                 harderr = icmp_err_convert[code].fatal;
245                 if (code == ICMP_FRAG_NEEDED) {
246                         harderr = inet->pmtudisc != IP_PMTUDISC_DONT;
247                         err = EMSGSIZE;
248                 }
249         }
250
251         if (inet->recverr) {
252                 struct iphdr *iph = (struct iphdr*)skb->data;
253                 u8 *payload = skb->data + (iph->ihl << 2);
254
255                 if (inet->hdrincl)
256                         payload = skb->data;
257                 ip_icmp_error(sk, skb, err, 0, info, payload);
258         }
259
260         if (inet->recverr || harderr) {
261                 sk->sk_err = err;
262                 sk->sk_error_report(sk);
263         }
264 }
265
266 static int raw_rcv_skb(struct sock * sk, struct sk_buff * skb)
267 {
268         /* Charge it to the socket. */
269         
270         if (sock_queue_rcv_skb(sk, skb) < 0) {
271                 /* FIXME: increment a raw drops counter here */
272                 kfree_skb(skb);
273                 return NET_RX_DROP;
274         }
275
276         return NET_RX_SUCCESS;
277 }
278
279 int raw_rcv(struct sock *sk, struct sk_buff *skb)
280 {
281         if (!xfrm4_policy_check(sk, XFRM_POLICY_IN, skb)) {
282                 kfree_skb(skb);
283                 return NET_RX_DROP;
284         }
285
286         skb_push(skb, skb->data - skb->nh.raw);
287
288         raw_rcv_skb(sk, skb);
289         return 0;
290 }
291
292 static int raw_send_hdrinc(struct sock *sk, void *from, int length,
293                         struct rtable *rt, 
294                         unsigned int flags)
295 {
296         struct inet_opt *inet = inet_sk(sk);
297         int hh_len;
298         struct iphdr *iph;
299         struct sk_buff *skb;
300         int err;
301
302         if (length > rt->u.dst.dev->mtu) {
303                 ip_local_error(sk, EMSGSIZE, rt->rt_dst, inet->dport,
304                                rt->u.dst.dev->mtu);
305                 return -EMSGSIZE;
306         }
307         if (flags&MSG_PROBE)
308                 goto out;
309
310         hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
311
312         skb = sock_alloc_send_skb(sk, length+hh_len+15,
313                                   flags&MSG_DONTWAIT, &err);
314         if (skb == NULL)
315                 goto error; 
316         skb_reserve(skb, hh_len);
317
318         skb->priority = sk->sk_priority;
319         skb->dst = dst_clone(&rt->u.dst);
320
321         skb->nh.iph = iph = (struct iphdr *)skb_put(skb, length);
322
323         skb->ip_summed = CHECKSUM_NONE;
324
325         skb->h.raw = skb->nh.raw;
326         err = memcpy_fromiovecend((void *)iph, from, 0, length);
327         if (err)
328                 goto error_fault;
329
330         /* We don't modify invalid header */
331         if (length >= sizeof(*iph) && iph->ihl * 4 <= length) {
332                 if (!iph->saddr)
333                         iph->saddr = rt->rt_src;
334                 iph->check   = 0;
335                 iph->tot_len = htons(length);
336                 if (!iph->id)
337                         ip_select_ident(iph, &rt->u.dst, NULL);
338
339                 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
340         }
341
342         err = NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
343                       dst_output);
344         if (err > 0)
345                 err = inet->recverr ? net_xmit_errno(err) : 0;
346         if (err)
347                 goto error;
348 out:
349         return 0;
350
351 error_fault:
352         err = -EFAULT;
353         kfree_skb(skb);
354 error:
355         IP_INC_STATS(OutDiscards);
356         return err; 
357 }
358
359 static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
360                        size_t len)
361 {
362         struct inet_opt *inet = inet_sk(sk);
363         struct ipcm_cookie ipc;
364         struct rtable *rt = NULL;
365         int free = 0;
366         u32 daddr;
367         u32 saddr;
368         u8  tos;
369         int err;
370
371         err = -EMSGSIZE;
372         if (len < 0 || len > 0xFFFF)
373                 goto out;
374
375         /*
376          *      Check the flags.
377          */
378
379         err = -EOPNOTSUPP;
380         if (msg->msg_flags & MSG_OOB)   /* Mirror BSD error message */
381                 goto out;               /* compatibility */
382                          
383         /*
384          *      Get and verify the address. 
385          */
386
387         if (msg->msg_namelen) {
388                 struct sockaddr_in *usin = (struct sockaddr_in*)msg->msg_name;
389                 err = -EINVAL;
390                 if (msg->msg_namelen < sizeof(*usin))
391                         goto out;
392                 if (usin->sin_family != AF_INET) {
393                         static int complained;
394                         if (!complained++)
395                                 printk(KERN_INFO "%s forgot to set AF_INET in "
396                                                  "raw sendmsg. Fix it!\n",
397                                                  current->comm);
398                         err = -EINVAL;
399                         if (usin->sin_family)
400                                 goto out;
401                 }
402                 daddr = usin->sin_addr.s_addr;
403                 /* ANK: I did not forget to get protocol from port field.
404                  * I just do not know, who uses this weirdness.
405                  * IP_HDRINCL is much more convenient.
406                  */
407         } else {
408                 err = -EDESTADDRREQ;
409                 if (sk->sk_state != TCP_ESTABLISHED) 
410                         goto out;
411                 daddr = inet->daddr;
412         }
413
414         ipc.addr = inet->saddr;
415         ipc.opt = NULL;
416         ipc.oif = sk->sk_bound_dev_if;
417
418         if (msg->msg_controllen) {
419                 err = ip_cmsg_send(msg, &ipc);
420                 if (err)
421                         goto out;
422                 if (ipc.opt)
423                         free = 1;
424         }
425
426         saddr = ipc.addr;
427         ipc.addr = daddr;
428
429         if (!ipc.opt)
430                 ipc.opt = inet->opt;
431
432         if (ipc.opt) {
433                 err = -EINVAL;
434                 /* Linux does not mangle headers on raw sockets,
435                  * so that IP options + IP_HDRINCL is non-sense.
436                  */
437                 if (inet->hdrincl)
438                         goto done;
439                 if (ipc.opt->srr) {
440                         if (!daddr)
441                                 goto done;
442                         daddr = ipc.opt->faddr;
443                 }
444         }
445         tos = RT_TOS(inet->tos) | sk->sk_localroute;
446         if (msg->msg_flags & MSG_DONTROUTE)
447                 tos |= RTO_ONLINK;
448
449         if (MULTICAST(daddr)) {
450                 if (!ipc.oif)
451                         ipc.oif = inet->mc_index;
452                 if (!saddr)
453                         saddr = inet->mc_addr;
454         }
455
456         {
457                 struct flowi fl = { .oif = ipc.oif,
458                                     .nl_u = { .ip4_u =
459                                               { .daddr = daddr,
460                                                 .saddr = saddr,
461                                                 .tos = tos } },
462                                     .proto = inet->hdrincl ? IPPROTO_RAW :
463                                                              sk->sk_protocol,
464                                   };
465                 
466                 if (sk->sk_nx_info) {
467                         err = ip_find_src(sk->sk_nx_info, &rt, &fl);
468
469                         if (err)
470                                 goto done;
471                 }
472                 err = ip_route_output_flow(&rt, &fl, sk, !(msg->msg_flags&MSG_DONTWAIT));
473         }
474         if (err)
475                 goto done;
476
477         err = -EACCES;
478         if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
479                 goto done;
480
481         if (msg->msg_flags & MSG_CONFIRM)
482                 goto do_confirm;
483 back_from_confirm:
484
485         if (inet->hdrincl)
486                 err = raw_send_hdrinc(sk, msg->msg_iov, len, 
487                                         rt, msg->msg_flags);
488         
489          else {
490                 if (!ipc.addr)
491                         ipc.addr = rt->rt_dst;
492                 lock_sock(sk);
493                 err = ip_append_data(sk, ip_generic_getfrag, msg->msg_iov, len, 0,
494                                         &ipc, rt, msg->msg_flags);
495                 if (err)
496                         ip_flush_pending_frames(sk);
497                 else if (!(msg->msg_flags & MSG_MORE))
498                         err = ip_push_pending_frames(sk);
499                 release_sock(sk);
500         }
501 done:
502         if (free)
503                 kfree(ipc.opt);
504         ip_rt_put(rt);
505
506 out:    return err < 0 ? err : len;
507
508 do_confirm:
509         dst_confirm(&rt->u.dst);
510         if (!(msg->msg_flags & MSG_PROBE) || len)
511                 goto back_from_confirm;
512         err = 0;
513         goto done;
514 }
515
516 static void raw_close(struct sock *sk, long timeout)
517 {
518         /*
519          * Raw sockets may have direct kernel refereneces. Kill them.
520          */
521         ip_ra_control(sk, 0, NULL);
522
523         inet_sock_release(sk);
524 }
525
526 /* This gets rid of all the nasties in af_inet. -DaveM */
527 static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
528 {
529         struct inet_opt *inet = inet_sk(sk);
530         struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
531         int ret = -EINVAL;
532         int chk_addr_ret;
533
534         if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
535                 goto out;
536         chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
537         ret = -EADDRNOTAVAIL;
538         if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
539             chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
540                 goto out;
541         inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
542         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
543                 inet->saddr = 0;  /* Use device */
544         sk_dst_reset(sk);
545         ret = 0;
546 out:    return ret;
547 }
548
549 /*
550  *      This should be easy, if there is something there
551  *      we return it, otherwise we block.
552  */
553
554 int raw_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
555                 size_t len, int noblock, int flags, int *addr_len)
556 {
557         struct inet_opt *inet = inet_sk(sk);
558         size_t copied = 0;
559         int err = -EOPNOTSUPP;
560         struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
561         struct sk_buff *skb;
562
563         if (flags & MSG_OOB)
564                 goto out;
565
566         if (addr_len)
567                 *addr_len = sizeof(*sin);
568
569         if (flags & MSG_ERRQUEUE) {
570                 err = ip_recv_error(sk, msg, len);
571                 goto out;
572         }
573
574         skb = skb_recv_datagram(sk, flags, noblock, &err);
575         if (!skb)
576                 goto out;
577
578         copied = skb->len;
579         if (len < copied) {
580                 msg->msg_flags |= MSG_TRUNC;
581                 copied = len;
582         }
583
584         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
585         if (err)
586                 goto done;
587
588         sock_recv_timestamp(msg, sk, skb);
589
590         /* Copy the address. */
591         if (sin) {
592                 sin->sin_family = AF_INET;
593                 sin->sin_addr.s_addr = skb->nh.iph->saddr;
594                 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
595         }
596         if (inet->cmsg_flags)
597                 ip_cmsg_recv(msg, skb);
598 done:
599         skb_free_datagram(sk, skb);
600 out:    return err ? : copied;
601 }
602
603 static int raw_init(struct sock *sk)
604 {
605         struct raw_opt *tp = raw4_sk(sk);
606         if (inet_sk(sk)->num == IPPROTO_ICMP)
607                 memset(&tp->filter, 0, sizeof(tp->filter));
608         return 0;
609 }
610
611 static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
612 {
613         if (optlen > sizeof(struct icmp_filter))
614                 optlen = sizeof(struct icmp_filter);
615         if (copy_from_user(&raw4_sk(sk)->filter, optval, optlen))
616                 return -EFAULT;
617         return 0;
618 }
619
620 static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
621 {
622         int len, ret = -EFAULT;
623
624         if (get_user(len, optlen))
625                 goto out;
626         ret = -EINVAL;
627         if (len < 0)
628                 goto out;
629         if (len > sizeof(struct icmp_filter))
630                 len = sizeof(struct icmp_filter);
631         ret = -EFAULT;
632         if (put_user(len, optlen) ||
633             copy_to_user(optval, &raw4_sk(sk)->filter, len))
634                 goto out;
635         ret = 0;
636 out:    return ret;
637 }
638
639 static int raw_setsockopt(struct sock *sk, int level, int optname, 
640                           char __user *optval, int optlen)
641 {
642         if (level != SOL_RAW)
643                 return ip_setsockopt(sk, level, optname, optval, optlen);
644
645         if (optname == ICMP_FILTER) {
646                 if (inet_sk(sk)->num != IPPROTO_ICMP)
647                         return -EOPNOTSUPP;
648                 else
649                         return raw_seticmpfilter(sk, optval, optlen);
650         }
651         return -ENOPROTOOPT;
652 }
653
654 static int raw_getsockopt(struct sock *sk, int level, int optname, 
655                           char __user *optval, int __user *optlen)
656 {
657         if (level != SOL_RAW)
658                 return ip_getsockopt(sk, level, optname, optval, optlen);
659
660         if (optname == ICMP_FILTER) {
661                 if (inet_sk(sk)->num != IPPROTO_ICMP)
662                         return -EOPNOTSUPP;
663                 else
664                         return raw_geticmpfilter(sk, optval, optlen);
665         }
666         return -ENOPROTOOPT;
667 }
668
669 static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
670 {
671         switch (cmd) {
672                 case SIOCOUTQ: {
673                         int amount = atomic_read(&sk->sk_wmem_alloc);
674                         return put_user(amount, (int __user *)arg);
675                 }
676                 case SIOCINQ: {
677                         struct sk_buff *skb;
678                         int amount = 0;
679
680                         spin_lock_irq(&sk->sk_receive_queue.lock);
681                         skb = skb_peek(&sk->sk_receive_queue);
682                         if (skb != NULL)
683                                 amount = skb->len;
684                         spin_unlock_irq(&sk->sk_receive_queue.lock);
685                         return put_user(amount, (int __user *)arg);
686                 }
687
688                 default:
689 #ifdef CONFIG_IP_MROUTE
690                         return ipmr_ioctl(sk, cmd, (void __user *)arg);
691 #else
692                         return -ENOIOCTLCMD;
693 #endif
694         }
695 }
696
697 struct proto raw_prot = {
698         .name =         "RAW",
699         .close =        raw_close,
700         .connect =      udp_connect,
701         .disconnect =   udp_disconnect,
702         .ioctl =        raw_ioctl,
703         .init =         raw_init,
704         .setsockopt =   raw_setsockopt,
705         .getsockopt =   raw_getsockopt,
706         .sendmsg =      raw_sendmsg,
707         .recvmsg =      raw_recvmsg,
708         .bind =         raw_bind,
709         .backlog_rcv =  raw_rcv_skb,
710         .hash =         raw_v4_hash,
711         .unhash =       raw_v4_unhash,
712 };
713
714 #ifdef CONFIG_PROC_FS
715 struct raw_iter_state {
716         int bucket;
717 };
718
719 #define raw_seq_private(seq) ((struct raw_iter_state *)(seq)->private)
720
721 static struct sock *raw_get_first(struct seq_file *seq)
722 {
723         struct sock *sk;
724         struct raw_iter_state* state = raw_seq_private(seq);
725
726         for (state->bucket = 0; state->bucket < RAWV4_HTABLE_SIZE; ++state->bucket) {
727                 struct hlist_node *node;
728
729                 sk_for_each(sk, node, &raw_v4_htable[state->bucket])
730                         if (sk->sk_family == PF_INET &&
731                                 vx_check(sk->sk_xid, VX_WATCH|VX_IDENT))
732                                 goto found;
733         }
734         sk = NULL;
735 found:
736         return sk;
737 }
738
739 static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
740 {
741         struct raw_iter_state* state = raw_seq_private(seq);
742
743         do {
744                 sk = sk_next(sk);
745 try_again:
746                 ;
747         } while (sk && (sk->sk_family != PF_INET ||
748                 !vx_check(sk->sk_xid, VX_WATCH|VX_IDENT)));
749
750         if (!sk && ++state->bucket < RAWV4_HTABLE_SIZE) {
751                 sk = sk_head(&raw_v4_htable[state->bucket]);
752                 goto try_again;
753         }
754         return sk;
755 }
756
757 static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
758 {
759         struct sock *sk = raw_get_first(seq);
760
761         if (sk)
762                 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
763                         --pos;
764         return pos ? NULL : sk;
765 }
766
767 static void *raw_seq_start(struct seq_file *seq, loff_t *pos)
768 {
769         read_lock(&raw_v4_lock);
770         return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
771 }
772
773 static void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
774 {
775         struct sock *sk;
776
777         if (v == SEQ_START_TOKEN)
778                 sk = raw_get_first(seq);
779         else
780                 sk = raw_get_next(seq, v);
781         ++*pos;
782         return sk;
783 }
784
785 static void raw_seq_stop(struct seq_file *seq, void *v)
786 {
787         read_unlock(&raw_v4_lock);
788 }
789
790 static __inline__ char *get_raw_sock(struct sock *sp, char *tmpbuf, int i)
791 {
792         struct inet_opt *inet = inet_sk(sp);
793         unsigned int dest = inet->daddr,
794                      src = inet->rcv_saddr;
795         __u16 destp = 0,
796               srcp  = inet->num;
797
798         sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
799                 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p",
800                 i, src, srcp, dest, destp, sp->sk_state, 
801                 atomic_read(&sp->sk_wmem_alloc),
802                 atomic_read(&sp->sk_rmem_alloc),
803                 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
804                 atomic_read(&sp->sk_refcnt), sp);
805         return tmpbuf;
806 }
807
808 static int raw_seq_show(struct seq_file *seq, void *v)
809 {
810         char tmpbuf[129];
811
812         if (v == SEQ_START_TOKEN)
813                 seq_printf(seq, "%-127s\n",
814                                "  sl  local_address rem_address   st tx_queue "
815                                "rx_queue tr tm->when retrnsmt   uid  timeout "
816                                "inode");
817         else {
818                 struct raw_iter_state *state = raw_seq_private(seq);
819
820                 seq_printf(seq, "%-127s\n",
821                            get_raw_sock(v, tmpbuf, state->bucket));
822         }
823         return 0;
824 }
825
826 static struct seq_operations raw_seq_ops = {
827         .start = raw_seq_start,
828         .next  = raw_seq_next,
829         .stop  = raw_seq_stop,
830         .show  = raw_seq_show,
831 };
832
833 static int raw_seq_open(struct inode *inode, struct file *file)
834 {
835         struct seq_file *seq;
836         int rc = -ENOMEM;
837         struct raw_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
838
839         if (!s)
840                 goto out;
841         rc = seq_open(file, &raw_seq_ops);
842         if (rc)
843                 goto out_kfree;
844
845         seq = file->private_data;
846         seq->private = s;
847         memset(s, 0, sizeof(*s));
848 out:
849         return rc;
850 out_kfree:
851         kfree(s);
852         goto out;
853 }
854
855 static struct file_operations raw_seq_fops = {
856         .owner   = THIS_MODULE,
857         .open    = raw_seq_open,
858         .read    = seq_read,
859         .llseek  = seq_lseek,
860         .release = seq_release_private,
861 };
862
863 int __init raw_proc_init(void)
864 {
865         if (!proc_net_fops_create("raw", S_IRUGO, &raw_seq_fops))
866                 return -ENOMEM;
867         return 0;
868 }
869
870 void __init raw_proc_exit(void)
871 {
872         proc_net_remove("raw");
873 }
874 #endif /* CONFIG_PROC_FS */