FD.io VPP  v21.10.1-2-g0a485f517
Vector Packet Processing
ikev2_priv.h File Reference
+ Include dependency graph for ikev2_priv.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  ikev2_auth_t
 
struct  ikev2_sa_transform_t
 
struct  ikev2_sa_proposal_t
 
struct  ikev2_ts_t
 
struct  ikev2_responder_t
 
struct  ikev2_transforms_set
 
struct  ikev2_id_t
 
struct  ikev2_child_sa_t
 
struct  ikev2_delete_t
 
struct  ikev2_rekey_t
 
struct  ikev2_notify_t
 
struct  ikev2_profile_t
 
struct  ikev2_stats_t
 
struct  ikev2_sa_t
 
struct  ikev2_main_per_thread_data_t
 
struct  ikev2_main_t
 
struct  ikev2_payload_chain_t
 

Macros

#define foreach_ikev2_log_level
 
#define ikev2_elog_sa_state(_format, _ispi)
 
#define ikev2_elog_exchange_internal(_format, _ispi, _rspi, _addr)
 
#define IKE_ELOG_IP4_FMT   "%d.%d.%d.%d"
 
#define IKE_ELOG_IP6_FMT   "[v6]:%x%x:%x%x"
 
#define ikev2_elog_exchange(_fmt, _ispi, _rspi, _addr, _v4)
 
#define ikev2_elog_uint(_level, _format, _val)
 
#define ikev2_elog_uint_peers(_level, _format, _val, _ip1, _ip2)
 
#define ikev2_elog_error(_msg)   _ikev2_elog(IKEV2_LOG_ERROR, "[error] " _msg)
 
#define ikev2_elog_warning(_msg)   _ikev2_elog(IKEV2_LOG_WARNING, "[warning] " _msg)
 
#define ikev2_elog_debug(_msg)   _ikev2_elog(IKEV2_LOG_DEBUG, "[debug] " _msg)
 
#define ikev2_elog_detail(_msg)   _ikev2_elog(IKEV2_LOG_DETAIL, "[detail] " _msg)
 
#define ikev2_log_error(...)   vlib_log(VLIB_LOG_LEVEL_ERR, ikev2_main.log_class, __VA_ARGS__)
 
#define ikev2_log_warning(...)   vlib_log(VLIB_LOG_LEVEL_WARNING, ikev2_main.log_class, __VA_ARGS__)
 
#define ikev2_log_debug(...)   vlib_log(VLIB_LOG_LEVEL_DEBUG, ikev2_main.log_class, __VA_ARGS__)
 
#define ikev2_natt_active(_sa)   ((_sa)->natt_state == IKEV2_NATT_ACTIVE)
 
#define ikev2_payload_new_chain(V)   vec_validate (V, 0)
 
#define ikev2_payload_destroy_chain(V)
 

Typedefs

typedef enum ikev2_log_level_t_ ikev2_log_level_t
 

Enumerations

enum  ikev2_log_level_t_ { IKEV2_LOG_MAX }
 
enum  ikev2_state_t {
  IKEV2_STATE_UNKNOWN, IKEV2_STATE_SA_INIT, IKEV2_STATE_DELETED, IKEV2_STATE_AUTH_FAILED,
  IKEV2_STATE_AUTHENTICATED, IKEV2_STATE_NOTIFY_AND_DELETE, IKEV2_STATE_TS_UNACCEPTABLE, IKEV2_STATE_NO_PROPOSAL_CHOSEN
}
 
enum  ikev2_dh_group_t { IKEV2_DH_GROUP_MODP = 0, IKEV2_DH_GROUP_ECP = 1 }
 
enum  ikev2_natt_state_t { IKEV2_NATT_ENABLED, IKEV2_NATT_DISABLED, IKEV2_NATT_ACTIVE }
 

Functions

void ikev2_sa_free_proposal_vector (ikev2_sa_proposal_t **v)
 
ikev2_sa_transform_tikev2_sa_get_td_for_type (ikev2_sa_proposal_t *p, ikev2_transform_type_t type)
 
