summaryrefslogtreecommitdiff
path: root/src/charon/plugins/eap_identity
diff options
context:
space:
mode:
authorRene Mayrhofer <rene@mayrhofer.eu.org>2008-10-29 11:11:01 +0000
committerRene Mayrhofer <rene@mayrhofer.eu.org>2008-10-29 11:11:01 +0000
commit8b80ab5a6950ce6515f477624794defd7531642a (patch)
treeaa8303f3806c5615fbeafc4dc82febe3cd7c24dc /src/charon/plugins/eap_identity
parentdb67c87db3c9089ea8d2e14f617bf3d9e2af261f (diff)
downloadvyos-strongswan-8b80ab5a6950ce6515f477624794defd7531642a.tar.gz
vyos-strongswan-8b80ab5a6950ce6515f477624794defd7531642a.zip
[svn-upgrade] Integrating new upstream version, strongswan (4.2.8)
Diffstat (limited to 'src/charon/plugins/eap_identity')
-rw-r--r--src/charon/plugins/eap_identity/Makefile.in2
-rw-r--r--src/charon/plugins/eap_identity/eap_identity.c139
-rw-r--r--src/charon/plugins/eap_identity/eap_identity.h12
-rw-r--r--src/charon/plugins/eap_identity/eap_identity_plugin.c6
4 files changed, 135 insertions, 24 deletions
diff --git a/src/charon/plugins/eap_identity/Makefile.in b/src/charon/plugins/eap_identity/Makefile.in
index 37f3505f2..e71c13a35 100644
--- a/src/charon/plugins/eap_identity/Makefile.in
+++ b/src/charon/plugins/eap_identity/Makefile.in
@@ -190,6 +190,8 @@ localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
+nm_CFLAGS = @nm_CFLAGS@
+nm_LIBS = @nm_LIBS@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
piddir = @piddir@
diff --git a/src/charon/plugins/eap_identity/eap_identity.c b/src/charon/plugins/eap_identity/eap_identity.c
index 0c90e8a04..deaa183f4 100644
--- a/src/charon/plugins/eap_identity/eap_identity.c
+++ b/src/charon/plugins/eap_identity/eap_identity.c
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2007 Martin Willi
+ * Copyright (C) 2007-2008 Martin Willi
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
@@ -12,7 +12,7 @@
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
- * $Id: eap_identity.c 3491 2008-02-22 14:04:00Z martin $
+ * $Id: eap_identity.c 4276 2008-08-22 10:44:51Z martin $
*/
#include "eap_identity.h"
@@ -36,39 +36,98 @@ struct private_eap_identity_t {
* ID of the peer
*/
identification_t *peer;
+
+ /**
+ * received identity chunk
+ */
+ chunk_t identity;
};
+typedef struct eap_identity_header_t eap_identity_header_t;
+
+/**
+ * packed EAP Identity header struct
+ */
+struct eap_identity_header_t {
+ /** EAP code (REQUEST/RESPONSE) */
+ u_int8_t code;
+ /** unique message identifier */
+ u_int8_t identifier;
+ /** length of whole message */
+ u_int16_t length;
+ /** EAP type */
+ u_int8_t type;
+ /** identity data */
+ u_int8_t data[];
+} __attribute__((__packed__));
+
/**
* Implementation of eap_method_t.process for the peer
*/
-static status_t process(private_eap_identity_t *this,
- eap_payload_t *in, eap_payload_t **out)
+static status_t process_peer(private_eap_identity_t *this,
+ eap_payload_t *in, eap_payload_t **out)
{
- chunk_t id, hdr;
+ chunk_t id;
+ eap_identity_header_t *hdr;
+ size_t len;
- hdr = chunk_alloca(5);
id = this->peer->get_encoding(this->peer);
+ len = sizeof(eap_identity_header_t) + id.len;
- *(hdr.ptr + 0) = EAP_RESPONSE;
- *(hdr.ptr + 1) = in->get_identifier(in);
- *(u_int16_t*)(hdr.ptr + 2) = htons(hdr.len + id.len);
- *(hdr.ptr + 4) = EAP_IDENTITY;
+ hdr = alloca(len);
+ hdr->code = EAP_RESPONSE;
+ hdr->identifier = in->get_identifier(in);
+ hdr->length = htons(len);
+ hdr->type = EAP_IDENTITY;
+ memcpy(hdr->data, id.ptr, id.len);
- *out = eap_payload_create_data(chunk_cata("cc", hdr, id));
+ *out = eap_payload_create_data(chunk_create((u_char*)hdr, len));
return SUCCESS;
-
}
/**
* Implementation of eap_method_t.initiate for the peer
*/
-static status_t initiate(private_eap_identity_t *this, eap_payload_t **out)
+static status_t initiate_peer(private_eap_identity_t *this, eap_payload_t **out)
{
/* peer never initiates */
return FAILED;
}
/**
+ * Implementation of eap_method_t.process for the server
+ */
+static status_t process_server(private_eap_identity_t *this,
+ eap_payload_t *in, eap_payload_t **out)
+{
+ chunk_t data;
+
+ data = chunk_skip(in->get_data(in), 5);
+ if (data.len)
+ {
+ this->identity = chunk_clone(data);
+ }
+ return SUCCESS;
+}
+
+/**
+ * Implementation of eap_method_t.initiate for the server
+ */
+static status_t initiate_server(private_eap_identity_t *this, eap_payload_t **out)
+{
+ eap_identity_header_t hdr;
+
+ hdr.code = EAP_REQUEST;
+ hdr.identifier = 0;
+ hdr.length = htons(sizeof(eap_identity_header_t));
+ hdr.type = EAP_IDENTITY;
+
+ *out = eap_payload_create_data(chunk_create((u_char*)&hdr,
+ sizeof(eap_identity_header_t)));
+ return NEED_MORE;
+}
+
+/**
* Implementation of eap_method_t.get_type.
*/
static eap_type_t get_type(private_eap_identity_t *this, u_int32_t *vendor)
@@ -82,6 +141,11 @@ static eap_type_t get_type(private_eap_identity_t *this, u_int32_t *vendor)
*/
static status_t get_msk(private_eap_identity_t *this, chunk_t *msk)
{
+ if (this->identity.ptr)
+ {
+ *msk = this->identity;
+ return SUCCESS;
+ }
return FAILED;
}
@@ -98,27 +162,58 @@ static bool is_mutual(private_eap_identity_t *this)
*/
static void destroy(private_eap_identity_t *this)
{
+ this->peer->destroy(this->peer);
+ free(this->identity.ptr);
free(this);
}
-/*
- * Described in header.
+/**
+ * Generic constructor
*/
-eap_identity_t *eap_identity_create_peer(identification_t *server,
- identification_t *peer)
+static private_eap_identity_t *eap_identity_create(identification_t *server,
+ identification_t *peer)
{
private_eap_identity_t *this = malloc_thing(private_eap_identity_t);
- /* public functions */
- this->public.eap_method_interface.initiate = (status_t(*)(eap_method_t*,eap_payload_t**))initiate;
- this->public.eap_method_interface.process = (status_t(*)(eap_method_t*,eap_payload_t*,eap_payload_t**))process;
+ this->public.eap_method_interface.initiate = NULL;
+ this->public.eap_method_interface.process = NULL;
this->public.eap_method_interface.get_type = (eap_type_t(*)(eap_method_t*,u_int32_t*))get_type;
this->public.eap_method_interface.is_mutual = (bool(*)(eap_method_t*))is_mutual;
this->public.eap_method_interface.get_msk = (status_t(*)(eap_method_t*,chunk_t*))get_msk;
this->public.eap_method_interface.destroy = (void(*)(eap_method_t*))destroy;
- /* private data */
- this->peer = peer;
+ this->peer = peer->clone(peer);
+ this->identity = chunk_empty;
+
+ return this;
+}
+
+/*
+ * Described in header.
+ */
+eap_identity_t *eap_identity_create_peer(identification_t *server,
+ identification_t *peer)
+{
+ private_eap_identity_t *this = eap_identity_create(server, peer);
+
+ /* public functions */
+ this->public.eap_method_interface.initiate = (status_t(*)(eap_method_t*,eap_payload_t**))initiate_peer;
+ this->public.eap_method_interface.process = (status_t(*)(eap_method_t*,eap_payload_t*,eap_payload_t**))process_peer;
+
+ return &this->public;
+}
+
+/*
+ * Described in header.
+ */
+eap_identity_t *eap_identity_create_server(identification_t *server,
+ identification_t *peer)
+{
+ private_eap_identity_t *this = eap_identity_create(server, peer);
+
+ /* public functions */
+ this->public.eap_method_interface.initiate = (status_t(*)(eap_method_t*,eap_payload_t**))initiate_server;
+ this->public.eap_method_interface.process = (status_t(*)(eap_method_t*,eap_payload_t*,eap_payload_t**))process_server;
return &this->public;
}
diff --git a/src/charon/plugins/eap_identity/eap_identity.h b/src/charon/plugins/eap_identity/eap_identity.h
index 9de89e6e3..27b04b7d5 100644
--- a/src/charon/plugins/eap_identity/eap_identity.h
+++ b/src/charon/plugins/eap_identity/eap_identity.h
@@ -12,7 +12,7 @@
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
- * $Id: eap_identity.h 3491 2008-02-22 14:04:00Z martin $
+ * $Id: eap_identity.h 4276 2008-08-22 10:44:51Z martin $
*/
/**
@@ -39,6 +39,16 @@ struct eap_identity_t {
};
/**
+ * Creates the EAP method EAP Identity, acting as server.
+ *
+ * @param server ID of the EAP server
+ * @param peer ID of the EAP client
+ * @return eap_identity_t object
+ */
+eap_identity_t *eap_identity_create_server(identification_t *server,
+ identification_t *peer);
+
+/**
* Creates the EAP method EAP Identity, acting as peer.
*
* @param server ID of the EAP server
diff --git a/src/charon/plugins/eap_identity/eap_identity_plugin.c b/src/charon/plugins/eap_identity/eap_identity_plugin.c
index 38a19d784..1393a21a0 100644
--- a/src/charon/plugins/eap_identity/eap_identity_plugin.c
+++ b/src/charon/plugins/eap_identity/eap_identity_plugin.c
@@ -12,7 +12,7 @@
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
- * $Id: eap_identity_plugin.c 3491 2008-02-22 14:04:00Z martin $
+ * $Id: eap_identity_plugin.c 4276 2008-08-22 10:44:51Z martin $
*/
#include "eap_identity_plugin.h"
@@ -27,6 +27,8 @@
static void destroy(eap_identity_plugin_t *this)
{
charon->eap->remove_method(charon->eap,
+ (eap_constructor_t)eap_identity_create_server);
+ charon->eap->remove_method(charon->eap,
(eap_constructor_t)eap_identity_create_peer);
free(this);
}
@@ -40,6 +42,8 @@ plugin_t *plugin_create()
this->plugin.destroy = (void(*)(plugin_t*))destroy;
+ charon->eap->add_method(charon->eap, EAP_IDENTITY, 0, EAP_SERVER,
+ (eap_constructor_t)eap_identity_create_server);
charon->eap->add_method(charon->eap, EAP_IDENTITY, 0, EAP_PEER,
(eap_constructor_t)eap_identity_create_peer);