Skip to content

Commit 9efade1

Browse files
jkivilinherbertx
authored andcommitted
crypto: cryptd - disable softirqs in cryptd_queue_worker to prevent data corruption
cryptd_queue_worker attempts to prevent simultaneous accesses to crypto workqueue by cryptd_enqueue_request using preempt_disable/preempt_enable. However cryptd_enqueue_request might be called from softirq context, so add local_bh_disable/local_bh_enable to prevent data corruption and panics. Bug report at http://marc.info/?l=linux-crypto-vger&m=134858649616319&w=2 v2: - Disable software interrupts instead of hardware interrupts Cc: [email protected] Reported-by: Gurucharan Shetty <[email protected]> Signed-off-by: Jussi Kivilinna <[email protected]> Signed-off-by: Herbert Xu <[email protected]>
1 parent ddffeb8 commit 9efade1

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

crypto/cryptd.c

+8-3
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,18 @@ static void cryptd_queue_worker(struct work_struct *work)
137137
struct crypto_async_request *req, *backlog;
138138

139139
cpu_queue = container_of(work, struct cryptd_cpu_queue, work);
140-
/* Only handle one request at a time to avoid hogging crypto
141-
* workqueue. preempt_disable/enable is used to prevent
142-
* being preempted by cryptd_enqueue_request() */
140+
/*
141+
* Only handle one request at a time to avoid hogging crypto workqueue.
142+
* preempt_disable/enable is used to prevent being preempted by
143+
* cryptd_enqueue_request(). local_bh_disable/enable is used to prevent
144+
* cryptd_enqueue_request() being accessed from software interrupts.
145+
*/
146+
local_bh_disable();
143147
preempt_disable();
144148
backlog = crypto_get_backlog(&cpu_queue->queue);
145149
req = crypto_dequeue_request(&cpu_queue->queue);
146150
preempt_enable();
151+
local_bh_enable();
147152

148153
if (!req)
149154
return;

0 commit comments

Comments
 (0)