#include "cookie.h"
#include "peer.h"
#include "device.h"
#include "messages.h"
#include "ratelimiter.h"
#include "timers.h"
#include <crypto/blake2s.h>
#include <crypto/chacha20poly1305.h>
#include <crypto/utils.h>
#include <net/ipv6.h>
void wg_cookie_checker_init(struct cookie_checker *checker,
struct wg_device *wg)
{ … }
enum { … };
static const u8 mac1_key_label[COOKIE_KEY_LABEL_LEN] = …;
static const u8 cookie_key_label[COOKIE_KEY_LABEL_LEN] = …;
static void precompute_key(u8 key[NOISE_SYMMETRIC_KEY_LEN],
const u8 pubkey[NOISE_PUBLIC_KEY_LEN],
const u8 label[COOKIE_KEY_LABEL_LEN])
{ … }
void wg_cookie_checker_precompute_device_keys(struct cookie_checker *checker)
{ … }
void wg_cookie_checker_precompute_peer_keys(struct wg_peer *peer)
{ … }
void wg_cookie_init(struct cookie *cookie)
{ … }
static void compute_mac1(u8 mac1[COOKIE_LEN], const void *message, size_t len,
const u8 key[NOISE_SYMMETRIC_KEY_LEN])
{ … }
static void compute_mac2(u8 mac2[COOKIE_LEN], const void *message, size_t len,
const u8 cookie[COOKIE_LEN])
{ … }
static void make_cookie(u8 cookie[COOKIE_LEN], struct sk_buff *skb,
struct cookie_checker *checker)
{ … }
enum cookie_mac_state wg_cookie_validate_packet(struct cookie_checker *checker,
struct sk_buff *skb,
bool check_cookie)
{ … }
void wg_cookie_add_mac_to_packet(void *message, size_t len,
struct wg_peer *peer)
{ … }
void wg_cookie_message_create(struct message_handshake_cookie *dst,
struct sk_buff *skb, __le32 index,
struct cookie_checker *checker)
{ … }
void wg_cookie_message_consume(struct message_handshake_cookie *src,
struct wg_device *wg)
{ … }