drsuapi_cracknames.c

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

C
998
字号
/*    Unix SMB/CIFS implementation.   DRSUapi tests   Copyright (C) Andrew Tridgell 2003   Copyright (C) Stefan (metze) Metzmacher 2004   Copyright (C) Andrew Bartlett <abartlet@samba.org> 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 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 "torture/torture.h"#include "librpc/gen_ndr/ndr_drsuapi_c.h"#include "torture/rpc/rpc.h"#include "ldb/include/ldb.h"#include "libcli/security/security.h"#include "param/param.h"static bool test_DsCrackNamesMatrix(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 				    struct DsPrivate *priv, const char *dn,				    const char *user_principal_name, const char *service_principal_name){		NTSTATUS status;	bool ret = true;	struct drsuapi_DsCrackNames r;	enum drsuapi_DsNameFormat formats[] = {		DRSUAPI_DS_NAME_FORMAT_FQDN_1779,		DRSUAPI_DS_NAME_FORMAT_NT4_ACCOUNT,		DRSUAPI_DS_NAME_FORMAT_DISPLAY,		DRSUAPI_DS_NAME_FORMAT_GUID,		DRSUAPI_DS_NAME_FORMAT_CANONICAL,		DRSUAPI_DS_NAME_FORMAT_USER_PRINCIPAL,		DRSUAPI_DS_NAME_FORMAT_CANONICAL_EX,		DRSUAPI_DS_NAME_FORMAT_SERVICE_PRINCIPAL,		DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY,		DRSUAPI_DS_NAME_FORMAT_DNS_DOMAIN	};	struct drsuapi_DsNameString names[ARRAY_SIZE(formats)];	int i, j;	const char *n_matrix[ARRAY_SIZE(formats)][ARRAY_SIZE(formats)];	const char *n_from[ARRAY_SIZE(formats)];	ZERO_STRUCT(r);	r.in.bind_handle		= &priv->bind_handle;	r.in.level			= 1;	r.in.req.req1.codepage		= 1252; /* german */	r.in.req.req1.language		= 0x00000407; /* german */	r.in.req.req1.count		= 1;	r.in.req.req1.names		= names;	r.in.req.req1.format_flags	= DRSUAPI_DS_NAME_FLAG_NO_FLAGS;	n_matrix[0][0] = dn;	for (i = 0; i < ARRAY_SIZE(formats); i++) {		r.in.req.req1.format_offered	= DRSUAPI_DS_NAME_FORMAT_FQDN_1779;		r.in.req.req1.format_desired	= formats[i];		names[0].str = dn;		status = dcerpc_drsuapi_DsCrackNames(p, mem_ctx, &r);		if (!NT_STATUS_IS_OK(status)) {			const char *errstr = nt_errstr(status);			if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {				errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);			}			printf("testing DsCrackNames (matrix prep) with name '%s' from format: %d desired format:%d ",			       names[0].str, r.in.req.req1.format_offered, r.in.req.req1.format_desired);					printf("dcerpc_drsuapi_DsCrackNames failed - %s\n", errstr);			ret = false;		} else if (!W_ERROR_IS_OK(r.out.result)) {			printf("testing DsCrackNames (matrix prep) with name '%s' from format: %d desired format:%d ",			       names[0].str, r.in.req.req1.format_offered, r.in.req.req1.format_desired);					printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));			ret = false;		}					if (!ret) {			return ret;		}		switch (formats[i]) {		case DRSUAPI_DS_NAME_FORMAT_SERVICE_PRINCIPAL:				if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_NOT_UNIQUE) {				printf(__location__ ": Unexpected error (%d): This name lookup should fail\n", 				       r.out.ctr.ctr1->array[0].status);				return false;			}			printf ("(expected) error\n");			break;		case DRSUAPI_DS_NAME_FORMAT_USER_PRINCIPAL:			if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_NO_MAPPING) {				printf(__location__ ": Unexpected error (%d): This name lookup should fail\n", 				       r.out.ctr.ctr1->array[0].status);				return false;			}			printf ("(expected) error\n");			break;		case DRSUAPI_DS_NAME_FORMAT_DNS_DOMAIN:			case DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY:				if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_RESOLVE_ERROR) {				printf(__location__ ": Unexpected error (%d): This name lookup should fail\n", 				       r.out.ctr.ctr1->array[0].status);				return false;			}			printf ("(expected) error\n");			break;		default:			if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {				printf("Error: %d\n", r.out.ctr.ctr1->array[0].status);				return false;			}		}		switch (formats[i]) {		case DRSUAPI_DS_NAME_FORMAT_USER_PRINCIPAL:			n_from[i] = user_principal_name;			break;		case DRSUAPI_DS_NAME_FORMAT_SERVICE_PRINCIPAL:				n_from[i] = service_principal_name;			break;		case DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY:			case DRSUAPI_DS_NAME_FORMAT_DNS_DOMAIN:				n_from[i] = NULL;			break;		default:			n_from[i] = r.out.ctr.ctr1->array[0].result_name;			printf("%s\n", n_from[i]);		}	}	for (i = 0; i < ARRAY_SIZE(formats); i++) {		for (j = 0; j < ARRAY_SIZE(formats); j++) {			r.in.req.req1.format_offered	= formats[i];			r.in.req.req1.format_desired	= formats[j];			if (!n_from[i]) {				n_matrix[i][j] = NULL;				continue;			}			names[0].str = n_from[i];			status = dcerpc_drsuapi_DsCrackNames(p, mem_ctx, &r);			if (!NT_STATUS_IS_OK(status)) {				const char *errstr = nt_errstr(status);				if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {					errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);				}				printf("testing DsCrackNames (matrix) with name '%s' from format: %d desired format:%d failed - %s",				       names[0].str, r.in.req.req1.format_offered, r.in.req.req1.format_desired, errstr);				ret = false;			} else if (!W_ERROR_IS_OK(r.out.result)) {				printf("testing DsCrackNames (matrix) with name '%s' from format: %d desired format:%d failed - %s",				       names[0].str, r.in.req.req1.format_offered, r.in.req.req1.format_desired, 				       win_errstr(r.out.result));				ret = false;			}						if (!ret) {				return ret;			}			if (r.out.ctr.ctr1->array[0].status == DRSUAPI_DS_NAME_STATUS_OK) {				n_matrix[i][j] = r.out.ctr.ctr1->array[0].result_name;			} else {				n_matrix[i][j] = NULL;			}		}	}	for (i = 0; i < ARRAY_SIZE(formats); i++) {		for (j = 0; j < ARRAY_SIZE(formats); j++) {			if (n_matrix[i][j] == n_from[j]) {							/* We don't have a from name for these yet (and we can't map to them to find it out) */			} else if (n_matrix[i][j] == NULL && n_from[i] == NULL) {							/* we can't map to these two */			} else if (n_matrix[i][j] == NULL && formats[j] == DRSUAPI_DS_NAME_FORMAT_USER_PRINCIPAL) {			} else if (n_matrix[i][j] == NULL && formats[j] == DRSUAPI_DS_NAME_FORMAT_SERVICE_PRINCIPAL) {			} else if (n_matrix[i][j] == NULL && n_from[j] != NULL) {				printf("dcerpc_drsuapi_DsCrackNames mismatch - from %d to %d: %s should be %s\n", formats[i], formats[j], n_matrix[i][j], n_from[j]);				ret = false;			} else if (n_matrix[i][j] != NULL && n_from[j] == NULL) {				printf("dcerpc_drsuapi_DsCrackNames mismatch - from %d to %d: %s should be %s\n", formats[i], formats[j], n_matrix[i][j], n_from[j]);				ret = false;			} else if (strcmp(n_matrix[i][j], n_from[j]) != 0) {				printf("dcerpc_drsuapi_DsCrackNames mismatch - from %d to %d: %s should be %s\n", formats[i], formats[j], n_matrix[i][j], n_from[j]);				ret = false;			}		}	}	return ret;}bool test_DsCrackNames(struct torture_context *tctx,		       struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, 		       struct DsPrivate *priv){	NTSTATUS status;	struct drsuapi_DsCrackNames r;	struct drsuapi_DsNameString names[1];	bool ret = true;	const char *dns_domain;	const char *nt4_domain;	const char *FQDN_1779_name;	struct ldb_context *ldb;	struct ldb_dn *FQDN_1779_dn;	struct ldb_dn *realm_dn;	const char *realm_dn_str;	const char *realm_canonical;	const char *realm_canonical_ex;	const char *user_principal_name;	char *user_principal_name_short;	const char *service_principal_name;	const char *canonical_name;	const char *canonical_ex_name;	const char *dom_sid;	const char *test_dc = torture_join_netbios_name(priv->join);	ZERO_STRUCT(r);	r.in.bind_handle		= &priv->bind_handle;	r.in.level			= 1;	r.in.req.req1.codepage		= 1252; /* german */	r.in.req.req1.language		= 0x00000407; /* german */	r.in.req.req1.count		= 1;	r.in.req.req1.names		= names;	r.in.req.req1.format_flags	= DRSUAPI_DS_NAME_FLAG_NO_FLAGS;	r.in.req.req1.format_offered	= DRSUAPI_DS_NAME_FORMAT_SID_OR_SID_HISTORY;	r.in.req.req1.format_desired	= DRSUAPI_DS_NAME_FORMAT_NT4_ACCOUNT;	dom_sid = dom_sid_string(mem_ctx, torture_join_sid(priv->join));		names[0].str = dom_sid;	printf("testing DsCrackNames with name '%s' desired format:%d\n",			names[0].str, r.in.req.req1.format_desired);	status = dcerpc_drsuapi_DsCrackNames(p, mem_ctx, &r);	if (!NT_STATUS_IS_OK(status)) {		const char *errstr = nt_errstr(status);		if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {			errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);		}		printf("dcerpc_drsuapi_DsCrackNames failed - %s\n", errstr);		ret = false;	} else if (!W_ERROR_IS_OK(r.out.result)) {		printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));		ret = false;	} else if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {		printf("DsCrackNames failed on name - %d\n", r.out.ctr.ctr1->array[0].status);		ret = false;	}	if (!ret) {		return ret;	}	dns_domain = r.out.ctr.ctr1->array[0].dns_domain_name;	nt4_domain = r.out.ctr.ctr1->array[0].result_name;	r.in.req.req1.format_desired	= DRSUAPI_DS_NAME_FORMAT_GUID;	printf("testing DsCrackNames with name '%s' desired format:%d\n",			names[0].str, r.in.req.req1.format_desired);	status = dcerpc_drsuapi_DsCrackNames(p, mem_ctx, &r);	if (!NT_STATUS_IS_OK(status)) {		const char *errstr = nt_errstr(status);		if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {			errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);		}		printf("dcerpc_drsuapi_DsCrackNames failed - %s\n", errstr);		ret = false;	} else if (!W_ERROR_IS_OK(r.out.result)) {		printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));		ret = false;	} else if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {		printf("DsCrackNames failed on name - %d\n", r.out.ctr.ctr1->array[0].status);		ret = false;	}	if (!ret) {		return ret;	}	priv->domain_dns_name = r.out.ctr.ctr1->array[0].dns_domain_name;	priv->domain_guid_str = r.out.ctr.ctr1->array[0].result_name;	GUID_from_string(priv->domain_guid_str, &priv->domain_guid);	r.in.req.req1.format_desired	= DRSUAPI_DS_NAME_FORMAT_FQDN_1779;	printf("testing DsCrackNames with name '%s' desired format:%d\n",			names[0].str, r.in.req.req1.format_desired);	status = dcerpc_drsuapi_DsCrackNames(p, mem_ctx, &r);	if (!NT_STATUS_IS_OK(status)) {		const char *errstr = nt_errstr(status);		if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {			errstr = dcerpc_errstr(mem_ctx, p->last_fault_code);		}		printf("dcerpc_drsuapi_DsCrackNames failed - %s\n", errstr);		ret = false;	} else if (!W_ERROR_IS_OK(r.out.result)) {		printf("DsCrackNames failed - %s\n", win_errstr(r.out.result));		ret = false;	} else if (r.out.ctr.ctr1->array[0].status != DRSUAPI_DS_NAME_STATUS_OK) {		printf("DsCrackNames failed on name - %d\n", r.out.ctr.ctr1->array[0].status);		ret = false;	}	if (!ret) {		return ret;	}	ldb = ldb_init(mem_ctx);		realm_dn_str = r.out.ctr.ctr1->array[0].result_name;	realm_dn =  ldb_dn_new(mem_ctx, ldb, realm_dn_str);	realm_canonical = ldb_dn_canonical_string(mem_ctx, realm_dn);

⌨️ 快捷键说明

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