blob: ecca8aae3c4b28aaf4bb2bc60e89c23c781fe3ad [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * RAW sockets for IPv6
3 * Linux INET6 implementation
4 *
5 * Authors:
6 * Pedro Roque <roque@di.fc.ul.pt>
7 *
8 * Adapted from linux/net/ipv4/raw.c
9 *
10 * $Id: raw.c,v 1.51 2002/02/01 22:01:04 davem Exp $
11 *
12 * Fixes:
13 * Hideaki YOSHIFUJI : sin6_scope_id support
14 * YOSHIFUJI,H.@USAGI : raw checksum (RFC2292(bis) compliance)
15 * Kazunori MIYAZAWA @USAGI: change process style to use ip6_append_data
16 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
23#include <linux/errno.h>
24#include <linux/types.h>
25#include <linux/socket.h>
26#include <linux/sockios.h>
27#include <linux/sched.h>
28#include <linux/net.h>
29#include <linux/in6.h>
30#include <linux/netdevice.h>
31#include <linux/if_arp.h>
32#include <linux/icmpv6.h>
33#include <linux/netfilter.h>
34#include <linux/netfilter_ipv6.h>
Herbert Xu3305b802005-12-13 23:16:37 -080035#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
37#include <asm/ioctls.h>
38
39#include <net/ip.h>
40#include <net/sock.h>
41#include <net/snmp.h>
42
43#include <net/ipv6.h>
44#include <net/ndisc.h>
45#include <net/protocol.h>
46#include <net/ip6_route.h>
47#include <net/ip6_checksum.h>
48#include <net/addrconf.h>
49#include <net/transp_v6.h>
50#include <net/udp.h>
51#include <net/inet_common.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070052#include <net/tcp_states.h>
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -070053#ifdef CONFIG_IPV6_MIP6
54#include <net/mip6.h>
55#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
57#include <net/rawv6.h>
58#include <net/xfrm.h>
59
60#include <linux/proc_fs.h>
61#include <linux/seq_file.h>
62
63struct hlist_head raw_v6_htable[RAWV6_HTABLE_SIZE];
64DEFINE_RWLOCK(raw_v6_lock);
65
66static void raw_v6_hash(struct sock *sk)
67{
68 struct hlist_head *list = &raw_v6_htable[inet_sk(sk)->num &
69 (RAWV6_HTABLE_SIZE - 1)];
70
71 write_lock_bh(&raw_v6_lock);
72 sk_add_node(sk, list);
73 sock_prot_inc_use(sk->sk_prot);
74 write_unlock_bh(&raw_v6_lock);
75}
76
77static void raw_v6_unhash(struct sock *sk)
78{
79 write_lock_bh(&raw_v6_lock);
80 if (sk_del_node_init(sk))
81 sock_prot_dec_use(sk->sk_prot);
82 write_unlock_bh(&raw_v6_lock);
83}
84
85
86/* Grumble... icmp and ip_input want to get at this... */
87struct sock *__raw_v6_lookup(struct sock *sk, unsigned short num,
Andrew McDonald0bd1b592005-08-09 19:44:42 -070088 struct in6_addr *loc_addr, struct in6_addr *rmt_addr,
89 int dif)
Linus Torvalds1da177e2005-04-16 15:20:36 -070090{
91 struct hlist_node *node;
92 int is_multicast = ipv6_addr_is_multicast(loc_addr);
93
94 sk_for_each_from(sk, node)
95 if (inet_sk(sk)->num == num) {
96 struct ipv6_pinfo *np = inet6_sk(sk);
97
98 if (!ipv6_addr_any(&np->daddr) &&
99 !ipv6_addr_equal(&np->daddr, rmt_addr))
100 continue;
101
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700102 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != dif)
103 continue;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (!ipv6_addr_any(&np->rcv_saddr)) {
106 if (ipv6_addr_equal(&np->rcv_saddr, loc_addr))
107 goto found;
108 if (is_multicast &&
109 inet6_mc_check(sk, loc_addr, rmt_addr))
110 goto found;
111 continue;
112 }
113 goto found;
114 }
115 sk = NULL;
116found:
117 return sk;
118}
119
120/*
121 * 0 - deliver
122 * 1 - block
123 */
124static __inline__ int icmpv6_filter(struct sock *sk, struct sk_buff *skb)
125{
126 struct icmp6hdr *icmph;
127 struct raw6_sock *rp = raw6_sk(sk);
128
129 if (pskb_may_pull(skb, sizeof(struct icmp6hdr))) {
130 __u32 *data = &rp->filter.data[0];
131 int bit_nr;
132
133 icmph = (struct icmp6hdr *) skb->data;
134 bit_nr = icmph->icmp6_type;
135
136 return (data[bit_nr >> 5] & (1 << (bit_nr & 31))) != 0;
137 }
138 return 0;
139}
140
141/*
142 * demultiplex raw sockets.
143 * (should consider queueing the skb in the sock receive_queue
144 * without calling rawv6.c)
145 *
146 * Caller owns SKB so we must make clones.
147 */
Patrick McHardyd13964f2005-08-09 19:45:02 -0700148int ipv6_raw_deliver(struct sk_buff *skb, int nexthdr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
150 struct in6_addr *saddr;
151 struct in6_addr *daddr;
152 struct sock *sk;
Patrick McHardyd13964f2005-08-09 19:45:02 -0700153 int delivered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 __u8 hash;
155
156 saddr = &skb->nh.ipv6h->saddr;
157 daddr = saddr + 1;
158
159 hash = nexthdr & (MAX_INET_PROTOS - 1);
160
161 read_lock(&raw_v6_lock);
162 sk = sk_head(&raw_v6_htable[hash]);
163
164 /*
165 * The first socket found will be delivered after
166 * delivery to transport protocols.
167 */
168
169 if (sk == NULL)
170 goto out;
171
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700172 sk = __raw_v6_lookup(sk, nexthdr, daddr, saddr, IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 while (sk) {
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700175 int filtered;
176
Patrick McHardyd13964f2005-08-09 19:45:02 -0700177 delivered = 1;
Masahide NAKAMURA7be96f72006-08-23 20:35:31 -0700178 switch (nexthdr) {
179 case IPPROTO_ICMPV6:
180 filtered = icmpv6_filter(sk, skb);
181 break;
182#ifdef CONFIG_IPV6_MIP6
183 case IPPROTO_MH:
184 /* XXX: To validate MH only once for each packet,
185 * this is placed here. It should be after checking
186 * xfrm policy, however it doesn't. The checking xfrm
187 * policy is placed in rawv6_rcv() because it is
188 * required for each socket.
189 */
190 filtered = mip6_mh_filter(sk, skb);
191 break;
192#endif
193 default:
194 filtered = 0;
195 break;
196 }
197
198 if (filtered < 0)
199 break;
200 if (filtered == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 struct sk_buff *clone = skb_clone(skb, GFP_ATOMIC);
202
203 /* Not releasing hash table! */
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800204 if (clone) {
205 nf_reset(clone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 rawv6_rcv(sk, clone);
Yasuyuki Kozakai9fb9cbb2005-11-09 16:38:16 -0800207 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 }
Andrew McDonald0bd1b592005-08-09 19:44:42 -0700209 sk = __raw_v6_lookup(sk_next(sk), nexthdr, daddr, saddr,
YOSHIFUJI Hideaki2dac4b92005-09-01 17:44:49 -0700210 IP6CB(skb)->iif);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212out:
213 read_unlock(&raw_v6_lock);
Patrick McHardyd13964f2005-08-09 19:45:02 -0700214 return delivered;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
216
217/* This cleans up af_inet6 a bit. -DaveM */
218static int rawv6_bind(struct sock *sk, struct sockaddr *uaddr, int addr_len)
219{
220 struct inet_sock *inet = inet_sk(sk);
221 struct ipv6_pinfo *np = inet6_sk(sk);
222 struct sockaddr_in6 *addr = (struct sockaddr_in6 *) uaddr;
223 __u32 v4addr = 0;
224 int addr_type;
225 int err;
226
227 if (addr_len < SIN6_LEN_RFC2133)
228 return -EINVAL;
229 addr_type = ipv6_addr_type(&addr->sin6_addr);
230
231 /* Raw sockets are IPv6 only */
232 if (addr_type == IPV6_ADDR_MAPPED)
233 return(-EADDRNOTAVAIL);
234
235 lock_sock(sk);
236
237 err = -EINVAL;
238 if (sk->sk_state != TCP_CLOSE)
239 goto out;
240
241 /* Check if the address belongs to the host. */
242 if (addr_type != IPV6_ADDR_ANY) {
243 struct net_device *dev = NULL;
244
245 if (addr_type & IPV6_ADDR_LINKLOCAL) {
246 if (addr_len >= sizeof(struct sockaddr_in6) &&
247 addr->sin6_scope_id) {
248 /* Override any existing binding, if another
249 * one is supplied by user.
250 */
251 sk->sk_bound_dev_if = addr->sin6_scope_id;
252 }
253
254 /* Binding to link-local address requires an interface */
255 if (!sk->sk_bound_dev_if)
256 goto out;
257
258 dev = dev_get_by_index(sk->sk_bound_dev_if);
259 if (!dev) {
260 err = -ENODEV;
261 goto out;
262 }
263 }
264
265 /* ipv4 addr of the socket is invalid. Only the
266 * unspecified and mapped address have a v4 equivalent.
267 */
268 v4addr = LOOPBACK4_IPV6;
269 if (!(addr_type & IPV6_ADDR_MULTICAST)) {
270 err = -EADDRNOTAVAIL;
271 if (!ipv6_chk_addr(&addr->sin6_addr, dev, 0)) {
272 if (dev)
273 dev_put(dev);
274 goto out;
275 }
276 }
277 if (dev)
278 dev_put(dev);
279 }
280
281 inet->rcv_saddr = inet->saddr = v4addr;
282 ipv6_addr_copy(&np->rcv_saddr, &addr->sin6_addr);
283 if (!(addr_type & IPV6_ADDR_MULTICAST))
284 ipv6_addr_copy(&np->saddr, &addr->sin6_addr);
285 err = 0;
286out:
287 release_sock(sk);
288 return err;
289}
290
291void rawv6_err(struct sock *sk, struct sk_buff *skb,
292 struct inet6_skb_parm *opt,
293 int type, int code, int offset, u32 info)
294{
295 struct inet_sock *inet = inet_sk(sk);
296 struct ipv6_pinfo *np = inet6_sk(sk);
297 int err;
298 int harderr;
299
300 /* Report error on raw socket, if:
301 1. User requested recverr.
302 2. Socket is connected (otherwise the error indication
303 is useless without recverr and error is hard.
304 */
305 if (!np->recverr && sk->sk_state != TCP_ESTABLISHED)
306 return;
307
308 harderr = icmpv6_err_convert(type, code, &err);
309 if (type == ICMPV6_PKT_TOOBIG)
310 harderr = (np->pmtudisc == IPV6_PMTUDISC_DO);
311
312 if (np->recverr) {
313 u8 *payload = skb->data;
314 if (!inet->hdrincl)
315 payload += offset;
316 ipv6_icmp_error(sk, skb, err, 0, ntohl(info), payload);
317 }
318
319 if (np->recverr || harderr) {
320 sk->sk_err = err;
321 sk->sk_error_report(sk);
322 }
323}
324
325static inline int rawv6_rcv_skb(struct sock * sk, struct sk_buff * skb)
326{
327 if ((raw6_sk(sk)->checksum || sk->sk_filter) &&
Herbert Xufb286bb2005-11-10 13:01:24 -0800328 skb_checksum_complete(skb)) {
329 /* FIXME: increment a raw6 drops counter here */
330 kfree_skb(skb);
331 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 }
333
334 /* Charge it to the socket. */
335 if (sock_queue_rcv_skb(sk,skb)<0) {
336 /* FIXME: increment a raw6 drops counter here */
337 kfree_skb(skb);
338 return 0;
339 }
340
341 return 0;
342}
343
344/*
345 * This is next to useless...
346 * if we demultiplex in network layer we don't need the extra call
347 * just to queue the skb...
348 * maybe we could have the network decide upon a hint if it
349 * should call raw_rcv for demultiplexing
350 */
351int rawv6_rcv(struct sock *sk, struct sk_buff *skb)
352{
353 struct inet_sock *inet = inet_sk(sk);
354 struct raw6_sock *rp = raw6_sk(sk);
355
356 if (!xfrm6_policy_check(sk, XFRM_POLICY_IN, skb)) {
357 kfree_skb(skb);
358 return NET_RX_DROP;
359 }
360
361 if (!rp->checksum)
362 skb->ip_summed = CHECKSUM_UNNECESSARY;
363
Patrick McHardy84fa7932006-08-29 16:44:56 -0700364 if (skb->ip_summed == CHECKSUM_COMPLETE) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800365 skb_postpull_rcsum(skb, skb->nh.raw,
366 skb->h.raw - skb->nh.raw);
367 if (!csum_ipv6_magic(&skb->nh.ipv6h->saddr,
368 &skb->nh.ipv6h->daddr,
369 skb->len, inet->num, skb->csum))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 skb->ip_summed = CHECKSUM_UNNECESSARY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
Herbert Xufb286bb2005-11-10 13:01:24 -0800372 if (skb->ip_summed != CHECKSUM_UNNECESSARY)
373 skb->csum = ~csum_ipv6_magic(&skb->nh.ipv6h->saddr,
374 &skb->nh.ipv6h->daddr,
375 skb->len, inet->num, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if (inet->hdrincl) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800378 if (skb_checksum_complete(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 /* FIXME: increment a raw6 drops counter here */
380 kfree_skb(skb);
381 return 0;
382 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 }
384
385 rawv6_rcv_skb(sk, skb);
386 return 0;
387}
388
389
390/*
391 * This should be easy, if there is something there
392 * we return it, otherwise we block.
393 */
394
395static int rawv6_recvmsg(struct kiocb *iocb, struct sock *sk,
396 struct msghdr *msg, size_t len,
397 int noblock, int flags, int *addr_len)
398{
399 struct ipv6_pinfo *np = inet6_sk(sk);
400 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)msg->msg_name;
401 struct sk_buff *skb;
402 size_t copied;
403 int err;
404
405 if (flags & MSG_OOB)
406 return -EOPNOTSUPP;
407
408 if (addr_len)
409 *addr_len=sizeof(*sin6);
410
411 if (flags & MSG_ERRQUEUE)
412 return ipv6_recv_error(sk, msg, len);
413
414 skb = skb_recv_datagram(sk, flags, noblock, &err);
415 if (!skb)
416 goto out;
417
418 copied = skb->len;
419 if (copied > len) {
420 copied = len;
421 msg->msg_flags |= MSG_TRUNC;
422 }
423
424 if (skb->ip_summed==CHECKSUM_UNNECESSARY) {
425 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
426 } else if (msg->msg_flags&MSG_TRUNC) {
Herbert Xufb286bb2005-11-10 13:01:24 -0800427 if (__skb_checksum_complete(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 goto csum_copy_err;
429 err = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
430 } else {
431 err = skb_copy_and_csum_datagram_iovec(skb, 0, msg->msg_iov);
432 if (err == -EINVAL)
433 goto csum_copy_err;
434 }
435 if (err)
436 goto out_free;
437
438 /* Copy the address. */
439 if (sin6) {
440 sin6->sin6_family = AF_INET6;
Tetsuo Handaf59fc7f2006-07-25 17:05:35 -0700441 sin6->sin6_port = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 ipv6_addr_copy(&sin6->sin6_addr, &skb->nh.ipv6h->saddr);
443 sin6->sin6_flowinfo = 0;
444 sin6->sin6_scope_id = 0;
445 if (ipv6_addr_type(&sin6->sin6_addr) & IPV6_ADDR_LINKLOCAL)
446 sin6->sin6_scope_id = IP6CB(skb)->iif;
447 }
448
449 sock_recv_timestamp(msg, sk, skb);
450
451 if (np->rxopt.all)
452 datagram_recv_ctl(sk, msg, skb);
453
454 err = copied;
455 if (flags & MSG_TRUNC)
456 err = skb->len;
457
458out_free:
459 skb_free_datagram(sk, skb);
460out:
461 return err;
462
463csum_copy_err:
Herbert Xu3305b802005-12-13 23:16:37 -0800464 skb_kill_datagram(sk, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 /* Error for blocking case is chosen to masquerade
467 as some normal condition.
468 */
469 err = (flags&MSG_DONTWAIT) ? -EAGAIN : -EHOSTUNREACH;
470 /* FIXME: increment a raw6 drops counter here */
Herbert Xu3305b802005-12-13 23:16:37 -0800471 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473
474static int rawv6_push_pending_frames(struct sock *sk, struct flowi *fl,
Herbert Xu357b40a2005-04-19 22:30:14 -0700475 struct raw6_sock *rp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 struct sk_buff *skb;
478 int err = 0;
Herbert Xu357b40a2005-04-19 22:30:14 -0700479 int offset;
480 int len;
Herbert Xu679a8732005-05-03 14:24:36 -0700481 int total_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 u32 tmp_csum;
Herbert Xu357b40a2005-04-19 22:30:14 -0700483 u16 csum;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
485 if (!rp->checksum)
486 goto send;
487
488 if ((skb = skb_peek(&sk->sk_write_queue)) == NULL)
489 goto out;
490
Herbert Xu357b40a2005-04-19 22:30:14 -0700491 offset = rp->offset;
Herbert Xu679a8732005-05-03 14:24:36 -0700492 total_len = inet_sk(sk)->cork.length - (skb->nh.raw - skb->data);
493 if (offset >= total_len - 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 err = -EINVAL;
Herbert Xu357b40a2005-04-19 22:30:14 -0700495 ip6_flush_pending_frames(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 goto out;
497 }
498
499 /* should be check HW csum miyazawa */
500 if (skb_queue_len(&sk->sk_write_queue) == 1) {
501 /*
502 * Only one fragment on the socket.
503 */
504 tmp_csum = skb->csum;
505 } else {
Herbert Xu357b40a2005-04-19 22:30:14 -0700506 struct sk_buff *csum_skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 tmp_csum = 0;
508
509 skb_queue_walk(&sk->sk_write_queue, skb) {
510 tmp_csum = csum_add(tmp_csum, skb->csum);
Herbert Xu357b40a2005-04-19 22:30:14 -0700511
512 if (csum_skb)
513 continue;
514
515 len = skb->len - (skb->h.raw - skb->data);
516 if (offset >= len) {
517 offset -= len;
518 continue;
519 }
520
521 csum_skb = skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 }
Herbert Xu357b40a2005-04-19 22:30:14 -0700523
524 skb = csum_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
Herbert Xu357b40a2005-04-19 22:30:14 -0700527 offset += skb->h.raw - skb->data;
528 if (skb_copy_bits(skb, offset, &csum, 2))
529 BUG();
530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 /* in case cksum was not initialized */
Herbert Xu357b40a2005-04-19 22:30:14 -0700532 if (unlikely(csum))
533 tmp_csum = csum_sub(tmp_csum, csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Herbert Xu357b40a2005-04-19 22:30:14 -0700535 tmp_csum = csum_ipv6_magic(&fl->fl6_src,
536 &fl->fl6_dst,
Herbert Xu679a8732005-05-03 14:24:36 -0700537 total_len, fl->proto, tmp_csum);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
Herbert Xu357b40a2005-04-19 22:30:14 -0700539 if (tmp_csum == 0)
540 tmp_csum = -1;
541
542 csum = tmp_csum;
543 if (skb_store_bits(skb, offset, &csum, 2))
544 BUG();
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546send:
547 err = ip6_push_pending_frames(sk);
548out:
549 return err;
550}
551
552static int rawv6_send_hdrinc(struct sock *sk, void *from, int length,
553 struct flowi *fl, struct rt6_info *rt,
554 unsigned int flags)
555{
Herbert Xu3320da82005-04-19 22:32:22 -0700556 struct ipv6_pinfo *np = inet6_sk(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 struct ipv6hdr *iph;
558 struct sk_buff *skb;
559 unsigned int hh_len;
560 int err;
561
562 if (length > rt->u.dst.dev->mtu) {
563 ipv6_local_error(sk, EMSGSIZE, fl, rt->u.dst.dev->mtu);
564 return -EMSGSIZE;
565 }
566 if (flags&MSG_PROBE)
567 goto out;
568
569 hh_len = LL_RESERVED_SPACE(rt->u.dst.dev);
570
571 skb = sock_alloc_send_skb(sk, length+hh_len+15,
572 flags&MSG_DONTWAIT, &err);
573 if (skb == NULL)
574 goto error;
575 skb_reserve(skb, hh_len);
576
577 skb->priority = sk->sk_priority;
578 skb->dst = dst_clone(&rt->u.dst);
579
580 skb->nh.ipv6h = iph = (struct ipv6hdr *)skb_put(skb, length);
581
582 skb->ip_summed = CHECKSUM_NONE;
583
584 skb->h.raw = skb->nh.raw;
585 err = memcpy_fromiovecend((void *)iph, from, 0, length);
586 if (err)
587 goto error_fault;
588
589 IP6_INC_STATS(IPSTATS_MIB_OUTREQUESTS);
590 err = NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, skb, NULL, rt->u.dst.dev,
591 dst_output);
592 if (err > 0)
Herbert Xu3320da82005-04-19 22:32:22 -0700593 err = np->recverr ? net_xmit_errno(err) : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 if (err)
595 goto error;
596out:
597 return 0;
598
599error_fault:
600 err = -EFAULT;
601 kfree_skb(skb);
602error:
603 IP6_INC_STATS(IPSTATS_MIB_OUTDISCARDS);
604 return err;
605}
606
607static void rawv6_probe_proto_opt(struct flowi *fl, struct msghdr *msg)
608{
609 struct iovec *iov;
610 u8 __user *type = NULL;
611 u8 __user *code = NULL;
612 int probed = 0;
613 int i;
614
615 if (!msg->msg_iov)
616 return;
617
618 for (i = 0; i < msg->msg_iovlen; i++) {
619 iov = &msg->msg_iov[i];
620 if (!iov)
621 continue;
622
623 switch (fl->proto) {
624 case IPPROTO_ICMPV6:
625 /* check if one-byte field is readable or not. */
626 if (iov->iov_base && iov->iov_len < 1)
627 break;
628
629 if (!type) {
630 type = iov->iov_base;
631 /* check if code field is readable or not. */
632 if (iov->iov_len > 1)
633 code = type + 1;
634 } else if (!code)
635 code = iov->iov_base;
636
637 if (type && code) {
638 get_user(fl->fl_icmp_type, type);
Mark J Cox6d1cfe32005-09-19 17:55:30 -0700639 get_user(fl->fl_icmp_code, code);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 probed = 1;
641 }
642 break;
643 default:
644 probed = 1;
645 break;
646 }
647 if (probed)
648 break;
649 }
650}
651
652static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
653 struct msghdr *msg, size_t len)
654{
655 struct ipv6_txoptions opt_space;
656 struct sockaddr_in6 * sin6 = (struct sockaddr_in6 *) msg->msg_name;
657 struct in6_addr *daddr, *final_p = NULL, final;
658 struct inet_sock *inet = inet_sk(sk);
659 struct ipv6_pinfo *np = inet6_sk(sk);
660 struct raw6_sock *rp = raw6_sk(sk);
661 struct ipv6_txoptions *opt = NULL;
662 struct ip6_flowlabel *flowlabel = NULL;
663 struct dst_entry *dst = NULL;
664 struct flowi fl;
665 int addr_len = msg->msg_namelen;
666 int hlimit = -1;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900667 int tclass = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 u16 proto;
669 int err;
670
671 /* Rough check on arithmetic overflow,
672 better check is made in ip6_build_xmit
673 */
674 if (len < 0)
675 return -EMSGSIZE;
676
677 /* Mirror BSD error message compatibility */
678 if (msg->msg_flags & MSG_OOB)
679 return -EOPNOTSUPP;
680
681 /*
682 * Get and verify the address.
683 */
684 memset(&fl, 0, sizeof(fl));
685
686 if (sin6) {
687 if (addr_len < SIN6_LEN_RFC2133)
688 return -EINVAL;
689
690 if (sin6->sin6_family && sin6->sin6_family != AF_INET6)
691 return(-EAFNOSUPPORT);
692
693 /* port is the proto value [0..255] carried in nexthdr */
694 proto = ntohs(sin6->sin6_port);
695
696 if (!proto)
697 proto = inet->num;
698 else if (proto != inet->num)
699 return(-EINVAL);
700
701 if (proto > 255)
702 return(-EINVAL);
703
704 daddr = &sin6->sin6_addr;
705 if (np->sndflow) {
706 fl.fl6_flowlabel = sin6->sin6_flowinfo&IPV6_FLOWINFO_MASK;
707 if (fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) {
708 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
709 if (flowlabel == NULL)
710 return -EINVAL;
711 daddr = &flowlabel->dst;
712 }
713 }
714
715 /*
716 * Otherwise it will be difficult to maintain
717 * sk->sk_dst_cache.
718 */
719 if (sk->sk_state == TCP_ESTABLISHED &&
720 ipv6_addr_equal(daddr, &np->daddr))
721 daddr = &np->daddr;
722
723 if (addr_len >= sizeof(struct sockaddr_in6) &&
724 sin6->sin6_scope_id &&
725 ipv6_addr_type(daddr)&IPV6_ADDR_LINKLOCAL)
726 fl.oif = sin6->sin6_scope_id;
727 } else {
728 if (sk->sk_state != TCP_ESTABLISHED)
729 return -EDESTADDRREQ;
730
731 proto = inet->num;
732 daddr = &np->daddr;
733 fl.fl6_flowlabel = np->flow_label;
734 }
735
736 if (ipv6_addr_any(daddr)) {
737 /*
738 * unspecified destination address
739 * treated as error... is this correct ?
740 */
741 fl6_sock_release(flowlabel);
742 return(-EINVAL);
743 }
744
745 if (fl.oif == 0)
746 fl.oif = sk->sk_bound_dev_if;
747
748 if (msg->msg_controllen) {
749 opt = &opt_space;
750 memset(opt, 0, sizeof(struct ipv6_txoptions));
751 opt->tot_len = sizeof(struct ipv6_txoptions);
752
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900753 err = datagram_send_ctl(msg, &fl, opt, &hlimit, &tclass);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 if (err < 0) {
755 fl6_sock_release(flowlabel);
756 return err;
757 }
758 if ((fl.fl6_flowlabel&IPV6_FLOWLABEL_MASK) && !flowlabel) {
759 flowlabel = fl6_sock_lookup(sk, fl.fl6_flowlabel);
760 if (flowlabel == NULL)
761 return -EINVAL;
762 }
763 if (!(opt->opt_nflen|opt->opt_flen))
764 opt = NULL;
765 }
766 if (opt == NULL)
767 opt = np->opt;
YOSHIFUJI Hideakidf9890c2005-11-20 12:23:18 +0900768 if (flowlabel)
769 opt = fl6_merge_options(&opt_space, flowlabel, opt);
770 opt = ipv6_fixup_options(&opt_space, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 fl.proto = proto;
773 rawv6_probe_proto_opt(&fl, msg);
774
775 ipv6_addr_copy(&fl.fl6_dst, daddr);
776 if (ipv6_addr_any(&fl.fl6_src) && !ipv6_addr_any(&np->saddr))
777 ipv6_addr_copy(&fl.fl6_src, &np->saddr);
778
779 /* merge ip6_build_xmit from ip6_output */
780 if (opt && opt->srcrt) {
781 struct rt0_hdr *rt0 = (struct rt0_hdr *) opt->srcrt;
782 ipv6_addr_copy(&final, &fl.fl6_dst);
783 ipv6_addr_copy(&fl.fl6_dst, rt0->addr);
784 final_p = &final;
785 }
786
787 if (!fl.oif && ipv6_addr_is_multicast(&fl.fl6_dst))
788 fl.oif = np->mcast_oif;
Venkat Yekkiralabeb8d132006-08-04 23:12:42 -0700789 security_sk_classify_flow(sk, &fl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 err = ip6_dst_lookup(sk, &dst, &fl);
792 if (err)
793 goto out;
794 if (final_p)
795 ipv6_addr_copy(&fl.fl6_dst, final_p);
796
Patrick McHardye1044112005-09-08 15:11:55 -0700797 if ((err = xfrm_lookup(&dst, &fl, sk, 0)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 if (hlimit < 0) {
801 if (ipv6_addr_is_multicast(&fl.fl6_dst))
802 hlimit = np->mcast_hops;
803 else
804 hlimit = np->hop_limit;
805 if (hlimit < 0)
806 hlimit = dst_metric(dst, RTAX_HOPLIMIT);
807 if (hlimit < 0)
808 hlimit = ipv6_get_hoplimit(dst->dev);
809 }
810
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900811 if (tclass < 0) {
YOSHIFUJI Hideakie012d512006-09-13 20:01:28 -0700812 tclass = np->tclass;
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900813 if (tclass < 0)
814 tclass = 0;
815 }
816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (msg->msg_flags&MSG_CONFIRM)
818 goto do_confirm;
819
820back_from_confirm:
821 if (inet->hdrincl) {
822 err = rawv6_send_hdrinc(sk, msg->msg_iov, len, &fl, (struct rt6_info*)dst, msg->msg_flags);
823 } else {
824 lock_sock(sk);
YOSHIFUJI Hideaki41a1f8e2005-09-08 10:19:03 +0900825 err = ip6_append_data(sk, ip_generic_getfrag, msg->msg_iov,
826 len, 0, hlimit, tclass, opt, &fl, (struct rt6_info*)dst,
827 msg->msg_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829 if (err)
830 ip6_flush_pending_frames(sk);
831 else if (!(msg->msg_flags & MSG_MORE))
Herbert Xu357b40a2005-04-19 22:30:14 -0700832 err = rawv6_push_pending_frames(sk, &fl, rp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 }
834done:
Nicolas DICHTEL6d3e85e2006-02-13 15:56:13 -0800835 dst_release(dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 release_sock(sk);
837out:
838 fl6_sock_release(flowlabel);
839 return err<0?err:len;
840do_confirm:
841 dst_confirm(dst);
842 if (!(msg->msg_flags & MSG_PROBE) || len)
843 goto back_from_confirm;
844 err = 0;
845 goto done;
846}
847
848static int rawv6_seticmpfilter(struct sock *sk, int level, int optname,
849 char __user *optval, int optlen)
850{
851 switch (optname) {
852 case ICMPV6_FILTER:
853 if (optlen > sizeof(struct icmp6_filter))
854 optlen = sizeof(struct icmp6_filter);
855 if (copy_from_user(&raw6_sk(sk)->filter, optval, optlen))
856 return -EFAULT;
857 return 0;
858 default:
859 return -ENOPROTOOPT;
860 };
861
862 return 0;
863}
864
865static int rawv6_geticmpfilter(struct sock *sk, int level, int optname,
866 char __user *optval, int __user *optlen)
867{
868 int len;
869
870 switch (optname) {
871 case ICMPV6_FILTER:
872 if (get_user(len, optlen))
873 return -EFAULT;
874 if (len < 0)
875 return -EINVAL;
876 if (len > sizeof(struct icmp6_filter))
877 len = sizeof(struct icmp6_filter);
878 if (put_user(len, optlen))
879 return -EFAULT;
880 if (copy_to_user(optval, &raw6_sk(sk)->filter, len))
881 return -EFAULT;
882 return 0;
883 default:
884 return -ENOPROTOOPT;
885 };
886
887 return 0;
888}
889
890
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800891static int do_rawv6_setsockopt(struct sock *sk, int level, int optname,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 char __user *optval, int optlen)
893{
894 struct raw6_sock *rp = raw6_sk(sk);
895 int val;
896
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (get_user(val, (int __user *)optval))
898 return -EFAULT;
899
900 switch (optname) {
901 case IPV6_CHECKSUM:
902 /* You may get strange result with a positive odd offset;
903 RFC2292bis agrees with me. */
904 if (val > 0 && (val&1))
905 return(-EINVAL);
906 if (val < 0) {
907 rp->checksum = 0;
908 } else {
909 rp->checksum = 1;
910 rp->offset = val;
911 }
912
913 return 0;
914 break;
915
916 default:
917 return(-ENOPROTOOPT);
918 }
919}
920
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800921static int rawv6_setsockopt(struct sock *sk, int level, int optname,
922 char __user *optval, int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 switch(level) {
925 case SOL_RAW:
926 break;
927
928 case SOL_ICMPV6:
929 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
930 return -EOPNOTSUPP;
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800931 return rawv6_seticmpfilter(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 optlen);
933 case SOL_IPV6:
934 if (optname == IPV6_CHECKSUM)
935 break;
936 default:
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800937 return ipv6_setsockopt(sk, level, optname, optval,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 optlen);
939 };
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800940 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
941}
942
943#ifdef CONFIG_COMPAT
944static int compat_rawv6_setsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800945 char __user *optval, int optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800946{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800947 switch (level) {
948 case SOL_RAW:
949 break;
950 case SOL_ICMPV6:
951 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
952 return -EOPNOTSUPP;
953 return rawv6_seticmpfilter(sk, level, optname, optval, optlen);
954 case SOL_IPV6:
955 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800956 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -0800957 default:
958 return compat_ipv6_setsockopt(sk, level, optname,
959 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800960 };
961 return do_rawv6_setsockopt(sk, level, optname, optval, optlen);
962}
963#endif
964
965static int do_rawv6_getsockopt(struct sock *sk, int level, int optname,
966 char __user *optval, int __user *optlen)
967{
968 struct raw6_sock *rp = raw6_sk(sk);
969 int val, len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
971 if (get_user(len,optlen))
972 return -EFAULT;
973
974 switch (optname) {
975 case IPV6_CHECKSUM:
976 if (rp->checksum == 0)
977 val = -1;
978 else
979 val = rp->offset;
980 break;
981
982 default:
983 return -ENOPROTOOPT;
984 }
985
986 len = min_t(unsigned int, sizeof(int), len);
987
988 if (put_user(len, optlen))
989 return -EFAULT;
990 if (copy_to_user(optval,&val,len))
991 return -EFAULT;
992 return 0;
993}
994
Dmitry Mishin3fdadf72006-03-20 22:45:21 -0800995static int rawv6_getsockopt(struct sock *sk, int level, int optname,
996 char __user *optval, int __user *optlen)
997{
998 switch(level) {
999 case SOL_RAW:
1000 break;
1001
1002 case SOL_ICMPV6:
1003 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1004 return -EOPNOTSUPP;
1005 return rawv6_geticmpfilter(sk, level, optname, optval,
1006 optlen);
1007 case SOL_IPV6:
1008 if (optname == IPV6_CHECKSUM)
1009 break;
1010 default:
1011 return ipv6_getsockopt(sk, level, optname, optval,
1012 optlen);
1013 };
1014 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1015}
1016
1017#ifdef CONFIG_COMPAT
1018static int compat_rawv6_getsockopt(struct sock *sk, int level, int optname,
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001019 char __user *optval, int __user *optlen)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001020{
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001021 switch (level) {
1022 case SOL_RAW:
1023 break;
1024 case SOL_ICMPV6:
1025 if (inet_sk(sk)->num != IPPROTO_ICMPV6)
1026 return -EOPNOTSUPP;
1027 return rawv6_geticmpfilter(sk, level, optname, optval, optlen);
1028 case SOL_IPV6:
1029 if (optname == IPV6_CHECKSUM)
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001030 break;
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001031 default:
1032 return compat_ipv6_getsockopt(sk, level, optname,
1033 optval, optlen);
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001034 };
1035 return do_rawv6_getsockopt(sk, level, optname, optval, optlen);
1036}
1037#endif
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039static int rawv6_ioctl(struct sock *sk, int cmd, unsigned long arg)
1040{
1041 switch(cmd) {
1042 case SIOCOUTQ:
1043 {
1044 int amount = atomic_read(&sk->sk_wmem_alloc);
1045 return put_user(amount, (int __user *)arg);
1046 }
1047 case SIOCINQ:
1048 {
1049 struct sk_buff *skb;
1050 int amount = 0;
1051
Herbert Xue0f9f852005-06-18 22:56:18 -07001052 spin_lock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 skb = skb_peek(&sk->sk_receive_queue);
1054 if (skb != NULL)
1055 amount = skb->tail - skb->h.raw;
Herbert Xue0f9f852005-06-18 22:56:18 -07001056 spin_unlock_bh(&sk->sk_receive_queue.lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 return put_user(amount, (int __user *)arg);
1058 }
1059
1060 default:
1061 return -ENOIOCTLCMD;
1062 }
1063}
1064
1065static void rawv6_close(struct sock *sk, long timeout)
1066{
1067 if (inet_sk(sk)->num == IPPROTO_RAW)
1068 ip6_ra_control(sk, -1, NULL);
1069
1070 sk_common_release(sk);
1071}
1072
1073static int rawv6_init_sk(struct sock *sk)
1074{
1075 if (inet_sk(sk)->num == IPPROTO_ICMPV6) {
1076 struct raw6_sock *rp = raw6_sk(sk);
1077 rp->checksum = 1;
1078 rp->offset = 2;
1079 }
1080 return(0);
1081}
1082
1083struct proto rawv6_prot = {
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001084 .name = "RAWv6",
1085 .owner = THIS_MODULE,
1086 .close = rawv6_close,
1087 .connect = ip6_datagram_connect,
1088 .disconnect = udp_disconnect,
1089 .ioctl = rawv6_ioctl,
1090 .init = rawv6_init_sk,
1091 .destroy = inet6_destroy_sock,
1092 .setsockopt = rawv6_setsockopt,
1093 .getsockopt = rawv6_getsockopt,
1094 .sendmsg = rawv6_sendmsg,
1095 .recvmsg = rawv6_recvmsg,
1096 .bind = rawv6_bind,
1097 .backlog_rcv = rawv6_rcv_skb,
1098 .hash = raw_v6_hash,
1099 .unhash = raw_v6_unhash,
1100 .obj_size = sizeof(struct raw6_sock),
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001101#ifdef CONFIG_COMPAT
Arnaldo Carvalho de Melo543d9cf2006-03-20 22:48:35 -08001102 .compat_setsockopt = compat_rawv6_setsockopt,
1103 .compat_getsockopt = compat_rawv6_getsockopt,
Dmitry Mishin3fdadf72006-03-20 22:45:21 -08001104#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105};
1106
1107#ifdef CONFIG_PROC_FS
1108struct raw6_iter_state {
1109 int bucket;
1110};
1111
1112#define raw6_seq_private(seq) ((struct raw6_iter_state *)(seq)->private)
1113
1114static struct sock *raw6_get_first(struct seq_file *seq)
1115{
1116 struct sock *sk;
1117 struct hlist_node *node;
1118 struct raw6_iter_state* state = raw6_seq_private(seq);
1119
1120 for (state->bucket = 0; state->bucket < RAWV6_HTABLE_SIZE; ++state->bucket)
1121 sk_for_each(sk, node, &raw_v6_htable[state->bucket])
1122 if (sk->sk_family == PF_INET6)
1123 goto out;
1124 sk = NULL;
1125out:
1126 return sk;
1127}
1128
1129static struct sock *raw6_get_next(struct seq_file *seq, struct sock *sk)
1130{
1131 struct raw6_iter_state* state = raw6_seq_private(seq);
1132
1133 do {
1134 sk = sk_next(sk);
1135try_again:
1136 ;
1137 } while (sk && sk->sk_family != PF_INET6);
1138
1139 if (!sk && ++state->bucket < RAWV6_HTABLE_SIZE) {
1140 sk = sk_head(&raw_v6_htable[state->bucket]);
1141 goto try_again;
1142 }
1143 return sk;
1144}
1145
1146static struct sock *raw6_get_idx(struct seq_file *seq, loff_t pos)
1147{
1148 struct sock *sk = raw6_get_first(seq);
1149 if (sk)
1150 while (pos && (sk = raw6_get_next(seq, sk)) != NULL)
1151 --pos;
1152 return pos ? NULL : sk;
1153}
1154
1155static void *raw6_seq_start(struct seq_file *seq, loff_t *pos)
1156{
1157 read_lock(&raw_v6_lock);
1158 return *pos ? raw6_get_idx(seq, *pos - 1) : SEQ_START_TOKEN;
1159}
1160
1161static void *raw6_seq_next(struct seq_file *seq, void *v, loff_t *pos)
1162{
1163 struct sock *sk;
1164
1165 if (v == SEQ_START_TOKEN)
1166 sk = raw6_get_first(seq);
1167 else
1168 sk = raw6_get_next(seq, v);
1169 ++*pos;
1170 return sk;
1171}
1172
1173static void raw6_seq_stop(struct seq_file *seq, void *v)
1174{
1175 read_unlock(&raw_v6_lock);
1176}
1177
1178static void raw6_sock_seq_show(struct seq_file *seq, struct sock *sp, int i)
1179{
1180 struct ipv6_pinfo *np = inet6_sk(sp);
1181 struct in6_addr *dest, *src;
1182 __u16 destp, srcp;
1183
1184 dest = &np->daddr;
1185 src = &np->rcv_saddr;
1186 destp = 0;
1187 srcp = inet_sk(sp)->num;
1188 seq_printf(seq,
1189 "%4d: %08X%08X%08X%08X:%04X %08X%08X%08X%08X:%04X "
1190 "%02X %08X:%08X %02X:%08lX %08X %5d %8d %lu %d %p\n",
1191 i,
1192 src->s6_addr32[0], src->s6_addr32[1],
1193 src->s6_addr32[2], src->s6_addr32[3], srcp,
1194 dest->s6_addr32[0], dest->s6_addr32[1],
1195 dest->s6_addr32[2], dest->s6_addr32[3], destp,
1196 sp->sk_state,
1197 atomic_read(&sp->sk_wmem_alloc),
1198 atomic_read(&sp->sk_rmem_alloc),
1199 0, 0L, 0,
1200 sock_i_uid(sp), 0,
1201 sock_i_ino(sp),
1202 atomic_read(&sp->sk_refcnt), sp);
1203}
1204
1205static int raw6_seq_show(struct seq_file *seq, void *v)
1206{
1207 if (v == SEQ_START_TOKEN)
1208 seq_printf(seq,
1209 " sl "
1210 "local_address "
1211 "remote_address "
1212 "st tx_queue rx_queue tr tm->when retrnsmt"
1213 " uid timeout inode\n");
1214 else
1215 raw6_sock_seq_show(seq, v, raw6_seq_private(seq)->bucket);
1216 return 0;
1217}
1218
1219static struct seq_operations raw6_seq_ops = {
1220 .start = raw6_seq_start,
1221 .next = raw6_seq_next,
1222 .stop = raw6_seq_stop,
1223 .show = raw6_seq_show,
1224};
1225
1226static int raw6_seq_open(struct inode *inode, struct file *file)
1227{
1228 struct seq_file *seq;
1229 int rc = -ENOMEM;
Ingo Oeser0c600ed2006-03-20 23:01:32 -08001230 struct raw6_iter_state *s = kzalloc(sizeof(*s), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (!s)
1232 goto out;
1233 rc = seq_open(file, &raw6_seq_ops);
1234 if (rc)
1235 goto out_kfree;
1236 seq = file->private_data;
1237 seq->private = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238out:
1239 return rc;
1240out_kfree:
1241 kfree(s);
1242 goto out;
1243}
1244
1245static struct file_operations raw6_seq_fops = {
1246 .owner = THIS_MODULE,
1247 .open = raw6_seq_open,
1248 .read = seq_read,
1249 .llseek = seq_lseek,
1250 .release = seq_release_private,
1251};
1252
1253int __init raw6_proc_init(void)
1254{
1255 if (!proc_net_fops_create("raw6", S_IRUGO, &raw6_seq_fops))
1256 return -ENOMEM;
1257 return 0;
1258}
1259
1260void raw6_proc_exit(void)
1261{
1262 proc_net_remove("raw6");
1263}
1264#endif /* CONFIG_PROC_FS */