]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/statd/hostname.c
7571b6f44a864318ef28425e58b07fcfea154efb
[nfs-utils.git] / utils / statd / hostname.c
1 /*
2  * Copyright 2009 Oracle.  All rights reserved.
3  *
4  * This file is part of nfs-utils.
5  *
6  * nfs-utils is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * nfs-utils is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with nfs-utils.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /*
21  * NSM for Linux.
22  */
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <sys/types.h>
29 #include <sys/socket.h>
30
31 #include <stdlib.h>
32 #include <stdbool.h>
33 #include <string.h>
34 #include <strings.h>
35 #include <netdb.h>
36 #include <arpa/inet.h>
37
38 #include "sockaddr.h"
39 #include "statd.h"
40 #include "xlog.h"
41
42 /**
43  * statd_present_address - convert sockaddr to presentation address
44  * @sap: pointer to socket address to convert
45  * @buf: pointer to buffer to fill in
46  * @buflen: length of buffer
47  *
48  * Convert the passed-in sockaddr-style address to presentation format.
49  * The presentation format address is placed in @buf and is
50  * '\0'-terminated.
51  *
52  * Returns true if successful; otherwise false.
53  *
54  * getnameinfo(3) is preferred, since it can parse IPv6 scope IDs.
55  * An alternate version of statd_present_address() is available to
56  * handle older glibcs that do not have getnameinfo(3).
57  */
58 #ifdef HAVE_GETNAMEINFO
59 _Bool
60 statd_present_address(const struct sockaddr *sap, char *buf, const size_t buflen)
61 {
62         socklen_t salen;
63         int error;
64
65         salen = nfs_sockaddr_length(sap);
66         if (salen == 0) {
67                 xlog(D_GENERAL, "%s: unsupported address family",
68                                 __func__);
69                 return false;
70         }
71
72         error = getnameinfo(sap, salen, buf, (socklen_t)buflen,
73                                                 NULL, 0, NI_NUMERICHOST);
74         if (error != 0) {
75                 xlog(D_GENERAL, "%s: getnameinfo(3): %s",
76                                 __func__, gai_strerror(error));
77                 return false;
78         }
79         return true;
80 }
81 #else   /* !HAVE_GETNAMEINFO */
82 _Bool
83 statd_present_address(const struct sockaddr *sap, char *buf, const size_t buflen)
84 {
85         const struct sockaddr_in *sin = (const struct sockaddr_in *)sap;
86
87         if (sin->sin_family != AF_INET) {
88                 xlog(D_GENERAL, "%s: unsupported address family", __func__);
89                 return false;
90         }
91
92         /* ensure '\0' termination */
93         memset(buf, 0, buflen);
94
95         if (inet_ntop(AF_INET, (char *)&sin->sin_addr,
96                                         buf, (socklen_t)buflen) == NULL) {
97                 xlog(D_GENERAL, "%s: inet_ntop(3): %m", __func__);
98                 return false;
99         }
100         return true;
101 }
102 #endif  /* !HAVE_GETNAMEINFO */
103
104 /*
105  * Look up the hostname; report exceptional errors.  Caller must
106  * call freeaddrinfo(3) if a valid addrinfo is returned.
107  */
108 __attribute_malloc__
109 static struct addrinfo *
110 get_addrinfo(const char *hostname, const struct addrinfo *hint)
111 {
112         struct addrinfo *ai = NULL;
113         int error;
114
115         error = getaddrinfo(hostname, NULL, hint, &ai);
116         switch (error) {
117         case 0:
118                 return ai;
119         case EAI_NONAME:
120                 break;
121         default:
122                 xlog(D_GENERAL, "%s: failed to resolve host %s: %s",
123                                 __func__, hostname, gai_strerror(error));
124         }
125
126         return NULL;
127 }
128
129 /**
130  * statd_matchhostname - check if two hostnames are equivalent
131  * @hostname1: C string containing hostname
132  * @hostname2: C string containing hostname
133  *
134  * Returns true if the hostnames are the same, the hostnames resolve
135  * to the same canonical name, or the hostnames resolve to at least
136  * one address that is the same.  False is returned if the hostnames
137  * do not match in any of these ways, if either hostname contains
138  * wildcard characters, if either hostname is a netgroup name, or
139  * if an error occurs.
140  */
141 _Bool
142 statd_matchhostname(const char *hostname1, const char *hostname2)
143 {
144         struct addrinfo *ai1, *ai2, *results1 = NULL, *results2 = NULL;
145         struct addrinfo hint = {
146                 .ai_family      = AF_UNSPEC,
147                 .ai_flags       = AI_CANONNAME,
148                 .ai_protocol    = (int)IPPROTO_UDP,
149         };
150         _Bool result = false;
151
152         if (strcasecmp(hostname1, hostname2) == 0) {
153                 result = true;
154                 goto out;
155         }
156
157         results1 = get_addrinfo(hostname1, &hint);
158         if (results1 == NULL)
159                 goto out;
160         results2 = get_addrinfo(hostname2, &hint);
161         if (results2 == NULL)
162                 goto out;
163
164         if (strcasecmp(results1->ai_canonname, results2->ai_canonname) == 0) {
165                 result = true;
166                 goto out;
167         }
168
169         for (ai1 = results1; ai1 != NULL; ai1 = ai1->ai_next)
170                 for (ai2 = results2; ai2 != NULL; ai2 = ai2->ai_next)
171                         if (nfs_compare_sockaddr(ai1->ai_addr, ai2->ai_addr)) {
172                                 result = true;
173                                 break;
174                         }
175
176 out:
177         freeaddrinfo(results2);
178         freeaddrinfo(results1);
179
180         xlog(D_CALL, "%s: hostnames %s", __func__,
181                         (result ? "matched" : "did not match"));
182         return result;
183 }