VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[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         err = -EPERM;
342         if (!vx_check(0, VX_ADMIN) && !capable(CAP_NET_RAW)
343                 && (!raw_addr_in_list(0, 0, iph->saddr, sk->sk_nx_info)))
344                 goto error;
345
346         err = NF_HOOK(PF_INET, NF_IP_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
347                       dst_output);
348         if (err > 0)
349                 err = inet->recverr ? net_xmit_errno(err) : 0;
350         if (err)
351                 goto error;
352 out:
353         return 0;
354
355 error_fault:
356         err = -EFAULT;
357         kfree_skb(skb);
358 error:
359         IP_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
360         return err; 
361 }
362
363 static int raw_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
364                        size_t len)
365 {
366         struct inet_opt *inet = inet_sk(sk);
367         struct ipcm_cookie ipc;
368         struct rtable *rt = NULL;
369         int free = 0;
370         u32 daddr;
371         u32 saddr;
372         u8  tos;
373         int err;
374
375         err = -EMSGSIZE;
376         if (len < 0 || len > 0xFFFF)
377                 goto out;
378
379         /*
380          *      Check the flags.
381          */
382
383         err = -EOPNOTSUPP;
384         if (msg->msg_flags & MSG_OOB)   /* Mirror BSD error message */
385                 goto out;               /* compatibility */
386                          
387         /*
388          *      Get and verify the address. 
389          */
390
391         if (msg->msg_namelen) {
392                 struct sockaddr_in *usin = (struct sockaddr_in*)msg->msg_name;
393                 err = -EINVAL;
394                 if (msg->msg_namelen < sizeof(*usin))
395                         goto out;
396                 if (usin->sin_family != AF_INET) {
397                         static int complained;
398                         if (!complained++)
399                                 printk(KERN_INFO "%s forgot to set AF_INET in "
400                                                  "raw sendmsg. Fix it!\n",
401                                                  current->comm);
402                         err = -EINVAL;
403                         if (usin->sin_family)
404                                 goto out;
405                 }
406                 daddr = usin->sin_addr.s_addr;
407                 /* ANK: I did not forget to get protocol from port field.
408                  * I just do not know, who uses this weirdness.
409                  * IP_HDRINCL is much more convenient.
410                  */
411         } else {
412                 err = -EDESTADDRREQ;
413                 if (sk->sk_state != TCP_ESTABLISHED) 
414                         goto out;
415                 daddr = inet->daddr;
416         }
417
418         ipc.addr = inet->saddr;
419         ipc.opt = NULL;
420         ipc.oif = sk->sk_bound_dev_if;
421
422         if (msg->msg_controllen) {
423                 err = ip_cmsg_send(msg, &ipc);
424                 if (err)
425                         goto out;
426                 if (ipc.opt)
427                         free = 1;
428         }
429
430         saddr = ipc.addr;
431         ipc.addr = daddr;
432
433         if (!ipc.opt)
434                 ipc.opt = inet->opt;
435
436         if (ipc.opt) {
437                 err = -EINVAL;
438                 /* Linux does not mangle headers on raw sockets,
439                  * so that IP options + IP_HDRINCL is non-sense.
440                  */
441                 if (inet->hdrincl)
442                         goto done;
443                 if (ipc.opt->srr) {
444                         if (!daddr)
445                                 goto done;
446                         daddr = ipc.opt->faddr;
447                 }
448         }
449         tos = RT_TOS(inet->tos) | sk->sk_localroute;
450         if (msg->msg_flags & MSG_DONTROUTE)
451                 tos |= RTO_ONLINK;
452
453         if (MULTICAST(daddr)) {
454                 if (!ipc.oif)
455                         ipc.oif = inet->mc_index;
456                 if (!saddr)
457                         saddr = inet->mc_addr;
458         }
459
460         {
461                 struct flowi fl = { .oif = ipc.oif,
462                                     .nl_u = { .ip4_u =
463                                               { .daddr = daddr,
464                                                 .saddr = saddr,
465                                                 .tos = tos } },
466                                     .proto = inet->hdrincl ? IPPROTO_RAW :
467                                                              sk->sk_protocol,
468                                   };
469                 
470                 if (sk->sk_nx_info) {
471                         err = ip_find_src(sk->sk_nx_info, &rt, &fl);
472
473                         if (err)
474                                 goto done;
475                 }
476                 err = ip_route_output_flow(&rt, &fl, sk, !(msg->msg_flags&MSG_DONTWAIT));
477         }
478         if (err)
479                 goto done;
480
481         err = -EACCES;
482         if (rt->rt_flags & RTCF_BROADCAST && !sock_flag(sk, SOCK_BROADCAST))
483                 goto done;
484
485         if (msg->msg_flags & MSG_CONFIRM)
486                 goto do_confirm;
487 back_from_confirm:
488
489         if (inet->hdrincl)
490                 err = raw_send_hdrinc(sk, msg->msg_iov, len, 
491                                         rt, msg->msg_flags);
492         
493          else {
494                 if (!ipc.addr)
495                         ipc.addr = rt->rt_dst;
496                 lock_sock(sk);
497                 err = ip_append_data(sk, ip_generic_getfrag, msg->msg_iov, len, 0,
498                                         &ipc, rt, msg->msg_flags);
499                 if (err)
500                         ip_flush_pending_frames(sk);
501                 else if (!(msg->msg_flags & MSG_MORE))
502                         err = ip_push_pending_frames(sk);
503                 release_sock(sk);
504         }
505 done:
506         if (free)
507                 kfree(ipc.opt);
508         ip_rt_put(rt);
509
510 out:    return err < 0 ? err : len;
511
512 do_confirm:
513         dst_confirm(&rt->u.dst);
514         if (!(msg->msg_flags & MSG_PROBE) || len)
515                 goto back_from_confirm;
516         err = 0;
517         goto done;
518 }
519
520 static void raw_close(struct sock *sk, long timeout)
521 {
522         /*
523          * Raw sockets may have direct kernel refereneces. Kill them.
524          */
525         ip_ra_control(sk, 0, NULL);
526
527         sk_common_release(sk);
528 }
529
530 /* This gets rid of all the nasties in af_inet. -DaveM */
531 static int raw_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
532 {
533         struct inet_opt *inet = inet_sk(sk);
534         struct sockaddr_in *addr = (struct sockaddr_in *) uaddr;
535         int ret = -EINVAL;
536         int chk_addr_ret;
537
538         if (sk->sk_state != TCP_CLOSE || addr_len < sizeof(struct sockaddr_in))
539                 goto out;
540         chk_addr_ret = inet_addr_type(addr->sin_addr.s_addr);
541         ret = -EADDRNOTAVAIL;
542         if (addr->sin_addr.s_addr && chk_addr_ret != RTN_LOCAL &&
543             chk_addr_ret != RTN_MULTICAST && chk_addr_ret != RTN_BROADCAST)
544                 goto out;
545         inet->rcv_saddr = inet->saddr = addr->sin_addr.s_addr;
546         if (chk_addr_ret == RTN_MULTICAST || chk_addr_ret == RTN_BROADCAST)
547                 inet->saddr = 0;  /* Use device */
548         sk_dst_reset(sk);
549         ret = 0;
550 out:    return ret;
551 }
552
553 /*
554  *      This should be easy, if there is something there
555  *      we return it, otherwise we block.
556  */
557
558 int raw_recvmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
559                 size_t len, int noblock, int flags, int *addr_len)
560 {
561         struct inet_opt *inet = inet_sk(sk);
562         size_t copied = 0;
563         int err = -EOPNOTSUPP;
564         struct sockaddr_in *sin = (struct sockaddr_in *)msg->msg_name;
565         struct sk_buff *skb;
566
567         if (flags & MSG_OOB)
568                 goto out;
569
570         if (addr_len)
571                 *addr_len = sizeof(*sin);
572
573         if (flags & MSG_ERRQUEUE) {
574                 err = ip_recv_error(sk, msg, len);
575                 goto out;
576         }
577
578         skb = skb_recv_datagram(sk, flags, noblock, &err);
579         if (!skb)
580                 goto out;
581
582         copied = skb->len;
583         if (len < copied) {
584                 msg->msg_flags |= MSG_TRUNC;
585                 copied = len;
586         }
587
588         err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
589         if (err)
590                 goto done;
591
592         sock_recv_timestamp(msg, sk, skb);
593
594         /* Copy the address. */
595         if (sin) {
596                 sin->sin_family = AF_INET;
597                 sin->sin_addr.s_addr = skb->nh.iph->saddr;
598                 memset(&sin->sin_zero, 0, sizeof(sin->sin_zero));
599         }
600         if (inet->cmsg_flags)
601                 ip_cmsg_recv(msg, skb);
602         if (flags & MSG_TRUNC)
603                 copied = skb->len;
604 done:
605         skb_free_datagram(sk, skb);
606 out:    return err ? err : copied;
607 }
608
609 static int raw_init(struct sock *sk)
610 {
611         struct raw_opt *tp = raw4_sk(sk);
612         if (inet_sk(sk)->num == IPPROTO_ICMP)
613                 memset(&tp->filter, 0, sizeof(tp->filter));
614         return 0;
615 }
616
617 static int raw_seticmpfilter(struct sock *sk, char __user *optval, int optlen)
618 {
619         if (optlen > sizeof(struct icmp_filter))
620                 optlen = sizeof(struct icmp_filter);
621         if (copy_from_user(&raw4_sk(sk)->filter, optval, optlen))
622                 return -EFAULT;
623         return 0;
624 }
625
626 static int raw_geticmpfilter(struct sock *sk, char __user *optval, int __user *optlen)
627 {
628         int len, ret = -EFAULT;
629
630         if (get_user(len, optlen))
631                 goto out;
632         ret = -EINVAL;
633         if (len < 0)
634                 goto out;
635         if (len > sizeof(struct icmp_filter))
636                 len = sizeof(struct icmp_filter);
637         ret = -EFAULT;
638         if (put_user(len, optlen) ||
639             copy_to_user(optval, &raw4_sk(sk)->filter, len))
640                 goto out;
641         ret = 0;
642 out:    return ret;
643 }
644
645 static int raw_setsockopt(struct sock *sk, int level, int optname, 
646                           char __user *optval, int optlen)
647 {
648         if (level != SOL_RAW)
649                 return ip_setsockopt(sk, level, optname, optval, optlen);
650
651         if (optname == ICMP_FILTER) {
652                 if (inet_sk(sk)->num != IPPROTO_ICMP)
653                         return -EOPNOTSUPP;
654                 else
655                         return raw_seticmpfilter(sk, optval, optlen);
656         }
657         return -ENOPROTOOPT;
658 }
659
660 static int raw_getsockopt(struct sock *sk, int level, int optname, 
661                           char __user *optval, int __user *optlen)
662 {
663         if (level != SOL_RAW)
664                 return ip_getsockopt(sk, level, optname, optval, optlen);
665
666         if (optname == ICMP_FILTER) {
667                 if (inet_sk(sk)->num != IPPROTO_ICMP)
668                         return -EOPNOTSUPP;
669                 else
670                         return raw_geticmpfilter(sk, optval, optlen);
671         }
672         return -ENOPROTOOPT;
673 }
674
675 static int raw_ioctl(struct sock *sk, int cmd, unsigned long arg)
676 {
677         switch (cmd) {
678                 case SIOCOUTQ: {
679                         int amount = atomic_read(&sk->sk_wmem_alloc);
680                         return put_user(amount, (int __user *)arg);
681                 }
682                 case SIOCINQ: {
683                         struct sk_buff *skb;
684                         int amount = 0;
685
686                         spin_lock_irq(&sk->sk_receive_queue.lock);
687                         skb = skb_peek(&sk->sk_receive_queue);
688                         if (skb != NULL)
689                                 amount = skb->len;
690                         spin_unlock_irq(&sk->sk_receive_queue.lock);
691                         return put_user(amount, (int __user *)arg);
692                 }
693
694                 default:
695 #ifdef CONFIG_IP_MROUTE
696                         return ipmr_ioctl(sk, cmd, (void __user *)arg);
697 #else
698                         return -ENOIOCTLCMD;
699 #endif
700         }
701 }
702
703 struct proto raw_prot = {
704         .name =         "RAW",
705         .close =        raw_close,
706         .connect =      ip4_datagram_connect,
707         .disconnect =   udp_disconnect,
708         .ioctl =        raw_ioctl,
709         .init =         raw_init,
710         .setsockopt =   raw_setsockopt,
711         .getsockopt =   raw_getsockopt,
712         .sendmsg =      raw_sendmsg,
713         .recvmsg =      raw_recvmsg,
714         .bind =         raw_bind,
715         .backlog_rcv =  raw_rcv_skb,
716         .hash =         raw_v4_hash,
717         .unhash =       raw_v4_unhash,
718 };
719
720 #ifdef CONFIG_PROC_FS
721 struct raw_iter_state {
722         int bucket;
723 };
724
725 #define raw_seq_private(seq) ((struct raw_iter_state *)(seq)->private)
726
727 static struct sock *raw_get_first(struct seq_file *seq)
728 {
729         struct sock *sk;
730         struct raw_iter_state* state = raw_seq_private(seq);
731
732         for (state->bucket = 0; state->bucket < RAWV4_HTABLE_SIZE; ++state->bucket) {
733                 struct hlist_node *node;
734
735                 sk_for_each(sk, node, &raw_v4_htable[state->bucket])
736                         if (sk->sk_family == PF_INET &&
737                                 vx_check(sk->sk_xid, VX_WATCH|VX_IDENT))
738                                 goto found;
739         }
740         sk = NULL;
741 found:
742         return sk;
743 }
744
745 static struct sock *raw_get_next(struct seq_file *seq, struct sock *sk)
746 {
747         struct raw_iter_state* state = raw_seq_private(seq);
748
749         do {
750                 sk = sk_next(sk);
751 try_again:
752                 ;
753         } while (sk && (sk->sk_family != PF_INET ||
754                 !vx_check(sk->sk_xid, VX_WATCH|VX_IDENT)));
755
756         if (!sk && ++state->bucket < RAWV4_HTABLE_SIZE) {
757                 sk = sk_head(&raw_v4_htable[state->bucket]);
758                 goto try_again;
759         }
760         return sk;
761 }
762
763 static struct sock *raw_get_idx(struct seq_file *seq, loff_t pos)
764 {
765         struct sock *sk = raw_get_first(seq);
766
767         if (sk)
768                 while (pos && (sk = raw_get_next(seq, sk)) != NULL)
769                         --pos;
770         return pos ? NULL : sk;
771 }
772
773 static void *raw_seq_start(struct seq_file *seq, loff_t *pos)
774 {
775         read_lock(&raw_v4_lock);
776         return *pos ? raw_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
777 }
778
779 static void *raw_seq_next(struct seq_file *seq, void *v, loff_t *pos)
780 {
781         struct sock *sk;
782
783         if (v == SEQ_START_TOKEN)
784                 sk = raw_get_first(seq);
785         else
786                 sk = raw_get_next(seq, v);
787         ++*pos;
788         return sk;
789 }
790
791 static void raw_seq_stop(struct seq_file *seq, void *v)
792 {
793         read_unlock(&raw_v4_lock);
794 }
795
796 static __inline__ char *get_raw_sock(struct sock *sp, char *tmpbuf, int i)
797 {
798         struct inet_opt *inet = inet_sk(sp);
799         unsigned int dest = inet->daddr,
800                      src = inet->rcv_saddr;
801         __u16 destp = 0,
802               srcp  = inet->num;
803
804         sprintf(tmpbuf, "%4d: %08X:%04X %08X:%04X"
805                 " %02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p",
806                 i, src, srcp, dest, destp, sp->sk_state, 
807                 atomic_read(&sp->sk_wmem_alloc),
808                 atomic_read(&sp->sk_rmem_alloc),
809                 0, 0L, 0, sock_i_uid(sp), 0, sock_i_ino(sp),
810                 atomic_read(&sp->sk_refcnt), sp);
811         return tmpbuf;
812 }
813
814 static int raw_seq_show(struct seq_file *seq, void *v)
815 {
816         char tmpbuf[129];
817
818         if (v == SEQ_START_TOKEN)
819                 seq_printf(seq, "%-127s\n",
820                                "  sl  local_address rem_address   st tx_queue "
821                                "rx_queue tr tm->when retrnsmt   uid  timeout "
822                                "inode");
823         else {
824                 struct raw_iter_state *state = raw_seq_private(seq);
825
826                 seq_printf(seq, "%-127s\n",
827                            get_raw_sock(v, tmpbuf, state->bucket));
828         }
829         return 0;
830 }
831
832 static struct seq_operations raw_seq_ops = {
833         .start = raw_seq_start,
834         .next  = raw_seq_next,
835         .stop  = raw_seq_stop,
836         .show  = raw_seq_show,
837 };
838
839 static int raw_seq_open(struct inode *inode, struct file *file)
840 {
841         struct seq_file *seq;
842         int rc = -ENOMEM;
843         struct raw_iter_state *s = kmalloc(sizeof(*s), GFP_KERNEL);
844
845         if (!s)
846                 goto out;
847         rc = seq_open(file, &raw_seq_ops);
848         if (rc)
849                 goto out_kfree;
850
851         seq = file->private_data;
852         seq->private = s;
853         memset(s, 0, sizeof(*s));
854 out:
855         return rc;
856 out_kfree:
857         kfree(s);
858         goto out;
859 }
860
861 static struct file_operations raw_seq_fops = {
862         .owner   = THIS_MODULE,
863         .open    = raw_seq_open,
864         .read    = seq_read,
865         .llseek  = seq_lseek,
866         .release = seq_release_private,
867 };
868
869 int __init raw_proc_init(void)
870 {
871         if (!proc_net_fops_create("raw", S_IRUGO, &raw_seq_fops))
872                 return -ENOMEM;
873         return 0;
874 }
875
876 void __init raw_proc_exit(void)
877 {
878         proc_net_remove("raw");
879 }
880 #endif /* CONFIG_PROC_FS */