Migrated id_payload to INIT/METHOD macros
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
|
* Copyright (C) 2005-2010 Martin Willi
|
||||||
|
* Copyright (C) 2010 revosec AG
|
||||||
* Copyright (C) 2007 Tobias Brunner
|
* Copyright (C) 2007 Tobias Brunner
|
||||||
* Copyright (C) 2005-2006 Martin Willi
|
|
||||||
* Copyright (C) 2005 Jan Hutter
|
* Copyright (C) 2005 Jan Hutter
|
||||||
*
|
*
|
||||||
* Hochschule fuer Technik Rapperswil
|
* Hochschule fuer Technik Rapperswil
|
||||||
@@ -71,7 +72,6 @@ struct private_id_payload_t {
|
|||||||
*
|
*
|
||||||
* The defined offsets are the positions in a object of type
|
* The defined offsets are the positions in a object of type
|
||||||
* private_id_payload_t.
|
* private_id_payload_t.
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
encoding_rule_t id_payload_encodings[] = {
|
encoding_rule_t id_payload_encodings[] = {
|
||||||
/* 1 Byte next payload type, stored in the field next_payload */
|
/* 1 Byte next payload type, stored in the field next_payload */
|
||||||
@@ -79,23 +79,23 @@ encoding_rule_t id_payload_encodings[] = {
|
|||||||
/* the critical bit */
|
/* the critical bit */
|
||||||
{ FLAG, offsetof(private_id_payload_t, critical) },
|
{ FLAG, offsetof(private_id_payload_t, critical) },
|
||||||
/* 7 Bit reserved bits, nowhere stored */
|
/* 7 Bit reserved bits, nowhere stored */
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
{ RESERVED_BIT, 0 },
|
{ RESERVED_BIT, 0 },
|
||||||
/* Length of the whole payload*/
|
/* Length of the whole payload*/
|
||||||
{ PAYLOAD_LENGTH, offsetof(private_id_payload_t, payload_length) },
|
{ PAYLOAD_LENGTH, offsetof(private_id_payload_t, payload_length) },
|
||||||
/* 1 Byte ID type*/
|
/* 1 Byte ID type*/
|
||||||
{ U_INT_8, offsetof(private_id_payload_t, id_type) },
|
{ U_INT_8, offsetof(private_id_payload_t, id_type) },
|
||||||
/* 3 reserved bytes */
|
/* 3 reserved bytes */
|
||||||
{ RESERVED_BYTE, 0 },
|
{ RESERVED_BYTE, 0 },
|
||||||
{ RESERVED_BYTE, 0 },
|
{ RESERVED_BYTE, 0 },
|
||||||
{ RESERVED_BYTE, 0 },
|
{ RESERVED_BYTE, 0 },
|
||||||
/* some id data bytes, length is defined in PAYLOAD_LENGTH */
|
/* some id data bytes, length is defined in PAYLOAD_LENGTH */
|
||||||
{ ID_DATA, offsetof(private_id_payload_t, id_data) }
|
{ ID_DATA, offsetof(private_id_payload_t, id_data) }
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -112,136 +112,59 @@ encoding_rule_t id_payload_encodings[] = {
|
|||||||
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, verify, status_t,
|
||||||
* Implementation of payload_t.verify.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static status_t verify(private_id_payload_t *this)
|
|
||||||
{
|
{
|
||||||
if ((this->id_type == 0) ||
|
if (this->id_type == 0 || this->id_type == 4)
|
||||||
(this->id_type == 4) ||
|
|
||||||
((this->id_type >= 6) && (this->id_type <= 8)) ||
|
|
||||||
((this->id_type >= 12) && (this->id_type <= 200)))
|
|
||||||
{
|
{
|
||||||
/* reserved IDs */
|
/* reserved IDs */
|
||||||
DBG1(DBG_ENC, "received ID with reserved type %d", this->id_type);
|
DBG1(DBG_ENC, "received ID with reserved type %d", this->id_type);
|
||||||
return FAILED;
|
return FAILED;
|
||||||
}
|
}
|
||||||
|
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_encoding_rules, void,
|
||||||
* Implementation of id_payload_t.get_encoding_rules.
|
private_id_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
|
||||||
*/
|
|
||||||
static void get_encoding_rules(private_id_payload_t *this, encoding_rule_t **rules, size_t *rule_count)
|
|
||||||
{
|
{
|
||||||
*rules = id_payload_encodings;
|
*rules = id_payload_encodings;
|
||||||
*rule_count = sizeof(id_payload_encodings) / sizeof(encoding_rule_t);
|
*rule_count = countof(id_payload_encodings);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_type, payload_type_t,
|
||||||
* Implementation of payload_t.get_type.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static payload_type_t get_payload_type(private_id_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return this->payload_type;
|
return this->payload_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_next_type, payload_type_t,
|
||||||
* Implementation of payload_t.get_next_type.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static payload_type_t get_next_type(private_id_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return this->next_payload;
|
return this->next_payload;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, set_next_type, void,
|
||||||
* Implementation of payload_t.set_next_type.
|
private_id_payload_t *this, payload_type_t type)
|
||||||
*/
|
|
||||||
static void set_next_type(private_id_payload_t *this,payload_type_t type)
|
|
||||||
{
|
{
|
||||||
this->next_payload = type;
|
this->next_payload = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(payload_t, get_length, size_t,
|
||||||
* Implementation of payload_t.get_length.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static size_t get_length(private_id_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return this->payload_length;
|
return this->payload_length;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD(id_payload_t, get_identification, identification_t*,
|
||||||
* Implementation of id_payload_t.set_type.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static void set_id_type (private_id_payload_t *this, id_type_t type)
|
|
||||||
{
|
{
|
||||||
this->id_type = type;
|
return identification_create_from_encoding(this->id_type, this->id_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
METHOD2(payload_t, id_payload_t, destroy, void,
|
||||||
* Implementation of id_payload_t.get_id_type.
|
private_id_payload_t *this)
|
||||||
*/
|
|
||||||
static id_type_t get_id_type (private_id_payload_t *this)
|
|
||||||
{
|
{
|
||||||
return (this->id_type);
|
free(this->id_data.ptr);
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of id_payload_t.set_data.
|
|
||||||
*/
|
|
||||||
static void set_data (private_id_payload_t *this, chunk_t data)
|
|
||||||
{
|
|
||||||
if (this->id_data.ptr != NULL)
|
|
||||||
{
|
|
||||||
chunk_free(&(this->id_data));
|
|
||||||
}
|
|
||||||
this->id_data.ptr = clalloc(data.ptr,data.len);
|
|
||||||
this->id_data.len = data.len;
|
|
||||||
this->payload_length = ID_PAYLOAD_HEADER_LENGTH + this->id_data.len;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of id_payload_t.get_data_clone.
|
|
||||||
*/
|
|
||||||
static chunk_t get_data (private_id_payload_t *this)
|
|
||||||
{
|
|
||||||
return (this->id_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of id_payload_t.get_data_clone.
|
|
||||||
*/
|
|
||||||
static chunk_t get_data_clone (private_id_payload_t *this)
|
|
||||||
{
|
|
||||||
chunk_t cloned_data;
|
|
||||||
if (this->id_data.ptr == NULL)
|
|
||||||
{
|
|
||||||
return (this->id_data);
|
|
||||||
}
|
|
||||||
cloned_data.ptr = clalloc(this->id_data.ptr,this->id_data.len);
|
|
||||||
cloned_data.len = this->id_data.len;
|
|
||||||
return cloned_data;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of id_payload_t.get_identification.
|
|
||||||
*/
|
|
||||||
static identification_t *get_identification (private_id_payload_t *this)
|
|
||||||
{
|
|
||||||
return identification_create_from_encoding(this->id_type,this->id_data);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Implementation of payload_t.destroy and id_payload_t.destroy.
|
|
||||||
*/
|
|
||||||
static void destroy(private_id_payload_t *this)
|
|
||||||
{
|
|
||||||
if (this->id_data.ptr != NULL)
|
|
||||||
{
|
|
||||||
chunk_free(&(this->id_data));
|
|
||||||
}
|
|
||||||
free(this);
|
free(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -250,44 +173,41 @@ static void destroy(private_id_payload_t *this)
|
|||||||
*/
|
*/
|
||||||
id_payload_t *id_payload_create(payload_type_t payload_type)
|
id_payload_t *id_payload_create(payload_type_t payload_type)
|
||||||
{
|
{
|
||||||
private_id_payload_t *this = malloc_thing(private_id_payload_t);
|
private_id_payload_t *this;
|
||||||
|
|
||||||
/* interface functions */
|
INIT(this,
|
||||||
this->public.payload_interface.verify = (status_t (*) (payload_t *))verify;
|
.public = {
|
||||||
this->public.payload_interface.get_encoding_rules = (void (*) (payload_t *, encoding_rule_t **, size_t *) ) get_encoding_rules;
|
.payload_interface = {
|
||||||
this->public.payload_interface.get_length = (size_t (*) (payload_t *)) get_length;
|
.verify = _verify,
|
||||||
this->public.payload_interface.get_next_type = (payload_type_t (*) (payload_t *)) get_next_type;
|
.get_encoding_rules = _get_encoding_rules,
|
||||||
this->public.payload_interface.set_next_type = (void (*) (payload_t *,payload_type_t)) set_next_type;
|
.get_length = _get_length,
|
||||||
this->public.payload_interface.get_type = (payload_type_t (*) (payload_t *)) get_payload_type;
|
.get_next_type = _get_next_type,
|
||||||
this->public.payload_interface.destroy = (void (*) (payload_t *))destroy;
|
.set_next_type = _set_next_type,
|
||||||
|
.get_type = _get_type,
|
||||||
/* public functions */
|
.destroy = _destroy,
|
||||||
this->public.destroy = (void (*) (id_payload_t *)) destroy;
|
},
|
||||||
this->public.set_id_type = (void (*) (id_payload_t *,id_type_t)) set_id_type;
|
.get_identification = _get_identification,
|
||||||
this->public.get_id_type = (id_type_t (*) (id_payload_t *)) get_id_type;
|
.destroy = _destroy,
|
||||||
this->public.set_data = (void (*) (id_payload_t *,chunk_t)) set_data;
|
},
|
||||||
this->public.get_data = (chunk_t (*) (id_payload_t *)) get_data;
|
.next_payload = NO_PAYLOAD,
|
||||||
this->public.get_data_clone = (chunk_t (*) (id_payload_t *)) get_data_clone;
|
.payload_length = ID_PAYLOAD_HEADER_LENGTH,
|
||||||
|
.payload_type = payload_type,
|
||||||
this->public.get_identification = (identification_t * (*) (id_payload_t *this)) get_identification;
|
);
|
||||||
|
return &this->public;
|
||||||
/* private variables */
|
|
||||||
this->critical = FALSE;
|
|
||||||
this->next_payload = NO_PAYLOAD;
|
|
||||||
this->payload_length =ID_PAYLOAD_HEADER_LENGTH;
|
|
||||||
this->id_data = chunk_empty;
|
|
||||||
this->payload_type = payload_type;
|
|
||||||
|
|
||||||
return (&(this->public));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Described in header.
|
* Described in header.
|
||||||
*/
|
*/
|
||||||
id_payload_t *id_payload_create_from_identification(payload_type_t payload_type, identification_t *identification)
|
id_payload_t *id_payload_create_from_identification(payload_type_t payload_type,
|
||||||
|
identification_t *id)
|
||||||
{
|
{
|
||||||
id_payload_t *this= id_payload_create(payload_type);
|
private_id_payload_t *this;
|
||||||
this->set_data(this,identification->get_encoding(identification));
|
|
||||||
this->set_id_type(this,identification->get_type(identification));
|
this = (private_id_payload_t*)id_payload_create(payload_type);
|
||||||
return this;
|
this->id_data = chunk_clone(id->get_encoding(id));
|
||||||
|
this->id_type = id->get_type(id);
|
||||||
|
this->payload_length += this->id_data.len;
|
||||||
|
|
||||||
|
return &this->public;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -40,57 +40,15 @@ typedef struct id_payload_t id_payload_t;
|
|||||||
* The ID payload format is described in RFC section 3.5.
|
* The ID payload format is described in RFC section 3.5.
|
||||||
*/
|
*/
|
||||||
struct id_payload_t {
|
struct id_payload_t {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The payload_t interface.
|
* The payload_t interface.
|
||||||
*/
|
*/
|
||||||
payload_t payload_interface;
|
payload_t payload_interface;
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the ID type.
|
|
||||||
*
|
|
||||||
* @param type Type of ID
|
|
||||||
*/
|
|
||||||
void (*set_id_type) (id_payload_t *this, id_type_t type);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the ID type.
|
|
||||||
*
|
|
||||||
* @return type of the ID
|
|
||||||
*/
|
|
||||||
id_type_t (*get_id_type) (id_payload_t *this);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the ID data.
|
|
||||||
*
|
|
||||||
* Data are getting cloned.
|
|
||||||
*
|
|
||||||
* @param data ID data as chunk_t
|
|
||||||
*/
|
|
||||||
void (*set_data) (id_payload_t *this, chunk_t data);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the ID data.
|
|
||||||
*
|
|
||||||
* Returned data are a copy of the internal one
|
|
||||||
*
|
|
||||||
* @return ID data as chunk_t
|
|
||||||
*/
|
|
||||||
chunk_t (*get_data_clone) (id_payload_t *this);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the ID data.
|
|
||||||
*
|
|
||||||
* Returned data are NOT copied.
|
|
||||||
*
|
|
||||||
* @return ID data as chunk_t
|
|
||||||
*/
|
|
||||||
chunk_t (*get_data) (id_payload_t *this);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an identification object of this id payload.
|
* Creates an identification object of this id payload.
|
||||||
*
|
*
|
||||||
* Returned object has to get destroyed by the caller.
|
|
||||||
*
|
|
||||||
* @return identification_t object
|
* @return identification_t object
|
||||||
*/
|
*/
|
||||||
identification_t *(*get_identification) (id_payload_t *this);
|
identification_t *(*get_identification) (id_payload_t *this);
|
||||||
|
|||||||
Reference in New Issue
Block a user