2 * Copyright (C) 2006 Mike McCauley
3 * Copyright (C) 2010 Andreas Steffen, 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 #include <tnc/imv/imv_manager.h>
18 #include <tnc/tnccs/tnccs_manager.h>
23 * Called by the IMV to inform a TNCS about the set of message types the IMV
26 TNC_Result
TNC_TNCS_ReportMessageTypes(TNC_IMVID imv_id
,
27 TNC_MessageTypeList supported_types
,
28 TNC_UInt32 type_count
)
30 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
32 DBG1(DBG_TNC
, "ignoring ReportMessageTypes() from unregistered IMV %u",
34 return TNC_RESULT_INVALID_PARAMETER
;
36 return tnc
->imvs
->set_message_types(tnc
->imvs
, imv_id
, supported_types
,
41 * Called by the IMV to inform a TNCS about the set of message types the IMV
42 * is able to receive. This function supports long message types.
44 TNC_Result
TNC_TNCS_ReportMessageTypesLong(TNC_IMVID imv_id
,
45 TNC_VendorIDList supported_vids
,
46 TNC_MessageSubtypeList supported_subtypes
,
47 TNC_UInt32 type_count
)
49 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
51 DBG1(DBG_TNC
, "ignoring ReportMessageTypesLong() from unregistered IMV %u",
53 return TNC_RESULT_INVALID_PARAMETER
;
55 return tnc
->imvs
->set_message_types_long(tnc
->imvs
, imv_id
, supported_vids
,
56 supported_subtypes
, type_count
);
60 * Called by the IMV to ask a TNCS to retry an Integrity Check Handshake
62 TNC_Result
TNC_TNCS_RequestHandshakeRetry(TNC_IMVID imv_id
,
63 TNC_ConnectionID connection_id
,
64 TNC_RetryReason reason
)
66 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
68 DBG1(DBG_TNC
, "ignoring RequestHandshakeRetry() from unregistered IMV %u",
70 return TNC_RESULT_INVALID_PARAMETER
;
72 return tnc
->tnccs
->request_handshake_retry(tnc
->tnccs
, FALSE
, imv_id
,
73 connection_id
, reason
);
77 * Called by the IMV when an IMV-IMC message is to be sent
79 TNC_Result
TNC_TNCS_SendMessage(TNC_IMVID imv_id
,
80 TNC_ConnectionID connection_id
,
81 TNC_BufferReference msg
,
83 TNC_MessageType msg_type
)
86 TNC_MessageSubtype msg_subtype
;
88 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
90 DBG1(DBG_TNC
, "ignoring SendMessage() from unregistered IMV %u",
92 return TNC_RESULT_INVALID_PARAMETER
;
94 msg_vid
= (msg_type
>> 8) & TNC_VENDORID_ANY
;
95 msg_subtype
= msg_type
& TNC_SUBTYPE_ANY
;
97 return tnc
->tnccs
->send_message(tnc
->tnccs
, TNC_IMCID_ANY
, imv_id
,
98 connection_id
, 0, msg
, msg_len
, msg_vid
, msg_subtype
);
102 * Called by the IMV when an IMV-IMC message is to be sent over IF-TNCCS 2.0
104 TNC_Result
TNC_TNCS_SendMessageLong(TNC_IMVID imv_id
,
105 TNC_ConnectionID connection_id
,
106 TNC_UInt32 msg_flags
,
107 TNC_BufferReference msg
,
109 TNC_VendorID msg_vid
,
110 TNC_MessageSubtype msg_subtype
,
113 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
115 DBG1(DBG_TNC
, "ignoring SendMessageLong() from unregistered IMV %u",
117 return TNC_RESULT_INVALID_PARAMETER
;
119 return tnc
->tnccs
->send_message(tnc
->tnccs
, imc_id
, imv_id
, connection_id
,
120 msg_flags
, msg
, msg_len
, msg_vid
, msg_subtype
);
124 * Called by the IMV to deliver its IMV Action Recommendation and IMV Evaluation
127 TNC_Result
TNC_TNCS_ProvideRecommendation(TNC_IMVID imv_id
,
128 TNC_ConnectionID connection_id
,
129 TNC_IMV_Action_Recommendation recommendation
,
130 TNC_IMV_Evaluation_Result evaluation
)
132 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
134 DBG1(DBG_TNC
, "ignoring ProvideRecommendation() from unregistered IMV %u",
136 return TNC_RESULT_INVALID_PARAMETER
;
138 return tnc
->tnccs
->provide_recommendation(tnc
->tnccs
, imv_id
, connection_id
,
139 recommendation
, evaluation
);
143 * Called by the IMV to get the value of an attribute associated with a
144 * connection or with the TNCS as a whole.
146 TNC_Result
TNC_TNCS_GetAttribute(TNC_IMVID imv_id
,
147 TNC_ConnectionID connection_id
,
148 TNC_AttributeID attribute_id
,
149 TNC_UInt32 buffer_len
,
150 TNC_BufferReference buffer
,
151 TNC_UInt32
*out_value_len
)
153 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
155 DBG1(DBG_TNC
, "ignoring GetAttribute() from unregistered IMV %u",
157 return TNC_RESULT_INVALID_PARAMETER
;
159 return tnc
->tnccs
->get_attribute(tnc
->tnccs
, imv_id
, connection_id
,
160 attribute_id
, buffer_len
, buffer
, out_value_len
);
164 * Called by the IMV to set the value of an attribute associated with a
165 * connection or with the TNCS as a whole.
167 TNC_Result
TNC_TNCS_SetAttribute(TNC_IMVID imv_id
,
168 TNC_ConnectionID connection_id
,
169 TNC_AttributeID attribute_id
,
170 TNC_UInt32 buffer_len
,
171 TNC_BufferReference buffer
)
173 if (!tnc
->imvs
->is_registered(tnc
->imvs
, imv_id
))
175 DBG1(DBG_TNC
, "ignoring SetAttribute() from unregistered IMV %u",
177 return TNC_RESULT_INVALID_PARAMETER
;
179 return tnc
->tnccs
->set_attribute(tnc
->tnccs
, imv_id
, connection_id
,
180 attribute_id
, buffer_len
, buffer
);
184 * Called by the IMV when it needs a function pointer
186 TNC_Result
TNC_TNCS_BindFunction(TNC_IMVID id
,
188 void **function_pointer
)
190 if (streq(function_name
, "TNC_TNCS_ReportMessageTypes"))
192 *function_pointer
= (void*)TNC_TNCS_ReportMessageTypes
;
194 else if (streq(function_name
, "TNC_TNCS_ReportMessageTypesLong"))
196 *function_pointer
= (void*)TNC_TNCS_ReportMessageTypesLong
;
198 else if (streq(function_name
, "TNC_TNCS_RequestHandshakeRetry"))
200 *function_pointer
= (void*)TNC_TNCS_RequestHandshakeRetry
;
202 else if (streq(function_name
, "TNC_TNCS_SendMessage"))
204 *function_pointer
= (void*)TNC_TNCS_SendMessage
;
206 else if (streq(function_name
, "TNC_TNCS_SendMessageLong"))
208 *function_pointer
= (void*)TNC_TNCS_SendMessageLong
;
210 else if (streq(function_name
, "TNC_TNCS_ProvideRecommendation"))
212 *function_pointer
= (void*)TNC_TNCS_ProvideRecommendation
;
214 else if (streq(function_name
, "TNC_TNCS_GetAttribute"))
216 *function_pointer
= (void*)TNC_TNCS_GetAttribute
;
218 else if (streq(function_name
, "TNC_TNCS_SetAttribute"))
220 *function_pointer
= (void*)TNC_TNCS_SetAttribute
;
224 return TNC_RESULT_INVALID_PARAMETER
;
226 return TNC_RESULT_SUCCESS
;