v8ikev2_calc_prf (ikev2_sa_transform_t *tr, v8 *key, v8 *data)
 
u8ikev2_calc_prfplus (ikev2_sa_transform_t *tr, u8 *key, u8 *seed, int len)
 
v8ikev2_calc_integr (ikev2_sa_transform_t *tr, v8 *key, u8 *data, int len)
 
int ikev2_decrypt_data (ikev2_main_per_thread_data_t *ptd, ikev2_sa_t *sa, ikev2_sa_transform_t *tr_encr, u8 *data, int len, u32 *out_len)
 
int ikev2_encrypt_data (ikev2_main_per_thread_data_t *ptd, ikev2_sa_t *sa, ikev2_sa_transform_t *tr_encr, v8 *src, u8 *dst)
 
int ikev2_encrypt_aead_data (ikev2_main_per_thread_data_t *ptd, ikev2_sa_t *sa, ikev2_sa_transform_t *tr_encr, v8 *src, u8 *dst, u8 *aad, u32 aad_len, u8 *tag)
 
int ikev2_decrypt_aead_data (ikev2_main_per_thread_data_t *ptd, ikev2_sa_t *sa, ikev2_sa_transform_t *tr_encr, u8 *data, int data_len, u8 *aad, u32 aad_len, u8 *tag, u32 *out_len)
 
void ikev2_generate_dh (ikev2_sa_t *sa, ikev2_sa_transform_t *t)
 
void ikev2_complete_dh (ikev2_sa_t *sa, ikev2_sa_transform_t *t)
 
int ikev2_verify_sign (EVP_PKEY *pkey, u8 *sigbuf, u8 *data)
 
u8ikev2_calc_sign (EVP_PKEY *pkey, u8 *data)
 
EVP_PKEY * ikev2_load_cert_file (u8 *file)
 
EVP_PKEY * ikev2_load_key_file (u8 *file)
 
void ikev2_crypto_init (ikev2_main_t *km)
 
void ikev2_payload_add_notify (ikev2_payload_chain_t *c, u16 msg_type, u8 *data)
 
void ikev2_payload_add_notify_2 (ikev2_payload_chain_t *c, u16 msg_type, u8 *data, ikev2_notify_t *notify)
 
void ikev2_payload_add_sa (ikev2_payload_chain_t *c, ikev2_sa_proposal_t *proposals)
 
void ikev2_payload_add_ke (ikev2_payload_chain_t *c, u16 dh_group, u8 *dh_data)
 
void ikev2_payload_add_nonce (ikev2_payload_chain_t *c, u8 *nonce)
 
void ikev2_payload_add_id (ikev2_payload_chain_t *c, ikev2_id_t *id, u8 type)
 
void ikev2_payload_add_auth (ikev2_payload_chain_t *c, ikev2_auth_t *auth)
 
void ikev2_payload_add_ts (ikev2_payload_chain_t *c, ikev2_ts_t *ts, u8 type)
 
void ikev2_payload_add_delete (ikev2_payload_chain_t *c, ikev2_delete_t *d)
 
void ikev2_payload_chain_add_padding (ikev2_payload_chain_t *c, int bs)
 
void ikev2_parse_vendor_payload (ike_payload_header_t *ikep)
 
ikev2_sa_proposal_tikev2_parse_sa_payload (ike_payload_header_t *ikep, u32 rlen)
 
ikev2_ts_tikev2_parse_ts_payload (ike_payload_header_t *ikep, u32 rlen)
 
ikev2_delete_tikev2_parse_delete_payload (ike_payload_header_t *ikep, u32 rlen)
 
ikev2_notify_tikev2_parse_notify_payload (ike_payload_header_t *ikep, u32 rlen)
 
int ikev2_set_log_level (ikev2_log_level_t log_level)
 
u8ikev2_find_ike_notify_payload (ike_header_t *ike, u32 msg_type)
 
void ikev2_disable_dpd (void)
 
clib_error_tikev2_profile_natt_disable (u8 *name)
 
static_always_inline ikev2_main_per_thread_data_tikev2_get_per_thread_data ()
 

Variables

ikev2_main_t ikev2_main
 

Macro Definition Documentation

