2 * @file transform_attribute.c
4 * @brief Declaration of the class transform_attribute_t.
6 * An object of this type represents an IKEv2 TRANSFORM attribute.
11 * Copyright (C) 2005 Jan Hutter, Martin Willi
12 * Hochschule fuer Technik Rapperswil
14 * This program is free software; you can redistribute it and/or modify it
15 * under the terms of the GNU General Public License as published by the
16 * Free Software Foundation; either version 2 of the License, or (at your
17 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
19 * This program is distributed in the hope that it will be useful, but
20 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
21 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
28 #include "transform_attribute.h"
30 #include <encoding/payloads/encodings.h>
32 #include <utils/allocator.h>
35 * Private data of an transform_attribute_t Object
38 typedef struct private_transform_attribute_s private_transform_attribute_t
;
40 struct private_transform_attribute_s
{
42 * public transform_attribute_t interface
44 transform_attribute_t
public;
47 * Attribute Format Flag
49 * - TRUE means value is stored in attribute_length_or_value
50 * - FALSE means value is stored in attribute_value
52 bool attribute_format
;
55 * Type of the attribute
57 u_int16_t attribute_type
;
60 * Attribute Length if attribute_format is 0, attribute Value otherwise
62 u_int16_t attribute_length_or_value
;
65 * Attribute value as chunk if attribute_format is 0 (FALSE)
67 chunk_t attribute_value
;
73 * string mappings for transform_attribute_type_t
75 mapping_t transform_attribute_type_m
[] = {
76 {ATTRIBUTE_UNDEFINED
, "ATTRIBUTE_UNDEFINED"},
77 {KEY_LENGTH
, "KEY_LENGTH"},
82 * Encoding rules to parse or generate a Transform attribute
84 * The defined offsets are the positions in a object of type
85 * private_transform_attribute_t.
88 encoding_rule_t transform_attribute_encodings
[] = {
89 /* Flag defining the format of this payload */
90 { ATTRIBUTE_FORMAT
, offsetof(private_transform_attribute_t
, attribute_format
) },
91 /* type of the attribute as 15 bit unsigned integer */
92 { ATTRIBUTE_TYPE
, offsetof(private_transform_attribute_t
, attribute_type
) },
93 /* Length or value, depending on the attribute format flag */
94 { ATTRIBUTE_LENGTH_OR_VALUE
, offsetof(private_transform_attribute_t
, attribute_length_or_value
) },
95 /* Value of attribute if attribute format flag is zero */
96 { ATTRIBUTE_VALUE
, offsetof(private_transform_attribute_t
, attribute_value
) }
101 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
102 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
103 !A! Attribute Type ! AF=0 Attribute Length !
104 !F! ! AF=1 Attribute Value !
105 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
106 ! AF=0 Attribute Value !
107 ! AF=1 Not Transmitted !
108 +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
112 * Implements payload_t's verify function.
113 * See #payload_s.verify for description.
115 static status_t
verify(private_transform_attribute_t
*this)
117 if (this->attribute_type
!= KEY_LENGTH
)
126 * Implements payload_t's get_encoding_rules function.
127 * See #payload_s.get_encoding_rules for description.
129 static status_t
get_encoding_rules(private_transform_attribute_t
*this, encoding_rule_t
**rules
, size_t *rule_count
)
131 *rules
= transform_attribute_encodings
;
132 *rule_count
= sizeof(transform_attribute_encodings
) / sizeof(encoding_rule_t
);
138 * Implements payload_t's get_type function.
139 * See #payload_s.get_type for description.
141 static payload_type_t
get_type(private_transform_attribute_t
*this)
143 return TRANSFORM_ATTRIBUTE
;
147 * Implements payload_t's get_next_type function.
148 * See #payload_s.get_next_type for description.
150 static payload_type_t
get_next_type(private_transform_attribute_t
*this)
156 * Implements payload_t's set_next_type function.
157 * See #payload_s.set_next_type for description.
159 static status_t
set_next_type(private_transform_attribute_t
*this,payload_type_t type
)
165 * Implements payload_t's get_length function.
166 * See #payload_s.get_length for description.
168 static size_t get_length(private_transform_attribute_t
*this)
170 if (this->attribute_format
== TRUE
)
172 /*Attribute size is only 4 byte */
175 return (this->attribute_length_or_value
+ 4);
178 * Implements transform_attribute_t's set_value function.
179 * See #transform_attribute_s.set_value for description.
181 static status_t
set_value_chunk(private_transform_attribute_t
*this, chunk_t value
)
183 if (this->attribute_value
.ptr
!= NULL
)
185 /* free existing value */
186 allocator_free(this->attribute_value
.ptr
);
187 this->attribute_value
.ptr
= NULL
;
188 this->attribute_value
.len
= 0;
194 this->attribute_value
.ptr
= allocator_clone_bytes(value
.ptr
,value
.len
);
195 if (this->attribute_value
.ptr
== NULL
)
199 this->attribute_value
.len
= value
.len
;
200 this->attribute_length_or_value
= value
.len
;
201 /* attribute has not a fixed length */
202 this->attribute_format
= FALSE
;
206 memcpy(&(this->attribute_length_or_value
),value
.ptr
,value
.len
);
212 * Implements transform_attribute_t's set_value function.
213 * See #transform_attribute_s.set_value for description.
215 static status_t
set_value(private_transform_attribute_t
*this, u_int16_t value
)
217 if (this->attribute_value
.ptr
!= NULL
)
219 /* free existing value */
220 allocator_free(this->attribute_value
.ptr
);
221 this->attribute_value
.ptr
= NULL
;
222 this->attribute_value
.len
= 0;
225 this->attribute_length_or_value
= value
;
230 * Implements transform_attribute_t's get_value_chunk function.
231 * See #transform_attribute_s.get_value_chunk for description.
233 static chunk_t
get_value_chunk (private_transform_attribute_t
*this)
237 if (this->attribute_format
== FALSE
)
239 value
.ptr
= this->attribute_value
.ptr
;
240 value
.len
= this->attribute_value
.len
;
244 value
.ptr
= (void *) &(this->attribute_length_or_value
);
252 * Implements transform_attribute_t's get_value function.
253 * See #transform_attribute_s.get_value for description.
255 static u_int16_t
get_value (private_transform_attribute_t
*this)
257 return this->attribute_length_or_value
;
262 * Implements transform_attribute_t's set_attribute_type function.
263 * See #transform_attribute_s.set_attribute_type for description.
265 static status_t
set_attribute_type (private_transform_attribute_t
*this, u_int16_t type
)
267 this->attribute_type
= type
& 0x7FFF;
272 * Implements transform_attribute_t's get_attribute_type function.
273 * See #transform_attribute_s.get_attribute_type for description.
275 static u_int16_t
get_attribute_type (private_transform_attribute_t
*this)
277 return this->attribute_type
;
281 * Implements transform_attribute_t's clone function.
282 * See transform_attribute_s.clone for description.
284 static status_t
clone(private_transform_attribute_t
*this,transform_attribute_t
**clone
)
286 private_transform_attribute_t
*new_clone
;
288 new_clone
= (private_transform_attribute_t
*) transform_attribute_create();
290 new_clone
->attribute_format
= this->attribute_format
;
291 new_clone
->attribute_type
= this->attribute_type
;
292 new_clone
->attribute_length_or_value
= this->attribute_length_or_value
;
294 if (!new_clone
->attribute_format
)
296 new_clone
->attribute_value
.ptr
= allocator_clone_bytes(this->attribute_value
.ptr
,this->attribute_value
.len
);
297 new_clone
->attribute_value
.len
= this->attribute_value
.len
;
298 if (new_clone
->attribute_value
.ptr
== NULL
)
300 new_clone
->public.destroy(&(new_clone
->public));
305 *clone
= (transform_attribute_t
*) new_clone
;
310 * Implements payload_t's and transform_attribute_t's destroy function.
311 * See #payload_s.destroy or transform_attribute_s.destroy for description.
313 static status_t
destroy(private_transform_attribute_t
*this)
315 if (this->attribute_value
.ptr
!= NULL
)
317 allocator_free(this->attribute_value
.ptr
);
319 allocator_free(this);
325 * Described in header
327 transform_attribute_t
*transform_attribute_create()
329 private_transform_attribute_t
*this = allocator_alloc_thing(private_transform_attribute_t
);
335 /* payload interface */
336 this->public.payload_interface
.verify
= (status_t (*) (payload_t
*))verify
;
337 this->public.payload_interface
.get_encoding_rules
= (status_t (*) (payload_t
*, encoding_rule_t
**, size_t *) ) get_encoding_rules
;
338 this->public.payload_interface
.get_length
= (size_t (*) (payload_t
*)) get_length
;
339 this->public.payload_interface
.get_next_type
= (payload_type_t (*) (payload_t
*)) get_next_type
;
340 this->public.payload_interface
.set_next_type
= (status_t (*) (payload_t
*,payload_type_t
)) set_next_type
;
341 this->public.payload_interface
.get_type
= (payload_type_t (*) (payload_t
*)) get_type
;
342 this->public.payload_interface
.destroy
= (status_t (*) (payload_t
*))destroy
;
344 /* public functions */
345 this->public.set_value_chunk
= (status_t (*) (transform_attribute_t
*,chunk_t
)) set_value_chunk
;
346 this->public.set_value
= (status_t (*) (transform_attribute_t
*,u_int16_t
)) set_value
;
347 this->public.get_value_chunk
= (chunk_t (*) (transform_attribute_t
*)) get_value_chunk
;
348 this->public.get_value
= (u_int16_t (*) (transform_attribute_t
*)) get_value
;
349 this->public.set_attribute_type
= (status_t (*) (transform_attribute_t
*,u_int16_t type
)) set_attribute_type
;
350 this->public.get_attribute_type
= (u_int16_t (*) (transform_attribute_t
*)) get_attribute_type
;
351 this->public.clone
= (status_t (*) (transform_attribute_t
*,transform_attribute_t
**)) clone
;
352 this->public.destroy
= (status_t (*) (transform_attribute_t
*)) destroy
;
354 /* set default values of the fields */
355 this->attribute_format
= TRUE
;
356 this->attribute_type
= 0;
357 this->attribute_length_or_value
= 0;
358 this->attribute_value
.ptr
= NULL
;
359 this->attribute_value
.len
= 0;
361 return (&(this->public));