wan/x25_asy: integer overflow in x25_asy_change_mtu()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 17 Jul 2014 10:50:45 +0000 (13:50 +0300)
committerDavid S. Miller <davem@davemloft.net>
Thu, 17 Jul 2014 23:47:50 +0000 (16:47 -0700)
If "newmtu * 2 + 4" is too large then it can cause an integer overflow
leading to memory corruption.  Eric Dumazet suggests that 65534 is a
reasonable upper limit.

Btw, "newmtu" is not allowed to be a negative number because of the
check in dev_set_mtu(), so that's ok.

Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

No differences found