2 * Copyright (c) 2020 Doc.ai and/or its affiliates.
3 * Copyright (c) 2015-2020 Jason A. Donenfeld <Jason@zx2c4.com>.
4 * Copyright (c) 2019-2020 Matt Dunwoodie <ncon@noconroy.net>.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
18 #ifndef __included_wg_noise_h__
19 #define __included_wg_noise_h__
21 #include <vlib/vlib.h>
22 #include <vnet/crypto/crypto.h>
23 #include <wireguard/blake/blake2s.h>
24 #include <wireguard/wireguard_key.h>
26 #define NOISE_PUBLIC_KEY_LEN CURVE25519_KEY_SIZE
27 #define NOISE_SYMMETRIC_KEY_LEN 32 // CHACHA20POLY1305_KEY_SIZE
28 #define NOISE_TIMESTAMP_LEN (sizeof(uint64_t) + sizeof(uint32_t))
29 #define NOISE_AUTHTAG_LEN 16 //CHACHA20POLY1305_AUTHTAG_SIZE
30 #define NOISE_HASH_LEN BLAKE2S_HASH_SIZE
32 /* Protocol string constants */
33 #define NOISE_HANDSHAKE_NAME "Noise_IKpsk2_25519_ChaChaPoly_BLAKE2s"
34 #define NOISE_IDENTIFIER_NAME "WireGuard v1 zx2c4 Jason@zx2c4.com"
36 /* Constants for the counter */
37 #define COUNTER_BITS_TOTAL 8192
38 #define COUNTER_BITS (sizeof(unsigned long) * 8)
39 #define COUNTER_NUM (COUNTER_BITS_TOTAL / COUNTER_BITS)
40 #define COUNTER_WINDOW_SIZE (COUNTER_BITS_TOTAL - COUNTER_BITS)
42 /* Constants for the keypair */
43 #define REKEY_AFTER_MESSAGES (1ull << 60)
44 #define REJECT_AFTER_MESSAGES (UINT64_MAX - COUNTER_WINDOW_SIZE - 1)
45 #define REKEY_AFTER_TIME 120
46 #define REKEY_AFTER_TIME_RECV 165
47 #define REJECT_AFTER_TIME 180
48 #define REJECT_INTERVAL (0.02) /* fifty times per sec */
49 /* 24 = floor(log2(REJECT_INTERVAL)) */
50 #define REJECT_INTERVAL_MASK (~((1ull<<24)-1))
52 enum noise_state_crypt
69 typedef struct noise_handshake
71 enum noise_state_hs hs_state;
72 uint32_t hs_local_index;
73 uint32_t hs_remote_index;
74 uint8_t hs_e[NOISE_PUBLIC_KEY_LEN];
75 uint8_t hs_hash[NOISE_HASH_LEN];
76 uint8_t hs_ck[NOISE_HASH_LEN];
79 typedef struct noise_counter
83 unsigned long c_backtrack[COUNTER_NUM];
86 typedef struct noise_keypair
90 uint32_t kp_local_index;
91 uint32_t kp_remote_index;
92 vnet_crypto_key_index_t kp_send_index;
93 vnet_crypto_key_index_t kp_recv_index;
95 noise_counter_t kp_ctr;
98 typedef struct noise_local noise_local_t;
99 typedef struct noise_remote
102 uint8_t r_public[NOISE_PUBLIC_KEY_LEN];
103 uint32_t r_local_idx;
104 uint8_t r_ss[NOISE_PUBLIC_KEY_LEN];
106 noise_handshake_t r_handshake;
107 uint8_t r_psk[NOISE_SYMMETRIC_KEY_LEN];
108 uint8_t r_timestamp[NOISE_TIMESTAMP_LEN];
111 clib_rwlock_t r_keypair_lock;
112 noise_keypair_t *r_next, *r_current, *r_previous;
115 typedef struct noise_local
117 uint8_t l_public[NOISE_PUBLIC_KEY_LEN];
118 uint8_t l_private[NOISE_PUBLIC_KEY_LEN];
123 noise_remote_t *(*u_remote_get) (const uint8_t[NOISE_PUBLIC_KEY_LEN]);
124 uint32_t (*u_index_set) (noise_remote_t *);
125 void (*u_index_drop) (uint32_t);
129 /* pool of noise_local */
130 extern noise_local_t *noise_local_pool;
132 /* Set/Get noise parameters */
133 static_always_inline noise_local_t *
134 noise_local_get (uint32_t locali)
136 return (pool_elt_at_index (noise_local_pool, locali));
139 static_always_inline uint64_t
140 noise_counter_send (noise_counter_t *ctr)
147 void noise_local_init (noise_local_t *, struct noise_upcall *);
148 bool noise_local_set_private (noise_local_t *,
149 const uint8_t[NOISE_PUBLIC_KEY_LEN]);
151 void noise_remote_init (noise_remote_t *, uint32_t,
152 const uint8_t[NOISE_PUBLIC_KEY_LEN], uint32_t);
154 /* Should be called anytime noise_local_set_private is called */
155 void noise_remote_precompute (noise_remote_t *);
157 /* Cryptographic functions */
158 bool noise_create_initiation (vlib_main_t * vm, noise_remote_t *,
160 uint8_t ue[NOISE_PUBLIC_KEY_LEN],
161 uint8_t es[NOISE_PUBLIC_KEY_LEN +
163 uint8_t ets[NOISE_TIMESTAMP_LEN +
166 bool noise_consume_initiation (vlib_main_t * vm, noise_local_t *,
169 uint8_t ue[NOISE_PUBLIC_KEY_LEN],
170 uint8_t es[NOISE_PUBLIC_KEY_LEN +
172 uint8_t ets[NOISE_TIMESTAMP_LEN +
175 bool noise_create_response (vlib_main_t * vm, noise_remote_t *,
178 uint8_t ue[NOISE_PUBLIC_KEY_LEN],
179 uint8_t en[0 + NOISE_AUTHTAG_LEN]);
181 bool noise_consume_response (vlib_main_t * vm, noise_remote_t *,
184 uint8_t ue[NOISE_PUBLIC_KEY_LEN],
185 uint8_t en[0 + NOISE_AUTHTAG_LEN]);
187 bool noise_remote_begin_session (vlib_main_t * vm, noise_remote_t * r);
188 void noise_remote_clear (vlib_main_t * vm, noise_remote_t * r);
189 void noise_remote_expire_current (noise_remote_t * r);
191 bool noise_remote_ready (noise_remote_t *);
193 enum noise_state_crypt
194 noise_remote_encrypt (vlib_main_t * vm, noise_remote_t *,
197 uint8_t * src, size_t srclen, uint8_t * dst);
199 enum noise_state_crypt
200 noise_sync_remote_decrypt (vlib_main_t *vm, vnet_crypto_op_t **crypto_ops,
201 noise_remote_t *, uint32_t r_idx, uint64_t nonce,
202 uint8_t *src, size_t srclen, uint8_t *dst, u32 bi,
205 static_always_inline noise_keypair_t *
206 wg_get_active_keypair (noise_remote_t *r, uint32_t r_idx)
208 if (r->r_current != NULL && r->r_current->kp_local_index == r_idx)
212 else if (r->r_previous != NULL && r->r_previous->kp_local_index == r_idx)
214 return r->r_previous;
216 else if (r->r_next != NULL && r->r_next->kp_local_index == r_idx)
227 noise_counter_recv (noise_counter_t *ctr, uint64_t recv)
229 uint64_t i, top, index_recv, index_ctr;
233 /* Check that the recv counter is valid */
234 if (ctr->c_recv >= REJECT_AFTER_MESSAGES || recv >= REJECT_AFTER_MESSAGES)
237 /* If the packet is out of the window, invalid */
238 if (recv + COUNTER_WINDOW_SIZE < ctr->c_recv)
241 /* If the new counter is ahead of the current counter, we'll need to
242 * zero out the bitmap that has previously been used */
243 index_recv = recv / COUNTER_BITS;
244 index_ctr = ctr->c_recv / COUNTER_BITS;
246 if (recv > ctr->c_recv)
248 top = clib_min (index_recv - index_ctr, COUNTER_NUM);
249 for (i = 1; i <= top; i++)
250 ctr->c_backtrack[(i + index_ctr) & (COUNTER_NUM - 1)] = 0;
254 index_recv %= COUNTER_NUM;
255 bit = 1ul << (recv % COUNTER_BITS);
257 if (ctr->c_backtrack[index_recv] & bit)
260 ctr->c_backtrack[index_recv] |= bit;
267 #endif /* __included_wg_noise_h__ */
270 * fd.io coding-style-patch-verification: ON
273 * eval: (c-set-style "gnu")