[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <483E151B.2000804@cn.fujitsu.com>
Date: Thu, 29 May 2008 10:29:47 +0800
From: Yang Hongyang <yanghy@...fujitsu.com>
To: YOSHIFUJI Hideaki / 吉藤英明
<yoshfuji@...ux-ipv6.org>
CC: davem@...set.davemloft.net,
FNST-Wei Yongjun <yjwei@...fujitsu.com>,
netdev@...r.kernel.org, Wang Chen <wangchen@...fujitsu.com>
Subject: Re: [PATCH] IPv6: Fix the data length of get destination options
with short length
YOSHIFUJI Hideaki / 吉藤英明 wrote:
> POSIX says that the object pointed to by the option_len argument shall be
> modified to indicate the actual length of the value.
> Do you think this change conforms to the spec?
>
We use the codes below to get the destination options,the length cnt is half of the option length.
cnt = sizeof(incmsg) / 2;
if (getsockopt(sk, IPPROTO_IPV6, IPV6_DSTOPTS,
(char *)incmsg, &cnt) == -1)
We can see from net/ipv6/ipv6_sockglue.c,the code below store half of the option length to incmsg,
so the acture data length of incmsg is half of the option length.According to RFC(as you said
"option_len argument shall be modified to indicate the actual length of the value") the cnt
should specify the data length of incmsg,that is half of the option length.So we should return len
instead of ipv6_optlen(hdr).
832 len = min_t(unsigned int, len, ipv6_optlen(hdr));
833 if (copy_to_user(optval, hdr, len))
834 return -EFAULT;
--
Regards
Yang Hongyang
A new email address of FJWAN is launched from Apr.1 2007.
The updated address is: yanghy@...fujitsu.com
--------------------------------------------------
Yang Hongyang
Development Dept.I
Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST)
8/F., Civil Defense Building, No.189 Guangzhou Road,
Nanjing, 210029, China
TEL: +86+25-86630566-812
FUJITSU INTERNAL: 79955-812
FAX: +86+25-83317685
EMAIL: yanghy@...fujitsu.com
--------------------------------------------------
This communication is for use by the intended recipient(s) only and may contain information that is privileged, confidential and exempt from disclosure under applicable law. If you are not an intended recipient of this communication, you are hereby notified that any dissemination, distribution or copying hereof is strictly prohibited. If you have received this communication in error, please notify me by reply e-mail, permanently delete this communication from your system, and destroy any hard copies you may have printed
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists