2 * Copyright (C) 2011 Andreas Steffen
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #include "tnc_ifmap_soap.h"
20 #include <axis2_util.h>
21 #include <axis2_client.h>
22 #include <axis2_http_transport.h>
23 #include <axis2_http_transport_sender.h>
24 #include <axiom_soap.h>
26 #define IFMAP_NS "http://www.trustedcomputinggroup.org/2010/IFMAP/2"
27 #define IFMAP_META_NS "http://www.trustedcomputinggroup.org/2010/IFMAP-METADATA/2"
28 #define IFMAP_LOGFILE "strongswan_ifmap.log"
29 #define IFMAP_SERVER "https://localhost:8443/"
31 typedef struct private_tnc_ifmap_soap_t private_tnc_ifmap_soap_t
;
34 * Private data of an tnc_ifmap_soap_t object.
36 struct private_tnc_ifmap_soap_t
{
39 * Public tnc_ifmap_soap_t interface.
41 tnc_ifmap_soap_t
public;
49 * Axis2 service client
51 axis2_svc_client_t
* svc_client
;
61 char *ifmap_publisher_id
;
64 * PEP and PDP device name
71 * Send request and receive result via SOAP
73 static bool send_receive(private_tnc_ifmap_soap_t
*this,
74 char *request_qname
, axiom_node_t
*request
,
75 char *receipt_qname
, axiom_node_t
**result
)
78 axiom_node_t
*parent
, *node
;
80 axutil_qname_t
*qname
;
83 /* send request and receive result */
84 DBG2(DBG_TNC
, "sending ifmap %s", request_qname
);
86 parent
= axis2_svc_client_send_receive(this->svc_client
, this->env
, request
);
89 DBG1(DBG_TNC
, "no ifmap %s received from MAP server", receipt_qname
);
93 /* pre-process result */
94 node
= axiom_node_get_first_child(parent
, this->env
);
95 if (node
&& axiom_node_get_node_type(node
, this->env
) == AXIOM_ELEMENT
)
97 el
= (axiom_element_t
*)axiom_node_get_data_element(node
, this->env
);
99 qname
= axiom_element_get_qname(el
, this->env
, node
);
100 success
= streq(receipt_qname
, axutil_qname_to_string(qname
, this->env
));
103 DBG2(DBG_TNC
, "received ifmap %s", receipt_qname
);
110 /* no further processing requested */
111 axiom_node_free_tree(parent
, this->env
);
115 /* TODO proper error handling */
116 DBG1(DBG_TNC
, "%s", axiom_element_to_string(el
, this->env
, node
));
119 /* free parent in the error case */
120 axiom_node_free_tree(parent
, this->env
);
125 METHOD(tnc_ifmap_soap_t
, newSession
, bool,
126 private_tnc_ifmap_soap_t
*this)
128 axiom_node_t
*request
, *result
, *node
;
130 axiom_namespace_t
*ns
;
134 /* build newSession request */
135 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
136 el
= axiom_element_create(this->env
, NULL
, "newSession", ns
, &request
);
138 /* send newSession request and receive newSessionResult */
139 if (!send_receive(this, "newSession", request
, "newSessionResult", &result
))
144 /* process newSessionResult */
145 node
= axiom_node_get_first_child(result
, this->env
);
146 el
= (axiom_element_t
*)axiom_node_get_data_element(node
, this->env
);
149 value
= axiom_element_get_attribute_value_by_name(el
, this->env
,
151 this->session_id
= strdup(value
);
153 /* get ifmap-publisher-id */
154 value
= axiom_element_get_attribute_value_by_name(el
, this->env
,
155 "ifmap-publisher-id");
156 this->ifmap_publisher_id
= strdup(value
);
158 DBG1(DBG_TNC
, "session-id: %s, ifmap-publisher-id: %s",
159 this->session_id
, this->ifmap_publisher_id
);
161 /* set PEP and PDP device name (defaults to IF-MAP Publisher ID) */
162 this->device_name
= lib
->settings
->get_str(lib
->settings
,
163 "charon.plugins.tnc-ifmap.device_name",
164 this->ifmap_publisher_id
);
165 this->device_name
= strdup(this->device_name
);
168 axiom_node_free_tree(result
, this->env
);
170 return this->session_id
&& this->ifmap_publisher_id
;
173 METHOD(tnc_ifmap_soap_t
, purgePublisher
, bool,
174 private_tnc_ifmap_soap_t
*this)
176 axiom_node_t
*request
;
178 axiom_namespace_t
*ns
;
179 axiom_attribute_t
*attr
;
181 /* build purgePublisher request */
182 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
183 el
= axiom_element_create(this->env
, NULL
, "purgePublisher", ns
, &request
);
184 attr
= axiom_attribute_create(this->env
, "session-id",
185 this->session_id
, NULL
);
186 axiom_element_add_attribute(el
, this->env
, attr
, request
);
187 attr
= axiom_attribute_create(this->env
, "ifmap-publisher-id",
188 this->ifmap_publisher_id
, NULL
);
189 axiom_element_add_attribute(el
, this->env
, attr
, request
);
191 /* send purgePublisher request and receive purgePublisherReceived */
192 return send_receive(this, "purgePublisher", request
,
193 "purgePublisherReceived", NULL
);
197 * Create an access-request based on device_name and ike_sa_id
199 static axiom_node_t
* create_access_request(private_tnc_ifmap_soap_t
*this,
204 axiom_attribute_t
*attr
;
207 el
= axiom_element_create(this->env
, NULL
, "access-request", NULL
, &node
);
209 snprintf(buf
, BUF_LEN
, "%s:%d", this->device_name
, id
);
210 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
211 axiom_element_add_attribute(el
, this->env
, attr
, node
);
219 static axiom_node_t
* create_identity(private_tnc_ifmap_soap_t
*this,
220 identification_t
*id
, bool is_user
)
224 axiom_attribute_t
*attr
;
225 char buf
[BUF_LEN
], *id_type
;
227 el
= axiom_element_create(this->env
, NULL
, "identity", NULL
, &node
);
229 snprintf(buf
, BUF_LEN
, "%Y", id
);
230 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
231 axiom_element_add_attribute(el
, this->env
, attr
, node
);
233 switch (id
->get_type(id
))
236 id_type
= is_user ?
"username" : "dns-name";
239 id_type
= "email-address";
242 id_type
= "distinguished-name";
247 attr
= axiom_attribute_create(this->env
, "type", id_type
, NULL
);
248 axiom_element_add_attribute(el
, this->env
, attr
, node
);
254 * Create an ip-address
256 static axiom_node_t
* create_ip_address(private_tnc_ifmap_soap_t
*this,
261 axiom_attribute_t
*attr
;
264 el
= axiom_element_create(this->env
, NULL
, "ip-address", NULL
, &node
);
266 if (host
->get_family(host
) == AF_INET6
)
273 /* output IPv6 address in canonical IF-MAP 2.0 format */
274 address
= host
->get_address(host
);
278 for (i
= 0; i
< address
.len
; i
= i
+ 2)
280 written
= snprintf(pos
, len
, "%s%x", first ?
"" : ":",
281 256*address
.ptr
[i
] + address
.ptr
[i
+1]);
282 if (written
< 0 || written
> len
)
293 snprintf(buf
, BUF_LEN
, "%H", host
);
295 attr
= axiom_attribute_create(this->env
, "value", buf
, NULL
);
296 axiom_element_add_attribute(el
, this->env
, attr
, node
);
298 attr
= axiom_attribute_create(this->env
, "type",
299 host
->get_family(host
) == AF_INET ?
"IPv4" : "IPv6", NULL
);
300 axiom_element_add_attribute(el
, this->env
, attr
, node
);
308 static axiom_node_t
* create_device(private_tnc_ifmap_soap_t
*this)
311 axiom_node_t
*node
, *node2
, *node3
;
314 el
= axiom_element_create(this->env
, NULL
, "device", NULL
, &node
);
315 el
= axiom_element_create(this->env
, NULL
, "name", NULL
, &node2
);
316 axiom_node_add_child(node
, this->env
, node2
);
317 text
= axiom_text_create(this->env
, node2
, this->device_name
, &node3
);
325 static axiom_node_t
* create_metadata(private_tnc_ifmap_soap_t
*this,
329 axiom_node_t
*node
, *node2
;
330 axiom_attribute_t
*attr
;
331 axiom_namespace_t
*ns_meta
;
333 el
= axiom_element_create(this->env
, NULL
, "metadata", NULL
, &node
);
334 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
336 el
= axiom_element_create(this->env
, NULL
, metadata
, ns_meta
, &node2
);
337 axiom_node_add_child(node
, this->env
, node2
);
338 attr
= axiom_attribute_create(this->env
, "ifmap-cardinality", "singleValue",
340 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
346 * Create delete filter
348 static axiom_node_t
* create_delete_filter(private_tnc_ifmap_soap_t
*this,
353 axiom_attribute_t
*attr
;
356 el
= axiom_element_create(this->env
, NULL
, "delete", NULL
, &node
);
358 snprintf(buf
, BUF_LEN
, "meta:%s[@ifmap-publisher-id='%s']",
359 metadata
, this->ifmap_publisher_id
);
360 attr
= axiom_attribute_create(this->env
, "filter", buf
, NULL
);
361 axiom_element_add_attribute(el
, this->env
, attr
, node
);
366 METHOD(tnc_ifmap_soap_t
, publish_ike_sa
, bool,
367 private_tnc_ifmap_soap_t
*this, u_int32_t ike_sa_id
, identification_t
*id
,
368 bool is_user
, host_t
*host
, bool up
)
370 axiom_node_t
*request
, *node
;
372 axiom_namespace_t
*ns
, *ns_meta
;
373 axiom_attribute_t
*attr
;
375 /* build publish request */
376 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
377 el
= axiom_element_create(this->env
, NULL
, "publish", ns
, &request
);
378 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
379 axiom_element_declare_namespace(el
, this->env
, request
, ns_meta
);
380 attr
= axiom_attribute_create(this->env
, "session-id", this->session_id
,
382 axiom_element_add_attribute(el
, this->env
, attr
, request
);
385 * update or delete authenticated-as metadata
389 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
393 node
= create_delete_filter(this, "authenticated-as");
395 axiom_node_add_child(request
, this->env
, node
);
397 /* add access-request, identity and [if up] metadata */
398 axiom_node_add_child(node
, this->env
,
399 create_access_request(this, ike_sa_id
));
400 axiom_node_add_child(node
, this->env
,
401 create_identity(this, id
, is_user
));
404 axiom_node_add_child(node
, this->env
,
405 create_metadata(this, "authenticated-as"));
409 * update or delete access-request-ip metadata
413 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
417 node
= create_delete_filter(this, "access-request-ip");
419 axiom_node_add_child(request
, this->env
, node
);
421 /* add access-request, ip-address and [if up] metadata */
422 axiom_node_add_child(node
, this->env
,
423 create_access_request(this, ike_sa_id
));
424 axiom_node_add_child(node
, this->env
,
425 create_ip_address(this, host
));
428 axiom_node_add_child(node
, this->env
,
429 create_metadata(this, "access-request-ip"));
433 * update or delete authenticated-by metadata
437 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
441 node
= create_delete_filter(this, "authenticated-by");
443 axiom_node_add_child(request
, this->env
, node
);
445 /* add access-request, device and [if up] metadata */
446 axiom_node_add_child(node
, this->env
,
447 create_access_request(this, ike_sa_id
));
448 axiom_node_add_child(node
, this->env
,
449 create_device(this));
452 axiom_node_add_child(node
, this->env
,
453 create_metadata(this, "authenticated-by"));
456 /* send publish request and receive publishReceived */
457 return send_receive(this, "publish", request
, "publishReceived", NULL
);
460 METHOD(tnc_ifmap_soap_t
, publish_device_ip
, bool,
461 private_tnc_ifmap_soap_t
*this, host_t
*host
)
463 axiom_node_t
*request
, *node
;
465 axiom_namespace_t
*ns
, *ns_meta
;
466 axiom_attribute_t
*attr
;
468 /* build publish request */
469 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
470 el
= axiom_element_create(this->env
, NULL
, "publish", ns
, &request
);
471 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
472 axiom_element_declare_namespace(el
, this->env
, request
, ns_meta
);
473 attr
= axiom_attribute_create(this->env
, "session-id", this->session_id
,
475 axiom_element_add_attribute(el
, this->env
, attr
, request
);
476 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
477 axiom_node_add_child(request
, this->env
, node
);
479 /* add device, ip-address and metadata */
480 axiom_node_add_child(node
, this->env
,
481 create_device(this));
482 axiom_node_add_child(node
, this->env
,
483 create_ip_address(this, host
));
484 axiom_node_add_child(node
, this->env
,
485 create_metadata(this, "device-ip"));
487 /* send publish request and receive publishReceived */
488 return send_receive(this, "publish", request
, "publishReceived", NULL
);
491 METHOD(tnc_ifmap_soap_t
, endSession
, bool,
492 private_tnc_ifmap_soap_t
*this)
494 axiom_node_t
*request
;
496 axiom_namespace_t
*ns
;
497 axiom_attribute_t
*attr
;
499 /* build endSession request */
500 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
501 el
= axiom_element_create(this->env
, NULL
, "endSession", ns
, &request
);
502 attr
= axiom_attribute_create(this->env
, "session-id", this->session_id
, NULL
);
503 axiom_element_add_attribute(el
, this->env
, attr
, request
);
505 /* send endSession request and receive end SessionResult */
506 return send_receive(this, "endSession", request
, "endSessionResult", NULL
);
509 METHOD(tnc_ifmap_soap_t
, destroy
, void,
510 private_tnc_ifmap_soap_t
*this)
512 if (this->session_id
)
515 free(this->session_id
);
516 free(this->ifmap_publisher_id
);
517 free(this->device_name
);
519 if (this->svc_client
)
521 axis2_svc_client_free(this->svc_client
, this->env
);
525 axutil_env_free(this->env
);
530 static bool axis2c_init(private_tnc_ifmap_soap_t
*this)
532 axis2_char_t
*server
, *server_cert
, *client_home
;
533 axis2_char_t
*username
, *password
, *auth_type
;
534 axis2_endpoint_ref_t
* endpoint_ref
= NULL
;
535 axis2_options_t
*options
= NULL
;
536 axis2_transport_in_desc_t
*transport_in
;
537 axis2_transport_out_desc_t
*transport_out
;
538 axis2_transport_sender_t
*transport_sender
;
539 axutil_property_t
* property
;
541 /* Getting configuration parameters from strongswan.conf */
542 client_home
= lib
->settings
->get_str(lib
->settings
,
543 "charon.plugins.tnc-ifmap.client_home",
544 AXIS2_GETENV("AXIS2C_HOME"));
545 server
= lib
->settings
->get_str(lib
->settings
,
546 "charon.plugins.tnc-ifmap.server", IFMAP_SERVER
);
547 server_cert
= lib
->settings
->get_str(lib
->settings
,
548 "charon.plugins.tnc-ifmap.server_cert", NULL
);
549 auth_type
= lib
->settings
->get_str(lib
->settings
,
550 "charon.plugins.tnc-ifmap.auth_type", "Basic");
551 username
= lib
->settings
->get_str(lib
->settings
,
552 "charon.plugins.tnc-ifmap.username", NULL
);
553 password
= lib
->settings
->get_str(lib
->settings
,
554 "charon.plugins.tnc-ifmap.password", NULL
);
558 DBG1(DBG_TNC
, "MAP server certificate not defined");
561 if (!username
|| !password
)
563 DBG1(DBG_TNC
, "MAP client %s%s%s not defined",
564 (!username
) ?
"username" : "",
565 (!username
&& ! password
) ?
" and " : "",
566 (!password
) ?
"password" : "");
570 /* Create Axis2/C environment and options */
571 this->env
= axutil_env_create_all(IFMAP_LOGFILE
, AXIS2_LOG_LEVEL_TRACE
);
572 options
= axis2_options_create(this->env
);
574 /* Path to the MAP server certificate */
575 property
=axutil_property_create_with_args(this->env
, 0, 0, 0, server_cert
);
576 axis2_options_set_property(options
, this->env
, AXIS2_SSL_SERVER_CERT
, property
);
578 /* Define the MAP server as the to endpoint reference */
579 endpoint_ref
= axis2_endpoint_ref_create(this->env
, server
);
580 axis2_options_set_to(options
, this->env
, endpoint_ref
);
582 /* Set up HTTP Basic or Digest MAP client authentication */
583 axis2_options_set_http_auth_info(options
, this->env
, username
, password
,
586 /* Set up https transport */
587 transport_in
= axis2_transport_in_desc_create(this->env
,
588 AXIS2_TRANSPORT_ENUM_HTTPS
);
589 transport_out
= axis2_transport_out_desc_create(this->env
,
590 AXIS2_TRANSPORT_ENUM_HTTPS
);
591 transport_sender
= axis2_http_transport_sender_create(this->env
);
592 axis2_transport_out_desc_set_sender(transport_out
, this->env
,
594 axis2_options_set_transport_in(options
, this->env
, transport_in
);
595 axis2_options_set_transport_out(options
, this->env
, transport_out
);
597 /* Create the axis2 service client */
598 this->svc_client
= axis2_svc_client_create(this->env
, client_home
);
599 if (!this->svc_client
)
601 DBG1(DBG_TNC
, "could not create axis2 service client");
602 AXIS2_LOG_ERROR(this->env
->log
, AXIS2_LOG_SI
,
603 "Stub invoke FAILED: Error code: %d :: %s",
604 this->env
->error
->error_number
,
605 AXIS2_ERROR_GET_MESSAGE(this->env
->error
));
610 axis2_svc_client_set_options(this->svc_client
, this->env
, options
);
611 DBG1(DBG_TNC
, "connecting as MAP client '%s' to MAP server at '%s'",
620 tnc_ifmap_soap_t
*tnc_ifmap_soap_create()
622 private_tnc_ifmap_soap_t
*this;
626 .newSession
= _newSession
,
627 .purgePublisher
= _purgePublisher
,
628 .publish_ike_sa
= _publish_ike_sa
,
629 .publish_device_ip
= _publish_device_ip
,
630 .endSession
= _endSession
,
635 if (!axis2c_init(this))
641 return &this->public;