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 an 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 * Add ESP proposals to a child config
124 static void add_esp_proposals(private_sql_config_t
*this,
125 child_cfg_t
*child
, int id
)
128 proposal_t
*proposal
;
130 bool use_default
= TRUE
;
132 e
= this->db
->query(this->db
,
134 "FROM algorithms JOIN child_config_algorithm ON id = alg "
135 "WHERE child_cfg = ? ORDER BY prio",
136 DB_INT
, id
, DB_TEXT
);
139 while (e
->enumerate(e
, &alg
))
141 proposal
= proposal_create_from_string(PROTO_ESP
, alg
);
142 child
->add_proposal(child
, proposal
);
149 child
->add_proposal(child
, proposal_create_default(PROTO_ESP
));
154 * Build a child config from an SQL query
156 static child_cfg_t
*build_child_cfg(private_sql_config_t
*this, enumerator_t
*e
)
158 int id
, lifetime
, rekeytime
, jitter
, hostaccess
, mode
, ipcomp
;
159 int start
, dpd
, close
;
161 child_cfg_t
*child_cfg
;
163 if (e
->enumerate(e
, &id
, &name
, &lifetime
, &rekeytime
, &jitter
, &updown
,
164 &hostaccess
, &mode
, &start
, &dpd
, &close
, &ipcomp
))
166 lifetime_cfg_t lft
= {
167 .time
= { .life
= lifetime
, .rekey
= rekeytime
, .jitter
= jitter
}
169 child_cfg
= child_cfg_create(name
, &lft
, updown
, hostaccess
, mode
,
170 start
, dpd
, close
, ipcomp
, 0, 0, NULL
, NULL
);
171 add_esp_proposals(this, child_cfg
, id
);
172 add_traffic_selectors(this, child_cfg
, id
);
179 * Add child configs to peer config
181 static void add_child_cfgs(private_sql_config_t
*this, peer_cfg_t
*peer
, int id
)
184 child_cfg_t
*child_cfg
;
186 e
= this->db
->query(this->db
,
187 "SELECT id, name, lifetime, rekeytime, jitter, updown, "
188 "hostaccess, mode, start_action, dpd_action, close_action, ipcomp "
189 "FROM child_configs JOIN peer_config_child_config ON id = child_cfg "
190 "WHERE peer_cfg = ?",
192 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_INT
, DB_TEXT
,
193 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
);
196 while ((child_cfg
= build_child_cfg(this, e
)))
198 peer
->add_child_cfg(peer
, child_cfg
);
205 * Add IKE proposals to an IKE config
207 static void add_ike_proposals(private_sql_config_t
*this,
208 ike_cfg_t
*ike_cfg
, int id
)
211 proposal_t
*proposal
;
213 bool use_default
= TRUE
;
215 e
= this->db
->query(this->db
,
217 "FROM algorithms JOIN ike_config_algorithm ON id = alg "
218 "WHERE ike_cfg = ? ORDER BY prio",
219 DB_INT
, id
, DB_TEXT
);
222 while (e
->enumerate(e
, &alg
))
224 proposal
= proposal_create_from_string(PROTO_IKE
, alg
);
225 ike_cfg
->add_proposal(ike_cfg
, proposal
);
232 ike_cfg
->add_proposal(ike_cfg
, proposal_create_default(PROTO_IKE
));
237 * Build an IKE config from an SQL query
239 static ike_cfg_t
*build_ike_cfg(private_sql_config_t
*this, enumerator_t
*e
,
240 host_t
*my_host
, host_t
*other_host
)
242 int id
, certreq
, force_encap
;
243 char *local
, *remote
;
245 while (e
->enumerate(e
, &id
, &certreq
, &force_encap
, &local
, &remote
))
249 ike_cfg
= ike_cfg_create(certreq
, force_encap
,
250 local
, IKEV2_UDP_PORT
, remote
, IKEV2_UDP_PORT
);
251 add_ike_proposals(this, ike_cfg
, id
);
258 * Query an IKE config by its id
260 static ike_cfg_t
* get_ike_cfg_by_id(private_sql_config_t
*this, int id
)
263 ike_cfg_t
*ike_cfg
= NULL
;
265 e
= this->db
->query(this->db
,
266 "SELECT id, certreq, force_encap, local, remote "
267 "FROM ike_configs WHERE id = ?",
269 DB_INT
, DB_INT
, DB_INT
, DB_TEXT
, DB_TEXT
);
272 ike_cfg
= build_ike_cfg(this, e
, NULL
, NULL
);
279 * Query a peer config by its id
281 static peer_cfg_t
*get_peer_cfg_by_id(private_sql_config_t
*this, int id
)
284 peer_cfg_t
*peer_cfg
= NULL
;
286 e
= this->db
->query(this->db
,
287 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
288 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
289 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
290 "dpd_delay, virtual, pool, "
291 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
292 "FROM peer_configs AS c "
293 "JOIN identities AS l ON local_id = l.id "
294 "JOIN identities AS r ON remote_id = r.id "
295 "LEFT JOIN identities AS p ON peer_id = p.id "
298 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
299 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
300 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
301 DB_INT
, DB_TEXT
, DB_TEXT
,
302 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
305 peer_cfg
= build_peer_cfg(this, e
, NULL
, NULL
);
312 * Build a peer config from an SQL query
314 static peer_cfg_t
*build_peer_cfg(private_sql_config_t
*this, enumerator_t
*e
,
315 identification_t
*me
, identification_t
*other
)
317 int id
, ike_cfg
, l_type
, r_type
,
318 cert_policy
, uniqueid
, auth_method
, eap_type
, eap_vendor
, keyingtries
,
319 rekeytime
, reauthtime
, jitter
, overtime
, mobike
, dpd_delay
,
320 mediation
, mediated_by
, p_type
;
321 chunk_t l_data
, r_data
, p_data
;
322 char *name
, *virtual, *pool
;
324 while (e
->enumerate(e
,
325 &id
, &name
, &ike_cfg
, &l_type
, &l_data
, &r_type
, &r_data
,
326 &cert_policy
, &uniqueid
, &auth_method
, &eap_type
, &eap_vendor
,
327 &keyingtries
, &rekeytime
, &reauthtime
, &jitter
, &overtime
, &mobike
,
328 &dpd_delay
, &virtual, &pool
,
329 &mediation
, &mediated_by
, &p_type
, &p_data
))
331 identification_t
*local_id
, *remote_id
, *peer_id
= NULL
;
332 peer_cfg_t
*peer_cfg
, *mediated_cfg
;
337 local_id
= identification_create_from_encoding(l_type
, l_data
);
338 remote_id
= identification_create_from_encoding(r_type
, r_data
);
339 if ((me
&& !me
->matches(me
, local_id
)) ||
340 (other
&& !other
->matches(other
, remote_id
)))
342 local_id
->destroy(local_id
);
343 remote_id
->destroy(remote_id
);
346 ike
= get_ike_cfg_by_id(this, ike_cfg
);
347 mediated_cfg
= mediated_by ?
get_peer_cfg_by_id(this, mediated_by
) : NULL
;
350 peer_id
= identification_create_from_encoding(p_type
, p_data
);
354 vip
= host_create_from_string(virtual, 0);
358 peer_cfg
= peer_cfg_create(
359 name
, 2, ike
, cert_policy
, uniqueid
,
360 keyingtries
, rekeytime
, reauthtime
, jitter
, overtime
,
361 mobike
, dpd_delay
, vip
, pool
,
362 mediation
, mediated_cfg
, peer_id
);
363 auth
= auth_cfg_create();
364 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, auth_method
);
365 auth
->add(auth
, AUTH_RULE_IDENTITY
, local_id
);
366 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, TRUE
);
367 auth
= auth_cfg_create();
368 auth
->add(auth
, AUTH_RULE_IDENTITY
, remote_id
);
371 auth
->add(auth
, AUTH_RULE_AUTH_CLASS
, AUTH_CLASS_EAP
);
372 auth
->add(auth
, AUTH_RULE_EAP_TYPE
, eap_type
);
375 auth
->add(auth
, AUTH_RULE_EAP_VENDOR
, eap_vendor
);
378 peer_cfg
->add_auth_cfg(peer_cfg
, auth
, FALSE
);
379 add_child_cfgs(this, peer_cfg
, id
);
383 DESTROY_IF(mediated_cfg
);
385 DESTROY_IF(local_id
);
386 DESTROY_IF(remote_id
);
392 * implements backend_t.get_peer_cfg_by_name.
394 static peer_cfg_t
*get_peer_cfg_by_name(private_sql_config_t
*this, char *name
)
397 peer_cfg_t
*peer_cfg
= NULL
;
399 e
= this->db
->query(this->db
,
400 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
401 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
402 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
403 "dpd_delay, virtual, pool, "
404 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
405 "FROM peer_configs AS c "
406 "JOIN identities AS l ON local_id = l.id "
407 "JOIN identities AS r ON remote_id = r.id "
408 "LEFT JOIN identities AS p ON peer_id = p.id "
409 "WHERE ike_version = ? AND name = ?",
410 DB_INT
, 2, DB_TEXT
, name
,
411 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
412 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
413 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
414 DB_INT
, DB_TEXT
, DB_TEXT
,
415 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
418 peer_cfg
= build_peer_cfg(this, e
, NULL
, NULL
);
425 /** implements enumerator */
427 /** reference to context */
428 private_sql_config_t
*this;
429 /** filtering own host */
431 /** filtering remote host */
433 /** inner SQL enumerator */
435 /** currently enumerated peer config */
440 * Implementation of ike_enumerator_t.public.enumerate
442 static bool ike_enumerator_enumerate(ike_enumerator_t
*this, ike_cfg_t
**cfg
)
444 DESTROY_IF(this->current
);
445 this->current
= build_ike_cfg(this->this, this->inner
, this->me
, this->other
);
448 *cfg
= this->current
;
455 * Implementation of ike_enumerator_t.public.destroy
457 static void ike_enumerator_destroy(ike_enumerator_t
*this)
459 DESTROY_IF(this->current
);
460 this->inner
->destroy(this->inner
);
465 * Implementation of backend_t.create_ike_cfg_enumerator.
467 static enumerator_t
* create_ike_cfg_enumerator(private_sql_config_t
*this,
468 host_t
*me
, host_t
*other
)
470 ike_enumerator_t
*e
= malloc_thing(ike_enumerator_t
);
476 e
->public.enumerate
= (void*)ike_enumerator_enumerate
;
477 e
->public.destroy
= (void*)ike_enumerator_destroy
;
479 e
->inner
= this->db
->query(this->db
,
480 "SELECT id, certreq, force_encap, local, remote "
482 DB_INT
, DB_INT
, DB_INT
, DB_TEXT
, DB_TEXT
);
493 /** implements enumerator */
495 /** reference to context */
496 private_sql_config_t
*this;
497 /** filtering own identity */
498 identification_t
*me
;
499 /** filtering remote identity */
500 identification_t
*other
;
501 /** inner SQL enumerator */
503 /** currently enumerated peer config */
508 * Implementation of peer_enumerator_t.public.enumerate
510 static bool peer_enumerator_enumerate(peer_enumerator_t
*this, peer_cfg_t
**cfg
)
512 DESTROY_IF(this->current
);
513 this->current
= build_peer_cfg(this->this, this->inner
, this->me
, this->other
);
516 *cfg
= this->current
;
523 * Implementation of peer_enumerator_t.public.destroy
525 static void peer_enumerator_destroy(peer_enumerator_t
*this)
527 DESTROY_IF(this->current
);
528 this->inner
->destroy(this->inner
);
533 * Implementation of backend_t.create_peer_cfg_enumerator.
535 static enumerator_t
* create_peer_cfg_enumerator(private_sql_config_t
*this,
536 identification_t
*me
,
537 identification_t
*other
)
539 peer_enumerator_t
*e
= malloc_thing(peer_enumerator_t
);
545 e
->public.enumerate
= (void*)peer_enumerator_enumerate
;
546 e
->public.destroy
= (void*)peer_enumerator_destroy
;
548 /* TODO: only get configs whose IDs match exactly or contain wildcards */
549 e
->inner
= this->db
->query(this->db
,
550 "SELECT c.id, name, ike_cfg, l.type, l.data, r.type, r.data, "
551 "cert_policy, uniqueid, auth_method, eap_type, eap_vendor, "
552 "keyingtries, rekeytime, reauthtime, jitter, overtime, mobike, "
553 "dpd_delay, virtual, pool, "
554 "mediation, mediated_by, COALESCE(p.type, 0), p.data "
555 "FROM peer_configs AS c "
556 "JOIN identities AS l ON local_id = l.id "
557 "JOIN identities AS r ON remote_id = r.id "
558 "LEFT JOIN identities AS p ON peer_id = p.id "
559 "WHERE ike_version = ?",
561 DB_INT
, DB_TEXT
, DB_INT
, DB_INT
, DB_BLOB
, DB_INT
, DB_BLOB
,
562 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
563 DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
, DB_INT
,
564 DB_INT
, DB_TEXT
, DB_TEXT
,
565 DB_INT
, DB_INT
, DB_INT
, DB_BLOB
);
575 * Implementation of sql_config_t.destroy.
577 static void destroy(private_sql_config_t
*this)
583 * Described in header.
585 sql_config_t
*sql_config_create(database_t
*db
)
587 private_sql_config_t
*this = malloc_thing(private_sql_config_t
);
589 this->public.backend
.create_peer_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, identification_t
*me
, identification_t
*other
))create_peer_cfg_enumerator
;
590 this->public.backend
.create_ike_cfg_enumerator
= (enumerator_t
*(*)(backend_t
*, host_t
*me
, host_t
*other
))create_ike_cfg_enumerator
;
591 this->public.backend
.get_peer_cfg_by_name
= (peer_cfg_t
* (*)(backend_t
*,char*))get_peer_cfg_by_name
;
592 this->public.destroy
= (void(*)(sql_config_t
*))destroy
;
596 return &this->public;