this now works as a add|delete share command :-)
[Samba.git] / source / lib / access.c
blobdf0585e959df97ecad9ccbbeb580d95353570798
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@samba.org
9 */
11 #include "includes.h"
13 extern int DEBUGLEVEL;
15 /* Delimiters for lists of daemons or clients. */
16 static char *sep = ", \t";
18 #define FAIL (-1)
20 /* masked_match - match address against netnumber/netmask */
21 static int masked_match(char *tok, char *slash, char *s)
23 uint32 net;
24 uint32 mask;
25 uint32 addr;
27 if ((addr = interpret_addr(s)) == INADDR_NONE)
28 return (False);
29 *slash = 0;
30 net = interpret_addr(tok);
31 *slash = '/';
32 if (net == INADDR_NONE ||
33 (mask = interpret_addr(slash + 1)) == INADDR_NONE) {
34 DEBUG(0,("access: bad net/mask access control: %s\n", tok));
35 return (False);
37 return ((addr & mask) == net);
40 /* string_match - match string against token */
41 static int string_match(char *tok,char *s, char *invalid_char)
43 size_t tok_len;
44 size_t str_len;
45 char *cut;
47 *invalid_char = '\0';
49 /* Return True if a token has the magic value "ALL". Return
50 * FAIL if the token is "FAIL". If the token starts with a "."
51 * (domain name), return True if it matches the last fields of
52 * the string. If the token has the magic value "LOCAL",
53 * return True if the string does not contain a "."
54 * character. If the token ends on a "." (network number),
55 * return True if it matches the first fields of the
56 * string. If the token begins with a "@" (netgroup name),
57 * return True if the string is a (host) member of the
58 * netgroup. Return True if the token fully matches the
59 * string. If the token is a netnumber/netmask pair, return
60 * True if the address is a member of the specified subnet. */
62 if (tok[0] == '.') { /* domain: match last fields */
63 if ((str_len = strlen(s)) > (tok_len = strlen(tok))
64 && strcasecmp(tok, s + str_len - tok_len) == 0)
65 return (True);
66 } else if (tok[0] == '@') { /* netgroup: look it up */
67 #ifdef HAVE_NETGROUP
68 static char *mydomain = NULL;
69 char *hostname = NULL;
70 BOOL netgroup_ok = False;
72 if (!mydomain) yp_get_default_domain(&mydomain);
74 if (!mydomain) {
75 DEBUG(0,("Unable to get default yp domain.\n"));
76 return False;
78 if (!(hostname = strdup(s))) {
79 DEBUG(1,("out of memory for strdup!\n"));
80 return False;
83 netgroup_ok = innetgr(tok + 1, hostname, (char *) 0, mydomain);
85 DEBUG(5,("looking for %s of domain %s in netgroup %s gave %s\n",
86 hostname,
87 mydomain,
88 tok+1,
89 BOOLSTR(netgroup_ok)));
91 free(hostname);
93 if (netgroup_ok) return(True);
94 #else
95 DEBUG(0,("access: netgroup support is not configured\n"));
96 return (False);
97 #endif
98 } else if (strcasecmp(tok, "ALL") == 0) { /* all: match any */
99 return (True);
100 } else if (strcasecmp(tok, "FAIL") == 0) { /* fail: match any */
101 return (FAIL);
102 } else if (strcasecmp(tok, "LOCAL") == 0) { /* local: no dots */
103 if (strchr(s, '.') == 0 && strcasecmp(s, "unknown") != 0)
104 return (True);
105 } else if (!strcasecmp(tok, s)) { /* match host name or address */
106 return (True);
107 } else if (tok[(tok_len = strlen(tok)) - 1] == '.') { /* network */
108 if (strncmp(tok, s, tok_len) == 0)
109 return (True);
110 } else if ((cut = strchr(tok, '/')) != 0) { /* netnumber/netmask */
111 if (isdigit((int)s[0]) && masked_match(tok, cut, s))
112 return (True);
113 } else if (strchr(tok, '*') != 0) {
114 *invalid_char = '*';
115 } else if (strchr(tok, '?') != 0) {
116 *invalid_char = '?';
118 return (False);
122 /* client_match - match host name and address against token */
123 static int client_match(char *tok,char *item)
125 char **client = (char **)item;
126 int match;
127 char invalid_char = '\0';
130 * Try to match the address first. If that fails, try to match the host
131 * name if available.
134 if ((match = string_match(tok, client[1], &invalid_char)) == 0) {
135 if(invalid_char)
136 DEBUG(0,("client_match: address match failing due to invalid character '%c' found in \
137 token '%s' in an allow/deny hosts line.\n", invalid_char, tok ));
139 if (client[0][0] != 0)
140 match = string_match(tok, client[0], &invalid_char);
142 if(invalid_char)
143 DEBUG(0,("client_match: address match failing due to invalid character '%c' found in \
144 token '%s' in an allow/deny hosts line.\n", invalid_char, tok ));
147 return (match);
150 /* list_match - match an item against a list of tokens with exceptions */
151 /* (All modifications are marked with the initials "jkf") */
152 static int list_match(char *list,char *item, int (*match_fn)(char *, char *))
154 char *tok;
155 char *listcopy; /* jkf */
156 int match = False;
159 * jkf@soton.ac.uk -- 31 August 1994 -- Stop list_match()
160 * overwriting the list given as its first parameter.
163 /* jkf -- can get called recursively with NULL list */
164 listcopy = (list == 0) ? (char *)0 : strdup(list);
167 * Process tokens one at a time. We have exhausted all possible matches
168 * when we reach an "EXCEPT" token or the end of the list. If we do find
169 * a match, look for an "EXCEPT" list and recurse to determine whether
170 * the match is affected by any exceptions.
173 for (tok = strtok(listcopy, sep); tok ; tok = strtok(NULL, sep)) {
174 if (strcasecmp(tok, "EXCEPT") == 0) /* EXCEPT: give up */
175 break;
176 if ((match = (*match_fn) (tok, item))) /* True or FAIL */
177 break;
179 /* Process exceptions to True or FAIL matches. */
181 if (match != False) {
182 while ((tok = strtok((char *) 0, sep)) && strcasecmp(tok, "EXCEPT"))
183 /* VOID */ ;
184 if (tok == 0 || list_match((char *) 0, item, match_fn) == False) {
185 if (listcopy != 0) free(listcopy); /* jkf */
186 return (match);
190 if (listcopy != 0) free(listcopy); /* jkf */
191 return (False);
195 /* return true if access should be allowed */
196 BOOL allow_access(char *deny_list,char *allow_list,
197 char *cname,char *caddr)
199 char *client[2];
201 client[0] = cname;
202 client[1] = caddr;
204 /* if it is loopback then always allow unless specifically denied */
205 if (strcmp(caddr, "127.0.0.1") == 0) {
206 if (deny_list &&
207 list_match(deny_list,(char *)client,client_match)) {
208 return False;
210 return True;
213 /* if theres no deny list and no allow list then allow access */
214 if ((!deny_list || *deny_list == 0) &&
215 (!allow_list || *allow_list == 0)) {
216 return(True);
219 /* if there is an allow list but no deny list then allow only hosts
220 on the allow list */
221 if (!deny_list || *deny_list == 0)
222 return(list_match(allow_list,(char *)client,client_match));
224 /* if theres a deny list but no allow list then allow
225 all hosts not on the deny list */
226 if (!allow_list || *allow_list == 0)
227 return(!list_match(deny_list,(char *)client,client_match));
229 /* if there are both type of list then allow all hosts on the
230 allow list */
231 if (list_match(allow_list,(char *)client,client_match))
232 return (True);
234 /* if there are both type of list and it's not on the allow then
235 allow it if its not on the deny */
236 if (list_match(deny_list,(char *)client,client_match))
237 return (False);
239 return (True);
242 /* return true if the char* contains ip addrs only. Used to avoid
243 gethostbyaddr() calls */
244 static BOOL only_ipaddrs_in_list(const char* list)
246 BOOL only_ip = True;
247 char *listcopy,
248 *tok;
250 listcopy = strdup(list);
252 for (tok = strtok(listcopy, sep); tok ; tok = strtok(NULL, sep))
254 /* factor out the special strings */
255 if (!strcasecmp(tok, "ALL") || !strcasecmp(tok, "FAIL") ||
256 !strcasecmp(tok, "EXCEPT"))
258 continue;
261 if (!is_ipaddress(tok))
263 char *p;
265 * if we failed, make sure that it was not because the token
266 * was a network/netmask pair. Only network/netmask pairs
267 * have a '/' in them
269 if ((p=strchr(tok, '/')) == NULL)
271 only_ip = False;
272 DEBUG(3,("only_ipaddrs_in_list: list [%s] has non-ip address %s\n", list, tok));
273 break;
278 if (listcopy)
279 free (listcopy);
281 return only_ip;
284 /* return true if access should be allowed to a service for a socket */
285 BOOL check_access(int sock, char *allow_list, char *deny_list)
287 BOOL ret = False;
288 BOOL only_ip = False;
290 if (deny_list) deny_list = strdup(deny_list);
291 if (allow_list) allow_list = strdup(allow_list);
293 if ((!deny_list || *deny_list==0) && (!allow_list || *allow_list==0))
295 ret = True;
298 if (!ret)
300 /* bypass gethostbyaddr() calls if the lists only contain IP addrs */
301 if (only_ipaddrs_in_list(allow_list) && only_ipaddrs_in_list(deny_list))
303 only_ip = True;
304 DEBUG (3, ("check_access: no hostnames in host allow/deny list.\n"));
305 ret = allow_access(deny_list,allow_list, "", get_socket_addr(sock));
307 else
309 DEBUG (3, ("check_access: hostnames in host allow/deny list.\n"));
310 ret = allow_access(deny_list,allow_list, get_socket_name(sock),
311 get_socket_addr(sock));
314 if (ret)
316 DEBUG(2,("Allowed connection from %s (%s)\n",
317 only_ip ? "" : get_socket_name(sock),
318 get_socket_addr(sock)));
320 else
322 DEBUG(0,("Denied connection from %s (%s)\n",
323 only_ip ? "" : get_socket_name(sock),
324 get_socket_addr(sock)));
328 if (deny_list) free(deny_list);
329 if (allow_list) free(allow_list);
331 return(ret);