Forward port the change to talloc_init() to make all talloc contexts
[kai/samba.git] / source3 / nsswitch / winbindd_util.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    Winbind daemon for ntdom nss module
5
6    Copyright (C) Tim Potter 2000-2001
7    Copyright (C) 2001 by Martin Pool <mbp@samba.org>
8    
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13    
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18    
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
24 #include "winbindd.h"
25
26 #undef DBGC_CLASS
27 #define DBGC_CLASS DBGC_WINBIND
28
29 /**
30  * @file winbindd_util.c
31  *
32  * Winbind daemon for NT domain authentication nss module.
33  **/
34
35
36 /**
37  * Used to clobber name fields that have an undefined value.
38  *
39  * Correct code should never look at a field that has this value.
40  **/
41
42 static const fstring name_deadbeef = "<deadbeef>";
43
44 /* The list of trusted domains.  Note that the list can be deleted and
45    recreated using the init_domain_list() function so pointers to
46    individual winbindd_domain structures cannot be made.  Keep a copy of
47    the domain name instead. */
48
49 static struct winbindd_domain *_domain_list;
50
51 struct winbindd_domain *domain_list(void)
52 {
53         /* Initialise list */
54
55         if (!_domain_list)
56                 init_domain_list();
57
58         return _domain_list;
59 }
60
61 /* Free all entries in the trusted domain list */
62
63 void free_domain_list(void)
64 {
65         struct winbindd_domain *domain = _domain_list;
66
67         while(domain) {
68                 struct winbindd_domain *next = domain->next;
69                 
70                 DLIST_REMOVE(_domain_list, domain);
71                 SAFE_FREE(domain);
72                 domain = next;
73         }
74 }
75
76
77 /* Add a trusted domain to our list of domains */
78 static struct winbindd_domain *add_trusted_domain(const char *domain_name, const char *alt_name,
79                                                   struct winbindd_methods *methods,
80                                                   DOM_SID *sid)
81 {
82         struct winbindd_domain *domain;
83         
84         /* We can't call domain_list() as this function is called from
85            init_domain_list() and we'll get stuck in a loop. */
86         for (domain = _domain_list; domain; domain = domain->next) {
87                 if (strcasecmp(domain_name, domain->name) == 0 ||
88                     strcasecmp(domain_name, domain->alt_name) == 0) {
89                         return domain;
90                 }
91                 if (alt_name && *alt_name) {
92                         if (strcasecmp(alt_name, domain->name) == 0 ||
93                             strcasecmp(alt_name, domain->alt_name) == 0) {
94                                 return domain;
95                         }
96                 }
97         }
98         
99         /* Create new domain entry */
100
101         if ((domain = (struct winbindd_domain *)
102              malloc(sizeof(*domain))) == NULL)
103                 return NULL;
104
105         /* Fill in fields */
106         
107         ZERO_STRUCTP(domain);
108
109         /* prioritise the short name */
110         if (strchr_m(domain_name, '.') && alt_name && *alt_name) {
111                 fstrcpy(domain->name, alt_name);
112                 fstrcpy(domain->alt_name, domain_name);
113         } else {
114         fstrcpy(domain->name, domain_name);
115                 if (alt_name) {
116                         fstrcpy(domain->alt_name, alt_name);
117                 }
118         }
119
120         domain->methods = methods;
121         domain->sequence_number = DOM_SEQUENCE_NONE;
122         domain->last_seq_check = 0;
123         if (sid) {
124                 sid_copy(&domain->sid, sid);
125         }
126         
127         /* see if this is a native mode win2k domain, but only for our own domain */
128            
129         if ( strequal( lp_workgroup(), domain_name) )   {
130                 domain->native_mode = cm_check_for_native_mode_win2k( domain_name );
131                 DEBUG(3,("add_trusted_domain: %s is a %s mode domain\n", domain_name,
132                                         domain->native_mode ? "native" : "mixed" ));
133         }       
134
135         /* Link to domain list */
136         DLIST_ADD(_domain_list, domain);
137         
138         DEBUG(1,("Added domain %s %s %s\n", 
139                  domain->name, domain->alt_name,
140                  sid?sid_string_static(&domain->sid):""));
141         
142         return domain;
143 }
144
145
146 /*
147   rescan our domains looking for new trusted domains
148  */
149 void rescan_trusted_domains(void)
150 {
151         struct winbindd_domain *domain;
152         TALLOC_CTX *mem_ctx;
153         static time_t last_scan;
154         time_t t = time(NULL);
155
156         /* trusted domains might be disabled */
157         if (!lp_allow_trusted_domains()) {
158                 return;
159         }
160         
161         /* ony rescan every few minutes */
162         if ((unsigned)(t - last_scan) < WINBINDD_RESCAN_FREQ) {
163                 return;
164         }
165         last_scan = t;
166
167         DEBUG(1, ("scanning trusted domain list\n"));
168
169         if (!(mem_ctx = talloc_init("init_domain_list")))
170                 return;
171
172         for (domain = _domain_list; domain; domain = domain->next) {
173                 NTSTATUS result;
174                 char **names;
175                 char **alt_names;
176                 int num_domains = 0;
177                 DOM_SID *dom_sids;
178                 int i;
179
180                 result = domain->methods->trusted_domains(domain, mem_ctx, &num_domains,
181                                                           &names, &alt_names, &dom_sids);
182                 if (!NT_STATUS_IS_OK(result)) {
183                         continue;
184                 }
185
186                 /* Add each domain to the trusted domain list. Each domain inherits
187                    the access methods of its parent */
188                 for(i = 0; i < num_domains; i++) {
189                         DEBUG(10,("Found domain %s\n", names[i]));
190                         add_trusted_domain(names[i], alt_names?alt_names[i]:NULL,
191                                            domain->methods, &dom_sids[i]);
192                         
193                         /* store trusted domain in the cache */
194                         trustdom_cache_store(names[i], alt_names ? alt_names[i] : NULL,
195                                              &dom_sids[i], t + WINBINDD_RESCAN_FREQ);
196                 }
197         }
198
199         talloc_destroy(mem_ctx);
200 }
201
202 /* Look up global info for the winbind daemon */
203 BOOL init_domain_list(void)
204 {
205         NTSTATUS result;
206         extern struct winbindd_methods cache_methods;
207         struct winbindd_domain *domain;
208
209         /* Free existing list */
210         free_domain_list();
211
212         /* Add ourselves as the first entry */
213         domain = add_trusted_domain(lp_workgroup(), NULL, &cache_methods, NULL);
214
215         /* 
216          * Now we *must* get the domain sid for our primary domain. Go into
217          * a holding pattern until that is available
218          */
219
220         result = cache_methods.domain_sid(domain, &domain->sid);
221         while (!NT_STATUS_IS_OK(result)) {
222
223                 sleep(10);
224                 DEBUG(1,("Retrying startup domain sid fetch for %s\n",
225                          domain->name));
226                 result = cache_methods.domain_sid(domain, &domain->sid);
227
228                 /* If we don't call lp_talloc_free() here we end up 
229                    accumulating memory in the "global" lp_talloc in
230                    param/loadparm.c */
231
232                 lp_talloc_free();
233         }
234        
235         /* get any alternate name for the primary domain */
236         cache_methods.alternate_name(domain);
237
238         /* do an initial scan for trusted domains */
239         rescan_trusted_domains();
240
241         return True;
242 }
243
244 /* Given a domain name, return the struct winbindd domain info for it 
245    if it is actually working. */
246
247 struct winbindd_domain *find_domain_from_name(const char *domain_name)
248 {
249         struct winbindd_domain *domain;
250
251         /* Search through list */
252
253         for (domain = domain_list(); domain != NULL; domain = domain->next) {
254                 if (strequal(domain_name, domain->name) ||
255                     (domain->alt_name[0] && strequal(domain_name, domain->alt_name)))
256                         return domain;
257         }
258
259         /* Not found */
260
261         return NULL;
262 }
263
264 /* Given a domain sid, return the struct winbindd domain info for it */
265
266 struct winbindd_domain *find_domain_from_sid(DOM_SID *sid)
267 {
268         struct winbindd_domain *domain;
269
270         /* Search through list */
271
272         for (domain = domain_list(); domain != NULL; domain = domain->next) {
273                 if (sid_compare_domain(sid, &domain->sid) == 0)
274                         return domain;
275         }
276
277         /* Not found */
278
279         return NULL;
280 }
281
282 /* Lookup a sid in a domain from a name */
283
284 BOOL winbindd_lookup_sid_by_name(struct winbindd_domain *domain, 
285                                  const char *name, DOM_SID *sid, 
286                                  enum SID_NAME_USE *type)
287 {
288         NTSTATUS result;
289         
290         /* Don't bother with machine accounts */
291         
292         if (name[strlen(name) - 1] == '$')
293                 return False;
294
295         /* Lookup name */
296         result = domain->methods->name_to_sid(domain, name, sid, type);
297         
298         /* Return rid and type if lookup successful */
299         if (!NT_STATUS_IS_OK(result)) {
300                 *type = SID_NAME_UNKNOWN;
301         }
302
303         return NT_STATUS_IS_OK(result);
304 }
305
306 /**
307  * @brief Lookup a name in a domain from a sid.
308  *
309  * @param sid Security ID you want to look up.
310  *
311  * @param name On success, set to the name corresponding to @p sid.
312  * 
313  * @param dom_name On success, set to the 'domain name' corresponding to @p sid.
314  * 
315  * @param type On success, contains the type of name: alias, group or
316  * user.
317  *
318  * @retval True if the name exists, in which case @p name and @p type
319  * are set, otherwise False.
320  **/
321 BOOL winbindd_lookup_name_by_sid(DOM_SID *sid,
322                                  fstring dom_name,
323                                  fstring name,
324                                  enum SID_NAME_USE *type)
325 {
326         char *names;
327         NTSTATUS result;
328         TALLOC_CTX *mem_ctx;
329         BOOL rv = False;
330         struct winbindd_domain *domain;
331
332         domain = find_domain_from_sid(sid);
333
334         if (!domain) {
335                 DEBUG(1,("Can't find domain from sid\n"));
336                 return False;
337         }
338
339         /* Lookup name */
340
341         if (!(mem_ctx = talloc_init("winbindd_lookup_name_by_sid")))
342                 return False;
343         
344         result = domain->methods->sid_to_name(domain, mem_ctx, sid, &names, type);
345
346         /* Return name and type if successful */
347         
348         if ((rv = NT_STATUS_IS_OK(result))) {
349                 fstrcpy(dom_name, domain->name);
350                 fstrcpy(name, names);
351         } else {
352                 *type = SID_NAME_UNKNOWN;
353                 fstrcpy(name, name_deadbeef);
354         }
355         
356         talloc_destroy(mem_ctx);
357
358         return rv;
359 }
360
361
362 /* Free state information held for {set,get,end}{pw,gr}ent() functions */
363
364 void free_getent_state(struct getent_state *state)
365 {
366         struct getent_state *temp;
367
368         /* Iterate over state list */
369
370         temp = state;
371
372         while(temp != NULL) {
373                 struct getent_state *next;
374
375                 /* Free sam entries then list entry */
376
377                 SAFE_FREE(state->sam_entries);
378                 DLIST_REMOVE(state, state);
379                 next = temp->next;
380
381                 SAFE_FREE(temp);
382                 temp = next;
383         }
384 }
385
386 /* Parse winbindd related parameters */
387
388 BOOL winbindd_param_init(void)
389 {
390         /* Parse winbind uid and winbind_gid parameters */
391
392         if (!lp_winbind_uid(&server_state.uid_low, &server_state.uid_high)) {
393                 DEBUG(0, ("winbind uid range missing or invalid\n"));
394                 return False;
395         }
396         
397         if (!lp_winbind_gid(&server_state.gid_low, &server_state.gid_high)) {
398                 DEBUG(0, ("winbind gid range missing or invalid\n"));
399                 return False;
400         }
401         
402         return True;
403 }
404
405 /* Check if a domain is present in a comma-separated list of domains */
406
407 BOOL check_domain_env(char *domain_env, char *domain)
408 {
409         fstring name;
410         const char *tmp = domain_env;
411
412         while(next_token(&tmp, name, ",", sizeof(fstring))) {
413                 if (strequal(name, domain))
414                         return True;
415         }
416
417         return False;
418 }
419
420 /* Parse a string of the form DOMAIN/user into a domain and a user */
421
422 BOOL parse_domain_user(const char *domuser, fstring domain, fstring user)
423 {
424         char *p = strchr(domuser,*lp_winbind_separator());
425
426         if (!(p || lp_winbind_use_default_domain()))
427                 return False;
428         
429         if(!p && lp_winbind_use_default_domain()) {
430                 fstrcpy(user, domuser);
431                 fstrcpy(domain, lp_workgroup());
432         } else {
433                 fstrcpy(user, p+1);
434                 fstrcpy(domain, domuser);
435                 domain[PTR_DIFF(p, domuser)] = 0;
436         }
437         strupper(domain);
438         return True;
439 }
440
441 /*
442     Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
443     'winbind separator' options.
444     This means:
445         - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
446         lp_workgroup
447          
448 */
449 void fill_domain_username(fstring name, const char *domain, const char *user)
450 {
451         if(lp_winbind_use_default_domain() &&
452             !strcmp(lp_workgroup(), domain)) {
453                 strlcpy(name, user, sizeof(fstring));
454         } else {
455                 slprintf(name, sizeof(fstring) - 1, "%s%s%s",
456                          domain, lp_winbind_separator(),
457                          user);
458         }
459 }
460
461 /*
462  * Winbindd socket accessor functions
463  */
464
465 /* Open the winbindd socket */
466
467 static int _winbindd_socket = -1;
468
469 int open_winbindd_socket(void)
470 {
471         if (_winbindd_socket == -1) {
472                 _winbindd_socket = create_pipe_sock(
473                         WINBINDD_SOCKET_DIR, WINBINDD_SOCKET_NAME, 0755);
474                 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
475                            _winbindd_socket));
476         }
477
478         return _winbindd_socket;
479 }
480
481 /* Close the winbindd socket */
482
483 void close_winbindd_socket(void)
484 {
485         if (_winbindd_socket != -1) {
486                 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
487                            _winbindd_socket));
488                 close(_winbindd_socket);
489                 _winbindd_socket = -1;
490         }
491 }
492
493 /*
494  * Client list accessor functions
495  */
496
497 static struct winbindd_cli_state *_client_list;
498 static int _num_clients;
499
500 /* Return list of all connected clients */
501
502 struct winbindd_cli_state *winbindd_client_list(void)
503 {
504         return _client_list;
505 }
506
507 /* Add a connection to the list */
508
509 void winbindd_add_client(struct winbindd_cli_state *cli)
510 {
511         DLIST_ADD(_client_list, cli);
512         _num_clients++;
513 }
514
515 /* Remove a client from the list */
516
517 void winbindd_remove_client(struct winbindd_cli_state *cli)
518 {
519         DLIST_REMOVE(_client_list, cli);
520         _num_clients--;
521 }
522
523 /* Close all open clients */
524
525 void winbindd_kill_all_clients(void)
526 {
527         struct winbindd_cli_state *cl = winbindd_client_list();
528
529         DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
530
531         while (cl) {
532                 struct winbindd_cli_state *next;
533                 
534                 next = cl->next;
535                 winbindd_remove_client(cl);
536                 cl = next;
537         }
538 }
539
540 /* Return number of open clients */
541
542 int winbindd_num_clients(void)
543 {
544         return _num_clients;
545 }