◆ foreach_ikev2_log_level

#define foreach_ikev2_log_level
Value:
_(0x00, LOG_NONE) \
_(0x01, LOG_ERROR) \
_(0x02, LOG_WARNING) \
_(0x03, LOG_INFO) \
_(0x04, LOG_DEBUG) \
_(0x05, LOG_DETAIL) \

Definition at line 33 of file ikev2_priv.h.

◆ IKE_ELOG_IP4_FMT

#define IKE_ELOG_IP4_FMT   "%d.%d.%d.%d"

Definition at line 113 of file ikev2_priv.h.

◆ IKE_ELOG_IP6_FMT

#define IKE_ELOG_IP6_FMT   "[v6]:%x%x:%x%x"

Definition at line 114 of file ikev2_priv.h.

◆ ikev2_elog_debug

#define ikev2_elog_debug (   _msg)    _ikev2_elog(IKEV2_LOG_DEBUG, "[debug] " _msg)

Definition at line 174 of file ikev2_priv.h.

◆ ikev2_elog_detail

#define ikev2_elog_detail (   _msg)    _ikev2_elog(IKEV2_LOG_DETAIL, "[detail] " _msg)

Definition at line 176 of file ikev2_priv.h.

◆ ikev2_elog_error

#define ikev2_elog_error (   _msg)    _ikev2_elog(IKEV2_LOG_ERROR, "[error] " _msg)

Definition at line 170 of file ikev2_priv.h.

◆ ikev2_elog_exchange

#define ikev2_elog_exchange (   _fmt,
  _ispi,
  _rspi,
  _addr,
  _v4 
)
Value:
do { \
if (_v4) \
ikev2_elog_exchange_internal (_fmt IKE_ELOG_IP4_FMT, _ispi, _rspi, _addr);\
ikev2_elog_exchange_internal (_fmt IKE_ELOG_IP6_FMT, _ispi, _rspi, _addr);\
} while (0)

Definition at line 116 of file ikev2_priv.h.

◆ ikev2_elog_exchange_internal

#define ikev2_elog_exchange_internal (   _format,
  _ispi,
  _rspi,
  _addr 
)
Value:
do { \
ikev2_main_t *km = &ikev2_main; \
if (PREDICT_FALSE (km->log_level >= IKEV2_LOG_DEBUG)) \
{ \
ELOG_TYPE_DECLARE (e) = \
{ \
.format = "ikev2: " _format, \
.format_args = "i8i8i1i1i1i1", \
}; \
CLIB_PACKED(struct \
{ \
u64 ispi; \
u64 rspi; \
u8 oct1; \
u8 oct2; \
u8 oct3; \
u8 oct4; \
}) *ed; \
ed->ispi = _ispi; \
ed->rspi = _rspi; \
ed->oct4 = (_addr) >> 24; \
ed->oct3 = (_addr) >> 16; \
ed->oct2 = (_addr) >> 8; \
ed->oct1 = (_addr); \
} \
} while (0) \

Definition at line 84 of file ikev2_priv.h.

◆ ikev2_elog_sa_state

#define ikev2_elog_sa_state (   _format,
  _ispi 
)
Value:
do { \
ikev2_main_t *km = &ikev2_main; \
if (PREDICT_FALSE (km->log_level >= IKEV2_LOG_DEBUG)) \
{ \
ELOG_TYPE_DECLARE (e) = \
{ \
.format = "ikev2: " _format, \
.format_args = "i8", \
}; \
CLIB_PACKED(struct \
{ \
u64 ispi; \
}) *ed; \
ed->ispi = _ispi; \
} \
} while (0) \

Definition at line 65 of file ikev2_priv.h.

◆ ikev2_elog_uint

#define ikev2_elog_uint (   _level,
  _format,
  _val 
)
Value:
do { \
ikev2_main_t *km = &ikev2_main; \
if (PREDICT_FALSE (km->log_level >= _level)) \
{ \
ELOG_TYPE_DECLARE (e) = \
{ \
.format = "ikev2: " _format, \
.format_args = "i8", \
}; \
CLIB_PACKED(struct \
{ \
u64 val; \
}) *ed; \
ed->val = _val; \
} \
} while (0)

