2 * Copyright (C) 2006-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
18 #include "sql_config.h"
22 typedef struct private_sql_config_t private_sql_config_t
;
25 * Private data of an sql_config_t object
27 struct private_sql_config_t
{
43 static peer_cfg_t
*build_peer_cfg(private_sql_config_t
*this, enumerator_t
*e
,
44 identification_t
*me
, identification_t
*other
);
47 * build a traffic selector from a SQL query
49 static traffic_selector_t
*build_traffic_selector(private_sql_config_t
*this,
50 enumerator_t
*e
, bool *local
)
52 int type
, protocol
, start_port
, end_port
;
53 chunk_t start_addr
, end_addr
;
54 traffic_selector_t
*ts
;
59 TS_REMOTE_DYNAMIC
= 3,
62 while (e
->enumerate(e
, &kind
, &type
, &protocol
,
63 &start_addr
, &end_addr
, &start_port
, &end_port
))
72 ts
= traffic_selector_create_from_bytes(protocol
, type
,
73 start_addr
, start_port
, end_addr
, end_port
);
75 case TS_LOCAL_DYNAMIC
:
78 case TS_REMOTE_DYNAMIC
:
79 ts
= traffic_selector_create_dynamic(protocol
,
80 start_port
, end_port
);
94 * Add traffic selectors to a child config
96 static void add_traffic_selectors(private_sql_config_t
*this,
97 child_cfg_t
*child
, int id
)
100 traffic_selector_t
*ts
;
103 e
= this->db
->query(this->db
,
104 "SELECT kind, type, protocol, "
105 "start_addr, end_addr, start_port, end_port "
106 "FROM traffic_selectors JOIN child_config_traffic_selector "
107 "ON id = traffic_selector WHERE child_cfg = ?",
109 DB_INT
, DB_INT
, DB_INT
,
110 DB_BLOB
, DB_BLOB
, DB_INT
, DB_INT
);
113 while ((ts
= build_traffic_selector(this, e
, &local
)))
115 child
->add_traffic_selector(child
, local
, ts
);
122 * build a Child configuration from a SQL query
124 static child_cfg_t
*build_child_cfg(private_sql_config_t
*this, enumerator_t
*e
)
126 int id
, lifetime
, rekeytime
, jitter
, hostaccess
, mode
, ipcomp
;
127 int start
, dpd
, close
;
129 child_cfg_t
*child_cfg
;
131 if (e
->enumerate(e
, &id
, &name
, &lifetime
, &rekeytime
, &jitter
, &updown
,
132 &hostaccess
, &mode
, &start
, &dpd
, &close
, &ipcomp
))
134 lifetime_cfg_t lft
= {
135 .time
= { .life
= lifetime
, .rekey
= rekeytime
, .jitter
= jitter
}
137 child_cfg
= child_cfg_create(name
, &lft
, updown
, hostaccess
, mode
,
138 start
, dpd
, close
, ipcomp
, 0, 0, NULL
, NULL
);
139 /* TODO: read proposal from db */
140 child_cfg
->add_proposal(child_cfg
, proposal_create_default(PROTO_ESP
));
141 add_traffic_selectors(this, child_cfg
, id
);
148 * Add child configs to peer config
150 static void add_child_cfgs(private_sql_config_t
*this, peer_cfg_t
*peer
, int id
)
153 child_cfg_t
*child_cfg
;
155 e
= this->db
->query(this->db
,
156 "SELECT id, name, lifetime, rekeytime, jitter, updown, "
157 "hostaccess, mode, start_action, dpd_action, close_action, ipcomp "
158 "FROM child_configs JOIN peer_config_child_config ON id = child_cfg "
159 "WHERE peer_cfg = ?",
161 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_INT
, DB_TEXT
,
162 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
);
165 while ((child_cfg
= build_child_cfg(this, e
)))
167 peer
->add_child_cfg(peer
, child_cfg
);
174 * build a ike configuration from a SQL query
176 static ike_cfg_t
*build_ike_cfg(private_sql_config_t
*this, enumerator_t
*e
,
177 host_t
*my_host
, host_t
*other_host
)
179 int certreq
, force_encap
;
180 char *local
, *remote
;
182 while (e
->enumerate(e
, &certreq
, &force_encap
, &local
, &remote
))
186 ike_cfg
= ike_cfg_create(certreq
, force_encap
,
187 local
, IKEV2_UDP_PORT
, remote
, IKEV2_UDP_PORT
);
188 /* TODO: read proposal from db */
189 ike_cfg
->add_proposal(ike_cfg
, proposal_create_default(PROTO_IKE
));
196 * Query a IKE config by its id
198 static ike_cfg_t
* get_ike_cfg_by_id(private_sql_config_t
*this, int id
)
201 ike_cfg_t
*ike_cfg
= NULL
;
203 e
= this->db
->query(this->db
,
204 "SELECT certreq, force_encap, local, remote "
205 "FROM ike_configs WHERE id = ?",
207 DB_INT
, DB_INT
, DB_TEXT
, DB_TEXT
);
210 ike_cfg
= build_ike_cfg(this, e
, NULL
, NULL
);
217 * Query a peer config by its id
219 static peer_cfg_t
*get_peer_cfg_by_id(private_sql_config_t
*this, int id
)
222 peer_cfg_t
*peer_cfg
= NULL
;
224 e
= this->db
->query(this->db
,
225 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
226 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
227 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
228 "dpd_delay, virtual, pool, "
229 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
230 "FROM peer_configs AS c "
231 "JOIN identities AS l ON local_id = l.id "
232 "JOIN identities AS r ON remote_id = r.id "
233 "LEFT JOIN identities AS p ON peer_id = p.id "
236 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
237 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
238 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
239 DB_INT
, DB_TEXT
, DB_TEXT
,
240 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
243 peer_cfg
= build_peer_cfg(this, e
, NULL
, NULL
);
250 * build a peer configuration from a SQL query
252 static peer_cfg_t
*build_peer_cfg(private_sql_config_t
*this, enumerator_t
*e
,
253 identification_t
*me
, identification_t
*other
)
255 int id
, ike_cfg
, l_type
, r_type
,
256 cert_policy
, uniqueid
, auth_method
, eap_type
, eap_vendor
, keyingtries
,
257 rekeytime
, reauthtime
, jitter
, overtime
, mobike
, dpd_delay
,
258 mediation
, mediated_by
, p_type
;
259 chunk_t l_data
, r_data
, p_data
;
260 char *name
, *virtual, *pool
;
262 while (e
->enumerate(e
,
263 &id
, &name
, &ike_cfg
, &l_type
, &l_data
, &r_type
, &r_data
,
264 &cert_policy
, &uniqueid
, &auth_method
, &eap_type
, &eap_vendor
,
265 &keyingtries
, &rekeytime
, &reauthtime
, &jitter
, &overtime
, &mobike
,
266 &dpd_delay
, &virtual, &pool
,
267 &mediation
, &mediated_by
, &p_type
, &p_data
))
269 identification_t
*local_id
, *remote_id
, *peer_id
= NULL
;
270 peer_cfg_t
*peer_cfg
, *mediated_cfg
;
275 local_id
= identification_create_from_encoding(l_type
, l_data
);
276 remote_id
= identification_create_from_encoding(r_type
, r_data
);
277 if ((me
&& !me
->matches(me
, local_id
)) ||
278 (other
&& !other
->matches(other
, remote_id
)))
280 local_id
->destroy(local_id
);
281 remote_id
->destroy(remote_id
);
284 ike
= get_ike_cfg_by_id(this, ike_cfg
);
285 mediated_cfg
= mediated_by ?
get_peer_cfg_by_id(this, mediated_by
) : NULL
;
288 peer_id
= identification_create_from_encoding(p_type
, p_data
);
292 vip
= host_create_from_string(virtual, 0);
296 peer_cfg
= peer_cfg_create(
297 name
, 2, ike
, cert_policy
, uniqueid
,
298 keyingtries
, rekeytime
, reauthtime
, jitter
, overtime
,
299 mobike
, dpd_delay
, vip
, pool
,
300 mediation
, mediated_cfg
, peer_id
);
301 auth
= auth_cfg_create();
302 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, auth_method
);
303 auth
->add(auth
, AUTH_RULE_IDENTITY
, local_id
);
304 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, TRUE
);
305 auth
= auth_cfg_create();
306 auth
->add(auth
, AUTH_RULE_IDENTITY
, remote_id
);
309 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_EAP
);
310 auth
->add(auth
, AUTH_RULE_EAP_TYPE
, eap_type
);
313 auth
->add(auth
, AUTH_RULE_EAP_VENDOR
, eap_vendor
);
316 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, FALSE
);
317 add_child_cfgs(this, peer_cfg
, id
);
321 DESTROY_IF(mediated_cfg
);
323 DESTROY_IF(local_id
);
324 DESTROY_IF(remote_id
);
330 * implements backend_t.get_peer_cfg_by_name.
332 static peer_cfg_t
*get_peer_cfg_by_name(private_sql_config_t
*this, char *name
)
335 peer_cfg_t
*peer_cfg
= NULL
;
337 e
= this->db
->query(this->db
,
338 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
339 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
340 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
341 "dpd_delay, virtual, pool, "
342 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
343 "FROM peer_configs AS c "
344 "JOIN identities AS l ON local_id = l.id "
345 "JOIN identities AS r ON remote_id = r.id "
346 "LEFT JOIN identities AS p ON peer_id = p.id "
347 "WHERE ike_version = ? AND name = ?",
348 DB_INT
, 2, DB_TEXT
, name
,
349 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
350 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
351 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
352 DB_INT
, DB_TEXT
, DB_TEXT
,
353 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
356 peer_cfg
= build_peer_cfg(this, e
, NULL
, NULL
);
363 /** implements enumerator */
365 /** reference to context */
366 private_sql_config_t
*this;
367 /** filtering own host */
369 /** filtering remote host */
371 /** inner SQL enumerator */
373 /** currently enumerated peer config */
378 * Implementation of ike_enumerator_t.public.enumerate
380 static bool ike_enumerator_enumerate(ike_enumerator_t
*this, ike_cfg_t
**cfg
)
382 DESTROY_IF(this->current
);
383 this->current
= build_ike_cfg(this->this, this->inner
, this->me
, this->other
);
386 *cfg
= this->current
;
393 * Implementation of ike_enumerator_t.public.destroy
395 static void ike_enumerator_destroy(ike_enumerator_t
*this)
397 DESTROY_IF(this->current
);
398 this->inner
->destroy(this->inner
);
403 * Implementation of backend_t.create_ike_cfg_enumerator.
405 static enumerator_t
* create_ike_cfg_enumerator(private_sql_config_t
*this,
406 host_t
*me
, host_t
*other
)
408 ike_enumerator_t
*e
= malloc_thing(ike_enumerator_t
);
414 e
->public.enumerate
= (void*)ike_enumerator_enumerate
;
415 e
->public.destroy
= (void*)ike_enumerator_destroy
;
417 e
->inner
= this->db
->query(this->db
,
418 "SELECT certreq, force_encap, local, remote "
420 DB_INT
, DB_INT
, DB_TEXT
, DB_TEXT
);
431 /** implements enumerator */
433 /** reference to context */
434 private_sql_config_t
*this;
435 /** filtering own identity */
436 identification_t
*me
;
437 /** filtering remote identity */
438 identification_t
*other
;
439 /** inner SQL enumerator */
441 /** currently enumerated peer config */
446 * Implementation of peer_enumerator_t.public.enumerate
448 static bool peer_enumerator_enumerate(peer_enumerator_t
*this, peer_cfg_t
**cfg
)
450 DESTROY_IF(this->current
);
451 this->current
= build_peer_cfg(this->this, this->inner
, this->me
, this->other
);
454 *cfg
= this->current
;
461 * Implementation of peer_enumerator_t.public.destroy
463 static void peer_enumerator_destroy(peer_enumerator_t
*this)
465 DESTROY_IF(this->current
);
466 this->inner
->destroy(this->inner
);
471 * Implementation of backend_t.create_peer_cfg_enumerator.
473 static enumerator_t
* create_peer_cfg_enumerator(private_sql_config_t
*this,
474 identification_t
*me
,
475 identification_t
*other
)
477 peer_enumerator_t
*e
= malloc_thing(peer_enumerator_t
);
483 e
->public.enumerate
= (void*)peer_enumerator_enumerate
;
484 e
->public.destroy
= (void*)peer_enumerator_destroy
;
486 /* TODO: only get configs whose IDs match exactly or contain wildcards */
487 e
->inner
= this->db
->query(this->db
,
488 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
489 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
490 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
491 "dpd_delay, virtual, pool, "
492 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
493 "FROM peer_configs AS c "
494 "JOIN identities AS l ON local_id = l.id "
495 "JOIN identities AS r ON remote_id = r.id "
496 "LEFT JOIN identities AS p ON peer_id = p.id "
497 "WHERE ike_version = ?",
499 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
500 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
501 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
502 DB_INT
, DB_TEXT
, DB_TEXT
,
503 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
513 * Implementation of sql_config_t.destroy.
515 static void destroy(private_sql_config_t
*this)
521 * Described in header.
523 sql_config_t
*sql_config_create(database_t
*db
)
525 private_sql_config_t
*this = malloc_thing(private_sql_config_t
);
527 this->public.backend
.create_peer_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, identification_t
*me
, identification_t
*other
))create_peer_cfg_enumerator
;
528 this->public.backend
.create_ike_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, host_t
*me
, host_t
*other
))create_ike_cfg_enumerator
;
529 this->public.backend
.get_peer_cfg_by_name
= (peer_cfg_t
* (*)(backend_t
*,char*))get_peer_cfg_by_name
;
530 this->public.destroy
= (void(*)(sql_config_t
*))destroy
;
534 return &this->public;