diff options
author | nikolay@redhat.com <nikolay@redhat.com> | 2013-02-18 02:59:02 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-02-19 00:51:08 -0500 |
commit | b59340c2c0508d280f10658ad662fa56a39c74c2 (patch) | |
tree | 459621b4f850ef838078bf1033cfd32bc0923acf /drivers/net/bonding | |
parent | ccae0e50c16a7f7adb029c169147400d1ce9f703 (diff) |
bonding: Fix race condition between bond_enslave() and bond_3ad_update_lacp_rate()
port->slave can be NULL since it's being initialized in bond_enslave
thus dereferencing a NULL pointer in bond_3ad_update_lacp_rate()
Also fix a minor bug, which could cause a port not to have
AD_STATE_LACP_TIMEOUT since there's no sync between
bond_3ad_update_lacp_rate() and bond_3ad_bind_slave(), by changing
the read_lock to a write_lock_bh in bond_3ad_update_lacp_rate().
Signed-off-by: Nikolay Aleksandrov <nikolay@redhat.com>
Signed-off-by: Jay Vosburgh <fubar@us.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r-- | drivers/net/bonding/bond_3ad.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_3ad.c b/drivers/net/bonding/bond_3ad.c index 84fabd69df4c..0e45b400b6fc 100644 --- a/drivers/net/bonding/bond_3ad.c +++ b/drivers/net/bonding/bond_3ad.c | |||
@@ -2494,11 +2494,13 @@ void bond_3ad_update_lacp_rate(struct bonding *bond) | |||
2494 | struct port *port = NULL; | 2494 | struct port *port = NULL; |
2495 | int lacp_fast; | 2495 | int lacp_fast; |
2496 | 2496 | ||
2497 | read_lock(&bond->lock); | 2497 | write_lock_bh(&bond->lock); |
2498 | lacp_fast = bond->params.lacp_fast; | 2498 | lacp_fast = bond->params.lacp_fast; |
2499 | 2499 | ||
2500 | bond_for_each_slave(bond, slave, i) { | 2500 | bond_for_each_slave(bond, slave, i) { |
2501 | port = &(SLAVE_AD_INFO(slave).port); | 2501 | port = &(SLAVE_AD_INFO(slave).port); |
2502 | if (port->slave == NULL) | ||
2503 | continue; | ||
2502 | __get_state_machine_lock(port); | 2504 | __get_state_machine_lock(port); |
2503 | if (lacp_fast) | 2505 | if (lacp_fast) |
2504 | port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT; | 2506 | port->actor_oper_port_state |= AD_STATE_LACP_TIMEOUT; |
@@ -2507,5 +2509,5 @@ void bond_3ad_update_lacp_rate(struct bonding *bond) | |||
2507 | __release_state_machine_lock(port); | 2509 | __release_state_machine_lock(port); |
2508 | } | 2510 | } |
2509 | 2511 | ||
2510 | read_unlock(&bond->lock); | 2512 | write_unlock_bh(&bond->lock); |
2511 | } | 2513 | } |