Definition at line 124 of file ikev2_priv.h.

◆ ikev2_elog_uint_peers

#define ikev2_elog_uint_peers (   _level,
  _format,
  _val,
  _ip1,
  _ip2 
)
Value:
do { \
ikev2_main_t *km = &ikev2_main; \
if (PREDICT_FALSE (km->log_level >= _level)) \
{ \
ELOG_TYPE_DECLARE (e) = \
{ \
.format = "ikev2: " _format, \
.format_args = "i8i1i1i1i1i1i1i1i1", \
}; \
CLIB_PACKED(struct { \
u64 val; \
u8 i11; u8 i12; u8 i13; u8 i14; \
u8 i21; u8 i22; u8 i23; u8 i24; }) *ed; \
ed->val = _val; \
ed->i14 = (_ip1) >> 24; \
ed->i13 = (_ip1) >> 16; \
ed->i12 = (_ip1) >> 8; \
ed->i11 = (_ip1); \
ed->i24 = (_ip2) >> 24; \
ed->i23 = (_ip2) >> 16; \
ed->i22 = (_ip2) >> 8; \
ed->i21 = (_ip2); \
} \
} while (0)

Definition at line 143 of file ikev2_priv.h.

◆ ikev2_elog_warning

#define ikev2_elog_warning (   _msg)    _ikev2_elog(IKEV2_LOG_WARNING, "[warning] " _msg)

Definition at line 172 of file ikev2_priv.h.

◆ ikev2_log_debug

#define ikev2_log_debug (   ...)    vlib_log(VLIB_LOG_LEVEL_DEBUG, ikev2_main.log_class, __VA_ARGS__)

Definition at line 184 of file ikev2_priv.h.

◆ ikev2_log_error

#define ikev2_log_error (   ...)    vlib_log(VLIB_LOG_LEVEL_ERR, ikev2_main.log_class, __VA_ARGS__)

Definition at line 180 of file ikev2_priv.h.

◆ ikev2_log_warning

#define ikev2_log_warning (   ...)    vlib_log(VLIB_LOG_LEVEL_WARNING, ikev2_main.log_class, __VA_ARGS__)

Definition at line 182 of file ikev2_priv.h.

◆ ikev2_natt_active

#define ikev2_natt_active (   _sa)    ((_sa)->natt_state == IKEV2_NATT_ACTIVE)

Definition at line 368 of file ikev2_priv.h.

◆ ikev2_payload_destroy_chain

#define ikev2_payload_destroy_chain (   V)
Value:
do { \
vec_free((V)->data); \
vec_free(V); \
} while (0)

Definition at line 578 of file ikev2_priv.h.

◆ ikev2_payload_new_chain

#define ikev2_payload_new_chain (   V)    vec_validate (V, 0)

Definition at line 577 of file ikev2_priv.h.

Typedef Documentation

◆ ikev2_log_level_t

Enumeration Type Documentation

◆ ikev2_dh_group_t

Enumerator
IKEV2_DH_GROUP_MODP 
IKEV2_DH_GROUP_ECP 

Definition at line 207 of file ikev2_priv.h.

◆ ikev2_log_level_t_

Enumerator
IKEV2_LOG_MAX 

Definition at line 42 of file ikev2_priv.h.

◆ ikev2_natt_state_t

Enumerator
IKEV2_NATT_ENABLED 
IKEV2_NATT_DISABLED 
IKEV2_NATT_ACTIVE 

Definition at line 355 of file ikev2_priv.h.

◆ ikev2_state_t

Enumerator
IKEV2_STATE_UNKNOWN 
IKEV2_STATE_SA_INIT 
IKEV2_STATE_DELETED 
IKEV2_STATE_AUTH_FAILED 
IKEV2_STATE_AUTHENTICATED 
IKEV2_STATE_NOTIFY_AND_DELETE 
IKEV2_STATE_TS_UNACCEPTABLE 
IKEV2_STATE_NO_PROPOSAL_CHOSEN 

Definition at line 187 of file ikev2_priv.h.

