8e98822e112fee5b9de60f67ed1aba03d1125428
[gd/samba-autobuild/.git] / source4 / torture / raw / ioctl.c
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>
6    
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.
11    
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.
16    
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/>.
19 */
20
21 #include "includes.h"
22 #include "torture/torture.h"
23 #include "libcli/raw/ioctl.h"
24 #include "libcli/raw/libcliraw.h"
25 #include "libcli/libcli.h"
26 #include "torture/util.h"
27
28 #define BASEDIR "\\rawioctl"
29
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)
37
38
39 /* test some ioctls */
40 static BOOL test_ioctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
41 {
42         union smb_ioctl ctl;
43         int fnum;
44         NTSTATUS status;
45         BOOL ret = True;
46         const char *fname = BASEDIR "\\test.dat";
47
48         printf("TESTING IOCTL FUNCTIONS\n");
49
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;
55         }
56
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;
61
62         status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
63         CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
64
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;
69
70         status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
71         CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
72
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));
77
78 done:
79         smbcli_close(cli->tree, fnum);
80         return ret;
81 }
82
83 /* test some filesystem control functions */
84 static BOOL test_fsctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
85 {
86         int fnum;
87         NTSTATUS status;
88         BOOL ret = True;
89         const char *fname = BASEDIR "\\test.dat";
90         union smb_ioctl nt;
91
92         printf("\nTESTING FSCTL FUNCTIONS\n");
93
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;
99         }
100
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);
109
110         status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
111         CHECK_STATUS(status, NT_STATUS_OK);
112
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);
121
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");
127         }
128
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);
133
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));
142                 }
143         }
144 #endif
145
146 done:
147         smbcli_close(cli->tree, fnum);
148         return ret;
149 }
150
151 /* 
152    basic testing of some ioctl calls 
153 */
154 bool torture_raw_ioctl(struct torture_context *torture, 
155                                            struct smbcli_state *cli)
156 {
157         bool ret = true;
158
159         if (!torture_setup_dir(cli, BASEDIR)) {
160                 return False;
161         }
162
163         ret &= test_ioctl(cli, torture);
164         ret &= test_fsctl(cli, torture);
165
166         smb_raw_exit(cli->session);
167         smbcli_deltree(cli->tree, BASEDIR);
168
169         return ret;
170 }