* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 9:08 ` Chunfeng Yun 0 siblings, 0 replies; 28+ messages in thread From: Chunfeng Yun @ 2016-04-08 9:08 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Chunfeng Yun, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r NULL pointer dereferrence will happen when class driver wants to allocate zero length buffer and pool_max[0] can't be used, so skip reserved pool in this case. Signed-off-by: Chunfeng Yun <chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> --- drivers/usb/core/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c index 2741566..c8f958b 100644 --- a/drivers/usb/core/buffer.c +++ b/drivers/usb/core/buffer.c @@ -131,7 +131,7 @@ void *hcd_buffer_alloc( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) + if (pool_max[i] && size <= pool_max[i]) return dma_pool_alloc(hcd->pool[i], mem_flags, dma); } return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); @@ -158,7 +158,7 @@ void hcd_buffer_free( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) { + if (pool_max[i] && size <= pool_max[i]) { dma_pool_free(hcd->pool[i], addr, dma); return; } -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 9:08 ` Chunfeng Yun 0 siblings, 0 replies; 28+ messages in thread From: Chunfeng Yun @ 2016-04-08 9:08 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Chunfeng Yun, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek NULL pointer dereferrence will happen when class driver wants to allocate zero length buffer and pool_max[0] can't be used, so skip reserved pool in this case. Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> --- drivers/usb/core/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c index 2741566..c8f958b 100644 --- a/drivers/usb/core/buffer.c +++ b/drivers/usb/core/buffer.c @@ -131,7 +131,7 @@ void *hcd_buffer_alloc( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) + if (pool_max[i] && size <= pool_max[i]) return dma_pool_alloc(hcd->pool[i], mem_flags, dma); } return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); @@ -158,7 +158,7 @@ void hcd_buffer_free( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) { + if (pool_max[i] && size <= pool_max[i]) { dma_pool_free(hcd->pool[i], addr, dma); return; } -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 9:08 ` Chunfeng Yun 0 siblings, 0 replies; 28+ messages in thread From: Chunfeng Yun @ 2016-04-08 9:08 UTC (permalink / raw) To: linux-arm-kernel NULL pointer dereferrence will happen when class driver wants to allocate zero length buffer and pool_max[0] can't be used, so skip reserved pool in this case. Signed-off-by: Chunfeng Yun <chunfeng.yun@mediatek.com> --- drivers/usb/core/buffer.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/usb/core/buffer.c b/drivers/usb/core/buffer.c index 2741566..c8f958b 100644 --- a/drivers/usb/core/buffer.c +++ b/drivers/usb/core/buffer.c @@ -131,7 +131,7 @@ void *hcd_buffer_alloc( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) + if (pool_max[i] && size <= pool_max[i]) return dma_pool_alloc(hcd->pool[i], mem_flags, dma); } return dma_alloc_coherent(hcd->self.controller, size, dma, mem_flags); @@ -158,7 +158,7 @@ void hcd_buffer_free( } for (i = 0; i < HCD_BUFFER_POOLS; i++) { - if (size <= pool_max[i]) { + if (pool_max[i] && size <= pool_max[i]) { dma_pool_free(hcd->pool[i], addr, dma); return; } -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 28+ messages in thread
[parent not found: <1460106483-24793-1-git-send-email-chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>]
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-08 9:08 ` Chunfeng Yun (?) @ 2016-04-08 14:07 ` Greg Kroah-Hartman -1 siblings, 0 replies; 28+ messages in thread From: Greg Kroah-Hartman @ 2016-04-08 14:07 UTC (permalink / raw) To: Chunfeng Yun Cc: linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > NULL pointer dereferrence will happen when class driver > wants to allocate zero length buffer and pool_max[0] > can't be used, so skip reserved pool in this case. Why would a driver want to allocate a 0 length buffer? What driver does this? Shouldn't we fix that issue instead? thanks, greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 14:07 ` Greg Kroah-Hartman 0 siblings, 0 replies; 28+ messages in thread From: Greg Kroah-Hartman @ 2016-04-08 14:07 UTC (permalink / raw) To: Chunfeng Yun; +Cc: linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > NULL pointer dereferrence will happen when class driver > wants to allocate zero length buffer and pool_max[0] > can't be used, so skip reserved pool in this case. Why would a driver want to allocate a 0 length buffer? What driver does this? Shouldn't we fix that issue instead? thanks, greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 14:07 ` Greg Kroah-Hartman 0 siblings, 0 replies; 28+ messages in thread From: Greg Kroah-Hartman @ 2016-04-08 14:07 UTC (permalink / raw) To: linux-arm-kernel On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > NULL pointer dereferrence will happen when class driver > wants to allocate zero length buffer and pool_max[0] > can't be used, so skip reserved pool in this case. Why would a driver want to allocate a 0 length buffer? What driver does this? Shouldn't we fix that issue instead? thanks, greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
[parent not found: <20160408140701.GA3547-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-08 14:07 ` Greg Kroah-Hartman (?) @ 2016-04-08 15:21 ` Alan Stern -1 siblings, 0 replies; 28+ messages in thread From: Alan Stern @ 2016-04-08 15:21 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Chunfeng Yun, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? > > Shouldn't we fix that issue instead? And even if a driver does want to allocate a 0-length buffer, shouldn't the function simply return early instead of running through all its calculations? Alan Stern -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 15:21 ` Alan Stern 0 siblings, 0 replies; 28+ messages in thread From: Alan Stern @ 2016-04-08 15:21 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Chunfeng Yun, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? > > Shouldn't we fix that issue instead? And even if a driver does want to allocate a 0-length buffer, shouldn't the function simply return early instead of running through all its calculations? Alan Stern ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-08 15:21 ` Alan Stern 0 siblings, 0 replies; 28+ messages in thread From: Alan Stern @ 2016-04-08 15:21 UTC (permalink / raw) To: linux-arm-kernel On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? > > Shouldn't we fix that issue instead? And even if a driver does want to allocate a 0-length buffer, shouldn't the function simply return early instead of running through all its calculations? Alan Stern ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-08 15:21 ` Alan Stern @ 2016-04-26 23:11 ` Greg Kroah-Hartman -1 siblings, 0 replies; 28+ messages in thread From: Greg Kroah-Hartman @ 2016-04-26 23:11 UTC (permalink / raw) To: Alan Stern Cc: Chunfeng Yun, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Fri, Apr 08, 2016 at 11:21:05AM -0400, Alan Stern wrote: > On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > > > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > > NULL pointer dereferrence will happen when class driver > > > wants to allocate zero length buffer and pool_max[0] > > > can't be used, so skip reserved pool in this case. > > > > Why would a driver want to allocate a 0 length buffer? What driver does > > this? > > > > Shouldn't we fix that issue instead? > > And even if a driver does want to allocate a 0-length buffer, shouldn't > the function simply return early instead of running through all its > calculations? Yes it should, Chunfeng, can you fix this patch to do that please. thanks, greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-26 23:11 ` Greg Kroah-Hartman 0 siblings, 0 replies; 28+ messages in thread From: Greg Kroah-Hartman @ 2016-04-26 23:11 UTC (permalink / raw) To: linux-arm-kernel On Fri, Apr 08, 2016 at 11:21:05AM -0400, Alan Stern wrote: > On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > > > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > > NULL pointer dereferrence will happen when class driver > > > wants to allocate zero length buffer and pool_max[0] > > > can't be used, so skip reserved pool in this case. > > > > Why would a driver want to allocate a 0 length buffer? What driver does > > this? > > > > Shouldn't we fix that issue instead? > > And even if a driver does want to allocate a 0-length buffer, shouldn't > the function simply return early instead of running through all its > calculations? Yes it should, Chunfeng, can you fix this patch to do that please. thanks, greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
[parent not found: <20160426231115.GB23273-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-26 23:11 ` Greg Kroah-Hartman (?) @ 2016-04-27 1:32 ` chunfeng yun -1 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-27 1:32 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Alan Stern, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r Hi, On Tue, 2016-04-26 at 16:11 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 11:21:05AM -0400, Alan Stern wrote: > > On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > > > > > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > > > NULL pointer dereferrence will happen when class driver > > > > wants to allocate zero length buffer and pool_max[0] > > > > can't be used, so skip reserved pool in this case. > > > > > > Why would a driver want to allocate a 0 length buffer? What driver does > > > this? > > > > > > Shouldn't we fix that issue instead? > > > > And even if a driver does want to allocate a 0-length buffer, shouldn't > > the function simply return early instead of running through all its > > calculations? > > Yes it should, Chunfeng, can you fix this patch to do that please. > Ok, I will fix it later > thanks, > > greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-27 1:32 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-27 1:32 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: Alan Stern, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek Hi, On Tue, 2016-04-26 at 16:11 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 11:21:05AM -0400, Alan Stern wrote: > > On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > > > > > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > > > NULL pointer dereferrence will happen when class driver > > > > wants to allocate zero length buffer and pool_max[0] > > > > can't be used, so skip reserved pool in this case. > > > > > > Why would a driver want to allocate a 0 length buffer? What driver does > > > this? > > > > > > Shouldn't we fix that issue instead? > > > > And even if a driver does want to allocate a 0-length buffer, shouldn't > > the function simply return early instead of running through all its > > calculations? > > Yes it should, Chunfeng, can you fix this patch to do that please. > Ok, I will fix it later > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-27 1:32 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-27 1:32 UTC (permalink / raw) To: linux-arm-kernel Hi, On Tue, 2016-04-26 at 16:11 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 11:21:05AM -0400, Alan Stern wrote: > > On Fri, 8 Apr 2016, Greg Kroah-Hartman wrote: > > > > > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > > > NULL pointer dereferrence will happen when class driver > > > > wants to allocate zero length buffer and pool_max[0] > > > > can't be used, so skip reserved pool in this case. > > > > > > Why would a driver want to allocate a 0 length buffer? What driver does > > > this? > > > > > > Shouldn't we fix that issue instead? > > > > And even if a driver does want to allocate a 0-length buffer, shouldn't > > the function simply return early instead of running through all its > > calculations? > > Yes it should, Chunfeng, can you fix this patch to do that please. > Ok, I will fix it later > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-08 14:07 ` Greg Kroah-Hartman (?) @ 2016-04-11 3:01 ` chunfeng yun -1 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 3:01 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? It's misc/usbtest.c > > Shouldn't we fix that issue instead? I don't know which way is better, but it seems simple to fix it up in buffer.c > > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 3:01 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 3:01 UTC (permalink / raw) To: Greg Kroah-Hartman Cc: linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? It's misc/usbtest.c > > Shouldn't we fix that issue instead? I don't know which way is better, but it seems simple to fix it up in buffer.c > > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 3:01 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 3:01 UTC (permalink / raw) To: linux-arm-kernel On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > NULL pointer dereferrence will happen when class driver > > wants to allocate zero length buffer and pool_max[0] > > can't be used, so skip reserved pool in this case. > > Why would a driver want to allocate a 0 length buffer? What driver does > this? It's misc/usbtest.c > > Shouldn't we fix that issue instead? I don't know which way is better, but it seems simple to fix it up in buffer.c > > thanks, > > greg k-h ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-11 3:01 ` chunfeng yun (?) @ 2016-04-11 5:07 ` Felipe Balbi -1 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 5:07 UTC (permalink / raw) To: chunfeng yun, Greg Kroah-Hartman Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r [-- Attachment #1: Type: text/plain, Size: 912 bytes --] Hi, chunfeng yun <chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> writes: > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> > NULL pointer dereferrence will happen when class driver >> > wants to allocate zero length buffer and pool_max[0] >> > can't be used, so skip reserved pool in this case. >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> this? > It's misc/usbtest.c that'll do what you ask it to do with the userspace tool testusb. Are you trying to pass a size of 0 ? >> Shouldn't we fix that issue instead? > I don't know which way is better, but it seems simple to fix it up in > buffer.c I think we should, really, avoid a 0-length allocation, but passing a size of 0 to testusb isn't very good either ;-) How are you calling testusb ? -- balbi [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 818 bytes --] ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 5:07 ` Felipe Balbi 0 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 5:07 UTC (permalink / raw) To: chunfeng yun, Greg Kroah-Hartman Cc: linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek [-- Attachment #1: Type: text/plain, Size: 885 bytes --] Hi, chunfeng yun <chunfeng.yun@mediatek.com> writes: > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> > NULL pointer dereferrence will happen when class driver >> > wants to allocate zero length buffer and pool_max[0] >> > can't be used, so skip reserved pool in this case. >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> this? > It's misc/usbtest.c that'll do what you ask it to do with the userspace tool testusb. Are you trying to pass a size of 0 ? >> Shouldn't we fix that issue instead? > I don't know which way is better, but it seems simple to fix it up in > buffer.c I think we should, really, avoid a 0-length allocation, but passing a size of 0 to testusb isn't very good either ;-) How are you calling testusb ? -- balbi [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 818 bytes --] ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 5:07 ` Felipe Balbi 0 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 5:07 UTC (permalink / raw) To: linux-arm-kernel Hi, chunfeng yun <chunfeng.yun@mediatek.com> writes: > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> > NULL pointer dereferrence will happen when class driver >> > wants to allocate zero length buffer and pool_max[0] >> > can't be used, so skip reserved pool in this case. >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> this? > It's misc/usbtest.c that'll do what you ask it to do with the userspace tool testusb. Are you trying to pass a size of 0 ? >> Shouldn't we fix that issue instead? > I don't know which way is better, but it seems simple to fix it up in > buffer.c I think we should, really, avoid a 0-length allocation, but passing a size of 0 to testusb isn't very good either ;-) How are you calling testusb ? -- balbi -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160411/f31cbb2b/attachment.sig> ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-11 5:07 ` Felipe Balbi (?) @ 2016-04-11 7:16 ` chunfeng yun -1 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 7:16 UTC (permalink / raw) To: Felipe Balbi Cc: Greg Kroah-Hartman, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Mon, 2016-04-11 at 08:07 +0300, Felipe Balbi wrote: > Hi, > > chunfeng yun <chunfeng.yun@mediatek.com> writes: > > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > >> > NULL pointer dereferrence will happen when class driver > >> > wants to allocate zero length buffer and pool_max[0] > >> > can't be used, so skip reserved pool in this case. > >> > >> Why would a driver want to allocate a 0 length buffer? What driver does > >> this? > > It's misc/usbtest.c > > that'll do what you ask it to do with the userspace tool testusb. Are > you trying to pass a size of 0 ? > No, I just ran "testusb -t10" which called test_ctrl_queue(). In this function, sub-case 8 passed a parameter @len as 0 to simple_alloc_urb(), and then it tried to allocate a 0-length buffer. > >> Shouldn't we fix that issue instead? > > I don't know which way is better, but it seems simple to fix it up in > > buffer.c > > I think we should, really, avoid a 0-length allocation, but passing a > size of 0 to testusb isn't very good either ;-) How are you calling > testusb ? > As explained above. ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 7:16 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 7:16 UTC (permalink / raw) To: Felipe Balbi Cc: Greg Kroah-Hartman, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Mon, 2016-04-11 at 08:07 +0300, Felipe Balbi wrote: > Hi, > > chunfeng yun <chunfeng.yun@mediatek.com> writes: > > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > >> > NULL pointer dereferrence will happen when class driver > >> > wants to allocate zero length buffer and pool_max[0] > >> > can't be used, so skip reserved pool in this case. > >> > >> Why would a driver want to allocate a 0 length buffer? What driver does > >> this? > > It's misc/usbtest.c > > that'll do what you ask it to do with the userspace tool testusb. Are > you trying to pass a size of 0 ? > No, I just ran "testusb -t10" which called test_ctrl_queue(). In this function, sub-case 8 passed a parameter @len as 0 to simple_alloc_urb(), and then it tried to allocate a 0-length buffer. > >> Shouldn't we fix that issue instead? > > I don't know which way is better, but it seems simple to fix it up in > > buffer.c > > I think we should, really, avoid a 0-length allocation, but passing a > size of 0 to testusb isn't very good either ;-) How are you calling > testusb ? > As explained above. ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 7:16 ` chunfeng yun 0 siblings, 0 replies; 28+ messages in thread From: chunfeng yun @ 2016-04-11 7:16 UTC (permalink / raw) To: linux-arm-kernel On Mon, 2016-04-11 at 08:07 +0300, Felipe Balbi wrote: > Hi, > > chunfeng yun <chunfeng.yun@mediatek.com> writes: > > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > >> > NULL pointer dereferrence will happen when class driver > >> > wants to allocate zero length buffer and pool_max[0] > >> > can't be used, so skip reserved pool in this case. > >> > >> Why would a driver want to allocate a 0 length buffer? What driver does > >> this? > > It's misc/usbtest.c > > that'll do what you ask it to do with the userspace tool testusb. Are > you trying to pass a size of 0 ? > No, I just ran "testusb -t10" which called test_ctrl_queue(). In this function, sub-case 8 passed a parameter @len as 0 to simple_alloc_urb(), and then it tried to allocate a 0-length buffer. > >> Shouldn't we fix that issue instead? > > I don't know which way is better, but it seems simple to fix it up in > > buffer.c > > I think we should, really, avoid a 0-length allocation, but passing a > size of 0 to testusb isn't very good either ;-) How are you calling > testusb ? > As explained above. ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-11 7:16 ` chunfeng yun (?) @ 2016-04-11 8:24 ` Felipe Balbi -1 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 8:24 UTC (permalink / raw) To: chunfeng yun Cc: Greg Kroah-Hartman, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r [-- Attachment #1: Type: text/plain, Size: 953 bytes --] Hi, chunfeng yun <chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> writes: >> > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> >> > NULL pointer dereferrence will happen when class driver >> >> > wants to allocate zero length buffer and pool_max[0] >> >> > can't be used, so skip reserved pool in this case. >> >> >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> >> this? >> > It's misc/usbtest.c >> >> that'll do what you ask it to do with the userspace tool testusb. Are >> you trying to pass a size of 0 ? >> > No, I just ran "testusb -t10" which called test_ctrl_queue(). > In this function, sub-case 8 passed a parameter @len as 0 to > simple_alloc_urb(), and then it tried to allocate a 0-length buffer. odd, I have never seen this problem running testusb with the same arguments. -- balbi [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 818 bytes --] ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 8:24 ` Felipe Balbi 0 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 8:24 UTC (permalink / raw) To: chunfeng yun Cc: Greg Kroah-Hartman, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek [-- Attachment #1: Type: text/plain, Size: 926 bytes --] Hi, chunfeng yun <chunfeng.yun@mediatek.com> writes: >> > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> >> > NULL pointer dereferrence will happen when class driver >> >> > wants to allocate zero length buffer and pool_max[0] >> >> > can't be used, so skip reserved pool in this case. >> >> >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> >> this? >> > It's misc/usbtest.c >> >> that'll do what you ask it to do with the userspace tool testusb. Are >> you trying to pass a size of 0 ? >> > No, I just ran "testusb -t10" which called test_ctrl_queue(). > In this function, sub-case 8 passed a parameter @len as 0 to > simple_alloc_urb(), and then it tried to allocate a 0-length buffer. odd, I have never seen this problem running testusb with the same arguments. -- balbi [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 818 bytes --] ^ permalink raw reply [flat|nested] 28+ messages in thread
* [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 8:24 ` Felipe Balbi 0 siblings, 0 replies; 28+ messages in thread From: Felipe Balbi @ 2016-04-11 8:24 UTC (permalink / raw) To: linux-arm-kernel Hi, chunfeng yun <chunfeng.yun@mediatek.com> writes: >> > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: >> >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: >> >> > NULL pointer dereferrence will happen when class driver >> >> > wants to allocate zero length buffer and pool_max[0] >> >> > can't be used, so skip reserved pool in this case. >> >> >> >> Why would a driver want to allocate a 0 length buffer? What driver does >> >> this? >> > It's misc/usbtest.c >> >> that'll do what you ask it to do with the userspace tool testusb. Are >> you trying to pass a size of 0 ? >> > No, I just ran "testusb -t10" which called test_ctrl_queue(). > In this function, sub-case 8 passed a parameter @len as 0 to > simple_alloc_urb(), and then it tried to allocate a 0-length buffer. odd, I have never seen this problem running testusb with the same arguments. -- balbi -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 818 bytes Desc: not available URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20160411/abb676eb/attachment.sig> ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence 2016-04-11 7:16 ` chunfeng yun @ 2016-04-11 14:44 ` Alan Stern -1 siblings, 0 replies; 28+ messages in thread From: Alan Stern @ 2016-04-11 14:44 UTC (permalink / raw) To: chunfeng yun Cc: Felipe Balbi, Greg Kroah-Hartman, linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-usb-u79uwXL29TY76Z2rM5mHXA, linux-mediatek-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r On Mon, 11 Apr 2016, chunfeng yun wrote: > On Mon, 2016-04-11 at 08:07 +0300, Felipe Balbi wrote: > > Hi, > > > > chunfeng yun <chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org> writes: > > > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > > >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > >> > NULL pointer dereferrence will happen when class driver > > >> > wants to allocate zero length buffer and pool_max[0] > > >> > can't be used, so skip reserved pool in this case. > > >> > > >> Why would a driver want to allocate a 0 length buffer? What driver does > > >> this? > > > It's misc/usbtest.c > > > > that'll do what you ask it to do with the userspace tool testusb. Are > > you trying to pass a size of 0 ? > > > No, I just ran "testusb -t10" which called test_ctrl_queue(). > In this function, sub-case 8 passed a parameter @len as 0 to > simple_alloc_urb(), and then it tried to allocate a 0-length buffer. That should be easy enough to fix. Just skip the calls that allocate the buffer if the length would be 0. Alan Stern -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 28+ messages in thread
* Re: [PATCH] usb: core: buffer: avoid NULL pointer dereferrence @ 2016-04-11 14:44 ` Alan Stern 0 siblings, 0 replies; 28+ messages in thread From: Alan Stern @ 2016-04-11 14:44 UTC (permalink / raw) To: chunfeng yun Cc: Felipe Balbi, Greg Kroah-Hartman, linux-kernel, linux-arm-kernel, linux-usb, linux-mediatek On Mon, 11 Apr 2016, chunfeng yun wrote: > On Mon, 2016-04-11 at 08:07 +0300, Felipe Balbi wrote: > > Hi, > > > > chunfeng yun <chunfeng.yun@mediatek.com> writes: > > > On Fri, 2016-04-08 at 07:07 -0700, Greg Kroah-Hartman wrote: > > >> On Fri, Apr 08, 2016 at 05:08:03PM +0800, Chunfeng Yun wrote: > > >> > NULL pointer dereferrence will happen when class driver > > >> > wants to allocate zero length buffer and pool_max[0] > > >> > can't be used, so skip reserved pool in this case. > > >> > > >> Why would a driver want to allocate a 0 length buffer? What driver does > > >> this? > > > It's misc/usbtest.c > > > > that'll do what you ask it to do with the userspace tool testusb. Are > > you trying to pass a size of 0 ? > > > No, I just ran "testusb -t10" which called test_ctrl_queue(). > In this function, sub-case 8 passed a parameter @len as 0 to > simple_alloc_urb(), and then it tried to allocate a 0-length buffer. That should be easy enough to fix. Just skip the calls that allocate the buffer if the length would be 0. Alan Stern ^ permalink raw reply [flat|nested] 28+ messages in thread
end of thread, other threads:[~2016-04-27 1:32 UTC | newest]
Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-08 9:08 [PATCH] usb: core: buffer: avoid NULL pointer dereferrence Chunfeng Yun
2016-04-08 9:08 ` Chunfeng Yun
2016-04-08 9:08 ` Chunfeng Yun
[not found] ` <1460106483-24793-1-git-send-email-chunfeng.yun-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
2016-04-08 14:07 ` Greg Kroah-Hartman
2016-04-08 14:07 ` Greg Kroah-Hartman
2016-04-08 14:07 ` Greg Kroah-Hartman
[not found] ` <20160408140701.GA3547-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2016-04-08 15:21 ` Alan Stern
2016-04-08 15:21 ` Alan Stern
2016-04-08 15:21 ` Alan Stern
2016-04-26 23:11 ` Greg Kroah-Hartman
2016-04-26 23:11 ` Greg Kroah-Hartman
[not found] ` <20160426231115.GB23273-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2016-04-27 1:32 ` chunfeng yun
2016-04-27 1:32 ` chunfeng yun
2016-04-27 1:32 ` chunfeng yun
2016-04-11 3:01 ` chunfeng yun
2016-04-11 3:01 ` chunfeng yun
2016-04-11 3:01 ` chunfeng yun
2016-04-11 5:07 ` Felipe Balbi
2016-04-11 5:07 ` Felipe Balbi
2016-04-11 5:07 ` Felipe Balbi
2016-04-11 7:16 ` chunfeng yun
2016-04-11 7:16 ` chunfeng yun
2016-04-11 7:16 ` chunfeng yun
2016-04-11 8:24 ` Felipe Balbi
2016-04-11 8:24 ` Felipe Balbi
2016-04-11 8:24 ` Felipe Balbi
2016-04-11 14:44 ` Alan Stern
2016-04-11 14:44 ` Alan Stern
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.