2 Unix SMB/CIFS implementation.
4 Winbind daemon for ntdom nss module
6 Copyright (C) Tim Potter 2000-2001
7 Copyright (C) 2001 by Martin Pool <mbp@samba.org>
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.
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.
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.
27 #define DBGC_CLASS DBGC_WINBIND
30 * @file winbindd_util.c
32 * Winbind daemon for NT domain authentication nss module.
37 * Used to clobber name fields that have an undefined value.
39 * Correct code should never look at a field that has this value.
42 static const fstring name_deadbeef
= "<deadbeef>";
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. */
49 static struct winbindd_domain
*_domain_list
;
51 struct winbindd_domain
*domain_list(void)
56 if (!init_domain_list())
62 /* Free all entries in the trusted domain list */
64 void free_domain_list(void)
66 struct winbindd_domain
*domain
= _domain_list
;
69 struct winbindd_domain
*next
= domain
->next
;
71 DLIST_REMOVE(_domain_list
, domain
);
78 /* Add a trusted domain to our list of domains */
79 static struct winbindd_domain
*add_trusted_domain(const char *domain_name
, const char *alt_name
,
80 struct winbindd_methods
*methods
,
83 struct winbindd_domain
*domain
;
85 const char *alternative_name
= NULL
;
87 /* ignore alt_name if we are not in an AD domain */
89 if ( (lp_security() == SEC_ADS
) && alt_name
&& *alt_name
) {
90 alternative_name
= alt_name
;
93 /* We can't call domain_list() as this function is called from
94 init_domain_list() and we'll get stuck in a loop. */
95 for (domain
= _domain_list
; domain
; domain
= domain
->next
) {
96 if (strequal(domain_name
, domain
->name
) ||
97 strequal(domain_name
, domain
->alt_name
)) {
100 if (alternative_name
&& *alternative_name
) {
101 if (strequal(alternative_name
, domain
->name
) ||
102 strequal(alternative_name
, domain
->alt_name
)) {
108 /* Create new domain entry */
110 if ((domain
= (struct winbindd_domain
*)
111 malloc(sizeof(*domain
))) == NULL
)
116 ZERO_STRUCTP(domain
);
118 /* prioritise the short name */
119 if (strchr_m(domain_name
, '.') && alternative_name
&& *alternative_name
) {
120 fstrcpy(domain
->name
, alternative_name
);
121 fstrcpy(domain
->alt_name
, domain_name
);
123 fstrcpy(domain
->name
, domain_name
);
124 if (alternative_name
) {
125 fstrcpy(domain
->alt_name
, alternative_name
);
129 domain
->methods
= methods
;
130 domain
->backend
= NULL
;
131 domain
->sequence_number
= DOM_SEQUENCE_NONE
;
132 domain
->last_seq_check
= 0;
134 sid_copy(&domain
->sid
, sid
);
137 /* see if this is a native mode win2k domain (use realm name if possible) */
139 contact_name
= *domain
->alt_name
? domain
->alt_name
: domain
->name
;
140 domain
->native_mode
= cm_check_for_native_mode_win2k( contact_name
);
142 DEBUG(3,("add_trusted_domain: %s is a %s mode domain\n", contact_name
,
143 domain
->native_mode
? "native" : "mixed (or NT4)" ));
145 /* Link to domain list */
146 DLIST_ADD(_domain_list
, domain
);
148 DEBUG(1,("Added domain %s %s %s\n",
149 domain
->name
, domain
->alt_name
,
150 sid
?sid_string_static(&domain
->sid
):""));
155 /********************************************************************
156 Periodically we need to refresh the trusted domain cache for smbd
157 ********************************************************************/
159 void rescan_trusted_domains( void )
161 static time_t last_scan
;
162 time_t now
= time(NULL
);
163 struct winbindd_domain
*mydomain
= NULL
;
165 /* see if the time has come... */
167 if ( (now
> last_scan
) && ((now
-last_scan
) < WINBINDD_RESCAN_FREQ
) )
170 if ( (mydomain
= find_our_domain()) == NULL
) {
171 DEBUG(0,("rescan_trusted_domains: Can't find my own domain!\n"));
175 /* this will only add new domains we didn't already know about */
177 add_trusted_domains( mydomain
);
184 /********************************************************************
185 rescan our domains looking for new trusted domains
186 ********************************************************************/
188 void add_trusted_domains( struct winbindd_domain
*domain
)
196 DOM_SID
*dom_sids
, null_sid
;
198 struct winbindd_domain
*new_domain
;
200 /* trusted domains might be disabled */
201 if (!lp_allow_trusted_domains()) {
205 DEBUG(1, ("scanning trusted domain list\n"));
207 if (!(mem_ctx
= talloc_init("init_domain_list")))
210 ZERO_STRUCTP(&null_sid
);
214 /* ask the DC what domains it trusts */
216 result
= domain
->methods
->trusted_domains(domain
, mem_ctx
, (unsigned int *)&num_domains
,
217 &names
, &alt_names
, &dom_sids
);
219 if ( NT_STATUS_IS_OK(result
) ) {
221 /* Add each domain to the trusted domain list */
223 for(i
= 0; i
< num_domains
; i
++) {
224 DEBUG(10,("Found domain %s\n", names
[i
]));
225 add_trusted_domain(names
[i
], alt_names
?alt_names
[i
]:NULL
,
226 domain
->methods
, &dom_sids
[i
]);
228 /* if the SID was empty, we better set it now */
230 if ( sid_equal(&dom_sids
[i
], &null_sid
) ) {
232 new_domain
= find_domain_from_name(names
[i
]);
234 /* this should never happen */
236 DEBUG(0,("rescan_trust_domains: can't find the domain I just added! [%s]\n",
241 /* call the cache method; which will operate on the winbindd_domain \
242 passed in and choose either rpc or ads as appropriate */
244 result
= domain
->methods
->domain_sid( new_domain
, &new_domain
->sid
);
246 if ( NT_STATUS_IS_OK(result
) )
247 sid_copy( &dom_sids
[i
], &new_domain
->sid
);
250 /* store trusted domain in the cache */
251 trustdom_cache_store(names
[i
], alt_names
? alt_names
[i
] : NULL
,
252 &dom_sids
[i
], t
+ WINBINDD_RESCAN_FREQ
);
256 talloc_destroy(mem_ctx
);
259 /* Look up global info for the winbind daemon */
260 BOOL
init_domain_list(void)
262 extern struct winbindd_methods cache_methods
;
263 struct winbindd_domain
*domain
;
265 /* Free existing list */
268 /* Add ourselves as the first entry. It *must* be the first entry */
270 domain
= add_trusted_domain( lp_workgroup(), lp_realm(), &cache_methods
, NULL
);
272 domain
->primary
= True
;
274 /* get any alternate name for the primary domain */
276 cache_methods
.alternate_name(domain
);
278 /* now we have the correct netbios (short) domain name */
281 set_global_myworkgroup( domain
->name
);
283 if (!secrets_fetch_domain_sid(domain
->name
, &domain
->sid
)) {
284 DEBUG(1, ("Could not fetch sid for our domain %s\n",
289 /* do an initial scan for trusted domains */
290 add_trusted_domains(domain
);
296 * Given a domain name, return the struct winbindd domain info for it
298 * @note Do *not* pass lp_workgroup() to this function. domain_list
299 * may modify it's value, and free that pointer. Instead, our local
300 * domain may be found by looking at the first entry in domain_list()
304 * @return The domain structure for the named domain, if it is working.
307 struct winbindd_domain
*find_domain_from_name(const char *domain_name
)
309 struct winbindd_domain
*domain
;
311 /* Search through list */
313 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
314 if (strequal(domain_name
, domain
->name
) ||
315 (domain
->alt_name
[0] && strequal(domain_name
, domain
->alt_name
))) {
325 /* Given a domain sid, return the struct winbindd domain info for it */
327 struct winbindd_domain
*find_domain_from_sid(DOM_SID
*sid
)
329 struct winbindd_domain
*domain
;
331 /* Search through list */
333 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
334 if (sid_compare_domain(sid
, &domain
->sid
) == 0)
343 /* Given a domain sid, return the struct winbindd domain info for it */
345 struct winbindd_domain
*find_our_domain()
347 struct winbindd_domain
*domain
;
349 /* Search through list */
351 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
361 /* Lookup a sid in a domain from a name */
363 BOOL
winbindd_lookup_sid_by_name(struct winbindd_domain
*domain
,
364 const char *name
, DOM_SID
*sid
,
365 enum SID_NAME_USE
*type
)
369 /* Don't bother with machine accounts */
371 if (name
[strlen(name
) - 1] == '$')
374 mem_ctx
= talloc_init("lookup_sid_by_name for %s\n", name
);
379 result
= domain
->methods
->name_to_sid(domain
, mem_ctx
, name
, sid
, type
);
381 talloc_destroy(mem_ctx
);
383 /* Return rid and type if lookup successful */
384 if (!NT_STATUS_IS_OK(result
)) {
385 *type
= SID_NAME_UNKNOWN
;
388 return NT_STATUS_IS_OK(result
);
392 * @brief Lookup a name in a domain from a sid.
394 * @param sid Security ID you want to look up.
395 * @param name On success, set to the name corresponding to @p sid.
396 * @param dom_name On success, set to the 'domain name' corresponding to @p sid.
397 * @param type On success, contains the type of name: alias, group or
399 * @retval True if the name exists, in which case @p name and @p type
400 * are set, otherwise False.
402 BOOL
winbindd_lookup_name_by_sid(DOM_SID
*sid
,
405 enum SID_NAME_USE
*type
)
411 struct winbindd_domain
*domain
;
413 domain
= find_domain_from_sid(sid
);
416 DEBUG(1,("Can't find domain from sid\n"));
422 if (!(mem_ctx
= talloc_init("winbindd_lookup_name_by_sid")))
425 result
= domain
->methods
->sid_to_name(domain
, mem_ctx
, sid
, &names
, type
);
427 /* Return name and type if successful */
429 if ((rv
= NT_STATUS_IS_OK(result
))) {
430 fstrcpy(dom_name
, domain
->name
);
431 fstrcpy(name
, names
);
433 *type
= SID_NAME_UNKNOWN
;
434 fstrcpy(name
, name_deadbeef
);
437 talloc_destroy(mem_ctx
);
443 /* Free state information held for {set,get,end}{pw,gr}ent() functions */
445 void free_getent_state(struct getent_state
*state
)
447 struct getent_state
*temp
;
449 /* Iterate over state list */
453 while(temp
!= NULL
) {
454 struct getent_state
*next
;
456 /* Free sam entries then list entry */
458 SAFE_FREE(state
->sam_entries
);
459 DLIST_REMOVE(state
, state
);
467 /* Parse winbindd related parameters */
469 BOOL
winbindd_param_init(void)
471 /* Parse winbind uid and winbind_gid parameters */
473 if (!lp_idmap_uid(&server_state
.uid_low
, &server_state
.uid_high
)) {
474 DEBUG(0, ("winbindd: idmap uid range missing or invalid\n"));
475 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
479 if (!lp_idmap_gid(&server_state
.gid_low
, &server_state
.gid_high
)) {
480 DEBUG(0, ("winbindd: idmap gid range missing or invalid\n"));
481 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
488 /* Check if a domain is present in a comma-separated list of domains */
490 BOOL
check_domain_env(char *domain_env
, char *domain
)
493 const char *tmp
= domain_env
;
495 while(next_token(&tmp
, name
, ",", sizeof(fstring
))) {
496 if (strequal(name
, domain
))
503 /* Is this a domain which we may assume no DOMAIN\ prefix? */
505 static BOOL
assume_domain(const char *domain
) {
506 if ((lp_winbind_use_default_domain()
507 || lp_winbind_trusted_domains_only()) &&
508 strequal(lp_workgroup(), domain
))
511 if (strequal(get_global_sam_name(), domain
))
517 /* Parse a string of the form DOMAIN/user into a domain and a user */
519 BOOL
parse_domain_user(const char *domuser
, fstring domain
, fstring user
)
521 char *p
= strchr(domuser
,*lp_winbind_separator());
524 fstrcpy(user
, domuser
);
526 if ( assume_domain(lp_workgroup())) {
527 fstrcpy(domain
, lp_workgroup());
529 fstrcpy( domain
, get_global_sam_name() );
534 fstrcpy(domain
, domuser
);
535 domain
[PTR_DIFF(p
, domuser
)] = 0;
544 Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
545 'winbind separator' options.
547 - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
550 If we are a PDC or BDC, and this is for our domain, do likewise.
552 Also, if omit DOMAIN if 'winbind trusted domains only = true', as the
553 username is then unqualified in unix
556 void fill_domain_username(fstring name
, const char *domain
, const char *user
)
558 if (assume_domain(domain
)) {
559 strlcpy(name
, user
, sizeof(fstring
));
561 slprintf(name
, sizeof(fstring
) - 1, "%s%s%s",
562 domain
, lp_winbind_separator(),
568 * Winbindd socket accessor functions
571 char *get_winbind_priv_pipe_dir(void)
573 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
576 /* Open the winbindd socket */
578 static int _winbindd_socket
= -1;
579 static int _winbindd_priv_socket
= -1;
581 int open_winbindd_socket(void)
583 if (_winbindd_socket
== -1) {
584 _winbindd_socket
= create_pipe_sock(
585 WINBINDD_SOCKET_DIR
, WINBINDD_SOCKET_NAME
, 0755);
586 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
590 return _winbindd_socket
;
593 int open_winbindd_priv_socket(void)
595 if (_winbindd_priv_socket
== -1) {
596 _winbindd_priv_socket
= create_pipe_sock(
597 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
598 DEBUG(10, ("open_winbindd_priv_socket: opened socket fd %d\n",
599 _winbindd_priv_socket
));
602 return _winbindd_priv_socket
;
605 /* Close the winbindd socket */
607 void close_winbindd_socket(void)
609 if (_winbindd_socket
!= -1) {
610 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
612 close(_winbindd_socket
);
613 _winbindd_socket
= -1;
615 if (_winbindd_priv_socket
!= -1) {
616 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
617 _winbindd_priv_socket
));
618 close(_winbindd_priv_socket
);
619 _winbindd_priv_socket
= -1;
624 * Client list accessor functions
627 static struct winbindd_cli_state
*_client_list
;
628 static int _num_clients
;
630 /* Return list of all connected clients */
632 struct winbindd_cli_state
*winbindd_client_list(void)
637 /* Add a connection to the list */
639 void winbindd_add_client(struct winbindd_cli_state
*cli
)
641 DLIST_ADD(_client_list
, cli
);
645 /* Remove a client from the list */
647 void winbindd_remove_client(struct winbindd_cli_state
*cli
)
649 DLIST_REMOVE(_client_list
, cli
);
653 /* Close all open clients */
655 void winbindd_kill_all_clients(void)
657 struct winbindd_cli_state
*cl
= winbindd_client_list();
659 DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
662 struct winbindd_cli_state
*next
;
665 winbindd_remove_client(cl
);
670 /* Return number of open clients */
672 int winbindd_num_clients(void)
677 /* Help with RID -> SID conversion */
679 DOM_SID
*rid_to_talloced_sid(struct winbindd_domain
*domain
,
684 sid
= talloc(mem_ctx
, sizeof(*sid
));
686 smb_panic("rid_to_to_talloced_sid: talloc for DOM_SID failed!\n");
688 sid_copy(sid
, &domain
->sid
);
689 sid_append_rid(sid
, rid
);
693 /*****************************************************************************
694 For idmap conversion: convert one record to new format
695 Ancient versions (eg 2.2.3a) of winbindd_idmap.tdb mapped DOMAINNAME/rid
697 *****************************************************************************/
698 static int convert_fn(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA data
, void *state
)
700 struct winbindd_domain
*domain
;
707 BOOL
*failed
= (BOOL
*)state
;
709 DEBUG(10,("Converting %s\n", key
.dptr
));
711 p
= strchr(key
.dptr
, '/');
716 fstrcpy(dom_name
, key
.dptr
);
719 domain
= find_domain_from_name(dom_name
);
720 if (domain
== NULL
) {
721 /* We must delete the old record. */
722 DEBUG(0,("Unable to find domain %s\n", dom_name
));
723 DEBUG(0,("deleting record %s\n", key
.dptr
));
725 if (tdb_delete(tdb
, key
) != 0) {
726 DEBUG(0, ("Unable to delete record %s\n", key
.dptr
));
736 sid_copy(&sid
, &domain
->sid
);
737 sid_append_rid(&sid
, rid
);
739 sid_to_string(keystr
, &sid
);
741 key2
.dsize
= strlen(keystr
) + 1;
743 if (tdb_store(tdb
, key2
, data
, TDB_INSERT
) != 0) {
744 DEBUG(0,("Unable to add record %s\n", key2
.dptr
));
749 if (tdb_store(tdb
, data
, key2
, TDB_REPLACE
) != 0) {
750 DEBUG(0,("Unable to update record %s\n", data
.dptr
));
755 if (tdb_delete(tdb
, key
) != 0) {
756 DEBUG(0,("Unable to delete record %s\n", key
.dptr
));
764 /* These definitions are from sam/idmap_tdb.c. Replicated here just
765 out of laziness.... :-( */
767 /* High water mark keys */
768 #define HWM_GROUP "GROUP HWM"
769 #define HWM_USER "USER HWM"
771 /* idmap version determines auto-conversion */
772 #define IDMAP_VERSION 2
775 /*****************************************************************************
776 Convert the idmap database from an older version.
777 *****************************************************************************/
779 static BOOL
idmap_convert(const char *idmap_name
)
782 BOOL bigendianheader
;
784 TDB_CONTEXT
*idmap_tdb
;
786 if (!(idmap_tdb
= tdb_open_log(idmap_name
, 0,
789 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
793 bigendianheader
= (idmap_tdb
->flags
& TDB_BIGENDIAN
) ? True
: False
;
795 vers
= tdb_fetch_int32(idmap_tdb
, "IDMAP_VERSION");
797 if (((vers
== -1) && bigendianheader
) || (IREV(vers
) == IDMAP_VERSION
)) {
798 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
800 * high and low records were created on a
801 * big endian machine and will need byte-reversing.
806 wm
= tdb_fetch_int32(idmap_tdb
, HWM_USER
);
811 wm
= server_state
.uid_low
;
814 if (tdb_store_int32(idmap_tdb
, HWM_USER
, wm
) == -1) {
815 DEBUG(0, ("idmap_convert: Unable to byteswap user hwm in idmap database\n"));
816 tdb_close(idmap_tdb
);
820 wm
= tdb_fetch_int32(idmap_tdb
, HWM_GROUP
);
824 wm
= server_state
.gid_low
;
827 if (tdb_store_int32(idmap_tdb
, HWM_GROUP
, wm
) == -1) {
828 DEBUG(0, ("idmap_convert: Unable to byteswap group hwm in idmap database\n"));
829 tdb_close(idmap_tdb
);
834 /* the old format stored as DOMAIN/rid - now we store the SID direct */
835 tdb_traverse(idmap_tdb
, convert_fn
, &failed
);
838 DEBUG(0, ("Problem during conversion\n"));
839 tdb_close(idmap_tdb
);
843 if (tdb_store_int32(idmap_tdb
, "IDMAP_VERSION", IDMAP_VERSION
) == -1) {
844 DEBUG(0, ("idmap_convert: Unable to dtore idmap version in databse\n"));
845 tdb_close(idmap_tdb
);
849 tdb_close(idmap_tdb
);
853 /*****************************************************************************
854 Convert the idmap database from an older version if necessary
855 *****************************************************************************/
857 BOOL
winbindd_upgrade_idmap(void)
861 SMB_STRUCT_STAT stbuf
;
862 TDB_CONTEXT
*idmap_tdb
;
864 pstrcpy(idmap_name
, lock_path("winbindd_idmap.tdb"));
866 if (!file_exist(idmap_name
, &stbuf
)) {
867 /* nothing to convert return */
871 if (!(idmap_tdb
= tdb_open_log(idmap_name
, 0,
874 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
878 if (tdb_fetch_int32(idmap_tdb
, "IDMAP_VERSION") == IDMAP_VERSION
) {
879 /* nothing to convert return */
880 tdb_close(idmap_tdb
);
884 /* backup_tdb expects the tdb not to be open */
885 tdb_close(idmap_tdb
);
887 DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
889 pstrcpy(backup_name
, idmap_name
);
890 pstrcat(backup_name
, ".bak");
892 if (backup_tdb(idmap_name
, backup_name
) != 0) {
893 DEBUG(0, ("Could not backup idmap database\n"));
897 return idmap_convert(idmap_name
);
900 /*******************************************************************
901 wrapper around retrieving the trust account password
902 *******************************************************************/
904 BOOL
get_trust_pw(const char *domain
, uint8 ret_pwd
[16],
905 time_t *pass_last_set_time
, uint32
*channel
)
910 /* if we are a DC and this is not our domain, then lookup an account
911 for the domain trust */
913 if ( IS_DC
&& !strequal(domain
, lp_workgroup()) && lp_allow_trusted_domains() )
915 if ( !secrets_fetch_trusted_domain_password(domain
, &pwd
, &sid
,
916 pass_last_set_time
) )
918 DEBUG(0, ("get_trust_pw: could not fetch trust account "
919 "password for trusted domain %s\n", domain
));
923 *channel
= SEC_CHAN_DOMAIN
;
924 E_md4hash(pwd
, ret_pwd
);
929 else /* just get the account for our domain (covers
930 ROLE_DOMAIN_MEMBER as well */
932 /* get the machine trust account for our domain */
934 if ( !secrets_fetch_trust_account_password (lp_workgroup(), ret_pwd
,
935 pass_last_set_time
, channel
) )
937 DEBUG(0, ("get_trust_pw: could not fetch trust account "
938 "password for my domain %s\n", domain
));