summaryrefslogtreecommitdiff
path: root/drivers/staging/greybus/operation.c
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-05-18 15:47:48 +0200
committerGreg Kroah-Hartman <gregkh@google.com>2016-05-18 16:30:52 -0700
commitef62adae82524c745640850f62ab0dfe0b580c9f (patch)
tree4a1b53545933d6653a1fa604c8cb6e5925aa097d /drivers/staging/greybus/operation.c
parentb0e97bce153a416c4de4841078fba57b69de10f5 (diff)
greybus: operation: fix broken activation logic
An operation should only be added to the connection active list if the connection is in the enabled state, or if it is in the enabled_tx state and the operation is not incoming. This fixes a race where an early or late incoming request could be added to the active list while the connection is being enabled or disabled, something which could lead to use-after-free issues or worse. Note that the early connection-state checks in the receive path limited the impact of this bug. Fixes: e903a2ce7379 ("connection: add unidirectional enabled state") Reported-by: Alex Elder <elder@linaro.org> Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/operation.c')
-rw-r--r--drivers/staging/greybus/operation.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/greybus/operation.c b/drivers/staging/greybus/operation.c
index 31df413f5901..b7cc59d0a252 100644
--- a/drivers/staging/greybus/operation.c
+++ b/drivers/staging/greybus/operation.c
@@ -48,8 +48,8 @@ static int gb_operation_get_active(struct gb_operation *operation)
spin_lock_irqsave(&connection->lock, flags);
if (connection->state != GB_CONNECTION_STATE_ENABLED &&
- connection->state != GB_CONNECTION_STATE_ENABLED_TX &&
- !gb_operation_is_incoming(operation)) {
+ (connection->state != GB_CONNECTION_STATE_ENABLED_TX ||
+ gb_operation_is_incoming(operation))) {
spin_unlock_irqrestore(&connection->lock, flags);
return -ENOTCONN;
}