2 * Copyright (C) 2012 Tobias Brunner
3 * Copyright (C) 2012 Giuliano Grassi
4 * Copyright (C) 2012 Ralf Sager
5 * Hochschule fuer Technik Rapperswil
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License as published by the
9 * Free Software Foundation; either version 2 of the License, or (at your
10 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
12 * This program is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19 * @defgroup libandroidbridge libandroidbridge
21 * @defgroup android_kernel kernel
22 * @ingroup libandroidbridge
24 * @defgroup charonservice charonservice
25 * @{ @ingroup libandroidbridge
28 #ifndef CHARONSERVICE_H_
29 #define CHARONSERVICE_H_
32 #include <utils/linked_list.h>
34 typedef enum android_vpn_state_t android_vpn_state_t
;
35 typedef struct charonservice_t charonservice_t
;
38 * VPN status codes. As defined in CharonVpnService.java
40 enum android_vpn_state_t
{
41 CHARONSERVICE_CHILD_STATE_UP
= 1,
42 CHARONSERVICE_CHILD_STATE_DOWN
,
43 CHARONSERVICE_AUTH_ERROR
,
44 CHARONSERVICE_PEER_AUTH_ERROR
,
45 CHARONSERVICE_LOOKUP_ERROR
,
46 CHARONSERVICE_UNREACHABLE_ERROR
,
47 CHARONSERVICE_GENERIC_ERROR
,
51 * Public interface of charonservice.
53 * Used to communicate with CharonVpnService via JNI
55 struct charonservice_t
{
58 * Update the status in the Java domain (UI)
60 * @param code status code
61 * @return TRUE on success
63 bool (*update_status
)(charonservice_t
*this, android_vpn_state_t code
);
66 * Install a bypass policy for the given socket using the protect() Method
67 * of the Android VpnService interface
69 * @param fd socket file descriptor
70 * @param family socket protocol family
71 * @return TRUE if operation successful
73 bool (*bypass_socket
)(charonservice_t
*this, int fd
, int family
);
76 * Get a list of trusted certificates via JNI
78 * @return list of DER encoded certificates (as chunk_t*),
81 linked_list_t
*(*get_trusted_certificates
)(charonservice_t
*this);
86 * The single instance of charonservice_t.
88 * Set between JNI calls to initializeCharon() and deinitializeCharon().
90 extern charonservice_t
*charonservice
;
92 #endif /** CHARONSERVICE_H_ @}*/