]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
started use of libtnc library
authorAndreas Steffen <andreas.steffen@strongswan.org>
Wed, 29 Sep 2010 21:24:59 +0000 (23:24 +0200)
committerAndreas Steffen <andreas.steffen@strongswan.org>
Wed, 29 Sep 2010 21:24:59 +0000 (23:24 +0200)
configure.in
src/libcharon/plugins/tnccs_11/Makefile.am
src/libcharon/plugins/tnccs_11/tnccs_11.c

index 2cb876269366532508b65e59e455d6026f33471a..6528874a38b27f536bd40a0a51edc7914ee8a6dd 100644 (file)
@@ -603,6 +603,10 @@ if test x$gcrypt = xtrue; then
        )
 fi
 
+if test x$tnccs_11 = xtrue; then
+       AC_CHECK_HEADER([libtnc.h],,[AC_MSG_ERROR([libtnc header libtnc.h not found!])])
+fi
+
 if test x$uci = xtrue; then
        AC_HAVE_LIBRARY([uci],[LIBS="$LIBS"],[AC_MSG_ERROR([UCI library libuci not found])])
        AC_CHECK_HEADER([uci.h],,[AC_MSG_ERROR([UCI header uci.h not found!])])
index af483bce4d1ceb669eb747e3a96c69c52441ccec..7ccd0dfeea3c49b8c09ef78192384739b922c234 100644 (file)
@@ -1,17 +1,21 @@
 
 INCLUDES = -I$(top_srcdir)/src/libstrongswan -I$(top_srcdir)/src/libhydra \
-       -I$(top_srcdir)/src/libcharon -I$(top_srcdir)/src/libtls
+       -I$(top_srcdir)/src/libcharon -I$(top_srcdir)/src/libtls \
+       `xml2-config --cflags`
 
 AM_CFLAGS = -rdynamic
 
+libstrongswan_tnccs_11_la_LIBADD = -ltnc
+
 if MONOLITHIC
 noinst_LTLIBRARIES = libstrongswan-tnccs-11.la
 else
 plugin_LTLIBRARIES = libstrongswan-tnccs-11.la
-libstrongswan_tnccs_11_la_LIBADD = $(top_builddir)/src/libtls/libtls.la
+libstrongswan_tnccs_11_la_LIBADD += $(top_builddir)/src/libtls/libtls.la
 endif
 
 libstrongswan_tnccs_11_la_SOURCES = \
        tnccs_11_plugin.h tnccs_11_plugin.c tnccs_11.h tnccs_11.c
 
 libstrongswan_tnccs_11_la_LDFLAGS = -module -avoid-version
+
index d8734a733a2a9865358ceefb9e00492e43d82c38..ea5be8591da11b0a2ed8e521719f5f382b056c47 100644 (file)
 
 #include "tnccs_11.h"
 
+#include <libtnctncc.h>
+
 #include <debug.h>
 
+static chunk_t tncc_output;
+
+/**
+ * Define callback function called by the libtnc library
+ */
+TNC_Result TNC_TNCC_SendBatch(libtnc_tncc_connection* conn, 
+                                                         const char* messageBuffer, size_t messageLength)
+{
+       chunk_free(&tncc_output);
+       tncc_output = chunk_alloc(messageLength);
+       memcpy(tncc_output.ptr, messageBuffer, messageLength);
+
+       return TNC_RESULT_SUCCESS;
+}
+
 typedef struct private_tnccs_11_t private_tnccs_11_t;
 
 /**
@@ -30,9 +47,14 @@ struct private_tnccs_11_t {
        tls_t public;
 
        /**
-        * Role this TNCCS protocol stack acts as.
+        * TNCC if TRUE, TNCS if FALSE
         */
        bool is_server;
+
+       /**
+        * TNCC Connection to IMCs
+        */
+       libtnc_tncc_connection* tncc_connection;
 };
 
 METHOD(tls_t, process, status_t,
@@ -48,23 +70,34 @@ METHOD(tls_t, process, status_t,
 METHOD(tls_t, build, status_t,
        private_tnccs_11_t *this, void *buf, size_t *buflen, size_t *msglen)
 {
-       char output[] = 
-               "<?xml version=\"1.0\"?>\n"
-               "<TNCCS-Batch BatchId=\"1\" Recipient=\"TNCS\"\n"
-               "xmlns=\"http://www.trustedcomputinggroup.org/IWG/TNC/1_0/IF_TNCCS#\"\n"
-               "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n"
-               "xsi:schemaLocation=\"http://www.trustedcomputinggroup.org/IWG/TNC/1_0/IF_TNCCS#\n"
-               "https://www.trustedcomputinggroup.org/XML/SCHEMA/TNCCS_1.0.xsd\">\n"
-               "</TNCCS-Batch>\n";
-
-       size_t len = strlen(output);
-       chunk_t out = { output, len };  
-
-       /* TODO */
-       DBG1(DBG_IKE, "sending TNCCS-Batch: %B", &out);
+       size_t len = *buflen;
+
+       if (!this->is_server && !this->tncc_connection)
+       {
+               this->tncc_connection = libtnc_tncc_CreateConnection(NULL);
+               if (!this->tncc_connection)
+               {
+                       DBG1(DBG_IKE, "TNCC CreateConnection failed");
+                       return FAILED;
+               }
+               DBG1(DBG_IKE, "assigned TNC ConnectionID: %d",
+                        this->tncc_connection->connectionID);
+               if (libtnc_tncc_BeginSession(this->tncc_connection) != TNC_RESULT_SUCCESS)
+               {
+                       DBG1(DBG_IKE, "TNCC BeginSession failed");
+                       return FAILED;
+               }
+       }
+               
+       if (msglen)
+       {
+               *msglen = tncc_output.len;
+       }
+       DBG1(DBG_IKE, "sending TNCCS-Batch: %B", &tncc_output);
+       len = min(len, tncc_output.len);
+       memcpy(buf, tncc_output.ptr, len);
+       chunk_free(&tncc_output);
        *buflen = len;
-       *msglen = len;
-       memcpy(buf, output, len);
 
        return ALREADY_DONE;
 }
@@ -97,6 +130,14 @@ METHOD(tls_t, get_eap_msk, chunk_t,
 METHOD(tls_t, destroy, void,
        private_tnccs_11_t *this)
 {
+       if (!this->is_server)
+       {
+               if (this->tncc_connection)
+               {
+                       libtnc_tncc_DeleteConnection(this->tncc_connection);
+               }
+               libtnc_tncc_Terminate();
+       }
        free(this);
 }
 
@@ -120,5 +161,22 @@ tls_t *tnccs_11_create(bool is_server)
                .is_server = is_server,
        );
 
+       if (!is_server)
+       {
+               int imc_count;
+
+               imc_count = libtnc_imc_load_config("/etc/tnc_config");
+               if (imc_count < 0)
+               {
+                       free(this);
+                       DBG1(DBG_IKE, "TNC IMC initialization failed");
+                       return NULL;
+               }
+               else
+               {
+                       DBG1(DBG_IKE, "loaded %d TNC IMC instances", imc_count);
+               }
+               libtnc_tncc_PreferredLanguage("en");
+       }
        return &this->public;
 }