Explain why winbindd is exiting.
[vlendec/samba-autobuild/.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->backend = NULL;
122         domain->sequence_number = DOM_SEQUENCE_NONE;
123         domain->last_seq_check = 0;
124         if (sid) {
125                 sid_copy(&domain->sid, sid);
126         }
127         
128         /* see if this is a native mode win2k domain */
129            
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 (or NT4)" ));
133
134         /* Link to domain list */
135         DLIST_ADD(_domain_list, domain);
136         
137         DEBUG(1,("Added domain %s %s %s\n", 
138                  domain->name, domain->alt_name,
139                  sid?sid_string_static(&domain->sid):""));
140         
141         return domain;
142 }
143
144
145 /*
146   rescan our domains looking for new trusted domains
147  */
148 void rescan_trusted_domains(BOOL force)
149 {
150         struct winbindd_domain *domain;
151         TALLOC_CTX *mem_ctx;
152         static time_t last_scan;
153         time_t t = time(NULL);
154
155         /* trusted domains might be disabled */
156         if (!lp_allow_trusted_domains()) {
157                 return;
158         }
159
160         /* Only rescan every few minutes but force if necessary */
161
162         if (((unsigned)(t - last_scan) < WINBINDD_RESCAN_FREQ) && !force)
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         extern struct winbindd_methods cache_methods;
206         struct winbindd_domain *domain;
207
208         /* Free existing list */
209         free_domain_list();
210
211         /* Add ourselves as the first entry */
212         domain = add_trusted_domain(lp_workgroup(), NULL, &cache_methods, NULL);
213         if (!secrets_fetch_domain_sid(domain->name, &domain->sid)) {
214                 DEBUG(1, ("Could not fetch sid for our domain %s\n",
215                           domain->name));
216                 return False;
217         }
218
219         /* get any alternate name for the primary domain */
220         cache_methods.alternate_name(domain);
221
222         /* do an initial scan for trusted domains */
223         rescan_trusted_domains(True);
224
225         return True;
226 }
227
228 /* Given a domain name, return the struct winbindd domain info for it 
229    if it is actually working. */
230
231 struct winbindd_domain *find_domain_from_name(const char *domain_name)
232 {
233         struct winbindd_domain *domain;
234
235         /* Search through list */
236
237         for (domain = domain_list(); domain != NULL; domain = domain->next) {
238                 if (strequal(domain_name, domain->name) ||
239                     (domain->alt_name[0] && strequal(domain_name, domain->alt_name)))
240                         return domain;
241         }
242
243         /* Not found */
244
245         return NULL;
246 }
247
248 /* Given a domain sid, return the struct winbindd domain info for it */
249
250 struct winbindd_domain *find_domain_from_sid(DOM_SID *sid)
251 {
252         struct winbindd_domain *domain;
253
254         /* Search through list */
255
256         for (domain = domain_list(); domain != NULL; domain = domain->next) {
257                 if (sid_compare_domain(sid, &domain->sid) == 0)
258                         return domain;
259         }
260
261         /* Not found */
262
263         return NULL;
264 }
265
266 /* Lookup a sid in a domain from a name */
267
268 BOOL winbindd_lookup_sid_by_name(struct winbindd_domain *domain, 
269                                  const char *name, DOM_SID *sid, 
270                                  enum SID_NAME_USE *type)
271 {
272         NTSTATUS result;
273         TALLOC_CTX *mem_ctx;
274         /* Don't bother with machine accounts */
275
276         if (name[strlen(name) - 1] == '$')
277                 return False;
278
279         mem_ctx = talloc_init("lookup_sid_by_name for %s\n", name);
280         if (!mem_ctx) 
281                 return False;
282         
283         /* Lookup name */
284         result = domain->methods->name_to_sid(domain, mem_ctx, name, sid, type);
285
286         talloc_destroy(mem_ctx);
287         
288         /* Return rid and type if lookup successful */
289         if (!NT_STATUS_IS_OK(result)) {
290                 *type = SID_NAME_UNKNOWN;
291         }
292
293         return NT_STATUS_IS_OK(result);
294 }
295
296 /**
297  * @brief Lookup a name in a domain from a sid.
298  *
299  * @param sid Security ID you want to look up.
300  *
301  * @param name On success, set to the name corresponding to @p sid.
302  * 
303  * @param dom_name On success, set to the 'domain name' corresponding to @p sid.
304  * 
305  * @param type On success, contains the type of name: alias, group or
306  * user.
307  *
308  * @retval True if the name exists, in which case @p name and @p type
309  * are set, otherwise False.
310  **/
311 BOOL winbindd_lookup_name_by_sid(DOM_SID *sid,
312                                  fstring dom_name,
313                                  fstring name,
314                                  enum SID_NAME_USE *type)
315 {
316         char *names;
317         NTSTATUS result;
318         TALLOC_CTX *mem_ctx;
319         BOOL rv = False;
320         struct winbindd_domain *domain;
321
322         domain = find_domain_from_sid(sid);
323
324         if (!domain) {
325                 DEBUG(1,("Can't find domain from sid\n"));
326                 return False;
327         }
328
329         /* Lookup name */
330
331         if (!(mem_ctx = talloc_init("winbindd_lookup_name_by_sid")))
332                 return False;
333         
334         result = domain->methods->sid_to_name(domain, mem_ctx, sid, &names, type);
335
336         /* Return name and type if successful */
337         
338         if ((rv = NT_STATUS_IS_OK(result))) {
339                 fstrcpy(dom_name, domain->name);
340                 fstrcpy(name, names);
341         } else {
342                 *type = SID_NAME_UNKNOWN;
343                 fstrcpy(name, name_deadbeef);
344         }
345         
346         talloc_destroy(mem_ctx);
347
348         return rv;
349 }
350
351
352 /* Free state information held for {set,get,end}{pw,gr}ent() functions */
353
354 void free_getent_state(struct getent_state *state)
355 {
356         struct getent_state *temp;
357
358         /* Iterate over state list */
359
360         temp = state;
361
362         while(temp != NULL) {
363                 struct getent_state *next;
364
365                 /* Free sam entries then list entry */
366
367                 SAFE_FREE(state->sam_entries);
368                 DLIST_REMOVE(state, state);
369                 next = temp->next;
370
371                 SAFE_FREE(temp);
372                 temp = next;
373         }
374 }
375
376 /* Parse winbindd related parameters */
377
378 BOOL winbindd_param_init(void)
379 {
380         /* Parse winbind uid and winbind_gid parameters */
381
382         if (!lp_idmap_uid(&server_state.uid_low, &server_state.uid_high)) {
383                 DEBUG(0, ("winbindd: idmap uid range missing or invalid\n"));
384                 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
385                 return False;
386         }
387         
388         if (!lp_idmap_gid(&server_state.gid_low, &server_state.gid_high)) {
389                 DEBUG(0, ("winbindd: idmap gid range missing or invalid\n"));
390                 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
391                 return False;
392         }
393         
394         return True;
395 }
396
397 /* Check if a domain is present in a comma-separated list of domains */
398
399 BOOL check_domain_env(char *domain_env, char *domain)
400 {
401         fstring name;
402         const char *tmp = domain_env;
403
404         while(next_token(&tmp, name, ",", sizeof(fstring))) {
405                 if (strequal(name, domain))
406                         return True;
407         }
408
409         return False;
410 }
411
412 /* Parse a string of the form DOMAIN/user into a domain and a user */
413
414 BOOL parse_domain_user(const char *domuser, fstring domain, fstring user)
415 {
416         char *p = strchr(domuser,*lp_winbind_separator());
417
418         if (!(p || lp_winbind_use_default_domain()))
419                 return False;
420         
421         if(!p && lp_winbind_use_default_domain()) {
422                 fstrcpy(user, domuser);
423                 fstrcpy(domain, lp_workgroup());
424         } else {
425                 fstrcpy(user, p+1);
426                 fstrcpy(domain, domuser);
427                 domain[PTR_DIFF(p, domuser)] = 0;
428         }
429         strupper(domain);
430         return True;
431 }
432
433 /*
434     Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
435     'winbind separator' options.
436     This means:
437         - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
438         lp_workgroup
439          
440 */
441 void fill_domain_username(fstring name, const char *domain, const char *user)
442 {
443         if(lp_winbind_use_default_domain() &&
444             !strcmp(lp_workgroup(), domain)) {
445                 strlcpy(name, user, sizeof(fstring));
446         } else {
447                 slprintf(name, sizeof(fstring) - 1, "%s%s%s",
448                          domain, lp_winbind_separator(),
449                          user);
450         }
451 }
452
453 /*
454  * Winbindd socket accessor functions
455  */
456
457 char *get_winbind_priv_pipe_dir(void) 
458 {
459         return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR);
460 }
461
462 /* Open the winbindd socket */
463
464 static int _winbindd_socket = -1;
465 static int _winbindd_priv_socket = -1;
466
467 int open_winbindd_socket(void)
468 {
469         if (_winbindd_socket == -1) {
470                 _winbindd_socket = create_pipe_sock(
471                         WINBINDD_SOCKET_DIR, WINBINDD_SOCKET_NAME, 0755);
472                 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
473                            _winbindd_socket));
474         }
475
476         return _winbindd_socket;
477 }
478
479 int open_winbindd_priv_socket(void)
480 {
481         if (_winbindd_priv_socket == -1) {
482                 _winbindd_priv_socket = create_pipe_sock(
483                         get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME, 0750);
484                 DEBUG(10, ("open_winbindd_priv_socket: opened socket fd %d\n",
485                            _winbindd_priv_socket));
486         }
487
488         return _winbindd_priv_socket;
489 }
490
491 /* Close the winbindd socket */
492
493 void close_winbindd_socket(void)
494 {
495         if (_winbindd_socket != -1) {
496                 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
497                            _winbindd_socket));
498                 close(_winbindd_socket);
499                 _winbindd_socket = -1;
500         }
501         if (_winbindd_priv_socket != -1) {
502                 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
503                            _winbindd_priv_socket));
504                 close(_winbindd_priv_socket);
505                 _winbindd_priv_socket = -1;
506         }
507 }
508
509 /*
510  * Client list accessor functions
511  */
512
513 static struct winbindd_cli_state *_client_list;
514 static int _num_clients;
515
516 /* Return list of all connected clients */
517
518 struct winbindd_cli_state *winbindd_client_list(void)
519 {
520         return _client_list;
521 }
522
523 /* Add a connection to the list */
524
525 void winbindd_add_client(struct winbindd_cli_state *cli)
526 {
527         DLIST_ADD(_client_list, cli);
528         _num_clients++;
529 }
530
531 /* Remove a client from the list */
532
533 void winbindd_remove_client(struct winbindd_cli_state *cli)
534 {
535         DLIST_REMOVE(_client_list, cli);
536         _num_clients--;
537 }
538
539 /* Close all open clients */
540
541 void winbindd_kill_all_clients(void)
542 {
543         struct winbindd_cli_state *cl = winbindd_client_list();
544
545         DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
546
547         while (cl) {
548                 struct winbindd_cli_state *next;
549                 
550                 next = cl->next;
551                 winbindd_remove_client(cl);
552                 cl = next;
553         }
554 }
555
556 /* Return number of open clients */
557
558 int winbindd_num_clients(void)
559 {
560         return _num_clients;
561 }
562
563 /* Help with RID -> SID conversion */
564
565 DOM_SID *rid_to_talloced_sid(struct winbindd_domain *domain,
566                                     TALLOC_CTX *mem_ctx,
567                                     uint32 rid) 
568 {
569         DOM_SID *sid;
570         sid = talloc(mem_ctx, sizeof(*sid));
571         if (!sid) {
572                 smb_panic("rid_to_to_talloced_sid: talloc for DOM_SID failed!\n");
573         }
574         sid_copy(sid, &domain->sid);
575         sid_append_rid(sid, rid);
576         return sid;
577 }
578         
579 /*****************************************************************************
580  For idmap conversion: convert one record to new format
581  Ancient versions (eg 2.2.3a) of winbindd_idmap.tdb mapped DOMAINNAME/rid
582  instead of the SID.
583 *****************************************************************************/
584 static int convert_fn(TDB_CONTEXT *tdb, TDB_DATA key, TDB_DATA data, void *state)
585 {
586         struct winbindd_domain *domain;
587         char *p;
588         DOM_SID sid;
589         uint32 rid;
590         fstring keystr;
591         fstring dom_name;
592         TDB_DATA key2;
593         BOOL *failed = (BOOL *)state;
594
595         DEBUG(10,("Converting %s\n", key.dptr));
596
597         p = strchr(key.dptr, '/');
598         if (!p)
599                 return 0;
600
601         *p = 0;
602         fstrcpy(dom_name, key.dptr);
603         *p++ = '/';
604
605         domain = find_domain_from_name(dom_name);
606         if (domain == NULL) {
607                 /* We must delete the old record. */
608                 DEBUG(0,("Unable to find domain %s\n", dom_name ));
609                 DEBUG(0,("deleting record %s\n", key.dptr ));
610
611                 if (tdb_delete(tdb, key) != 0) {
612                         DEBUG(0, ("Unable to delete record %s\n", key.dptr));
613                         *failed = True;
614                         return -1;
615                 }
616
617                 return 0;
618         }
619
620         rid = atoi(p);
621
622         sid_copy(&sid, &domain->sid);
623         sid_append_rid(&sid, rid);
624
625         sid_to_string(keystr, &sid);
626         key2.dptr = keystr;
627         key2.dsize = strlen(keystr) + 1;
628
629         if (tdb_store(tdb, key2, data, TDB_INSERT) != 0) {
630                 DEBUG(0,("Unable to add record %s\n", key2.dptr ));
631                 *failed = True;
632                 return -1;
633         }
634
635         if (tdb_store(tdb, data, key2, TDB_REPLACE) != 0) {
636                 DEBUG(0,("Unable to update record %s\n", data.dptr ));
637                 *failed = True;
638                 return -1;
639         }
640
641         if (tdb_delete(tdb, key) != 0) {
642                 DEBUG(0,("Unable to delete record %s\n", key.dptr ));
643                 *failed = True;
644                 return -1;
645         }
646
647         return 0;
648 }
649
650 /* These definitions are from sam/idmap_tdb.c. Replicated here just
651    out of laziness.... :-( */
652
653 /* High water mark keys */
654 #define HWM_GROUP  "GROUP HWM"
655 #define HWM_USER   "USER HWM"
656
657 /* idmap version determines auto-conversion */
658 #define IDMAP_VERSION 2
659
660
661 /*****************************************************************************
662  Convert the idmap database from an older version.
663 *****************************************************************************/
664
665 static BOOL idmap_convert(const char *idmap_name)
666 {
667         int32 vers;
668         BOOL bigendianheader;
669         BOOL failed = False;
670         TDB_CONTEXT *idmap_tdb;
671
672         if (!(idmap_tdb = tdb_open_log(idmap_name, 0,
673                                         TDB_DEFAULT, O_RDWR,
674                                         0600))) {
675                 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
676                 return False;
677         }
678
679         bigendianheader = (idmap_tdb->flags & TDB_BIGENDIAN) ? True : False;
680
681         vers = tdb_fetch_int32(idmap_tdb, "IDMAP_VERSION");
682
683         if (((vers == -1) && bigendianheader) || (IREV(vers) == IDMAP_VERSION)) {
684                 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
685                 /*
686                  * high and low records were created on a
687                  * big endian machine and will need byte-reversing.
688                  */
689
690                 int32 wm;
691
692                 wm = tdb_fetch_int32(idmap_tdb, HWM_USER);
693
694                 if (wm != -1) {
695                         wm = IREV(wm);
696                 }  else {
697                         wm = server_state.uid_low;
698                 }
699
700                 if (tdb_store_int32(idmap_tdb, HWM_USER, wm) == -1) {
701                         DEBUG(0, ("idmap_convert: Unable to byteswap user hwm in idmap database\n"));
702                         tdb_close(idmap_tdb);
703                         return False;
704                 }
705
706                 wm = tdb_fetch_int32(idmap_tdb, HWM_GROUP);
707                 if (wm != -1) {
708                         wm = IREV(wm);
709                 } else {
710                         wm = server_state.gid_low;
711                 }
712
713                 if (tdb_store_int32(idmap_tdb, HWM_GROUP, wm) == -1) {
714                         DEBUG(0, ("idmap_convert: Unable to byteswap group hwm in idmap database\n"));
715                         tdb_close(idmap_tdb);
716                         return False;
717                 }
718         }
719
720         /* the old format stored as DOMAIN/rid - now we store the SID direct */
721         tdb_traverse(idmap_tdb, convert_fn, &failed);
722
723         if (failed) {
724                 DEBUG(0, ("Problem during conversion\n"));
725                 tdb_close(idmap_tdb);
726                 return False;
727         }
728
729         if (tdb_store_int32(idmap_tdb, "IDMAP_VERSION", IDMAP_VERSION) == -1) {
730                 DEBUG(0, ("idmap_convert: Unable to dtore idmap version in databse\n"));
731                 tdb_close(idmap_tdb);
732                 return False;
733         }
734
735         tdb_close(idmap_tdb);
736         return True;
737 }
738
739 /*****************************************************************************
740  Convert the idmap database from an older version if necessary
741 *****************************************************************************/
742
743 BOOL winbindd_upgrade_idmap(void)
744 {
745         pstring idmap_name;
746         pstring backup_name;
747         SMB_STRUCT_STAT stbuf;
748         TDB_CONTEXT *idmap_tdb;
749
750         pstrcpy(idmap_name, lock_path("winbindd_idmap.tdb"));
751
752         if (!file_exist(idmap_name, &stbuf)) {
753                 /* nothing to convert return */
754                 return True;
755         }
756
757         if (!(idmap_tdb = tdb_open_log(idmap_name, 0,
758                                         TDB_DEFAULT, O_RDWR,
759                                         0600))) {
760                 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
761                 return False;
762         }
763
764         if (tdb_fetch_int32(idmap_tdb, "IDMAP_VERSION") == IDMAP_VERSION) {
765                 /* nothing to convert return */
766                 tdb_close(idmap_tdb);
767                 return True;
768         }
769
770         /* backup_tdb expects the tdb not to be open */
771         tdb_close(idmap_tdb);
772
773         DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
774
775         pstrcpy(backup_name, idmap_name);
776         pstrcat(backup_name, ".bak");
777
778         if (backup_tdb(idmap_name, backup_name) != 0) {
779                 DEBUG(0, ("Could not backup idmap database\n"));
780                 return False;
781         }
782
783         return idmap_convert(idmap_name);
784 }