2 * Copyright (C) 2008 Martin Willi
3 * 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
19 #include "medcli_config.h"
22 #include <processing/jobs/callback_job.h>
24 typedef struct private_medcli_config_t private_medcli_config_t
;
27 * Private data of an medcli_config_t object
29 struct private_medcli_config_t
{
34 medcli_config_t
public;
58 * create a traffic selector from a CIDR notation string
60 static traffic_selector_t
*ts_from_string(char *str
)
69 pos
= strchr(str
, '/');
82 net
= host_create_from_string(str
, 0);
85 return traffic_selector_create_from_subnet(net
, netbits
, 0, 0);
88 return traffic_selector_create_dynamic(0, 0, 65535);
92 * implements backend_t.get_peer_cfg_by_name.
94 static peer_cfg_t
*get_peer_cfg_by_name(private_medcli_config_t
*this, char *name
)
97 peer_cfg_t
*peer_cfg
, *med_cfg
;
100 child_cfg_t
*child_cfg
;
102 char *address
, *local_net
, *remote_net
;
103 lifetime_cfg_t lifetime
= {
105 .life
= this->rekey
* 60 + this->rekey
,
106 .rekey
= this->rekey
,
107 .jitter
= this->rekey
111 /* query mediation server config:
112 * - build ike_cfg/peer_cfg for mediation connection on-the-fly
114 e
= this->db
->query(this->db
,
115 "SELECT Address, ClientConfig.KeyId, MediationServerConfig.KeyId "
116 "FROM MediationServerConfig JOIN ClientConfig",
117 DB_TEXT
, DB_BLOB
, DB_BLOB
);
118 if (!e
|| !e
->enumerate(e
, &address
, &me
, &other
))
123 ike_cfg
= ike_cfg_create(FALSE
, FALSE
,
124 "0.0.0.0", IKEV2_UDP_PORT
, address
, IKEV2_UDP_PORT
);
125 ike_cfg
->add_proposal(ike_cfg
, proposal_create_default(PROTO_IKE
));
126 med_cfg
= peer_cfg_create(
127 "mediation", 2, ike_cfg
,
128 CERT_NEVER_SEND
, UNIQUE_REPLACE
,
129 1, this->rekey
*60, 0, /* keytries, rekey, reauth */
130 this->rekey
*5, this->rekey
*3, /* jitter, overtime */
131 TRUE
, this->dpd
, /* mobike, dpddelay */
132 NULL
, NULL
, /* vip, pool */
133 TRUE
, NULL
, NULL
); /* mediation, med by, peer id */
136 auth
= auth_cfg_create();
137 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
138 auth
->add(auth
, AUTH_RULE_IDENTITY
,
139 identification_create_from_encoding(ID_KEY_ID
, me
));
140 med_cfg
->add_auth_cfg(med_cfg
, auth
, TRUE
);
141 auth
= auth_cfg_create();
142 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
143 auth
->add(auth
, AUTH_RULE_IDENTITY
,
144 identification_create_from_encoding(ID_KEY_ID
, other
));
145 med_cfg
->add_auth_cfg(med_cfg
, auth
, FALSE
);
147 /* query mediated config:
148 * - use any-any ike_cfg
149 * - build peer_cfg on-the-fly using med_cfg
152 e
= this->db
->query(this->db
,
153 "SELECT ClientConfig.KeyId, Connection.KeyId, "
154 "Connection.LocalSubnet, Connection.RemoteSubnet "
155 "FROM ClientConfig JOIN Connection "
156 "WHERE Active AND Alias = ?", DB_TEXT
, name
,
157 DB_BLOB
, DB_BLOB
, DB_TEXT
, DB_TEXT
);
158 if (!e
|| !e
->enumerate(e
, &me
, &other
, &local_net
, &remote_net
))
163 peer_cfg
= peer_cfg_create(
164 name
, 2, this->ike
->get_ref(this->ike
),
165 CERT_NEVER_SEND
, UNIQUE_REPLACE
,
166 1, this->rekey
*60, 0, /* keytries, rekey, reauth */
167 this->rekey
*5, this->rekey
*3, /* jitter, overtime */
168 TRUE
, this->dpd
, /* mobike, dpddelay */
169 NULL
, NULL
, /* vip, pool */
170 FALSE
, med_cfg
, /* mediation, med by */
171 identification_create_from_encoding(ID_KEY_ID
, other
));
173 auth
= auth_cfg_create();
174 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
175 auth
->add(auth
, AUTH_RULE_IDENTITY
,
176 identification_create_from_encoding(ID_KEY_ID
, me
));
177 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, TRUE
);
178 auth
= auth_cfg_create();
179 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
180 auth
->add(auth
, AUTH_RULE_IDENTITY
,
181 identification_create_from_encoding(ID_KEY_ID
, other
));
182 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, FALSE
);
184 child_cfg
= child_cfg_create(name
, &lifetime
, NULL
, TRUE
, MODE_TUNNEL
,
185 ACTION_NONE
, ACTION_NONE
, FALSE
, 0, 0,
187 child_cfg
->add_proposal(child_cfg
, proposal_create_default(PROTO_ESP
));
188 child_cfg
->add_traffic_selector(child_cfg
, TRUE
, ts_from_string(local_net
));
189 child_cfg
->add_traffic_selector(child_cfg
, FALSE
, ts_from_string(remote_net
));
190 peer_cfg
->add_child_cfg(peer_cfg
, child_cfg
);
196 * Implementation of backend_t.create_ike_cfg_enumerator.
198 static enumerator_t
* create_ike_cfg_enumerator(private_medcli_config_t
*this,
199 host_t
*me
, host_t
*other
)
201 return enumerator_create_single(this->ike
, NULL
);
205 /** implements enumerator */
207 /** inner SQL enumerator */
209 /** currently enumerated peer config */
211 /** ike cfg to use in peer cfg */
220 * Implementation of peer_enumerator_t.public.enumerate
222 static bool peer_enumerator_enumerate(peer_enumerator_t
*this, peer_cfg_t
**cfg
)
224 char *name
, *local_net
, *remote_net
;
226 child_cfg_t
*child_cfg
;
228 lifetime_cfg_t lifetime
= {
230 .life
= this->rekey
* 60 + this->rekey
,
231 .rekey
= this->rekey
,
232 .jitter
= this->rekey
236 DESTROY_IF(this->current
);
237 if (!this->inner
->enumerate(this->inner
, &name
, &me
, &other
,
238 &local_net
, &remote_net
))
240 this->current
= NULL
;
243 this->current
= peer_cfg_create(
244 name
, 2, this->ike
->get_ref(this->ike
),
245 CERT_NEVER_SEND
, UNIQUE_REPLACE
,
246 1, this->rekey
*60, 0, /* keytries, rekey, reauth */
247 this->rekey
*5, this->rekey
*3, /* jitter, overtime */
248 TRUE
, this->dpd
, /* mobike, dpddelay */
249 NULL
, NULL
, /* vip, pool */
250 FALSE
, NULL
, NULL
); /* mediation, med by, peer id */
252 auth
= auth_cfg_create();
253 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
254 auth
->add(auth
, AUTH_RULE_IDENTITY
,
255 identification_create_from_encoding(ID_KEY_ID
, me
));
256 this->current
->add_auth_cfg(this->current
, auth
, TRUE
);
257 auth
= auth_cfg_create();
258 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_PUBKEY
);
259 auth
->add(auth
, AUTH_RULE_IDENTITY
,
260 identification_create_from_encoding(ID_KEY_ID
, other
));
261 this->current
->add_auth_cfg(this->current
, auth
, FALSE
);
263 child_cfg
= child_cfg_create(name
, &lifetime
, NULL
, TRUE
, MODE_TUNNEL
,
264 ACTION_NONE
, ACTION_NONE
, FALSE
, 0, 0,
266 child_cfg
->add_proposal(child_cfg
, proposal_create_default(PROTO_ESP
));
267 child_cfg
->add_traffic_selector(child_cfg
, TRUE
, ts_from_string(local_net
));
268 child_cfg
->add_traffic_selector(child_cfg
, FALSE
, ts_from_string(remote_net
));
269 this->current
->add_child_cfg(this->current
, child_cfg
);
270 *cfg
= this->current
;
275 * Implementation of peer_enumerator_t.public.destroy
277 static void peer_enumerator_destroy(peer_enumerator_t
*this)
279 DESTROY_IF(this->current
);
280 this->inner
->destroy(this->inner
);
285 * Implementation of backend_t.create_peer_cfg_enumerator.
287 static enumerator_t
* create_peer_cfg_enumerator(private_medcli_config_t
*this,
288 identification_t
*me
,
289 identification_t
*other
)
291 peer_enumerator_t
*e
= malloc_thing(peer_enumerator_t
);
295 e
->rekey
= this->rekey
;
297 e
->public.enumerate
= (void*)peer_enumerator_enumerate
;
298 e
->public.destroy
= (void*)peer_enumerator_destroy
;
300 /* filter on IDs: NULL or ANY or matching KEY_ID */
301 e
->inner
= this->db
->query(this->db
,
302 "SELECT Alias, ClientConfig.KeyId, Connection.KeyId, "
303 "Connection.LocalSubnet, Connection.RemoteSubnet "
304 "FROM ClientConfig JOIN Connection "
306 "(? OR ClientConfig.KeyId = ?) AND (? OR Connection.KeyId = ?)",
307 DB_INT
, me
== NULL
|| me
->get_type(me
) == ID_ANY
,
308 DB_BLOB
, me
&& me
->get_type(me
) == ID_KEY_ID ?
309 me
->get_encoding(me
) : chunk_empty
,
310 DB_INT
, other
== NULL
|| other
->get_type(other
) == ID_ANY
,
311 DB_BLOB
, other
&& other
->get_type(other
) == ID_KEY_ID ?
312 other
->get_encoding(other
) : chunk_empty
,
313 DB_TEXT
, DB_BLOB
, DB_BLOB
, DB_TEXT
, DB_TEXT
);
323 * initiate a peer config
325 static job_requeue_t
initiate_config(peer_cfg_t
*peer_cfg
)
327 enumerator_t
*enumerator
;
328 child_cfg_t
*child_cfg
= NULL
;;
330 enumerator
= peer_cfg
->create_child_cfg_enumerator(peer_cfg
);
331 enumerator
->enumerate(enumerator
, &child_cfg
);
334 child_cfg
->get_ref(child_cfg
);
335 peer_cfg
->get_ref(peer_cfg
);
336 enumerator
->destroy(enumerator
);
337 charon
->controller
->initiate(charon
->controller
,
338 peer_cfg
, child_cfg
, NULL
, NULL
);
342 enumerator
->destroy(enumerator
);
344 return JOB_REQUEUE_NONE
;
348 * schedule initation of all "active" connections
350 static void schedule_autoinit(private_medcli_config_t
*this)
355 e
= this->db
->query(this->db
, "SELECT Alias FROM Connection WHERE Active",
359 while (e
->enumerate(e
, &name
))
361 peer_cfg_t
*peer_cfg
;
363 peer_cfg
= get_peer_cfg_by_name(this, name
);
366 /* schedule asynchronous initiation job */
367 lib
->processor
->queue_job(lib
->processor
,
368 (job_t
*)callback_job_create(
369 (callback_job_cb_t
)initiate_config
,
370 peer_cfg
, (void*)peer_cfg
->destroy
, NULL
));
378 * Implementation of medcli_config_t.destroy.
380 static void destroy(private_medcli_config_t
*this)
382 this->ike
->destroy(this->ike
);
387 * Described in header.
389 medcli_config_t
*medcli_config_create(database_t
*db
)
391 private_medcli_config_t
*this = malloc_thing(private_medcli_config_t
);
393 this->public.backend
.create_peer_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, identification_t
*me
, identification_t
*other
))create_peer_cfg_enumerator
;
394 this->public.backend
.create_ike_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, host_t
*me
, host_t
*other
))create_ike_cfg_enumerator
;
395 this->public.backend
.get_peer_cfg_by_name
= (peer_cfg_t
* (*)(backend_t
*,char*))get_peer_cfg_by_name
;
396 this->public.destroy
= (void(*)(medcli_config_t
*))destroy
;
399 this->rekey
= lib
->settings
->get_time(lib
->settings
, "medcli.rekey", 1200);
400 this->dpd
= lib
->settings
->get_time(lib
->settings
, "medcli.dpd", 300);
401 this->ike
= ike_cfg_create(FALSE
, FALSE
,
402 "0.0.0.0", IKEV2_UDP_PORT
, "0.0.0.0", IKEV2_UDP_PORT
);
403 this->ike
->add_proposal(this->ike
, proposal_create_default(PROTO_IKE
));
405 schedule_autoinit(this);
407 return &this->public;