]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
network: generate random prefix from address pool
authorYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 21 Feb 2019 04:31:35 +0000 (13:31 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Fri, 1 Mar 2019 07:34:44 +0000 (16:34 +0900)
Fixes #9955.

src/network/networkd-address-pool.c

index 26c73acbb7af8cb9f85d3bfda525e68ae311824d..eaf056d11864d2625ff1c7cc3002448ee10da4d3 100644 (file)
@@ -6,6 +6,8 @@
 #include "set.h"
 #include "string-util.h"
 
+#define RANDOM_PREFIX_TRIAL_MAX  1024
+
 static int address_pool_new(
                 Manager *m,
                 AddressPool **ret,
@@ -121,35 +123,34 @@ static bool address_pool_prefix_is_taken(
 
 int address_pool_acquire(AddressPool *p, unsigned prefixlen, union in_addr_union *found) {
         union in_addr_union u;
+        unsigned i;
+        int r;
 
         assert(p);
         assert(prefixlen > 0);
         assert(found);
 
-        if (p->prefixlen > prefixlen)
+        if (p->prefixlen >= prefixlen)
                 return 0;
 
         u = p->in_addr;
-        for (;;) {
-                if (!address_pool_prefix_is_taken(p, &u, prefixlen)) {
-                        _cleanup_free_ char *s = NULL;
-                        int r;
 
-                        r = in_addr_to_string(p->family, &u, &s);
-                        if (r < 0)
-                                return r;
+        for (i = 0; i < RANDOM_PREFIX_TRIAL_MAX; i++) {
+                r = in_addr_random_prefix(p->family, &u, p->prefixlen, prefixlen);
+                if (r <= 0)
+                        return r;
 
-                        log_debug("Found range %s/%u", strna(s), prefixlen);
+                if (!address_pool_prefix_is_taken(p, &u, prefixlen)) {
+                        if (DEBUG_LOGGING) {
+                                _cleanup_free_ char *s = NULL;
+
+                                (void) in_addr_to_string(p->family, &u, &s);
+                                log_debug("Found range %s/%u", strna(s), prefixlen);
+                        }
 
                         *found = u;
                         return 1;
                 }
-
-                if (!in_addr_prefix_next(p->family, &u, prefixlen))
-                        return 0;
-
-                if (!in_addr_prefix_intersect(p->family, &p->in_addr, p->prefixlen, &u, prefixlen))
-                        return 0;
         }
 
         return 0;