patch-2.6.6-vs1.9.0
[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(IpOutDiscards);
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                 err = ip_route_output_flow(&rt, &fl, sk, !(msg->msg_flags&MSG_DONTWAIT));
466         }
467         if (err)
468                 goto done;
469
470         err = -EACCES;
471         if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
472                 goto done;
473
474         if (msg->msg_flags & MSG_CONFIRM)
475                 goto do_confirm;
476 back_from_confirm:
477
478         if (inet->hdrincl)
479                 err = raw_send_hdrinc(sk, msg->msg_iov, len, 
480                                         rt, msg->msg_flags);
481         
482          else {
483                 if (!ipc.addr)
484                         ipc.addr = rt->rt_dst;
485                 lock_sock(sk);
486                 err = ip_append_data(sk, ip_generic_getfrag, msg->msg_iov, len, 0,
487                                         &ipc, rt, msg->msg_flags);
488                 if (err)
489                         ip_flush_pending_frames(sk);
490                 else if (!(msg->msg_flags & MSG_MORE))
491                         err = ip_push_pending_frames(sk);
492                 release_sock(sk);
493         }
494 done:
495         if (free)
496                 kfree(ipc.opt);
497         ip_rt_put(rt);
498
499 out:    return err < 0 ? err : len;
500
501 do_confirm:
502         dst_confirm(&rt->u.dst);
503         if (!(msg->msg_flags & MSG_PROBE) || len)
504                 goto back_from_confirm;
505         err = 0;
506         goto done;
507 }
508
509 static void raw_close(struct sock *sk, long timeout)
510 {
511         /*
512          * Raw sockets may have direct kernel refereneces. Kill them.
513          */
514         ip_ra_control(sk, 0, NULL);
515
516         inet_sock_release(sk);
517 }
518
519 /* This gets rid of all the nasties in af_inet. -DaveM */
520 static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
521 {
522         struct inet_opt *inet = inet_sk(sk);
523         struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
524         int ret = -EINVAL;
525         int chk_addr_ret;
526
527         if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
528                 goto out;
529         chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
530         ret = -EADDRNOTAVAIL;
531         if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
532             chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
533                 goto out;
534         inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
535         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
536                 inet->saddr = 0;  /* Use device */
537         sk_dst_reset(sk);
538         ret = 0;
539 out:    return ret;
540 }
541
542 /*
543  *      This should be easy, if there is something there
544  *      we return it, otherwise we block.
545  */
546
547 int raw_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
548                 size_t len, int noblock, int flags, int *addr_len)
549 {
550         struct inet_opt *inet = inet_sk(sk);
551         size_t copied = 0;
552         int err = -EOPNOTSUPP;
553         struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
554         struct sk_buff *skb;
555
556         if (flags & MSG_OOB)
557                 goto out;
558
559         if (addr_len)
560                 *addr_len = sizeof(*sin);
561
562         if (flags & MSG_ERRQUEUE) {
563                 err = ip_recv_error(sk, msg, len);
564                 goto out;
565         }
566
567         skb = skb_recv_datagram(sk, flags, noblock, &err);
568         if (!skb)
569                 goto out;
570
571         copied = skb->len;
572         if (len < copied) {
573                 msg->msg_flags |= MSG_TRUNC;
574                 copied = len;
575         }
576
577         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
578         if (err)
579                 goto done;
580
581         sock_recv_timestamp(msg, sk, skb);
582
583         /* Copy the address. */
584         if (sin) {
585                 sin->sin_family = AF_INET;
586                 sin->sin_addr.s_addr = skb->nh.iph->saddr;
587                 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
588         }
589         if (inet->cmsg_flags)
590                 ip_cmsg_recv(msg, skb);
591 done:
592         skb_free_datagram(sk, skb);
593 out:    return err ? : copied;
594 }
595
596 static int raw_init(struct sock *sk)
597 {
598         struct raw_opt *tp = raw4_sk(sk);
599         if (inet_sk(sk)->num == IPPROTO_ICMP)
600                 memset(&tp->filter, 0, sizeof(tp->filter));
601         return 0;
602 }
603
604 static int raw_seticmpfilter(struct sock *sk, char *optval, int optlen)
605 {
606         if (optlen > sizeof(struct icmp_filter))
607                 optlen = sizeof(struct icmp_filter);
608         if (copy_from_user(&raw4_sk(sk)->filter, optval, optlen))
609                 return -EFAULT;
610         return 0;
611 }
612
613 static int raw_geticmpfilter(struct sock *sk, char *optval, int *optlen)
614 {
615         int len, ret = -EFAULT;
616
617         if (get_user(len, optlen))
618                 goto out;
619         ret = -EINVAL;
620         if (len < 0)
621                 goto out;
622         if (len > sizeof(struct icmp_filter))
623                 len = sizeof(struct icmp_filter);
624         ret = -EFAULT;
625         if (put_user(len, optlen) ||
626             copy_to_user(optval, &raw4_sk(sk)->filter, len))
627                 goto out;
628         ret = 0;
629 out:    return ret;
630 }
631
632 static int raw_setsockopt(struct sock *sk, int level, int optname, 
633                           char *optval, int optlen)
634 {
635         if (level != SOL_RAW)
636                 return ip_setsockopt(sk, level, optname, optval, optlen);
637
638         if (optname == ICMP_FILTER) {
639                 if (inet_sk(sk)->num != IPPROTO_ICMP)
640                         return -EOPNOTSUPP;
641                 else
642                         return raw_seticmpfilter(sk, optval, optlen);
643         }
644         return -ENOPROTOOPT;
645 }
646
647 static int raw_getsockopt(struct sock *sk, int level, int optname, 
648                           char *optval, int *optlen)
649 {
650         if (level != SOL_RAW)
651                 return ip_getsockopt(sk, level, optname, optval, optlen);
652
653         if (optname == ICMP_FILTER) {
654                 if (inet_sk(sk)->num != IPPROTO_ICMP)
655                         return -EOPNOTSUPP;
656                 else
657                         return raw_geticmpfilter(sk, optval, optlen);
658         }
659         return -ENOPROTOOPT;
660 }
661
662 static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
663 {
664         switch (cmd) {
665                 case SIOCOUTQ: {
666                         int amount = atomic_read(&sk->sk_wmem_alloc);
667                         return put_user(amount, (int *)arg);
668                 }
669                 case SIOCINQ: {
670                         struct sk_buff *skb;
671                         int amount = 0;
672
673                         spin_lock_irq(&sk->sk_receive_queue.lock);
674                         skb = skb_peek(&sk->sk_receive_queue);
675                         if (skb != NULL)
676                                 amount = skb->len;
677                         spin_unlock_irq(&sk->sk_receive_queue.lock);
678                         return put_user(amount, (int *)arg);
679                 }
680
681                 default:
682 #ifdef CONFIG_IP_MROUTE
683                         return ipmr_ioctl(sk, cmd, arg);
684 #else
685                         return -ENOIOCTLCMD;
686 #endif
687         }
688 }
689
690 struct proto raw_prot = {
691         .name =         "RAW",
692         .close =        raw_close,
693         .connect =      udp_connect,
694         .disconnect =   udp_disconnect,
695         .ioctl =        raw_ioctl,
696         .init =         raw_init,
697         .setsockopt =   raw_setsockopt,
698         .getsockopt =   raw_getsockopt,
699         .sendmsg =      raw_sendmsg,
700         .recvmsg =      raw_recvmsg,
701         .bind =         raw_bind,
702         .backlog_rcv =  raw_rcv_skb,
703         .hash =         raw_v4_hash,
704         .unhash =       raw_v4_unhash,
705 };
706
707 #ifdef CONFIG_PROC_FS
708 struct raw_iter_state {
709         int bucket;
710 };
711
712 #define raw_seq_private(seq) ((struct raw_iter_state *)(seq)->private)
713
714 static struct sock *raw_get_first(struct seq_file *seq)
715 {
716         struct sock *sk;
717         struct raw_iter_state* state = raw_seq_private(seq);
718
719         for (state->bucket = 0; state->bucket < RAWV4_HTABLE_SIZE; ++state->bucket) {
720                 struct hlist_node *node;
721
722                 sk_for_each(sk, node, &raw_v4_htable[state->bucket])
723                         if (sk->sk_family == PF_INET &&
724                                 vx_check(sk->sk_xid, VX_WATCH|VX_IDENT))
725                                 goto found;
726         }
727         sk = NULL;
728 found:
729         return sk;
730 }
731
732 static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
733 {
734         struct raw_iter_state* state = raw_seq_private(seq);
735
736         do {
737                 sk = sk_next(sk);
738 try_again:
739                 ;
740         } while (sk && (sk->sk_family != PF_INET ||
741                 !vx_check(sk->sk_xid, VX_WATCH|VX_IDENT)));
742
743         if (!sk && ++state->bucket < RAWV4_HTABLE_SIZE) {
744                 sk = sk_head(&raw_v4_htable[state->bucket]);
745                 goto try_again;
746         }
747         return sk;
748 }
749
750 static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
751 {
752         struct sock *sk = raw_get_first(seq);
753
754         if (sk)
755                 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
756                         --pos;
757         return pos ? NULL : sk;
758 }
759
760 static void *raw_seq_start(struct seq_file *seq, loff_t *pos)
761 {
762         read_lock(&raw_v4_lock);
763         return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
764 }
765
766 static void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
767 {
768         struct sock *sk;
769
770         if (v == SEQ_START_TOKEN)
771                 sk = raw_get_first(seq);
772         else
773                 sk = raw_get_next(seq, v);
774         ++*pos;
775         return sk;
776 }
777
778 static void raw_seq_stop(struct seq_file *seq, void *v)
779 {
780         read_unlock(&raw_v4_lock);
781 }
782
783 static __inline__ char *get_raw_sock(struct sock *sp, char *tmpbuf, int i)
784 {
785         struct inet_opt *inet = inet_sk(sp);
786         unsigned int dest = inet->daddr,
787                      src = inet->rcv_saddr;
788         __u16 destp = 0,
789               srcp  = inet->num;
790
791         sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
792                 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p",
793                 i, src, srcp, dest, destp, sp->sk_state, 
794                 atomic_read(&sp->sk_wmem_alloc),
795                 atomic_read(&sp->sk_rmem_alloc),
796                 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
797                 atomic_read(&sp->sk_refcnt), sp);
798         return tmpbuf;
799 }
800
801 static int raw_seq_show(struct seq_file *seq, void *v)
802 {
803         char tmpbuf[129];
804
805         if (v == SEQ_START_TOKEN)
806                 seq_printf(seq, "%-127s\n",
807                                "  sl  local_address rem_address   st tx_queue "
808                                "rx_queue tr tm->when retrnsmt   uid  timeout "
809                                "inode");
810         else {
811                 struct raw_iter_state *state = raw_seq_private(seq);
812
813                 seq_printf(seq, "%-127s\n",
814                            get_raw_sock(v, tmpbuf, state->bucket));
815         }
816         return 0;
817 }
818
819 static struct seq_operations raw_seq_ops = {
820         .start = raw_seq_start,
821         .next  = raw_seq_next,
822         .stop  = raw_seq_stop,
823         .show  = raw_seq_show,
824 };
825
826 static int raw_seq_open(struct inode *inode, struct file *file)
827 {
828         struct seq_file *seq;
829         int rc = -ENOMEM;
830         struct raw_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
831
832         if (!s)
833                 goto out;
834         rc = seq_open(file, &raw_seq_ops);
835         if (rc)
836                 goto out_kfree;
837
838         seq = file->private_data;
839         seq->private = s;
840         memset(s, 0, sizeof(*s));
841 out:
842         return rc;
843 out_kfree:
844         kfree(s);
845         goto out;
846 }
847
848 static struct file_operations raw_seq_fops = {
849         .owner   = THIS_MODULE,
850         .open    = raw_seq_open,
851         .read    = seq_read,
852         .llseek  = seq_lseek,
853         .release = seq_release_private,
854 };
855
856 int __init raw_proc_init(void)
857 {
858         if (!proc_net_fops_create("raw", S_IRUGO, &raw_seq_fops))
859                 return -ENOMEM;
860         return 0;
861 }
862
863 void __init raw_proc_exit(void)
864 {
865         proc_net_remove("raw");
866 }
867 #endif /* CONFIG_PROC_FS */