2 * IPv6 BSD socket options interface
3 * Linux INET6 implementation
6 * Pedro Roque <roque@di.fc.ul.pt>
8 * Based on linux/net/ipv4/ip_sockglue.c
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
15 * FIXME: Make the setsockopt code POSIX compliant: That is
17 * o Truncate getsockopt returns
18 * o Return an optlen of the truncated length if need be
21 * David L Stevens <dlstevens@us.ibm.com>:
22 * - added multicast source filtering API for MLDv2
25 #include <linux/module.h>
26 #include <linux/capability.h>
27 #include <linux/errno.h>
28 #include <linux/types.h>
29 #include <linux/socket.h>
30 #include <linux/sockios.h>
31 #include <linux/net.h>
32 #include <linux/in6.h>
33 #include <linux/mroute6.h>
34 #include <linux/netdevice.h>
35 #include <linux/if_arp.h>
36 #include <linux/init.h>
37 #include <linux/sysctl.h>
38 #include <linux/netfilter.h>
39 #include <linux/slab.h>
44 #include <net/ndisc.h>
45 #include <net/protocol.h>
46 #include <net/transp_v6.h>
47 #include <net/ip6_route.h>
48 #include <net/addrconf.h>
49 #include <net/inet_common.h>
52 #include <net/udplite.h>
54 #include <net/compat.h>
56 #include <asm/uaccess.h>
58 struct ip6_ra_chain *ip6_ra_chain;
59 DEFINE_RWLOCK(ip6_ra_lock);
61 int ip6_ra_control(struct sock *sk, int sel)
63 struct ip6_ra_chain *ra, *new_ra, **rap;
65 /* RA packet may be delivered ONLY to IPPROTO_RAW socket */
66 if (sk->sk_type != SOCK_RAW || inet_sk(sk)->inet_num != IPPROTO_RAW)
69 new_ra = (sel>=0) ? kmalloc(sizeof(*new_ra), GFP_KERNEL) : NULL;
71 write_lock_bh(&ip6_ra_lock);
72 for (rap = &ip6_ra_chain; (ra=*rap) != NULL; rap = &ra->next) {
75 write_unlock_bh(&ip6_ra_lock);
81 write_unlock_bh(&ip6_ra_lock);
89 write_unlock_bh(&ip6_ra_lock);
97 write_unlock_bh(&ip6_ra_lock);
102 struct ipv6_txoptions *ipv6_update_options(struct sock *sk,
103 struct ipv6_txoptions *opt)
105 if (inet_sk(sk)->is_icsk) {
107 !((1 << sk->sk_state) & (TCPF_LISTEN | TCPF_CLOSE)) &&
108 inet_sk(sk)->inet_daddr != LOOPBACK4_IPV6) {
109 struct inet_connection_sock *icsk = inet_csk(sk);
110 icsk->icsk_ext_hdr_len = opt->opt_flen + opt->opt_nflen;
111 icsk->icsk_sync_mss(sk, icsk->icsk_pmtu_cookie);
113 opt = xchg(&inet6_sk(sk)->opt, opt);
115 spin_lock(&sk->sk_dst_lock);
116 opt = xchg(&inet6_sk(sk)->opt, opt);
117 spin_unlock(&sk->sk_dst_lock);
124 static int do_ipv6_setsockopt(struct sock *sk, int level, int optname,
125 char __user *optval, unsigned int optlen)
127 struct ipv6_pinfo *np = inet6_sk(sk);
128 struct net *net = sock_net(sk);
130 int retv = -ENOPROTOOPT;
135 if (optlen >= sizeof(int)) {
136 if (get_user(val, (int __user *) optval))
144 if (ip6_mroute_opt(optname))
145 return ip6_mroute_setsockopt(sk, optname, optval, optlen);
152 if (optlen < sizeof(int))
154 if (val == PF_INET) {
155 struct ipv6_txoptions *opt;
156 struct sk_buff *pktopt;
158 if (sk->sk_type == SOCK_RAW)
161 if (sk->sk_protocol == IPPROTO_UDP ||
162 sk->sk_protocol == IPPROTO_UDPLITE) {
163 struct udp_sock *up = udp_sk(sk);
164 if (up->pending == AF_INET6) {
168 } else if (sk->sk_protocol != IPPROTO_TCP)
171 if (sk->sk_state != TCP_ESTABLISHED) {
176 if (ipv6_only_sock(sk) ||
177 !ipv6_addr_v4mapped(&np->daddr)) {
178 retv = -EADDRNOTAVAIL;
182 fl6_free_socklist(sk);
183 ipv6_sock_mc_close(sk);
186 * Sock is moving from IPv6 to IPv4 (sk_prot), so
187 * remove it from the refcnt debug socks count in the
190 sk_refcnt_debug_dec(sk);
192 if (sk->sk_protocol == IPPROTO_TCP) {
193 struct inet_connection_sock *icsk = inet_csk(sk);
195 sock_prot_inuse_add(net, sk->sk_prot, -1);
196 sock_prot_inuse_add(net, &tcp_prot, 1);
198 sk->sk_prot = &tcp_prot;
199 icsk->icsk_af_ops = &ipv4_specific;
200 sk->sk_socket->ops = &inet_stream_ops;
201 sk->sk_family = PF_INET;
202 tcp_sync_mss(sk, icsk->icsk_pmtu_cookie);
204 struct proto *prot = &udp_prot;
206 if (sk->sk_protocol == IPPROTO_UDPLITE)
207 prot = &udplite_prot;
209 sock_prot_inuse_add(net, sk->sk_prot, -1);
210 sock_prot_inuse_add(net, prot, 1);
213 sk->sk_socket->ops = &inet_dgram_ops;
214 sk->sk_family = PF_INET;
216 opt = xchg(&np->opt, NULL);
218 sock_kfree_s(sk, opt, opt->tot_len);
219 pktopt = xchg(&np->pktoptions, NULL);
222 sk->sk_destruct = inet_sock_destruct;
224 * ... and add it to the refcnt debug socks count
225 * in the new family. -acme
227 sk_refcnt_debug_inc(sk);
228 module_put(THIS_MODULE);
235 if (optlen < sizeof(int) ||
236 inet_sk(sk)->inet_num)
238 np->ipv6only = valbool;
242 case IPV6_RECVPKTINFO:
243 if (optlen < sizeof(int))
245 np->rxopt.bits.rxinfo = valbool;
249 case IPV6_2292PKTINFO:
250 if (optlen < sizeof(int))
252 np->rxopt.bits.rxoinfo = valbool;
256 case IPV6_RECVHOPLIMIT:
257 if (optlen < sizeof(int))
259 np->rxopt.bits.rxhlim = valbool;
263 case IPV6_2292HOPLIMIT:
264 if (optlen < sizeof(int))
266 np->rxopt.bits.rxohlim = valbool;
271 if (optlen < sizeof(int))
273 np->rxopt.bits.srcrt = valbool;
278 if (optlen < sizeof(int))
280 np->rxopt.bits.osrcrt = valbool;
284 case IPV6_RECVHOPOPTS:
285 if (optlen < sizeof(int))
287 np->rxopt.bits.hopopts = valbool;
291 case IPV6_2292HOPOPTS:
292 if (optlen < sizeof(int))
294 np->rxopt.bits.ohopopts = valbool;
298 case IPV6_RECVDSTOPTS:
299 if (optlen < sizeof(int))
301 np->rxopt.bits.dstopts = valbool;
305 case IPV6_2292DSTOPTS:
306 if (optlen < sizeof(int))
308 np->rxopt.bits.odstopts = valbool;
313 if (optlen < sizeof(int))
315 if (val < -1 || val > 0xff)
317 /* RFC 3542, 6.5: default traffic class of 0x0 */
324 case IPV6_RECVTCLASS:
325 if (optlen < sizeof(int))
327 np->rxopt.bits.rxtclass = valbool;
332 if (optlen < sizeof(int))
334 np->rxopt.bits.rxflow = valbool;
338 case IPV6_RECVPATHMTU:
339 if (optlen < sizeof(int))
341 np->rxopt.bits.rxpmtu = valbool;
345 case IPV6_TRANSPARENT:
346 if (!capable(CAP_NET_ADMIN)) {
350 if (optlen < sizeof(int))
352 /* we don't have a separate transparent bit for IPV6 we use the one in the IPv4 socket */
353 inet_sk(sk)->transparent = valbool;
357 case IPV6_RECVORIGDSTADDR:
358 if (optlen < sizeof(int))
360 np->rxopt.bits.rxorigdstaddr = valbool;
365 case IPV6_RTHDRDSTOPTS:
369 struct ipv6_txoptions *opt;
371 /* remove any sticky options header with a zero option
372 * length, per RFC3542.
376 else if (optval == NULL)
378 else if (optlen < sizeof(struct ipv6_opt_hdr) ||
379 optlen & 0x7 || optlen > 8 * 255)
382 /* hop-by-hop / destination options are privileged option */
384 if (optname != IPV6_RTHDR && !capable(CAP_NET_RAW))
387 opt = ipv6_renew_options(sk, np->opt, optname,
388 (struct ipv6_opt_hdr __user *)optval,
395 /* routing header option needs extra check */
397 if (optname == IPV6_RTHDR && opt && opt->srcrt) {
398 struct ipv6_rt_hdr *rthdr = opt->srcrt;
399 switch (rthdr->type) {
400 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
401 case IPV6_SRCRT_TYPE_2:
402 if (rthdr->hdrlen != 2 ||
403 rthdr->segments_left != 1)
414 opt = ipv6_update_options(sk, opt);
417 sock_kfree_s(sk, opt, opt->tot_len);
423 struct in6_pktinfo pkt;
427 else if (optlen < sizeof(struct in6_pktinfo) || optval == NULL)
430 if (copy_from_user(&pkt, optval, sizeof(struct in6_pktinfo))) {
434 if (sk->sk_bound_dev_if && pkt.ipi6_ifindex != sk->sk_bound_dev_if)
437 np->sticky_pktinfo.ipi6_ifindex = pkt.ipi6_ifindex;
438 ipv6_addr_copy(&np->sticky_pktinfo.ipi6_addr, &pkt.ipi6_addr);
443 case IPV6_2292PKTOPTIONS:
445 struct ipv6_txoptions *opt = NULL;
450 fl.fl6_flowlabel = 0;
451 fl.oif = sk->sk_bound_dev_if;
452 fl.mark = sk->sk_mark;
457 /* 1K is probably excessive
458 * 1K is surely not enough, 2K per standard header is 16K.
461 if (optlen > 64*1024)
464 opt = sock_kmalloc(sk, sizeof(*opt) + optlen, GFP_KERNEL);
469 memset(opt, 0, sizeof(*opt));
470 opt->tot_len = sizeof(*opt) + optlen;
472 if (copy_from_user(opt+1, optval, optlen))
475 msg.msg_controllen = optlen;
476 msg.msg_control = (void*)(opt+1);
478 retv = datagram_send_ctl(net, &msg, &fl, opt, &junk, &junk,
484 opt = ipv6_update_options(sk, opt);
487 sock_kfree_s(sk, opt, opt->tot_len);
490 case IPV6_UNICAST_HOPS:
491 if (optlen < sizeof(int))
493 if (val > 255 || val < -1)
499 case IPV6_MULTICAST_HOPS:
500 if (sk->sk_type == SOCK_STREAM)
502 if (optlen < sizeof(int))
504 if (val > 255 || val < -1)
506 np->mcast_hops = val;
510 case IPV6_MULTICAST_LOOP:
511 if (optlen < sizeof(int))
515 np->mc_loop = valbool;
519 case IPV6_MULTICAST_IF:
520 if (sk->sk_type == SOCK_STREAM)
522 if (optlen < sizeof(int))
526 struct net_device *dev;
528 if (sk->sk_bound_dev_if && sk->sk_bound_dev_if != val)
531 dev = dev_get_by_index(net, val);
541 case IPV6_ADD_MEMBERSHIP:
542 case IPV6_DROP_MEMBERSHIP:
544 struct ipv6_mreq mreq;
546 if (optlen < sizeof(struct ipv6_mreq))
550 if (inet_sk(sk)->is_icsk)
554 if (copy_from_user(&mreq, optval, sizeof(struct ipv6_mreq)))
557 if (optname == IPV6_ADD_MEMBERSHIP)
558 retv = ipv6_sock_mc_join(sk, mreq.ipv6mr_ifindex, &mreq.ipv6mr_multiaddr);
560 retv = ipv6_sock_mc_drop(sk, mreq.ipv6mr_ifindex, &mreq.ipv6mr_multiaddr);
563 case IPV6_JOIN_ANYCAST:
564 case IPV6_LEAVE_ANYCAST:
566 struct ipv6_mreq mreq;
568 if (optlen < sizeof(struct ipv6_mreq))
572 if (copy_from_user(&mreq, optval, sizeof(struct ipv6_mreq)))
575 if (optname == IPV6_JOIN_ANYCAST)
576 retv = ipv6_sock_ac_join(sk, mreq.ipv6mr_ifindex, &mreq.ipv6mr_acaddr);
578 retv = ipv6_sock_ac_drop(sk, mreq.ipv6mr_ifindex, &mreq.ipv6mr_acaddr);
581 case MCAST_JOIN_GROUP:
582 case MCAST_LEAVE_GROUP:
584 struct group_req greq;
585 struct sockaddr_in6 *psin6;
587 if (optlen < sizeof(struct group_req))
591 if (copy_from_user(&greq, optval, sizeof(struct group_req)))
593 if (greq.gr_group.ss_family != AF_INET6) {
594 retv = -EADDRNOTAVAIL;
597 psin6 = (struct sockaddr_in6 *)&greq.gr_group;
598 if (optname == MCAST_JOIN_GROUP)
599 retv = ipv6_sock_mc_join(sk, greq.gr_interface,
602 retv = ipv6_sock_mc_drop(sk, greq.gr_interface,
606 case MCAST_JOIN_SOURCE_GROUP:
607 case MCAST_LEAVE_SOURCE_GROUP:
608 case MCAST_BLOCK_SOURCE:
609 case MCAST_UNBLOCK_SOURCE:
611 struct group_source_req greqs;
614 if (optlen < sizeof(struct group_source_req))
616 if (copy_from_user(&greqs, optval, sizeof(greqs))) {
620 if (greqs.gsr_group.ss_family != AF_INET6 ||
621 greqs.gsr_source.ss_family != AF_INET6) {
622 retv = -EADDRNOTAVAIL;
625 if (optname == MCAST_BLOCK_SOURCE) {
626 omode = MCAST_EXCLUDE;
628 } else if (optname == MCAST_UNBLOCK_SOURCE) {
629 omode = MCAST_EXCLUDE;
631 } else if (optname == MCAST_JOIN_SOURCE_GROUP) {
632 struct sockaddr_in6 *psin6;
634 psin6 = (struct sockaddr_in6 *)&greqs.gsr_group;
635 retv = ipv6_sock_mc_join(sk, greqs.gsr_interface,
637 /* prior join w/ different source is ok */
638 if (retv && retv != -EADDRINUSE)
640 omode = MCAST_INCLUDE;
642 } else /* MCAST_LEAVE_SOURCE_GROUP */ {
643 omode = MCAST_INCLUDE;
646 retv = ip6_mc_source(add, omode, sk, &greqs);
651 extern int sysctl_mld_max_msf;
652 struct group_filter *gsf;
654 if (optlen < GROUP_FILTER_SIZE(0))
656 if (optlen > sysctl_optmem_max) {
660 gsf = kmalloc(optlen,GFP_KERNEL);
666 if (copy_from_user(gsf, optval, optlen)) {
670 /* numsrc >= (4G-140)/128 overflow in 32 bits */
671 if (gsf->gf_numsrc >= 0x1ffffffU ||
672 gsf->gf_numsrc > sysctl_mld_max_msf) {
677 if (GROUP_FILTER_SIZE(gsf->gf_numsrc) > optlen) {
682 retv = ip6_mc_msfilter(sk, gsf);
687 case IPV6_ROUTER_ALERT:
688 if (optlen < sizeof(int))
690 retv = ip6_ra_control(sk, val);
692 case IPV6_MTU_DISCOVER:
693 if (optlen < sizeof(int))
695 if (val < IP_PMTUDISC_DONT || val > IP_PMTUDISC_PROBE)
701 if (optlen < sizeof(int))
703 if (val && val < IPV6_MIN_MTU)
709 if (optlen < sizeof(int))
711 np->recverr = valbool;
713 skb_queue_purge(&sk->sk_error_queue);
716 case IPV6_FLOWINFO_SEND:
717 if (optlen < sizeof(int))
719 np->sndflow = valbool;
722 case IPV6_FLOWLABEL_MGR:
723 retv = ipv6_flowlabel_opt(sk, optval, optlen);
725 case IPV6_IPSEC_POLICY:
726 case IPV6_XFRM_POLICY:
728 if (!capable(CAP_NET_ADMIN))
730 retv = xfrm_user_policy(sk, optname, optval, optlen);
733 case IPV6_ADDR_PREFERENCES:
735 unsigned int pref = 0;
736 unsigned int prefmask = ~0;
738 if (optlen < sizeof(int))
743 /* check PUBLIC/TMP/PUBTMP_DEFAULT conflicts */
744 switch (val & (IPV6_PREFER_SRC_PUBLIC|
746 IPV6_PREFER_SRC_PUBTMP_DEFAULT)) {
747 case IPV6_PREFER_SRC_PUBLIC:
748 pref |= IPV6_PREFER_SRC_PUBLIC;
750 case IPV6_PREFER_SRC_TMP:
751 pref |= IPV6_PREFER_SRC_TMP;
753 case IPV6_PREFER_SRC_PUBTMP_DEFAULT:
756 goto pref_skip_pubtmp;
761 prefmask &= ~(IPV6_PREFER_SRC_PUBLIC|
762 IPV6_PREFER_SRC_TMP);
765 /* check HOME/COA conflicts */
766 switch (val & (IPV6_PREFER_SRC_HOME|IPV6_PREFER_SRC_COA)) {
767 case IPV6_PREFER_SRC_HOME:
769 case IPV6_PREFER_SRC_COA:
770 pref |= IPV6_PREFER_SRC_COA;
777 prefmask &= ~IPV6_PREFER_SRC_COA;
780 /* check CGA/NONCGA conflicts */
781 switch (val & (IPV6_PREFER_SRC_CGA|IPV6_PREFER_SRC_NONCGA)) {
782 case IPV6_PREFER_SRC_CGA:
783 case IPV6_PREFER_SRC_NONCGA:
790 np->srcprefs = (np->srcprefs & prefmask) | pref;
795 case IPV6_MINHOPCOUNT:
796 if (optlen < sizeof(int))
798 if (val < 0 || val > 255)
800 np->min_hopcount = val;
803 np->dontfrag = valbool;
817 int ipv6_setsockopt(struct sock *sk, int level, int optname,
818 char __user *optval, unsigned int optlen)
822 if (level == SOL_IP && sk->sk_type != SOCK_RAW)
823 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
825 if (level != SOL_IPV6)
828 err = do_ipv6_setsockopt(sk, level, optname, optval, optlen);
829 #ifdef CONFIG_NETFILTER
830 /* we need to exclude all possible ENOPROTOOPTs except default case */
831 if (err == -ENOPROTOOPT && optname != IPV6_IPSEC_POLICY &&
832 optname != IPV6_XFRM_POLICY) {
834 err = nf_setsockopt(sk, PF_INET6, optname, optval,
842 EXPORT_SYMBOL(ipv6_setsockopt);
845 int compat_ipv6_setsockopt(struct sock *sk, int level, int optname,
846 char __user *optval, unsigned int optlen)
850 if (level == SOL_IP && sk->sk_type != SOCK_RAW) {
851 if (udp_prot.compat_setsockopt != NULL)
852 return udp_prot.compat_setsockopt(sk, level, optname,
854 return udp_prot.setsockopt(sk, level, optname, optval, optlen);
857 if (level != SOL_IPV6)
860 if (optname >= MCAST_JOIN_GROUP && optname <= MCAST_MSFILTER)
861 return compat_mc_setsockopt(sk, level, optname, optval, optlen,
864 err = do_ipv6_setsockopt(sk, level, optname, optval, optlen);
865 #ifdef CONFIG_NETFILTER
866 /* we need to exclude all possible ENOPROTOOPTs except default case */
867 if (err == -ENOPROTOOPT && optname != IPV6_IPSEC_POLICY &&
868 optname != IPV6_XFRM_POLICY) {
870 err = compat_nf_setsockopt(sk, PF_INET6, optname,
878 EXPORT_SYMBOL(compat_ipv6_setsockopt);
881 static int ipv6_getsockopt_sticky(struct sock *sk, struct ipv6_txoptions *opt,
882 int optname, char __user *optval, int len)
884 struct ipv6_opt_hdr *hdr;
893 case IPV6_RTHDRDSTOPTS:
897 hdr = (struct ipv6_opt_hdr *)opt->srcrt;
903 return -EINVAL; /* should not happen */
909 len = min_t(unsigned int, len, ipv6_optlen(hdr));
910 if (copy_to_user(optval, hdr, len))
915 static int do_ipv6_getsockopt(struct sock *sk, int level, int optname,
916 char __user *optval, int __user *optlen)
918 struct ipv6_pinfo *np = inet6_sk(sk);
922 if (ip6_mroute_opt(optname))
923 return ip6_mroute_getsockopt(sk, optname, optval, optlen);
925 if (get_user(len, optlen))
929 if (sk->sk_protocol != IPPROTO_UDP &&
930 sk->sk_protocol != IPPROTO_UDPLITE &&
931 sk->sk_protocol != IPPROTO_TCP)
933 if (sk->sk_state != TCP_ESTABLISHED)
939 struct group_filter gsf;
942 if (len < GROUP_FILTER_SIZE(0))
944 if (copy_from_user(&gsf, optval, GROUP_FILTER_SIZE(0)))
946 if (gsf.gf_group.ss_family != AF_INET6)
947 return -EADDRNOTAVAIL;
949 err = ip6_mc_msfget(sk, &gsf,
950 (struct group_filter __user *)optval, optlen);
955 case IPV6_2292PKTOPTIONS:
960 if (sk->sk_type != SOCK_STREAM)
963 msg.msg_control = optval;
964 msg.msg_controllen = len;
968 skb = np->pktoptions;
970 atomic_inc(&skb->users);
974 int err = datagram_recv_ctl(sk, &msg, skb);
979 if (np->rxopt.bits.rxinfo) {
980 struct in6_pktinfo src_info;
981 src_info.ipi6_ifindex = np->mcast_oif ? np->mcast_oif :
982 np->sticky_pktinfo.ipi6_ifindex;
983 np->mcast_oif? ipv6_addr_copy(&src_info.ipi6_addr, &np->daddr) :
984 ipv6_addr_copy(&src_info.ipi6_addr, &(np->sticky_pktinfo.ipi6_addr));
985 put_cmsg(&msg, SOL_IPV6, IPV6_PKTINFO, sizeof(src_info), &src_info);
987 if (np->rxopt.bits.rxhlim) {
988 int hlim = np->mcast_hops;
989 put_cmsg(&msg, SOL_IPV6, IPV6_HOPLIMIT, sizeof(hlim), &hlim);
991 if (np->rxopt.bits.rxoinfo) {
992 struct in6_pktinfo src_info;
993 src_info.ipi6_ifindex = np->mcast_oif ? np->mcast_oif :
994 np->sticky_pktinfo.ipi6_ifindex;
995 np->mcast_oif? ipv6_addr_copy(&src_info.ipi6_addr, &np->daddr) :
996 ipv6_addr_copy(&src_info.ipi6_addr, &(np->sticky_pktinfo.ipi6_addr));
997 put_cmsg(&msg, SOL_IPV6, IPV6_2292PKTINFO, sizeof(src_info), &src_info);
999 if (np->rxopt.bits.rxohlim) {
1000 int hlim = np->mcast_hops;
1001 put_cmsg(&msg, SOL_IPV6, IPV6_2292HOPLIMIT, sizeof(hlim), &hlim);
1004 len -= msg.msg_controllen;
1005 return put_user(len, optlen);
1009 struct dst_entry *dst;
1013 dst = __sk_dst_get(sk);
1026 case IPV6_RECVPKTINFO:
1027 val = np->rxopt.bits.rxinfo;
1030 case IPV6_2292PKTINFO:
1031 val = np->rxopt.bits.rxoinfo;
1034 case IPV6_RECVHOPLIMIT:
1035 val = np->rxopt.bits.rxhlim;
1038 case IPV6_2292HOPLIMIT:
1039 val = np->rxopt.bits.rxohlim;
1042 case IPV6_RECVRTHDR:
1043 val = np->rxopt.bits.srcrt;
1046 case IPV6_2292RTHDR:
1047 val = np->rxopt.bits.osrcrt;
1051 case IPV6_RTHDRDSTOPTS:
1057 len = ipv6_getsockopt_sticky(sk, np->opt,
1058 optname, optval, len);
1060 /* check if ipv6_getsockopt_sticky() returns err code */
1063 return put_user(len, optlen);
1066 case IPV6_RECVHOPOPTS:
1067 val = np->rxopt.bits.hopopts;
1070 case IPV6_2292HOPOPTS:
1071 val = np->rxopt.bits.ohopopts;
1074 case IPV6_RECVDSTOPTS:
1075 val = np->rxopt.bits.dstopts;
1078 case IPV6_2292DSTOPTS:
1079 val = np->rxopt.bits.odstopts;
1086 case IPV6_RECVTCLASS:
1087 val = np->rxopt.bits.rxtclass;
1091 val = np->rxopt.bits.rxflow;
1094 case IPV6_RECVPATHMTU:
1095 val = np->rxopt.bits.rxpmtu;
1100 struct dst_entry *dst;
1101 struct ip6_mtuinfo mtuinfo;
1103 if (len < sizeof(mtuinfo))
1106 len = sizeof(mtuinfo);
1107 memset(&mtuinfo, 0, sizeof(mtuinfo));
1110 dst = __sk_dst_get(sk);
1112 mtuinfo.ip6m_mtu = dst_mtu(dst);
1114 if (!mtuinfo.ip6m_mtu)
1117 if (put_user(len, optlen))
1119 if (copy_to_user(optval, &mtuinfo, len))
1126 case IPV6_TRANSPARENT:
1127 val = inet_sk(sk)->transparent;
1130 case IPV6_RECVORIGDSTADDR:
1131 val = np->rxopt.bits.rxorigdstaddr;
1134 case IPV6_UNICAST_HOPS:
1135 case IPV6_MULTICAST_HOPS:
1137 struct dst_entry *dst;
1139 if (optname == IPV6_UNICAST_HOPS)
1140 val = np->hop_limit;
1142 val = np->mcast_hops;
1146 dst = __sk_dst_get(sk);
1148 val = ip6_dst_hoplimit(dst);
1153 val = sock_net(sk)->ipv6.devconf_all->hop_limit;
1157 case IPV6_MULTICAST_LOOP:
1161 case IPV6_MULTICAST_IF:
1162 val = np->mcast_oif;
1165 case IPV6_MTU_DISCOVER:
1173 case IPV6_FLOWINFO_SEND:
1177 case IPV6_ADDR_PREFERENCES:
1180 if (np->srcprefs & IPV6_PREFER_SRC_TMP)
1181 val |= IPV6_PREFER_SRC_TMP;
1182 else if (np->srcprefs & IPV6_PREFER_SRC_PUBLIC)
1183 val |= IPV6_PREFER_SRC_PUBLIC;
1185 /* XXX: should we return system default? */
1186 val |= IPV6_PREFER_SRC_PUBTMP_DEFAULT;
1189 if (np->srcprefs & IPV6_PREFER_SRC_COA)
1190 val |= IPV6_PREFER_SRC_COA;
1192 val |= IPV6_PREFER_SRC_HOME;
1195 case IPV6_MINHOPCOUNT:
1196 val = np->min_hopcount;
1204 return -ENOPROTOOPT;
1206 len = min_t(unsigned int, sizeof(int), len);
1207 if(put_user(len, optlen))
1209 if(copy_to_user(optval,&val,len))
1214 int ipv6_getsockopt(struct sock *sk, int level, int optname,
1215 char __user *optval, int __user *optlen)
1219 if (level == SOL_IP && sk->sk_type != SOCK_RAW)
1220 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
1222 if(level != SOL_IPV6)
1223 return -ENOPROTOOPT;
1225 err = do_ipv6_getsockopt(sk, level, optname, optval, optlen);
1226 #ifdef CONFIG_NETFILTER
1227 /* we need to exclude all possible ENOPROTOOPTs except default case */
1228 if (err == -ENOPROTOOPT && optname != IPV6_2292PKTOPTIONS) {
1231 if (get_user(len, optlen))
1235 err = nf_getsockopt(sk, PF_INET6, optname, optval,
1239 err = put_user(len, optlen);
1245 EXPORT_SYMBOL(ipv6_getsockopt);
1247 #ifdef CONFIG_COMPAT
1248 int compat_ipv6_getsockopt(struct sock *sk, int level, int optname,
1249 char __user *optval, int __user *optlen)
1253 if (level == SOL_IP && sk->sk_type != SOCK_RAW) {
1254 if (udp_prot.compat_getsockopt != NULL)
1255 return udp_prot.compat_getsockopt(sk, level, optname,
1257 return udp_prot.getsockopt(sk, level, optname, optval, optlen);
1260 if (level != SOL_IPV6)
1261 return -ENOPROTOOPT;
1263 if (optname == MCAST_MSFILTER)
1264 return compat_mc_getsockopt(sk, level, optname, optval, optlen,
1267 err = do_ipv6_getsockopt(sk, level, optname, optval, optlen);
1268 #ifdef CONFIG_NETFILTER
1269 /* we need to exclude all possible ENOPROTOOPTs except default case */
1270 if (err == -ENOPROTOOPT && optname != IPV6_2292PKTOPTIONS) {
1273 if (get_user(len, optlen))
1277 err = compat_nf_getsockopt(sk, PF_INET6,
1278 optname, optval, &len);
1281 err = put_user(len, optlen);
1287 EXPORT_SYMBOL(compat_ipv6_getsockopt);