]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
added IMC/IMV support for send_message_long() and reserve_additional_id() functions
authorAndreas Steffen <andreas.steffen@strongswan.org>
Fri, 9 Dec 2011 16:11:31 +0000 (17:11 +0100)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Fri, 9 Dec 2011 16:11:31 +0000 (17:11 +0100)
14 files changed:
src/libcharon/plugins/tnc_imc/tnc_imc.c
src/libcharon/plugins/tnc_imc/tnc_imc_manager.c
src/libcharon/plugins/tnc_imv/tnc_imv_manager.c
src/libimcv/imc/imc_agent.c
src/libimcv/imc/imc_agent.h
src/libimcv/imv/imv_agent.c
src/libimcv/imv/imv_agent.h
src/libimcv/plugins/imc_scanner/imc_scanner.c
src/libimcv/plugins/imc_test/imc_test.c
src/libimcv/plugins/imc_test/imc_test_state.c
src/libimcv/plugins/imc_test/imc_test_state.h
src/libimcv/plugins/imv_test/imv_test.c
src/libpts/plugins/imc_attestation/imc_attestation.c
src/libpts/plugins/imv_attestation/imv_attestation.c

index dc326cf4d14c51710d174dcf4927c35f98daec6f..a1f2d770f9390c0b9426c8b532ccc041379ddd40 100644 (file)
@@ -98,18 +98,19 @@ METHOD(imc_t, get_id, TNC_IMCID,
 METHOD(imc_t, add_id, void,
        private_tnc_imc_t *this, TNC_IMCID id)
 {
-       TNC_IMCID *new_id;
+       void *pointer;
 
-       new_id = malloc_thing(TNC_IMCID);
-       *new_id = id;
-       this->additional_ids->insert_last(this->additional_ids, new_id);
+       /* store the scalar value in the pointer */
+       pointer = (void*)id;
+       this->additional_ids->insert_last(this->additional_ids, pointer);
 }
 
 METHOD(imc_t, has_id, bool,
        private_tnc_imc_t *this, TNC_IMCID id)
 {
        enumerator_t *enumerator;
-       TNC_IMCID *additional_id;
+       TNC_IMCID additional_id;
+       void *pointer;
        bool found = FALSE;
 
        /* check primary IMC ID */
@@ -126,9 +127,12 @@ METHOD(imc_t, has_id, bool,
 
        /* check additional IMC IDs */
        enumerator = this->additional_ids->create_enumerator(this->additional_ids);
-       while (enumerator->enumerate(enumerator, &additional_id))
+       while (enumerator->enumerate(enumerator, &pointer))
        {
-               if (id == *additional_id)
+               /* interpret pointer as scalar value */
+               additional_id = (TNC_UInt32)pointer;
+
+               if (id == additional_id)
                {
                        found = TRUE;
                        break;
@@ -305,7 +309,7 @@ METHOD(imc_t, destroy, void,
 {
        dlclose(this->handle);
        this->mutex->destroy(this->mutex);
-       this->additional_ids->destroy_function(this->additional_ids, free);
+       this->additional_ids->destroy(this->additional_ids);
        free(this->supported_vids);
        free(this->supported_subtypes);
        free(this->name);
index 4ea01e49b9b71233ee43a403250f4c77f09d8beb..e101cf974e3d735279fa283f0f87f70658d00196 100644 (file)
@@ -154,8 +154,11 @@ METHOD(imc_manager_t, reserve_id, bool,
        {
                if (imc->get_id(imc))
                {
-                       imc->add_id(imc, this->next_imc_id++);
                        found = TRUE;
+                       *new_id = this->next_imc_id++;
+                       imc->add_id(imc, *new_id);
+                       DBG2(DBG_TNC, "additional ID %u reserved for IMC with primary ID %u",
+                                                 *new_id, id);
                        break;
                }
        }
index 10a4adc463b599598d89eaa02ce8e2f8a51a034c..b1da731562c25ca950111999d5c1aa6497a46663 100644 (file)
@@ -171,8 +171,11 @@ METHOD(imv_manager_t, reserve_id, bool,
        {
                if (imv->get_id(imv))
                {
-                       imv->add_id(imv, this->next_imv_id++);
                        found = TRUE;
+                       *new_id = this->next_imv_id++;
+                       imv->add_id(imv, *new_id);
+                       DBG2(DBG_TNC, "additional ID %u reserved for IMV with primary ID %u",
+                                                 *new_id, id);
                        break;
                }
        }
index a39b4b7ccf0f43ab810b329f2529002eca6394db..0a01f7dc56934decfca24450ec56bd25bc6de9dd 100644 (file)
@@ -105,6 +105,29 @@ struct private_imc_agent_t {
                                                           TNC_UInt32 msg_len,
                                                           TNC_MessageType msg_type);
 
+
+       /**
+        * Call when an IMC-IMC message is to be sent with long message types
+        *
+        * @param imc_id                        IMC ID assigned by TNCC
+        * @param connection_id         network connection ID assigned by TNCC
+        * @param msg_flags                     message flags
+        * @param msg                           message to send
+        * @param msg_len                       message length in bytes
+        * @param msg_vid                       message vendor ID
+        * @param msg_subtype           message subtype
+        * @param dst_imc_id            destination IMV ID
+        * @return                                      TNC result code
+        */
+       TNC_Result (*send_message_long)(TNC_IMCID imc_id,
+                                                                       TNC_ConnectionID connection_id,
+                                                                       TNC_UInt32 msg_flags,
+                                                                       TNC_BufferReference msg,
+                                                                       TNC_UInt32 msg_len,
+                                                                       TNC_VendorID msg_vid,
+                                                                       TNC_MessageSubtype msg_subtype,
+                                                                       TNC_UInt32 dst_imv_id);
+
        /**
         * Get the value of an attribute associated with a connection
         * or with the TNCC as a whole.
@@ -140,6 +163,17 @@ struct private_imc_agent_t {
                                                                TNC_AttributeID attribute_id,
                                                                TNC_UInt32 buffer_len,
                                                                TNC_BufferReference buffer);
+
+       /**
+        * Reserve an additional IMC ID
+        *
+        * @param imc_id                        primary IMC ID assigned by TNCC
+        * @param out_imc_id            additional IMC ID assigned by TNCC
+        * @return                                      TNC result code
+        */
+       TNC_Result (*reserve_additional_id)(TNC_IMCID imc_id,
+                                                                               TNC_UInt32 *out_imc_id);
+
 };
 
 METHOD(imc_agent_t, bind_functions, TNC_Result,
@@ -170,6 +204,11 @@ METHOD(imc_agent_t, bind_functions, TNC_Result,
        {
                this->send_message = NULL;
        }
+       if (bind_function(this->id, "TNC_TNCC_SendMessageLong",
+                       (void**)&this->send_message_long) != TNC_RESULT_SUCCESS)
+       {
+               this->send_message_long = NULL;
+       }
        if (bind_function(this->id, "TNC_TNCC_GetAttribute",
                        (void**)&this->get_attribute) != TNC_RESULT_SUCCESS)
        {
@@ -180,6 +219,11 @@ METHOD(imc_agent_t, bind_functions, TNC_Result,
        {
                this->set_attribute = NULL;
        }
+       if (bind_function(this->id, "TNC_TNCC_ReserveAdditionalIMCID",
+                       (void**)&this->reserve_additional_id) != TNC_RESULT_SUCCESS)
+       {
+               this->reserve_additional_id = NULL;
+       }
        DBG2(DBG_IMC, "IMC %u \"%s\" provided with bind function",
                                  this->id, this->name);
 
@@ -403,16 +447,41 @@ METHOD(imc_agent_t, get_state, bool,
 }
 
 METHOD(imc_agent_t, send_message, TNC_Result,
-       private_imc_agent_t *this, TNC_ConnectionID connection_id, chunk_t msg)
+       private_imc_agent_t *this, TNC_ConnectionID connection_id, bool excl,
+       TNC_UInt32 src_imc_id, TNC_UInt32 dst_imv_id, chunk_t msg)
 {
        TNC_MessageType type;
+       TNC_UInt32 msg_flags;
+       imc_state_t *state;
 
-       if (!this->send_message)
+       state = find_connection(this, connection_id);
+       if (!state)
        {
+               DBG1(DBG_IMV, "IMC %u \"%s\" has no state for Connection ID %u",
+                                         this->id, this->name, connection_id);
                return TNC_RESULT_FATAL;
        }
-       type = (this->vendor_id << 8) | this->subtype;
-       return this->send_message(this->id, connection_id, msg.ptr, msg.len, type);
+
+       if (state->has_long(state) && this->send_message_long)
+       {
+               if (!src_imc_id)
+               {
+                       src_imc_id = this->id;
+               }
+               msg_flags = excl ? TNC_MESSAGE_FLAGS_EXCLUSIVE : 0;
+
+               return this->send_message_long(src_imc_id, connection_id, msg_flags,
+                                                                          msg.ptr, msg.len, this->vendor_id,
+                                                                          this->subtype, dst_imv_id);
+       }
+       if (this->send_message)
+       {
+               type = (this->vendor_id << 8) | this->subtype;
+
+               return this->send_message(this->id, connection_id, msg.ptr, msg.len,
+                                                                 type);
+       }
+       return TNC_RESULT_FATAL;
 }
 
 METHOD(imc_agent_t, receive_message, TNC_Result,
@@ -470,6 +539,16 @@ METHOD(imc_agent_t, receive_message, TNC_Result,
        return TNC_RESULT_SUCCESS;
 }
 
+METHOD(imc_agent_t, reserve_additional_id, TNC_Result,
+       private_imc_agent_t *this, TNC_UInt32 *id)
+{
+       if (!this->reserve_additional_id)
+       {
+               return TNC_RESULT_ILLEGAL_OPERATION;
+       }
+       return this->reserve_additional_id(this->id, id);
+}
+
 METHOD(imc_agent_t, destroy, void,
        private_imc_agent_t *this)
 {
@@ -506,6 +585,7 @@ imc_agent_t *imc_agent_create(const char *name,
                        .get_state = _get_state,
                        .send_message = _send_message,
                        .receive_message = _receive_message,
+                       .reserve_additional_id = _reserve_additional_id,
                        .destroy = _destroy,
                },
                .name = name,
index 1912a39c11566759baeaae95bf2caa773f28e728..ef211d637497ea0940a9cdafe48fdd4dff70edda 100644 (file)
@@ -101,11 +101,15 @@ struct imc_agent_t {
         * Call when an PA-TNC message is to be sent
         *
         * @param connection_id         network connection ID assigned by TNCC
+        * @param excl                          exclusive flag
+        * @param src_imc_id            IMC ID to be set as source
+        * @param dst_imv_id            IMV ID to be set as destination
         * @param msg                           message to send
         * @return                                      TNC result code
         */
        TNC_Result (*send_message)(imc_agent_t *this,
-                                                          TNC_ConnectionID connection_id,
+                                                          TNC_ConnectionID connection_id, bool excl,
+                                                          TNC_UInt32 src_imc_id, TNC_UInt32 dst_imv_id,
                                                           chunk_t msg);
 
        /**
@@ -122,6 +126,14 @@ struct imc_agent_t {
                                                                  TNC_MessageType msg_type,
                                                                  pa_tnc_msg_t **pa_tnc_msg);
 
+       /**
+        * Reserve an additional IMC ID
+        *
+        * @param id                            additional IMC ID assigned by TNCC
+        * @return                                      TNC result code
+        */
+       TNC_Result (*reserve_additional_id)(imc_agent_t *this, TNC_UInt32 *id);
+
        /**
         * Destroys an imc_agent_t object
         */
index f7ec0e674c2073a6541cd1f62f89b820f3be74de..f25011c305cf13361f076231e9ec595f8bb334ca 100644 (file)
@@ -105,6 +105,28 @@ struct private_imv_agent_t {
                                                           TNC_UInt32 msg_len,
                                                           TNC_MessageType msg_type);
 
+       /**
+        * Call when an IMV-IMC message is to be sent with long message types
+        *
+        * @param imv_id                        IMV ID assigned by TNCS
+        * @param connection_id         network connection ID assigned by TNCS
+        * @param msg_flags                     message flags
+        * @param msg                           message to send
+        * @param msg_len                       message length in bytes
+        * @param msg_vid                       message vendor ID
+        * @param msg_subtype           message subtype
+        * @param dst_imc_id            destination IMC ID
+        * @return                                      TNC result code
+        */
+       TNC_Result (*send_message_long)(TNC_IMVID imv_id,
+                                                                       TNC_ConnectionID connection_id,
+                                                                       TNC_UInt32 msg_flags,
+                                                                       TNC_BufferReference msg,
+                                                                       TNC_UInt32 msg_len,
+                                                                       TNC_VendorID msg_vid,
+                                                                       TNC_MessageSubtype msg_subtype,
+                                                                       TNC_UInt32 dst_imc_id);
+
        /**
         * Deliver IMV Action Recommendation and IMV Evaluation Results to the TNCS
         *
@@ -154,6 +176,17 @@ struct private_imv_agent_t {
                                                                TNC_AttributeID attribute_id,
                                                                TNC_UInt32 buffer_len,
                                                                TNC_BufferReference buffer);
+
+       /**
+        * Reserve an additional IMV ID
+        *
+        * @param imv_id                        primary IMV ID assigned by TNCS
+        * @param out_imv_id            additional IMV ID assigned by TNCS
+        * @return                                      TNC result code
+        */
+       TNC_Result (*reserve_additional_id)(TNC_IMVID imv_id,
+                                                                               TNC_UInt32 *out_imv_id);
+
 };
 
 METHOD(imv_agent_t, bind_functions, TNC_Result,
@@ -184,6 +217,11 @@ METHOD(imv_agent_t, bind_functions, TNC_Result,
        {
                this->send_message = NULL;
        }
+       if (bind_function(this->id, "TNC_TNCS_SendMessageLong",
+                       (void**)&this->send_message_long) != TNC_RESULT_SUCCESS)
+       {
+               this->send_message_long = NULL;
+       }
        if (bind_function(this->id, "TNC_TNCS_ProvideRecommendation",
                        (void**)&this->provide_recommendation) != TNC_RESULT_SUCCESS)
        {
@@ -199,6 +237,11 @@ METHOD(imv_agent_t, bind_functions, TNC_Result,
        {
                this->set_attribute = NULL;
        }
+       if (bind_function(this->id, "TNC_TNCC_ReserveAdditionalIMVID",
+                       (void**)&this->reserve_additional_id) != TNC_RESULT_SUCCESS)
+       {
+               this->reserve_additional_id = NULL;
+       }
        DBG2(DBG_IMV, "IMV %u \"%s\" provided with bind function",
                                  this->id, this->name);
 
@@ -421,16 +464,41 @@ METHOD(imv_agent_t, get_state, bool,
 }
 
 METHOD(imv_agent_t, send_message, TNC_Result,
-       private_imv_agent_t *this, TNC_ConnectionID connection_id, chunk_t msg)
+       private_imv_agent_t *this, TNC_ConnectionID connection_id, bool excl,
+       TNC_UInt32 src_imv_id, TNC_UInt32 dst_imc_id, chunk_t msg)
 {
        TNC_MessageType type;
+       TNC_UInt32 msg_flags;
+       imv_state_t *state;
 
-       if (!this->send_message)
+       state = find_connection(this, connection_id);
+       if (!state)
        {
+               DBG1(DBG_IMV, "IMV %u \"%s\" has no state for Connection ID %u",
+                                         this->id, this->name, connection_id);
                return TNC_RESULT_FATAL;
        }
-       type = (this->vendor_id << 8) | this->subtype;
-       return this->send_message(this->id, connection_id, msg.ptr, msg.len, type);
+
+       if (state->has_long(state) && this->send_message_long)
+       {
+               if (!src_imv_id)
+               {
+                       src_imv_id = this->id;
+               }
+               msg_flags = excl ? TNC_MESSAGE_FLAGS_EXCLUSIVE : 0;
+
+               return this->send_message_long(src_imv_id, connection_id, msg_flags,
+                                                                          msg.ptr, msg.len, this->vendor_id,
+                                                                          this->subtype, dst_imc_id);
+       }
+       if (this->send_message)
+       {
+               type = (this->vendor_id << 8) | this->subtype;
+
+               return this->send_message(this->id, connection_id, msg.ptr, msg.len,
+                                                                 type);
+       }
+       return TNC_RESULT_FATAL;
 }
 
 METHOD(imv_agent_t, set_recommendation, TNC_Result,
@@ -561,6 +629,16 @@ METHOD(imv_agent_t, provide_recommendation, TNC_Result,
        return this->provide_recommendation(this->id, connection_id, rec, eval);
 }
 
+METHOD(imv_agent_t, reserve_additional_id, TNC_Result,
+       private_imv_agent_t *this, TNC_UInt32 *id)
+{
+       if (!this->reserve_additional_id)
+       {
+               return TNC_RESULT_ILLEGAL_OPERATION;
+       }
+       return this->reserve_additional_id(this->id, id);
+}
+
 METHOD(imv_agent_t, destroy, void,
        private_imv_agent_t *this)
 {
@@ -600,6 +678,7 @@ imv_agent_t *imv_agent_create(const char *name,
                        .receive_message = _receive_message,
                        .set_recommendation = _set_recommendation,
                        .provide_recommendation = _provide_recommendation,
+                       .reserve_additional_id = _reserve_additional_id,
                        .destroy = _destroy,
                },
                .name = name,
index b6c8841f2d431107f4bb9a81b65d1b5c4c51ad6f..86780649e89202088b21346d3bbf1c5a77d3873d 100644 (file)
@@ -101,11 +101,16 @@ struct imv_agent_t {
         * Call when a PA-TNC message is to be sent
         *
         * @param connection_id         network connection ID assigned by TNCS
+        * @param excl                          exclusive flag
+        * @param src_imv_id            IMV ID to be set as source
+        * @param dst_imc_id            IMD ID to be set as destination
         * @param msg                           message to send
         * @return                                      TNC result code
         */
        TNC_Result (*send_message)(imv_agent_t *this,
-                                                          TNC_ConnectionID connection_id, chunk_t msg);
+                                                          TNC_ConnectionID connection_id, bool excl,
+                                                          TNC_UInt32 src_imv_id, TNC_UInt32 dst_imc_id,
+                                                          chunk_t msg);
 
        /**
         * Call when a PA-TNC message was received
@@ -143,6 +148,14 @@ struct imv_agent_t {
        TNC_Result (*provide_recommendation)(imv_agent_t *this,
                                                                                 TNC_ConnectionID connection_id);
 
+       /**
+        * Reserve an additional IMV ID
+        *
+        * @param id                            additional IMV ID assigned by TNCS
+        * @return                                      TNC result code
+        */
+       TNC_Result (*reserve_additional_id)(imv_agent_t *this, TNC_UInt32 *id);
+
        /**
         * Destroys an imv_agent_t object
         */
index ecf758ba0e42105a827f1da77b2b37470969adc9..0b232e5b95457898ef27388f66559654414645cf 100644 (file)
@@ -237,8 +237,8 @@ static TNC_Result send_message(TNC_ConnectionID connection_id)
        msg = pa_tnc_msg_create();
        msg->add_attribute(msg, attr);
        msg->build(msg);
-       result = imc_scanner->send_message(imc_scanner, connection_id,
-                                                                          msg->get_encoding(msg));     
+       result = imc_scanner->send_message(imc_scanner, connection_id, FALSE, 0,
+                                                                          TNC_IMVID_ANY, msg->get_encoding(msg));      
        msg->destroy(msg);
 
        return result;
index 01e70e8aff97ce7daa3a0a154e90f326cee57d91..915035f9af558f95f02ff8755bc6f46753d0c4b8 100644 (file)
@@ -73,8 +73,10 @@ TNC_Result TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id,
        imc_state_t *state;
        imc_test_state_t *test_state;
        TNC_Result result;
+       TNC_UInt32 new_imc_id;
        char *command;
        bool retry;
+       int additional_ids;
 
        if (!imc_test)
        {
@@ -85,11 +87,48 @@ TNC_Result TNC_IMC_NotifyConnectionChange(TNC_IMCID imc_id,
        {
                case TNC_CONNECTION_STATE_CREATE:
                        command = lib->settings->get_str(lib->settings,
-                                                "libimcv.plugins.imc-test.command", "none");
+                                                               "libimcv.plugins.imc-test.command", "none");
                        retry = lib->settings->get_bool(lib->settings,
                                                                "libimcv.plugins.imc-test.retry", FALSE);
                        state = imc_test_state_create(connection_id, command, retry);
-                       return imc_test->create_state(imc_test, state);
+
+                       result = imc_test->create_state(imc_test, state);
+                       if (result != TNC_RESULT_SUCCESS)
+                       {
+                               return result;
+                       }
+
+                       /* Do we want to reserve additional IMC IDs? */
+                       additional_ids = lib->settings->get_int(lib->settings,
+                                                               "libimcv.plugins.imc-test.additional_ids", 0);
+                       if (additional_ids < 1)
+                       {
+                               return TNC_RESULT_SUCCESS;
+                       }
+
+                       if (!state->has_long(state))
+                       {
+                               DBG1(DBG_IMC, "IMC %u \"%s\" did not detect support of "
+                                                          "multiple IMC IDs", imc_id, imc_name);
+                               return TNC_RESULT_SUCCESS;
+                       }
+                       test_state = (imc_test_state_t*)state;
+
+                       while (additional_ids-- > 0)
+                       {
+                               if (imc_test->reserve_additional_id(imc_test, &new_imc_id) !=
+                                       TNC_RESULT_SUCCESS)
+                               {
+                                       DBG1(DBG_IMC, "IMC %u \"%s\" failed to reserve "
+                                                                 "%d additional IMC IDs",
+                                                                  imc_id, imc_name, additional_ids);
+                                       break;
+                               }
+                               DBG2(DBG_IMC, "IMC %u \"%s\" reserved additional ID %u",
+                                                          imc_id, imc_name, new_imc_id);
+                               test_state->add_id(test_state, new_imc_id);
+                       }
+                       return TNC_RESULT_SUCCESS;
 
                case TNC_CONNECTION_STATE_HANDSHAKE:
                        /* get updated IMC state */
@@ -145,6 +184,9 @@ static TNC_Result send_message(TNC_ConnectionID connection_id)
        pa_tnc_attr_t *attr;
        imc_state_t *state;
        imc_test_state_t *test_state;
+       enumerator_t *enumerator;
+       void *pointer;
+       TNC_UInt32 imc_id;
        TNC_Result result;
 
        if (!imc_test->get_state(imc_test, connection_id, &state))
@@ -152,15 +194,36 @@ static TNC_Result send_message(TNC_ConnectionID connection_id)
                return TNC_RESULT_FATAL;
        }
        test_state = (imc_test_state_t*)state;
+
+       /* send PA message for primary IMC ID */
        attr = ita_attr_command_create(test_state->get_command(test_state));
        attr->set_noskip_flag(attr, TRUE);
        msg = pa_tnc_msg_create();
        msg->add_attribute(msg, attr);
        msg->build(msg);
-       result = imc_test->send_message(imc_test, connection_id,
-                                                                       msg->get_encoding(msg));        
+       result = imc_test->send_message(imc_test, connection_id, FALSE, 0,
+                                                                       TNC_IMVID_ANY, msg->get_encoding(msg)); 
        msg->destroy(msg);
 
+       /* send PA messages for additional IMC IDs */
+       enumerator = test_state->create_id_enumerator(test_state);
+       while (result == TNC_RESULT_SUCCESS &&
+                  enumerator->enumerate(enumerator, &pointer))
+       {
+               /* interpret pointer as scalar value */
+               imc_id = (TNC_UInt32)pointer;
+
+               attr = ita_attr_command_create(test_state->get_command(test_state));
+               attr->set_noskip_flag(attr, TRUE);
+               msg = pa_tnc_msg_create();
+               msg->add_attribute(msg, attr);
+               msg->build(msg);
+               result = imc_test->send_message(imc_test, connection_id, FALSE, imc_id,
+                                                                               TNC_IMVID_ANY, msg->get_encoding(msg)); 
+               msg->destroy(msg);
+       }
+       enumerator->destroy(enumerator);
+
        return result;
 }
 
index d0cae883fee8e56696ae58e899b2a4cae3e68ce9..7365d100a434691290f9c25bd0342574e530fe0f 100644 (file)
@@ -15,6 +15,7 @@
 #include "imc_test_state.h"
 
 #include <debug.h>
+#include <utils/linked_list.h>
 
 typedef struct private_imc_test_state_t private_imc_test_state_t;
 
@@ -62,6 +63,12 @@ struct private_imc_test_state_t {
         * Do a handshake retry
         */
        bool handshake_retry;
+
+       /**
+        * List of additional IMC IDs
+        */
+       linked_list_t *additional_ids;
+       
 };
 
 METHOD(imc_state_t, get_connection_id, TNC_ConnectionID,
@@ -98,6 +105,7 @@ METHOD(imc_state_t, change_state, void,
 METHOD(imc_state_t, destroy, void,
        private_imc_test_state_t *this)
 {
+       this->additional_ids->destroy(this->additional_ids);
        free(this->command);
        free(this);
 }
@@ -140,6 +148,22 @@ METHOD(imc_test_state_t, do_handshake_retry, bool,
        return retry;
 }
 
+METHOD(imc_test_state_t, add_id, void,
+       private_imc_test_state_t *this, TNC_IMCID id)
+{
+       void *pointer;
+
+       /* store the scalar value in the pointer */
+       pointer = (void*)id;
+       this->additional_ids->insert_last(this->additional_ids, pointer);
+}
+
+METHOD(imc_test_state_t, create_id_enumerator, enumerator_t*,
+       private_imc_test_state_t *this)
+{
+       return this->additional_ids->create_enumerator(this->additional_ids);
+}
+
 /**
  * Described in header.
  */
@@ -162,12 +186,15 @@ imc_state_t *imc_test_state_create(TNC_ConnectionID connection_id,
                        .set_command = _set_command,
                        .is_first_handshake = _is_first_handshake,
                        .do_handshake_retry = _do_handshake_retry,
+                       .add_id = _add_id,
+                       .create_id_enumerator = _create_id_enumerator,
                },
                .state = TNC_CONNECTION_STATE_CREATE,
                .connection_id = connection_id,
                .command = strdup(command),
                .first_handshake = TRUE,
                .handshake_retry = retry,
+               .additional_ids = linked_list_create(),
        );
        
        return &this->public.interface;
index 384285af83a22d2867b6184bd70c836befc22f7c..bd14e37055239806da81ca1e21534d3b563c54bb 100644 (file)
@@ -21,6 +21,7 @@
 #ifndef IMC_TEST_STATE_H_
 #define IMC_TEST_STATE_H_
 
+#include <tncifimc.h>
 #include <imc/imc_state.h>
 #include <library.h>
 
@@ -63,6 +64,18 @@ struct imc_test_state_t {
         * @return                              TRUE if a handshake retry should be done
         */
        bool (*do_handshake_retry)(imc_test_state_t *this);
+
+       /**
+        * Add and additional IMC ID
+        *
+        * @param id                    Additional IMC ID
+        */
+       void (*add_id)(imc_test_state_t *this, TNC_IMCID id);
+
+       /**
+        * Create an enumerator for additional IMC IDs
+        */
+       enumerator_t* (*create_id_enumerator)(imc_test_state_t *this);
 };
 
 /**
index 88db24983904276537cee80c57d673ed64a69c24..d7067be411d245a3bc43b6454af086ba05276695 100644 (file)
@@ -118,8 +118,8 @@ static TNC_Result send_message(TNC_ConnectionID connection_id)
        msg = pa_tnc_msg_create();
        msg->add_attribute(msg, attr);
        msg->build(msg);
-       result = imv_test->send_message(imv_test, connection_id,
-                                                                       msg->get_encoding(msg));        
+       result = imv_test->send_message(imv_test, connection_id, FALSE, 0,
+                                                                       TNC_IMCID_ANY, msg->get_encoding(msg)); 
        msg->destroy(msg);
 
        return result;
index e25b23814882141d72edb934c717aa86ffcaddf3..cce960b36a01ccc5aed9478d5a68fe24abe76d46 100644 (file)
@@ -157,7 +157,8 @@ TNC_Result TNC_IMC_BeginHandshake(TNC_IMCID imc_id,
                pa_tnc_msg->add_attribute(pa_tnc_msg, attr);
                pa_tnc_msg->build(pa_tnc_msg);
                result = imc_attestation->send_message(imc_attestation, connection_id,
-                                                                       pa_tnc_msg->get_encoding(pa_tnc_msg));
+                                                                               FALSE, 0, TNC_IMVID_ANY,
+                                                                               pa_tnc_msg->get_encoding(pa_tnc_msg));
                pa_tnc_msg->destroy(pa_tnc_msg);
        }
 
@@ -267,7 +268,8 @@ TNC_Result TNC_IMC_ReceiveMessage(TNC_IMCID imc_id,
 
                pa_tnc_msg->build(pa_tnc_msg);
                result = imc_attestation->send_message(imc_attestation, connection_id,
-                                                       pa_tnc_msg->get_encoding(pa_tnc_msg));
+                                                                               FALSE, 0, TNC_IMVID_ANY,
+                                                                               pa_tnc_msg->get_encoding(pa_tnc_msg));
                pa_tnc_msg->destroy(pa_tnc_msg);
        }
 
index 7d8445c1314b9e48b75065f01e7eadcbc584c18c..094628a6db76f65b826c4a3f9d42cd4caab00a20 100644 (file)
@@ -185,6 +185,7 @@ static TNC_Result send_message(TNC_ConnectionID connection_id)
        {
                msg->build(msg);
                result = imv_attestation->send_message(imv_attestation, connection_id,
+                                                                                          FALSE, 0, TNC_IMCID_ANY,
                                                                                           msg->get_encoding(msg));
        }
        else
@@ -337,7 +338,8 @@ TNC_Result TNC_IMV_ReceiveMessage(TNC_IMVID imv_id,
 
                pa_tnc_msg->build(pa_tnc_msg);
                result = imv_attestation->send_message(imv_attestation, connection_id,
-                                                       pa_tnc_msg->get_encoding(pa_tnc_msg));
+                                                                               FALSE, 0, TNC_IMCID_ANY,
+                                                                               pa_tnc_msg->get_encoding(pa_tnc_msg));
                
                pa_tnc_msg->destroy(pa_tnc_msg);
                attr_list->destroy(attr_list);