/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* * DC Locator */ #define SMB_DCLOCATOR_TIMEOUT 45 #define SMB_IS_FQDN(domain) (strchr(domain, '.') != NULL) typedef struct smb_dclocator { char sdl_domain[SMB_PI_MAX_DOMAIN]; char sdl_dc[MAXHOSTNAMELEN]; boolean_t sdl_locate; mutex_t sdl_mtx; cond_t sdl_cv; uint32_t sdl_status; } smb_dclocator_t; static smb_dclocator_t smb_dclocator; static pthread_t smb_dclocator_thr; static void *smb_dclocator_main(void *); static void smb_domain_update(char *, char *); static boolean_t smb_domain_query_dns(char *, char *, smb_domain_t *); static boolean_t smb_domain_query_nbt(char *, char *, smb_domain_t *); static boolean_t smb_domain_match(char *, char *, uint32_t); static uint32_t smb_domain_query(char *, char *, smb_domain_t *); static void smb_domain_enum_trusted(char *, char *, smb_trusted_domains_t *); static uint32_t smb_domain_use_config(char *, nt_domain_t *); static void smb_domain_free(smb_domain_t *di); /* * =================================================================== * API to initialize DC locator thread, trigger DC discovery, and * get the discovered DC and/or domain information. * =================================================================== */ /* * smb_dclocator_init * * Initialization of the DC locator thread. * Returns 0 on success, an error number if thread creation fails. */ int smb_dclocator_init(void) { pthread_attr_t tattr; int rc; (void) pthread_attr_init(&tattr); (void) pthread_attr_setdetachstate(&tattr, PTHREAD_CREATE_DETACHED); rc = pthread_create(&smb_dclocator_thr, &tattr, smb_dclocator_main, 0); (void) pthread_attr_destroy(&tattr); return (rc); } /* * smb_locate_dc * * This is the entry point for discovering a domain controller for the * specified domain. * * The actual work of discovering a DC is handled by DC locator thread. * All we do here is signal the request and wait for a DC or a timeout. * * Input parameters: * domain - domain to be discovered (can either be NetBIOS or DNS domain) * dc - preferred DC. If the preferred DC is set to empty string, it * will attempt to discover any DC in the specified domain. * * Output parameter: * dp - on success, dp will be filled with the discovered DC and domain * information. * Returns B_TRUE if the DC/domain info is available. */ boolean_t smb_locate_dc(char *domain, char *dc, smb_domain_t *dp) { int rc; timestruc_t to; smb_domain_t domain_info; if (domain == NULL || *domain == '\0') return (B_FALSE); (void) mutex_lock(&smb_dclocator.sdl_mtx); if (!smb_dclocator.sdl_locate) { smb_dclocator.sdl_locate = B_TRUE; (void) strlcpy(smb_dclocator.sdl_domain, domain, SMB_PI_MAX_DOMAIN); (void) strlcpy(smb_dclocator.sdl_dc, dc, MAXHOSTNAMELEN); (void) cond_broadcast(&smb_dclocator.sdl_cv); } while (smb_dclocator.sdl_locate) { to.tv_sec = SMB_DCLOCATOR_TIMEOUT; to.tv_nsec = 0; rc = cond_reltimedwait(&smb_dclocator.sdl_cv, &smb_dclocator.sdl_mtx, &to); if (rc == ETIME) break; } if (dp == NULL) dp = &domain_info; rc = smb_domain_getinfo(dp); (void) mutex_unlock(&smb_dclocator.sdl_mtx); return (rc); } /* * Returns a copy of primary domain information plus * the selected domain controller */ boolean_t smb_domain_getinfo(smb_domain_t *dp) { return (nt_domain_get_primary(dp)); } /* * ========================================================== * DC discovery functions * ========================================================== */ /* * This is the DC discovery thread: it gets woken up whenever someone * wants to locate a domain controller. * * Upon success, the SMB domain cache will be populated with the discovered * DC and domain info. */ /*ARGSUSED*/ static void * smb_dclocator_main(void *arg) { char domain[SMB_PI_MAX_DOMAIN]; char sought_dc[MAXHOSTNAMELEN]; for (;;) { (void) mutex_lock(&smb_dclocator.sdl_mtx); while (!smb_dclocator.sdl_locate) (void) cond_wait(&smb_dclocator.sdl_cv, &smb_dclocator.sdl_mtx); (void) strlcpy(domain, smb_dclocator.sdl_domain, SMB_PI_MAX_DOMAIN); (void) strlcpy(sought_dc, smb_dclocator.sdl_dc, MAXHOSTNAMELEN); (void) mutex_unlock(&smb_dclocator.sdl_mtx); smb_domain_update(domain, sought_dc); (void) mutex_lock(&smb_dclocator.sdl_mtx); smb_dclocator.sdl_locate = B_FALSE; (void) cond_broadcast(&smb_dclocator.sdl_cv); (void) mutex_unlock(&smb_dclocator.sdl_mtx); } /*NOTREACHED*/ return (NULL); } /* * Discovers a domain controller for the specified domain either via * DNS or NetBIOS. After the domain controller is discovered successfully * primary and trusted domain infromation will be queried using RPC queries. * If the RPC queries fail, the domain information stored in SMF might be used * if the the discovered domain is the same as the previously joined domain. * If everything is successful domain cache will be updated with all the * obtained information. */ static void smb_domain_update(char *domain, char *server) { smb_domain_t di; boolean_t query_ok; bzero(&di, sizeof (smb_domain_t)); nt_domain_start_update(); if (SMB_IS_FQDN(domain)) query_ok = smb_domain_query_dns(domain, server, &di); else query_ok = smb_domain_query_nbt(domain, server, &di); if (query_ok) nt_domain_update(&di); nt_domain_end_update(); smb_domain_free(&di); if (query_ok) nt_domain_save(); } /* * Discovers a DC for the specified domain via DNS. If a DC is found * primary and trusted domains information will be queried. */ static boolean_t smb_domain_query_dns(char *domain, char *server, smb_domain_t *di) { uint32_t status; if (!smb_ads_lookup_msdcs(domain, server, di->d_dc, MAXHOSTNAMELEN)) return (B_FALSE); status = smb_domain_query(domain, di->d_dc, di); return (status == NT_STATUS_SUCCESS); } /* * Discovers a DC for the specified domain using NETLOGON protocol. * If a DC cannot be found using NETLOGON then it will * try to resolve it via DNS, i.e. find out if it is the first label * of a DNS domain name. If the corresponding DNS name is found, DC * discovery will be done via DNS query. * * If the fully-qualified domain name is derived from the DNS config * file, the NetBIOS domain name specified by the user will be compared * against the NetBIOS domain name obtained via LSA query. If there is * a mismatch, the DC discovery will fail since the discovered DC is * actually for another domain, whose first label of its FQDN somehow * matches with the NetBIOS name of the domain we're interested in. */ static boolean_t smb_domain_query_nbt(char *domain, char *server, smb_domain_t *di) { char dnsdomain[MAXHOSTNAMELEN]; uint32_t status; *dnsdomain = '\0'; if (!smb_browser_netlogon(domain, di->d_dc, MAXHOSTNAMELEN)) { if (!smb_domain_match(domain, dnsdomain, MAXHOSTNAMELEN)) return (B_FALSE); if (!smb_ads_lookup_msdcs(dnsdomain, server, di->d_dc, MAXHOSTNAMELEN)) return (B_FALSE); } status = smb_domain_query(domain, di->d_dc, di); if (status != NT_STATUS_SUCCESS) return (B_FALSE); if ((*dnsdomain != '\0') && utf8_strcasecmp(domain, di->d_info.di_nbname)) return (B_FALSE); /* * Now that we get the fully-qualified DNS name of the * domain via LSA query. Verifies ADS configuration * if we previously locate a DC via NetBIOS. On success, * ADS cache will be populated. */ if (smb_ads_lookup_msdcs(di->d_info.di_fqname, server, di->d_dc, MAXHOSTNAMELEN) == 0) return (B_FALSE); return (B_TRUE); } /* * Tries to find a matching DNS domain for the given NetBIOS domain * name by checking the first label of system's configured DNS domains. * If a match is found, it'll be returned in the passed buffer. */ static boolean_t smb_domain_match(char *nb_domain, char *buf, uint32_t len) { struct __res_state res_state; int i; char *entry, *p; char first_label[MAXHOSTNAMELEN]; boolean_t found; if (!nb_domain || !buf) return (B_FALSE); *buf = '\0'; bzero(&res_state, sizeof (struct __res_state)); if (res_ninit(&res_state)) return (B_FALSE); found = B_FALSE; entry = res_state.defdname; for (i = 0; entry != NULL; i++) { (void) strlcpy(first_label, entry, MAXHOSTNAMELEN); if ((p = strchr(first_label, '.')) != NULL) { *p = '\0'; if (strlen(first_label) > 15) first_label[15] = '\0'; } if (utf8_strcasecmp(nb_domain, first_label) == 0) { found = B_TRUE; (void) strlcpy(buf, entry, len); break; } entry = res_state.dnsrch[i]; } res_ndestroy(&res_state); return (found); } /* * Obtain primary and trusted domain information using LSA queries. * * Disconnect any existing connection with the domain controller. * This will ensure that no stale connection will be used, it will * also pickup any configuration changes in either side by trying * to establish a new connection. * * domain - either NetBIOS or fully-qualified domain name */ static uint32_t smb_domain_query(char *domain, char *server, smb_domain_t *di) { uint32_t status; mlsvc_disconnect(server); status = lsa_query_dns_domain_info(server, domain, &di->d_info); if (status != NT_STATUS_SUCCESS) { status = smb_domain_use_config(domain, &di->d_info); if (status != NT_STATUS_SUCCESS) status = lsa_query_primary_domain_info(server, domain, &di->d_info); } if (status == NT_STATUS_SUCCESS) smb_domain_enum_trusted(domain, server, &di->d_trusted); return (status); } /* * Obtain trusted domains information using LSA queries. * * domain - either NetBIOS or fully-qualified domain name. */ static void smb_domain_enum_trusted(char *domain, char *server, smb_trusted_domains_t *list) { uint32_t status; status = lsa_enum_trusted_domains_ex(server, domain, list); if (status != NT_STATUS_SUCCESS) (void) lsa_enum_trusted_domains(server, domain, list); } /* * If the domain to be discovered matches the current domain (i.e the * value of either domain or fqdn configuration), the output parameter * 'dinfo' will be set to the information stored in SMF. */ static uint32_t smb_domain_use_config(char *domain, nt_domain_t *dinfo) { boolean_t use; bzero(dinfo, sizeof (nt_domain_t)); if (smb_config_get_secmode() != SMB_SECMODE_DOMAIN) return (NT_STATUS_UNSUCCESSFUL); smb_config_getdomaininfo(dinfo->di_nbname, dinfo->di_fqname, NULL, NULL, NULL); if (SMB_IS_FQDN(domain)) use = (utf8_strcasecmp(dinfo->di_fqname, domain) == 0); else use = (utf8_strcasecmp(dinfo->di_nbname, domain) == 0); if (use) smb_config_getdomaininfo(NULL, NULL, dinfo->di_sid, dinfo->di_u.di_dns.ddi_forest, dinfo->di_u.di_dns.ddi_guid); return ((use) ? NT_STATUS_SUCCESS : NT_STATUS_UNSUCCESSFUL); } static void smb_domain_free(smb_domain_t *di) { free(di->d_trusted.td_domains); }