mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
340 lines
7.8 KiB
C
340 lines
7.8 KiB
C
|
/*
|
||
|
Unix SMB/CIFS implementation.
|
||
|
|
||
|
Winbind rpc backend functions
|
||
|
|
||
|
Copyright (C) Tim Potter 2000-2001,2003
|
||
|
Copyright (C) Simo Sorce 2003
|
||
|
Copyright (C) Volker Lendecke 2004
|
||
|
|
||
|
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 2 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, write to the Free Software
|
||
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||
|
*/
|
||
|
|
||
|
#include "includes.h"
|
||
|
#include "winbindd.h"
|
||
|
|
||
|
#undef DBGC_CLASS
|
||
|
#define DBGC_CLASS DBGC_WINBIND
|
||
|
|
||
|
static void
|
||
|
add_member(const char *domain, const char *user,
|
||
|
char **members, int *num_members)
|
||
|
{
|
||
|
fstring name;
|
||
|
|
||
|
fill_domain_username(name, domain, user);
|
||
|
safe_strcat(name, ",", sizeof(name)-1);
|
||
|
string_append(members, name);
|
||
|
*num_members += 1;
|
||
|
}
|
||
|
|
||
|
/**********************************************************************
|
||
|
Add member users resulting from sid. Expand if it is a domain group.
|
||
|
**********************************************************************/
|
||
|
|
||
|
static void
|
||
|
add_expanded_sid(const DOM_SID *sid, char **members, int *num_members)
|
||
|
{
|
||
|
DOM_SID dom_sid;
|
||
|
uint32 rid;
|
||
|
struct winbindd_domain *domain;
|
||
|
int i;
|
||
|
|
||
|
char *name = NULL;
|
||
|
enum SID_NAME_USE type;
|
||
|
|
||
|
uint32 num_names;
|
||
|
DOM_SID **sid_mem;
|
||
|
char **names;
|
||
|
uint32 *types;
|
||
|
|
||
|
NTSTATUS result;
|
||
|
|
||
|
TALLOC_CTX *mem_ctx = talloc_init("add_expanded_sid");
|
||
|
|
||
|
if (mem_ctx == NULL) {
|
||
|
DEBUG(1, ("talloc_init failed\n"));
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
sid_copy(&dom_sid, sid);
|
||
|
sid_split_rid(&dom_sid, &rid);
|
||
|
|
||
|
domain = find_domain_from_sid(&dom_sid);
|
||
|
|
||
|
if (domain == NULL) {
|
||
|
DEBUG(3, ("Could not find domain for sid %s\n",
|
||
|
sid_string_static(sid)));
|
||
|
goto done;
|
||
|
}
|
||
|
|
||
|
result = domain->methods->sid_to_name(domain, mem_ctx, sid,
|
||
|
&name, &type);
|
||
|
|
||
|
if (!NT_STATUS_IS_OK(result)) {
|
||
|
DEBUG(3, ("sid_to_name failed for sid %s\n",
|
||
|
sid_string_static(sid)));
|
||
|
goto done;
|
||
|
}
|
||
|
|
||
|
DEBUG(10, ("Found name %s, type %d\n", name, type));
|
||
|
|
||
|
if (type == SID_NAME_USER) {
|
||
|
add_member(domain->name, name, members, num_members);
|
||
|
goto done;
|
||
|
}
|
||
|
|
||
|
if (type != SID_NAME_DOM_GRP) {
|
||
|
DEBUG(10, ("Alias member %s neither user nor group, ignore\n",
|
||
|
name));
|
||
|
goto done;
|
||
|
}
|
||
|
|
||
|
/* Expand the domain group */
|
||
|
|
||
|
result = domain->methods->lookup_groupmem(domain, mem_ctx,
|
||
|
sid, &num_names,
|
||
|
&sid_mem, &names,
|
||
|
&types);
|
||
|
|
||
|
if (!NT_STATUS_IS_OK(result)) {
|
||
|
DEBUG(10, ("Could not lookup group members for %s: %s\n",
|
||
|
name, nt_errstr(result)));
|
||
|
goto done;
|
||
|
}
|
||
|
|
||
|
for (i=0; i<num_names; i++) {
|
||
|
DEBUG(10, ("Adding group member SID %s\n",
|
||
|
sid_string_static(sid_mem[i])));
|
||
|
|
||
|
if (types[i] != SID_NAME_USER) {
|
||
|
DEBUG(1, ("Hmmm. Member %s of group %s is no user. "
|
||
|
"Ignoring.\n", names[i], name));
|
||
|
continue;
|
||
|
}
|
||
|
|
||
|
add_member(domain->name, names[i], members, num_members);
|
||
|
}
|
||
|
|
||
|
done:
|
||
|
talloc_destroy(mem_ctx);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
BOOL fill_passdb_alias_grmem(struct winbindd_domain *domain,
|
||
|
DOM_SID *group_sid,
|
||
|
int *num_gr_mem, char **gr_mem, int *gr_mem_len)
|
||
|
{
|
||
|
DOM_SID *members;
|
||
|
int i, num_members;
|
||
|
|
||
|
*num_gr_mem = 0;
|
||
|
*gr_mem = NULL;
|
||
|
*gr_mem_len = 0;
|
||
|
|
||
|
if (!pdb_enum_aliasmem(group_sid, &members, &num_members))
|
||
|
return True;
|
||
|
|
||
|
for (i=0; i<num_members; i++) {
|
||
|
add_expanded_sid(&members[i], gr_mem, num_gr_mem);
|
||
|
}
|
||
|
|
||
|
SAFE_FREE(members);
|
||
|
|
||
|
if (*gr_mem != NULL) {
|
||
|
int len;
|
||
|
|
||
|
/* We have at least one member, strip off the last "," */
|
||
|
len = strlen(*gr_mem);
|
||
|
(*gr_mem)[len-1] = '\0';
|
||
|
*gr_mem_len = len;
|
||
|
}
|
||
|
|
||
|
return True;
|
||
|
}
|
||
|
|
||
|
/* Query display info for a domain. This returns enough information plus a
|
||
|
bit extra to give an overview of domain users for the User Manager
|
||
|
application. */
|
||
|
static NTSTATUS query_user_list(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
uint32 *num_entries,
|
||
|
WINBIND_USERINFO **info)
|
||
|
{
|
||
|
/* We don't have users */
|
||
|
*num_entries = 0;
|
||
|
*info = NULL;
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* list all domain groups */
|
||
|
static NTSTATUS enum_dom_groups(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
uint32 *num_entries,
|
||
|
struct acct_info **info)
|
||
|
{
|
||
|
/* We don't have domain groups */
|
||
|
*num_entries = 0;
|
||
|
*info = NULL;
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* List all domain groups */
|
||
|
|
||
|
static NTSTATUS enum_local_groups(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
uint32 *num_entries,
|
||
|
struct acct_info **info)
|
||
|
{
|
||
|
struct acct_info *talloced_info;
|
||
|
|
||
|
/* Hmm. One billion aliases should be enough for a start */
|
||
|
|
||
|
if (!pdb_enum_aliases(&domain->sid, 0, 1000000000,
|
||
|
num_entries, info)) {
|
||
|
/* Nothing to report, just exit. */
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
talloced_info = (struct acct_info *)
|
||
|
talloc_memdup(mem_ctx, *info,
|
||
|
*num_entries * sizeof(struct acct_info));
|
||
|
|
||
|
SAFE_FREE(*info);
|
||
|
*info = talloced_info;
|
||
|
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* convert a single name to a sid in a domain */
|
||
|
static NTSTATUS name_to_sid(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
const char *name,
|
||
|
DOM_SID *sid,
|
||
|
enum SID_NAME_USE *type)
|
||
|
{
|
||
|
DEBUG(10, ("Finding name %s\n", name));
|
||
|
|
||
|
if (!pdb_find_alias(name, sid))
|
||
|
return NT_STATUS_NONE_MAPPED;
|
||
|
|
||
|
*type = SID_NAME_ALIAS;
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
convert a domain SID to a user or group name
|
||
|
*/
|
||
|
static NTSTATUS sid_to_name(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
const DOM_SID *sid,
|
||
|
char **name,
|
||
|
enum SID_NAME_USE *type)
|
||
|
{
|
||
|
struct acct_info info;
|
||
|
|
||
|
DEBUG(10, ("Converting SID %s\n", sid_string_static(sid)));
|
||
|
|
||
|
if (!pdb_get_aliasinfo(sid, &info))
|
||
|
return NT_STATUS_NONE_MAPPED;
|
||
|
|
||
|
*name = talloc_strdup(mem_ctx, info.acct_name);
|
||
|
*type = SID_NAME_ALIAS;
|
||
|
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* Lookup user information from a rid or username. */
|
||
|
static NTSTATUS query_user(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
const DOM_SID *user_sid,
|
||
|
WINBIND_USERINFO *user_info)
|
||
|
{
|
||
|
return NT_STATUS_NO_SUCH_USER;
|
||
|
}
|
||
|
|
||
|
/* Lookup groups a user is a member of. I wish Unix had a call like this! */
|
||
|
static NTSTATUS lookup_usergroups(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
const DOM_SID *user_sid,
|
||
|
uint32 *num_groups, DOM_SID ***user_gids)
|
||
|
{
|
||
|
return NT_STATUS_NO_SUCH_USER;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* Lookup group membership given a rid. */
|
||
|
static NTSTATUS lookup_groupmem(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
const DOM_SID *group_sid, uint32 *num_names,
|
||
|
DOM_SID ***sid_mem, char ***names,
|
||
|
uint32 **name_types)
|
||
|
{
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* find the sequence number for a domain */
|
||
|
static NTSTATUS sequence_number(struct winbindd_domain *domain, uint32 *seq)
|
||
|
{
|
||
|
*seq = 1;
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* get a list of trusted domains */
|
||
|
static NTSTATUS trusted_domains(struct winbindd_domain *domain,
|
||
|
TALLOC_CTX *mem_ctx,
|
||
|
uint32 *num_domains,
|
||
|
char ***names,
|
||
|
char ***alt_names,
|
||
|
DOM_SID **dom_sids)
|
||
|
{
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* find the domain sid for a domain */
|
||
|
static NTSTATUS domain_sid(struct winbindd_domain *domain, DOM_SID *sid)
|
||
|
{
|
||
|
sid_copy(sid, &domain->sid);
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
/* find alternate names list for the domain
|
||
|
* should we look for netbios aliases??
|
||
|
SSS */
|
||
|
static NTSTATUS alternate_name(struct winbindd_domain *domain)
|
||
|
{
|
||
|
DEBUG(3,("pdb: alternate_name\n"));
|
||
|
|
||
|
return NT_STATUS_OK;
|
||
|
}
|
||
|
|
||
|
|
||
|
/* the rpc backend methods are exposed via this structure */
|
||
|
struct winbindd_methods passdb_methods = {
|
||
|
False,
|
||
|
query_user_list,
|
||
|
enum_dom_groups,
|
||
|
enum_local_groups,
|
||
|
name_to_sid,
|
||
|
sid_to_name,
|
||
|
query_user,
|
||
|
lookup_usergroups,
|
||
|
lookup_groupmem,
|
||
|
sequence_number,
|
||
|
trusted_domains,
|
||
|
domain_sid,
|
||
|
alternate_name
|
||
|
};
|