]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
moved ar_id from imv_agent to imv_state
authorAndreas Steffen <andreas.steffen@strongswan.org>
Mon, 11 Mar 2013 07:54:02 +0000 (08:54 +0100)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Mon, 11 Mar 2013 07:54:02 +0000 (08:54 +0100)
src/libimcv/imv/imv_agent.c
src/libimcv/imv/imv_agent.h
src/libimcv/imv/imv_state.h
src/libimcv/plugins/imv_os/imv_os.c
src/libimcv/plugins/imv_os/imv_os_state.c
src/libimcv/plugins/imv_scanner/imv_scanner_state.c
src/libimcv/plugins/imv_test/imv_test_state.c
src/libpts/plugins/imv_attestation/imv_attestation_state.c

index 2eec0ecde977a912a50449ab9e081d7b577ef207..8b4247e0f756e7876ce24a60f57d3efceb81af18 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andreas Steffen
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -72,11 +72,6 @@ struct private_imv_agent_t {
         */
        rwlock_t *connection_lock;
 
-       /**
-        * Access Requestor ID
-        */
-       identification_t *ar_id;
-
        /**
         * Inform a TNCS about the set of message types the IMV is able to receive
         *
@@ -449,6 +444,7 @@ METHOD(imv_agent_t, create_state, TNC_Result,
                pen_type_t id_type, subject_type, auth_type;
                int tcg_id_type, tcg_subject_type, tcg_auth_type;
                chunk_t id_value;
+               identification_t *ar_id;
                id_type_t ike_type;
 
                id_type = tnc_id->get_identity_type(tnc_id);
@@ -492,10 +488,11 @@ METHOD(imv_agent_t, create_state, TNC_Result,
                                break;
                }
 
-               this->ar_id = identification_create_from_encoding(ike_type, id_value);
+               ar_id = identification_create_from_encoding(ike_type, id_value);
                DBG2(DBG_IMV, "  %N AR identity '%Y' authenticated by %N",
-                        TNC_Subject_names, tcg_subject_type, this->ar_id,
+                        TNC_Subject_names, tcg_subject_type, ar_id,
                         TNC_Authentication_names, tcg_auth_type);
+               state->set_ar_id(state, ar_id);
        }
        enumerator->destroy(enumerator);
 
@@ -598,12 +595,6 @@ METHOD(imv_agent_t, get_id, TNC_IMVID,
        return  this->id;
 }
 
-METHOD(imv_agent_t, get_ar_id, identification_t*,
-       private_imv_agent_t *this)
-{
-       return  this->ar_id;
-}
-
 METHOD(imv_agent_t, reserve_additional_ids, TNC_Result,
        private_imv_agent_t *this, int count)
 {
@@ -793,7 +784,6 @@ METHOD(imv_agent_t, destroy, void,
        private_imv_agent_t *this)
 {
        DBG1(DBG_IMV, "IMV %u \"%s\" terminated", this->id, this->name);
-       DESTROY_IF(this->ar_id);
        this->additional_ids->destroy(this->additional_ids);
        this->connections->destroy_offset(this->connections,
                                                                          offsetof(imv_state_t, destroy));
@@ -828,7 +818,6 @@ imv_agent_t *imv_agent_create(const char *name,
                        .get_state = _get_state,
                        .get_name = _get_name,
                        .get_id = _get_id,
-                       .get_ar_id = _get_ar_id,
                        .reserve_additional_ids = _reserve_additional_ids,
                        .count_additional_ids = _count_additional_ids,
                        .create_id_enumerator = _create_id_enumerator,
index 737caa173879cecb50b03bfd33c1f1ecf8000cbe..6f3d2b4b705ae7640b05230b986876479e9d2c75 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andreas Steffen
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -151,13 +151,6 @@ struct imv_agent_t {
         */
        TNC_IMVID (*get_id)(imv_agent_t *this);
 
-       /**
-        * Get Access Requestor ID
-        *
-        * return                                       Access Requestor ID
-        */
-       identification_t* (*get_ar_id)(imv_agent_t *this);
-
        /**
         * Reserve additional IMV IDs from TNCS
         *
index 0684690ca49d683e37327cafaca1fa8c5e327cb2..5a818e6622cbf98a74c36e1660cbe93425da99dd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andreas Steffen
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -77,6 +77,20 @@ struct imv_state_t {
         */
        u_int32_t (*get_max_msg_len)(imv_state_t *this);
 
+       /**
+        * Set Access Requestor ID
+        *
+        * @param ar_id                 Access Requestor ID (is not going to be cloned)
+        */
+       void (*set_ar_id)(imv_state_t *this, identification_t *ar_id);
+
+       /**
+        * Get Access Requestor ID
+        *
+        * @return                              Access Requestor ID
+        */
+       identification_t* (*get_ar_id)(imv_state_t *this);
+
        /**
         * Change the connection state
         *
index 68b14abfb2d086cd6a7904d660699585e6ec5068..e63fc73b144e602f44049faf2a675cb693d8121d 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Andreas Steffen
+ * Copyright (C) 2012-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -390,7 +390,7 @@ static TNC_Result receive_message(imv_state_t *state, imv_msg_t *in_msg)
                device_id = os_state->get_device_id(os_state);
                if (os_db && device_id)
                {
-                       os_db->set_device_info(os_db, device_id, imv_os->get_ar_id(imv_os),
+                       os_db->set_device_info(os_db, device_id, state->get_ar_id(state),
                                                os_state->get_info(os_state, NULL, NULL, NULL),
                                                count, count_update, count_blacklist, os_settings);
                }
index 00e0424fbc0dff95066e642e09255568d2177759..6a71a04aacdff2c1527e76296265e66494caae4e 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2012 Andreas Steffen
+ * Copyright (C) 2012-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -61,6 +61,11 @@ struct private_imv_os_state_t {
         */
        u_int32_t max_msg_len;
 
+       /**
+        * Access Requestor ID
+        */
+       identification_t *ar_id;
+
        /**
         * IMV action recommendation
         */
@@ -319,6 +324,19 @@ METHOD(imv_state_t, get_max_msg_len, u_int32_t,
        return this->max_msg_len;
 }
 
+METHOD(imv_state_t, set_ar_id, void,
+       private_imv_os_state_t *this, identification_t *ar_id)
+{
+       /* no cloning, caller must not destroy object */
+       this->ar_id = ar_id;
+}
+
+METHOD(imv_state_t, get_ar_id, identification_t*,
+       private_imv_os_state_t *this)
+{
+       return this->ar_id;
+}
+
 METHOD(imv_state_t, change_state, void,
        private_imv_os_state_t *this, TNC_ConnectionState new_state)
 {
@@ -435,6 +453,7 @@ METHOD(imv_state_t, get_remediation_instructions, bool,
 METHOD(imv_state_t, destroy, void,
        private_imv_os_state_t *this)
 {
+       DESTROY_IF(this->ar_id);
        DESTROY_IF(this->reason_string);
        DESTROY_IF(this->remediation_string);
        this->update_packages->destroy_function(this->update_packages, free);
@@ -603,6 +622,8 @@ imv_state_t *imv_os_state_create(TNC_ConnectionID connection_id)
                                .set_flags = _set_flags,
                                .set_max_msg_len = _set_max_msg_len,
                                .get_max_msg_len = _get_max_msg_len,
+                               .set_ar_id = _set_ar_id,
+                               .get_ar_id = _get_ar_id,
                                .change_state = _change_state,
                                .get_recommendation = _get_recommendation,
                                .set_recommendation = _set_recommendation,
index 108e5ff6f59403bd7326d0b6ebc4947958f6f022..8821ed504d29c9690da95663f6f11517cb77c443 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andreas Steffen
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -58,6 +58,11 @@ struct private_imv_scanner_state_t {
         */
        u_int32_t max_msg_len;
 
+       /**
+        * Access Requestor ID
+        */
+       identification_t *ar_id;
+
        /**
         * IMV action recommendation
         */
@@ -165,6 +170,19 @@ METHOD(imv_state_t, get_max_msg_len, u_int32_t,
        return this->max_msg_len;
 }
 
+METHOD(imv_state_t, set_ar_id, void,
+       private_imv_scanner_state_t *this, identification_t *ar_id)
+{
+       /* no cloning, caller must not destroy object */
+       this->ar_id = ar_id;
+}
+
+METHOD(imv_state_t, get_ar_id, identification_t*,
+       private_imv_scanner_state_t *this)
+{
+       return this->ar_id;
+}
+
 METHOD(imv_state_t, change_state, void,
        private_imv_scanner_state_t *this, TNC_ConnectionState new_state)
 {
@@ -238,6 +256,7 @@ METHOD(imv_state_t, get_remediation_instructions, bool,
 METHOD(imv_state_t, destroy, void,
        private_imv_scanner_state_t *this)
 {
+       DESTROY_IF(this->ar_id);
        DESTROY_IF(this->reason_string);
        DESTROY_IF(this->remediation_string);
        this->violating_ports->destroy_function(this->violating_ports, free);
@@ -266,6 +285,8 @@ imv_state_t *imv_scanner_state_create(TNC_ConnectionID connection_id)
                                .set_flags = _set_flags,
                                .set_max_msg_len = _set_max_msg_len,
                                .get_max_msg_len = _get_max_msg_len,
+                               .set_ar_id = _set_ar_id,
+                               .get_ar_id = _get_ar_id,
                                .change_state = _change_state,
                                .get_recommendation = _get_recommendation,
                                .set_recommendation = _set_recommendation,
index 9b9344bf6c92e41c481156fdcc8720f59518219f..385a37452693bf28f1d55263c0f9b59be21eea17 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2011-2012 Andreas Steffen
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -58,6 +58,11 @@ struct private_imv_test_state_t {
         */
        u_int32_t max_msg_len;
 
+       /**
+        * Access Requestor ID
+        */
+       identification_t *ar_id;
+
        /**
         * IMV action recommendation
         */
@@ -143,6 +148,19 @@ METHOD(imv_state_t, get_max_msg_len, u_int32_t,
        return this->max_msg_len;
 }
 
+METHOD(imv_state_t, set_ar_id, void,
+       private_imv_test_state_t *this, identification_t *ar_id)
+{
+       /* no cloning, caller must not destroy object */
+       this->ar_id = ar_id;
+}
+
+METHOD(imv_state_t, get_ar_id, identification_t*,
+       private_imv_test_state_t *this)
+{
+       return this->ar_id;
+}
+
 METHOD(imv_state_t, change_state, void,
        private_imv_test_state_t *this, TNC_ConnectionState new_state)
 {
@@ -191,6 +209,7 @@ METHOD(imv_state_t, get_remediation_instructions, bool,
 METHOD(imv_state_t, destroy, void,
        private_imv_test_state_t *this)
 {
+       DESTROY_IF(this->ar_id);
        DESTROY_IF(this->reason_string);
        this->imcs->destroy_function(this->imcs, free);
        free(this);
@@ -277,6 +296,8 @@ imv_state_t *imv_test_state_create(TNC_ConnectionID connection_id)
                                .set_flags = _set_flags,
                                .set_max_msg_len = _set_max_msg_len,
                                .get_max_msg_len = _get_max_msg_len,
+                               .set_ar_id = _set_ar_id,
+                               .get_ar_id = _get_ar_id,
                                .change_state = _change_state,
                                .get_recommendation = _get_recommendation,
                                .set_recommendation = _set_recommendation,
index 93da9aee5710ec8c01ac4d0f444114341f06e708..9d95ac010e1948e79ccbf4b7d9f0467e50d7670b 100644 (file)
@@ -1,5 +1,6 @@
 /*
- * Copyright (C) 2011-2012 Sansar Choinyambuu, Andreas Steffen
+ * Copyright (C) 2011-2012 Sansar Choinyambuu
+ * Copyright (C) 2011-2013 Andreas Steffen
  * HSR Hochschule fuer Technik Rapperswil
  *
  * This program is free software; you can redistribute it and/or modify it
@@ -62,6 +63,11 @@ struct private_imv_attestation_state_t {
         */
        u_int32_t max_msg_len;
 
+       /**
+        * Access Requestor ID
+        */
+       identification_t *ar_id;
+
        /**
         * IMV Attestation handshake state
         */
@@ -215,6 +221,19 @@ METHOD(imv_state_t, get_max_msg_len, u_int32_t,
        return this->max_msg_len;
 }
 
+METHOD(imv_state_t, set_ar_id, void,
+       private_imv_attestation_state_t *this, identification_t *ar_id)
+{
+       /* no cloning, caller must not destroy object */
+       this->ar_id = ar_id;
+}
+
+METHOD(imv_state_t, get_ar_id, identification_t*,
+       private_imv_attestation_state_t *this)
+{
+       return this->ar_id;
+}
+
 METHOD(imv_state_t, change_state, void,
        private_imv_attestation_state_t *this, TNC_ConnectionState new_state)
 {
@@ -288,6 +307,7 @@ METHOD(imv_state_t, get_remediation_instructions, bool,
 METHOD(imv_state_t, destroy, void,
        private_imv_attestation_state_t *this)
 {
+       DESTROY_IF(this->ar_id);
        DESTROY_IF(this->reason_string);
        this->file_meas_requests->destroy_function(this->file_meas_requests, free);
        this->components->destroy_function(this->components, (void *)free_func_comp);
@@ -479,6 +499,8 @@ imv_state_t *imv_attestation_state_create(TNC_ConnectionID connection_id)
                                .set_flags = _set_flags,
                                .set_max_msg_len = _set_max_msg_len,
                                .get_max_msg_len = _get_max_msg_len,
+                               .set_ar_id = _set_ar_id,
+                               .get_ar_id = _get_ar_id,
                                .change_state = _change_state,
                                .get_recommendation = _get_recommendation,
                                .set_recommendation = _set_recommendation,