1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
|
/*
Unix SMB/CIFS implementation.
Basic test for share secdescs vs nttrans_create
Copyright (C) Volker Lendecke 2011
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/proto.h"
#include "libsmb/libsmb.h"
#include "libcli/security/dom_sid.h"
#include "libcli/security/secdesc.h"
#include "libcli/security/security.h"
bool run_nttrans_create(int dummy)
{
struct cli_state *cli = NULL;
NTSTATUS status, status2;
bool ret = false;
struct security_ace ace;
struct security_acl acl;
struct security_descriptor *sd;
const char *fname = "transtest";
uint16_t fnum, fnum2;
struct dom_sid owner;
printf("Starting NTTRANS_CREATE\n");
if (!torture_open_connection(&cli, 0)) {
printf("torture_open_connection failed\n");
goto fail;
}
ZERO_STRUCT(ace);
ace.type = SEC_ACE_TYPE_ACCESS_ALLOWED;
ace.access_mask = SEC_RIGHTS_FILE_ALL & ~SEC_STD_WRITE_DAC;
sid_copy(&ace.trustee, &global_sid_World);
acl.revision = SECURITY_ACL_REVISION_NT4;
acl.size = 0;
acl.num_aces = 1;
acl.aces = &ace;
dom_sid_parse("S-1-22-1-1000", &owner);
sd = make_sec_desc(talloc_tos(),
SECURITY_DESCRIPTOR_REVISION_1,
SEC_DESC_SELF_RELATIVE|
SEC_DESC_DACL_PRESENT|SEC_DESC_OWNER_DEFAULTED|
SEC_DESC_GROUP_DEFAULTED,
NULL, NULL, NULL, &acl, NULL);
if (sd == NULL) {
d_fprintf(stderr, "make_sec_desc failed\n");
goto fail;
}
status = cli_nttrans_create(
cli, fname, 0, FILE_READ_DATA|FILE_WRITE_DATA|DELETE_ACCESS|
READ_CONTROL_ACCESS,
FILE_ATTRIBUTE_NORMAL,
FILE_SHARE_READ|FILE_SHARE_WRITE| FILE_SHARE_DELETE,
FILE_CREATE, 0, 0, sd, NULL, 0, &fnum);
if (!NT_STATUS_IS_OK(status)) {
d_fprintf(stderr, "cli_nttrans_create returned %s\n",
nt_errstr(status));
goto fail;
}
cli_query_secdesc(cli, fnum, talloc_tos(), NULL);
status2 = cli_ntcreate(cli, fname, 0, WRITE_DAC_ACCESS,
FILE_ATTRIBUTE_NORMAL,
FILE_SHARE_READ|FILE_SHARE_WRITE|
FILE_SHARE_DELETE,
FILE_OPEN, 0, 0, &fnum2);
status = cli_nt_delete_on_close(cli, fnum, true);
if (!NT_STATUS_IS_OK(status)) {
d_fprintf(stderr, "cli_nt_delete_on_close returned %s\n",
nt_errstr(status));
goto fail;
}
if (!NT_STATUS_EQUAL(status2, NT_STATUS_ACCESS_DENIED)) {
d_fprintf(stderr, "cli_ntcreate returned %s\n",
nt_errstr(status));
goto fail;
}
ret = true;
fail:
if (cli != NULL) {
torture_close_connection(cli);
}
return ret;
}
|