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