dcesrv_drsuapi.c

来自「samba最新软件」· C语言 代码 · 共 816 行 · 第 1/2 页

C
816
字号
/*    Unix SMB/CIFS implementation.   endpoint server for the drsuapi pipe   Copyright (C) Stefan Metzmacher 2004   Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006      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 <http://www.gnu.org/licenses/>.*/#include "includes.h"#include "librpc/gen_ndr/ndr_drsuapi.h"#include "rpc_server/dcerpc_server.h"#include "rpc_server/common/common.h"#include "rpc_server/drsuapi/dcesrv_drsuapi.h"#include "dsdb/samdb/samdb.h"#include "lib/ldb/include/ldb_errors.h"#include "param/param.h"/*   drsuapi_DsBind */static WERROR dcesrv_drsuapi_DsBind(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsBind *r){	struct drsuapi_bind_state *b_state;	struct dcesrv_handle *handle;	struct drsuapi_DsBindInfoCtr *bind_info;	struct GUID site_guid;	struct ldb_result *site_res;	struct ldb_dn *server_site_dn;	static const char *site_attrs[] = { "objectGUID", NULL };	struct ldb_result *ntds_res;	struct ldb_dn *ntds_dn;	static const char *ntds_attrs[] = { "ms-DS-ReplicationEpoch", NULL };	uint32_t u1;	uint32_t repl_epoch;	int ret;	r->out.bind_info = NULL;	ZERO_STRUCTP(r->out.bind_handle);	b_state = talloc_zero(mem_ctx, struct drsuapi_bind_state);	W_ERROR_HAVE_NO_MEMORY(b_state);	/*	 * connect to the samdb	 */	b_state->sam_ctx = samdb_connect(b_state, dce_call->event_ctx, dce_call->conn->dce_ctx->lp_ctx, dce_call->conn->auth_state.session_info); 	if (!b_state->sam_ctx) {		return WERR_FOOBAR;	}	/*	 * find out the guid of our own site	 */	server_site_dn = samdb_server_site_dn(b_state->sam_ctx, mem_ctx);	W_ERROR_HAVE_NO_MEMORY(server_site_dn);	ret = ldb_search_exp_fmt(b_state->sam_ctx, mem_ctx, &site_res,				 server_site_dn, LDB_SCOPE_BASE, site_attrs,				 "(objectClass=*)");	if (ret != LDB_SUCCESS) {		return WERR_DS_DRA_INTERNAL_ERROR;	}	if (site_res->count != 1) {		return WERR_DS_DRA_INTERNAL_ERROR;	}	site_guid = samdb_result_guid(site_res->msgs[0], "objectGUID");	/*	 * lookup the local servers Replication Epoch	 */	ntds_dn = samdb_ntds_settings_dn(b_state->sam_ctx);	W_ERROR_HAVE_NO_MEMORY(ntds_dn);	ret = ldb_search_exp_fmt(b_state->sam_ctx, mem_ctx, &ntds_res,				 ntds_dn, LDB_SCOPE_BASE, ntds_attrs,				 "(objectClass=*)");	if (ret != LDB_SUCCESS) {		return WERR_DS_DRA_INTERNAL_ERROR;	}	if (ntds_res->count != 1) {		return WERR_DS_DRA_INTERNAL_ERROR;	}	repl_epoch = samdb_result_uint(ntds_res->msgs[0], "ms-DS-ReplicationEpoch", 0);	/*	 * TODO: find out what this is...	 */	u1 = 0;	/*	 * store the clients bind_guid	 */	if (r->in.bind_guid) {		b_state->remote_bind_guid = *r->in.bind_guid;	}	/*	 * store the clients bind_info	 */	if (r->in.bind_info) {		switch (r->in.bind_info->length) {		case 24: {			struct drsuapi_DsBindInfo24 *info24;			info24 = &r->in.bind_info->info.info24;			b_state->remote_info28.supported_extensions	= info24->supported_extensions;			b_state->remote_info28.site_guid		= info24->site_guid;			b_state->remote_info28.u1			= info24->u1;			b_state->remote_info28.repl_epoch		= 0;			break;		}		case 28:			b_state->remote_info28 = r->in.bind_info->info.info28;			break;		}	}	/*	 * fill in our local bind info 28	 */	b_state->local_info28.supported_extensions	= 0;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_BASE;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_ASYNC_REPLICATION;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_REMOVEAPI;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_MOVEREQ_V2;#if 0 /* we don't support MSZIP compression (only decompression) */	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHG_COMPRESS;#endif	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V1;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_RESTORE_USN_OPTIMIZATION;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_KCC_EXECUTE;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRY_V2;	if (0 /*domain.behavior_version == 2*/) {		/* TODO: find out how this is really triggered! */		b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_LINKED_VALUE_REPLICATION;	}	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V2;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_INSTANCE_TYPE_NOT_REQ_ON_MOD;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_CRYPTO_BIND;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GET_REPL_INFO;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_STRONG_ENCRYPTION;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_DCINFO_V01;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_TRANSITIVE_MEMBERSHIP;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_ADD_SID_HISTORY;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_POST_BETA3;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_00100000;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GET_MEMBERSHIPS2;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V6;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_NONDOMAIN_NCS;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREQ_V8;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V5;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V6;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_ADDENTRYREPLY_V3;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_GETCHGREPLY_V7;	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_VERIFY_OBJECT;#if 0 /* we don't support XPRESS compression yet */	b_state->local_info28.supported_extensions	|= DRSUAPI_SUPPORTED_EXTENSION_XPRESS_COMPRESS;#endif	b_state->local_info28.site_guid			= site_guid;	b_state->local_info28.u1				= u1;	b_state->local_info28.repl_epoch			= repl_epoch;	/*	 * allocate the return bind_info	 */	bind_info = talloc(mem_ctx, struct drsuapi_DsBindInfoCtr);	W_ERROR_HAVE_NO_MEMORY(bind_info);	bind_info->length	= 28;	bind_info->info.info28	= b_state->local_info28;	/*	 * allocate a bind handle	 */	handle = dcesrv_handle_new(dce_call->context, DRSUAPI_BIND_HANDLE);	W_ERROR_HAVE_NO_MEMORY(handle);	handle->data = talloc_steal(handle, b_state);	/*	 * prepare reply	 */	r->out.bind_info = bind_info;	*r->out.bind_handle = handle->wire_handle;	return WERR_OK;}/*   drsuapi_DsUnbind */static WERROR dcesrv_drsuapi_DsUnbind(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,			       struct drsuapi_DsUnbind *r){	struct dcesrv_handle *h;	*r->out.bind_handle = *r->in.bind_handle;	DCESRV_PULL_HANDLE_WERR(h, r->in.bind_handle, DRSUAPI_BIND_HANDLE);	talloc_free(h);	ZERO_STRUCTP(r->out.bind_handle);	return WERR_OK;}/*   drsuapi_DsReplicaSync */static WERROR dcesrv_drsuapi_DsReplicaSync(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsReplicaSync *r){	/* TODO: implement this call correct!	 *       for now we just say yes,	 *       because we have no output parameter	 */	return WERR_OK;}/*   drsuapi_DsGetNCChanges*/static WERROR dcesrv_drsuapi_DsGetNCChanges(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsGetNCChanges *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   drsuapi_DsReplicaUpdateRefs*/static WERROR dcesrv_drsuapi_DsReplicaUpdateRefs(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsReplicaUpdateRefs *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   DRSUAPI_REPLICA_ADD */static WERROR dcesrv_DRSUAPI_REPLICA_ADD(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct DRSUAPI_REPLICA_ADD *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   DRSUAPI_REPLICA_DEL */static WERROR dcesrv_DRSUAPI_REPLICA_DEL(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct DRSUAPI_REPLICA_DEL *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   DRSUAPI_REPLICA_MODIFY */static WERROR dcesrv_DRSUAPI_REPLICA_MODIFY(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct DRSUAPI_REPLICA_MODIFY *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   DRSUAPI_VERIFY_NAMES */static WERROR dcesrv_DRSUAPI_VERIFY_NAMES(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct DRSUAPI_VERIFY_NAMES *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   drsuapi_DsGetMemberships */static WERROR dcesrv_drsuapi_DsGetMemberships(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsGetMemberships *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   DRSUAPI_INTER_DOMAIN_MOVE */static WERROR dcesrv_DRSUAPI_INTER_DOMAIN_MOVE(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct DRSUAPI_INTER_DOMAIN_MOVE *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   drsuapi_DsGetNT4ChangeLog */static WERROR dcesrv_drsuapi_DsGetNT4ChangeLog(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsGetNT4ChangeLog *r){	DCESRV_FAULT(DCERPC_FAULT_OP_RNG_ERROR);}/*   drsuapi_DsCrackNames */WERROR dcesrv_drsuapi_DsCrackNames(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,			    struct drsuapi_DsCrackNames *r){	WERROR status;	struct drsuapi_bind_state *b_state;	struct dcesrv_handle *h;	r->out.level = r->in.level;	ZERO_STRUCT(r->out.ctr);	DCESRV_PULL_HANDLE_WERR(h, r->in.bind_handle, DRSUAPI_BIND_HANDLE);	b_state = h->data;	switch (r->in.level) {		case 1: {			struct drsuapi_DsNameCtr1 *ctr1;			struct drsuapi_DsNameInfo1 *names;			int count;			int i;			ctr1 = talloc(mem_ctx, struct drsuapi_DsNameCtr1);			W_ERROR_HAVE_NO_MEMORY(ctr1);			count = r->in.req.req1.count;			names = talloc_array(mem_ctx, struct drsuapi_DsNameInfo1, count);			W_ERROR_HAVE_NO_MEMORY(names);			for (i=0; i < count; i++) {				status = DsCrackNameOneName(b_state->sam_ctx, mem_ctx,							    r->in.req.req1.format_flags,							    r->in.req.req1.format_offered,							    r->in.req.req1.format_desired,							    r->in.req.req1.names[i].str,							    &names[i]);				if (!W_ERROR_IS_OK(status)) {					return status;				}			}			ctr1->count = count;			ctr1->array = names;			r->out.ctr.ctr1 = ctr1;			return WERR_OK;		}	}		return WERR_UNKNOWN_LEVEL;}/*   drsuapi_DsWriteAccountSpn */static WERROR dcesrv_drsuapi_DsWriteAccountSpn(struct dcesrv_call_state *dce_call, TALLOC_CTX *mem_ctx,		       struct drsuapi_DsWriteAccountSpn *r){	struct drsuapi_bind_state *b_state;	struct dcesrv_handle *h;	r->out.level = r->in.level;	DCESRV_PULL_HANDLE_WERR(h, r->in.bind_handle, DRSUAPI_BIND_HANDLE);	b_state = h->data;	switch (r->in.level) {		case 1: {			struct drsuapi_DsWriteAccountSpnRequest1 *req;			struct ldb_message *msg;			int count, i, ret;			req = &r->in.req.req1;			count = req->count;			msg = ldb_msg_new(mem_ctx);			if (msg == NULL) {				return WERR_NOMEM;			}			msg->dn = ldb_dn_new(msg, b_state->sam_ctx, req->object_dn);			if ( ! ldb_dn_validate(msg->dn)) {

⌨️ 快捷键说明

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