Migrated psk/pubkey_authenticators to INIT/METHOD macros
This commit is contained in:
@@ -47,10 +47,8 @@ struct private_psk_authenticator_t {
|
|||||||
chunk_t ike_sa_init;
|
chunk_t ike_sa_init;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
METHOD(authenticator_t, build, status_t,
|
||||||
* Implementation of authenticator_t.build for builder
|
private_psk_authenticator_t *this, message_t *message)
|
||||||
*/
|
|
||||||
static status_t build(private_psk_authenticator_t *this, message_t *message)
|
|
||||||
{
|
{
|
||||||
identification_t *my_id, *other_id;
|
identification_t *my_id, *other_id;
|
||||||
auth_payload_t *auth_payload;
|
auth_payload_t *auth_payload;
|
||||||
@@ -82,10 +80,8 @@ static status_t build(private_psk_authenticator_t *this, message_t *message)
|
|||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(authenticator_t, process, status_t,
|
||||||
* Implementation of authenticator_t.process for verifier
|
private_psk_authenticator_t *this, message_t *message)
|
||||||
*/
|
|
||||||
static status_t process(private_psk_authenticator_t *this, message_t *message)
|
|
||||||
{
|
{
|
||||||
chunk_t auth_data, recv_auth_data;
|
chunk_t auth_data, recv_auth_data;
|
||||||
identification_t *my_id, *other_id;
|
identification_t *my_id, *other_id;
|
||||||
@@ -141,19 +137,8 @@ static status_t process(private_psk_authenticator_t *this, message_t *message)
|
|||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(authenticator_t, destroy, void,
|
||||||
* Implementation of authenticator_t.process for builder
|
private_psk_authenticator_t *this)
|
||||||
* Implementation of authenticator_t.build for verifier
|
|
||||||
*/
|
|
||||||
static status_t return_failed()
|
|
||||||
{
|
|
||||||
return FAILED;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of authenticator_t.destroy.
|
|
||||||
*/
|
|
||||||
static void destroy(private_psk_authenticator_t *this)
|
|
||||||
{
|
{
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
@@ -164,17 +149,21 @@ static void destroy(private_psk_authenticator_t *this)
|
|||||||
psk_authenticator_t *psk_authenticator_create_builder(ike_sa_t *ike_sa,
|
psk_authenticator_t *psk_authenticator_create_builder(ike_sa_t *ike_sa,
|
||||||
chunk_t received_nonce, chunk_t sent_init)
|
chunk_t received_nonce, chunk_t sent_init)
|
||||||
{
|
{
|
||||||
private_psk_authenticator_t *this = malloc_thing(private_psk_authenticator_t);
|
private_psk_authenticator_t *this;
|
||||||
|
|
||||||
this->public.authenticator.build = (status_t(*)(authenticator_t*, message_t *message))build;
|
|
||||||
this->public.authenticator.process = (status_t(*)(authenticator_t*, message_t *message))return_failed;
|
|
||||||
this->public.authenticator.is_mutual = (bool(*)(authenticator_t*))return_false;
|
|
||||||
this->public.authenticator.destroy = (void(*)(authenticator_t*))destroy;
|
|
||||||
|
|
||||||
this->ike_sa = ike_sa;
|
|
||||||
this->ike_sa_init = sent_init;
|
|
||||||
this->nonce = received_nonce;
|
|
||||||
|
|
||||||
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.authenticator = {
|
||||||
|
.build = _build,
|
||||||
|
.process = (void*)return_failed,
|
||||||
|
.is_mutual = (void*)return_false,
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
}.
|
||||||
|
.ike_sa = ike_sa,
|
||||||
|
.ike_sa_init = sent_init,
|
||||||
|
.nonce = received_nonce,
|
||||||
|
);
|
||||||
return &this->public;
|
return &this->public;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,17 +173,21 @@ psk_authenticator_t *psk_authenticator_create_builder(ike_sa_t *ike_sa,
|
|||||||
psk_authenticator_t *psk_authenticator_create_verifier(ike_sa_t *ike_sa,
|
psk_authenticator_t *psk_authenticator_create_verifier(ike_sa_t *ike_sa,
|
||||||
chunk_t sent_nonce, chunk_t received_init)
|
chunk_t sent_nonce, chunk_t received_init)
|
||||||
{
|
{
|
||||||
private_psk_authenticator_t *this = malloc_thing(private_psk_authenticator_t);
|
private_psk_authenticator_t *this;
|
||||||
|
|
||||||
this->public.authenticator.build = (status_t(*)(authenticator_t*, message_t *messageh))return_failed;
|
|
||||||
this->public.authenticator.process = (status_t(*)(authenticator_t*, message_t *message))process;
|
|
||||||
this->public.authenticator.is_mutual = (bool(*)(authenticator_t*))return_false;
|
|
||||||
this->public.authenticator.destroy = (void(*)(authenticator_t*))destroy;
|
|
||||||
|
|
||||||
this->ike_sa = ike_sa;
|
|
||||||
this->ike_sa_init = received_init;
|
|
||||||
this->nonce = sent_nonce;
|
|
||||||
|
|
||||||
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.authenticator = {
|
||||||
|
.build = (void*)return_failed,
|
||||||
|
.process = _process,
|
||||||
|
.is_mutual = (void*)return_false,
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.ike_sa = ike_sa,
|
||||||
|
.ike_sa_init = received_init,
|
||||||
|
.nonce = sent_nonce,
|
||||||
|
);
|
||||||
return &this->public;
|
return &this->public;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -48,10 +48,8 @@ struct private_pubkey_authenticator_t {
|
|||||||
chunk_t ike_sa_init;
|
chunk_t ike_sa_init;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
METHOD(authenticator_t, build, status_t,
|
||||||
* Implementation of authenticator_t.build for builder
|
private_pubkey_authenticator_t *this, message_t *message)
|
||||||
*/
|
|
||||||
static status_t build(private_pubkey_authenticator_t *this, message_t *message)
|
|
||||||
{
|
{
|
||||||
chunk_t octets, auth_data;
|
chunk_t octets, auth_data;
|
||||||
status_t status = FAILED;
|
status_t status = FAILED;
|
||||||
@@ -128,10 +126,8 @@ static status_t build(private_pubkey_authenticator_t *this, message_t *message)
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(authenticator_t, process, status_t,
|
||||||
* Implementation of authenticator_t.process for verifier
|
private_pubkey_authenticator_t *this, message_t *message)
|
||||||
*/
|
|
||||||
static status_t process(private_pubkey_authenticator_t *this, message_t *message)
|
|
||||||
{
|
{
|
||||||
public_key_t *public;
|
public_key_t *public;
|
||||||
auth_method_t auth_method;
|
auth_method_t auth_method;
|
||||||
@@ -206,19 +202,8 @@ static status_t process(private_pubkey_authenticator_t *this, message_t *message
|
|||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(authenticator_t, destroy, void,
|
||||||
* Implementation of authenticator_t.process for builder
|
private_pubkey_authenticator_t *this)
|
||||||
* Implementation of authenticator_t.build for verifier
|
|
||||||
*/
|
|
||||||
static status_t return_failed()
|
|
||||||
{
|
|
||||||
return FAILED;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of authenticator_t.destroy.
|
|
||||||
*/
|
|
||||||
static void destroy(private_pubkey_authenticator_t *this)
|
|
||||||
{
|
{
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
@@ -229,17 +214,21 @@ static void destroy(private_pubkey_authenticator_t *this)
|
|||||||
pubkey_authenticator_t *pubkey_authenticator_create_builder(ike_sa_t *ike_sa,
|
pubkey_authenticator_t *pubkey_authenticator_create_builder(ike_sa_t *ike_sa,
|
||||||
chunk_t received_nonce, chunk_t sent_init)
|
chunk_t received_nonce, chunk_t sent_init)
|
||||||
{
|
{
|
||||||
private_pubkey_authenticator_t *this = malloc_thing(private_pubkey_authenticator_t);
|
private_pubkey_authenticator_t *this;
|
||||||
|
|
||||||
this->public.authenticator.build = (status_t(*)(authenticator_t*, message_t *message))build;
|
|
||||||
this->public.authenticator.process = (status_t(*)(authenticator_t*, message_t *message))return_failed;
|
|
||||||
this->public.authenticator.is_mutual = (bool(*)(authenticator_t*))return_false;
|
|
||||||
this->public.authenticator.destroy = (void(*)(authenticator_t*))destroy;
|
|
||||||
|
|
||||||
this->ike_sa = ike_sa;
|
|
||||||
this->ike_sa_init = sent_init;
|
|
||||||
this->nonce = received_nonce;
|
|
||||||
|
|
||||||
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.authenticator = {
|
||||||
|
.build = _build,
|
||||||
|
.process = (void*)return_failed,
|
||||||
|
.is_mutual = (void*)return_false,
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.ike_sa = ike_sa,
|
||||||
|
.ike_sa_init = sent_init,
|
||||||
|
.nonce = received_nonce,
|
||||||
|
);
|
||||||
return &this->public;
|
return &this->public;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -249,16 +238,20 @@ pubkey_authenticator_t *pubkey_authenticator_create_builder(ike_sa_t *ike_sa,
|
|||||||
pubkey_authenticator_t *pubkey_authenticator_create_verifier(ike_sa_t *ike_sa,
|
pubkey_authenticator_t *pubkey_authenticator_create_verifier(ike_sa_t *ike_sa,
|
||||||
chunk_t sent_nonce, chunk_t received_init)
|
chunk_t sent_nonce, chunk_t received_init)
|
||||||
{
|
{
|
||||||
private_pubkey_authenticator_t *this = malloc_thing(private_pubkey_authenticator_t);
|
private_pubkey_authenticator_t *this;
|
||||||
|
|
||||||
this->public.authenticator.build = (status_t(*)(authenticator_t*, message_t *message))return_failed;
|
|
||||||
this->public.authenticator.process = (status_t(*)(authenticator_t*, message_t *message))process;
|
|
||||||
this->public.authenticator.is_mutual = (bool(*)(authenticator_t*))return_false;
|
|
||||||
this->public.authenticator.destroy = (void(*)(authenticator_t*))destroy;
|
|
||||||
|
|
||||||
this->ike_sa = ike_sa;
|
|
||||||
this->ike_sa_init = received_init;
|
|
||||||
this->nonce = sent_nonce;
|
|
||||||
|
|
||||||
|
INIT(this,
|
||||||
|
.public = {
|
||||||
|
.authenticator = {
|
||||||
|
.build = (void*)return_failed,
|
||||||
|
.process = _process,
|
||||||
|
.is_mutual = (void*)return_false,
|
||||||
|
.destroy = _destroy,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
.ike_sa = ike_sa,
|
||||||
|
.ike_sa_init = received_init,
|
||||||
|
.nonce = sent_nonce,
|
||||||
|
);
|
||||||
return &this->public;
|
return &this->public;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -246,6 +246,14 @@ bool return_false()
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns FAILED
|
||||||
|
*/
|
||||||
|
status_t return_failed()
|
||||||
|
{
|
||||||
|
return FAILED;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* nop operation
|
* nop operation
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -381,6 +381,11 @@ bool return_true();
|
|||||||
*/
|
*/
|
||||||
bool return_false();
|
bool return_false();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns FAILED
|
||||||
|
*/
|
||||||
|
status_t return_failed();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Write a 16-bit host order value in network order to an unaligned address.
|
* Write a 16-bit host order value in network order to an unaligned address.
|
||||||
*
|
*
|
||||||
|
|||||||
Reference in New Issue
Block a user