set configuration of imv_test with each TNC handshake

This commit is contained in:
Andreas Steffen
2011-06-02 11:37:27 +02:00
parent e1e6656094
commit 6cfc8668c1
3 changed files with 29 additions and 8 deletions
+13 -3
View File
@@ -66,6 +66,7 @@ TNC_Result TNC_IMV_NotifyConnectionChange(TNC_IMVID imv_id,
TNC_ConnectionState new_state) TNC_ConnectionState new_state)
{ {
imv_state_t *state; imv_state_t *state;
imv_test_state_t *test_state;
int rounds; int rounds;
if (!imv_test) if (!imv_test)
@@ -76,12 +77,21 @@ TNC_Result TNC_IMV_NotifyConnectionChange(TNC_IMVID imv_id,
switch (new_state) switch (new_state)
{ {
case TNC_CONNECTION_STATE_CREATE: case TNC_CONNECTION_STATE_CREATE:
rounds = lib->settings->get_int(lib->settings, state = imv_test_state_create(connection_id);
"libimcv.plugins.imv-test.rounds", 0);
state = imv_test_state_create(connection_id, rounds);
return imv_test->create_state(imv_test, state); return imv_test->create_state(imv_test, state);
case TNC_CONNECTION_STATE_DELETE: case TNC_CONNECTION_STATE_DELETE:
return imv_test->delete_state(imv_test, connection_id); return imv_test->delete_state(imv_test, connection_id);
case TNC_CONNECTION_STATE_HANDSHAKE:
if (!imv_test->get_state(imv_test, connection_id, &state))
{
return TNC_RESULT_FATAL;
}
state->change_state(state, new_state);
rounds = lib->settings->get_int(lib->settings,
"libimcv.plugins.imv-test.rounds", 0);
test_state = (imv_test_state_t*)state;
test_state->set_rounds(test_state, rounds);
return TNC_RESULT_SUCCESS;
default: default:
return imv_test->change_state(imv_test, connection_id, new_state); return imv_test->change_state(imv_test, connection_id, new_state);
} }
@@ -89,6 +89,12 @@ METHOD(imv_state_t, destroy, void,
free(this); free(this);
} }
METHOD(imv_test_state_t, set_rounds, void,
private_imv_test_state_t *this, int rounds)
{
this->rounds = rounds;
}
METHOD(imv_test_state_t, another_round, bool, METHOD(imv_test_state_t, another_round, bool,
private_imv_test_state_t *this) private_imv_test_state_t *this)
{ {
@@ -98,7 +104,7 @@ METHOD(imv_test_state_t, another_round, bool,
/** /**
* Described in header. * Described in header.
*/ */
imv_state_t *imv_test_state_create(TNC_ConnectionID connection_id, int rounds) imv_state_t *imv_test_state_create(TNC_ConnectionID connection_id)
{ {
private_imv_test_state_t *this; private_imv_test_state_t *this;
@@ -111,13 +117,13 @@ imv_state_t *imv_test_state_create(TNC_ConnectionID connection_id, int rounds)
.set_recommendation = _set_recommendation, .set_recommendation = _set_recommendation,
.destroy = _destroy, .destroy = _destroy,
}, },
.set_rounds = _set_rounds,
.another_round = _another_round, .another_round = _another_round,
}, },
.state = TNC_CONNECTION_STATE_CREATE, .state = TNC_CONNECTION_STATE_CREATE,
.rec = TNC_IMV_ACTION_RECOMMENDATION_NO_RECOMMENDATION, .rec = TNC_IMV_ACTION_RECOMMENDATION_NO_RECOMMENDATION,
.eval = TNC_IMV_EVALUATION_RESULT_DONT_KNOW, .eval = TNC_IMV_EVALUATION_RESULT_DONT_KNOW,
.connection_id = connection_id, .connection_id = connection_id,
.rounds = rounds,
); );
return &this->public.interface; return &this->public.interface;
@@ -36,21 +36,26 @@ struct imv_test_state_t {
*/ */
imv_state_t interface; imv_state_t interface;
/**
* Set the IMC-IMV round-trip count
*
* @param number of re-measurement rounds
*/
void (*set_rounds)(imv_test_state_t *this, int rounds);
/** /**
* Check and decrease IMC-IMV round-trip count * Check and decrease IMC-IMV round-trip count
* *
* @return new connection state * @return new connection state
*/ */
bool (*another_round)(imv_test_state_t *this); bool (*another_round)(imv_test_state_t *this);
}; };
/** /**
* Create an imv_test_state_t instance * Create an imv_test_state_t instance
* *
* @param id connection ID * @param id connection ID
* @param rounds total number of IMC re-measurements
*/ */
imv_state_t* imv_test_state_create(TNC_ConnectionID id, int rounds); imv_state_t* imv_test_state_create(TNC_ConnectionID id);
#endif /** IMV_TEST_STATE_H_ @}*/ #endif /** IMV_TEST_STATE_H_ @}*/