s3: Fix build file due to file move. Use the new path of iniparser
[Samba/ekacnet.git] / source4 / torture / raw / ioctl.c
blob87fbfaaab63471988628c98b4a3d5edb5ab7eaca
1 /*
2 Unix SMB/CIFS implementation.
3 ioctl individual test suite
4 Copyright (C) Andrew Tridgell 2003
5 Copyright (C) James J Myers 2003 <myersjj@samba.org>
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #include "includes.h"
22 #include "libcli/raw/ioctl.h"
23 #include "libcli/raw/libcliraw.h"
24 #include "libcli/raw/raw_proto.h"
25 #include "libcli/libcli.h"
26 #include "torture/util.h"
28 #define BASEDIR "\\rawioctl"
30 #define CHECK_STATUS(status, correct) do { \
31 if (!NT_STATUS_EQUAL(status, correct)) { \
32 printf("(%d) Incorrect status %s - should be %s\n", \
33 __LINE__, nt_errstr(status), nt_errstr(correct)); \
34 ret = false; \
35 goto done; \
36 }} while (0)
39 /* test some ioctls */
40 static bool test_ioctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
42 union smb_ioctl ctl;
43 int fnum;
44 NTSTATUS status;
45 bool ret = true;
46 const char *fname = BASEDIR "\\test.dat";
48 printf("TESTING IOCTL FUNCTIONS\n");
50 fnum = create_complex_file(cli, mem_ctx, fname);
51 if (fnum == -1) {
52 printf("Failed to create test.dat - %s\n", smbcli_errstr(cli->tree));
53 ret = false;
54 goto done;
57 printf("Trying 0xFFFF\n");
58 ctl.ioctl.level = RAW_IOCTL_IOCTL;
59 ctl.ioctl.in.file.fnum = fnum;
60 ctl.ioctl.in.request = 0xFFFF;
62 status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
63 CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
65 printf("Trying QUERY_JOB_INFO\n");
66 ctl.ioctl.level = RAW_IOCTL_IOCTL;
67 ctl.ioctl.in.file.fnum = fnum;
68 ctl.ioctl.in.request = IOCTL_QUERY_JOB_INFO;
70 status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
71 CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
73 printf("Trying bad handle\n");
74 ctl.ioctl.in.file.fnum = fnum+1;
75 status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
76 CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
78 done:
79 smbcli_close(cli->tree, fnum);
80 return ret;
83 /* test some filesystem control functions */
84 static bool test_fsctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
86 int fnum;
87 NTSTATUS status;
88 bool ret = true;
89 const char *fname = BASEDIR "\\test.dat";
90 union smb_ioctl nt;
92 printf("\nTESTING FSCTL FUNCTIONS\n");
94 fnum = create_complex_file(cli, mem_ctx, fname);
95 if (fnum == -1) {
96 printf("Failed to create test.dat - %s\n", smbcli_errstr(cli->tree));
97 ret = false;
98 goto done;
101 printf("trying sparse file\n");
102 nt.ioctl.level = RAW_IOCTL_NTIOCTL;
103 nt.ntioctl.in.function = FSCTL_SET_SPARSE;
104 nt.ntioctl.in.file.fnum = fnum;
105 nt.ntioctl.in.fsctl = true;
106 nt.ntioctl.in.filter = 0;
107 nt.ntioctl.in.max_data = 0;
108 nt.ntioctl.in.blob = data_blob(NULL, 0);
110 status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
111 CHECK_STATUS(status, NT_STATUS_OK);
113 printf("trying batch oplock\n");
114 nt.ioctl.level = RAW_IOCTL_NTIOCTL;
115 nt.ntioctl.in.function = FSCTL_REQUEST_BATCH_OPLOCK;
116 nt.ntioctl.in.file.fnum = fnum;
117 nt.ntioctl.in.fsctl = true;
118 nt.ntioctl.in.filter = 0;
119 nt.ntioctl.in.max_data = 0;
120 nt.ntioctl.in.blob = data_blob(NULL, 0);
122 status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
123 if (NT_STATUS_IS_OK(status)) {
124 printf("Server supports batch oplock upgrades on open files\n");
125 } else {
126 printf("Server does not support batch oplock upgrades on open files\n");
129 printf("Trying bad handle\n");
130 nt.ntioctl.in.file.fnum = fnum+1;
131 status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
132 CHECK_STATUS(status, NT_STATUS_INVALID_HANDLE);
134 #if 0
135 nt.ntioctl.in.file.fnum = fnum;
136 for (i=0;i<100;i++) {
137 nt.ntioctl.in.function = FSCTL_FILESYSTEM + (i<<2);
138 status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
139 if (!NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
140 printf("filesystem fsctl 0x%x - %s\n",
141 i, nt_errstr(status));
144 #endif
146 done:
147 smbcli_close(cli->tree, fnum);
148 return ret;
152 basic testing of some ioctl calls
154 bool torture_raw_ioctl(struct torture_context *torture,
155 struct smbcli_state *cli)
157 bool ret = true;
159 if (!torture_setup_dir(cli, BASEDIR)) {
160 return false;
163 ret &= test_ioctl(cli, torture);
164 ret &= test_fsctl(cli, torture);
166 smb_raw_exit(cli->session);
167 smbcli_deltree(cli->tree, BASEDIR);
169 return ret;