* [PATCH] ipvs: Add boundary check on ioctl arguments @ 2009-09-30 11:11 Arjan van de Ven 2009-09-30 13:38 ` Hannes Eder 2009-12-15 6:17 ` Arjan van de Ven 0 siblings, 2 replies; 10+ messages in thread From: Arjan van de Ven @ 2009-09-30 11:11 UTC (permalink / raw) To: Wensong Zhang; +Cc: netdev, linux-kernel >From 761a182f96b3707e1fee44e1079ba227e48745d1 Mon Sep 17 00:00:00 2001 From: Arjan van de Ven <arjan@linux.intel.com> Date: Wed, 30 Sep 2009 13:05:51 +0200 Subject: [PATCH] ipvs: Add boundary check on ioctl arguments The ipvs code has a nifty system for doing the size of ioctl command copies; it defines an array with values into which it indexes the cmd to find the right length. Unfortunately, the ipvs code forgot to check if the cmd was in the range that the array provides, allowing for an index outside of the array, which then gives a "garbage" result into the length, which then gets used for copying into a stack buffer. Fix this by adding sanity checks on these as well as the copy size. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> --- net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c index ac624e5..3c52796 100644 --- a/net/netfilter/ipvs/ip_vs_ctl.c +++ b/net/netfilter/ipvs/ip_vs_ctl.c @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) if (!capable(CAP_NET_ADMIN)) return -EPERM; + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) + return -EINVAL; + if (len < 0 || len > MAX_ARG_LEN) + return -EINVAL; if (len != set_arglen[SET_CMDID(cmd)]) { pr_err("set_ctl: len %u != %u\n", len, set_arglen[SET_CMDID(cmd)]); @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) { unsigned char arg[128]; int ret = 0; + unsigned int copylen; if (!capable(CAP_NET_ADMIN)) return -EPERM; + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) + return -EINVAL; + if (*len < get_arglen[GET_CMDID(cmd)]) { pr_err("get_ctl: len %u < %u\n", *len, get_arglen[GET_CMDID(cmd)]); return -EINVAL; } - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != 0) + copylen = get_arglen[GET_CMDID(cmd)]; + if (copylen > 128) + return -EINVAL; + + if (copy_from_user(arg, user, copylen) != 0) return -EFAULT; if (mutex_lock_interruptible(&__ip_vs_mutex)) -- 1.6.2.5 -- Arjan van de Ven Intel Open Source Technology Centre For development, discussion and tips for power savings, visit http://www.lesswatts.org ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 11:11 [PATCH] ipvs: Add boundary check on ioctl arguments Arjan van de Ven @ 2009-09-30 13:38 ` Hannes Eder 2009-09-30 15:18 ` Arjan van de Ven 2009-12-15 6:17 ` Arjan van de Ven 1 sibling, 1 reply; 10+ messages in thread From: Hannes Eder @ 2009-09-30 13:38 UTC (permalink / raw) To: Arjan van de Ven; +Cc: Wensong Zhang, netdev, linux-kernel, Simon Horman [cc: +Simon Horman] Arjan van de Ven wrote: > From 761a182f96b3707e1fee44e1079ba227e48745d1 Mon Sep 17 00:00:00 2001 > From: Arjan van de Ven <arjan@linux.intel.com> > Date: Wed, 30 Sep 2009 13:05:51 +0200 > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > The ipvs code has a nifty system for doing the size of ioctl command copies; > it defines an array with values into which it indexes the cmd to find the > right length. > > Unfortunately, the ipvs code forgot to check if the cmd was in the range > that the array provides, allowing for an index outside of the array, > which then gives a "garbage" result into the length, which then gets > used for copying into a stack buffer. > > Fix this by adding sanity checks on these as well as the copy size. > > Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> > --- > net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- > 1 files changed, 13 insertions(+), 1 deletions(-) > > diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c > index ac624e5..3c52796 100644 > --- a/net/netfilter/ipvs/ip_vs_ctl.c > +++ b/net/netfilter/ipvs/ip_vs_ctl.c > @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) > if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) > + return -EINVAL; > + if (len < 0 || len > MAX_ARG_LEN) > + return -EINVAL; > if (len != set_arglen[SET_CMDID(cmd)]) { > pr_err("set_ctl: len %u != %u\n", > len, set_arglen[SET_CMDID(cmd)]); > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) > { > unsigned char arg[128]; can MAX_ARG_LEN be used here? > int ret = 0; > + unsigned int copylen; > > if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) > + return -EINVAL; > + > if (*len < get_arglen[GET_CMDID(cmd)]) { > pr_err("get_ctl: len %u < %u\n", > *len, get_arglen[GET_CMDID(cmd)]); > return -EINVAL; > } > > - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != 0) > + copylen = get_arglen[GET_CMDID(cmd)]; > + if (copylen > 128) I think it's better to use 'copylen > sizeof(arg)' here. > + return -EINVAL; > + > + if (copy_from_user(arg, user, copylen) != 0) > return -EFAULT; > > if (mutex_lock_interruptible(&__ip_vs_mutex)) ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 13:38 ` Hannes Eder @ 2009-09-30 15:18 ` Arjan van de Ven 2009-09-30 15:33 ` Hannes Eder ` (2 more replies) 0 siblings, 3 replies; 10+ messages in thread From: Arjan van de Ven @ 2009-09-30 15:18 UTC (permalink / raw) To: Hannes Eder; +Cc: Wensong Zhang, netdev, linux-kernel, Simon Horman On Wed, 30 Sep 2009 15:38:12 +0200 Hannes Eder <heder@google.com> wrote: > > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, > > void __user > *user, int *len) > > { > > unsigned char arg[128]; > > can MAX_ARG_LEN be used here? I am not convinced... it is a different numerical value, so it could be an ABI change. Rather not do that in this type of patch... > > + copylen = get_arglen[GET_CMDID(cmd)]; > > + if (copylen > 128) > > I think it's better to use 'copylen > sizeof(arg)' here. fair enough; updated patch below >From 28ae217858e683c0c94c02219d46a9a9c87f61c6 Mon Sep 17 00:00:00 2001 From: Arjan van de Ven <arjan@linux.intel.com> Date: Wed, 30 Sep 2009 13:05:51 +0200 Subject: [PATCH] ipvs: Add boundary check on ioctl arguments The ipvs code has a nifty system for doing the size of ioctl command copies; it defines an array with values into which it indexes the cmd to find the right length. Unfortunately, the ipvs code forgot to check if the cmd was in the range that the array provides, allowing for an index outside of the array, which then gives a "garbage" result into the length, which then gets used for copying into a stack buffer. Fix this by adding sanity checks on these as well as the copy size. Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> --- net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- 1 files changed, 13 insertions(+), 1 deletions(-) diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c index ac624e5..7adc876 100644 --- a/net/netfilter/ipvs/ip_vs_ctl.c +++ b/net/netfilter/ipvs/ip_vs_ctl.c @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) if (!capable(CAP_NET_ADMIN)) return -EPERM; + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) + return -EINVAL; + if (len < 0 || len > sizeof(arg)) + return -EINVAL; if (len != set_arglen[SET_CMDID(cmd)]) { pr_err("set_ctl: len %u != %u\n", len, set_arglen[SET_CMDID(cmd)]); @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) { unsigned char arg[128]; int ret = 0; + unsigned int copylen; if (!capable(CAP_NET_ADMIN)) return -EPERM; + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) + return -EINVAL; + if (*len < get_arglen[GET_CMDID(cmd)]) { pr_err("get_ctl: len %u < %u\n", *len, get_arglen[GET_CMDID(cmd)]); return -EINVAL; } - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != 0) + copylen = get_arglen[GET_CMDID(cmd)]; + if (copylen > sizeof(arg)) + return -EINVAL; + + if (copy_from_user(arg, user, copylen) != 0) return -EFAULT; if (mutex_lock_interruptible(&__ip_vs_mutex)) -- 1.6.2.5 -- Arjan van de Ven Intel Open Source Technology Centre For development, discussion and tips for power savings, visit http://www.lesswatts.org ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 15:18 ` Arjan van de Ven @ 2009-09-30 15:33 ` Hannes Eder 2009-09-30 19:41 ` Julian Anastasov 2009-10-02 8:35 ` Julian Anastasov 2 siblings, 0 replies; 10+ messages in thread From: Hannes Eder @ 2009-09-30 15:33 UTC (permalink / raw) To: Arjan van de Ven; +Cc: Wensong Zhang, netdev, linux-kernel, Simon Horman On Wed, Sep 30, 2009 at 17:18, Arjan van de Ven <arjan@infradead.org> wrote: > On Wed, 30 Sep 2009 15:38:12 +0200 > Hannes Eder <heder@google.com> wrote: >> > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, >> > void __user >> *user, int *len) >> > { >> > unsigned char arg[128]; >> >> can MAX_ARG_LEN be used here? > > I am not convinced... it is a different numerical value, > so it could be an ABI change. Rather not do that in this > type of patch... For do_ip_vs_set_ctl MAX_ARG_LEN is used: static int do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) { int ret; unsigned char arg[MAX_ARG_LEN]; ... I assume that will be fine for do_ip_vs_get_ctl as well. -Hannes ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 15:18 ` Arjan van de Ven 2009-09-30 15:33 ` Hannes Eder @ 2009-09-30 19:41 ` Julian Anastasov 2009-10-01 7:22 ` Arjan van de Ven 2009-10-02 8:35 ` Julian Anastasov 2 siblings, 1 reply; 10+ messages in thread From: Julian Anastasov @ 2009-09-30 19:41 UTC (permalink / raw) To: Arjan van de Ven Cc: Hannes Eder, Wensong Zhang, netdev, linux-kernel, Simon Horman Hello, On Wed, 30 Sep 2009, Arjan van de Ven wrote: > fair enough; updated patch below > > >From 28ae217858e683c0c94c02219d46a9a9c87f61c6 Mon Sep 17 00:00:00 2001 > From: Arjan van de Ven <arjan@linux.intel.com> > Date: Wed, 30 Sep 2009 13:05:51 +0200 > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > The ipvs code has a nifty system for doing the size of ioctl command copies; > it defines an array with values into which it indexes the cmd to find the > right length. > > Unfortunately, the ipvs code forgot to check if the cmd was in the range > that the array provides, allowing for an index outside of the array, > which then gives a "garbage" result into the length, which then gets > used for copying into a stack buffer. do_ip_vs_get_ctl and do_ip_vs_set_ctl are nf_sockopt_ops handlers, so the range is checked by nf_sockopt_find() in Netfilter code. get_arglen[] and set_arglen[] are minimum values for the length and they can be 0. Later len can be checked additionally and surely can exceed 128 (include/linux/ip_vs.h has all user structures). Can you show the exact cmd and len used, may be there is error in some command or may be the provided user structure is wrong? Regards -- Julian Anastasov <ja@ssi.bg> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 19:41 ` Julian Anastasov @ 2009-10-01 7:22 ` Arjan van de Ven 0 siblings, 0 replies; 10+ messages in thread From: Arjan van de Ven @ 2009-10-01 7:22 UTC (permalink / raw) To: Julian Anastasov Cc: Hannes Eder, Wensong Zhang, netdev, linux-kernel, Simon Horman On Wed, 30 Sep 2009 22:41:05 +0300 (EEST) Julian Anastasov <ja@ssi.bg> wrote: > > Hello, > > On Wed, 30 Sep 2009, Arjan van de Ven wrote: > > > fair enough; updated patch below > Later len can be checked > additionally and surely can exceed 128 (include/linux/ip_vs.h has > all user structures). the on-stack structure currently is 128 bytes though... > Can you show the exact cmd and len > used, may be there is error in some command or may be the > provided user structure is wrong? this comes from code inspection using gcc features; this is one of the (few) cases in the kernel where gcc cannot prove that the copy_from_user() length for the copy-to-stack is sufficiently bounds checked. I'm trying to make sure all these cases have complete enough checks, both for the obvious security reasons but also to be able to then make gcc emit a warning to prevent future issues from popping up. -- Arjan van de Ven Intel Open Source Technology Centre For development, discussion and tips for power savings, visit http://www.lesswatts.org ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 15:18 ` Arjan van de Ven 2009-09-30 15:33 ` Hannes Eder 2009-09-30 19:41 ` Julian Anastasov @ 2009-10-02 8:35 ` Julian Anastasov 2 siblings, 0 replies; 10+ messages in thread From: Julian Anastasov @ 2009-10-02 8:35 UTC (permalink / raw) To: Arjan van de Ven Cc: Hannes Eder, Wensong Zhang, netdev, linux-kernel, Simon Horman Hello, On Wed, 30 Sep 2009, Arjan van de Ven wrote: > fair enough; updated patch below OK, you can add my signed-off line after changing 'cmd > ...MAX + 1' to 'cmd > ...MAX' at both places, nf_sockopt_ops ranges are [optmin ... optmax) May be comments should be changed because: - i'm not the author but after ispection we do not see any holes, we do not want users to upgrade just for this change - the cmd checks are just to help code checking tools - the len checks should help programmers (may be BUG_ON is better, user does not deserve EINVAL for wrong set_arglen/get_arglen). Checks for *len and len are not needed. For example, for len checks this should be enough, before copy_from_user(): in do_ip_vs_get_ctl check can be BUG_ON(get_arglen[GET_CMDID(cmd)] > sizeof(arg)); in do_ip_vs_set_ctl check can be BUG_ON(set_arglen[SET_CMDID(cmd)] > sizeof(arg)); Acked-by: Julian Anastasov <ja@ssi.bg> > >From 28ae217858e683c0c94c02219d46a9a9c87f61c6 Mon Sep 17 00:00:00 2001 > From: Arjan van de Ven <arjan@linux.intel.com> > Date: Wed, 30 Sep 2009 13:05:51 +0200 > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > The ipvs code has a nifty system for doing the size of ioctl command copies; > it defines an array with values into which it indexes the cmd to find the > right length. > > Unfortunately, the ipvs code forgot to check if the cmd was in the range > that the array provides, allowing for an index outside of the array, > which then gives a "garbage" result into the length, which then gets > used for copying into a stack buffer. > > Fix this by adding sanity checks on these as well as the copy size. > > Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> > --- > net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- > 1 files changed, 13 insertions(+), 1 deletions(-) > > diff --git a/net/netfilter/ipvs/ip_vs_ctl.c b/net/netfilter/ipvs/ip_vs_ctl.c > index ac624e5..7adc876 100644 > --- a/net/netfilter/ipvs/ip_vs_ctl.c > +++ b/net/netfilter/ipvs/ip_vs_ctl.c > @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, void __user *user, unsigned int len) > if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) > + return -EINVAL; > + if (len < 0 || len > sizeof(arg)) > + return -EINVAL; > if (len != set_arglen[SET_CMDID(cmd)]) { > pr_err("set_ctl: len %u != %u\n", > len, set_arglen[SET_CMDID(cmd)]); > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, void __user *user, int *len) > { > unsigned char arg[128]; > int ret = 0; > + unsigned int copylen; > > if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) > + return -EINVAL; > + > if (*len < get_arglen[GET_CMDID(cmd)]) { > pr_err("get_ctl: len %u < %u\n", > *len, get_arglen[GET_CMDID(cmd)]); > return -EINVAL; > } > > - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != 0) > + copylen = get_arglen[GET_CMDID(cmd)]; > + if (copylen > sizeof(arg)) > + return -EINVAL; > + > + if (copy_from_user(arg, user, copylen) != 0) > return -EFAULT; > > if (mutex_lock_interruptible(&__ip_vs_mutex)) Regards -- Julian Anastasov <ja@ssi.bg> ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-09-30 11:11 [PATCH] ipvs: Add boundary check on ioctl arguments Arjan van de Ven 2009-09-30 13:38 ` Hannes Eder @ 2009-12-15 6:17 ` Arjan van de Ven 2009-12-15 6:32 ` Simon Horman 1 sibling, 1 reply; 10+ messages in thread From: Arjan van de Ven @ 2009-12-15 6:17 UTC (permalink / raw) To: Arjan van de Ven; +Cc: Wensong Zhang, netdev, linux-kernel On Wed, 30 Sep 2009 13:11:09 +0200 Arjan van de Ven <arjan@infradead.org> wrote: ping on the patch below.... the warning is now triggered in mainline > > >From 761a182f96b3707e1fee44e1079ba227e48745d1 Mon Sep 17 00:00:00 > >2001 > From: Arjan van de Ven <arjan@linux.intel.com> > Date: Wed, 30 Sep 2009 13:05:51 +0200 > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > The ipvs code has a nifty system for doing the size of ioctl command > copies; it defines an array with values into which it indexes the cmd > to find the right length. > > Unfortunately, the ipvs code forgot to check if the cmd was in the > range that the array provides, allowing for an index outside of the > array, which then gives a "garbage" result into the length, which > then gets used for copying into a stack buffer. > > Fix this by adding sanity checks on these as well as the copy size. > > Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> > --- > net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- > 1 files changed, 13 insertions(+), 1 deletions(-) > > diff --git a/net/netfilter/ipvs/ip_vs_ctl.c > b/net/netfilter/ipvs/ip_vs_ctl.c index ac624e5..3c52796 100644 > --- a/net/netfilter/ipvs/ip_vs_ctl.c > +++ b/net/netfilter/ipvs/ip_vs_ctl.c > @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, > void __user *user, unsigned int len) if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) > + return -EINVAL; > + if (len < 0 || len > MAX_ARG_LEN) > + return -EINVAL; > if (len != set_arglen[SET_CMDID(cmd)]) { > pr_err("set_ctl: len %u != %u\n", > len, set_arglen[SET_CMDID(cmd)]); > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, > void __user *user, int *len) { > unsigned char arg[128]; > int ret = 0; > + unsigned int copylen; > > if (!capable(CAP_NET_ADMIN)) > return -EPERM; > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) > + return -EINVAL; > + > if (*len < get_arglen[GET_CMDID(cmd)]) { > pr_err("get_ctl: len %u < %u\n", > *len, get_arglen[GET_CMDID(cmd)]); > return -EINVAL; > } > > - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != > 0) > + copylen = get_arglen[GET_CMDID(cmd)]; > + if (copylen > 128) > + return -EINVAL; > + > + if (copy_from_user(arg, user, copylen) != 0) > return -EFAULT; > > if (mutex_lock_interruptible(&__ip_vs_mutex)) -- Arjan van de Ven Intel Open Source Technology Centre For development, discussion and tips for power savings, visit http://www.lesswatts.org ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-12-15 6:17 ` Arjan van de Ven @ 2009-12-15 6:32 ` Simon Horman 2009-12-24 4:16 ` Simon Horman 0 siblings, 1 reply; 10+ messages in thread From: Simon Horman @ 2009-12-15 6:32 UTC (permalink / raw) To: Arjan van de Ven; +Cc: Wensong Zhang, netdev, linux-kernel, Julian Anastasov On Mon, Dec 14, 2009 at 10:17:04PM -0800, Arjan van de Ven wrote: > On Wed, 30 Sep 2009 13:11:09 +0200 > Arjan van de Ven <arjan@infradead.org> wrote: > > ping on the patch below.... the warning is now triggered in mainline Hi Arjan, could you address the comments Julian made about this? http://lkml.indiana.edu/hypermail/linux/kernel/0910.0/00852.html OK, you can add my signed-off line after changing 'cmd > ...MAX + 1' to 'cmd > ...MAX' at both places, nf_sockopt_ops ranges are [optmin ... optmax) May be comments should be changed because: - i'm not the author but after ispection we do not see any holes, we do not want users to upgrade just for this change - the cmd checks are just to help code checking tools - the len checks should help programmers (may be BUG_ON is better, user does not deserve EINVAL for wrong set_arglen/get_arglen). Checks for *len and len are not needed. For example, for len checks this should be enough, before copy_from_user(): in do_ip_vs_get_ctl check can be BUG_ON(get_arglen[GET_CMDID(cmd)] > sizeof(arg)); in do_ip_vs_set_ctl check can be BUG_ON(set_arglen[SET_CMDID(cmd)] > sizeof(arg)); Acked-by: Julian Anastasov <ja@ssi.bg> > > >From 761a182f96b3707e1fee44e1079ba227e48745d1 Mon Sep 17 00:00:00 > > >2001 > > From: Arjan van de Ven <arjan@linux.intel.com> > > Date: Wed, 30 Sep 2009 13:05:51 +0200 > > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > > > The ipvs code has a nifty system for doing the size of ioctl command > > copies; it defines an array with values into which it indexes the cmd > > to find the right length. > > > > Unfortunately, the ipvs code forgot to check if the cmd was in the > > range that the array provides, allowing for an index outside of the > > array, which then gives a "garbage" result into the length, which > > then gets used for copying into a stack buffer. > > > > Fix this by adding sanity checks on these as well as the copy size. > > > > Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> > > --- > > net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- > > 1 files changed, 13 insertions(+), 1 deletions(-) > > > > diff --git a/net/netfilter/ipvs/ip_vs_ctl.c > > b/net/netfilter/ipvs/ip_vs_ctl.c index ac624e5..3c52796 100644 > > --- a/net/netfilter/ipvs/ip_vs_ctl.c > > +++ b/net/netfilter/ipvs/ip_vs_ctl.c > > @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, > > void __user *user, unsigned int len) if (!capable(CAP_NET_ADMIN)) > > return -EPERM; > > > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) > > + return -EINVAL; > > + if (len < 0 || len > MAX_ARG_LEN) > > + return -EINVAL; > > if (len != set_arglen[SET_CMDID(cmd)]) { > > pr_err("set_ctl: len %u != %u\n", > > len, set_arglen[SET_CMDID(cmd)]); > > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, > > void __user *user, int *len) { > > unsigned char arg[128]; > > int ret = 0; > > + unsigned int copylen; > > > > if (!capable(CAP_NET_ADMIN)) > > return -EPERM; > > > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) > > + return -EINVAL; > > + > > if (*len < get_arglen[GET_CMDID(cmd)]) { > > pr_err("get_ctl: len %u < %u\n", > > *len, get_arglen[GET_CMDID(cmd)]); > > return -EINVAL; > > } > > > > - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != > > 0) > > + copylen = get_arglen[GET_CMDID(cmd)]; > > + if (copylen > 128) > > + return -EINVAL; > > + > > + if (copy_from_user(arg, user, copylen) != 0) > > return -EFAULT; > > > > if (mutex_lock_interruptible(&__ip_vs_mutex)) > > > -- > Arjan van de Ven Intel Open Source Technology Centre > For development, discussion and tips for power savings, > visit http://www.lesswatts.org > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [PATCH] ipvs: Add boundary check on ioctl arguments 2009-12-15 6:32 ` Simon Horman @ 2009-12-24 4:16 ` Simon Horman 0 siblings, 0 replies; 10+ messages in thread From: Simon Horman @ 2009-12-24 4:16 UTC (permalink / raw) To: Arjan van de Ven; +Cc: Wensong Zhang, netdev, linux-kernel, Julian Anastasov On Tue, Dec 15, 2009 at 05:32:01PM +1100, Simon Horman wrote: > On Mon, Dec 14, 2009 at 10:17:04PM -0800, Arjan van de Ven wrote: > > On Wed, 30 Sep 2009 13:11:09 +0200 > > Arjan van de Ven <arjan@infradead.org> wrote: > > > > ping on the patch below.... the warning is now triggered in mainline > > Hi Arjan, > > could you address the comments Julian made about this? > http://lkml.indiana.edu/hypermail/linux/kernel/0910.0/00852.html > > OK, you can add my signed-off line after changing > 'cmd > ...MAX + 1' to 'cmd > ...MAX' at both > places, nf_sockopt_ops ranges are [optmin ... optmax) > > May be comments should be changed because: > > - i'm not the author but after ispection we do not see any holes, > we do not want users to upgrade just for this change > - the cmd checks are just to help code checking tools > - the len checks should help programmers (may be BUG_ON is > better, user does not deserve EINVAL for wrong set_arglen/get_arglen). > Checks for *len and len are not needed. > > For example, for len checks this should be enough, before > copy_from_user(): > > in do_ip_vs_get_ctl check can be > BUG_ON(get_arglen[GET_CMDID(cmd)] > sizeof(arg)); > > in do_ip_vs_set_ctl check can be > BUG_ON(set_arglen[SET_CMDID(cmd)] > sizeof(arg)); > > Acked-by: Julian Anastasov <ja@ssi.bg> Ping. While I agree with Julian that the patch you suggest below ought not to be necessary, I'm also happy with it if cmd > IP_VS_SO_SET_MAX + 1 is changed to cmd > IP_VS_SO_SET_MAX. > > > >From 761a182f96b3707e1fee44e1079ba227e48745d1 Mon Sep 17 00:00:00 > > > >2001 > > > From: Arjan van de Ven <arjan@linux.intel.com> > > > Date: Wed, 30 Sep 2009 13:05:51 +0200 > > > Subject: [PATCH] ipvs: Add boundary check on ioctl arguments > > > > > > The ipvs code has a nifty system for doing the size of ioctl command > > > copies; it defines an array with values into which it indexes the cmd > > > to find the right length. > > > > > > Unfortunately, the ipvs code forgot to check if the cmd was in the > > > range that the array provides, allowing for an index outside of the > > > array, which then gives a "garbage" result into the length, which > > > then gets used for copying into a stack buffer. > > > > > > Fix this by adding sanity checks on these as well as the copy size. > > > > > > Signed-off-by: Arjan van de Ven <arjan@linux.intel.com> > > > --- > > > net/netfilter/ipvs/ip_vs_ctl.c | 14 +++++++++++++- > > > 1 files changed, 13 insertions(+), 1 deletions(-) > > > > > > diff --git a/net/netfilter/ipvs/ip_vs_ctl.c > > > b/net/netfilter/ipvs/ip_vs_ctl.c index ac624e5..3c52796 100644 > > > --- a/net/netfilter/ipvs/ip_vs_ctl.c > > > +++ b/net/netfilter/ipvs/ip_vs_ctl.c > > > @@ -2077,6 +2077,10 @@ do_ip_vs_set_ctl(struct sock *sk, int cmd, > > > void __user *user, unsigned int len) if (!capable(CAP_NET_ADMIN)) > > > return -EPERM; > > > > > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_SET_MAX + 1) > > > + return -EINVAL; > > > + if (len < 0 || len > MAX_ARG_LEN) > > > + return -EINVAL; > > > if (len != set_arglen[SET_CMDID(cmd)]) { > > > pr_err("set_ctl: len %u != %u\n", > > > len, set_arglen[SET_CMDID(cmd)]); > > > @@ -2353,17 +2357,25 @@ do_ip_vs_get_ctl(struct sock *sk, int cmd, > > > void __user *user, int *len) { > > > unsigned char arg[128]; > > > int ret = 0; > > > + unsigned int copylen; > > > > > > if (!capable(CAP_NET_ADMIN)) > > > return -EPERM; > > > > > > + if (cmd < IP_VS_BASE_CTL || cmd > IP_VS_SO_GET_MAX + 1) > > > + return -EINVAL; > > > + > > > if (*len < get_arglen[GET_CMDID(cmd)]) { > > > pr_err("get_ctl: len %u < %u\n", > > > *len, get_arglen[GET_CMDID(cmd)]); > > > return -EINVAL; > > > } > > > > > > - if (copy_from_user(arg, user, get_arglen[GET_CMDID(cmd)]) != > > > 0) > > > + copylen = get_arglen[GET_CMDID(cmd)]; > > > + if (copylen > 128) > > > + return -EINVAL; > > > + > > > + if (copy_from_user(arg, user, copylen) != 0) > > > return -EFAULT; > > > > > > if (mutex_lock_interruptible(&__ip_vs_mutex)) > > > > > > -- > > Arjan van de Ven Intel Open Source Technology Centre > > For development, discussion and tips for power savings, > > visit http://www.lesswatts.org > > -- > > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > > the body of a message to majordomo@vger.kernel.org > > More majordomo info at http://vger.kernel.org/majordomo-info.html > > Please read the FAQ at http://www.tux.org/lkml/ > -- > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html > Please read the FAQ at http://www.tux.org/lkml/ ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2009-12-24 4:16 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-09-30 11:11 [PATCH] ipvs: Add boundary check on ioctl arguments Arjan van de Ven 2009-09-30 13:38 ` Hannes Eder 2009-09-30 15:18 ` Arjan van de Ven 2009-09-30 15:33 ` Hannes Eder 2009-09-30 19:41 ` Julian Anastasov 2009-10-01 7:22 ` Arjan van de Ven 2009-10-02 8:35 ` Julian Anastasov 2009-12-15 6:17 ` Arjan van de Ven 2009-12-15 6:32 ` Simon Horman 2009-12-24 4:16 ` Simon Horman
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox