⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 libnet_becomedc.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 2 页
字号:
/*    Unix SMB/CIFS implementation.   libnet_BecomeDC() tests   Copyright (C) Stefan Metzmacher <metze@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 "lib/cmdline/popt_common.h"#include "torture/torture.h"#include "torture/rpc/rpc.h"#include "libnet/libnet.h"#include "lib/events/events.h"#include "dsdb/samdb/samdb.h"#include "lib/util/dlinklist.h"#include "lib/ldb/include/ldb.h"#include "lib/ldb/include/ldb_errors.h"#include "librpc/ndr/libndr.h"#include "librpc/gen_ndr/ndr_drsuapi.h"#include "librpc/gen_ndr/ndr_drsblobs.h"#include "librpc/gen_ndr/ndr_misc.h"#include "system/time.h"#include "lib/ldb_wrap.h"#include "auth/auth.h"#include "param/param.h"#include "torture/util.h"#include "param/provision.h"struct test_become_dc_state {	struct libnet_context *ctx;	struct torture_context *tctx;	const char *netbios_name;	struct test_join *tj;	struct cli_credentials *machine_account;	struct dsdb_schema *self_made_schema;	const struct dsdb_schema *schema;	struct ldb_context *ldb;	struct {		uint32_t object_count;		struct drsuapi_DsReplicaObjectListItemEx *first_object;		struct drsuapi_DsReplicaObjectListItemEx *last_object;	} schema_part;	const char *targetdir;	struct loadparm_context *lp_ctx;};static NTSTATUS test_become_dc_prepare_db(void *private_data,					      const struct libnet_BecomeDC_PrepareDB *p){	struct test_become_dc_state *s = talloc_get_type(private_data, struct test_become_dc_state);	struct provision_settings settings;	struct provision_result result;	NTSTATUS status;	settings.site_name = p->dest_dsa->site_name;	settings.root_dn_str = p->forest->root_dn_str;	settings.domain_dn_str = p->domain->dn_str;	settings.config_dn_str = p->forest->config_dn_str;	settings.schema_dn_str = p->forest->schema_dn_str;	settings.netbios_name = p->dest_dsa->netbios_name;	settings.realm = torture_join_dom_dns_name(s->tj);	settings.domain = torture_join_dom_netbios_name(s->tj);	settings.server_dn_str = torture_join_server_dn_str(s->tj);	settings.machine_password = cli_credentials_get_password(s->machine_account);	settings.targetdir = s->targetdir;	status = provision_bare(s, s->lp_ctx, &settings, &result);		s->ldb = result.samdb;	s->lp_ctx = result.lp_ctx;        return NT_STATUS_OK;}static NTSTATUS test_become_dc_check_options(void *private_data,					     const struct libnet_BecomeDC_CheckOptions *o){	struct test_become_dc_state *s = talloc_get_type(private_data, struct test_become_dc_state);	DEBUG(0,("Become DC [%s] of Domain[%s]/[%s]\n",		s->netbios_name,		o->domain->netbios_name, o->domain->dns_name));	DEBUG(0,("Promotion Partner is Server[%s] from Site[%s]\n",		o->source_dsa->dns_name, o->source_dsa->site_name));	DEBUG(0,("Options:crossRef behavior_version[%u]\n"		       "\tschema object_version[%u]\n"		       "\tdomain behavior_version[%u]\n"		       "\tdomain w2k3_update_revision[%u]\n", 		o->forest->crossref_behavior_version,		o->forest->schema_object_version,		o->domain->behavior_version,		o->domain->w2k3_update_revision));	return NT_STATUS_OK;}static NTSTATUS test_apply_schema(struct test_become_dc_state *s,				  const struct libnet_BecomeDC_StoreChunk *c){	WERROR status;	const struct drsuapi_DsReplicaOIDMapping_Ctr *mapping_ctr;	uint32_t total_object_count;	uint32_t object_count;	struct drsuapi_DsReplicaObjectListItemEx *first_object;	struct drsuapi_DsReplicaObjectListItemEx *cur;	uint32_t linked_attributes_count;	struct drsuapi_DsReplicaLinkedAttribute *linked_attributes;	const struct drsuapi_DsReplicaCursor2CtrEx *uptodateness_vector;	struct dsdb_extended_replicated_objects *objs;	struct repsFromTo1 *s_dsa;	char *tmp_dns_name;	struct ldb_message *msg;	struct ldb_val prefixMap_val;	struct ldb_message_element *prefixMap_el;	struct ldb_val schemaInfo_val;	char *sam_ldb_path;	uint32_t i;	int ret;	bool ok;	DEBUG(0,("Analyze and apply schema objects\n"));	s_dsa			= talloc_zero(s, struct repsFromTo1);	NT_STATUS_HAVE_NO_MEMORY(s_dsa);	s_dsa->other_info	= talloc(s_dsa, struct repsFromTo1OtherInfo);	NT_STATUS_HAVE_NO_MEMORY(s_dsa->other_info);	switch (c->ctr_level) {	case 1:		mapping_ctr			= &c->ctr1->mapping_ctr;		total_object_count		= c->ctr1->total_object_count;		object_count			= s->schema_part.object_count;		first_object			= s->schema_part.first_object;		linked_attributes_count		= 0;		linked_attributes		= NULL;		s_dsa->highwatermark		= c->ctr1->new_highwatermark;		s_dsa->source_dsa_obj_guid	= c->ctr1->source_dsa_guid;		s_dsa->source_dsa_invocation_id = c->ctr1->source_dsa_invocation_id;		uptodateness_vector		= NULL; /* TODO: map it */		break;	case 6:		mapping_ctr			= &c->ctr6->mapping_ctr;		total_object_count		= c->ctr6->total_object_count;		object_count			= s->schema_part.object_count;		first_object			= s->schema_part.first_object;		linked_attributes_count		= 0; /* TODO: ! */		linked_attributes		= NULL; /* TODO: ! */;		s_dsa->highwatermark		= c->ctr6->new_highwatermark;		s_dsa->source_dsa_obj_guid	= c->ctr6->source_dsa_guid;		s_dsa->source_dsa_invocation_id = c->ctr6->source_dsa_invocation_id;		uptodateness_vector		= c->ctr6->uptodateness_vector;		break;	default:		return NT_STATUS_INVALID_PARAMETER;	}	s_dsa->replica_flags		= DRSUAPI_DS_REPLICA_NEIGHBOUR_WRITEABLE					| DRSUAPI_DS_REPLICA_NEIGHBOUR_SYNC_ON_STARTUP					| DRSUAPI_DS_REPLICA_NEIGHBOUR_DO_SCHEDULED_SYNCS;	memset(s_dsa->schedule, 0x11, sizeof(s_dsa->schedule));	tmp_dns_name	= GUID_string(s_dsa->other_info, &s_dsa->source_dsa_obj_guid);	NT_STATUS_HAVE_NO_MEMORY(tmp_dns_name);	tmp_dns_name	= talloc_asprintf_append_buffer(tmp_dns_name, "._msdcs.%s", c->forest->dns_name);	NT_STATUS_HAVE_NO_MEMORY(tmp_dns_name);	s_dsa->other_info->dns_name = tmp_dns_name;	for (cur = first_object; cur; cur = cur->next_object) {		bool is_attr = false;		bool is_class = false;		for (i=0; i < cur->object.attribute_ctr.num_attributes; i++) {			struct drsuapi_DsReplicaAttribute *a;			uint32_t j;			const char *oid = NULL;			a = &cur->object.attribute_ctr.attributes[i];			status = dsdb_map_int2oid(s->self_made_schema, a->attid, s, &oid);			if (!W_ERROR_IS_OK(status)) {				return werror_to_ntstatus(status);			}			switch (a->attid) {			case DRSUAPI_ATTRIBUTE_objectClass:				for (j=0; j < a->value_ctr.num_values; j++) {					uint32_t val = 0xFFFFFFFF;					if (a->value_ctr.values[i].blob					    && a->value_ctr.values[i].blob->length == 4) {						val = IVAL(a->value_ctr.values[i].blob->data,0);					}					if (val == DRSUAPI_OBJECTCLASS_attributeSchema) {						is_attr = true;					}					if (val == DRSUAPI_OBJECTCLASS_classSchema) {						is_class = true;					}				}				break;			default:				break;			}		}		if (is_attr) {			struct dsdb_attribute *sa;			sa = talloc_zero(s->self_made_schema, struct dsdb_attribute);			NT_STATUS_HAVE_NO_MEMORY(sa);			status = dsdb_attribute_from_drsuapi(s->self_made_schema, &cur->object, s, sa);			if (!W_ERROR_IS_OK(status)) {				return werror_to_ntstatus(status);			}			DLIST_ADD_END(s->self_made_schema->attributes, sa, struct dsdb_attribute *);		}		if (is_class) {			struct dsdb_class *sc;			sc = talloc_zero(s->self_made_schema, struct dsdb_class);			NT_STATUS_HAVE_NO_MEMORY(sc);			status = dsdb_class_from_drsuapi(s->self_made_schema, &cur->object, s, sc);			if (!W_ERROR_IS_OK(status)) {				return werror_to_ntstatus(status);			}			DLIST_ADD_END(s->self_made_schema->classes, sc, struct dsdb_class *);		}	}	/* attach the schema to the ldb */	ret = dsdb_set_schema(s->ldb, s->self_made_schema);	if (ret != LDB_SUCCESS) {		return NT_STATUS_FOOBAR;	}	/* we don't want to access the self made schema anymore */	s->self_made_schema = NULL;	s->schema = dsdb_get_schema(s->ldb);	status = dsdb_extended_replicated_objects_commit(s->ldb,							 c->partition->nc.dn,							 mapping_ctr,							 object_count,							 first_object,							 linked_attributes_count,							 linked_attributes,							 s_dsa,							 uptodateness_vector,							 c->gensec_skey,							 s, &objs);	if (!W_ERROR_IS_OK(status)) {		DEBUG(0,("Failed to commit objects: %s\n", win_errstr(status)));		return werror_to_ntstatus(status);	}	if (lp_parm_bool(s->tctx->lp_ctx, NULL, "become dc", "dump objects", false)) {		for (i=0; i < objs->num_objects; i++) {			struct ldb_ldif ldif;			fprintf(stdout, "#\n");			ldif.changetype = LDB_CHANGETYPE_NONE;			ldif.msg = objs->objects[i].msg;			ldb_ldif_write_file(s->ldb, stdout, &ldif);			NDR_PRINT_DEBUG(replPropertyMetaDataBlob, objs->objects[i].meta_data);		}	}	msg = ldb_msg_new(objs);	NT_STATUS_HAVE_NO_MEMORY(msg);	msg->dn = objs->partition_dn;	status = dsdb_get_oid_mappings_ldb(s->schema, msg, &prefixMap_val, &schemaInfo_val);	if (!W_ERROR_IS_OK(status)) {		DEBUG(0,("Failed dsdb_get_oid_mappings_ldb(%s)\n", win_errstr(status)));		return werror_to_ntstatus(status);	}	/* we only add prefixMap here, because schemaInfo is a replicated attribute and already applied */	ret = ldb_msg_add_value(msg, "prefixMap", &prefixMap_val, &prefixMap_el);	if (ret != LDB_SUCCESS) {		return NT_STATUS_FOOBAR;	}	prefixMap_el->flags = LDB_FLAG_MOD_REPLACE;	ret = ldb_modify(s->ldb, msg);	if (ret != LDB_SUCCESS) {		DEBUG(0,("Failed to add prefixMap and schemaInfo %s\n", ldb_strerror(ret)));		return NT_STATUS_FOOBAR;	}	talloc_free(s_dsa);	talloc_free(objs);	/* reopen the ldb */	talloc_free(s->ldb); /* this also free's the s->schema, because dsdb_set_schema() steals it */	s->schema = NULL;	sam_ldb_path = talloc_asprintf(s, "%s/%s", s->targetdir, "private/sam.ldb");	DEBUG(0,("Reopen the SAM LDB with system credentials and a already stored schema: %s\n", sam_ldb_path));	s->ldb = ldb_wrap_connect(s, s->tctx->ev, s->tctx->lp_ctx, sam_ldb_path,				  system_session(s, s->tctx->lp_ctx),				  NULL, 0, NULL);	if (!s->ldb) {		DEBUG(0,("Failed to open '%s'\n",			sam_ldb_path));		return NT_STATUS_INTERNAL_DB_ERROR;	}	ok = samdb_set_ntds_invocation_id(s->ldb, &c->dest_dsa->invocation_id);	if (!ok) {		DEBUG(0,("Failed to set cached ntds invocationId\n"));		return NT_STATUS_FOOBAR;	}	ok = samdb_set_ntds_objectGUID(s->ldb, &c->dest_dsa->ntds_guid);	if (!ok) {		DEBUG(0,("Failed to set cached ntds objectGUID\n"));		return NT_STATUS_FOOBAR;	}	s->schema = dsdb_get_schema(s->ldb);	if (!s->schema) {		DEBUG(0,("Failed to get loaded dsdb_schema\n"));		return NT_STATUS_FOOBAR;	}

⌨️ 快捷键说明

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