]> xenbits.xensource.com Git - libvirt.git/commitdiff
util: allow calling virSocketAddrGetIPPrefix with NULL netmask or address
authorLaine Stump <laine@laine.org>
Tue, 26 Apr 2016 18:55:12 +0000 (14:55 -0400)
committerLaine Stump <laine@laine.org>
Sun, 26 Jun 2016 23:33:08 +0000 (19:33 -0400)
There are times when we don't have a netmask pointer to give to
virSocketAddrGetIPPrefix() (e.g. the IP addresses in domain interfaces
only have a prefix, no netmask), but it would have caused a segv if we
called it with NULL instead of a pointer to a netmask. This patch
qualifies the code that would use the netmask or address pointers to
check for NULL first.

src/util/virsocketaddr.c

index 12fe96a9f0d2424d643a1657ec8bfd9d2549c2c0..33b1e9e1f04e7dbc88abb135c0b6cf8c7375ec22 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009-2015 Red Hat, Inc.
+ * Copyright (C) 2009-2016 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -1026,9 +1026,9 @@ virSocketAddrGetIPPrefix(const virSocketAddr *address,
 {
     if (prefix > 0) {
         return prefix;
-    } else if (VIR_SOCKET_ADDR_VALID(netmask)) {
+    } else if (netmask && VIR_SOCKET_ADDR_VALID(netmask)) {
         return virSocketAddrGetNumNetmaskBits(netmask);
-    } else if (VIR_SOCKET_ADDR_IS_FAMILY(address, AF_INET)) {
+    } else if (address && VIR_SOCKET_ADDR_IS_FAMILY(address, AF_INET)) {
         /* Return the natural prefix for the network's ip address.
          * On Linux we could use the IN_CLASSx() macros, but those
          * aren't guaranteed on all platforms, so we just deal with
@@ -1053,7 +1053,7 @@ virSocketAddrGetIPPrefix(const virSocketAddr *address,
             return 24;
         }
         return -1;
-    } else if (VIR_SOCKET_ADDR_IS_FAMILY(address, AF_INET6)) {
+    } else if (address && VIR_SOCKET_ADDR_IS_FAMILY(address, AF_INET6)) {
         if (virSocketAddrIsWildcard(address))
             return 0;
         return 64;