Function Documentation

◆ ikev2_calc_integr()

v8* ikev2_calc_integr ( ikev2_sa_transform_t tr,
v8 key,
u8 data,
int  len 
)

Definition at line 314 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_calc_prf()

v8* ikev2_calc_prf ( ikev2_sa_transform_t tr,
v8 key,
v8 data 
)

Definition at line 255 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_calc_prfplus()

u8* ikev2_calc_prfplus ( ikev2_sa_transform_t tr,
u8 key,
u8 seed,
int  len 
)

Definition at line 272 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_calc_sign()

u8* ikev2_calc_sign ( EVP_PKEY *  pkey,
u8 data 
)

Definition at line 782 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_complete_dh()

void ikev2_complete_dh ( ikev2_sa_t sa,
ikev2_sa_transform_t t 
)

Definition at line 646 of file ikev2_crypto.c.

+ Here is the call graph for this function:

◆ ikev2_crypto_init()

void ikev2_crypto_init ( ikev2_main_t km)

Definition at line 869 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_decrypt_aead_data()

int ikev2_decrypt_aead_data ( ikev2_main_per_thread_data_t ptd,
ikev2_sa_t sa,
ikev2_sa_transform_t tr_encr,
u8 data,
int  data_len,
u8 aad,
u32  aad_len,
u8 tag,
u32 out_len 
)

Definition at line 351 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_decrypt_data()

int ikev2_decrypt_data ( ikev2_main_per_thread_data_t ptd,
ikev2_sa_t sa,
ikev2_sa_transform_t tr_encr,
u8 data,
int  len,
u32 out_len 
)

Definition at line 389 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_disable_dpd()

void ikev2_disable_dpd ( void  )

Definition at line 5140 of file ikev2.c.

+ Here is the caller graph for this function:

◆ ikev2_encrypt_aead_data()

int ikev2_encrypt_aead_data ( ikev2_main_per_thread_data_t ptd,
ikev2_sa_t sa,
ikev2_sa_transform_t tr_encr,
v8 src,
u8 dst,
u8 aad,
u32  aad_len,
u8 tag 
)

Definition at line 422 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_encrypt_data()

int ikev2_encrypt_data ( ikev2_main_per_thread_data_t ptd,
ikev2_sa_t sa,
ikev2_sa_transform_t tr_encr,
v8 src,
u8 dst 
)

Definition at line 453 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_find_ike_notify_payload()

u8* ikev2_find_ike_notify_payload ( ike_header_t *  ike,
u32  msg_type 
)

Definition at line 592 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_generate_dh()

void ikev2_generate_dh ( ikev2_sa_t sa,
ikev2_sa_transform_t t 
)

Definition at line 498 of file ikev2_crypto.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_get_per_thread_data()

static_always_inline ikev2_main_per_thread_data_t* ikev2_get_per_thread_data ( )

Definition at line 613 of file ikev2_priv.h.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_load_cert_file()

EVP_PKEY* ikev2_load_cert_file ( u8 file)

Definition at line 816 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_load_key_file()

EVP_PKEY* ikev2_load_key_file ( u8 file)

Definition at line 847 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

◆ ikev2_parse_delete_payload()

ikev2_delete_t* ikev2_parse_delete_payload ( ike_payload_header_t *  ikep,
u32  rlen 
)

Definition at line 560 of file ikev2_payload.c.

+ Here is the caller graph for this function:

◆ ikev2_parse_notify_payload()

ikev2_notify_t* ikev2_parse_notify_payload ( ike_payload_header_t *  ikep,
u32  rlen 
)

Definition at line 505 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_parse_sa_payload()

ikev2_sa_proposal_t* ikev2_parse_sa_payload ( ike_payload_header_t *  ikep,
u32  rlen 
)

Definition at line 365 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_parse_ts_payload()

ikev2_ts_t* ikev2_parse_ts_payload ( ike_payload_header_t *  ikep,
u32  rlen 
)

Definition at line 447 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_parse_vendor_payload()

void ikev2_parse_vendor_payload ( ike_payload_header_t *  ikep)

