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_listener.h"
19 #include <config/child_cfg.h>
21 #include <axis2_util.h>
22 #include <axis2_client.h>
23 #include <axiom_soap.h>
25 #define IFMAP_NS "http://www.trustedcomputinggroup.org/2010/IFMAP/2"
26 #define IFMAP_META_NS "http://www.trustedcomputinggroup.org/2010/IFMAP-METADATA/2"
27 #define IFMAP_LOGFILE "strongswan_ifmap.log"
28 #define IFMAP_SERVER "https://localhost:8443/"
30 typedef struct private_tnc_ifmap_listener_t private_tnc_ifmap_listener_t
;
33 * Private data of an tnc_ifmap_listener_t object.
35 struct private_tnc_ifmap_listener_t
{
38 * Public tnc_ifmap_listener_t interface.
40 tnc_ifmap_listener_t
public;
48 * Axis2 service client
50 axis2_svc_client_t
* svc_client
;
60 char *ifmap_publisher_id
;
64 static bool newSession(private_tnc_ifmap_listener_t
*this)
66 axiom_node_t
*request
, *result
, *node
;
68 axiom_namespace_t
*ns
;
69 axiom_attribute_t
*attr
;
71 axutil_qname_t
*qname
;
75 /* build newSession request */
76 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
77 el
= axiom_element_create(this->env
, NULL
, "newSession", ns
, &request
);
78 attr
= axiom_attribute_create(this->env
, "max-poll-result-size", "1000000", NULL
);
79 axiom_element_add_attribute(el
, this->env
, attr
, request
);
81 /* send newSession request */
82 result
= axis2_svc_client_send_receive(this->svc_client
, this->env
, request
);
88 /* process newSessionResult */
89 node
= axiom_node_get_first_child(result
, this->env
);
90 if (node
&& axiom_node_get_node_type(node
, this->env
) == AXIOM_ELEMENT
)
92 el
= (axiom_element_t
*)axiom_node_get_data_element(node
, this->env
);
93 qname
= axiom_element_get_qname(el
, this->env
, node
);
94 success
= streq("newSessionResult",
95 axutil_qname_to_string(qname
, this->env
));
97 /* process the attributes */
100 value
= axiom_element_get_attribute_value_by_name(el
, this->env
,
102 this->session_id
= strdup(value
);
103 value
= axiom_element_get_attribute_value_by_name(el
, this->env
,
104 "ifmap-publisher-id");
105 this->ifmap_publisher_id
= strdup(value
);
107 DBG1(DBG_TNC
, "session-id: %s, ifmap-publisher-id: %s",
108 this->session_id
, this->ifmap_publisher_id
);
109 success
= this->session_id
&& this->ifmap_publisher_id
;
111 value
= axiom_element_get_attribute_value_by_name(el
, this->env
,
112 "max-poll-result-size");
115 DBG1(DBG_TNC
, "max-poll-result-size: %s", value
);
120 DBG1(DBG_TNC
, "%s", axiom_element_to_string(el
, this->env
, node
));
123 axiom_node_free_tree(result
, this->env
);
128 static bool purgePublisher(private_tnc_ifmap_listener_t
*this)
130 axiom_node_t
*request
, *result
, *node
;
132 axiom_namespace_t
*ns
;
133 axiom_attribute_t
*attr
;
134 axutil_qname_t
*qname
;
135 bool success
= FALSE
;
137 /* build purgePublisher request */
138 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
139 el
= axiom_element_create(this->env
, NULL
, "purgePublisher", ns
,
141 attr
= axiom_attribute_create(this->env
, "session-id",
142 this->session_id
, NULL
);
143 axiom_element_add_attribute(el
, this->env
, attr
, request
);
144 attr
= axiom_attribute_create(this->env
, "ifmap-publisher-id",
145 this->ifmap_publisher_id
, NULL
);
146 axiom_element_add_attribute(el
, this->env
, attr
, request
);
148 /* send purgePublisher request */
149 result
= axis2_svc_client_send_receive(this->svc_client
, this->env
, request
);
155 /* process purgePublisherReceived */
156 node
= axiom_node_get_first_child(result
, this->env
);
157 if (node
&& axiom_node_get_node_type(node
, this->env
) == AXIOM_ELEMENT
)
159 el
= (axiom_element_t
*)axiom_node_get_data_element(node
, this->env
);
160 qname
= axiom_element_get_qname(el
, this->env
, node
);
161 success
= streq("purgePublisherReceived",
162 axutil_qname_to_string(qname
, this->env
));
165 DBG1(DBG_TNC
, "%s", axiom_element_to_string(el
, this->env
, node
));
168 axiom_node_free_tree(result
, this->env
);
173 static bool publish(private_tnc_ifmap_listener_t
*this, u_int32_t ike_sa_id
,
174 identification_t
*id
, host_t
*host
, bool up
)
176 axiom_node_t
*request
, *result
, *node
, *node2
, *node3
, *node4
;
178 axiom_namespace_t
*ns
, *ns_meta
;
179 axiom_attribute_t
*attr
;
181 char buf
[BUF_LEN
], *id_type
;
183 /* build publish request */
184 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
185 el
= axiom_element_create(this->env
, NULL
, "publish", ns
, &request
);
186 attr
= axiom_attribute_create(this->env
, "session-id", this->session_id
,
188 axiom_element_add_attribute(el
, this->env
, attr
, request
);
191 * update or delete authenticated-as metadata
195 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
196 axiom_node_add_child(request
, this->env
, node
);
200 el
= axiom_element_create(this->env
, NULL
, "delete", NULL
, &node
);
201 axiom_node_add_child(request
, this->env
, node
);
204 attr
= axiom_attribute_create(this->env
, "filter",
205 "authenticated-as", NULL
);
206 axiom_element_add_attribute(el
, this->env
, attr
, node
);
209 /* add access-request */
210 el
= axiom_element_create(this->env
, NULL
, "access-request", NULL
, &node2
);
211 axiom_node_add_child(node
, this->env
, node2
);
213 snprintf(buf
, BUF_LEN
, "%s:%d", this->ifmap_publisher_id
, ike_sa_id
);
214 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
215 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
218 el
= axiom_element_create(this->env
, NULL
, "identity", NULL
, &node2
);
219 axiom_node_add_child(node
, this->env
, node2
);
221 snprintf(buf
, BUF_LEN
, "%Y", id
);
222 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
223 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
225 switch (id
->get_type(id
))
228 id_type
= "dns-name";
231 id_type
= "email-address";
234 id_type
= "distinguished-name";
239 attr
= axiom_attribute_create(this->env
, "type", id_type
, NULL
);
240 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
245 el
= axiom_element_create(this->env
, NULL
, "metadata", NULL
, &node2
);
246 axiom_node_add_child(node
, this->env
, node2
);
248 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
250 el
= axiom_element_create(this->env
, NULL
, "authenticated-as", ns_meta
,
252 axiom_node_add_child(node2
, this->env
, node3
);
253 attr
= axiom_attribute_create(this->env
, "ifmap-cardinality",
254 "singleValue", NULL
);
255 axiom_element_add_attribute(el
, this->env
, attr
, node3
);
259 * update or delete access-request-ip metadata
263 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
264 axiom_node_add_child(request
, this->env
, node
);
268 el
= axiom_element_create(this->env
, NULL
, "delete", NULL
, &node
);
269 axiom_node_add_child(request
, this->env
, node
);
272 attr
= axiom_attribute_create(this->env
, "filter",
273 "access-request-ip", NULL
);
274 axiom_element_add_attribute(el
, this->env
, attr
, node
);
277 /* add access-request */
278 el
= axiom_element_create(this->env
, NULL
, "access-request", NULL
, &node2
);
279 axiom_node_add_child(node
, this->env
, node2
);
281 snprintf(buf
, BUF_LEN
, "%s:%d", this->ifmap_publisher_id
, ike_sa_id
);
282 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
283 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
286 el
= axiom_element_create(this->env
, NULL
, "ip-address", NULL
, &node2
);
287 axiom_node_add_child(node
, this->env
, node2
);
289 snprintf(buf
, BUF_LEN
, "%H", host
);
290 attr
= axiom_attribute_create(this->env
, "value", buf
, NULL
);
291 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
293 attr
= axiom_attribute_create(this->env
, "type",
294 host
->get_family(host
) == AF_INET ?
"IPv4" : "IPv6", NULL
);
295 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
300 el
= axiom_element_create(this->env
, NULL
, "metadata", NULL
, &node2
);
301 axiom_node_add_child(node
, this->env
, node2
);
302 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
303 el
= axiom_element_create(this->env
, NULL
, "access-request-ip", ns_meta
,
305 axiom_node_add_child(node2
, this->env
, node3
);
306 attr
= axiom_attribute_create(this->env
, "ifmap-cardinality",
307 "singleValue", NULL
);
308 axiom_element_add_attribute(el
, this->env
, attr
, node3
);
312 * update or delete authenticated-by metadata
316 el
= axiom_element_create(this->env
, NULL
, "update", NULL
, &node
);
317 axiom_node_add_child(request
, this->env
, node
);
321 el
= axiom_element_create(this->env
, NULL
, "delete", NULL
, &node
);
322 axiom_node_add_child(request
, this->env
, node
);
325 attr
= axiom_attribute_create(this->env
, "filter",
326 "authenticated-by", NULL
);
327 axiom_element_add_attribute(el
, this->env
, attr
, node
);
330 /* add access-request */
331 el
= axiom_element_create(this->env
, NULL
, "access-request", NULL
, &node2
);
332 axiom_node_add_child(node
, this->env
, node2
);
334 snprintf(buf
, BUF_LEN
, "%s:%d", this->ifmap_publisher_id
, ike_sa_id
);
335 attr
= axiom_attribute_create(this->env
, "name", buf
, NULL
);
336 axiom_element_add_attribute(el
, this->env
, attr
, node2
);
339 el
= axiom_element_create(this->env
, NULL
, "device", NULL
, &node2
);
340 axiom_node_add_child(node
, this->env
, node2
);
341 el
= axiom_element_create(this->env
, NULL
, "name", NULL
, &node3
);
342 axiom_node_add_child(node2
, this->env
, node3
);
343 text
= axiom_text_create(this->env
, node3
, this->ifmap_publisher_id
, &node4
);
348 el
= axiom_element_create(this->env
, NULL
, "metadata", NULL
, &node2
);
349 axiom_node_add_child(node
, this->env
, node2
);
350 ns_meta
= axiom_namespace_create(this->env
, IFMAP_META_NS
, "meta");
351 el
= axiom_element_create(this->env
, NULL
, "authenticated-by", ns_meta
,
353 axiom_node_add_child(node2
, this->env
, node3
);
354 attr
= axiom_attribute_create(this->env
, "ifmap-cardinality",
355 "singleValue", NULL
);
356 axiom_element_add_attribute(el
, this->env
, attr
, node3
);
359 /* send publish request */
360 result
= axis2_svc_client_send_receive(this->svc_client
, this->env
, request
);
366 /* process publishReceived */
367 node
= axiom_node_get_first_child(result
, this->env
);
368 axiom_node_free_tree(result
, this->env
);
373 static bool endSession(private_tnc_ifmap_listener_t
*this)
375 axiom_node_t
*request
, *result
, *node
;
377 axiom_namespace_t
*ns
;
378 axiom_attribute_t
*attr
;
379 axutil_qname_t
*qname
;
380 bool success
= FALSE
;
382 /* build endSession request */
383 ns
= axiom_namespace_create(this->env
, IFMAP_NS
, "ifmap");
384 el
= axiom_element_create(this->env
, NULL
, "endSession", ns
, &request
);
385 attr
= axiom_attribute_create(this->env
, "session-id", this->session_id
, NULL
);
386 axiom_element_add_attribute(el
, this->env
, attr
, request
);
388 /* send endSession request */
389 result
= axis2_svc_client_send_receive(this->svc_client
, this->env
, request
);
395 /* process endSessionResult */
396 node
= axiom_node_get_first_child(result
, this->env
);
397 if (node
&& axiom_node_get_node_type(node
, this->env
) == AXIOM_ELEMENT
)
399 el
= (axiom_element_t
*)axiom_node_get_data_element(node
, this->env
);
400 qname
= axiom_element_get_qname(el
, this->env
, node
);
401 success
= streq("endSessionResult",
402 axutil_qname_to_string(qname
, this->env
));
405 DBG1(DBG_TNC
, "%s", axiom_element_to_string(el
, this->env
, node
));
408 axiom_node_free_tree(result
, this->env
);
415 METHOD(listener_t
, ike_updown
, bool,
416 private_tnc_ifmap_listener_t
*this, ike_sa_t
*ike_sa
, bool up
)
419 identification_t
*id
;
422 ike_sa_id
= ike_sa
->get_unique_id(ike_sa
);
423 id
= ike_sa
->get_other_id(ike_sa
);
424 host
= ike_sa
->get_other_host(ike_sa
);
426 DBG2(DBG_TNC
, "sending publish");
427 if (!publish(this, ike_sa_id
, id
, host
, up
))
429 DBG1(DBG_TNC
, "publish with MAP server failed");
435 METHOD(tnc_ifmap_listener_t
, destroy
, void,
436 private_tnc_ifmap_listener_t
*this)
438 if (this->session_id
)
440 DBG2(DBG_TNC
, "sending endSession");
441 if (!endSession(this))
443 DBG1(DBG_TNC
, "endSession with MAP server failed");
445 free(this->session_id
);
446 free(this->ifmap_publisher_id
);
448 if (this->svc_client
)
450 axis2_svc_client_free(this->svc_client
, this->env
);
454 axutil_env_free(this->env
);
462 tnc_ifmap_listener_t
*tnc_ifmap_listener_create()
464 private_tnc_ifmap_listener_t
*this;
465 axis2_char_t
*server
, *client_home
, *username
, *password
, *auth_type
;
466 axis2_endpoint_ref_t
* endpoint_ref
= NULL
;
467 axis2_options_t
*options
= NULL
;
469 client_home
= lib
->settings
->get_str(lib
->settings
,
470 "charon.plugins.tnc-ifmap.client_home",
471 AXIS2_GETENV("AXIS2C_HOME"));
472 server
= lib
->settings
->get_str(lib
->settings
,
473 "charon.plugins.tnc-ifmap.server", IFMAP_SERVER
);
474 auth_type
= lib
->settings
->get_str(lib
->settings
,
475 "charon.plugins.tnc-ifmap.auth_type", "Basic");
476 username
= lib
->settings
->get_str(lib
->settings
,
477 "charon.plugins.tnc-ifmap.username", NULL
);
478 password
= lib
->settings
->get_str(lib
->settings
,
479 "charon.plugins.tnc-ifmap.password", NULL
);
481 if (!username
|| !password
)
483 DBG1(DBG_TNC
, "MAP client %s%s%s not defined",
484 (!username
) ?
"username" : "",
485 (!username
&& ! password
) ?
" and " : "",
486 (!password
) ?
"password" : "");
492 .ike_updown
= _ike_updown
,
498 /* Create Axis2/C environment and options */
499 this->env
= axutil_env_create_all(IFMAP_LOGFILE
, AXIS2_LOG_LEVEL_TRACE
);
500 options
= axis2_options_create(this->env
);
502 /* Define the IF-MAP server as the to endpoint reference */
503 endpoint_ref
= axis2_endpoint_ref_create(this->env
, server
);
504 axis2_options_set_to(options
, this->env
, endpoint_ref
);
506 /* Create the axis2 service client */
507 this->svc_client
= axis2_svc_client_create(this->env
, client_home
);
508 if (!this->svc_client
)
510 DBG1(DBG_TNC
, "Error creating axis2 service client");
511 AXIS2_LOG_ERROR(this->env
->log
, AXIS2_LOG_SI
,
512 "Stub invoke FAILED: Error code: %d :: %s",
513 this->env
->error
->error_number
,
514 AXIS2_ERROR_GET_MESSAGE(this->env
->error
));
519 axis2_svc_client_set_options(this->svc_client
, this->env
, options
);
520 axis2_options_set_http_auth_info(options
, this->env
, username
, password
,
522 DBG1(DBG_TNC
, "connecting as MAP client '%s' to MAP server at '%s'",
525 DBG2(DBG_TNC
, "sending newSession");
526 if (!newSession(this))
528 DBG1(DBG_TNC
, "newSession with MAP server failed");
532 DBG2(DBG_TNC
, "sending purgePublisher");
533 if (!purgePublisher(this))
535 DBG1(DBG_TNC
, "purgePublisher with MAP server failed");
540 return &this->public;