2 * Copyright (C) 2006-2007 Tobias Brunner
3 * Copyright (C) 2005-2009 Martin Willi
4 * Copyright (C) 2006 Daniel Roethlisberger
5 * Copyright (C) 2005 Jan Hutter
6 * Hochschule fuer Technik Rapperswil
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * @defgroup message message
21 * @{ @ingroup encoding
27 typedef struct message_t message_t
;
30 #include <sa/ike_sa_id.h>
31 #include <network/packet.h>
32 #include <encoding/payloads/ike_header.h>
33 #include <encoding/payloads/notify_payload.h>
34 #include <utils/linked_list.h>
35 #include <crypto/crypters/crypter.h>
36 #include <crypto/signers/signer.h>
39 * This class is used to represent an IKEv2-Message.
41 * The message handles parsing and generation of payloads
42 * via parser_t/generator_t. Encryption is done transparently
43 * via the encryption_payload_t. A set of rules for messages
44 * and payloads does check parsed messages.
49 * Sets the IKE major version of the message.
51 * @param major_version major version to set
53 void (*set_major_version
) (message_t
*this,u_int8_t major_version
);
56 * Gets the IKE major version of the message.
58 * @return major version of the message
60 u_int8_t (*get_major_version
) (message_t
*this);
63 * Sets the IKE minor version of the message.
65 * @param minor_version minor version to set
67 void (*set_minor_version
) (message_t
*this,u_int8_t minor_version
);
70 * Gets the IKE minor version of the message.
72 * @return minor version of the message
74 u_int8_t (*get_minor_version
) (message_t
*this);
77 * Sets the Message ID of the message.
79 * @param message_id message_id to set
81 void (*set_message_id
) (message_t
*this,u_int32_t message_id
);
84 * Gets the Message ID of the message.
86 * @return message_id type of the message
88 u_int32_t (*get_message_id
) (message_t
*this);
91 * Gets the initiator SPI of the message.
93 * @return initiator spi of the message
95 u_int64_t (*get_initiator_spi
) (message_t
*this);
98 * Gets the responder SPI of the message.
100 * @return responder spi of the message
102 u_int64_t (*get_responder_spi
) (message_t
*this);
105 * Sets the IKE_SA ID of the message.
107 * ike_sa_id gets cloned.
109 * @param ike_sa_id ike_sa_id to set
111 void (*set_ike_sa_id
) (message_t
*this, ike_sa_id_t
* ike_sa_id
);
114 * Gets the IKE_SA ID of the message.
116 * The ike_sa_id points to the message internal id, do not modify.
118 * @return ike_sa_id of message
120 ike_sa_id_t
*(*get_ike_sa_id
) (message_t
*this);
123 * Sets the exchange type of the message.
125 * @param exchange_type exchange_type to set
127 void (*set_exchange_type
) (message_t
*this,exchange_type_t exchange_type
);
130 * Gets the exchange type of the message.
132 * @return exchange type of the message
134 exchange_type_t (*get_exchange_type
) (message_t
*this);
137 * Gets the payload type of the first payload.
139 * @return payload type of the first payload
141 payload_type_t (*get_first_payload_type
) (message_t
*this);
144 * Sets the request flag.
146 * @param request TRUE if message is a request, FALSE if it is a reply
148 void (*set_request
) (message_t
*this, bool request
);
153 * @return TRUE if message is a request, FALSE if it is a reply
155 bool (*get_request
) (message_t
*this);
158 * Append a payload to the message.
160 * If the payload must be encrypted is not specified here. Encryption
161 * of payloads is evaluated via internal rules for the messages and
162 * is done before generation. The order of payloads may change, since
163 * all payloads to encrypt are added to the encryption payload, which is
164 * always the last one.
166 * @param payload payload to append
168 void (*add_payload
) (message_t
*this, payload_t
*payload
);
171 * Build a notify payload and add it to the message.
173 * This is a helper method to create notify messages or add
174 * notify payload to messages. The flush parameter specifies if existing
175 * payloads should get removed before appending the notify.
177 * @param flush TRUE to remove existing payloads
178 * @param type type of the notify
179 * @param data a chunk of data to add to the notify, gets cloned
181 void (*add_notify
) (message_t
*this, bool flush
, notify_type_t type
,
185 * Parses header of message.
187 * Begins parisng of a message created via message_create_from_packet().
188 * The parsing context is stored, so a subsequent call to parse_body()
189 * will continue the parsing process.
192 * - SUCCESS if header could be parsed
193 * - PARSE_ERROR if corrupted/invalid data found
194 * - FAILED if consistence check of header failed
196 status_t (*parse_header
) (message_t
*this);
199 * Parses body of message.
201 * The body gets not only parsed, but rather it gets verified.
202 * All payloads are verified if they are allowed to exist in the message
203 * of this type and if their own structure is ok.
204 * If there are encrypted payloads, they get decrypted via the supplied
205 * crypter. Also the message integrity gets verified with the supplied
207 * Crypter/signer can be omitted (by passing NULL) when no encryption
208 * payload is expected.
210 * @param crypter crypter to decrypt encryption payloads
211 * @param signer signer to verifiy a message with an encryption payload
213 * - SUCCESS if parsing successful
214 * - NOT_SUPPORTED if ciritcal unknown payloads found
215 * - NOT_SUPPORTED if message type is not supported!
216 * - PARSE_ERROR if message parsing failed
217 * - VERIFY_ERROR if message verification failed (bad syntax)
218 * - FAILED if integrity check failed
219 * - INVALID_STATE if crypter/signer not supplied, but needed
221 status_t (*parse_body
) (message_t
*this, crypter_t
*crypter
, signer_t
*signer
);
224 * Generates the UDP packet of specific message.
226 * Payloads which must be encrypted are generated first and added to
227 * an encryption payload. This encryption payload will get encrypted via
228 * the supplied crypter. Then all other payloads and the header get generated.
229 * After that, the checksum is added to the encryption payload over the full
231 * Crypter/signer can be omitted (by passing NULL) when no encryption
232 * payload is expected.
233 * Generation is only done once, multiple calls will just return a packet copy.
235 * @param crypter crypter to use when a payload must be encrypted
236 * @param signer signer to build a mac
237 * @param packet copy of generated packet
239 * - SUCCESS if packet could be generated
240 * - INVALID_STATE if exchange type is currently not set
241 * - NOT_FOUND if no rules found for message generation
242 * - INVALID_STATE if crypter/signer not supplied but needed.
244 status_t (*generate
) (message_t
*this, crypter_t
*crypter
, signer_t
*signer
, packet_t
**packet
);
247 * Gets the source host informations.
249 * @warning Returned host_t object is not getting cloned,
250 * do not destroy nor modify.
252 * @return host_t object representing source host
254 host_t
* (*get_source
) (message_t
*this);
257 * Sets the source host informations.
259 * @warning host_t object is not getting cloned and gets destroyed by
260 * message_t.destroy or next call of message_t.set_source.
262 * @param host host_t object representing source host
264 void (*set_source
) (message_t
*this, host_t
*host
);
267 * Gets the destination host informations.
269 * @warning Returned host_t object is not getting cloned,
270 * do not destroy nor modify.
272 * @return host_t object representing destination host
274 host_t
* (*get_destination
) (message_t
*this);
277 * Sets the destination host informations.
279 * @warning host_t object is not getting cloned and gets destroyed by
280 * message_t.destroy or next call of message_t.set_destination.
282 * @param host host_t object representing destination host
284 void (*set_destination
) (message_t
*this, host_t
*host
);
287 * Create an enumerator over all payloads.
289 * @return enumerator over payload_t
291 enumerator_t
* (*create_payload_enumerator
) (message_t
*this);
294 * Find a payload of a specific type.
296 * Returns the first occurance.
298 * @param type type of the payload to find
299 * @return payload, or NULL if no such payload found
301 payload_t
* (*get_payload
) (message_t
*this, payload_type_t type
);
304 * Get the first notify payload of a specific type.
306 * @param type type of notification payload
307 * @return notify payload, NULL if no such notify found
309 notify_payload_t
* (*get_notify
)(message_t
*this, notify_type_t type
);
312 * Returns a clone of the internal stored packet_t object.
314 * @return packet_t object as clone of internal one
316 packet_t
* (*get_packet
) (message_t
*this);
319 * Returns a clone of the internal stored packet_t data.
321 * @return clone of the internal stored packet_t data.
323 chunk_t (*get_packet_data
) (message_t
*this);
326 * Destroys a message and all including objects.
328 void (*destroy
) (message_t
*this);
332 * Creates an message_t object from a incoming UDP Packet.
334 * @warning the given packet_t object is not copied and gets
335 * destroyed in message_t's destroy call.
337 * - exchange_type is set to NOT_SET
338 * - original_initiator is set to TRUE
339 * - is_request is set to TRUE
340 * Call message_t.parse_header afterwards.
342 * @param packet packet_t object which is assigned to message
343 * @return message_t object
345 message_t
* message_create_from_packet(packet_t
*packet
);
349 * Creates an empty message_t object.
351 * - exchange_type is set to NOT_SET
352 * - original_initiator is set to TRUE
353 * - is_request is set to TRUE
355 * @return message_t object
357 message_t
* message_create(void);
359 #endif /** MESSAGE_H_ @}*/