diff options
author | Vladislav Grishenko <themiron@mail.ru> | 2021-04-08 01:25:03 +0500 |
---|---|---|
committer | Vladislav Grishenko <themiron@mail.ru> | 2021-04-08 01:25:03 +0500 |
commit | 3b74e1088af7b525880b386136c0330bbed377a0 (patch) | |
tree | d790468d33fcdee96b5e1a5a0007ad585d0e117b /accel-pppd/extra/ippool.c | |
parent | 0ae932e8e39a4cfc88dc2102789791e376fe21cf (diff) | |
download | accel-ppp-3b74e1088af7b525880b386136c0330bbed377a0.tar.gz accel-ppp-3b74e1088af7b525880b386136c0330bbed377a0.zip |
ippool, ipv6pool: fix iterating over circular pools
Diffstat (limited to 'accel-pppd/extra/ippool.c')
-rw-r--r-- | accel-pppd/extra/ippool.c | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/accel-pppd/extra/ippool.c b/accel-pppd/extra/ippool.c index 2b3ef3f..7a91cf4 100644 --- a/accel-pppd/extra/ippool.c +++ b/accel-pppd/extra/ippool.c @@ -332,38 +332,39 @@ static void generate_pool_net30(struct ippool_t *p) static struct ipv4db_item_t *get_ip(struct ap_session *ses) { struct ippool_item_t *it; - struct ippool_t *p; + struct ippool_t *pool, *start; if (ses->ipv4_pool_name) - p = find_pool(ses->ipv4_pool_name, 0); + pool = find_pool(ses->ipv4_pool_name, 0); else - p = def_pool; + pool = def_pool; - if (!p) + if (!pool) return NULL; -again: - spin_lock(&p->lock); - if (!list_empty(&p->items)) { - it = list_entry(p->items.next, typeof(*it), entry); - list_del(&it->entry); - } else - it = NULL; - spin_unlock(&p->lock); + start = pool; + do { + spin_lock(&pool->lock); + if (!list_empty(&pool->items)) { + it = list_entry(pool->items.next, typeof(*it), entry); + list_del(&it->entry); + } else + it = NULL; + spin_unlock(&pool->lock); - if (it) { - if (ses->ctrl->ppp) - it->it.addr = conf_gw_ip_address; - else - it->it.addr = 0; + if (it) { + if (ses->ctrl->ppp) + it->it.addr = conf_gw_ip_address; + else + it->it.addr = 0; - it->it.mask = 0; + it->it.mask = 0; - return &it->it; - } else if (p->next) { - p = p->next; - goto again; - } + return &it->it; + } + + pool = pool->next; + } while (pool && pool != start); return NULL; } @@ -639,9 +640,7 @@ static void ippool_init2(void) else if (!opt->val || strchr(opt->name, ',')) add_range(pool, &pool->tunnel_list, opt->name, generate); - if (pool == next) - log_warn("ippool: %s: same next pool\n", opt->raw); - else if (next) + if (next) pool->next = next; } } |