/* * idmap_ad: map between Active Directory and RFC 2307 accounts * * Copyright (C) Volker Lendecke 2015 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, see . */ #include "includes.h" #include "winbindd.h" #include "libsmb/namequery.h" #include "idmap.h" #include "tldap_gensec_bind.h" #include "tldap_util.h" #include "passdb.h" #include "lib/param/param.h" #include "utils/net.h" #include "auth/gensec/gensec.h" #include "librpc/gen_ndr/ndr_netlogon.h" #include "libads/ldap_schema_oids.h" #include "../libds/common/flags.h" #include "libcli/ldap/ldap_ndr.h" #include "libcli/security/dom_sid.h" struct idmap_ad_schema_names; struct idmap_ad_context { struct idmap_domain *dom; struct tldap_context *ld; struct idmap_ad_schema_names *schema; const char *default_nc; bool unix_primary_group; bool unix_nss_info; }; static NTSTATUS idmap_ad_get_context(struct idmap_domain *dom, struct idmap_ad_context **pctx); static char *get_schema_path(TALLOC_CTX *mem_ctx, struct tldap_context *ld) { struct tldap_message *rootdse; rootdse = tldap_rootdse(ld); if (rootdse == NULL) { return NULL; } return tldap_talloc_single_attribute(rootdse, "schemaNamingContext", mem_ctx); } static char *get_default_nc(TALLOC_CTX *mem_ctx, struct tldap_context *ld) { struct tldap_message *rootdse; rootdse = tldap_rootdse(ld); if (rootdse == NULL) { return NULL; } return tldap_talloc_single_attribute(rootdse, "defaultNamingContext", mem_ctx); } struct idmap_ad_schema_names { char *name; char *uid; char *gid; char *gecos; char *dir; char *shell; }; static TLDAPRC get_attrnames_by_oids(struct tldap_context *ld, TALLOC_CTX *mem_ctx, const char *schema_path, size_t num_oids, const char **oids, char **names) { char *filter; const char *attrs[] = { "lDAPDisplayName", "attributeId" }; size_t i; TLDAPRC rc; struct tldap_message **msgs; size_t num_msgs; filter = talloc_strdup(mem_ctx, "(|"); if (filter == NULL) { return TLDAP_NO_MEMORY; } for (i=0; iuid = names[0]; schema->gid = names[1]; schema->dir = names[2]; schema->shell = names[3]; schema->gecos = names[4]; schema->name = names[5]; *pschema = schema; return TLDAP_SUCCESS; } static NTSTATUS idmap_ad_get_tldap_ctx(TALLOC_CTX *mem_ctx, const char *domname, struct tldap_context **pld) { struct netr_DsRGetDCNameInfo *dcinfo; struct sockaddr_storage dcaddr; struct cli_credentials *creds; struct loadparm_context *lp_ctx; struct tldap_context *ld; int fd; NTSTATUS status; bool ok; TLDAPRC rc; status = wb_dsgetdcname_gencache_get(mem_ctx, domname, &dcinfo); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("Could not get dcinfo for %s: %s\n", domname, nt_errstr(status)); return status; } if (dcinfo->dc_unc == NULL) { TALLOC_FREE(dcinfo); return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND; } if (dcinfo->dc_unc[0] == '\\') { dcinfo->dc_unc += 1; } if (dcinfo->dc_unc[0] == '\\') { dcinfo->dc_unc += 1; } ok = resolve_name(dcinfo->dc_unc, &dcaddr, 0x20, true); if (!ok) { DBG_DEBUG("Could not resolve name %s\n", dcinfo->dc_unc); TALLOC_FREE(dcinfo); return NT_STATUS_DOMAIN_CONTROLLER_NOT_FOUND; } status = open_socket_out(&dcaddr, 389, 10000, &fd); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("open_socket_out failed: %s\n", nt_errstr(status)); TALLOC_FREE(dcinfo); return status; } ld = tldap_context_create(dcinfo, fd); if (ld == NULL) { DBG_DEBUG("tldap_context_create failed\n"); close(fd); TALLOC_FREE(dcinfo); return NT_STATUS_NO_MEMORY; } /* * Here we use or own machine account as * we run as domain member. */ status = pdb_get_trust_credentials(lp_workgroup(), lp_realm(), dcinfo, &creds); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("pdb_get_trust_credentials() failed - %s\n", nt_errstr(status)); TALLOC_FREE(dcinfo); return status; } lp_ctx = loadparm_init_s3(dcinfo, loadparm_s3_helpers()); if (lp_ctx == NULL) { DBG_DEBUG("loadparm_init_s3 failed\n"); TALLOC_FREE(dcinfo); return NT_STATUS_NO_MEMORY; } rc = tldap_gensec_bind(ld, creds, "ldap", dcinfo->dc_unc, NULL, lp_ctx, GENSEC_FEATURE_SIGN | GENSEC_FEATURE_SEAL); if (!TLDAP_RC_IS_SUCCESS(rc)) { DBG_DEBUG("tldap_gensec_bind failed: %s\n", tldap_errstr(dcinfo, ld, rc)); TALLOC_FREE(dcinfo); return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } rc = tldap_fetch_rootdse(ld); if (!TLDAP_RC_IS_SUCCESS(rc)) { DBG_DEBUG("tldap_fetch_rootdse failed: %s\n", tldap_errstr(dcinfo, ld, rc)); TALLOC_FREE(dcinfo); return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } *pld = talloc_move(mem_ctx, &ld); TALLOC_FREE(dcinfo); return NT_STATUS_OK; } static int idmap_ad_context_destructor(struct idmap_ad_context *ctx) { if ((ctx->dom != NULL) && (ctx->dom->private_data == ctx)) { ctx->dom->private_data = NULL; } return 0; } static NTSTATUS idmap_ad_context_create(TALLOC_CTX *mem_ctx, struct idmap_domain *dom, const char *domname, struct idmap_ad_context **pctx) { struct idmap_ad_context *ctx; const char *schema_mode; NTSTATUS status; TLDAPRC rc; ctx = talloc(mem_ctx, struct idmap_ad_context); if (ctx == NULL) { return NT_STATUS_NO_MEMORY; } ctx->dom = dom; talloc_set_destructor(ctx, idmap_ad_context_destructor); status = idmap_ad_get_tldap_ctx(ctx, domname, &ctx->ld); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("idmap_ad_get_tldap_ctx failed: %s\n", nt_errstr(status)); TALLOC_FREE(ctx); return status; } ctx->default_nc = get_default_nc(ctx, ctx->ld); if (ctx->default_nc == NULL) { DBG_DEBUG("No default nc\n"); TALLOC_FREE(ctx); return status; } ctx->unix_primary_group = idmap_config_bool( domname, "unix_primary_group", false); ctx->unix_nss_info = idmap_config_bool( domname, "unix_nss_info", false); schema_mode = idmap_config_const_string( domname, "schema_mode", "rfc2307"); rc = get_posix_schema_names(ctx->ld, schema_mode, ctx, &ctx->schema); if (!TLDAP_RC_IS_SUCCESS(rc)) { DBG_DEBUG("get_posix_schema_names failed: %s\n", tldap_errstr(ctx, ctx->ld, rc)); TALLOC_FREE(ctx); return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } *pctx = ctx; return NT_STATUS_OK; } static NTSTATUS idmap_ad_query_user(struct idmap_domain *domain, struct wbint_userinfo *info) { struct idmap_ad_context *ctx; TLDAPRC rc; NTSTATUS status; char *sidstr, *filter; const char *attrs[4]; size_t i, num_msgs; struct tldap_message **msgs; status = idmap_ad_get_context(domain, &ctx); if (!NT_STATUS_IS_OK(status)) { return status; } if (!(ctx->unix_primary_group || ctx->unix_nss_info)) { return NT_STATUS_OK; } attrs[0] = ctx->schema->gid; attrs[1] = ctx->schema->gecos; attrs[2] = ctx->schema->dir; attrs[3] = ctx->schema->shell; sidstr = ldap_encode_ndr_dom_sid(talloc_tos(), &info->user_sid); if (sidstr == NULL) { return NT_STATUS_NO_MEMORY; } filter = talloc_asprintf(talloc_tos(), "(objectsid=%s)", sidstr); TALLOC_FREE(sidstr); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } DBG_DEBUG("Filter: [%s]\n", filter); rc = tldap_search(ctx->ld, ctx->default_nc, TLDAP_SCOPE_SUB, filter, attrs, ARRAY_SIZE(attrs), 0, NULL, 0, NULL, 0, 0, 0, 0, talloc_tos(), &msgs); if (!TLDAP_RC_IS_SUCCESS(rc)) { return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } TALLOC_FREE(filter); num_msgs = talloc_array_length(msgs); for (i=0; iunix_primary_group) { bool ok; uint32_t gid; ok = tldap_pull_uint32(msg, ctx->schema->gid, &gid); if (ok) { DBG_DEBUG("Setting primary group " "to %"PRIu32" from attr %s\n", gid, ctx->schema->gid); info->primary_gid = gid; } } if (ctx->unix_nss_info) { char *attr; attr = tldap_talloc_single_attribute( msg, ctx->schema->dir, talloc_tos()); if (attr != NULL) { info->homedir = talloc_move(info, &attr); } TALLOC_FREE(attr); attr = tldap_talloc_single_attribute( msg, ctx->schema->shell, talloc_tos()); if (attr != NULL) { info->shell = talloc_move(info, &attr); } TALLOC_FREE(attr); attr = tldap_talloc_single_attribute( msg, ctx->schema->gecos, talloc_tos()); if (attr != NULL) { info->full_name = talloc_move(info, &attr); } TALLOC_FREE(attr); } } return NT_STATUS_OK; } static NTSTATUS idmap_ad_query_user_retry(struct idmap_domain *domain, struct wbint_userinfo *info) { const NTSTATUS status_server_down = NT_STATUS_LDAP(TLDAP_RC_V(TLDAP_SERVER_DOWN)); NTSTATUS status; status = idmap_ad_query_user(domain, info); if (NT_STATUS_EQUAL(status, status_server_down)) { TALLOC_FREE(domain->private_data); status = idmap_ad_query_user(domain, info); } return status; } static NTSTATUS idmap_ad_initialize(struct idmap_domain *dom) { dom->query_user = idmap_ad_query_user_retry; dom->private_data = NULL; return NT_STATUS_OK; } static NTSTATUS idmap_ad_get_context(struct idmap_domain *dom, struct idmap_ad_context **pctx) { struct idmap_ad_context *ctx = NULL; NTSTATUS status; if (IS_AD_DC) { /* * Make sure we never try to use LDAP against * a trusted domain as AD_DC. * * This shouldn't be called currently, * but you never know what happens in future. */ return NT_STATUS_REQUEST_NOT_ACCEPTED; } if (dom->private_data != NULL) { *pctx = talloc_get_type_abort(dom->private_data, struct idmap_ad_context); return NT_STATUS_OK; } status = idmap_ad_context_create(dom, dom, dom->name, &ctx); if (!NT_STATUS_IS_OK(status)) { DBG_DEBUG("idmap_ad_context_create failed: %s\n", nt_errstr(status)); return status; } dom->private_data = ctx; *pctx = ctx; return NT_STATUS_OK; } static NTSTATUS idmap_ad_unixids_to_sids(struct idmap_domain *dom, struct id_map **ids) { struct idmap_ad_context *ctx; TLDAPRC rc; NTSTATUS status; struct tldap_message **msgs; size_t i, num_msgs; char *u_filter, *g_filter, *filter; const char *attrs[] = { "sAMAccountType", "objectSid", NULL, /* attr_uidnumber */ NULL, /* attr_gidnumber */ }; status = idmap_ad_get_context(dom, &ctx); if (!NT_STATUS_IS_OK(status)) { return status; } attrs[2] = ctx->schema->uid; attrs[3] = ctx->schema->gid; u_filter = talloc_strdup(talloc_tos(), ""); if (u_filter == NULL) { return NT_STATUS_NO_MEMORY; } g_filter = talloc_strdup(talloc_tos(), ""); if (g_filter == NULL) { return NT_STATUS_NO_MEMORY; } for (i=0; ids[i] != NULL; i++) { struct id_map *id = ids[i]; id->status = ID_UNKNOWN; switch (id->xid.type) { case ID_TYPE_UID: { u_filter = talloc_asprintf_append_buffer( u_filter, "(%s=%ju)", ctx->schema->uid, (uintmax_t)id->xid.id); if (u_filter == NULL) { return NT_STATUS_NO_MEMORY; } break; } case ID_TYPE_GID: { g_filter = talloc_asprintf_append_buffer( g_filter, "(%s=%ju)", ctx->schema->gid, (uintmax_t)id->xid.id); if (g_filter == NULL) { return NT_STATUS_NO_MEMORY; } break; } default: DBG_WARNING("Unknown id type: %u\n", (unsigned)id->xid.type); break; } } filter = talloc_strdup(talloc_tos(), "(|"); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } if (*u_filter != '\0') { filter = talloc_asprintf_append_buffer( filter, "(&(|(sAMAccountType=%d)(sAMAccountType=%d)" "(sAMAccountType=%d))(|%s))", ATYPE_NORMAL_ACCOUNT, ATYPE_WORKSTATION_TRUST, ATYPE_INTERDOMAIN_TRUST, u_filter); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } } TALLOC_FREE(u_filter); if (*g_filter != '\0') { filter = talloc_asprintf_append_buffer( filter, "(&(|(sAMAccountType=%d)(sAMAccountType=%d))(|%s))", ATYPE_SECURITY_GLOBAL_GROUP, ATYPE_SECURITY_LOCAL_GROUP, g_filter); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } } TALLOC_FREE(g_filter); filter = talloc_asprintf_append_buffer(filter, ")"); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } DBG_DEBUG("Filter: [%s]\n", filter); rc = tldap_search(ctx->ld, ctx->default_nc, TLDAP_SCOPE_SUB, filter, attrs, ARRAY_SIZE(attrs), 0, NULL, 0, NULL, 0, 0, 0, 0, talloc_tos(), &msgs); if (!TLDAP_RC_IS_SUCCESS(rc)) { return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } TALLOC_FREE(filter); num_msgs = talloc_array_length(msgs); for (i=0; ischema->uid : ctx->schema->gid, &xid); if (!ok) { DBG_WARNING("No unix id in object %s\n", dn); continue; } ok = tldap_pull_binsid(msg, "objectSid", &sid); if (!ok) { DBG_DEBUG("No objectSid in object %s\n", dn); continue; } map = NULL; for (j=0; ids[j]; j++) { if ((type == ids[j]->xid.type) && (xid == ids[j]->xid.id)) { map = ids[j]; break; } } if (map == NULL) { DBG_DEBUG("Got unexpected sid %s from object %s\n", dom_sid_str_buf(&sid, &sidbuf), dn); continue; } sid_copy(map->sid, &sid); map->status = ID_MAPPED; DBG_DEBUG("Mapped %s -> %ju (%d)\n", dom_sid_str_buf(map->sid, &sidbuf), (uintmax_t)map->xid.id, map->xid.type); } TALLOC_FREE(msgs); return NT_STATUS_OK; } static NTSTATUS idmap_ad_sids_to_unixids(struct idmap_domain *dom, struct id_map **ids) { struct idmap_ad_context *ctx; TLDAPRC rc; NTSTATUS status; struct tldap_message **msgs; char *filter; size_t i, num_msgs; const char *attrs[] = { "sAMAccountType", "objectSid", NULL, /* attr_uidnumber */ NULL, /* attr_gidnumber */ }; status = idmap_ad_get_context(dom, &ctx); if (!NT_STATUS_IS_OK(status)) { return status; } attrs[2] = ctx->schema->uid; attrs[3] = ctx->schema->gid; filter = talloc_asprintf( talloc_tos(), "(&(|(sAMAccountType=%d)(sAMAccountType=%d)(sAMAccountType=%d)" "(sAMAccountType=%d)(sAMAccountType=%d))(|", ATYPE_NORMAL_ACCOUNT, ATYPE_WORKSTATION_TRUST, ATYPE_INTERDOMAIN_TRUST, ATYPE_SECURITY_GLOBAL_GROUP, ATYPE_SECURITY_LOCAL_GROUP); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } for (i=0; ids[i]; i++) { char *sidstr; ids[i]->status = ID_UNKNOWN; sidstr = ldap_encode_ndr_dom_sid(talloc_tos(), ids[i]->sid); if (sidstr == NULL) { return NT_STATUS_NO_MEMORY; } filter = talloc_asprintf_append_buffer( filter, "(objectSid=%s)", sidstr); TALLOC_FREE(sidstr); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } } filter = talloc_asprintf_append_buffer(filter, "))"); if (filter == NULL) { return NT_STATUS_NO_MEMORY; } DBG_DEBUG("Filter: [%s]\n", filter); rc = tldap_search(ctx->ld, ctx->default_nc, TLDAP_SCOPE_SUB, filter, attrs, ARRAY_SIZE(attrs), 0, NULL, 0, NULL, 0, 0, 0, 0, talloc_tos(), &msgs); if (!TLDAP_RC_IS_SUCCESS(rc)) { return NT_STATUS_LDAP(TLDAP_RC_V(rc)); } TALLOC_FREE(filter); num_msgs = talloc_array_length(msgs); for (i=0; isid)) { map = ids[j]; break; } } if (map == NULL) { DBG_DEBUG("Got unexpected sid %s from object %s\n", dom_sid_str_buf(&sid, &buf), dn); continue; } ok = tldap_pull_uint64(msg, "sAMAccountType", &account_type); if (!ok) { DBG_DEBUG("No sAMAccountType in %s\n", dn); continue; } switch (account_type & 0xF0000000) { case ATYPE_SECURITY_GLOBAL_GROUP: case ATYPE_SECURITY_LOCAL_GROUP: type = ID_TYPE_GID; break; case ATYPE_NORMAL_ACCOUNT: case ATYPE_WORKSTATION_TRUST: case ATYPE_INTERDOMAIN_TRUST: type = ID_TYPE_UID; break; default: DBG_WARNING("unrecognized SAM account type %"PRIu64"\n", account_type); continue; } ok = tldap_pull_uint64(msg, type == ID_TYPE_UID ? ctx->schema->uid : ctx->schema->gid, &xid); if (!ok) { DBG_DEBUG("No xid in %s\n", dn); continue; } /* mapped */ map->xid.type = type; map->xid.id = xid; map->status = ID_MAPPED; DEBUG(10, ("Mapped %s -> %lu (%d)\n", dom_sid_str_buf(map->sid, &buf), (unsigned long)map->xid.id, map->xid.type)); } TALLOC_FREE(msgs); return NT_STATUS_OK; } static NTSTATUS idmap_ad_unixids_to_sids_retry(struct idmap_domain *dom, struct id_map **ids) { const NTSTATUS status_server_down = NT_STATUS_LDAP(TLDAP_RC_V(TLDAP_SERVER_DOWN)); NTSTATUS status; status = idmap_ad_unixids_to_sids(dom, ids); if (NT_STATUS_EQUAL(status, status_server_down)) { TALLOC_FREE(dom->private_data); status = idmap_ad_unixids_to_sids(dom, ids); } return status; } static NTSTATUS idmap_ad_sids_to_unixids_retry(struct idmap_domain *dom, struct id_map **ids) { const NTSTATUS status_server_down = NT_STATUS_LDAP(TLDAP_RC_V(TLDAP_SERVER_DOWN)); NTSTATUS status; status = idmap_ad_sids_to_unixids(dom, ids); if (NT_STATUS_EQUAL(status, status_server_down)) { TALLOC_FREE(dom->private_data); status = idmap_ad_sids_to_unixids(dom, ids); } return status; } static struct idmap_methods ad_methods = { .init = idmap_ad_initialize, .unixids_to_sids = idmap_ad_unixids_to_sids_retry, .sids_to_unixids = idmap_ad_sids_to_unixids_retry, }; static_decl_idmap; NTSTATUS idmap_ad_init(TALLOC_CTX *ctx) { NTSTATUS status; status = smb_register_idmap(SMB_IDMAP_INTERFACE_VERSION, "ad", &ad_methods); if (!NT_STATUS_IS_OK(status)) { return status; } status = idmap_ad_nss_init(ctx); if (!NT_STATUS_IS_OK(status)) { return status; } return NT_STATUS_OK; }