2 * Copyright (C) 2011 Andreas Steffen, HSR Hochschule fuer Technik Rapperswil
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup imc_agent_t imc_agent
18 * @{ @ingroup imc_agent
24 #include "imc_state.h"
25 #include "pa_tnc/pa_tnc_msg.h"
32 typedef struct imc_agent_t imc_agent_t
;
35 * Core functions of an Integrity Measurement Verifier (IMC)
40 * Ask a TNCC to retry an Integrity Check Handshake
42 * @param imc_id IMC ID assigned by TNCC
43 * @param connection_id network connection ID assigned by TNCC
44 * @param reason IMC retry reason
45 * @return TNC result code
47 TNC_Result (*request_handshake_retry
)(TNC_IMCID imc_id
,
48 TNC_ConnectionID connection_id
,
49 TNC_RetryReason reason
);
54 * @param bind_function function offered by the TNCC
55 * @return TNC result code
57 TNC_Result (*bind_functions
)(imc_agent_t
*this,
58 TNC_TNCC_BindFunctionPointer bind_function
);
61 * Create the IMC state for a TNCCS connection instance
63 * @param state internal IMC state instance
64 * @return TNC result code
66 TNC_Result (*create_state
)(imc_agent_t
*this, imc_state_t
*state
);
69 * Delete the IMC state for a TNCCS connection instance
71 * @param connection_id network connection ID assigned by TNCS
72 * @return TNC result code
74 TNC_Result (*delete_state
)(imc_agent_t
*this,
75 TNC_ConnectionID connection_id
);
78 * Change the current state of a TNCCS connection
80 * @param connection_id network connection ID assigned by TNCS
81 * @param new_state new state of TNCCS connection
82 * @param state_p internal IMC state instance [optional argument]
83 * @return TNC result code
85 TNC_Result (*change_state
)(imc_agent_t
*this,
86 TNC_ConnectionID connection_id
,
87 TNC_ConnectionState new_state
,
88 imc_state_t
**state_p
);
91 * Get the IMC state for a TNCCS connection instance
93 * @param connection_id network connection ID assigned by TNCS
94 * @param state internal IMC state instance
95 * @return TRUE if the state was found
97 bool (*get_state
)(imc_agent_t
*this,
98 TNC_ConnectionID connection_id
, imc_state_t
**state
);
101 * Call when an PA-TNC message is to be sent
103 * @param connection_id network connection ID assigned by TNCC
104 * @param excl exclusive flag
105 * @param src_imc_id IMC ID to be set as source
106 * @param dst_imv_id IMV ID to be set as destination
107 * @param msg message to send
108 * @return TNC result code
110 TNC_Result (*send_message
)(imc_agent_t
*this,
111 TNC_ConnectionID connection_id
, bool excl
,
112 TNC_UInt32 src_imc_id
, TNC_UInt32 dst_imv_id
,
116 * Call when a PA-TNC message was received
118 * @param state state for current connection
119 * @param msg received unparsed message
120 * @param msg_vid message vendorID of the received message
121 * @param msg_subtype message subtype of the received message
122 * @param src_imv_id source IMV ID
123 * @param dst_imc_id destination IMC ID
124 * @param pa_tnc_message parsed PA-TNC message or NULL if an error occurred
125 * @return TNC result code
127 TNC_Result (*receive_message
)(imc_agent_t
*this,
128 imc_state_t
*state
, chunk_t msg
,
129 TNC_VendorID msg_vid
,
130 TNC_MessageSubtype msg_subtype
,
131 TNC_UInt32 src_imv_id
,
132 TNC_UInt32 dst_imc_id
,
133 pa_tnc_msg_t
**pa_tnc_msg
);
136 * Reserve an additional IMC ID
138 * @param id additional IMC ID assigned by TNCC
139 * @return TNC result code
141 TNC_Result (*reserve_additional_id
)(imc_agent_t
*this, TNC_UInt32
*id
);
144 * Destroys an imc_agent_t object
146 void (*destroy
)(imc_agent_t
*this);
150 * Create an imc_agent_t object
152 * @param name name of the IMC
153 * @param vendor_id vendor ID of the IMC
154 * @param subtype message subtype of the IMC
155 * @param id ID of the IMC as assigned by the TNCS
156 * @param actual_version actual version of the IF-IMC API
159 imc_agent_t
*imc_agent_create(const char *name
,
160 pen_t vendor_id
, u_int32_t subtype
,
161 TNC_IMCID id
, TNC_Version
*actual_version
);
163 #endif /** IMC_AGENT_H_ @}*/