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 <networking/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);
168 /* init the attribute type */
172 for (i
= 0; i
< countof(attr_info
); i
++)
174 if (strcaseeq(name
, attr_info
[i
].keyword
))
176 *type
= attr_info
[i
].type
;
177 *type_ip6
= attr_info
[i
].type_ip6
;
179 if (*value_type
== VALUE_NONE
)
181 *value_type
= attr_info
[i
].value_type
;
185 if (*value_type
!= attr_info
[i
].value_type
&&
186 *value_type
!= VALUE_HEX
)
188 switch (attr_info
[i
].value_type
)
197 text
= "an IP address";
206 fprintf(stderr
, "the %s attribute requires %s value.\n",
213 if (*value_type
== VALUE_ADDR
)
215 *type
= (addr
->get_family(addr
) == AF_INET
) ?
216 attr_info
[i
].type
: attr_info
[i
].type_ip6
;
219 else if (*value_type
== VALUE_HEX
)
221 *value_type
= attr_info
[i
].value_type
;
223 if (*value_type
== VALUE_ADDR
)
227 *type
= attr_info
[i
].type_ip6
;
229 else if (blob
->len
!= 4)
231 fprintf(stderr
, "the %s attribute requires "
232 "a valid IP address.\n", name
);
245 /* is the attribute type numeric? */
246 *type
= strtol(name
, &endptr
, 10);
250 fprintf(stderr
, "the %s attribute is not recognized.\n", name
);
254 if (*type
< 1 || *type
> 32767)
256 fprintf(stderr
, "the attribute type must lie in the range 1..32767.\n");
260 if (*value_type
== VALUE_NONE
)
262 *value_type
= VALUE_HEX
;
268 * Lookup/insert an attribute pool by name
270 static u_int
get_attr_pool(char *name
)
275 /* look for an existing attribute pool in the table */
276 e
= db
->query(db
, "SELECT id FROM attribute_pools WHERE name = ?",
277 DB_TEXT
, name
, DB_UINT
);
278 if (e
&& e
->enumerate(e
, &row
))
284 /* not found, insert new one */
285 if (db
->execute(db
, &row
, "INSERT INTO attribute_pools (name) VALUES (?)",
288 fprintf(stderr
, "creating attribute pool '%s' failed.\n", name
);
295 * Lookup/insert an identity
297 u_int
get_identity(identification_t
*id
)
302 /* look for peer identity in the identities table */
303 e
= db
->query(db
, "SELECT id FROM identities WHERE type = ? AND data = ?",
304 DB_INT
, id
->get_type(id
), DB_BLOB
, id
->get_encoding(id
), DB_UINT
);
305 if (e
&& e
->enumerate(e
, &row
))
311 /* not found, insert new one */
312 if (db
->execute(db
, &row
, "INSERT INTO identities (type,data) VALUES (?,?)",
313 DB_INT
, id
->get_type(id
), DB_BLOB
, id
->get_encoding(id
)) != 1)
315 fprintf(stderr
, "creating id '%Y' failed.\n", id
);
322 * ipsec pool --addattr <type> - add attribute entry
324 void add_attr(char *name
, char *pool
, char *identity
,
325 char *value
, value_type_t value_type
)
327 configuration_attribute_type_t type
, type_ip6
;
328 u_int pool_id
= 0, identity_id
= 0;
329 char id_pool_str
[128] = "";
335 pool_id
= get_attr_pool(pool
);
343 identification_t
*id
;
345 id
= identification_create_from_string(identity
);
346 identity_id
= get_identity(id
);
348 if (identity_id
== 0)
352 snprintf(id_pool_str
, sizeof(id_pool_str
),
353 " for '%s' in pool '%s'", identity
, pool
);
357 snprintf(id_pool_str
, sizeof(id_pool_str
), " in pool '%s'", pool
);
361 if (value_type
== VALUE_NONE
)
363 fprintf(stderr
, "the value of the %s attribute is missing.\n", name
);
366 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
371 success
= db
->execute(db
, NULL
,
372 "INSERT INTO attributes (identity, pool, type, value) "
373 "VALUES (?, ?, ?, ?)", DB_UINT
, identity_id
, DB_UINT
, pool_id
,
374 DB_INT
, type
, DB_BLOB
, blob
) == 1;
379 printf("added %s attribute (%N)%s.\n", name
,
380 configuration_attribute_type_names
, type
, id_pool_str
);
384 fprintf(stderr
, "adding %s attribute (%N)%s failed.\n", name
,
385 configuration_attribute_type_names
, type
, id_pool_str
);
390 * ipsec pool --delattr <type> - delete attribute entry
392 void del_attr(char *name
, char *pool
, char *identity
,
393 char *value
, value_type_t value_type
)
395 configuration_attribute_type_t type
, type_ip6
, type_db
;
396 u_int pool_id
= 0, identity_id
= 0;
397 char id_pool_str
[128] = "";
398 chunk_t blob
, blob_db
;
405 pool_id
= get_attr_pool(pool
);
413 identification_t
*id
;
415 id
= identification_create_from_string(identity
);
416 identity_id
= get_identity(id
);
418 if (identity_id
== 0)
422 snprintf(id_pool_str
, sizeof(id_pool_str
),
423 " for '%s' in pool '%s'", identity
, pool
);
427 snprintf(id_pool_str
, sizeof(id_pool_str
), " in pool '%s'", pool
);
431 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
438 query
= db
->query(db
,
439 "SELECT id, type, value FROM attributes "
440 "WHERE identity = ? AND pool = ? AND type = ? AND value = ?",
441 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
442 DB_BLOB
, blob
, DB_UINT
, DB_INT
, DB_BLOB
);
444 else if (type_ip6
== 0)
446 query
= db
->query(db
,
447 "SELECT id, type, value FROM attributes "
448 "WHERE identity = ? AND pool = ? AND type = ?",
449 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
450 DB_UINT
, DB_INT
, DB_BLOB
);
454 query
= db
->query(db
,
455 "SELECT id, type, value FROM attributes "
456 "WHERE identity = ? AND pool = ? AND (type = ? OR type = ?)",
457 DB_UINT
, identity_id
, DB_UINT
, pool_id
, DB_INT
, type
,
458 DB_INT
, type_ip6
, DB_UINT
, DB_INT
, DB_BLOB
);
463 fprintf(stderr
, "deleting '%s' attribute (%N)%s failed.\n",
464 name
, configuration_attribute_type_names
, type
, id_pool_str
);
469 while (query
->enumerate(query
, &id
, &type_db
, &blob_db
))
471 host_t
*server
= NULL
;
475 if (value_type
== VALUE_ADDR
)
477 int family
= (type_db
== type_ip6
) ? AF_INET6
: AF_INET
;
479 server
= host_create_from_chunk(family
, blob_db
, 0);
482 if (db
->execute(db
, NULL
,
483 "DELETE FROM attributes WHERE id = ?",
488 fprintf(stderr
, "deleting %s server %H%s failed\n",
489 name
, server
, id_pool_str
);
490 server
->destroy(server
);
492 else if (value_type
== VALUE_STRING
)
494 fprintf(stderr
, "deleting %s attribute (%N) with value '%.*s'%s failed.\n",
495 name
, configuration_attribute_type_names
, type
,
496 (int)blob_db
.len
, blob_db
.ptr
, id_pool_str
);
501 fprintf(stderr
, "deleting %s attribute (%N) with value %#B%s failed.\n",
502 name
, configuration_attribute_type_names
, type
,
503 &blob_db
, id_pool_str
);
505 query
->destroy(query
);
511 printf("deleted %s server %H%s\n", name
, server
, id_pool_str
);
512 server
->destroy(server
);
514 else if (value_type
== VALUE_STRING
)
516 printf("deleted %s attribute (%N) with value '%.*s'%s.\n",
517 name
, configuration_attribute_type_names
, type
,
518 (int)blob_db
.len
, blob_db
.ptr
, id_pool_str
);
522 printf("deleted %s attribute (%N) with value %#B%s.\n",
523 name
, configuration_attribute_type_names
, type
,
524 &blob_db
, id_pool_str
);
527 query
->destroy(query
);
535 fprintf(stderr
, "no %s attribute (%N) was found%s.\n", name
,
536 configuration_attribute_type_names
, type
, id_pool_str
);
540 fprintf(stderr
, "no %s attribute%s was found.\n",
546 if (value_type
== VALUE_ADDR
)
548 host_t
*server
= host_create_from_chunk(AF_UNSPEC
, blob
, 0);
550 fprintf(stderr
, "the %s server %H%s was not found.\n", name
,
551 server
, id_pool_str
);
552 server
->destroy(server
);
556 fprintf(stderr
, "the %s attribute (%N) with value '%.*s'%s "
557 "was not found.\n", name
,
558 configuration_attribute_type_names
, type
,
559 (int)blob
.len
, blob
.ptr
, id_pool_str
);
567 * ipsec pool --statusattr - show all attribute entries
569 void status_attr(bool hexout
)
571 configuration_attribute_type_t type
;
572 value_type_t value_type
;
573 chunk_t value
, addr_chunk
, mask_chunk
, identity_chunk
;
574 identification_t
*identity
;
575 enumerator_t
*enumerator
;
579 int i
, identity_type
;
582 /* enumerate over all attributes */
583 enumerator
= db
->query(db
,
584 "SELECT attributes.type, attribute_pools.name, "
585 "identities.type, identities.data, attributes.value "
587 "LEFT OUTER JOIN identities "
588 "ON attributes.identity = identities.id "
589 "LEFT OUTER JOIN attribute_pools "
590 "ON attributes.pool = attribute_pools.id "
591 "ORDER BY attributes.type, attribute_pools.name, "
592 "identities.type, identities.data, attributes.value",
593 DB_INT
, DB_TEXT
, DB_INT
, DB_BLOB
, DB_BLOB
);
596 while (enumerator
->enumerate(enumerator
, &type
,&pool_name
,
597 &identity_type
, &identity_chunk
, &value
))
601 printf(" type description pool "
602 " identity value\n");
605 snprintf(type_name
, sizeof(type_name
), "%N",
606 configuration_attribute_type_names
, type
);
607 if (type_name
[0] == '(')
611 printf("%5d %-20s ",type
, type_name
);
613 printf(" %-10s ", (pool_name ? pool_name
: ""));
617 identity
= identification_create_from_encoding(identity_type
, identity_chunk
);
618 printf(" %-20.20Y ", identity
);
619 identity
->destroy(identity
);
626 value_type
= VALUE_HEX
;
629 for (i
= 0; i
< countof(attr_info
); i
++)
631 if (type
== attr_info
[i
].type
)
633 value_type
= attr_info
[i
].value_type
;
641 addr
= host_create_from_chunk(AF_UNSPEC
, value
, 0);
644 printf(" %H\n", addr
);
649 /* value cannot be represented as an IP address */
650 printf(" %#B\n", &value
);
654 if (value
.len
% UNITY_NETWORK_LEN
== 0)
656 for (i
= 0; i
< value
.len
/ UNITY_NETWORK_LEN
; i
++)
658 addr_chunk
= chunk_create(value
.ptr
+ i
*UNITY_NETWORK_LEN
, 4);
659 addr
= host_create_from_chunk(AF_INET
, addr_chunk
, 0);
660 mask_chunk
= chunk_create(addr_chunk
.ptr
+ 4, 4);
661 mask
= host_create_from_chunk(AF_INET
, mask_chunk
, 0);
662 printf("%s%H/%H", (i
> 0) ?
"," : " ", addr
, mask
);
670 /* value cannot be represented as a list of subnets */
671 printf(" %#B\n", &value
);
675 printf("\"%.*s\"\n", (int)value
.len
, value
.ptr
);
679 printf(" %#B\n", &value
);
682 enumerator
->destroy(enumerator
);
687 * ipsec pool --showattr - show all supported attribute keywords
693 for (i
= 0; i
< countof(attr_info
); i
++)
698 snprintf(value_name
, sizeof(value_name
), "%N",
699 value_type_names
, attr_info
[i
].value_type
);
701 printf("%-20s --%-6s (%N",
702 attr_info
[i
].keyword
, value_name
,
703 configuration_attribute_type_names
, attr_info
[i
].type
);
705 if (attr_info
[i
].type_ip6
)
708 configuration_attribute_type_names
, attr_info
[i
].type_ip6
);