diff options
-rw-r--r-- | socket.c | 18 | ||||
-rw-r--r-- | socket.h | 2 |
2 files changed, 16 insertions, 4 deletions
@@ -294,13 +294,25 @@ ip_addr_dotted_quad_safe (const char *dotted_quad) } } +static bool +dns_addr_safe (const char *addr) +{ + if (addr) + { + const size_t len = strlen (addr); + return len > 0 && len <= 255 && string_class (addr, CC_ALNUM|CC_DASH|CC_DOT, 0); + } + else + return false; +} + bool -ip_or_dns_addr_safe (const char *dotted_quad, const bool allow_fqdn) +ip_or_dns_addr_safe (const char *addr, const bool allow_fqdn) { - if (ip_addr_dotted_quad_safe (dotted_quad)) + if (ip_addr_dotted_quad_safe (addr)) return true; else if (allow_fqdn) - return string_class (dotted_quad, CC_NAME|CC_DASH|CC_DOT, 0); + return dns_addr_safe (addr); else return false; } @@ -399,7 +399,7 @@ int openvpn_inet_aton (const char *dotted_quad, struct in_addr *addr); /* integrity validation on pulled options */ bool ip_addr_dotted_quad_safe (const char *dotted_quad); -bool ip_or_dns_addr_safe (const char *dotted_quad, const bool allow_fqdn); +bool ip_or_dns_addr_safe (const char *addr, const bool allow_fqdn); socket_descriptor_t create_socket_tcp (void); |