mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-25 02:48:21 +00:00
mISDN: array underflow in open_bchannel()
There are two channels here. User space starts counting channels at one but in the kernel we start at zero. If the user passes in a zero channel that's invalid and could lead to memory corruption. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c54e9bd38a
commit
819a100846
@ -891,7 +891,7 @@ open_bchannel(struct fritzcard *fc, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -1962,7 +1962,7 @@ open_bchannel(struct hfc_pci *hc, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -486,7 +486,7 @@ open_bchannel(struct hfcsusb *hw, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -1506,7 +1506,7 @@ open_bchannel(struct ipac_hw *ipac, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -1670,7 +1670,7 @@ isar_open(struct isar_hw *isar, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -860,7 +860,7 @@ open_bchannel(struct tiger_hw *card, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
@ -1015,7 +1015,7 @@ open_bchannel(struct w6692_hw *card, struct channel_req *rq)
|
||||
{
|
||||
struct bchannel *bch;
|
||||
|
||||
if (rq->adr.channel > 2)
|
||||
if (rq->adr.channel == 0 || rq->adr.channel > 2)
|
||||
return -EINVAL;
|
||||
if (rq->protocol == ISDN_P_NONE)
|
||||
return -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user