VERSION: Bump version up to Samba 4.17.8...
[Samba.git] / lib / util / access.c
blobf4b5ae79125c231dcb14f94c8f7e50d9ef68ea7e
1 /*
2 This module is an adaption of code from the tcpd-1.4 package written
3 by Wietse Venema, Eindhoven University of Technology, The Netherlands.
5 The code is used here with permission.
7 The code has been considerably changed from the original. Bug reports
8 should be sent to samba-technical@lists.samba.org
10 Updated for IPv6 by Jeremy Allison (C) 2007.
13 #include "replace.h"
14 #include "system/locale.h"
15 #include "lib/util/debug.h"
16 #include "../lib/util/memcache.h"
17 #include "lib/socket/interfaces.h"
18 #include "lib/util/samba_util.h"
19 #include "lib/util/util_net.h"
20 #include "lib/util/samba_util.h"
21 #include "lib/util/memory.h"
22 #include "lib/util/access.h"
23 #include "lib/util/unix_match.h"
24 #include "lib/util/smb_strtox.h"
26 #define NAME_INDEX 0
27 #define ADDR_INDEX 1
29 /* masked_match - match address against netnumber/netmask */
30 static bool masked_match(const char *tok, const char *slash, const char *s)
32 struct sockaddr_storage ss_mask;
33 struct sockaddr_storage ss_tok;
34 struct sockaddr_storage ss_host;
35 char *tok_copy = NULL;
37 if (!interpret_string_addr(&ss_host, s, 0)) {
38 return false;
41 if (*tok == '[') {
42 /* IPv6 address - remove braces. */
43 tok_copy = smb_xstrdup(tok+1);
44 if (!tok_copy) {
45 return false;
47 /* Remove the terminating ']' */
48 tok_copy[PTR_DIFF(slash,tok)-1] = '\0';
49 } else {
50 tok_copy = smb_xstrdup(tok);
51 if (!tok_copy) {
52 return false;
54 /* Remove the terminating '/' */
55 tok_copy[PTR_DIFF(slash,tok)] = '\0';
58 if (!interpret_string_addr(&ss_tok, tok_copy, 0)) {
59 SAFE_FREE(tok_copy);
60 return false;
63 SAFE_FREE(tok_copy);
65 if (strlen(slash + 1) > 2) {
66 if (!interpret_string_addr(&ss_mask, slash+1, 0)) {
67 return false;
69 } else {
70 int error = 0;
71 unsigned long val;
73 val = smb_strtoul(slash+1,
74 NULL,
76 &error,
77 SMB_STR_FULL_STR_CONV);
78 if (error != 0) {
79 return false;
81 if (!make_netmask(&ss_mask, &ss_tok, val)) {
82 return false;
86 return same_net((struct sockaddr *)(void *)&ss_host,
87 (struct sockaddr *)(void *)&ss_tok,
88 (struct sockaddr *)(void *)&ss_mask);
91 /* string_match - match string s against token tok */
92 static bool string_match(const char *tok,const char *s)
94 size_t tok_len;
95 size_t str_len;
96 const char *cut;
98 /* Return true if a token has the magic value "ALL". Return
99 * true if the token is "FAIL". If the token starts with a "."
100 * (domain name), return true if it matches the last fields of
101 * the string. If the token has the magic value "LOCAL",
102 * return true if the string does not contain a "."
103 * character. If the token ends on a "." (network number),
104 * return true if it matches the first fields of the
105 * string. If the token begins with a "@" (netgroup name),
106 * return true if the string is a (host) member of the
107 * netgroup. Return true if the token fully matches the
108 * string. If the token is a netnumber/netmask pair, return
109 * true if the address is a member of the specified subnet.
112 if (tok[0] == '.') { /* domain: match last fields */
113 if ((str_len = strlen(s)) > (tok_len = strlen(tok))
114 && strequal_m(tok, s + str_len - tok_len)) {
115 return true;
117 } else if (tok[0] == '@') { /* netgroup: look it up */
118 #if defined(HAVE_NETGROUP) && defined(HAVE_INNETGR)
119 DATA_BLOB tmp;
120 char *mydomain = NULL;
121 char *hostname = NULL;
122 bool netgroup_ok = false;
123 char nis_domain_buf[256];
125 if (memcache_lookup(
126 NULL, SINGLETON_CACHE,
127 data_blob_string_const_null("yp_default_domain"),
128 &tmp)) {
130 SMB_ASSERT(tmp.length > 0);
131 mydomain = (tmp.data[0] == '\0')
132 ? NULL : (char *)tmp.data;
133 } else {
134 if (getdomainname(nis_domain_buf,
135 sizeof(nis_domain_buf)) == 0) {
136 mydomain = &nis_domain_buf[0];
137 memcache_add(NULL,
138 SINGLETON_CACHE,
139 data_blob_string_const_null(
140 "yp_default_domain"),
141 data_blob_string_const_null(
142 mydomain));
143 } else {
144 mydomain = NULL;
148 if (!mydomain) {
149 DEBUG(0,("Unable to get default yp domain. "
150 "Try without it.\n"));
152 if (!(hostname = smb_xstrdup(s))) {
153 DEBUG(1,("out of memory for strdup!\n"));
154 return false;
157 netgroup_ok = innetgr(tok + 1, hostname, (char *) 0, mydomain);
159 DBG_INFO("%s %s of domain %s in netgroup %s\n",
160 netgroup_ok ? "Found" : "Could not find",
161 hostname,
162 mydomain?mydomain:"(ANY)",
163 tok+1);
165 SAFE_FREE(hostname);
167 if (netgroup_ok)
168 return true;
169 #else
170 DEBUG(0,("access: netgroup support is not configured\n"));
171 return false;
172 #endif
173 } else if (strequal_m(tok, "ALL")) { /* all: match any */
174 return true;
175 } else if (strequal_m(tok, "FAIL")) { /* fail: match any */
176 return true;
177 } else if (strequal_m(tok, "LOCAL")) { /* local: no dots */
178 if (strchr_m(s, '.') == 0 && !strequal_m(s, "unknown")) {
179 return true;
181 } else if (strequal_m(tok, s)) { /* match host name or address */
182 return true;
183 } else if (tok[(tok_len = strlen(tok)) - 1] == '.') { /* network */
184 if (strncmp(tok, s, tok_len) == 0) {
185 return true;
187 } else if ((cut = strchr_m(tok, '/')) != 0) { /* netnumber/netmask */
188 if ((isdigit(s[0]) && strchr_m(tok, '.') != NULL) ||
189 (tok[0] == '[' && cut > tok && cut[-1] == ']') ||
190 ((isxdigit(s[0]) || s[0] == ':') &&
191 strchr_m(tok, ':') != NULL)) {
192 /* IPv4/netmask or
193 * [IPv6:addr]/netmask or IPv6:addr/netmask */
194 return masked_match(tok, cut, s);
196 } else if (strchr_m(tok, '*') != 0 || strchr_m(tok, '?')) {
197 return unix_wild_match(tok, s);
199 return false;
202 /* client_match - match host name and address against token */
203 bool client_match(const char *tok, const void *item)
205 const char **client = discard_const_p(const char *, item);
206 const char *tok_addr = tok;
207 const char *cli_addr = client[ADDR_INDEX];
210 * tok and client[ADDR_INDEX] can be an IPv4 mapped to IPv6,
211 * we try and match the IPv4 part of address only.
212 * Bug #5311 and #7383.
215 if (strncasecmp_m(tok_addr, "::ffff:", 7) == 0) {
216 tok_addr += 7;
219 if (strncasecmp_m(cli_addr, "::ffff:", 7) == 0) {
220 cli_addr += 7;
224 * Try to match the address first. If that fails, try to match the host
225 * name if available.
228 if (string_match(tok_addr, cli_addr)) {
229 return true;
232 if (client[NAME_INDEX][0] != 0) {
233 if (string_match(tok, client[NAME_INDEX])) {
234 return true;
238 return false;
241 /* list_match - match an item against a list of tokens with exceptions */
242 bool list_match(const char **list,const void *item,
243 bool (*match_fn)(const char *, const void *))
245 bool match = false;
247 if (!list) {
248 return false;
252 * Process tokens one at a time. We have exhausted all possible matches
253 * when we reach an "EXCEPT" token or the end of the list. If we do find
254 * a match, look for an "EXCEPT" list and recurse to determine whether
255 * the match is affected by any exceptions.
258 for (; *list ; list++) {
259 if (strequal_m(*list, "EXCEPT")) {
260 /* EXCEPT: give up */
261 break;
263 if ((match = (*match_fn) (*list, item))) {
264 /* true or FAIL */
265 break;
268 /* Process exceptions to true or FAIL matches. */
270 if (match != false) {
271 while (*list && !strequal_m(*list, "EXCEPT")) {
272 list++;
275 for (; *list; list++) {
276 if ((*match_fn) (*list, item)) {
277 /* Exception Found */
278 return false;
283 return match;
286 /* return true if access should be allowed */
287 static bool allow_access_internal(const char **deny_list,
288 const char **allow_list,
289 const char *cname,
290 const char *caddr)
292 const char *client[2];
294 client[NAME_INDEX] = cname;
295 client[ADDR_INDEX] = caddr;
297 /* if it is loopback then always allow unless specifically denied */
298 if (strcmp(caddr, "127.0.0.1") == 0 || strcmp(caddr, "::1") == 0) {
300 * If 127.0.0.1 matches both allow and deny then allow.
301 * Patch from Steve Langasek vorlon@netexpress.net.
303 if (deny_list &&
304 list_match(deny_list,client,client_match) &&
305 (!allow_list ||
306 !list_match(allow_list,client, client_match))) {
307 return false;
309 return true;
312 /* if theres no deny list and no allow list then allow access */
313 if ((!deny_list || *deny_list == 0) &&
314 (!allow_list || *allow_list == 0)) {
315 return true;
318 /* if there is an allow list but no deny list then allow only hosts
319 on the allow list */
320 if (!deny_list || *deny_list == 0) {
321 return(list_match(allow_list,client,client_match));
324 /* if theres a deny list but no allow list then allow
325 all hosts not on the deny list */
326 if (!allow_list || *allow_list == 0) {
327 return(!list_match(deny_list,client,client_match));
330 /* if there are both types of list then allow all hosts on the
331 allow list */
332 if (list_match(allow_list,(const char *)client,client_match)) {
333 return true;
336 /* if there are both types of list and it's not on the allow then
337 allow it if its not on the deny */
338 if (list_match(deny_list,(const char *)client,client_match)) {
339 return false;
342 return true;
345 /* return true if access should be allowed - doesn't print log message */
346 bool allow_access_nolog(const char **deny_list,
347 const char **allow_list,
348 const char *cname,
349 const char *caddr)
351 bool ret;
352 char *nc_cname = smb_xstrdup(cname);
353 char *nc_caddr = smb_xstrdup(caddr);
355 ret = allow_access_internal(deny_list, allow_list, nc_cname, nc_caddr);
357 SAFE_FREE(nc_cname);
358 SAFE_FREE(nc_caddr);
359 return ret;
362 /* return true if access should be allowed - prints log message */
363 bool allow_access(const char **deny_list,
364 const char **allow_list,
365 const char *cname,
366 const char *caddr)
368 bool ret;
370 ret = allow_access_nolog(deny_list, allow_list, cname, caddr);
372 DEBUG(ret ? 3 : 0,
373 ("%s connection from %s (%s)\n",
374 ret ? "Allowed" : "Denied", cname, caddr));
376 return ret;