]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - support/export/client.c
libexport.a: Add documenting comments
[nfs-utils.git] / support / export / client.c
index 3884795c0f58e12147ec443947753ad620c9961c..dc0106767a4d5cc64eaa424cba80f71d461c2589 100644 (file)
@@ -6,15 +6,18 @@
  * Copyright (C) 1995, 1996 Olaf Kirch <okir@monad.swb.de>
  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 
 #include <sys/types.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <stdlib.h>
 #include <string.h>
+#include <ctype.h>
 #include <netdb.h>
-#include "xmalloc.h"
+
 #include "misc.h"
 #include "nfslib.h"
 #include "exportfs.h"
 #if !defined(__GLIBC__) || __GLIBC__ < 2
 extern int     innetgr(char *netgr, char *host, char *, char *);
 #endif
-static void    client_init(nfs_client *clp, const char *hname,
-                                       struct hostent *hp);
-static int     client_checkaddr(nfs_client *clp, struct in_addr addr);
+
+static char    *add_name(char *old, const char *add);
 
 nfs_client     *clientlist[MCL_MAXTYPES] = { NULL, };
 
 
-/* if canonical is set, then we *know* this is already a canonical name
- * so hostname lookup is avoided.
- * This is used when reading /proc/fs/nfs/exports
+static void
+init_addrlist(nfs_client *clp, const struct addrinfo *ai)
+{
+       int i;
+
+       if (ai == NULL)
+               return;
+
+       for (i = 0; (ai != NULL) && (i < NFSCLNT_ADDRMAX); i++) {
+               set_addrlist(clp, i, ai->ai_addr);
+               ai = ai->ai_next;
+       }
+
+       clp->m_naddr = i;
+}
+
+static void
+client_free(nfs_client *clp)
+{
+       free(clp->m_hostname);
+       free(clp);
+}
+
+static int
+init_netmask(nfs_client *clp, const char *slash)
+{
+       struct sockaddr_in sin = {
+               .sin_family             = AF_INET,
+       };
+
+       if (strchr(slash + 1, '.') != NULL)
+               sin.sin_addr.s_addr = inet_addr(slash + 1);
+       else {
+               int prefixlen = atoi(slash + 1);
+               if (0 < prefixlen && prefixlen <= 32)
+                       sin.sin_addr.s_addr =
+                                       htonl((uint32_t)~0 << (32 - prefixlen));
+               else
+                       goto out_badprefix;
+       }
+
+       set_addrlist_in(clp, 1, &sin);
+       return 1;
+
+out_badprefix:
+       xlog(L_ERROR, "Invalid prefix `%s' for %s", slash + 1, clp->m_hostname);
+       return 0;
+}
+
+static int
+init_subnetwork(nfs_client *clp)
+{
+       struct sockaddr_in sin = {
+               .sin_family             = AF_INET,
+       };
+       static char slash32[] = "/32";
+       char *cp;
+
+       cp = strchr(clp->m_hostname, '/');
+       if (cp == NULL)
+               cp = slash32;
+
+       *cp = '\0';
+       sin.sin_addr.s_addr = inet_addr(clp->m_hostname);
+       set_addrlist_in(clp, 0, &sin);
+       *cp = '/';
+
+       return init_netmask(clp, cp);
+}
+
+static int
+client_init(nfs_client *clp, const char *hname, const struct addrinfo *ai)
+{
+       clp->m_hostname = strdup(hname);
+       if (clp->m_hostname == NULL)
+               return 0;
+
+       clp->m_exported = 0;
+       clp->m_count = 0;
+       clp->m_naddr = 0;
+
+       if (clp->m_type == MCL_SUBNETWORK)
+               return init_subnetwork(clp);
+
+       init_addrlist(clp, ai);
+       return 1;
+}
+
+static void
+client_add(nfs_client *clp)
+{
+       nfs_client **cpp;
+
+       cpp = &clientlist[clp->m_type];
+       while (*cpp != NULL)
+               cpp = &((*cpp)->m_next);
+       clp->m_next = NULL;
+       *cpp = clp;
+}
+
+/**
+ * client_lookup - look for @hname in our list of cached nfs_clients
+ * @hname: '\0'-terminated ASCII string containing hostname to look for
+ * @canonical: if set, @hname is known to be canonical DNS name
+ *
+ * Returns pointer to a matching or freshly created nfs_client.  NULL
+ * is returned if some problem occurs.
  */
 nfs_client *
 client_lookup(char *hname, int canonical)
 {
        nfs_client      *clp = NULL;
        int             htype;
-       struct hostent  *hp = NULL;
+       struct addrinfo *ai = NULL;
 
        htype = client_gettype(hname);
 
        if (htype == MCL_FQDN && !canonical) {
-               struct hostent *hp2;
-               hp = gethostbyname(hname);
-               if (hp == NULL || hp->h_addrtype != AF_INET) {
-                       xlog(L_ERROR, "%s has non-inet addr", hname);
-                       return NULL;
+               ai = host_addrinfo(hname);
+               if (!ai) {
+                       xlog(L_ERROR, "Failed to resolve %s", hname);
+                       goto out;
                }
-               /* make sure we have canonical name */
-               hp2 = hostent_dup(hp);
-               hp = gethostbyaddr(hp2->h_addr, hp2->h_length,
-                                  hp2->h_addrtype);
-               if (hp) {
-                       hp = hostent_dup(hp);
-                       /* but now we might not have all addresses... */
-                       if (hp2->h_addr_list[1]) {
-                               struct hostent *hp3 =
-                                       gethostbyname(hp->h_name);
-                               if (hp3) {
-                                       free(hp);
-                                       hp = hostent_dup(hp3);
-                               }
-                       }
-                       free(hp2);
-               } else
-                       hp = hp2;
-
-               hname = (char *) hp->h_name;
+               hname = ai->ai_canonname;
 
-               for (clp = clientlist[htype]; clp; clp = clp->m_next) {
-                       if (client_check(clp, hp))
+               for (clp = clientlist[htype]; clp; clp = clp->m_next)
+                       if (client_check(clp, ai))
                                break;
-               }
        } else {
                for (clp = clientlist[htype]; clp; clp = clp->m_next) {
                        if (strcasecmp(hname, clp->m_hostname)==0)
@@ -84,106 +169,60 @@ client_lookup(char *hname, int canonical)
                }
        }
 
-       if (!clp) {
-               clp = (nfs_client *) xmalloc(sizeof(*clp));
-               memset(clp, 0, sizeof(*clp));
+       if (clp == NULL) {
+               clp = calloc(1, sizeof(*clp));
+               if (clp == NULL)
+                       goto out;
                clp->m_type = htype;
-               client_init(clp, hname, NULL);
+               if (!client_init(clp, hname, NULL)) {
+                       client_free(clp);
+                       clp = NULL;
+                       goto out;
+               }
                client_add(clp);
        }
 
-       if (htype == MCL_FQDN && clp->m_naddr == 0 && hp != NULL) {
-               char    **ap = hp->h_addr_list;
-               int     i;
-
-               for (i = 0; *ap && i < NFSCLNT_ADDRMAX; i++, ap++)
-                       clp->m_addrlist[i] = *(struct in_addr *)*ap;
-               clp->m_naddr = i;
-       }
-
-       if (hp)
-               free (hp);
+       if (htype == MCL_FQDN && clp->m_naddr == 0)
+               init_addrlist(clp, ai);
 
+out:
+       freeaddrinfo(ai);
        return clp;
 }
 
+/**
+ * client_dup - create a copy of an nfs_client
+ * @clp: pointer to nfs_client to copy
+ * @ai: pointer to addrinfo used to initialize the new client's addrlist
+ *
+ * Returns a dynamically allocated nfs_client if successful, or
+ * NULL if some problem occurs.  Caller must free the returned
+ * nfs_client with free(3).
+ */
 nfs_client *
-client_dup(nfs_client *clp, struct hostent *hp)
+client_dup(const nfs_client *clp, const struct addrinfo *ai)
 {
        nfs_client              *new;
 
-       new = (nfs_client *) xmalloc(sizeof(*new));
+       new = (nfs_client *)malloc(sizeof(*new));
+       if (new == NULL)
+               return NULL;
        memcpy(new, clp, sizeof(*new));
        new->m_type = MCL_FQDN;
+       new->m_hostname = NULL;
 
-       client_init(new, (char *) hp->h_name, hp);
+       if (!client_init(new, ai->ai_canonname, ai)) {
+               client_free(new);
+               return NULL;
+       }
        client_add(new);
        return new;
 }
 
-static void
-client_init(nfs_client *clp, const char *hname, struct hostent *hp)
-{
-       if (hp) {
-               strncpy(clp->m_hostname, hp->h_name,
-                       sizeof (clp->m_hostname) -  1);
-       } else {
-               strncpy(clp->m_hostname, hname,
-                       sizeof (clp->m_hostname) - 1);
-       }
-       clp->m_hostname[sizeof (clp->m_hostname) - 1] = '\0';
-
-       clp->m_exported = 0;
-       clp->m_count = 0;
-
-       if (clp->m_type == MCL_SUBNETWORK) {
-               char    *cp = strchr(clp->m_hostname, '/');
-
-               *cp = '\0';
-               clp->m_addrlist[0].s_addr = inet_addr(clp->m_hostname);
-               if (strchr(cp + 1, '.')) {
-                       clp->m_addrlist[1].s_addr = inet_addr(cp+1);
-               }
-               else {
-                       int netmask = atoi(cp + 1);
-                       if (0 < netmask && netmask <= 32) {
-                               clp->m_addrlist[1].s_addr =
-                                       htonl ((uint32_t) ~0 << (32 - netmask));
-                       }
-                       else {
-                               xlog(L_FATAL, "invalid netmask `%s' for %s",
-                                    cp + 1, clp->m_hostname);
-                       }
-               }
-               *cp = '/';
-               clp->m_naddr = 0;
-       } else if (!hp) {
-               clp->m_naddr = 0;
-       } else {
-               char    **ap = hp->h_addr_list;
-               int     i;
-
-               for (i = 0; *ap && i < NFSCLNT_ADDRMAX; i++, ap++) {
-                       clp->m_addrlist[i] = *(struct in_addr *)*ap;
-               }
-               clp->m_naddr = i;
-       }
-}
-
-void
-client_add(nfs_client *clp)
-{
-       nfs_client      **cpp;
-
-       if (clp->m_type < 0 || clp->m_type >= MCL_MAXTYPES)
-               xlog(L_FATAL, "unknown client type in client_add");
-       cpp = clientlist + clp->m_type;
-       while (*cpp)
-               cpp = &((*cpp)->m_next);
-       clp->m_next = NULL;
-       *cpp = clp;
-}
-
+/**
+ * client_release - drop a reference to an nfs_client record
+ *
+ */
 void
 client_release(nfs_client *clp)
 {
@@ -192,6 +231,10 @@ client_release(nfs_client *clp)
        clp->m_count--;
 }
 
+/**
+ * client_freeall - deallocate all nfs_client records
+ *
+ */
 void
 client_freeall(void)
 {
@@ -202,57 +245,53 @@ client_freeall(void)
                head = clientlist + i;
                while (*head) {
                        *head = (clp = *head)->m_next;
-                       xfree(clp);
+                       client_free(clp);
                }
        }
 }
 
-nfs_client *
-client_find(struct hostent *hp)
+/**
+ * client_resolve - look up an IP address
+ * @sap: pointer to socket address to resolve
+ *
+ * Returns an addrinfo structure, or NULL if some problem occurred.
+ * Caller must free the result with freeaddrinfo(3).
+ */
+struct addrinfo *
+client_resolve(const struct sockaddr *sap)
 {
-       nfs_client      *clp;
-       int             i;
+       struct addrinfo *ai = NULL;
 
-       for (i = 0; i < MCL_MAXTYPES; i++) {
-               for (clp = clientlist[i]; clp; clp = clp->m_next) {
-                       if (!client_check(clp, hp))
-                               continue;
-#ifdef notdef
-                       if (clp->m_type == MCL_FQDN)
-                               return clp;
-                       return client_dup(clp, hp);
-#else
-                       return clp;
-#endif
-               }
-       }
-       return NULL;
+       if (clientlist[MCL_WILDCARD] || clientlist[MCL_NETGROUP])
+               ai = host_reliable_addrinfo(sap);
+       if (ai == NULL)
+               ai = host_numeric_addrinfo(sap);
+
+       return ai;
 }
 
-/*
- * Find client name given an IP address
- * This is found by gathering all known names that match that IP address,
- * sorting them and joining them with '+'
+/**
+ * client_compose - Make a list of cached hostnames that match an IP address
+ * @ai: pointer to addrinfo containing IP address information to match
+ *
+ * Gather all known client hostnames that match the IP address, and sort
+ * the result into a comma-separated list.
  *
+ * Returns a '\0'-terminated ASCII string containing a comma-separated
+ * sorted list of client hostnames, or NULL if no client records matched
+ * the IP address or memory could not be allocated.  Caller must free the
+ * returned string with free(3).
  */
-static char *add_name(char *old, char *add);
-
 char *
-client_compose(struct in_addr addr)
+client_compose(const struct addrinfo *ai)
 {
-       struct hostent *he = NULL;
        char *name = NULL;
        int i;
 
-       if (clientlist[MCL_WILDCARD] || clientlist[MCL_NETGROUP])
-               he = get_reliable_hostbyaddr((const char*)&addr, sizeof(addr), AF_INET);
-       if (he == NULL)
-               he = get_hostent((const char*)&addr, sizeof(addr), AF_INET);
-
        for (i = 0 ; i < MCL_MAXTYPES; i++) {
                nfs_client      *clp;
                for (clp = clientlist[i]; clp ; clp = clp->m_next) {
-                       if (!client_check(clp, he))
+                       if (!client_check(clp, ai))
                                continue;
                        name = add_name(name, clp->m_hostname);
                }
@@ -260,13 +299,19 @@ client_compose(struct in_addr addr)
        return name;
 }
 
-int 
-client_member(char *client, char *name)
+/**
+ * client_member - check if @name is contained in the list @client
+ * @client: '\0'-terminated ASCII string containing
+ *             comma-separated list of hostnames
+ * @name: '\0'-terminated ASCII string containing hostname to look for
+ *
+ * Returns 1 if @name was found in @client, otherwise zero is returned.
+ */
+int
+client_member(const char *client, const char *name)
 {
-       /* check if "client" (a ',' separated list of names)
-        * contains 'name' as a member 
-        */
-       int l = strlen(name);
+       size_t l = strlen(name);
+
        while (*client) {
                if (strncmp(client, name, l) == 0 &&
                    (client[l] == ',' || client[l] == '\0'))
@@ -279,14 +324,13 @@ client_member(char *client, char *name)
        return 0;
 }
 
-
-int 
-name_cmp(char *a, char *b)
+static int
+name_cmp(const char *a, const char *b)
 {
        /* compare strings a and b, but only upto ',' in a */
        while (*a && *b && *a != ',' && *a == *b)
                a++, b++;
-       if (!*b && (!*a || !a == ',') )
+       if (!*b && (!*a || *a == ','))
                return 0;
        if (!*b) return 1;
        if (!*a || *a == ',') return -1;
@@ -294,9 +338,9 @@ name_cmp(char *a, char *b)
 }
 
 static char *
-add_name(char *old, char *add)
+add_name(char *old, const char *add)
 {
-       int len = strlen(add)+2;
+       size_t len = strlen(add) + 2;
        char *new;
        char *cp;
        if (old) len += strlen(old);
@@ -324,102 +368,215 @@ add_name(char *old, char *add)
                strcat(new, ",");
                strcat(new, cp);
        }
+       free(old);
        return new;
 }
 
+static _Bool
+addrs_match4(const struct sockaddr *sa1, const struct sockaddr *sa2)
+{
+       const struct sockaddr_in *si1 = (const struct sockaddr_in *)sa1;
+       const struct sockaddr_in *si2 = (const struct sockaddr_in *)sa2;
+
+       return si1->sin_addr.s_addr == si2->sin_addr.s_addr;
+}
+
+static _Bool
+addrs_match(const struct sockaddr *sa1, const struct sockaddr *sa2)
+{
+       if (sa1->sa_family == sa2->sa_family)
+               switch (sa1->sa_family) {
+               case AF_INET:
+                       return addrs_match4(sa1, sa2);
+               }
+
+       return false;
+}
+
 /*
- * Match a host (given its hostent record) to a client record. This
- * is usually called from mountd.
+ * Check each address listed in @ai against each address
+ * stored in @clp.  Return 1 if a match is found, otherwise
+ * zero.
  */
-int
-client_check(nfs_client *clp, struct hostent *hp)
+static int
+check_fqdn(const nfs_client *clp, const struct addrinfo *ai)
 {
-       char    *hname = (char *) hp->h_name;
-       char    *cname = clp->m_hostname;
-       char    **ap;
+       int i;
 
-       switch (clp->m_type) {
-       case MCL_FQDN:
-       case MCL_SUBNETWORK:
-               for (ap = hp->h_addr_list; *ap; ap++) {
-                       if (client_checkaddr(clp, *(struct in_addr *) *ap))
+       for (; ai; ai = ai->ai_next)
+               for (i = 0; i < clp->m_naddr; i++)
+                       if (addrs_match(ai->ai_addr, get_addrlist(clp, i)))
                                return 1;
-               }
-               return 0;
-       case MCL_WILDCARD:
-               if (wildmat(hname, cname))
+
+       return 0;
+}
+
+static _Bool
+mask_match(const uint32_t a, const uint32_t b, const uint32_t m)
+{
+       return ((a ^ b) & m) == 0;
+}
+
+static int
+check_subnet_v4(const struct sockaddr_in *address,
+               const struct sockaddr_in *mask, const struct addrinfo *ai)
+{
+       for (; ai; ai = ai->ai_next) {
+               struct sockaddr_in *sin = (struct sockaddr_in *)ai->ai_addr;
+
+               if (sin->sin_family != AF_INET)
+                       continue;
+
+               if (mask_match(address->sin_addr.s_addr,
+                               sin->sin_addr.s_addr,
+                               mask->sin_addr.s_addr))
                        return 1;
-               else {
-                       for (ap = hp->h_aliases; *ap; ap++)
-                               if (wildmat(*ap, cname))
-                                       return 1;
-               }
-               return 0;
-       case MCL_NETGROUP:
-#ifdef HAVE_INNETGR
-               {
-                       char    *dot;
-                       int     match;
-                       struct hostent *nhp = NULL;
-                       struct sockaddr_in addr;
-
-                       /* First, try to match the hostname without
-                        * splitting off the domain */
-                       if (innetgr(cname+1, hname, NULL, NULL))
-                               return 1;
+       }
+       return 0;
+}
 
-                       /* If hname is ip address convert to FQDN */
-                       if (inet_aton(hname, &addr.sin_addr) &&
-                          (nhp = gethostbyaddr((const char *)&(addr.sin_addr),
-                           sizeof(addr.sin_addr), AF_INET))) {
-                               hname = (char *)nhp->h_name;
-                               if (innetgr(cname+1, hname, NULL, NULL))
-                                       return 1;
-                       }
+/*
+ * Check each address listed in @ai against the subnetwork or
+ * host address stored in @clp.  Return 1 if an address in @hp
+ * matches the host address stored in @clp, otherwise zero.
+ */
+static int
+check_subnetwork(const nfs_client *clp, const struct addrinfo *ai)
+{
+       switch (get_addrlist(clp, 0)->sa_family) {
+       case AF_INET:
+               return check_subnet_v4(get_addrlist_in(clp, 0),
+                               get_addrlist_in(clp, 1), ai);
+       }
 
-                       /* Okay, strip off the domain (if we have one) */
-                       if ((dot = strchr(hname, '.')) == NULL)
-                               return 0;
+       return 0;
+}
 
-                       *dot = '\0';
-                       match = innetgr(cname+1, hname, NULL, NULL);
-                       *dot = '.';
+/*
+ * Check if a wildcard nfs_client record matches the canonical name
+ * or the aliases of a host.  Return 1 if a match is found, otherwise
+ * zero.
+ */
+static int
+check_wildcard(const nfs_client *clp, const struct addrinfo *ai)
+{
+       char *cname = clp->m_hostname;
+       char *hname = ai->ai_canonname;
+       struct hostent *hp;
+       char **ap;
 
-                       return match;
-               }
-#else
-               return 0;
-#endif
-       case MCL_ANONYMOUS:
+       if (wildmat(hname, cname))
                return 1;
-       case MCL_GSS:
-               return 0;
-       default:
-               xlog(L_FATAL, "internal: bad client type %d", clp->m_type);
+
+       /* See if hname aliases listed in /etc/hosts or nis[+]
+        * match the requested wildcard */
+       hp = gethostbyname(hname);
+       if (hp != NULL) {
+               for (ap = hp->h_aliases; *ap; ap++)
+                       if (wildmat(*ap, cname))
+                               return 1;
        }
 
        return 0;
 }
 
+/*
+ * Check if @ai's hostname or aliases fall in a given netgroup.
+ * Return 1 if @ai represents a host in the netgroup, otherwise
+ * zero.
+ */
+#ifdef HAVE_INNETGR
 static int
-client_checkaddr(nfs_client *clp, struct in_addr addr)
+check_netgroup(const nfs_client *clp, const struct addrinfo *ai)
 {
-       int     i;
+       const char *netgroup = clp->m_hostname + 1;
+       const char *hname = ai->ai_canonname;
+       struct addrinfo *tmp = NULL;
+       struct hostent *hp;
+       int i, match;
+       char *dot;
+
+       /* First, try to match the hostname without
+        * splitting off the domain */
+       if (innetgr(netgroup, hname, NULL, NULL))
+               return 1;
 
-       switch (clp->m_type) {
-       case MCL_FQDN:
-               for (i = 0; i < clp->m_naddr; i++) {
-                       if (clp->m_addrlist[i].s_addr == addr.s_addr)
+       /* See if hname aliases listed in /etc/hosts or nis[+]
+        * match the requested netgroup */
+       hp = gethostbyname(hname);
+       if (hp != NULL) {
+               for (i = 0; hp->h_aliases[i]; i++)
+                       if (innetgr(netgroup, hp->h_aliases[i], NULL, NULL))
                                return 1;
-               }
+       }
+
+       /* If hname is ip address convert to FQDN */
+       tmp = host_pton(hname);
+       if (tmp != NULL) {
+               freeaddrinfo(tmp);
+               if (innetgr(netgroup, hname, NULL, NULL))
+                       return 1;
+       }
+
+       /* Okay, strip off the domain (if we have one) */
+       dot = strchr(hname, '.');
+       if (dot == NULL)
                return 0;
+
+       *dot = '\0';
+       match = innetgr(netgroup, hname, NULL, NULL);
+       *dot = '.';
+
+       return match;
+}
+#else  /* !HAVE_INNETGR */
+static int
+check_netgroup(__attribute__((unused)) const nfs_client *clp,
+               __attribute__((unused)) const struct addrinfo *ai)
+{
+       return 0;
+}
+#endif /* !HAVE_INNETGR */
+
+/**
+ * client_check - check if IP address information matches a cached nfs_client
+ * @clp: pointer to a cached nfs_client record
+ * @ai: pointer to addrinfo to compare it with
+ *
+ * Returns 1 if the address information matches the cached nfs_client,
+ * otherwise zero.
+ */
+int
+client_check(const nfs_client *clp, const struct addrinfo *ai)
+{
+       switch (clp->m_type) {
+       case MCL_FQDN:
+               return check_fqdn(clp, ai);
        case MCL_SUBNETWORK:
-               return !((clp->m_addrlist[0].s_addr ^ addr.s_addr)
-                       & clp->m_addrlist[1].s_addr);
+               return check_subnetwork(clp, ai);
+       case MCL_WILDCARD:
+               return check_wildcard(clp, ai);
+       case MCL_NETGROUP:
+               return check_netgroup(clp, ai);
+       case MCL_ANONYMOUS:
+               return 1;
+       case MCL_GSS:
+               return 0;
+       default:
+               xlog(D_GENERAL, "%s: unrecognized client type: %d",
+                               __func__, clp->m_type);
        }
+
        return 0;
 }
 
+/**
+ * client_gettype - determine type of nfs_client given an identifier
+ * @ident: '\0'-terminated ASCII string containing a client identifier
+ *
+ * Returns the type of nfs_client record that would be used for
+ * this client.
+ */
 int
 client_gettype(char *ident)
 {
@@ -443,5 +600,12 @@ client_gettype(char *ident)
                if (*sp == '\\' && sp[1])
                        sp++;
        }
-       return MCL_FQDN;
+       /* check for N.N.N.N */
+       sp = ident;
+       if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
+       sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
+       sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '.') return MCL_FQDN;
+       sp++; if(!isdigit(*sp) || strtoul(sp, &sp, 10) > 255 || *sp != '\0') return MCL_FQDN;
+       /* we lie here a bit. but technically N.N.N.N == N.N.N.N/32 :) */
+       return MCL_SUBNETWORK;
 }