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

📄 acls.c

📁 samba最新软件
💻 C
📖 第 1 页 / 共 4 页
字号:
/*    Unix SMB/CIFS implementation.   test security descriptor operations   Copyright (C) Andrew Tridgell 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 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 "libcli/raw/libcliraw.h"#include "libcli/libcli.h"#include "librpc/gen_ndr/lsa.h"#include "libcli/util/clilsa.h"#include "libcli/security/security.h"#include "torture/util.h"#include "librpc/gen_ndr/ndr_security.h"#define BASEDIR "\\testsd"#define CHECK_STATUS(status, correct) do { \	if (!NT_STATUS_EQUAL(status, correct)) { \		printf("(%s) Incorrect status %s - should be %s\n", \		       __location__, nt_errstr(status), nt_errstr(correct)); \		ret = false; \		goto done; \	}} while (0)static bool test_sd(struct torture_context *tctx, 					struct smbcli_state *cli){	NTSTATUS status;	union smb_open io;	const char *fname = BASEDIR "\\sd.txt";	bool ret = true;	int fnum = -1;	union smb_fileinfo q;	union smb_setfileinfo set;	struct security_ace ace;	struct security_descriptor *sd;	struct dom_sid *test_sid;	printf("TESTING SETFILEINFO EA_SET\n");	io.generic.level = RAW_OPEN_NTCREATEX;	io.ntcreatex.in.root_fid = 0;	io.ntcreatex.in.flags = 0;	io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;	io.ntcreatex.in.create_options = 0;	io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;	io.ntcreatex.in.share_access = 		NTCREATEX_SHARE_ACCESS_READ | 		NTCREATEX_SHARE_ACCESS_WRITE;	io.ntcreatex.in.alloc_size = 0;	io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;	io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;	io.ntcreatex.in.security_flags = 0;	io.ntcreatex.in.fname = fname;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	fnum = io.ntcreatex.out.file.fnum;		q.query_secdesc.level = RAW_FILEINFO_SEC_DESC;	q.query_secdesc.in.file.fnum = fnum;	q.query_secdesc.in.secinfo_flags = 		SECINFO_OWNER |		SECINFO_GROUP |		SECINFO_DACL;	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	sd = q.query_secdesc.out.sd;	printf("add a new ACE to the DACL\n");	test_sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-5432");	ace.type = SEC_ACE_TYPE_ACCESS_ALLOWED;	ace.flags = 0;	ace.access_mask = SEC_STD_ALL;	ace.trustee = *test_sid;	status = security_descriptor_dacl_add(sd, &ace);	CHECK_STATUS(status, NT_STATUS_OK);	set.set_secdesc.level = RAW_SFILEINFO_SEC_DESC;	set.set_secdesc.in.file.fnum = fnum;	set.set_secdesc.in.secinfo_flags = q.query_secdesc.in.secinfo_flags;	set.set_secdesc.in.sd = sd;	status = smb_raw_setfileinfo(cli->tree, &set);	CHECK_STATUS(status, NT_STATUS_OK);	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {		printf("%s: security descriptors don't match!\n", __location__);		printf("got:\n");		NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);		printf("expected:\n");		NDR_PRINT_DEBUG(security_descriptor, sd);		ret = false;	}	printf("remove it again\n");	status = security_descriptor_dacl_del(sd, test_sid);	CHECK_STATUS(status, NT_STATUS_OK);	status = smb_raw_setfileinfo(cli->tree, &set);	CHECK_STATUS(status, NT_STATUS_OK);	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {		printf("%s: security descriptors don't match!\n", __location__);		printf("got:\n");		NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);		printf("expected:\n");		NDR_PRINT_DEBUG(security_descriptor, sd);		ret = false;	}done:	smbcli_close(cli->tree, fnum);	return ret;}/*  test using nttrans create to create a file with an initial acl set*/static bool test_nttrans_create(struct torture_context *tctx, 								struct smbcli_state *cli){	NTSTATUS status;	union smb_open io;	const char *fname = BASEDIR "\\acl2.txt";	bool ret = true;	int fnum = -1;	union smb_fileinfo q;	struct security_ace ace;	struct security_descriptor *sd;	struct dom_sid *test_sid;	printf("testing nttrans create with sec_desc\n");	io.generic.level = RAW_OPEN_NTTRANS_CREATE;	io.ntcreatex.in.root_fid = 0;	io.ntcreatex.in.flags = 0;	io.ntcreatex.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;	io.ntcreatex.in.create_options = 0;	io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;	io.ntcreatex.in.share_access = 		NTCREATEX_SHARE_ACCESS_READ | 		NTCREATEX_SHARE_ACCESS_WRITE;	io.ntcreatex.in.alloc_size = 0;	io.ntcreatex.in.open_disposition = NTCREATEX_DISP_CREATE;	io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;	io.ntcreatex.in.security_flags = 0;	io.ntcreatex.in.fname = fname;	io.ntcreatex.in.sec_desc = NULL;	io.ntcreatex.in.ea_list = NULL;	printf("creating normal file\n");	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	fnum = io.ntcreatex.out.file.fnum;	printf("querying ACL\n");	q.query_secdesc.level = RAW_FILEINFO_SEC_DESC;	q.query_secdesc.in.file.fnum = fnum;	q.query_secdesc.in.secinfo_flags = 		SECINFO_OWNER |		SECINFO_GROUP |		SECINFO_DACL;	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	sd = q.query_secdesc.out.sd;	smbcli_close(cli->tree, fnum);	smbcli_unlink(cli->tree, fname);	printf("adding a new ACE\n");	test_sid = dom_sid_parse_talloc(tctx, "S-1-5-32-1234-54321");	ace.type = SEC_ACE_TYPE_ACCESS_ALLOWED;	ace.flags = 0;	ace.access_mask = SEC_STD_ALL;	ace.trustee = *test_sid;	status = security_descriptor_dacl_add(sd, &ace);	CHECK_STATUS(status, NT_STATUS_OK);		printf("creating a file with an initial ACL\n");	io.ntcreatex.in.sec_desc = sd;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	fnum = io.ntcreatex.out.file.fnum;		q.query_secdesc.in.file.fnum = fnum;	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	if (!security_acl_equal(q.query_secdesc.out.sd->dacl, sd->dacl)) {		printf("%s: security descriptors don't match!\n", __location__);		printf("got:\n");		NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);		printf("expected:\n");		NDR_PRINT_DEBUG(security_descriptor, sd);		ret = false;	}done:	smbcli_close(cli->tree, fnum);	return ret;}#define CHECK_ACCESS_FLAGS(_fnum, flags) do { \	union smb_fileinfo _q; \	_q.access_information.level = RAW_FILEINFO_ACCESS_INFORMATION; \	_q.access_information.in.file.fnum = (_fnum); \	status = smb_raw_fileinfo(cli->tree, tctx, &_q); \	CHECK_STATUS(status, NT_STATUS_OK); \	if (_q.access_information.out.access_flags != (flags)) { \		printf("(%s) Incorrect access_flags 0x%08x - should be 0x%08x\n", \		       __location__, _q.access_information.out.access_flags, (flags)); \		ret = false; \		goto done; \	} \} while (0)/*  test the behaviour of the well known SID_CREATOR_OWNER sid, and some generic  mapping bits*/static bool test_creator_sid(struct torture_context *tctx, 							 struct smbcli_state *cli){	NTSTATUS status;	union smb_open io;	const char *fname = BASEDIR "\\creator.txt";	bool ret = true;	int fnum = -1;	union smb_fileinfo q;	union smb_setfileinfo set;	struct security_descriptor *sd, *sd_orig, *sd2;	const char *owner_sid;	printf("TESTING SID_CREATOR_OWNER\n");	io.generic.level = RAW_OPEN_NTCREATEX;	io.ntcreatex.in.root_fid = 0;	io.ntcreatex.in.flags = 0;	io.ntcreatex.in.access_mask = SEC_STD_READ_CONTROL | SEC_STD_WRITE_DAC | SEC_STD_WRITE_OWNER;	io.ntcreatex.in.create_options = 0;	io.ntcreatex.in.file_attr = FILE_ATTRIBUTE_NORMAL;	io.ntcreatex.in.share_access = 		NTCREATEX_SHARE_ACCESS_READ | 		NTCREATEX_SHARE_ACCESS_WRITE;	io.ntcreatex.in.alloc_size = 0;	io.ntcreatex.in.open_disposition = NTCREATEX_DISP_OPEN_IF;	io.ntcreatex.in.impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS;	io.ntcreatex.in.security_flags = 0;	io.ntcreatex.in.fname = fname;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	fnum = io.ntcreatex.out.file.fnum;	printf("get the original sd\n");	q.query_secdesc.level = RAW_FILEINFO_SEC_DESC;	q.query_secdesc.in.file.fnum = fnum;	q.query_secdesc.in.secinfo_flags = SECINFO_DACL | SECINFO_OWNER;	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	sd_orig = q.query_secdesc.out.sd;	owner_sid = dom_sid_string(tctx, sd_orig->owner_sid);	printf("set a sec desc allowing no write by CREATOR_OWNER\n");	sd = security_descriptor_dacl_create(tctx,					0, NULL, NULL,					SID_CREATOR_OWNER,					SEC_ACE_TYPE_ACCESS_ALLOWED,					SEC_RIGHTS_FILE_READ | SEC_STD_ALL,					0,					NULL);	set.set_secdesc.level = RAW_SFILEINFO_SEC_DESC;	set.set_secdesc.in.file.fnum = fnum;	set.set_secdesc.in.secinfo_flags = SECINFO_DACL;	set.set_secdesc.in.sd = sd;	status = smb_raw_setfileinfo(cli->tree, &set);	CHECK_STATUS(status, NT_STATUS_OK);	printf("try open for write\n");	io.ntcreatex.in.access_mask = SEC_FILE_WRITE_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for read\n");	io.ntcreatex.in.access_mask = SEC_FILE_READ_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for generic write\n");	io.ntcreatex.in.access_mask = SEC_GENERIC_WRITE;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for generic read\n");	io.ntcreatex.in.access_mask = SEC_GENERIC_READ;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("set a sec desc allowing no write by owner\n");	sd = security_descriptor_dacl_create(tctx,					0, owner_sid, NULL,					owner_sid,					SEC_ACE_TYPE_ACCESS_ALLOWED,					SEC_RIGHTS_FILE_READ | SEC_STD_ALL,					0,					NULL);	set.set_secdesc.level = RAW_SFILEINFO_SEC_DESC;	set.set_secdesc.in.file.fnum = fnum;	set.set_secdesc.in.secinfo_flags = SECINFO_DACL;	set.set_secdesc.in.sd = sd;	status = smb_raw_setfileinfo(cli->tree, &set);	CHECK_STATUS(status, NT_STATUS_OK);	printf("check that sd has been mapped correctly\n");	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	if (!security_descriptor_equal(q.query_secdesc.out.sd, sd)) {		printf("%s: security descriptors don't match!\n", __location__);		printf("got:\n");		NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);		printf("expected:\n");		NDR_PRINT_DEBUG(security_descriptor, sd);		ret = false;	}	printf("try open for write\n");	io.ntcreatex.in.access_mask = SEC_FILE_WRITE_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for read\n");	io.ntcreatex.in.access_mask = SEC_FILE_READ_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum, 			   SEC_FILE_READ_DATA|			   SEC_FILE_READ_ATTRIBUTE);	smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);	printf("try open for generic write\n");	io.ntcreatex.in.access_mask = SEC_GENERIC_WRITE;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for generic read\n");	io.ntcreatex.in.access_mask = SEC_GENERIC_READ;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum, 			   SEC_RIGHTS_FILE_READ);	smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);	printf("set a sec desc allowing generic read by owner\n");	sd = security_descriptor_dacl_create(tctx,					0, NULL, NULL,					owner_sid,					SEC_ACE_TYPE_ACCESS_ALLOWED,					SEC_GENERIC_READ | SEC_STD_ALL,					0,					NULL);	set.set_secdesc.in.sd = sd;	status = smb_raw_setfileinfo(cli->tree, &set);	CHECK_STATUS(status, NT_STATUS_OK);	printf("check that generic read has been mapped correctly\n");	sd2 = security_descriptor_dacl_create(tctx,					 0, owner_sid, NULL,					 owner_sid,					 SEC_ACE_TYPE_ACCESS_ALLOWED,					 SEC_RIGHTS_FILE_READ | SEC_STD_ALL,					 0,					 NULL);	status = smb_raw_fileinfo(cli->tree, tctx, &q);	CHECK_STATUS(status, NT_STATUS_OK);	if (!security_descriptor_equal(q.query_secdesc.out.sd, sd2)) {		printf("%s: security descriptors don't match!\n", __location__);		printf("got:\n");		NDR_PRINT_DEBUG(security_descriptor, q.query_secdesc.out.sd);		printf("expected:\n");		NDR_PRINT_DEBUG(security_descriptor, sd2);		ret = false;	}		printf("try open for write\n");	io.ntcreatex.in.access_mask = SEC_FILE_WRITE_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_ACCESS_DENIED);	printf("try open for read\n");	io.ntcreatex.in.access_mask = SEC_FILE_READ_DATA;	status = smb_raw_open(cli->tree, tctx, &io);	CHECK_STATUS(status, NT_STATUS_OK);	CHECK_ACCESS_FLAGS(io.ntcreatex.out.file.fnum, 			   SEC_FILE_READ_DATA | 			   SEC_FILE_READ_ATTRIBUTE);	smbcli_close(cli->tree, io.ntcreatex.out.file.fnum);	printf("try open for generic write\n");	io.ntcreatex.in.access_mask = SEC_GENERIC_WRITE;

⌨️ 快捷键说明

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