winbindd_rpc.c

来自「samba-3.0.22.tar.gz 编译smb服务器的源码」· C语言 代码 · 共 901 行 · 第 1/2 页

C
901
字号
/*    Unix SMB/CIFS implementation.   Winbind rpc backend functions   Copyright (C) Tim Potter 2000-2001,2003   Copyright (C) Andrew Tridgell 2001   Copyright (C) Volker Lendecke 2005      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/* 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){	NTSTATUS result;	POLICY_HND dom_pol;	unsigned int i, start_idx;	uint32 loop_count;	struct rpc_pipe_client *cli;	DEBUG(3,("rpc: query_user_list\n"));	*num_entries = 0;	*info = NULL;	result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol);	if (!NT_STATUS_IS_OK(result))		return result;	i = start_idx = 0;	loop_count = 0;	do {		TALLOC_CTX *ctx2;		uint32 num_dom_users, j;		uint32 max_entries, max_size;		SAM_DISPINFO_CTR ctr;		SAM_DISPINFO_1 info1;		ZERO_STRUCT( ctr );		ZERO_STRUCT( info1 );		ctr.sam.info1 = &info1;			if (!(ctx2 = talloc_init("winbindd enum_users")))			return NT_STATUS_NO_MEMORY;		/* this next bit is copied from net_user_list_internal() */		get_query_dispinfo_params(loop_count, &max_entries,					  &max_size);		result = rpccli_samr_query_dispinfo(cli, mem_ctx, &dom_pol,						    &start_idx, 1,						    &num_dom_users,						    max_entries, max_size,						    &ctr);		loop_count++;		*num_entries += num_dom_users;		*info = TALLOC_REALLOC_ARRAY(mem_ctx, *info, WINBIND_USERINFO,					     *num_entries);		if (!(*info)) {			talloc_destroy(ctx2);			return NT_STATUS_NO_MEMORY;		}		for (j = 0; j < num_dom_users; i++, j++) {			fstring username, fullname;			uint32 rid = ctr.sam.info1->sam[j].rid_user;						unistr2_to_ascii( username, &(&ctr.sam.info1->str[j])->uni_acct_name, sizeof(username)-1);			unistr2_to_ascii( fullname, &(&ctr.sam.info1->str[j])->uni_full_name, sizeof(fullname)-1);						(*info)[i].acct_name = talloc_strdup(mem_ctx, username );			(*info)[i].full_name = talloc_strdup(mem_ctx, fullname );			(*info)[i].homedir = NULL;			(*info)[i].shell = NULL;			sid_compose(&(*info)[i].user_sid, &domain->sid, rid);						/* For the moment we set the primary group for			   every user to be the Domain Users group.			   There are serious problems with determining			   the actual primary group for large domains.			   This should really be made into a 'winbind			   force group' smb.conf parameter or			   something like that. */			   			sid_compose(&(*info)[i].group_sid, &domain->sid, 				    DOMAIN_GROUP_RID_USERS);		}		talloc_destroy(ctx2);	} while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));	return result;}/* list all domain groups */static NTSTATUS enum_dom_groups(struct winbindd_domain *domain,				TALLOC_CTX *mem_ctx,				uint32 *num_entries, 				struct acct_info **info){	POLICY_HND dom_pol;	NTSTATUS status;	uint32 start = 0;	struct rpc_pipe_client *cli;	*num_entries = 0;	*info = NULL;	DEBUG(3,("rpc: enum_dom_groups\n"));	status = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol);	if (!NT_STATUS_IS_OK(status))		return status;	do {		struct acct_info *info2 = NULL;		uint32 count = 0;		TALLOC_CTX *mem_ctx2;		mem_ctx2 = talloc_init("enum_dom_groups[rpc]");		/* start is updated by this call. */		status = rpccli_samr_enum_dom_groups(cli, mem_ctx2, &dom_pol,						     &start,						     0xFFFF, /* buffer size? */						     &info2, &count);		if (!NT_STATUS_IS_OK(status) && 		    !NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES)) {			talloc_destroy(mem_ctx2);			break;		}		(*info) = TALLOC_REALLOC_ARRAY(mem_ctx, *info,					       struct acct_info,					       (*num_entries) + count);		if (! *info) {			talloc_destroy(mem_ctx2);			status = NT_STATUS_NO_MEMORY;			break;		}		memcpy(&(*info)[*num_entries], info2, count*sizeof(*info2));		(*num_entries) += count;		talloc_destroy(mem_ctx2);	} while (NT_STATUS_EQUAL(status, STATUS_MORE_ENTRIES));	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){	POLICY_HND dom_pol;	NTSTATUS result;	struct rpc_pipe_client *cli;	*num_entries = 0;	*info = NULL;	DEBUG(3,("rpc: enum_local_groups\n"));	result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol);	if (!NT_STATUS_IS_OK(result))		return result;	do {		struct acct_info *info2 = NULL;		uint32 count = 0, start = *num_entries;		TALLOC_CTX *mem_ctx2;		mem_ctx2 = talloc_init("enum_dom_local_groups[rpc]");		result = rpccli_samr_enum_als_groups( cli, mem_ctx2, &dom_pol,						      &start, 0xFFFF, &info2,						      &count);					  		if (!NT_STATUS_IS_OK(result) &&		    !NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES) ) 		{			talloc_destroy(mem_ctx2);			return result;		}		(*info) = TALLOC_REALLOC_ARRAY(mem_ctx, *info,					       struct acct_info,					       (*num_entries) + count);		if (! *info) {			talloc_destroy(mem_ctx2);			return NT_STATUS_NO_MEMORY;		}		memcpy(&(*info)[*num_entries], info2, count*sizeof(*info2));		(*num_entries) += count;		talloc_destroy(mem_ctx2);	} while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));	return NT_STATUS_OK;}/* convert a single name to a sid in a domain */NTSTATUS msrpc_name_to_sid(struct winbindd_domain *domain,			    TALLOC_CTX *mem_ctx,			    const char *domain_name,			    const char *name,			    DOM_SID *sid,			    enum SID_NAME_USE *type){	NTSTATUS result;	DOM_SID *sids = NULL;	uint32 *types = NULL;	const char *full_name;	struct rpc_pipe_client *cli;	POLICY_HND lsa_policy;        if(name == NULL || *name=='\0') {                DEBUG(3,("rpc: name_to_sid name=%s\n", domain_name));                full_name = talloc_asprintf(mem_ctx, "%s", domain_name);        } else {                DEBUG(3,("rpc: name_to_sid name=%s\\%s\n", domain_name, name));                full_name = talloc_asprintf(mem_ctx, "%s\\%s", domain_name, name);        }	if (!full_name) {		DEBUG(0, ("talloc_asprintf failed!\n"));		return NT_STATUS_NO_MEMORY;	}	DEBUG(3,("name_to_sid [rpc] %s for domain %s\n", name?name:"", domain_name ));	result = cm_connect_lsa(domain, mem_ctx, &cli, &lsa_policy);	if (!NT_STATUS_IS_OK(result))		return result;	result = rpccli_lsa_lookup_names(cli, mem_ctx, &lsa_policy, 1, 					 &full_name, &sids, &types);        	if (!NT_STATUS_IS_OK(result))		return result;	/* Return rid and type if lookup successful */	sid_copy(sid, &sids[0]);	*type = (enum SID_NAME_USE)types[0];	return NT_STATUS_OK;}/*  convert a domain SID to a user or group name*/NTSTATUS msrpc_sid_to_name(struct winbindd_domain *domain,			    TALLOC_CTX *mem_ctx,			    const DOM_SID *sid,			    char **domain_name,			    char **name,			    enum SID_NAME_USE *type){	char **domains;	char **names;	uint32 *types;	NTSTATUS result;	struct rpc_pipe_client *cli;	POLICY_HND lsa_policy;	DEBUG(3,("sid_to_name [rpc] %s for domain %s\n", sid_string_static(sid),			domain->name ));	result = cm_connect_lsa(domain, mem_ctx, &cli, &lsa_policy);	if (!NT_STATUS_IS_OK(result))		return result;	result = rpccli_lsa_lookup_sids(cli, mem_ctx, &lsa_policy,					1, sid, &domains, &names, &types);	if (!NT_STATUS_IS_OK(result))		return result;	*type = (enum SID_NAME_USE)types[0];	*domain_name = domains[0];	*name = names[0];	DEBUG(5,("Mapped sid to [%s]\\[%s]\n", domains[0], *name));	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){	NTSTATUS result = NT_STATUS_UNSUCCESSFUL;	POLICY_HND dom_pol, user_pol;	SAM_USERINFO_CTR *ctr;	fstring sid_string;	uint32 user_rid;	NET_USER_INFO_3 *user;	struct rpc_pipe_client *cli;	DEBUG(3,("rpc: query_user rid=%s\n",		 sid_to_string(sid_string, user_sid)));	if (!sid_peek_check_rid(&domain->sid, user_sid, &user_rid))		return NT_STATUS_UNSUCCESSFUL;		/* try netsamlogon cache first */				if ( (user = netsamlogon_cache_get( mem_ctx, user_sid )) != NULL ) 	{						DEBUG(5,("query_user: Cache lookup succeeded for %s\n", 			sid_string_static(user_sid)));		sid_compose(&user_info->user_sid, &domain->sid, user_rid);		sid_compose(&user_info->group_sid, &domain->sid,			    user->group_rid);						user_info->acct_name = unistr2_tdup(mem_ctx,						    &user->uni_user_name);		user_info->full_name = unistr2_tdup(mem_ctx,						    &user->uni_full_name);				user_info->homedir = NULL;		user_info->shell = NULL;								SAFE_FREE(user);						return NT_STATUS_OK;	}		/* no cache; hit the wire */			result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol);	if (!NT_STATUS_IS_OK(result))		return result;	/* Get user handle */	result = rpccli_samr_open_user(cli, mem_ctx, &dom_pol,				       SEC_RIGHTS_MAXIMUM_ALLOWED, user_rid,				       &user_pol);	if (!NT_STATUS_IS_OK(result))		return result;	/* Get user info */	result = rpccli_samr_query_userinfo(cli, mem_ctx, &user_pol,					    0x15, &ctr);	rpccli_samr_close(cli, mem_ctx, &user_pol);	if (!NT_STATUS_IS_OK(result))		return result;	sid_compose(&user_info->user_sid, &domain->sid, user_rid);	sid_compose(&user_info->group_sid, &domain->sid,		    ctr->info.id21->group_rid);	user_info->acct_name = unistr2_tdup(mem_ctx, 					    &ctr->info.id21->uni_user_name);	user_info->full_name = unistr2_tdup(mem_ctx, 					    &ctr->info.id21->uni_full_name);	user_info->homedir = NULL;	user_info->shell = NULL;	return NT_STATUS_OK;}                                   /* 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_grpsids){	NTSTATUS result = NT_STATUS_UNSUCCESSFUL;	POLICY_HND dom_pol, user_pol;	uint32 des_access = SEC_RIGHTS_MAXIMUM_ALLOWED;	DOM_GID *user_groups;	unsigned int i;	fstring sid_string;	uint32 user_rid;	NET_USER_INFO_3 *user;	struct rpc_pipe_client *cli;	DEBUG(3,("rpc: lookup_usergroups sid=%s\n",		 sid_to_string(sid_string, user_sid)));	if (!sid_peek_check_rid(&domain->sid, user_sid, &user_rid))		return NT_STATUS_UNSUCCESSFUL;	*num_groups = 0;	*user_grpsids = NULL;	/* so lets see if we have a cached user_info_3 */		if ( (user = netsamlogon_cache_get( mem_ctx, user_sid )) != NULL )	{		DEBUG(5,("query_user: Cache lookup succeeded for %s\n", 			sid_string_static(user_sid)));					*num_groups = user->num_groups;						(*user_grpsids) = TALLOC_ARRAY(mem_ctx, DOM_SID, *num_groups);		for (i=0;i<(*num_groups);i++) {			sid_copy(&((*user_grpsids)[i]), &domain->sid);			sid_append_rid(&((*user_grpsids)[i]),				       user->gids[i].g_rid);		}						SAFE_FREE(user);						return NT_STATUS_OK;	}	/* no cache; hit the wire */		result = cm_connect_sam(domain, mem_ctx, &cli, &dom_pol);	if (!NT_STATUS_IS_OK(result))

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?