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 msg message to send
105 * @return TNC result code
107 TNC_Result (*send_message
)(imc_agent_t
*this,
108 TNC_ConnectionID connection_id
,
112 * Call when a PA-TNC message was received
114 * @param connection_id network connection ID assigned by TNCC
115 * @param msg received unparsed message
116 * @param msg_type message type of the received message
117 * @param pa_tnc_message parsed PA-TNC message or NULL if an error occurred
118 * @return TNC result code
120 TNC_Result (*receive_message
)(imc_agent_t
*this,
121 TNC_ConnectionID connection_id
, chunk_t msg
,
122 TNC_MessageType msg_type
,
123 pa_tnc_msg_t
**pa_tnc_msg
);
126 * Destroys an imc_agent_t object
128 void (*destroy
)(imc_agent_t
*this);
132 * Create an imc_agent_t object
134 * @param name name of the IMC
135 * @param vendor_id vendor ID of the IMC
136 * @param subtype message subtype of the IMC
137 * @param id ID of the IMC as assigned by the TNCS
138 * @param actual_version actual version of the IF-IMC API
141 imc_agent_t
*imc_agent_create(const char *name
,
142 pen_t vendor_id
, u_int32_t subtype
,
143 TNC_IMCID id
, TNC_Version
*actual_version
);
145 #endif /** IMC_AGENT_H_ @}*/