2 * Copyright (C) 2009-2010 Andreas Steffen
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
20 #include <utils/host.h>
22 #include "pool_attributes.h"
23 #include "pool_usage.h"
26 * global database handle
28 extern database_t
*db
;
30 #define UNITY_NETWORK_LEN 14
32 ENUM(value_type_names
, VALUE_HEX
, VALUE_SUBNET
,
39 typedef struct attr_info_t attr_info_t
;
43 value_type_t value_type
;
44 configuration_attribute_type_t type
;
45 configuration_attribute_type_t type_ip6
;
48 static const attr_info_t attr_info
[] = {
49 { "internal_ip4_netmask", VALUE_ADDR
, INTERNAL_IP4_NETMASK
, 0 },
50 { "internal_ip6_netmask", VALUE_ADDR
, INTERNAL_IP6_NETMASK
, 0 },
51 { "netmask", VALUE_ADDR
, INTERNAL_IP4_NETMASK
,
52 INTERNAL_IP6_NETMASK
},
53 { "internal_ip4_dns", VALUE_ADDR
, INTERNAL_IP4_DNS
, 0 },
54 { "internal_ip6_dns", VALUE_ADDR
, INTERNAL_IP6_DNS
, 0 },
55 { "dns", VALUE_ADDR
, INTERNAL_IP4_DNS
,
57 { "internal_ip4_nbns", VALUE_ADDR
, INTERNAL_IP4_NBNS
, 0 },
58 { "internal_ip6_nbns", VALUE_ADDR
, INTERNAL_IP6_NBNS
, 0 },
59 { "nbns", VALUE_ADDR
, INTERNAL_IP4_NBNS
,
61 { "wins", VALUE_ADDR
, INTERNAL_IP4_NBNS
,
63 { "internal_ip4_dhcp", VALUE_ADDR
, INTERNAL_IP4_DHCP
, 0 },
64 { "internal_ip6_dhcp", VALUE_ADDR
, INTERNAL_IP6_DHCP
, 0 },
65 { "dhcp", VALUE_ADDR
, INTERNAL_IP4_DHCP
,
67 { "internal_ip4_server", VALUE_ADDR
, INTERNAL_IP4_SERVER
, 0 },
68 { "internal_ip6_server", VALUE_ADDR
, INTERNAL_IP6_SERVER
, 0 },
69 { "server", VALUE_ADDR
, INTERNAL_IP4_SERVER
,
70 INTERNAL_IP6_SERVER
},
71 { "application_version", VALUE_STRING
, APPLICATION_VERSION
, 0 },
72 { "version", VALUE_STRING
, APPLICATION_VERSION
, 0 },
73 { "unity_banner", VALUE_STRING
, UNITY_BANNER
, 0 },
74 { "banner", VALUE_STRING
, UNITY_BANNER
, 0 },
75 { "unity_def_domain", VALUE_STRING
, UNITY_DEF_DOMAIN
, 0 },
76 { "unity_splitdns_name", VALUE_STRING
, UNITY_SPLITDNS_NAME
, 0 },
77 { "unity_split_include", VALUE_SUBNET
, UNITY_SPLIT_INCLUDE
, 0 },
78 { "unity_local_lan", VALUE_SUBNET
, UNITY_LOCAL_LAN
, 0 },
82 * Determine the type of the attribute and its value
84 static bool parse_attributes(char *name
, char *value
, value_type_t
*value_type
,
85 configuration_attribute_type_t
*type
,
86 configuration_attribute_type_t
*type_ip6
,
89 host_t
*addr
= NULL
, *mask
= NULL
;
90 chunk_t addr_chunk
, mask_chunk
, blob_next
;
91 char *text
= "", *pos_addr
, *pos_mask
, *pos_next
, *endptr
;
97 *blob
= chunk_create(value
, strlen(value
));
98 *blob
= chunk_clone(*blob
);
101 *blob
= chunk_from_hex(chunk_create(value
, strlen(value
)), NULL
);
104 addr
= host_create_from_string(value
, 0);
107 fprintf(stderr
, "invalid IP address: '%s'.\n", value
);
110 addr_chunk
= addr
->get_address(addr
);
111 *blob
= chunk_clone(addr_chunk
);
120 pos_next
= strchr(pos_next
, ',');
126 pos_mask
= strchr(pos_addr
, '/');
127 if (pos_mask
== NULL
)
129 fprintf(stderr
, "invalid IPv4 subnet: '%s'.\n", pos_addr
);
135 addr
= host_create_from_string(pos_addr
, 0);
136 mask
= host_create_from_string(pos_mask
, 0);
137 if (addr
== NULL
|| addr
->get_family(addr
) != AF_INET
||
138 mask
== NULL
|| mask
->get_family(addr
) != AF_INET
)
140 fprintf(stderr
, "invalid IPv4 subnet: '%s/%s'.\n",
147 addr_chunk
= addr
->get_address(addr
);
148 mask_chunk
= mask
->get_address(mask
);
149 blob_next
= chunk_alloc(blob
->len
+ UNITY_NETWORK_LEN
);
150 memcpy(blob_next
.ptr
, blob
->ptr
, blob
->len
);
151 pos_addr
= blob_next
.ptr
+ blob
->len
;
152 memset(pos_addr
, 0x00, UNITY_NETWORK_LEN
);
153 memcpy(pos_addr
, addr_chunk
.ptr
, 4);
154 memcpy(pos_addr
+ 4, mask_chunk
.ptr
, 4);
167 /* init the attribute type */
171 for (i
= 0; i
< countof(attr_info
); i
++)
173 if (strcaseeq(name
, attr_info
[i
].keyword
))
175 *type
= attr_info
[i
].type
;
176 *type_ip6
= attr_info
[i
].type_ip6
;
178 if (*value_type
== VALUE_NONE
)
180 *value_type
= attr_info
[i
].value_type
;
184 if (*value_type
!= attr_info
[i
].value_type
&&
185 *value_type
!= VALUE_HEX
)
187 switch (attr_info
[i
].value_type
)
196 text
= "an IP address";
205 fprintf(stderr
, "the %s attribute requires %s value.\n",
212 if (*value_type
== VALUE_ADDR
)
214 *type
= (addr
->get_family(addr
) == AF_INET
) ?
215 attr_info
[i
].type
: attr_info
[i
].type_ip6
;
218 else if (*value_type
== VALUE_HEX
)
220 *value_type
= attr_info
[i
].value_type
;
222 if (*value_type
== VALUE_ADDR
)
226 *type
= attr_info
[i
].type_ip6
;
228 else if (blob
->len
!= 4)
230 fprintf(stderr
, "the %s attribute requires "
231 "a valid IP address.\n", name
);
244 /* is the attribute type numeric? */
245 *type
= strtol(name
, &endptr
, 10);
249 fprintf(stderr
, "the %s attribute is not recognized.\n", name
);
253 if (*type
< 1 || *type
> 32767)
255 fprintf(stderr
, "the attribute type must lie in the range 1..32767.\n");
259 if (*value_type
== VALUE_NONE
)
261 *value_type
= VALUE_HEX
;
267 * Lookup/insert an attribute pool by name
269 static u_int
get_attr_pool(char *name
)
274 /* look for an existing attribute pool in the table */
275 e
= db
->query(db
, "SELECT id FROM attribute_pools WHERE name = ?",
276 DB_TEXT
, name
, DB_UINT
);
277 if (e
&& e
->enumerate(e
, &row
))
283 /* not found, insert new one */
284 if (db
->execute(db
, &row
, "INSERT INTO attribute_pools (name) VALUES (?)",
287 fprintf(stderr
, "creating attribute pool '%s' failed.\n", name
);
294 * Lookup/insert an identity
296 u_int
get_identity(identification_t
*id
)
301 /* look for peer identity in the identities table */
302 e
= db
->query(db
, "SELECT id FROM identities WHERE type = ? AND data = ?",
303 DB_INT
, id
->get_type(id
), DB_BLOB
, id
->get_encoding(id
), DB_UINT
);
304 if (e
&& e
->enumerate(e
, &row
))
310 /* not found, insert new one */
311 if (db
->execute(db
, &row
, "INSERT INTO identities (type,data) VALUES (?,?)",
312 DB_INT
, id
->get_type(id
), DB_BLOB
, id
->get_encoding(id
)) != 1)
314 fprintf(stderr
, "creating id '%Y' failed.\n", id
);
321 * ipsec pool --addattr <type> - add attribute entry
323 void add_attr(char *name
, char *pool
, char *identity
,
324 char *value
, value_type_t value_type
)
326 configuration_attribute_type_t type
, type_ip6
;
327 u_int pool_id
= 0, identity_id
= 0;
328 char id_pool_str
[128] = "";
334 pool_id
= get_attr_pool(pool
);
342 identification_t
*id
= identification_create_from_string(identity
);
343 identity_id
= get_identity(id
);
345 if (identity_id
== 0)
349 snprintf(id_pool_str
, sizeof(id_pool_str
),
350 " for '%Y' in pool '%s'", identity
, pool
);
354 snprintf(id_pool_str
, sizeof(id_pool_str
), " in pool '%s'", pool
);
358 if (value_type
== VALUE_NONE
)
360 fprintf(stderr
, "the value of the %s attribute is missing.\n", name
);
363 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
368 success
= db
->execute(db
, NULL
,
369 "INSERT INTO attributes (identity, pool, type, value) "
370 "VALUES (?, ?, ?, ?)", DB_UINT
, identity_id
, DB_UINT
, pool_id
,
371 DB_INT
, type
, DB_BLOB
, blob
) == 1;
376 printf("added %s attribute (%N)%s.\n", name
,
377 configuration_attribute_type_names
, type
, id_pool_str
);
381 fprintf(stderr
, "adding %s attribute (%N)%s failed.\n", name
,
382 configuration_attribute_type_names
, type
, id_pool_str
);
387 * ipsec pool --delattr <type> - delete attribute entry
389 void del_attr(char *name
, char *pool
, char *identity
,
390 char *value
, value_type_t value_type
)
392 configuration_attribute_type_t type
, type_ip6
, type_db
;
393 u_int pool_id
= 0, identity_id
= 0;
394 char id_pool_str
[128] = "";
395 chunk_t blob
, blob_db
;
402 pool_id
= get_attr_pool(pool
);
410 identification_t
*id
= identification_create_from_string(identity
);
411 identity_id
= get_identity(id
);
413 if (identity_id
== 0)
417 snprintf(id_pool_str
, sizeof(id_pool_str
),
418 " for '%Y' in pool '%s'", identity
, pool
);
422 snprintf(id_pool_str
, sizeof(id_pool_str
), " in pool '%s'", pool
);
426 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
433 query
= db
->query(db
,
434 "SELECT id, type, value FROM attributes "
435 "WHERE identity = ? AND pool = ? AND type = ? AND value = ?",
436 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
437 DB_BLOB
, blob
, DB_UINT
, DB_INT
, DB_BLOB
);
439 else if (type_ip6
== 0)
441 query
= db
->query(db
,
442 "SELECT id, type, value FROM attributes "
443 "WHERE identity = ? AND pool = ? AND type = ?",
444 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
445 DB_UINT
, DB_INT
, DB_BLOB
);
449 query
= db
->query(db
,
450 "SELECT id, type, value FROM attributes "
451 "WHERE identity = ? AND pool = ? AND (type = ? OR type = ?)",
452 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
453 DB_INT
, type_ip6
, DB_UINT
, DB_INT
, DB_BLOB
);
458 fprintf(stderr
, "deleting '%s' attribute (%N)%s failed.\n",
459 name
, configuration_attribute_type_names
, type
, id_pool_str
);
464 while (query
->enumerate(query
, &id
, &type_db
, &blob_db
))
466 host_t
*server
= NULL
;
470 if (value_type
== VALUE_ADDR
)
472 int family
= (type_db
== type_ip6
) ? AF_INET6
: AF_INET
;
474 server
= host_create_from_chunk(family
, blob_db
, 0);
477 if (db
->execute(db
, NULL
,
478 "DELETE FROM attributes WHERE id = ?",
483 fprintf(stderr
, "deleting %s server %H%s failed\n",
484 name
, server
, id_pool_str
);
485 server
->destroy(server
);
487 else if (value_type
== VALUE_STRING
)
489 fprintf(stderr
, "deleting %s attribute (%N) with value '%.*s'%s failed.\n",
490 name
, configuration_attribute_type_names
, type
,
491 blob_db
.len
, blob_db
.ptr
, id_pool_str
);
496 fprintf(stderr
, "deleting %s attribute (%N) with value %#B%s failed.\n",
497 name
, configuration_attribute_type_names
, type
,
498 &blob_db
, id_pool_str
);
500 query
->destroy(query
);
506 printf("deleted %s server %H%s\n", name
, server
, id_pool_str
);
507 server
->destroy(server
);
509 else if (value_type
== VALUE_STRING
)
511 printf("deleted %s attribute (%N) with value '%.*s'%s.\n",
512 name
, configuration_attribute_type_names
, type
,
513 blob_db
.len
, blob_db
.ptr
, id_pool_str
);
517 printf("deleted %s attribute (%N) with value %#B%s.\n",
518 name
, configuration_attribute_type_names
, type
,
519 &blob_db
, id_pool_str
);
522 query
->destroy(query
);
530 fprintf(stderr
, "no %s attribute (%N) was found%s.\n", name
,
531 configuration_attribute_type_names
, type
, id_pool_str
);
535 fprintf(stderr
, "no %s attribute%s was found.\n",
541 if (value_type
== VALUE_ADDR
)
543 host_t
*server
= host_create_from_chunk(AF_UNSPEC
, blob
, 0);
545 fprintf(stderr
, "the %s server %H%s was not found.\n", name
,
546 server
, id_pool_str
);
547 server
->destroy(server
);
551 fprintf(stderr
, "the %s attribute (%N) with value '%.*s'%s "
552 "was not found.\n", name
,
553 configuration_attribute_type_names
, type
,
554 blob
.len
, blob
.ptr
, id_pool_str
);
562 * ipsec pool --statusattr - show all attribute entries
564 void status_attr(bool hexout
)
566 configuration_attribute_type_t type
;
567 value_type_t value_type
;
568 chunk_t value
, addr_chunk
, mask_chunk
, identity_chunk
;
569 identification_t
*identity
;
570 enumerator_t
*enumerator
;
574 int i
, identity_type
;
577 /* enumerate over all attributes */
578 enumerator
= db
->query(db
,
579 "SELECT identities.type, identities.data, "
580 "attribute_pools.name, attributes.type, attributes.value "
582 "LEFT OUTER JOIN identities "
583 "ON attributes.identity = identities.id "
584 "LEFT OUTER JOIN attribute_pools "
585 "ON attributes.pool = attribute_pools.id "
586 "ORDER BY identities.type, identities.data, "
587 "attribute_pools.name, attributes.type",
588 DB_INT
, DB_BLOB
, DB_TEXT
, DB_INT
, DB_BLOB
);
591 while (enumerator
->enumerate(enumerator
, &identity_type
,
592 &identity_chunk
, &pool_name
, &type
, &value
))
596 printf(" type description pool "
597 " identity value\n");
600 snprintf(type_name
, sizeof(type_name
), "%N",
601 configuration_attribute_type_names
, type
);
602 if (type_name
[0] == '(')
606 printf("%5d %-20s ",type
, type_name
);
608 printf(" %-15.15s ", (pool_name ? pool_name
: ""));
612 identity
= identification_create_from_encoding(identity_type
, identity_chunk
);
613 printf(" %-15.15Y ", identity
);
614 identity
->destroy(identity
);
621 value_type
= VALUE_HEX
;
624 for (i
= 0; i
< countof(attr_info
); i
++)
626 if (type
== attr_info
[i
].type
)
628 value_type
= attr_info
[i
].value_type
;
636 addr
= host_create_from_chunk(AF_UNSPEC
, value
, 0);
639 printf(" %H\n", addr
);
644 /* value cannot be represented as an IP address */
645 printf(" %#B\n", &value
);
649 if (value
.len
% UNITY_NETWORK_LEN
== 0)
651 for (i
= 0; i
< value
.len
/ UNITY_NETWORK_LEN
; i
++)
653 addr_chunk
= chunk_create(value
.ptr
+ i
*UNITY_NETWORK_LEN
, 4);
654 addr
= host_create_from_chunk(AF_INET
, addr_chunk
, 0);
655 mask_chunk
= chunk_create(addr_chunk
.ptr
+ 4, 4);
656 mask
= host_create_from_chunk(AF_INET
, mask_chunk
, 0);
657 printf("%s%H/%H", (i
> 0) ?
"," : " ", addr
, mask
);
665 /* value cannot be represented as a list of subnets */
666 printf(" %#B\n", &value
);
670 printf("\"%.*s\"\n", value
.len
, value
.ptr
);
674 printf(" %#B\n", &value
);
677 enumerator
->destroy(enumerator
);
682 * ipsec pool --showattr - show all supported attribute keywords
688 for (i
= 0; i
< countof(attr_info
); i
++)
693 snprintf(value_name
, sizeof(value_name
), "%N",
694 value_type_names
, attr_info
[i
].value_type
);
696 printf("%-20s --%-6s (%N",
697 attr_info
[i
].keyword
, value_name
,
698 configuration_attribute_type_names
, attr_info
[i
].type
);
700 if (attr_info
[i
].type_ip6
)
703 configuration_attribute_type_names
, attr_info
[i
].type_ip6
);