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.
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"
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)) {
42 /* IPv6 address - remove braces. */
43 tok_copy
= smb_xstrdup(tok
+1);
47 /* Remove the terminating ']' */
48 tok_copy
[PTR_DIFF(slash
,tok
)-1] = '\0';
50 tok_copy
= smb_xstrdup(tok
);
54 /* Remove the terminating '/' */
55 tok_copy
[PTR_DIFF(slash
,tok
)] = '\0';
58 if (!interpret_string_addr(&ss_tok
, tok_copy
, 0)) {
65 if (strlen(slash
+ 1) > 2) {
66 if (!interpret_string_addr(&ss_mask
, slash
+1, 0)) {
73 val
= smb_strtoul(slash
+1,
77 SMB_STR_FULL_STR_CONV
);
81 if (!make_netmask(&ss_mask
, &ss_tok
, val
)) {
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
)
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
)) {
117 } else if (tok
[0] == '@') { /* netgroup: look it up */
118 #if defined(HAVE_NETGROUP) && defined(HAVE_INNETGR)
120 char *mydomain
= NULL
;
121 char *hostname
= NULL
;
122 bool netgroup_ok
= false;
123 char nis_domain_buf
[256];
126 NULL
, SINGLETON_CACHE
,
127 data_blob_string_const_null("yp_default_domain"),
130 SMB_ASSERT(tmp
.length
> 0);
131 mydomain
= (tmp
.data
[0] == '\0')
132 ? NULL
: (char *)tmp
.data
;
134 if (getdomainname(nis_domain_buf
,
135 sizeof(nis_domain_buf
)) == 0) {
136 mydomain
= &nis_domain_buf
[0];
139 data_blob_string_const_null(
140 "yp_default_domain"),
141 data_blob_string_const_null(
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"));
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",
162 mydomain
?mydomain
:"(ANY)",
170 DEBUG(0,("access: netgroup support is not configured\n"));
173 } else if (strequal_m(tok
, "ALL")) { /* all: match any */
175 } else if (strequal_m(tok
, "FAIL")) { /* fail: match any */
177 } else if (strequal_m(tok
, "LOCAL")) { /* local: no dots */
178 if (strchr_m(s
, '.') == 0 && !strequal_m(s
, "unknown")) {
181 } else if (strequal_m(tok
, s
)) { /* match host name or address */
183 } else if (tok
[(tok_len
= strlen(tok
)) - 1] == '.') { /* network */
184 if (strncmp(tok
, s
, tok_len
) == 0) {
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
)) {
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
);
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) {
219 if (strncasecmp_m(cli_addr
, "::ffff:", 7) == 0) {
224 * Try to match the address first. If that fails, try to match the host
228 if (string_match(tok_addr
, cli_addr
)) {
232 if (client
[NAME_INDEX
][0] != 0) {
233 if (string_match(tok
, client
[NAME_INDEX
])) {
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 *))
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 */
263 if ((match
= (*match_fn
) (*list
, item
))) {
268 /* Process exceptions to true or FAIL matches. */
270 if (match
!= false) {
271 while (*list
&& !strequal_m(*list
, "EXCEPT")) {
275 for (; *list
; list
++) {
276 if ((*match_fn
) (*list
, item
)) {
277 /* Exception Found */
286 /* return true if access should be allowed */
287 static bool allow_access_internal(const char **deny_list
,
288 const char **allow_list
,
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.
304 list_match(deny_list
,client
,client_match
) &&
306 !list_match(allow_list
,client
, client_match
))) {
312 /* if there's no deny list and no allow list then allow access */
313 if ((!deny_list
|| *deny_list
== 0) &&
314 (!allow_list
|| *allow_list
== 0)) {
318 /* if there is an allow list but no deny list then allow only hosts
320 if (!deny_list
|| *deny_list
== 0) {
321 return(list_match(allow_list
,client
,client_match
));
324 /* if there's 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
332 if (list_match(allow_list
,(const char *)client
,client_match
)) {
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
)) {
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
,
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
);
362 /* return true if access should be allowed - prints log message */
363 bool allow_access(const char **deny_list
,
364 const char **allow_list
,
370 ret
= allow_access_nolog(deny_list
, allow_list
, cname
, caddr
);
373 ("%s connection from %s (%s)\n",
374 ret
? "Allowed" : "Denied", cname
, caddr
));