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_dns", VALUE_ADDR
, INTERNAL_IP4_DNS
, 0 },
50 { "internal_ip6_dns", VALUE_ADDR
, INTERNAL_IP6_DNS
, 0 },
51 { "dns", VALUE_ADDR
, INTERNAL_IP4_DNS
,
53 { "internal_ip4_netmask", VALUE_ADDR
, INTERNAL_IP4_NETMASK
, 0 },
54 { "internal_ip6_netmask", VALUE_ADDR
, INTERNAL_IP6_NETMASK
, 0 },
55 { "netmask", VALUE_ADDR
, INTERNAL_IP4_NETMASK
,
56 INTERNAL_IP6_NETMASK
},
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 if (*value_type
== VALUE_NONE
)
177 *value_type
= attr_info
[i
].value_type
;
178 *type
= attr_info
[i
].type
;
179 *type_ip6
= attr_info
[i
].type_ip6
;
182 if (*value_type
!= attr_info
[i
].value_type
&&
183 *value_type
!= VALUE_HEX
)
185 switch (attr_info
[i
].value_type
)
194 text
= "an IP address";
203 fprintf(stderr
, "the %s attribute requires %s value.\n",
209 if (*value_type
== VALUE_ADDR
)
211 *type
= (addr
->get_family(addr
) == AF_INET
) ?
212 attr_info
[i
].type
: attr_info
[i
].type_ip6
;
215 if (*value_type
== VALUE_HEX
)
217 *value_type
= attr_info
[i
].value_type
;
219 if (*value_type
== VALUE_ADDR
)
223 *type
= attr_info
[i
].type
;
225 else if (blob
->len
== 16)
227 *type
= attr_info
[i
].type_ip6
;
231 fprintf(stderr
, "the %s attribute requires "
232 "a valid IP address.\n", name
);
239 *type
= attr_info
[i
].type
;
244 *type
= attr_info
[i
].type
;
253 /* is the attribute type numeric? */
254 *type
= strtol(name
, &endptr
, 10);
258 fprintf(stderr
, "the %s attribute is not recognized.\n", name
);
262 if (*type
< 1 || *type
> 32767)
264 fprintf(stderr
, "the attribute type must lie in the range 1..32767.\n");
268 if (*value_type
== VALUE_NONE
)
270 *value_type
= VALUE_HEX
;
276 * ipsec pool --addattr <type> --string|server|subnet - add attribute entry
278 void add_attr(char *name
, char *value
, value_type_t value_type
)
280 configuration_attribute_type_t type
, type_ip6
;
284 if (value_type
== VALUE_NONE
)
286 fprintf(stderr
, "the value of the %s attribute is missing.\n", name
);
290 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
294 success
= db
->execute(db
, NULL
,
295 "INSERT INTO attributes (type, value) VALUES (?, ?)",
296 DB_INT
, type
, DB_BLOB
, blob
) == 1;
301 printf("added %s attribute (%N).\n", name
,
302 configuration_attribute_type_names
, type
);
306 fprintf(stderr
, "adding %s attribute (%N) failed.\n", name
,
307 configuration_attribute_type_names
, type
);
313 * ipsec pool --delattr <type> --string|server|subnet - delete attribute entry
315 void del_attr(char *name
, char *value
, value_type_t value_type
)
317 configuration_attribute_type_t type
, type_ip6
, type_db
;
318 chunk_t blob
, blob_db
;
323 if (!parse_attributes(name
, value
, &value_type
, &type
, &type_ip6
, &blob
))
329 query
= db
->query(db
,
330 "SELECT id, type, value FROM attributes "
331 "WHERE type = ? AND value = ?",
332 DB_INT
, type
, DB_BLOB
, blob
,
333 DB_UINT
, DB_INT
, DB_BLOB
);
335 else if (type_ip6
== 0)
337 query
= db
->query(db
,
338 "SELECT id, type, value FROM attributes "
341 DB_UINT
, DB_INT
, DB_BLOB
);
345 query
= db
->query(db
,
346 "SELECT id, type, value FROM attributes "
347 "WHERE type = ? OR type = ?",
348 DB_INT
, type
, DB_INT
, type_ip6
,
349 DB_UINT
, DB_INT
, DB_BLOB
);
354 fprintf(stderr
, "deleting '%s' attribute (%N) failed.\n",
355 name
, configuration_attribute_type_names
, type
);
360 while (query
->enumerate(query
, &id
, &type_db
, &blob_db
))
362 host_t
*server
= NULL
;
366 if (value_type
== VALUE_ADDR
)
368 int family
= (type_db
== type_ip6
) ? AF_INET6
: AF_INET
;
370 server
= host_create_from_chunk(family
, blob_db
, 0);
373 if (db
->execute(db
, NULL
,
374 "DELETE FROM attributes WHERE id = ?",
379 fprintf(stderr
, "deleting %s server %H failed\n", name
, server
);
380 server
->destroy(server
);
382 else if (value_type
== VALUE_STRING
)
384 fprintf(stderr
, "deleting %s attribute (%N) with value '%.*s' failed.\n",
385 name
, configuration_attribute_type_names
, type
,
386 blob_db
.len
, blob_db
.ptr
);
391 fprintf(stderr
, "deleting %s attribute (%N) with value %#B failed.\n",
392 name
, configuration_attribute_type_names
, type
,
395 query
->destroy(query
);
401 printf("deleted %s server %H\n", name
, server
);
402 server
->destroy(server
);
404 else if (value_type
== VALUE_STRING
)
406 printf("deleted %s attribute (%N) with value '%.*s'.\n",
407 name
, configuration_attribute_type_names
, type
,
408 blob_db
.len
, blob_db
.ptr
);
412 printf("deleted %s attribute (%N) with value %#B.\n",
413 name
, configuration_attribute_type_names
, type
,
417 query
->destroy(query
);
425 fprintf(stderr
, "no %s attribute (%N) was found.\n", name
,
426 configuration_attribute_type_names
, type
);
430 fprintf(stderr
, "no %s attribute was found.\n", name
);
435 if (value_type
== VALUE_ADDR
)
437 host_t
*server
= host_create_from_chunk(AF_UNSPEC
, blob
, 0);
439 fprintf(stderr
, "the %s server %H was not found.\n", name
,
441 server
->destroy(server
);
445 fprintf(stderr
, "the %s attribute (%N) with value '%*.s' "
446 "was not found.\n", name
,
447 configuration_attribute_type_names
, type
,
458 * ipsec pool --statusattr - show all attribute entries
460 void status_attr(bool hexout
)
462 configuration_attribute_type_t type
;
463 value_type_t value_type
;
464 chunk_t value
, addr_chunk
, mask_chunk
;
465 enumerator_t
*enumerator
;
471 /* enumerate over all attributes */
472 enumerator
= db
->query(db
, "SELECT type, value FROM attributes ORDER BY type",
476 while (enumerator
->enumerate(enumerator
, &type
, &value
))
480 printf(" type description value\n");
483 snprintf(type_name
, sizeof(type_name
), "%N",
484 configuration_attribute_type_names
, type
);
485 if (type_name
[0] == '(')
489 printf("%5d %-20s ",type
, type_name
);
491 value_type
= VALUE_HEX
;
494 for (i
= 0; i
< countof(attr_info
); i
++)
496 if (type
== attr_info
[i
].type
)
498 value_type
= attr_info
[i
].value_type
;
506 addr
= host_create_from_chunk(AF_UNSPEC
, value
, 0);
509 printf(" %H\n", addr
);
514 /* value cannot be represented as an IP address */
515 printf(" %#B\n", &value
);
519 if (value
.len
% UNITY_NETWORK_LEN
== 0)
521 for (i
= 0; i
< value
.len
/ UNITY_NETWORK_LEN
; i
++)
523 addr_chunk
= chunk_create(value
.ptr
+ i
*UNITY_NETWORK_LEN
, 4);
524 addr
= host_create_from_chunk(AF_INET
, addr_chunk
, 0);
525 mask_chunk
= chunk_create(addr_chunk
.ptr
+ 4, 4);
526 mask
= host_create_from_chunk(AF_INET
, mask_chunk
, 0);
527 printf("%s%H/%H", (i
> 0) ?
"," : " ", addr
, mask
);
535 /* value cannot be represented as a list of subnets */
536 printf(" %#B\n", &value
);
540 printf("\"%.*s\"\n", value
.len
, value
.ptr
);
544 printf(" %#B\n", &value
);
547 enumerator
->destroy(enumerator
);
552 * ipsec pool --showattr - show all supported attribute keywords
558 for (i
= 0; i
< countof(attr_info
); i
++)
563 snprintf(value_name
, sizeof(value_name
), "%N",
564 value_type_names
, attr_info
[i
].value_type
);
566 printf("%-20s --%-6s (%N",
567 attr_info
[i
].keyword
, value_name
,
568 configuration_attribute_type_names
, attr_info
[i
].type
);
570 if (attr_info
[i
].type_ip6
)
573 configuration_attribute_type_names
, attr_info
[i
].type_ip6
);