1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
/*
* Copyright (C) 2010 Tobias Brunner
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include <unistd.h>
#include <cutils/sockets.h>
#include <cutils/properties.h>
#include "android_service.h"
#include <daemon.h>
#include <threading/thread.h>
#include <processing/jobs/callback_job.h>
typedef struct private_android_service_t private_android_service_t;
/**
* private data of Android service
*/
struct private_android_service_t {
/**
* public interface
*/
android_service_t public;
/**
* listener to track progress
*/
listener_t listener;
/**
* job that handles requests from the Android control socket
*/
callback_job_t *job;
/**
* android credentials
*/
android_creds_t *creds;
/**
* android control socket
*/
int control;
};
/**
* Some of the error codes defined in VpnManager.java
*/
typedef enum {
/** Error code to indicate an error from authentication. */
VPN_ERROR_AUTH = 51,
/** Error code to indicate the connection attempt failed. */
VPN_ERROR_CONNECTION_FAILED = 101,
/** Error code to indicate an error of remote server hanging up. */
VPN_ERROR_REMOTE_HUNG_UP = 7,
/** Error code to indicate an error of losing connectivity. */
VPN_ERROR_CONNECTION_LOST = 103,
} android_vpn_errors_t;
/**
* Read a string argument from the Android control socket
*/
static char *read_argument(int fd, u_char length)
{
int offset = 0;
char *data = malloc(length + 1);
while (offset < length)
{
int n = recv(fd, &data[offset], length - offset, 0);
if (n < 0)
{
DBG1(DBG_CFG, "failed to read argument from Android"
" control socket: %s", strerror(errno));
free(data);
return NULL;
}
offset += n;
}
data[length] = '\0';
DBG1(DBG_CFG, "received argument from Android control socket: %s", data);
return data;
}
/**
* handle the request received from the Android control socket
*/
static job_requeue_t initiate(private_android_service_t *this)
{
bool oldstate;
int fd, i = 0;
char *hostname = NULL, *cacert = NULL, *username = NULL, *password = NULL;
identification_t *gateway = NULL, *user = NULL;
ike_cfg_t *ike_cfg;
peer_cfg_t *peer_cfg;
child_cfg_t *child_cfg;
traffic_selector_t *ts;
ike_sa_t *ike_sa;
auth_cfg_t *auth;
lifetime_cfg_t lifetime = {
.time = {
.life = 10800, /* 3h */
.rekey = 10200, /* 2h50min */
.jitter = 300 /* 5min */
}
};
fd = accept(this->control, NULL, 0);
if (fd < 0)
{
DBG1(DBG_CFG, "accept on Android control socket failed: %s",
strerror(errno));
return JOB_REQUEUE_NONE;
}
close(this->control);
while (TRUE)
{
u_char length;
if (recv(fd, &length, 1, 0) != 1)
{
DBG1(DBG_CFG, "failed to read from Android control socket: %s",
strerror(errno));
return JOB_REQUEUE_NONE;
}
if (length == 0xFF)
{ /* last argument */
break;
}
else
{
switch (i++)
{
case 0: /* gateway */
hostname = read_argument(fd, length);
break;
case 1: /* CA certificate name */
cacert = read_argument(fd, length);
break;
case 2: /* username */
username = read_argument(fd, length);
break;
case 3: /* password */
password = read_argument(fd, length);
break;
}
}
}
if (cacert)
{
if (!this->creds->add_certificate(this->creds, cacert))
{
DBG1(DBG_CFG, "failed to load CA certificate");
}
/* if this is a server cert we could use the cert subject as id
* but we have to test first if that possible to configure */
}
gateway = identification_create_from_string(hostname);
DBG1(DBG_CFG, "using CA certificate, gateway identitiy '%Y'", gateway);
if (username)
{
user = identification_create_from_string(username);
this->creds->set_username_password(this->creds, user, password);
}
ike_cfg = ike_cfg_create(TRUE, FALSE, "0.0.0.0", IKEV2_UDP_PORT,
hostname, IKEV2_UDP_PORT);
ike_cfg->add_proposal(ike_cfg, proposal_create_default(PROTO_IKE));
peer_cfg = peer_cfg_create("android", 2, ike_cfg, CERT_SEND_IF_ASKED,
UNIQUE_REPLACE, 1, /* keyingtries */
36000, 0, /* rekey 10h, reauth none */
600, 600, /* jitter, over 10min */
TRUE, 0, /* mobike, DPD */
host_create_from_string("0.0.0.0", 0) /* virt */,
NULL, FALSE, NULL, NULL); /* pool, mediation */
auth = auth_cfg_create();
auth->add(auth, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_EAP);
auth->add(auth, AUTH_RULE_IDENTITY, user);
peer_cfg->add_auth_cfg(peer_cfg, auth, TRUE);
auth = auth_cfg_create();
auth->add(auth, AUTH_RULE_AUTH_CLASS, AUTH_CLASS_PUBKEY);
auth->add(auth, AUTH_RULE_IDENTITY, gateway);
peer_cfg->add_auth_cfg(peer_cfg, auth, FALSE);
child_cfg = child_cfg_create("android", &lifetime, NULL, TRUE, MODE_TUNNEL,
ACTION_NONE, ACTION_NONE, FALSE, 0, 0);
child_cfg->add_proposal(child_cfg, proposal_create_default(PROTO_ESP));
ts = traffic_selector_create_dynamic(0, 0, 65535);
child_cfg->add_traffic_selector(child_cfg, TRUE, ts);
ts = traffic_selector_create_from_string(0, TS_IPV4_ADDR_RANGE, "0.0.0.0",
0, "255.255.255.255", 65535);
child_cfg->add_traffic_selector(child_cfg, FALSE, ts);
peer_cfg->add_child_cfg(peer_cfg, child_cfg);
/* get an additional reference because initiate consumes one */
child_cfg->get_ref(child_cfg);
/*this->listener.ike_up_down = ike_up_down;
this->listener.child_up_down = child_up_down;
charon->bus->add_listener(charon->bus, &this->listener);*/
/* confirm that we received the request */
u_char code = i;
send(fd, &code, 1, 0);
if (charon->controller->initiate(charon->controller, peer_cfg, child_cfg,
controller_cb_empty, NULL) != SUCCESS)
{
DBG1(DBG_CFG, "failed to initiate tunnel");
code = VPN_ERROR_CONNECTION_FAILED;
send(fd, &code, 1, 0);
return JOB_REQUEUE_NONE;
}
property_set("vpn.status", "ok");
return JOB_REQUEUE_NONE;
}
METHOD(android_service_t, destroy, void,
private_android_service_t *this)
{
free(this);
}
/**
* See header
*/
android_service_t *android_service_create(android_creds_t *creds)
{
private_android_service_t *this;
INIT(this,
.public = {
.destroy = _destroy,
},
.creds = creds,
);
this->control = android_get_control_socket("charon");
if (this->control == -1)
{
DBG1(DBG_CFG, "failed to get Android control socket");
free(this);
return NULL;
}
if (listen(this->control, 1) < 0)
{
DBG1(DBG_CFG, "failed to listen on Android control socket: %s",
strerror(errno));
close(this->control);
free(this);
return NULL;
}
this->job = callback_job_create((callback_job_cb_t)initiate, this,
NULL, NULL);
charon->processor->queue_job(charon->processor, (job_t*)this->job);
return &this->public;
}
|