4 * @brief Interface of sa_payload_t.
9 * Copyright (C) 2005 Jan Hutter, Martin Willi
10 * Hochschule fuer Technik Rapperswil
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
17 * This program is distributed in the hope that it will be useful, but
18 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
19 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 #include <encoding/payloads/payload.h>
28 #include <encoding/payloads/proposal_substructure.h>
29 #include <utils/linked_list.h>
30 #include <config/init_config.h>
33 * Critical flag must not be set.
37 #define SA_PAYLOAD_CRITICAL_FLAG FALSE;
40 * SA_PAYLOAD length in bytes without any proposal substructure.
44 #define SA_PAYLOAD_HEADER_LENGTH 4
46 typedef struct sa_payload_t sa_payload_t
;
49 * Class representing an IKEv2-SA Payload.
51 * The SA Payload format is described in RFC section 3.3.
57 * The payload_t interface.
59 payload_t payload_interface
;
62 * @brief Creates an iterator of stored proposal_substructure_t objects.
64 * @warning The created iterator has to get destroyed by the caller!
66 * @warning When deleting an proposal using this iterator,
67 * the length of this transform substructure has to be refreshed
68 * by calling get_length()!
70 * @param this calling sa_payload_t object
71 * @param[in] forward iterator direction (TRUE: front to end)
72 * @return created iterator_t object
74 iterator_t
*(*create_proposal_substructure_iterator
) (sa_payload_t
*this, bool forward
);
77 * @brief Adds a proposal_substructure_t object to this object.
79 * @warning The added proposal_substructure_t object is
80 * getting destroyed in destroy function of sa_payload_t.
82 * @param this calling sa_payload_t object
83 * @param proposal proposal_substructure_t object to add
85 void (*add_proposal_substructure
) (sa_payload_t
*this,proposal_substructure_t
*proposal
);
88 * Creates an array of ike_proposal_t's in this SA payload.
90 * An IKE proposal consist of transform of type ENCRYPTION_ALGORITHM,
91 * PSEUDO_RANDOM_FUNCTION, INTEGRITY_ALGORITHM and DIFFIE_HELLMAN_GROUP
93 * @param proposals the pointer to the first entry of ike_proposal_t's is set
94 * @param proposal_count the number of found proposals is written at this location
96 * - SUCCESS if an IKE proposal could be found
97 * - NOT_FOUND if no IKE proposal could be found
98 * - FAILED if a proposal does not contain all needed transforms
101 status_t (*get_ike_proposals
) (sa_payload_t
*this, ike_proposal_t
**proposals
, size_t *proposal_count
);
104 * @brief Destroys an sa_payload_t object.
106 * @param this sa_payload_t object to destroy
108 void (*destroy
) (sa_payload_t
*this);
112 * @brief Creates an empty sa_payload_t object
114 * @return created sa_payload_t object
118 sa_payload_t
*sa_payload_create();
121 * @brief Creates a sa_payload_t object from array of ike_proposal_t's.
123 * @return created sa_payload_t object
124 * @param proposals pointer to first proposal in array of type ike_proposal_t
125 * @param proposal_count number of ike_proposal_t's in array
129 sa_payload_t
*sa_payload_create_from_ike_proposals(ike_proposal_t
*proposals
, size_t proposal_count
);
131 #endif /*SA_PAYLOAD_H_*/