diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-08-01 15:35:42 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-08-01 19:24:04 +0200 |
commit | ca85226a5e7df658084a771300b3394e15b811f1 (patch) | |
tree | 45a25e35e42c5912a4fc83fd03e61b8ddb9938bc /src/queueing.h | |
parent | 2ed11903fb8e9330f16699026e5b4f2ff156f803 (diff) |
queueing: keep reference to peer after setting atomic state bit
After we atomic_set, the peer is allowed to be freed, which means if we
want to continue to reference it, we need to bump the reference count.
This was introduced a few commits ago by b713ab0e when implementing some
simplification suggestions.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Diffstat (limited to 'src/queueing.h')
-rw-r--r-- | src/queueing.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/queueing.h b/src/queueing.h index 3fb7b5c..4967eef 100644 --- a/src/queueing.h +++ b/src/queueing.h @@ -132,14 +132,18 @@ static inline int queue_enqueue_per_device_and_peer(struct crypt_queue *device_q static inline void queue_enqueue_per_peer(struct crypt_queue *queue, struct sk_buff *skb, enum packet_state state) { + struct wireguard_peer *peer = peer_get(PACKET_PEER(skb)); atomic_set(&PACKET_CB(skb)->state, state); - queue_work_on(cpumask_choose_online(&PACKET_PEER(skb)->serial_work_cpu, PACKET_PEER(skb)->internal_id), PACKET_PEER(skb)->device->packet_crypt_wq, &queue->work); + queue_work_on(cpumask_choose_online(&peer->serial_work_cpu, peer->internal_id), peer->device->packet_crypt_wq, &queue->work); + peer_put(peer); } static inline void queue_enqueue_per_peer_napi(struct crypt_queue *queue, struct sk_buff *skb, enum packet_state state) { + struct wireguard_peer *peer = peer_get(PACKET_PEER(skb)); atomic_set(&PACKET_CB(skb)->state, state); - napi_schedule(&PACKET_PEER(skb)->napi); + napi_schedule(&peer->napi); + peer_put(peer); } #ifdef DEBUG |