2 * Copyright (C) 2010 Andreas Steffen
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * @defgroup tnccs_manager tnccs_manager
21 #ifndef TNCCS_MANAGER_H_
22 #define TNCCS_MANAGER_H_
26 #include <tnc/imv/imv_recommendations.h>
28 typedef struct tnccs_manager_t tnccs_manager_t
;
31 * The TNCCS manager manages all TNCCS implementations and creates instances.
33 * A plugin registers its implemented TNCCS protocol with the manager by
34 * providing type and a constructor function. The manager then creates
35 * TNCCS protocol instances via the provided constructor.
37 struct tnccs_manager_t
{
40 * Register a TNCCS protocol implementation.
42 * @param type TNCCS protocol type
43 * @param constructor constructor, returns a TNCCS protocol implementation
45 void (*add_method
)(tnccs_manager_t
*this, tnccs_type_t type
,
46 tnccs_constructor_t constructor
);
49 * Unregister a TNCCS protocol implementation using it's constructor.
51 * @param constructor constructor function to remove, as added in add_method
53 void (*remove_method
)(tnccs_manager_t
*this, tnccs_constructor_t constructor
);
56 * Create a new TNCCS protocol instance.
58 * @param type type of the TNCCS protocol
59 * @param is_server TRUE if TNC Server, FALSE if TNC Client
60 * @return TNCCS protocol instance, NULL if no constructor found
62 tnccs_t
* (*create_instance
)(tnccs_manager_t
*this, tnccs_type_t type
,
66 * Create a TNCCS connection and assign a unique connection ID as well a
67 * callback function for adding a message to a TNCCS batch and create
68 * an empty set for collecting IMV recommendations
70 * @param tnccs TNCCS connection instance
71 * @param send_message TNCCS callback function
72 * @param recs pointer to IMV recommendation set
73 * @return assigned connection ID
75 TNC_ConnectionID (*create_connection
)(tnccs_manager_t
*this, tnccs_t
*tnccs
,
76 tnccs_send_message_t send_message
,
77 recommendations_t
**recs
);
80 * Remove a TNCCS connection using its connection ID.
82 * @param id connection ID of the connection to be removed
84 void (*remove_connection
)(tnccs_manager_t
*this, TNC_ConnectionID id
);
87 * Add an IMC/IMV message to the batch of a given connection ID.
89 * @param imc_id ID of IMC or TNC_IMCID_ANY
90 * @param imv_id ID of IMV or TNC_IMVID_ANY
91 * @param connection_id ID of target connection
92 * @param msg message to be added
93 * @param msg_len message length
94 * @param msg_type message type
97 TNC_Result (*send_message
)(tnccs_manager_t
*this,
100 TNC_ConnectionID connection_id
,
101 TNC_BufferReference msg
,
103 TNC_MessageType msg_type
);
106 * Deliver an IMV Action Recommendation and IMV Evaluation Result to the TNCS
108 * @param imv_id ID of the IMV providing the recommendation
109 * @param connection_id ID of target connection
110 * @param rec action recommendation
111 * @param eval evaluation result
112 * @return return code
114 TNC_Result (*provide_recommendation
)(tnccs_manager_t
*this,
116 TNC_ConnectionID connection_id
,
117 TNC_IMV_Action_Recommendation rec
,
118 TNC_IMV_Evaluation_Result eval
);
121 * Get the value of an attribute associated with a connection or with the
124 * @param imv_id ID of the IMV requesting the attribute
125 * @param connection_id ID of target connection
126 * @param attribute_id ID of the requested attribute
127 * @param buffer_len length of the buffer in bytes
128 * @param buffer pointer to the buffer
129 * @param out_value_len actual length of the returned attribute
130 * @return return code
132 TNC_Result (*get_attribute
)(tnccs_manager_t
*this,
134 TNC_ConnectionID connection_id
,
135 TNC_AttributeID attribute_id
,
136 TNC_UInt32 buffer_len
,
137 TNC_BufferReference buffer
,
138 TNC_UInt32
*out_value_len
);
141 * Set the value of an attribute associated with a connection or with the
144 * @param imv_id ID of the IMV setting the attribute
145 * @param connection_id ID of target connection
146 * @param attribute_id ID of the attribute to be set
147 * @param buffer_len length of the buffer in bytes
148 * @param buffer pointer to the buffer
149 * @return return code
151 TNC_Result (*set_attribute
)(tnccs_manager_t
*this,
153 TNC_ConnectionID connection_id
,
154 TNC_AttributeID attribute_id
,
155 TNC_UInt32 buffer_len
,
156 TNC_BufferReference buffer
);
159 * Destroy a tnccs_manager instance.
161 void (*destroy
)(tnccs_manager_t
*this);
165 * Create a tnccs_manager instance.
167 tnccs_manager_t
*tnccs_manager_create();
169 #endif /** TNCCS_MANAGER_H_ @}*/