staging: vt6656: integer overflows in private_ioctl()
There are two potential integer overflows in private_ioctl() if userspace passes in a large sList.uItem / sNodeList.uItem. The subsequent call to kmalloc() would allocate a small buffer, leading to a memory corruption. Reported-by: Dan Rosenberg <drosenberg@vsecurity.com> Signed-off-by: Xi Wang <xi.wang@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
2a58b19fd9
commit
201320435d
@ -295,6 +295,10 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq)
|
|||||||
result = -EFAULT;
|
result = -EFAULT;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (sList.uItem > (ULONG_MAX - sizeof(SBSSIDList)) / sizeof(SBSSIDItem)) {
|
||||||
|
result = -EINVAL;
|
||||||
|
break;
|
||||||
|
}
|
||||||
pList = (PSBSSIDList)kmalloc(sizeof(SBSSIDList) + (sList.uItem * sizeof(SBSSIDItem)), (int)GFP_ATOMIC);
|
pList = (PSBSSIDList)kmalloc(sizeof(SBSSIDList) + (sList.uItem * sizeof(SBSSIDItem)), (int)GFP_ATOMIC);
|
||||||
if (pList == NULL) {
|
if (pList == NULL) {
|
||||||
result = -ENOMEM;
|
result = -ENOMEM;
|
||||||
@ -557,6 +561,10 @@ int private_ioctl(PSDevice pDevice, struct ifreq *rq)
|
|||||||
result = -EFAULT;
|
result = -EFAULT;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
if (sNodeList.uItem > (ULONG_MAX - sizeof(SNodeList)) / sizeof(SNodeItem)) {
|
||||||
|
result = -ENOMEM;
|
||||||
|
break;
|
||||||
|
}
|
||||||
pNodeList = (PSNodeList)kmalloc(sizeof(SNodeList) + (sNodeList.uItem * sizeof(SNodeItem)), (int)GFP_ATOMIC);
|
pNodeList = (PSNodeList)kmalloc(sizeof(SNodeList) + (sNodeList.uItem * sizeof(SNodeItem)), (int)GFP_ATOMIC);
|
||||||
if (pNodeList == NULL) {
|
if (pNodeList == NULL) {
|
||||||
result = -ENOMEM;
|
result = -ENOMEM;
|
||||||
|
Loading…
Reference in New Issue
Block a user