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.
28 #define DBGC_CLASS DBGC_WINBIND
31 * @file winbindd_util.c
33 * Winbind daemon for NT domain authentication nss module.
38 * Used to clobber name fields that have an undefined value.
40 * Correct code should never look at a field that has this value.
43 static const fstring name_deadbeef
= "<deadbeef>";
45 /* The list of trusted domains. Note that the list can be deleted and
46 recreated using the init_domain_list() function so pointers to
47 individual winbindd_domain structures cannot be made. Keep a copy of
48 the domain name instead. */
50 static struct winbindd_domain
*_domain_list
;
53 When was the last scan of trusted domains done?
58 static time_t last_trustdom_scan
;
60 struct winbindd_domain
*domain_list(void)
65 if (!init_domain_list())
71 /* Free all entries in the trusted domain list */
73 void free_domain_list(void)
75 struct winbindd_domain
*domain
= _domain_list
;
78 struct winbindd_domain
*next
= domain
->next
;
80 DLIST_REMOVE(_domain_list
, domain
);
87 /* Add a trusted domain to our list of domains */
88 static struct winbindd_domain
*add_trusted_domain(const char *domain_name
, const char *alt_name
,
89 struct winbindd_methods
*methods
,
92 struct winbindd_domain
*domain
;
93 const char *alternative_name
= NULL
;
94 static const DOM_SID null_sid
;
96 /* ignore alt_name if we are not in an AD domain */
98 if ( (lp_security() == SEC_ADS
) && alt_name
&& *alt_name
) {
99 alternative_name
= alt_name
;
102 /* We can't call domain_list() as this function is called from
103 init_domain_list() and we'll get stuck in a loop. */
104 for (domain
= _domain_list
; domain
; domain
= domain
->next
) {
105 if (strequal(domain_name
, domain
->name
) ||
106 strequal(domain_name
, domain
->alt_name
)) {
109 if (alternative_name
&& *alternative_name
) {
110 if (strequal(alternative_name
, domain
->name
) ||
111 strequal(alternative_name
, domain
->alt_name
)) {
116 if (sid_equal(sid
, &null_sid
) ) {
118 } else if (sid_equal(sid
, &domain
->sid
)) {
124 /* Create new domain entry */
126 if ((domain
= (struct winbindd_domain
*)malloc(sizeof(*domain
))) == NULL
)
131 ZERO_STRUCTP(domain
);
133 /* prioritise the short name */
134 if (strchr_m(domain_name
, '.') && alternative_name
&& *alternative_name
) {
135 fstrcpy(domain
->name
, alternative_name
);
136 fstrcpy(domain
->alt_name
, domain_name
);
138 fstrcpy(domain
->name
, domain_name
);
139 if (alternative_name
) {
140 fstrcpy(domain
->alt_name
, alternative_name
);
144 domain
->methods
= methods
;
145 domain
->backend
= NULL
;
146 domain
->sequence_number
= DOM_SEQUENCE_NONE
;
147 domain
->last_seq_check
= 0;
149 sid_copy(&domain
->sid
, sid
);
152 /* set flags about native_mode, active_directory */
154 if (!domain
->internal
)
155 set_dc_type_and_flags( domain
);
157 DEBUG(3,("add_trusted_domain: %s is an %s %s domain\n", domain
->name
,
158 domain
->active_directory
? "ADS" : "NT4",
159 domain
->native_mode
? "native mode" :
160 ((domain
->active_directory
&& !domain
->native_mode
) ? "mixed mode" : "")));
162 /* Link to domain list */
163 DLIST_ADD(_domain_list
, domain
);
165 DEBUG(1,("Added domain %s %s %s\n",
166 domain
->name
, domain
->alt_name
,
167 &domain
->sid
?sid_string_static(&domain
->sid
):""));
172 /********************************************************************
173 rescan our domains looking for new trusted domains
174 ********************************************************************/
176 static void add_trusted_domains( struct winbindd_domain
*domain
)
184 DOM_SID
*dom_sids
, null_sid
;
186 struct winbindd_domain
*new_domain
;
188 /* trusted domains might be disabled */
189 if (!lp_allow_trusted_domains()) {
193 DEBUG(5, ("scanning trusted domain list\n"));
195 if (!(mem_ctx
= talloc_init("init_domain_list")))
198 ZERO_STRUCTP(&null_sid
);
202 /* ask the DC what domains it trusts */
204 result
= domain
->methods
->trusted_domains(domain
, mem_ctx
, (unsigned int *)&num_domains
,
205 &names
, &alt_names
, &dom_sids
);
207 if ( NT_STATUS_IS_OK(result
) ) {
209 /* Add each domain to the trusted domain list */
211 for(i
= 0; i
< num_domains
; i
++) {
212 DEBUG(10,("Found domain %s\n", names
[i
]));
213 add_trusted_domain(names
[i
], alt_names
?alt_names
[i
]:NULL
,
214 domain
->methods
, &dom_sids
[i
]);
216 /* if the SID was empty, we better set it now */
218 if ( sid_equal(&dom_sids
[i
], &null_sid
) ) {
220 new_domain
= find_domain_from_name(names
[i
]);
222 /* this should never happen */
224 DEBUG(0,("rescan_trust_domains: can't find the domain I just added! [%s]\n",
229 /* call the cache method; which will operate on the winbindd_domain \
230 passed in and choose either rpc or ads as appropriate */
232 result
= domain
->methods
->domain_sid( new_domain
, &new_domain
->sid
);
234 if ( NT_STATUS_IS_OK(result
) )
235 sid_copy( &dom_sids
[i
], &new_domain
->sid
);
238 /* store trusted domain in the cache */
239 trustdom_cache_store(names
[i
], alt_names
? alt_names
[i
] : NULL
,
240 &dom_sids
[i
], t
+ WINBINDD_RESCAN_FREQ
);
244 talloc_destroy(mem_ctx
);
247 /********************************************************************
248 Periodically we need to refresh the trusted domain cache for smbd
249 ********************************************************************/
251 void rescan_trusted_domains( void )
253 time_t now
= time(NULL
);
254 struct winbindd_domain
*mydomain
= NULL
;
256 /* see if the time has come... */
258 if ( (now
> last_trustdom_scan
) && ((now
-last_trustdom_scan
) < WINBINDD_RESCAN_FREQ
) )
261 if ( (mydomain
= find_our_domain()) == NULL
) {
262 DEBUG(0,("rescan_trusted_domains: Can't find my own domain!\n"));
266 /* this will only add new domains we didn't already know about */
268 add_trusted_domains( mydomain
);
270 last_trustdom_scan
= now
;
275 /* Look up global info for the winbind daemon */
276 BOOL
init_domain_list(void)
278 extern struct winbindd_methods cache_methods
;
279 struct winbindd_domain
*domain
;
281 /* Free existing list */
284 /* Add ourselves as the first entry. */
286 domain
= add_trusted_domain( lp_workgroup(), lp_realm(), &cache_methods
, NULL
);
288 domain
->primary
= True
;
290 /* get any alternate name for the primary domain */
292 cache_methods
.alternate_name(domain
);
294 /* now we have the correct netbios (short) domain name */
297 set_global_myworkgroup( domain
->name
);
299 if (!secrets_fetch_domain_sid(domain
->name
, &domain
->sid
)) {
300 DEBUG(1, ("Could not fetch sid for our domain %s\n",
305 /* do an initial scan for trusted domains */
306 add_trusted_domains(domain
);
308 /* Add our local SAM domains */
311 extern struct winbindd_methods passdb_methods
;
312 struct winbindd_domain
*dom
;
314 string_to_sid(&sid
, "S-1-5-32");
316 dom
= add_trusted_domain("BUILTIN", NULL
, &passdb_methods
,
318 dom
->internal
= True
;
320 dom
= add_trusted_domain(get_global_sam_name(), NULL
,
322 get_global_sam_sid());
323 dom
->internal
= True
;
326 /* avoid rescanning this right away */
327 last_trustdom_scan
= time(NULL
);
332 * Given a domain name, return the struct winbindd domain info for it
334 * @note Do *not* pass lp_workgroup() to this function. domain_list
335 * may modify it's value, and free that pointer. Instead, our local
336 * domain may be found by calling find_our_domain().
340 * @return The domain structure for the named domain, if it is working.
343 struct winbindd_domain
*find_domain_from_name(const char *domain_name
)
345 struct winbindd_domain
*domain
;
347 /* Search through list */
349 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
350 if (strequal(domain_name
, domain
->name
) ||
351 (domain
->alt_name
[0] && strequal(domain_name
, domain
->alt_name
))) {
361 /* Given a domain sid, return the struct winbindd domain info for it */
363 struct winbindd_domain
*find_domain_from_sid(DOM_SID
*sid
)
365 struct winbindd_domain
*domain
;
367 /* Search through list */
369 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
370 if (sid_compare_domain(sid
, &domain
->sid
) == 0)
379 /* Given a domain sid, return the struct winbindd domain info for it */
381 struct winbindd_domain
*find_our_domain(void)
383 struct winbindd_domain
*domain
;
385 /* Search through list */
387 for (domain
= domain_list(); domain
!= NULL
; domain
= domain
->next
) {
397 /* Lookup a sid in a domain from a name */
399 BOOL
winbindd_lookup_sid_by_name(struct winbindd_domain
*domain
,
400 const char *name
, DOM_SID
*sid
,
401 enum SID_NAME_USE
*type
)
406 mem_ctx
= talloc_init("lookup_sid_by_name for %s\n", name
);
411 result
= domain
->methods
->name_to_sid(domain
, mem_ctx
, name
, sid
, type
);
413 talloc_destroy(mem_ctx
);
415 /* Return rid and type if lookup successful */
416 if (!NT_STATUS_IS_OK(result
)) {
417 *type
= SID_NAME_UNKNOWN
;
420 return NT_STATUS_IS_OK(result
);
424 * @brief Lookup a name in a domain from a sid.
426 * @param sid Security ID you want to look up.
427 * @param name On success, set to the name corresponding to @p sid.
428 * @param dom_name On success, set to the 'domain name' corresponding to @p sid.
429 * @param type On success, contains the type of name: alias, group or
431 * @retval True if the name exists, in which case @p name and @p type
432 * are set, otherwise False.
434 BOOL
winbindd_lookup_name_by_sid(DOM_SID
*sid
,
437 enum SID_NAME_USE
*type
)
443 struct winbindd_domain
*domain
;
445 domain
= find_domain_from_sid(sid
);
448 DEBUG(1,("Can't find domain from sid\n"));
454 if (!(mem_ctx
= talloc_init("winbindd_lookup_name_by_sid")))
457 result
= domain
->methods
->sid_to_name(domain
, mem_ctx
, sid
, &names
, type
);
459 /* Return name and type if successful */
461 if ((rv
= NT_STATUS_IS_OK(result
))) {
462 fstrcpy(dom_name
, domain
->name
);
463 fstrcpy(name
, names
);
465 *type
= SID_NAME_UNKNOWN
;
466 fstrcpy(name
, name_deadbeef
);
469 talloc_destroy(mem_ctx
);
475 /* Free state information held for {set,get,end}{pw,gr}ent() functions */
477 void free_getent_state(struct getent_state
*state
)
479 struct getent_state
*temp
;
481 /* Iterate over state list */
485 while(temp
!= NULL
) {
486 struct getent_state
*next
;
488 /* Free sam entries then list entry */
490 SAFE_FREE(state
->sam_entries
);
491 DLIST_REMOVE(state
, state
);
499 /* Parse winbindd related parameters */
501 BOOL
winbindd_param_init(void)
503 /* Parse winbind uid and winbind_gid parameters */
505 if (!lp_idmap_uid(&server_state
.uid_low
, &server_state
.uid_high
)) {
506 DEBUG(0, ("winbindd: idmap uid range missing or invalid\n"));
507 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
511 if (!lp_idmap_gid(&server_state
.gid_low
, &server_state
.gid_high
)) {
512 DEBUG(0, ("winbindd: idmap gid range missing or invalid\n"));
513 DEBUG(0, ("winbindd: cannot continue, exiting.\n"));
520 /* Check if a domain is present in a comma-separated list of domains */
522 BOOL
check_domain_env(char *domain_env
, char *domain
)
525 const char *tmp
= domain_env
;
527 while(next_token(&tmp
, name
, ",", sizeof(fstring
))) {
528 if (strequal(name
, domain
))
535 /* Is this a domain which we may assume no DOMAIN\ prefix? */
537 static BOOL
assume_domain(const char *domain
) {
538 if ((lp_winbind_use_default_domain()
539 || lp_winbind_trusted_domains_only()) &&
540 strequal(lp_workgroup(), domain
))
543 if (strequal(get_global_sam_name(), domain
))
549 /* Parse a string of the form DOMAIN/user into a domain and a user */
551 BOOL
parse_domain_user(const char *domuser
, fstring domain
, fstring user
)
553 char *p
= strchr(domuser
,*lp_winbind_separator());
556 fstrcpy(user
, domuser
);
558 if ( assume_domain(lp_workgroup())) {
559 fstrcpy(domain
, lp_workgroup());
561 fstrcpy( domain
, get_global_sam_name() );
566 fstrcpy(domain
, domuser
);
567 domain
[PTR_DIFF(p
, domuser
)] = 0;
576 Fill DOMAIN\\USERNAME entry accounting 'winbind use default domain' and
577 'winbind separator' options.
579 - omit DOMAIN when 'winbind use default domain = true' and DOMAIN is
582 If we are a PDC or BDC, and this is for our domain, do likewise.
584 Also, if omit DOMAIN if 'winbind trusted domains only = true', as the
585 username is then unqualified in unix
588 void fill_domain_username(fstring name
, const char *domain
, const char *user
)
590 if (assume_domain(domain
)) {
591 strlcpy(name
, user
, sizeof(fstring
));
593 slprintf(name
, sizeof(fstring
) - 1, "%s%s%s",
594 domain
, lp_winbind_separator(),
600 * Winbindd socket accessor functions
603 char *get_winbind_priv_pipe_dir(void)
605 return lock_path(WINBINDD_PRIV_SOCKET_SUBDIR
);
608 /* Open the winbindd socket */
610 static int _winbindd_socket
= -1;
611 static int _winbindd_priv_socket
= -1;
613 int open_winbindd_socket(void)
615 if (_winbindd_socket
== -1) {
616 _winbindd_socket
= create_pipe_sock(
617 WINBINDD_SOCKET_DIR
, WINBINDD_SOCKET_NAME
, 0755);
618 DEBUG(10, ("open_winbindd_socket: opened socket fd %d\n",
622 return _winbindd_socket
;
625 int open_winbindd_priv_socket(void)
627 if (_winbindd_priv_socket
== -1) {
628 _winbindd_priv_socket
= create_pipe_sock(
629 get_winbind_priv_pipe_dir(), WINBINDD_SOCKET_NAME
, 0750);
630 DEBUG(10, ("open_winbindd_priv_socket: opened socket fd %d\n",
631 _winbindd_priv_socket
));
634 return _winbindd_priv_socket
;
637 /* Close the winbindd socket */
639 void close_winbindd_socket(void)
641 if (_winbindd_socket
!= -1) {
642 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
644 close(_winbindd_socket
);
645 _winbindd_socket
= -1;
647 if (_winbindd_priv_socket
!= -1) {
648 DEBUG(10, ("close_winbindd_socket: closing socket fd %d\n",
649 _winbindd_priv_socket
));
650 close(_winbindd_priv_socket
);
651 _winbindd_priv_socket
= -1;
656 * Client list accessor functions
659 static struct winbindd_cli_state
*_client_list
;
660 static int _num_clients
;
662 /* Return list of all connected clients */
664 struct winbindd_cli_state
*winbindd_client_list(void)
669 /* Add a connection to the list */
671 void winbindd_add_client(struct winbindd_cli_state
*cli
)
673 DLIST_ADD(_client_list
, cli
);
677 /* Remove a client from the list */
679 void winbindd_remove_client(struct winbindd_cli_state
*cli
)
681 DLIST_REMOVE(_client_list
, cli
);
685 /* Close all open clients */
687 void winbindd_kill_all_clients(void)
689 struct winbindd_cli_state
*cl
= winbindd_client_list();
691 DEBUG(10, ("winbindd_kill_all_clients: going postal\n"));
694 struct winbindd_cli_state
*next
;
697 winbindd_remove_client(cl
);
702 /* Return number of open clients */
704 int winbindd_num_clients(void)
709 /* Help with RID -> SID conversion */
711 DOM_SID
*rid_to_talloced_sid(struct winbindd_domain
*domain
,
716 sid
= talloc(mem_ctx
, sizeof(*sid
));
718 smb_panic("rid_to_to_talloced_sid: talloc for DOM_SID failed!\n");
720 sid_copy(sid
, &domain
->sid
);
721 sid_append_rid(sid
, rid
);
725 /*****************************************************************************
726 For idmap conversion: convert one record to new format
727 Ancient versions (eg 2.2.3a) of winbindd_idmap.tdb mapped DOMAINNAME/rid
729 *****************************************************************************/
730 static int convert_fn(TDB_CONTEXT
*tdb
, TDB_DATA key
, TDB_DATA data
, void *state
)
732 struct winbindd_domain
*domain
;
739 BOOL
*failed
= (BOOL
*)state
;
741 DEBUG(10,("Converting %s\n", key
.dptr
));
743 p
= strchr(key
.dptr
, '/');
748 fstrcpy(dom_name
, key
.dptr
);
751 domain
= find_domain_from_name(dom_name
);
752 if (domain
== NULL
) {
753 /* We must delete the old record. */
754 DEBUG(0,("Unable to find domain %s\n", dom_name
));
755 DEBUG(0,("deleting record %s\n", key
.dptr
));
757 if (tdb_delete(tdb
, key
) != 0) {
758 DEBUG(0, ("Unable to delete record %s\n", key
.dptr
));
768 sid_copy(&sid
, &domain
->sid
);
769 sid_append_rid(&sid
, rid
);
771 sid_to_string(keystr
, &sid
);
773 key2
.dsize
= strlen(keystr
) + 1;
775 if (tdb_store(tdb
, key2
, data
, TDB_INSERT
) != 0) {
776 DEBUG(0,("Unable to add record %s\n", key2
.dptr
));
781 if (tdb_store(tdb
, data
, key2
, TDB_REPLACE
) != 0) {
782 DEBUG(0,("Unable to update record %s\n", data
.dptr
));
787 if (tdb_delete(tdb
, key
) != 0) {
788 DEBUG(0,("Unable to delete record %s\n", key
.dptr
));
796 /* These definitions are from sam/idmap_tdb.c. Replicated here just
797 out of laziness.... :-( */
799 /* High water mark keys */
800 #define HWM_GROUP "GROUP HWM"
801 #define HWM_USER "USER HWM"
803 /* idmap version determines auto-conversion */
804 #define IDMAP_VERSION 2
807 /*****************************************************************************
808 Convert the idmap database from an older version.
809 *****************************************************************************/
811 static BOOL
idmap_convert(const char *idmap_name
)
814 BOOL bigendianheader
;
816 TDB_CONTEXT
*idmap_tdb
;
818 if (!(idmap_tdb
= tdb_open_log(idmap_name
, 0,
821 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
825 bigendianheader
= (idmap_tdb
->flags
& TDB_BIGENDIAN
) ? True
: False
;
827 vers
= tdb_fetch_int32(idmap_tdb
, "IDMAP_VERSION");
829 if (((vers
== -1) && bigendianheader
) || (IREV(vers
) == IDMAP_VERSION
)) {
830 /* Arrggghh ! Bytereversed or old big-endian - make order independent ! */
832 * high and low records were created on a
833 * big endian machine and will need byte-reversing.
838 wm
= tdb_fetch_int32(idmap_tdb
, HWM_USER
);
843 wm
= server_state
.uid_low
;
846 if (tdb_store_int32(idmap_tdb
, HWM_USER
, wm
) == -1) {
847 DEBUG(0, ("idmap_convert: Unable to byteswap user hwm in idmap database\n"));
848 tdb_close(idmap_tdb
);
852 wm
= tdb_fetch_int32(idmap_tdb
, HWM_GROUP
);
856 wm
= server_state
.gid_low
;
859 if (tdb_store_int32(idmap_tdb
, HWM_GROUP
, wm
) == -1) {
860 DEBUG(0, ("idmap_convert: Unable to byteswap group hwm in idmap database\n"));
861 tdb_close(idmap_tdb
);
866 /* the old format stored as DOMAIN/rid - now we store the SID direct */
867 tdb_traverse(idmap_tdb
, convert_fn
, &failed
);
870 DEBUG(0, ("Problem during conversion\n"));
871 tdb_close(idmap_tdb
);
875 if (tdb_store_int32(idmap_tdb
, "IDMAP_VERSION", IDMAP_VERSION
) == -1) {
876 DEBUG(0, ("idmap_convert: Unable to dtore idmap version in databse\n"));
877 tdb_close(idmap_tdb
);
881 tdb_close(idmap_tdb
);
885 /*****************************************************************************
886 Convert the idmap database from an older version if necessary
887 *****************************************************************************/
889 BOOL
winbindd_upgrade_idmap(void)
893 SMB_STRUCT_STAT stbuf
;
894 TDB_CONTEXT
*idmap_tdb
;
896 pstrcpy(idmap_name
, lock_path("winbindd_idmap.tdb"));
898 if (!file_exist(idmap_name
, &stbuf
)) {
899 /* nothing to convert return */
903 if (!(idmap_tdb
= tdb_open_log(idmap_name
, 0,
906 DEBUG(0, ("idmap_convert: Unable to open idmap database\n"));
910 if (tdb_fetch_int32(idmap_tdb
, "IDMAP_VERSION") == IDMAP_VERSION
) {
911 /* nothing to convert return */
912 tdb_close(idmap_tdb
);
916 /* backup_tdb expects the tdb not to be open */
917 tdb_close(idmap_tdb
);
919 DEBUG(0, ("Upgrading winbindd_idmap.tdb from an old version\n"));
921 pstrcpy(backup_name
, idmap_name
);
922 pstrcat(backup_name
, ".bak");
924 if (backup_tdb(idmap_name
, backup_name
) != 0) {
925 DEBUG(0, ("Could not backup idmap database\n"));
929 return idmap_convert(idmap_name
);
932 /*******************************************************************
933 wrapper around retrieving the trust account password
934 *******************************************************************/
936 BOOL
get_trust_pw(const char *domain
, uint8 ret_pwd
[16],
937 time_t *pass_last_set_time
, uint32
*channel
)
942 /* if we are a DC and this is not our domain, then lookup an account
943 for the domain trust */
945 if ( IS_DC
&& !strequal(domain
, lp_workgroup()) && lp_allow_trusted_domains() )
947 if ( !secrets_fetch_trusted_domain_password(domain
, &pwd
, &sid
,
948 pass_last_set_time
) )
950 DEBUG(0, ("get_trust_pw: could not fetch trust account "
951 "password for trusted domain %s\n", domain
));
955 *channel
= SEC_CHAN_DOMAIN
;
956 E_md4hash(pwd
, ret_pwd
);
961 else /* just get the account for our domain (covers
962 ROLE_DOMAIN_MEMBER as well */
964 /* get the machine trust account for our domain */
966 if ( !secrets_fetch_trust_account_password (lp_workgroup(), ret_pwd
,
967 pass_last_set_time
, channel
) )
969 DEBUG(0, ("get_trust_pw: could not fetch trust account "
970 "password for my domain %s\n", domain
));