mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
227 lines
5.3 KiB
C
227 lines
5.3 KiB
C
#ifndef LLARP_CRYPTO_ASYNC_H_
|
|
#define LLARP_CRYPTO_ASYNC_H_
|
|
#include <llarp/crypto.h>
|
|
#include <llarp/ev.h>
|
|
#include <llarp/logic.h>
|
|
#include <llarp/threadpool.h>
|
|
#include <llarp/time.h>
|
|
|
|
/**
|
|
* crypto_async.h
|
|
*
|
|
* asynchronous crypto functions
|
|
*/
|
|
|
|
/// context for doing asynchronous cryptography for iwp
|
|
/// with a worker threadpool
|
|
/// defined in crypto_async.cpp
|
|
struct llarp_async_iwp;
|
|
|
|
/// allocator
|
|
/// use crypto as cryptograph implementation
|
|
/// use logic as the callback handler thread
|
|
/// use worker as threadpool that does the heavy lifting
|
|
struct llarp_async_iwp *
|
|
llarp_async_iwp_new(struct llarp_crypto *crypto, struct llarp_logic *logic,
|
|
struct llarp_threadpool *worker);
|
|
|
|
/// deallocator
|
|
void
|
|
llarp_async_iwp_free(struct llarp_async_iwp *iwp);
|
|
|
|
struct iwp_async_keygen;
|
|
|
|
/// define functor for keygen
|
|
typedef void (*iwp_keygen_hook)(struct iwp_async_keygen *);
|
|
|
|
/// key generation request
|
|
struct iwp_async_keygen
|
|
{
|
|
/// internal wire protocol async configuration
|
|
struct llarp_async_iwp *iwp;
|
|
/// a pointer to pass ourself to thread worker
|
|
void *user;
|
|
/// destination key buffer
|
|
uint8_t *keybuf;
|
|
/// result handler callback
|
|
iwp_keygen_hook hook;
|
|
};
|
|
|
|
/// generate an encryption keypair asynchronously
|
|
void
|
|
iwp_call_async_keygen(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_keygen *keygen);
|
|
|
|
struct iwp_async_intro;
|
|
|
|
/// iwp_async_intro functor
|
|
typedef void (*iwp_intro_hook)(struct iwp_async_intro *);
|
|
|
|
/// iwp_async_intro request
|
|
struct iwp_async_intro
|
|
{
|
|
struct llarp_async_iwp *iwp;
|
|
void *user;
|
|
uint8_t *buf;
|
|
size_t sz;
|
|
/// nonce paramter
|
|
uint8_t *nonce;
|
|
/// remote public key
|
|
uint8_t *remote_pubkey;
|
|
/// local private key
|
|
uint8_t *secretkey;
|
|
/// callback
|
|
iwp_intro_hook hook;
|
|
};
|
|
|
|
/// asynchronously generate an intro packet
|
|
void
|
|
iwp_call_async_gen_intro(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_intro *intro);
|
|
|
|
/// asynchronously verify an intro packet
|
|
void
|
|
iwp_call_async_verify_intro(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_intro *info);
|
|
|
|
struct iwp_async_introack;
|
|
|
|
/// introduction acknowledgement functor
|
|
typedef void (*iwp_introack_hook)(struct iwp_async_introack *);
|
|
|
|
/// introduction acknowledgement request
|
|
struct iwp_async_introack
|
|
{
|
|
struct llarp_async_iwp *iwp;
|
|
void *user;
|
|
uint8_t *buf;
|
|
size_t sz;
|
|
/// nonce paramter
|
|
uint8_t *nonce;
|
|
/// token paramter
|
|
uint8_t *token;
|
|
/// remote public key
|
|
uint8_t *remote_pubkey;
|
|
/// local private key
|
|
uint8_t *secretkey;
|
|
/// callback
|
|
iwp_introack_hook hook;
|
|
};
|
|
|
|
/// generate introduction acknowledgement packet asynchronously
|
|
void
|
|
iwp_call_async_gen_introack(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_introack *introack);
|
|
|
|
/// verify introduction acknowledgement packet asynchronously
|
|
void
|
|
iwp_call_async_verify_introack(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_introack *introack);
|
|
|
|
struct iwp_async_session_start;
|
|
|
|
/// start session functor
|
|
typedef void (*iwp_session_start_hook)(struct iwp_async_session_start *);
|
|
|
|
/// start session request
|
|
struct iwp_async_session_start
|
|
{
|
|
struct llarp_async_iwp *iwp;
|
|
void *user;
|
|
uint8_t *buf;
|
|
size_t sz;
|
|
/// nonce parameter
|
|
uint8_t *nonce;
|
|
/// token parameter
|
|
uint8_t *token;
|
|
/// memory to write session key to
|
|
uint8_t *sessionkey;
|
|
/// local secrkey key
|
|
uint8_t *secretkey;
|
|
/// remote public encryption key
|
|
uint8_t *remote_pubkey;
|
|
/// result callback handler
|
|
iwp_session_start_hook hook;
|
|
};
|
|
|
|
/// generate session start packet asynchronously
|
|
void
|
|
iwp_call_async_gen_session_start(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_session_start *start);
|
|
|
|
/// verify session start packet asynchronously
|
|
void
|
|
iwp_call_async_verify_session_start(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_session_start *start);
|
|
|
|
struct iwp_async_frame;
|
|
|
|
/// internal wire protocol frame request
|
|
typedef void (*iwp_async_frame_hook)(struct iwp_async_frame *);
|
|
|
|
struct iwp_async_frame
|
|
{
|
|
/// true if decryption succeded
|
|
bool success;
|
|
/// timestamp for CoDel
|
|
llarp_time_t created;
|
|
struct llarp_async_iwp *iwp;
|
|
/// a pointer to pass ourself
|
|
void *user;
|
|
/// current session key
|
|
byte_t *sessionkey;
|
|
/// size of the frame
|
|
size_t sz;
|
|
/// result handler
|
|
iwp_async_frame_hook hook;
|
|
/// memory holding the entire frame
|
|
byte_t buf[1500];
|
|
};
|
|
|
|
// TODO: remove
|
|
struct FramePutTime
|
|
{
|
|
void
|
|
operator()(iwp_async_frame *frame) const
|
|
{
|
|
frame->created = llarp_time_now_ms();
|
|
}
|
|
};
|
|
struct FrameGetTime
|
|
{
|
|
llarp_time_t
|
|
operator()(const iwp_async_frame *frame) const
|
|
{
|
|
return frame->created;
|
|
}
|
|
};
|
|
|
|
struct FrameCompareTime
|
|
{
|
|
bool
|
|
operator()(const iwp_async_frame *left, iwp_async_frame *right) const
|
|
{
|
|
return left->created < right->created;
|
|
}
|
|
};
|
|
|
|
/// synchronously decrypt a frame
|
|
bool
|
|
iwp_decrypt_frame(struct iwp_async_frame *frame);
|
|
|
|
/// synchronosuly encrypt a frame
|
|
bool
|
|
iwp_encrypt_frame(struct iwp_async_frame *frame);
|
|
|
|
/// decrypt iwp frame asynchronously
|
|
void
|
|
iwp_call_async_frame_decrypt(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_frame *frame);
|
|
|
|
/// encrypt iwp frame asynchronously
|
|
void
|
|
iwp_call_async_frame_encrypt(struct llarp_async_iwp *iwp,
|
|
struct iwp_async_frame *frame);
|
|
|
|
#endif
|