Definition at line 553 of file ikev2_payload.c.

+ Here is the caller graph for this function:

◆ ikev2_payload_add_auth()

void ikev2_payload_add_auth ( ikev2_payload_chain_t c,
ikev2_auth_t auth 
)

Definition at line 286 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_delete()

void ikev2_payload_add_delete ( ikev2_payload_chain_t c,
ikev2_delete_t d 
)

Definition at line 255 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_id()

void ikev2_payload_add_id ( ikev2_payload_chain_t c,
ikev2_id_t id,
u8  type 
)

Definition at line 243 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_ke()

void ikev2_payload_add_ke ( ikev2_payload_chain_t c,
u16  dh_group,
u8 dh_data 
)

Definition at line 224 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_nonce()

void ikev2_payload_add_nonce ( ikev2_payload_chain_t c,
u8 nonce 
)

Definition at line 235 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_notify()

void ikev2_payload_add_notify ( ikev2_payload_chain_t c,
u16  msg_type,
u8 data 
)

Definition at line 142 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_notify_2()

void ikev2_payload_add_notify_2 ( ikev2_payload_chain_t c,
u16  msg_type,
u8 data,
ikev2_notify_t notify 
)

Definition at line 148 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_sa()

void ikev2_payload_add_sa ( ikev2_payload_chain_t c,
ikev2_sa_proposal_t proposals 
)

Definition at line 170 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_add_ts()

void ikev2_payload_add_ts ( ikev2_payload_chain_t c,
ikev2_ts_t ts,
u8  type 
)

Definition at line 333 of file ikev2_payload.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_payload_chain_add_padding()

void ikev2_payload_chain_add_padding ( ikev2_payload_chain_t c,
int  bs 
)

Definition at line 356 of file ikev2_payload.c.

+ Here is the caller graph for this function:

◆ ikev2_profile_natt_disable()

clib_error_t* ikev2_profile_natt_disable ( u8 name)

Definition at line 4944 of file ikev2.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_sa_free_proposal_vector()

void ikev2_sa_free_proposal_vector ( ikev2_sa_proposal_t **  v)

Definition at line 261 of file ikev2.c.

+ Here is the caller graph for this function:

◆ ikev2_sa_get_td_for_type()

ikev2_sa_transform_t* ikev2_sa_get_td_for_type ( ikev2_sa_proposal_t p,
ikev2_transform_type_t  type 
)

Definition at line 228 of file ikev2.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ ikev2_set_log_level()

int ikev2_set_log_level ( ikev2_log_level_t  log_level)

Definition at line 4916 of file ikev2.c.

+ Here is the caller graph for this function:

◆ ikev2_verify_sign()

int ikev2_verify_sign ( EVP_PKEY *  pkey,
u8 sigbuf,
u8 data 
)

Definition at line 753 of file ikev2_crypto.c.

+ Here is the caller graph for this function:

Variable Documentation

◆ ikev2_main

ikev2_main_t ikev2_main

Definition at line 37 of file ikev2.c.

ispi
u64 ispi
Definition: ikev2_types.api:146
IKE_ELOG_IP4_FMT
#define IKE_ELOG_IP4_FMT
Definition: ikev2_priv.h:113
PREDICT_FALSE
#define PREDICT_FALSE(x)
Definition: clib.h:124
vlib_global_main
vlib_global_main_t vlib_global_main
Definition: main.c:1786
vlib_global_main_t::elog_main
elog_main_t elog_main
Definition: main.h:302
data
u8 data[128]
Definition: ipsec_types.api:95
u8
unsigned char u8
Definition: types.h:56
IKE_ELOG_IP6_FMT
#define IKE_ELOG_IP6_FMT
Definition: ikev2_priv.h:114
ikev2_elog_exchange_internal
#define ikev2_elog_exchange_internal(_format, _ispi, _rspi, _addr)
Definition: ikev2_priv.h:84
ELOG_DATA
#define ELOG_DATA(em, f)
Definition: elog.h:484
rspi
u64 rspi
Definition: ikev2_types.api:147
ikev2_main
ikev2_main_t ikev2_main
Definition: ikev2.c:37