aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2016-11-07 20:59:20 +0100
committerJason A. Donenfeld <Jason@zx2c4.com>2016-11-07 20:59:20 +0100
commit07ced7dfde54492e5493d15874c553042cf255e2 (patch)
tree0cfcfe2493be3a3a255447c6ce1d854ce6e6ec36 /src
parentchacha20poly1305: it's just as fast to use these more simple unaligned access helpers (diff)
downloadwireguard-monolithic-historical-07ced7dfde54492e5493d15874c553042cf255e2.tar.xz
wireguard-monolithic-historical-07ced7dfde54492e5493d15874c553042cf255e2.zip
send: simplify handshake initiation queueing and introduce lock
Diffstat (limited to '')
-rw-r--r--src/packets.h9
-rw-r--r--src/receive.c2
-rw-r--r--src/send.c56
-rw-r--r--src/timers.c10
4 files changed, 41 insertions, 36 deletions
diff --git a/src/packets.h b/src/packets.h
index 03ba891..c491640 100644
--- a/src/packets.h
+++ b/src/packets.h
@@ -24,18 +24,15 @@ struct sk_buff;
/* receive.c */
void packet_receive(struct wireguard_device *wg, struct sk_buff *skb);
+void packet_process_queued_handshake_packets(struct work_struct *work);
/* send.c */
int packet_send_queue(struct wireguard_peer *peer);
void packet_send_keepalive(struct wireguard_peer *peer);
-void packet_send_handshake_initiation(struct wireguard_peer *peer);
+void packet_queue_handshake_initiation(struct wireguard_peer *peer);
+void packet_send_queued_handshakes(struct work_struct *work);
void packet_send_handshake_response(struct wireguard_peer *peer);
void packet_send_handshake_cookie(struct wireguard_device *wg, struct sk_buff *initiating_skb, void *data, size_t data_len, __le32 sender_index);
-void packet_send_handshake_initiation_ratelimited(struct wireguard_peer *peer);
-
-void packet_queue_send_handshake_initiation(struct wireguard_peer *peer);
-void packet_process_queued_handshake_packets(struct work_struct *work);
-void packet_send_queued_handshakes(struct work_struct *work);
/* data.c */
diff --git a/src/receive.c b/src/receive.c
index 8a9ff3d..9f5c3d1 100644
--- a/src/receive.c
+++ b/src/receive.c
@@ -198,7 +198,7 @@ static void keep_key_fresh(struct wireguard_peer *peer)
if (send) {
peer->sent_lastminute_handshake = true;
- packet_send_handshake_initiation_ratelimited(peer);
+ packet_queue_handshake_initiation(peer);
}
}
diff --git a/src/send.c b/src/send.c
index 72fd239..cd67068 100644
--- a/src/send.c
+++ b/src/send.c
@@ -15,12 +15,19 @@
#include <net/udp.h>
#include <net/sock.h>
-void packet_send_handshake_initiation(struct wireguard_peer *peer)
+static void packet_send_handshake_initiation(struct wireguard_peer *peer)
{
struct message_handshake_initiation packet;
- net_dbg_ratelimited("Sending handshake initiation to peer %Lu (%pISpfsc)\n", peer->internal_id, &peer->endpoint_addr);
+ down_write(&peer->handshake.lock);
+ if (!time_is_before_jiffies64(peer->last_sent_handshake + REKEY_TIMEOUT)) {
+ up_write(&peer->handshake.lock);
+ return; /* This function is rate limited. */
+ }
peer->last_sent_handshake = get_jiffies_64();
+ up_write(&peer->handshake.lock);
+
+ net_dbg_ratelimited("Sending handshake initiation to peer %Lu (%pISpfsc)\n", peer->internal_id, &peer->endpoint_addr);
if (noise_handshake_create_initiation(&packet, &peer->handshake)) {
cookie_add_mac_to_packet(&packet, sizeof(packet), peer);
@@ -30,13 +37,27 @@ void packet_send_handshake_initiation(struct wireguard_peer *peer)
}
}
-void packet_send_handshake_initiation_ratelimited(struct wireguard_peer *peer)
+void packet_send_queued_handshakes(struct work_struct *work)
{
- if (time_is_before_jiffies64(peer->last_sent_handshake + REKEY_TIMEOUT)) {
- peer = peer_rcu_get(peer);
- if (likely(peer))
- packet_queue_send_handshake_initiation(peer);
- }
+ struct wireguard_peer *peer = container_of(work, struct wireguard_peer, transmit_handshake_work);
+ packet_send_handshake_initiation(peer);
+ peer_put(peer);
+}
+
+void packet_queue_handshake_initiation(struct wireguard_peer *peer)
+{
+ /* First checking the timestamp here is just an optimization; it will
+ * be caught while properly locked inside the actual work queue. */
+ if (!time_is_before_jiffies64(peer->last_sent_handshake + REKEY_TIMEOUT))
+ return;
+
+ peer = peer_rcu_get(peer);
+ if (unlikely(!peer))
+ return;
+
+ /* Queues up calling packet_send_queued_handshakes(peer), where we do a peer_put(peer) after: */
+ if (!queue_work(peer->device->workqueue, &peer->transmit_handshake_work))
+ peer_put(peer); /* If the work was already queued, we want to drop the extra reference */
}
void packet_send_handshake_response(struct wireguard_peer *peer)
@@ -56,21 +77,6 @@ void packet_send_handshake_response(struct wireguard_peer *peer)
}
}
-void packet_send_queued_handshakes(struct work_struct *work)
-{
- struct wireguard_peer *peer = container_of(work, struct wireguard_peer, transmit_handshake_work);
- packet_send_handshake_initiation(peer);
- peer_put(peer);
-}
-
-/* Consumes peer reference. */
-void packet_queue_send_handshake_initiation(struct wireguard_peer *peer)
-{
- /* Queues up calling packet_send_queued_handshakes(peer), where we do a peer_put(peer) after: */
- if (!queue_work(peer->device->workqueue, &peer->transmit_handshake_work))
- peer_put(peer); /* If the work was already queued, we want to drop the extra reference */
-}
-
void packet_send_handshake_cookie(struct wireguard_device *wg, struct sk_buff *initiating_skb, void *data, size_t data_len, __le32 sender_index)
{
struct message_handshake_cookie packet;
@@ -98,7 +104,7 @@ static inline void keep_key_fresh(struct wireguard_peer *peer)
rcu_read_unlock();
if (send)
- packet_send_handshake_initiation_ratelimited(peer);
+ packet_queue_handshake_initiation(peer);
}
void packet_send_keepalive(struct wireguard_peer *peer)
@@ -159,7 +165,7 @@ int packet_send_queue(struct wireguard_peer *peer)
case -ENOKEY:
/* ENOKEY means that we don't have a valid session for the peer, which
* means we should initiate a session, and then requeue everything. */
- packet_send_handshake_initiation_ratelimited(peer);
+ packet_queue_handshake_initiation(peer);
goto requeue;
case -EBUSY:
/* EBUSY happens when the parallel workers are all filled up, in which
diff --git a/src/timers.c b/src/timers.c
index 3f176e3..8cc2104 100644
--- a/src/timers.c
+++ b/src/timers.c
@@ -37,11 +37,12 @@ static void expired_retransmit_handshake(unsigned long ptr)
* of a partial exchange. */
if (likely(peer->timer_kill_ephemerals.data))
mod_timer(&peer->timer_kill_ephemerals, jiffies + (REJECT_AFTER_TIME * 3));
- peer_put(peer);
- return;
+ goto out;
}
- packet_queue_send_handshake_initiation(peer); /* Takes our reference. */
+ packet_queue_handshake_initiation(peer);
++peer->timer_handshake_attempts;
+out:
+ peer_put(peer);
}
static void expired_send_keepalive(unsigned long ptr)
@@ -59,7 +60,8 @@ static void expired_new_handshake(unsigned long ptr)
{
peer_get_from_ptr(ptr);
pr_debug("Retrying handshake with peer %Lu (%pISpfsc) because we stopped hearing back after %d seconds\n", peer->internal_id, &peer->endpoint_addr, (KEEPALIVE_TIMEOUT + REKEY_TIMEOUT) / HZ);
- packet_queue_send_handshake_initiation(peer); /* Takes our reference. */
+ packet_queue_handshake_initiation(peer);
+ peer_put(peer);
}
static void expired_kill_ephemerals(unsigned long ptr)