1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
|
/* address pool, for libreswan
*
* addresspool management functions used with left/rightaddresspool= option.
* Currently used for IKEv1 XAUTH/ModeConfig options if we are an XAUTH server.
* And in IKEv2 to respond to Configuration Payload (CP) request.
*
* Copyright (C) 2013 Antony Antony <antony@phenome.org>
* Copyright (C) 2019-2020 Andrew Cagney
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
*/
/* Address Pools
*
* With XAUTH/CP, we need a way to allocate an address to a client.
* This address must be unique on our system.
* The pools of addresses to be used are declared in our config file.
* Each connection may specify a pool as a range of IPv4 or IPv6 addresses.
* All pools must be non-everlapping, but each pool may be
* used for more than one connection.
*/
#include "lswalloc.h"
#include "connections.h"
#include "defs.h"
#include "constants.h"
#include "addresspool.h"
#include "monotime.h"
#include "ip_address.h"
#include "ip_range.h"
#include "ip_info.h"
#include "log.h"
#include "refcnt.h"
#include "show.h"
#define SENTINEL (unsigned)-1
#define ENTRY_UNUSED (unsigned)-2
struct entry {
unsigned prev;
unsigned next;
};
static const struct entry empty_entry = {
.prev = ENTRY_UNUSED,
.next = ENTRY_UNUSED,
};
struct list {
unsigned first;
unsigned last;
unsigned nr;
};
static const struct list empty_list = {
.nr = 0,
.first = SENTINEL,
.last = SENTINEL,
};
#define IS_INSERTED(WHAT, LIST) (WHAT->LIST.prev != ENTRY_UNUSED || \
WHAT->LIST.next != ENTRY_UNUSED)
#define IS_EMPTY(WHAT, LIST) \
({ \
bool empty_ = (WHAT->LIST.nr == 0); \
if (empty_) { \
passert(WHAT->LIST.first == SENTINEL); \
passert(WHAT->LIST.last == SENTINEL); \
} else { \
passert(WHAT->LIST.first != SENTINEL); \
passert(WHAT->LIST.first < pool->nr_leases); \
passert(WHAT->LIST.last != SENTINEL); \
passert(WHAT->LIST.last < pool->nr_leases); \
} \
empty_; \
})
#define HEAD(WHAT, LIST, ENTRY) \
({ \
struct lease *result_; \
if (IS_EMPTY(WHAT, LIST)) { \
result_ = NULL; \
} else { \
result_ = &pool->leases[WHAT->LIST.first]; \
} \
result_; \
})
#define REMOVE(WHAT, LIST, ENTRY, LEASE) \
{ \
passert(IS_INSERTED(LEASE, ENTRY)); \
unsigned index = LEASE - pool->leases; \
if (WHAT->LIST.first == index) { \
WHAT->LIST.first = LEASE->ENTRY.next; \
} else { \
/* not first; must have prev */ \
passert(LEASE->ENTRY.prev != SENTINEL); \
passert(LEASE->ENTRY.prev < pool->nr_leases); \
pool->leases[LEASE->ENTRY.prev].ENTRY.next = \
LEASE->ENTRY.next; \
} \
if (WHAT->LIST.last == index) { \
WHAT->LIST.last = LEASE->ENTRY.prev; \
} else { \
/* not last; must have next */ \
passert(LEASE->ENTRY.next != SENTINEL); \
passert(LEASE->ENTRY.next < pool->nr_leases); \
pool->leases[LEASE->ENTRY.next].ENTRY.prev = \
LEASE->ENTRY.prev; \
} \
LEASE->ENTRY.next = LEASE->ENTRY.prev = ENTRY_UNUSED; \
WHAT->LIST.nr--; \
passert(!IS_INSERTED(LEASE, ENTRY)); \
}
#define FILL(WHAT, LIST, ENTRY, LEASE) \
{ \
/* empty */ \
unsigned index = LEASE - pool->leases; \
WHAT->LIST.first = WHAT->LIST.last = index; \
LEASE->ENTRY.next = LEASE->ENTRY.prev = SENTINEL; \
}
#define APPEND(WHAT, LIST, ENTRY, LEASE) \
{ \
passert(!IS_INSERTED(LEASE, ENTRY)); \
if (IS_EMPTY(WHAT, LIST)) { \
FILL(WHAT, LIST, ENTRY, LEASE); \
} else { \
unsigned index = LEASE - pool->leases; \
unsigned old_last = WHAT->LIST.last; \
LEASE->ENTRY.next = SENTINEL; \
LEASE->ENTRY.prev = old_last; \
pool->leases[old_last].ENTRY.next = index; \
WHAT->LIST.last = index; \
} \
WHAT->LIST.nr++; \
passert(IS_INSERTED(LEASE, ENTRY)); \
}
#define PREPEND(WHAT, LIST, ENTRY, LEASE) \
{ \
passert(!IS_INSERTED(LEASE, ENTRY)); \
if (IS_EMPTY(WHAT, LIST)) { \
/* empty */ \
FILL(WHAT, LIST, ENTRY, LEASE); \
} else { \
unsigned index = LEASE - WHAT->leases; \
unsigned old_first = WHAT->LIST.first; \
LEASE->ENTRY.next = old_first; \
LEASE->ENTRY.prev = SENTINEL; \
pool->leases[old_first].ENTRY.prev = index; \
WHAT->LIST.first = index; \
} \
WHAT->LIST.nr++; \
passert(IS_INSERTED(LEASE, ENTRY)); \
}
/*
* A pool is a range of IP addresses to be individually allocated.
* A connection may have a pool.
* That pool may be shared with other connections (hence the reference count).
*
* A pool has a linked list of leases.
*/
struct lease {
co_serial_t assigned_to; /* ALWAYS 1:1 */
struct entry free_entry;
struct entry reusable_entry;
char *reusable_name;
struct list reusable_bucket;
};
struct addresspool {
struct refcnt refcnt;
ip_range r;
uint32_t size; /* number of addresses within range */
unsigned nr_reusable;
struct list free_list;
unsigned nr_in_use; /* active */
/* --- .free.nr + .nr_in_use --- */
unsigned nr_leases; /* nr elements in leases array */
/*
* An array of leases with NR_LEASES elements. Entry A is for
* address r.start+A.
*/
struct lease *leases;
struct addresspool *next; /* next pool */
};
static struct addresspool *pluto_pools = NULL;
ip_range addresspool_range(struct addresspool *pool)
{
return pool->r;
}
static void free_lease_content(struct lease *lease)
{
pfreeany(lease->reusable_name);
lease->assigned_to = SOS_NOBODY;
}
static unsigned hasher(const char *name)
{
/*
* 251 is a prime close to 256 (so like <<8).
*
* There's no real rationale for doing this.
*/
unsigned hash = 0;
for (const char *c = name; *c; c++) {
hash = hash * 251 + (uint8_t) *c;
}
return hash;
}
static struct lease *lease_id_bucket(struct addresspool *pool, const char *name)
{
unsigned hash = hasher(name);
return &pool->leases[hash % pool->nr_leases];
}
static void hash_lease_id(struct addresspool *pool, struct lease *lease)
{
struct lease *bucket = lease_id_bucket(pool, lease->reusable_name);
APPEND(bucket, reusable_bucket, reusable_entry, lease);
pool->nr_reusable++;
}
static void unhash_lease_id(struct addresspool *pool, struct lease *lease)
{
struct lease *bucket = lease_id_bucket(pool, lease->reusable_name);
REMOVE(bucket, reusable_bucket, reusable_entry, lease);
pool->nr_reusable--;
}
static err_t pool_lease_to_address(const struct addresspool *pool, const struct lease *lease,
ip_address *address)
{
return range_offset_to_address(pool->r, lease - pool->leases, address);
}
PRINTF_LIKE(4)
static void vdbg_pool(struct verbose verbose,
const struct addresspool *pool,
struct connection *c,
const char *format, ...)
{
LDBGP_JAMBUF(DBG_BASE, verbose.logger, buf) {
jam(buf, PRI_VERBOSE, pri_verbose);
jam(buf, "pool ");
jam_range(buf, &pool->r);
if (c != NULL) {
jam_connection(buf, c);
jam_string(buf, " ");
}
jam(buf, ": ");
va_list args;
va_start(args, format);
jam_va_list(buf, format, args);
va_end(args);
jam(buf, "; pool-refcount %u size %u leases %u in-use %u free %u reusable %u",
refcnt_peek(pool, verbose.logger),
pool->size, pool->nr_leases,
pool->nr_in_use, pool->free_list.nr, pool->nr_reusable);
}
}
PRINTF_LIKE(5)
static void vdbg_lease(struct verbose verbose,
const struct addresspool *pool,
const struct lease *lease,
const struct connection *c,
const char *format, ...)
{
LDBGP_JAMBUF(DBG_BASE, verbose.logger, buf) {
jam(buf, PRI_VERBOSE, pri_verbose);
jam(buf, "pool ");
jam_range(buf, &pool->r);
jam(buf, " lease ");
if (c != NULL) {
jam_connection(buf, c);
jam_string(buf, " ");
}
ip_address addr;
err_t err = pool_lease_to_address(pool, lease, &addr);
if (err != NULL) {
jam(buf, "["PEXPECT_PREFIX"%s]", err);
}
jam_address(buf, &addr);
if (lease->assigned_to != COS_NOBODY) {
jam(buf, " "PRI_CO, pri_co(lease->assigned_to));
} else {
jam(buf, " unassigned");
}
jam(buf, ": ");
va_list args;
va_start(args, format);
jam_va_list(buf, format, args);
va_end(args);
jam(buf, "; leases %u in-use %u free %u reusable %u",
pool->nr_leases, pool->nr_in_use,
pool->free_list.nr, pool->nr_reusable);
}
}
static void scribble_remote_lease(struct connection *c, ip_address ia,
unsigned assigned_nr,
struct logger *logger, where_t where)
{
/* assign the lease */
const struct ip_info *afi = address_info(ia);
c->remote->child.lease[afi->ip_index] = ia;
set_child_has_client(c, remote, true);
/* update the selectors */
ip_selector selector = selector_from_address(ia);
struct child_end_selectors *remote_selectors = &c->remote->child.selectors;
if (!PEXPECT_WHERE(logger, where, assigned_nr < elemsof(remote_selectors->assigned))) {
return;
}
remote_selectors->assigned[assigned_nr] = selector;
/* keep IPv[46] table in sync */
remote_selectors->proposed.ip[afi->ip_index].len = 1;
remote_selectors->proposed.ip[afi->ip_index].list = &remote_selectors->assigned[assigned_nr];
selector_buf nb;
ldbg(c->logger, "%s() remote.child.selectors.assigned[%d] %s "PRI_WHERE,
__func__,
assigned_nr,
str_selector(&selector, &nb),
pri_where(where));
}
/*
* A lease is an assignment of a single address from a particular pool.
*
* Leases are shared between appropriate connections.
*
* Because leases are shared, they are reference-counted.
* (Since we don't (yet?) free leases that could be shared,
* we don't actually need reference counting.)
*
* When a lease ends, if it could not be shared, it is freed.
* Otherwise it "lingers" so that the same client (based on ID) can later
* be assigned the same address from the pool.
*
* In the future we may implement code to delete a lingering lease to free
* the address if there is no free address in the pool.
*
* Life cycle:
*
* - created by lease_an_address if an existing or lingering lease for the
* same thatid isn't found.
*
* - released (to linger or freed) by rel_lease_addr.
*
* - current code never frees a lease that could be shared.
* ??? This constitutes a leak.
*/
static bool client_can_reuse_lease(const struct connection *c)
{
/*
* Cannot share with clients that can authenticate using PSK -
* it either uses GroupID or a non-unique ID_IP* due to
* clients using pre-NAT IP address
*/
if (c->remote->host.config->authby.psk ||
c->remote->host.config->auth == AUTH_PSK)
return false;
/*
* Cannot share with clients that can authenticate using NULL.
* Just a bad idea.
*/
if (c->remote->host.config->authby.null ||
c->remote->host.config->auth == AUTH_NULL)
return false;
/* Cannot share NULL/NONE ID. Also cannot share ID_IP* due to NAT and dynamic IP */
if (c->remote->host.id.kind == ID_NULL ||
c->remote->host.id.kind == ID_NONE ||
c->remote->host.id.kind == ID_IPV4_ADDR ||
c->remote->host.id.kind == ID_IPV6_ADDR)
return false;
/* If uniqueids=false - this can mean multiple clients on the same ID & CERT */
if (!uniqueIDs)
return false;
return true;
}
/*
* If the connection has the lease, return it.
*
* Assuming that the connection things it has a lease, need to check
* that it still does (it may have been stolen by a newer connection
* with the same ID).
*/
static struct lease *connection_lease(struct connection *c,
const struct ip_info *afi,
struct verbose verbose)
{
/*
* No point looking for a lease when the connection doesn't
* think it has one.
*/
if (!pexpect(c->remote->child.lease[afi->ip_index].is_set)) {
return NULL;
}
struct addresspool *pool = c->pool[afi->ip_index];
/*
* "i" is index of client.addr within pool's range.
*
* Using unsigned arithmetic means that if client.addr is less
* than start, it will wrap around to a very large value.
* Therefore a single test against size will indicate
* membership in the range.
*/
ip_address prefix = c->remote->child.lease[afi->ip_index];
uintmax_t offset;
err_t err = address_to_range_offset(pool->r, prefix, &offset);
if (err != NULL) {
llog_pexpect(verbose.logger, HERE, "offset of address in range failed: %s", err);
return NULL;
}
passert(pool->nr_leases <= pool->size);
passert(offset < pool->nr_leases);
struct lease *lease = &pool->leases[offset];
/*
* Has the lease been "stolen" by a newer connection instance
* with the same ID?
*/
if (lease->assigned_to > c->serialno) {
vdbg_lease(verbose, pool, lease, NULL, "stolen by "PRI_CO, pri_co(lease->assigned_to));
return NULL;
}
/*
* The lease is still assigned to this connection instance (if
* it weren't the connection wouldn't have .has_lease).
*/
if (!pexpect(lease->assigned_to == c->serialno)) {
return NULL;
}
return lease;
}
/*
* mark a lease as ended.
*
* If the ID is distinctive and uniqueid is set, the lease "lingers"
* so that the same client can be reassigned the same address.
* A lingering lease is available to be re-activated
* by lease_an_address/find_lingering_lease to the same thatid when uniqueid is
* set.
*
* If uniqueIDs is set or thatid is ID_NONE, we don't know how to share.
* In that case, we do free the lease since that ID isn't distinctive.
*/
void free_that_address_lease(struct connection *c,
const struct ip_info *afi,
struct logger *logger)
{
VERBOSE_DBGP(DBG_BASE, logger, "freeing peer %s lease", afi->ip_name);
if (!c->remote->child.lease[afi->ip_index].is_set) {
vdbg("connection has no %s lease", afi->ip_name);
return;
}
struct lease *lease = connection_lease(c, afi, verbose);
if (lease == NULL) {
vdbg("connection lost its %s lease", afi->ip_name);
c->remote->child.lease[afi->ip_index] = unset_address;
return;
}
struct addresspool *pool = c->pool[afi->ip_index];
if (lease->reusable_name != NULL) {
/* the lease is reusable, leave it lingering */
APPEND(pool, free_list, free_entry, lease);
pool->nr_in_use--;
vdbg_lease(verbose, pool, lease, c,
"lingering reusable lease '%s' left lingering",
lease->reusable_name);
} else {
/* cannot share: free it */
PREPEND(pool, free_list, free_entry, lease);
pool->nr_in_use--;
vdbg_lease(verbose, pool, lease, c,
"returning one-time lease");
}
/* break the link */
c->remote->child.lease[afi->ip_index] = unset_address;
lease->assigned_to = COS_NOBODY;
}
/*
* return previous lease if there is one lingering for the same ID
*/
static struct lease *recover_lease(const struct connection *c, const char *that_name,
const struct ip_info *afi,
struct verbose verbose)
{
struct addresspool *pool = c->pool[afi->ip_index];
if (pool->nr_leases == 0) {
return NULL;
}
struct lease *bucket = lease_id_bucket(pool, that_name);
if (IS_EMPTY(bucket, reusable_bucket)) {
return NULL;
}
struct lease *lease;
for (unsigned current = bucket->reusable_bucket.first;
current != SENTINEL; current = lease->reusable_entry.next) {
passert(current < pool->nr_leases);
lease = &pool->leases[current];
passert(lease->reusable_name != NULL);
if (streq(that_name, lease->reusable_name)) {
if (IS_INSERTED(lease, free_entry)) {
/* unused */
REMOVE(pool, free_list, free_entry, lease);
pexpect(lease->assigned_to == COS_NOBODY);
pool->nr_in_use++;
vdbg_lease(verbose, pool, lease, c,
"recovered using '%s'; was on free-list",
that_name);
} else {
/* still assigned to older connection
* instance */
pexpect(lease->assigned_to < c->serialno);
vdbg_lease(verbose, pool, lease, c,
"recovered using '%s'; was in use by "PRI_CO,
that_name, pri_co(lease->assigned_to));
}
return lease;
}
}
return NULL;
}
static err_t grow_addresspool(struct addresspool *pool,
struct verbose verbose)
{
/* try to grow the address pool */
if (pool->nr_leases >= pool->size) {
vdbg_pool(verbose, pool, NULL, "address pool exhausted: %u >= %u",
pool->nr_leases, pool->size);
return "address pool exhausted";
}
unsigned old_nr_leases = pool->nr_leases;
if (pool->nr_leases == 0) {
pool->nr_leases = min(1U, pool->size);
} else {
pool->nr_leases = min(pool->nr_leases * 2, pool->size);
}
realloc_things(pool->leases, old_nr_leases, pool->nr_leases, "leases");
range_buf rb;
llog(RC_LOG, verbose.logger, "pool %s: growing address pool from %u to %u",
str_range(&pool->r, &rb), old_nr_leases, pool->nr_leases);
/* initialize new leases (and add to free list) */
for (unsigned l = old_nr_leases; l < pool->nr_leases; l++) {
struct lease *lease = &pool->leases[l];
/*
* Danger: must initialize entire
* struct as resize_things(), which
* may use realloc(), can leave the
* data uninitialized.
*/
*lease = (struct lease) {
.free_entry = empty_entry,
.reusable_entry = empty_entry,
.reusable_bucket = empty_list,
};
PREPEND(pool, free_list, free_entry, lease);
}
/* destroy existing hash table */
for (unsigned l = 0; l < old_nr_leases; l++) {
struct lease *lease = &pool->leases[l];
lease->reusable_entry = empty_entry;
lease->reusable_bucket = empty_list;
}
/* build a new hash table containing old */
pool->nr_reusable = 0;
for (unsigned l = 0; l < old_nr_leases; l++) {
struct lease *lease = &pool->leases[l];
if (lease->reusable_name != NULL) {
hash_lease_id(pool, lease);
}
}
return NULL;
}
/*
* Remove a lease from the .free_list which has the effect of making
* it in-use.
*
* When (*NEW_OWNER), steal the value, setting .reusable_name (and
* update hash table).
*
* Note: this only updates the lease. The caller still needs to
* assign the lease to the connection.
*/
static bool unfree_lease(struct addresspool *pool,
char **new_owner,
struct lease *new_lease,
struct verbose verbose)
{
bool stolen = false;
REMOVE(pool, free_list, free_entry, new_lease);
pool->nr_in_use++;
/* unhash before freeing */
if (new_lease->reusable_name != NULL) {
/* oops; takeing over this lingering lease */
vdbg_lease(verbose, pool, new_lease, NULL,
"stealing reusable lease from '%s'",
new_lease->reusable_name);
unhash_lease_id(pool, new_lease);
stolen = true;
}
free_lease_content(new_lease);
if ((*new_owner) != NULL) {
/* steal reference */
new_lease->reusable_name = (*new_owner);
(*new_owner) = NULL;
hash_lease_id(pool, new_lease);
}
return stolen;
}
/*
* returns ERR_T when something fatal happens, else leaves NEW_LEASE
* NULL when lease can't be assigned.
*/
static err_t assign_requested_lease(struct connection *c,
struct addresspool *pool,
char **reusable_id,
const ip_address *lease_address,
struct lease **new_lease,
const char **story,
struct verbose verbose)
{
address_buf lab;
vdbg("assigning the requested lease %s",
str_address_sensitive(lease_address, &lab));
verbose.level++;
/*
* Determine the requested LEASE_ADDRESS's offset into the
* address pool.
*
* Earlier code has checked that the LEASE_ADDRESS is within
* the address pool's range, hence pexpect.
*/
uintmax_t offset;
err_t err = address_to_range_offset(pool->r, (*lease_address), &offset);
if (err != NULL) {
llog_pexpect(verbose.logger, HERE, "offset of address in range failed: %s", err);
return "confused, address should be within addresspool";
}
vassert(pool->nr_leases <= pool->size);
vassert(offset < pool->size); /* by above */
if (offset < pool->nr_leases) {
/*
* Is the lease available?
*
* IKEv1: must fail as Quick Mode has no way to send
* back an alternative lease.
*
* IKEv2: should not fail, instead the proposed lease
* should be ignored and a new one assigned.
*
* Later.
*/
struct lease *lease = &pool->leases[offset];
if (lease->assigned_to != COS_NOBODY) {
vdbg_lease(verbose, pool, lease, c, "owned by "PRI_CO,
pri_co(lease->assigned_to));
return "lease address is in use";
}
if (lease->reusable_name != NULL) {
vdbg_lease(verbose, pool, lease, c, "owned by "PRI_CO,
pri_co(lease->assigned_to));
return "lease address is reserved";
}
/*
* This returns true when the lease had a previous
* owner and the story needs to be updated.
*/
if (vbad(unfree_lease(pool, reusable_id, lease, verbose))) {
return "confused, unreserved lease was stolen";
}
vassert((*reusable_id) == NULL); /* ownership transfered to lease */
(*new_lease) = lease;
(*story) = "request available";
return NULL;
}
/* grow the lease if necessary */
while (offset >= pool->nr_leases) {
grow_addresspool(pool, verbose);
}
vassert(offset < pool->nr_leases);
struct lease *lease = &pool->leases[offset];
if (!pexpect(lease->assigned_to == COS_NOBODY)) {
return "confused, just allocated lease in use";
}
/* fresh lease can't have previous owner */
if (vbad(unfree_lease(pool, reusable_id, lease, verbose))) {
return "confused, just allocated lease was stolen";
}
vassert((*reusable_id) == NULL); /* ownership transfered to lease */
(*new_lease) = lease;
(*story) = "request grown";
return NULL;
}
err_t assign_remote_lease(struct connection *c,
const char *xauth_username,
const struct ip_info *afi,
const ip_address *lease_address,
struct logger *logger)
{
VERBOSE_DBGP(DBG_BASE, logger, "%s() xauth=%s family=%s",
__func__, (xauth_username == NULL ? "n/a" : xauth_username),
afi->ip_name);
if (c->remote->child.lease[afi->ip_index].is_set &&
connection_lease(c, afi, verbose) != NULL) {
ldbg(logger, "connection both thinks it has, and really has a lease");
return NULL;
}
struct addresspool *pool = c->pool[afi->ip_index];
if (PBAD(logger, pool == NULL)) {
return "confused, no address pool";
}
unsigned next_lease_nr = nr_child_leases(c->remote);
/*
* When the lease is reusable generate a unique ID by
* conbining the ID (from IKE_AUTH et.al.) with the
* XAUTH_USERNAME (from XAUTH) so that, when when a shared ID
* is used with XAUTH the result is still unique.
*/
char *reusable_id = NULL;
if (client_can_reuse_lease(c)) {
id_buf remote_idb; /* same scope as remote_id */
const char *remote_id = str_id(&c->remote->host.id, &remote_idb);
reusable_id = alloc_printf("%s%s", remote_id, (xauth_username != NULL ? xauth_username : ""));
}
vdbg_pool(verbose, pool, c,
"requesting lease with reusable ID '%s'",
(reusable_id == NULL ? "" : reusable_id));
struct lease *new_lease = NULL;
const char *story = NULL;
/*
* Using the mangled ID (THATSTR), see of there is an existing
* lease.
*/
if (new_lease == NULL && reusable_id != NULL) {
new_lease = recover_lease(c, reusable_id, afi, verbose);
if (new_lease != NULL) {
story = "recovered";
pfreeany(reusable_id); /* not needed */
}
}
/*
* If the peer's given a prefered address try to assign that.
*/
if (new_lease == NULL && is_set(lease_address)) {
err_t e = assign_requested_lease(c, pool, &reusable_id, lease_address,
&new_lease, &story, verbose);
if (e != NULL) {
pfreeany(reusable_id);
return e;
}
}
/*
* Allocate the next lease from the free list; if necessary,
* grow the pool.
*/
if (new_lease == NULL) {
if (IS_EMPTY(pool, free_list)) {
err_t e = grow_addresspool(pool, verbose);
if (e != NULL) {
pfreeany(reusable_id);
return e;
}
}
/* grab the next lease on the free list */
new_lease = HEAD(pool, free_list, free_entry);
vassert(new_lease != NULL);
story = (unfree_lease(pool, &reusable_id, new_lease, verbose)
? "stolen"
: "unused");
vassert(reusable_id == NULL); /* stolen */
}
/*
* No lease (above should have returned), but play save.
*/
if (vbad(new_lease == NULL)) {
pfreeany(reusable_id);
return "confused, no lease";
}
if (vbad(story == NULL)) {
return "confused, no story";
}
if (vbad(reusable_id != NULL)) {
return "confused, leaking memory";
}
/*
* Convert the leases offset into range, into an IP_address.
*/
ip_address ia;
err_t err = pool_lease_to_address(pool, new_lease, &ia);
if (err != NULL) {
llog_pexpect(logger, HERE, "%s", err);
return "confused, bad address";
}
/* assign and back link */
scribble_remote_lease(c, ia, next_lease_nr, logger, HERE);
new_lease->assigned_to = c->serialno;
address_buf ab;
vdbg_lease(verbose, pool, new_lease, c,
"assign %s lease to "PRI_CO" with reusable ID '%s' and that.lease %s",
story,
pri_co(new_lease->assigned_to),
(new_lease->reusable_name == NULL ? "" : new_lease->reusable_name),
str_address(&ia, &ab));
return NULL;
}
void addresspool_delref(struct addresspool **poolparty, struct logger *logger)
{
VERBOSE_DBGP(DBG_BASE, logger, "releasing address pool");
struct addresspool *pool = delref_where(poolparty, verbose.logger, HERE);
if (pool != NULL) {
for (struct addresspool **pp = &pluto_pools; *pp != NULL; pp = &(*pp)->next) {
if (*pp == pool) {
*pp = pool->next; /* unlink pool */
for (unsigned l = 0; l < pool->nr_leases; l++) {
free_lease_content(&pool->leases[l]);
}
pfreeany(pool->leases);
pfree(pool);
return;
}
}
vdbg_pool(verbose, pool, NULL, "pool %p not found in list of pools", pool);
}
}
struct addresspool *addresspool_addref(struct addresspool *pool)
{
return addref_where(pool, HERE);
}
/*
* Finds an ip_pool that has exactly matching bounds.
*
* If POOL_RANGE exactly matches an existing address pool, return NULL
* and set *POOL.
*
* If POOL_RANGE overlaps an existing pool return a diagnostic
* describing the existing pool's conflict (i.e., assume caller will
* include the new pool), and *POOL=NULL.
*
* Otherwise (nothing matches), return NULL and *POOL=NULL.
*/
static diag_t find_addresspool(const ip_range pool_range, struct addresspool **pool)
{
struct addresspool *h;
*pool = NULL; /* nothing found (yet) */
for (h = pluto_pools; h != NULL; h = h->next) {
if (range_eq_range(pool_range, h->r)) {
/* exact match */
*pool = h;
return NULL;
}
if (range_overlaps_range(pool_range, h->r)) {
/* bad */
range_buf hbuf;
return diag("range inexactly overlaps existing address pool %s",
str_range(&h->r, &hbuf));
}
}
return NULL;
}
/*
* Create an address pool for POOL_RANGE. Reject invalid ranges.
*/
diag_t install_addresspool(const ip_range pool_range,
struct addresspool *addresspool[],
struct logger *logger)
{
range_buf rb;
VERBOSE_DBGP(DBG_BASE, logger, "installing address pool %s",
str_range(&pool_range, &rb));
/* can't be empty */
uintmax_t pool_size = range_size(pool_range);
if (pool_size == 0) {
/*
* Minimum address pool size is 1, so can't happen
* (unless caller fed us an invalid address pool).
*/
range_buf rb;
llog_pexpect(logger, HERE, "address pool %s is empty",
str_range(&pool_range, &rb));
return diag("confused, address pool is empty");
}
if (pool_size >= UINT32_MAX) {
/*
* POOL_SIZE is truncated to UINTMAX_MAX when there's
* major overflow. Hence, it's value isn't always
* correct.
*
* uint32_t overflow, 2001:db8:0:3::/64 truncated to UINT32_MAX
* uint32_t overflow, 2001:db8:0:3:1::/96, truncated by 1
*/
humber_buf psb;
pool_size = UINT32_MAX;
llog(RC_LOG, logger, "warning: limiting the address pool %s to %s addresses",
str_range(&pool_range, &rb),
str_humber(pool_size, &psb));
}
/* can't start at 0 */
ip_address start = range_start(pool_range);
if (!address_is_specified(start)) {
range_buf rb;
return diag("address pool %s starts at address zero",
str_range(&pool_range, &rb));
}
/* can't overlap or duplicate */
struct addresspool *existing_pool = NULL;
diag_t d = find_addresspool(pool_range, &existing_pool);
if (d != NULL) {
return d;
}
const struct ip_info *afi = range_info(pool_range);
if (addresspool[afi->ip_index] != NULL) {
llog_pexpect(verbose.logger, HERE,
"connection already has a %s address pool", afi->ip_name);
return diag("confused, connection has an address pool");
}
if (existing_pool != NULL) {
/* re-use existing pool */
vdbg_pool(verbose, existing_pool, NULL, "reusing existing address pool@%p", existing_pool);
addresspool[afi->ip_index] = addresspool_addref(existing_pool);
return NULL;
}
/* make a new pool */
struct addresspool *new_pool = refcnt_alloc(struct addresspool, HERE);
new_pool->r = pool_range;
new_pool->size = pool_size;
new_pool->nr_in_use = 0;
new_pool->nr_leases = 0;
new_pool->free_list = empty_list;
new_pool->leases = NULL;
/* insert at front */
new_pool->next = pluto_pools;
pluto_pools = new_pool;
vdbg_pool(verbose, new_pool, NULL, "creating new address pool@%p", new_pool);
addresspool[afi->ip_index] = new_pool;
return NULL;
}
void show_addresspool_status(struct show *s)
{
show_separator(s);
#define CHECK(A, B) \
if ((A) != (B)) { \
llog_pexpect(show_logger(s), HERE, \
"" #A " (%u) does not match " #B " (%u)", \
A, B); \
}
for (struct addresspool *pool = pluto_pools;
pool != NULL; pool = pool->next) {
range_buf rb;
show(s, "address pool %s: %u addresses, %u leases, %u in-use, %u free (%u reusable)",
str_range(&pool->r, &rb),
pool->size, pool->nr_leases, pool->nr_in_use,
pool->free_list.nr,
pool->nr_reusable);
unsigned nr_free = 0;
unsigned nr_reusable_entries = 0;
unsigned nr_reusable_names = 0;
for (unsigned l = 0; l < pool->nr_leases; l++) {
struct lease *lease = &pool->leases[l];
ip_address lease_ip;
err_t err = pool_lease_to_address(pool, lease, &lease_ip);
if (err != NULL) {
llog_pexpect(show_logger(s), HERE, "%s", err);
}
address_buf lease_ipb;
const char *lease_str = str_address(&lease_ip, &lease_ipb);
struct connection *c = connection_by_serialno(lease->assigned_to);
nr_free += IS_INSERTED(lease, free_entry) ? 1 : 0;
nr_reusable_entries += IS_INSERTED(lease, reusable_entry) ? 1 : 0;
nr_reusable_names += lease->reusable_name != NULL ? 1 : 0;
{
/* fudge indent so show*() calls are aligned */
show(s, " %*s %s "PRI_CO" %s%s",
(int)strlen(lease_str), lease_str,
IS_INSERTED(lease, free_entry) ? "free" : "assigned to",
pri_co(lease->assigned_to),
lease->reusable_name != NULL ? " " : "",
lease->reusable_name != NULL ? lease->reusable_name : "");
}
if (c != NULL) {
connection_buf cb;
show(s, " %*s "PRI_CONNECTION,
(int)strlen(lease_str), "",
pri_connection(c, &cb));
} else {
show(s, " %*s connection "PRI_CO" does not exist",
(int)strlen(lease_str), "",
pri_co(lease->assigned_to));
}
CHECK(IS_INSERTED(lease, reusable_entry), lease->reusable_name != NULL);
}
CHECK(pool->nr_leases, pool->nr_in_use + pool->free_list.nr);
CHECK(nr_free, pool->free_list.nr);
CHECK(nr_reusable_entries, pool->nr_reusable);
CHECK(nr_reusable_names, pool->nr_reusable);
#undef CHECK
}
}
|