aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWillem de Bruijn <willemb@google.com>2017-08-10 12:41:58 -0400
committerDavid S. Miller <davem@davemloft.net>2017-08-10 12:52:12 -0400
commitc27927e372f0785f3303e8fad94b85945e2c97b7 (patch)
tree3602b8aeb2cc349ba954d4ff17028d364e395c56
parent85f1bd9a7b5a79d5baa8bf44af19658f7bf77bfa (diff)
packet: fix tp_reserve race in packet_set_ring
Updates to tp_reserve can race with reads of the field in packet_set_ring. Avoid this by holding the socket lock during updates in setsockopt PACKET_RESERVE. This bug was discovered by syzkaller. Fixes: 8913336a7e8d ("packet: add PACKET_RESERVE sockopt") Reported-by: Andrey Konovalov <andreyknvl@google.com> Signed-off-by: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/packet/af_packet.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c
index 0615c2a950fa..008a45ca3112 100644
--- a/net/packet/af_packet.c
+++ b/net/packet/af_packet.c
@@ -3700,14 +3700,19 @@ packet_setsockopt(struct socket *sock, int level, int optname, char __user *optv
3700 3700
3701 if (optlen != sizeof(val)) 3701 if (optlen != sizeof(val))
3702 return -EINVAL; 3702 return -EINVAL;
3703 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec)
3704 return -EBUSY;
3705 if (copy_from_user(&val, optval, sizeof(val))) 3703 if (copy_from_user(&val, optval, sizeof(val)))
3706 return -EFAULT; 3704 return -EFAULT;
3707 if (val > INT_MAX) 3705 if (val > INT_MAX)
3708 return -EINVAL; 3706 return -EINVAL;
3709 po->tp_reserve = val; 3707 lock_sock(sk);
3710 return 0; 3708 if (po->rx_ring.pg_vec || po->tx_ring.pg_vec) {
3709 ret = -EBUSY;
3710 } else {
3711 po->tp_reserve = val;
3712 ret = 0;
3713 }
3714 release_sock(sk);
3715 return ret;
3711 } 3716 }
3712 case PACKET_LOSS: 3717 case PACKET_LOSS:
3713 { 3718 {