2 * Copyright (C) 2011-2013 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
17 * @defgroup tnc_ifmap_soap tnc_ifmap_soap
18 * @{ @ingroup tnc_ifmap
21 #ifndef TNC_IFMAP_SOAP_H_
22 #define TNC_IFMAP_SOAP_H_
25 #include <networking/host.h>
26 #include <sa/ike_sa.h>
28 typedef struct tnc_ifmap_soap_t tnc_ifmap_soap_t
;
31 * Implements the TNC IF-MAP 2.0 SOAP Binding
33 struct tnc_ifmap_soap_t
{
36 * Creates a new IF-MAP session
38 * @return TRUE if command was successful
40 bool (*newSession
)(tnc_ifmap_soap_t
*this);
43 * Check if the IF-MAP session is still active
45 * @return TRUE if command was successful
47 bool (*renewSession
)(tnc_ifmap_soap_t
*this);
50 * Purges all metadata published by this publisher
52 * @return TRUE if command was successful
54 bool (*purgePublisher
)(tnc_ifmap_soap_t
*this);
57 * Publish metadata about established/deleted IKE_SAs
59 * @param ike_sa IKE_SA for which metadata is published
60 * @param up TRUE if IKE_SEA is up, FALSE if down
61 * @return TRUE if command was successful
63 bool (*publish_ike_sa
)(tnc_ifmap_soap_t
*this, ike_sa_t
*ike_sa
, bool up
);
66 * Publish PEP device-ip metadata
68 * @param host IP address of local endpoint
69 * @return TRUE if command was successful
71 bool (*publish_device_ip
)(tnc_ifmap_soap_t
*this, host_t
*host
);
74 * Publish Virtual IP access-request-ip metadata
76 * @param ike_sa IKE_SA for which metadata is published
77 * @param vip Virtual IP address of peer
78 * @param assign TRUE if assigned, FALSE if removed
79 * @return TRUE if command was successful
81 bool (*publish_virtual_ip
)(tnc_ifmap_soap_t
*this, ike_sa_t
*ike_sa
,
82 host_t
*vip
, bool assign
);
85 * Publish enforcement-report metadata
87 * @param host Host to be enforced
88 * @param action Enforcement action ("block" or "quarantine")
89 * @param reason Enforcement reason
90 * @return TRUE if command was successful
92 bool (*publish_enforcement_report
)(tnc_ifmap_soap_t
*this, host_t
*host
,
93 char *action
, char *reason
);
96 * Ends an IF-MAP session
98 * @return TRUE if command was successful
100 bool (*endSession
)(tnc_ifmap_soap_t
*this);
103 * Get ID of IF-MAP session
105 * @return IF-MAP session ID
107 char* (*get_session_id
)(tnc_ifmap_soap_t
*this);
110 * Check for an orphaned IF-MAP session
112 * @return TRUE if IF-MAP session is orphaned
114 bool (*orphaned
)(tnc_ifmap_soap_t
*this);
117 * Get a reference to an IF-MAP session
119 * @return referenced IF-MAP session
121 tnc_ifmap_soap_t
* (*get_ref
)(tnc_ifmap_soap_t
*this);
124 * Destroy a tnc_ifmap_soap_t.
126 void (*destroy
)(tnc_ifmap_soap_t
*this);
130 * Create a tnc_ifmap_soap instance.
132 tnc_ifmap_soap_t
*tnc_ifmap_soap_create();
134 #endif /** TNC_IFMAP_SOAP_H_ @}*/