r14527: Fix build problems.
[rusty/samba.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 2 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, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "includes.h"
23 #include "torture/torture.h"
24 #include "libcli/raw/ioctl.h"
25 #include "libcli/raw/libcliraw.h"
26 #include "libcli/libcli.h"
27 #include "torture/util.h"
28
29 #define BASEDIR "\\rawioctl"
30
31 #define CHECK_STATUS(status, correct) do { \
32         if (!NT_STATUS_EQUAL(status, correct)) { \
33                 printf("(%d) Incorrect status %s - should be %s\n", \
34                        __LINE__, nt_errstr(status), nt_errstr(correct)); \
35                 ret = False; \
36                 goto done; \
37         }} while (0)
38
39
40 /* test some ioctls */
41 static BOOL test_ioctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
42 {
43         union smb_ioctl ctl;
44         int fnum;
45         NTSTATUS status;
46         BOOL ret = True;
47         const char *fname = BASEDIR "\\test.dat";
48
49         printf("TESTING IOCTL FUNCTIONS\n");
50
51         fnum = create_complex_file(cli, mem_ctx, fname);
52         if (fnum == -1) {
53                 printf("Failed to create test.dat - %s\n", smbcli_errstr(cli->tree));
54                 ret = False;
55                 goto done;
56         }
57
58         printf("Trying 0xFFFF\n");
59         ctl.ioctl.level = RAW_IOCTL_IOCTL;
60         ctl.ioctl.in.file.fnum = fnum;
61         ctl.ioctl.in.request = 0xFFFF;
62
63         status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
64         CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
65
66         printf("Trying QUERY_JOB_INFO\n");
67         ctl.ioctl.level = RAW_IOCTL_IOCTL;
68         ctl.ioctl.in.file.fnum = fnum;
69         ctl.ioctl.in.request = IOCTL_QUERY_JOB_INFO;
70
71         status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
72         CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
73
74         printf("Trying bad handle\n");
75         ctl.ioctl.in.file.fnum = fnum+1;
76         status = smb_raw_ioctl(cli->tree, mem_ctx, &ctl);
77         CHECK_STATUS(status, NT_STATUS_DOS(ERRSRV, ERRerror));
78
79 done:
80         smbcli_close(cli->tree, fnum);
81         return ret;
82 }
83
84 /* test some filesystem control functions */
85 static BOOL test_fsctl(struct smbcli_state *cli, TALLOC_CTX *mem_ctx)
86 {
87         int fnum;
88         NTSTATUS status;
89         BOOL ret = True;
90         const char *fname = BASEDIR "\\test.dat";
91         union smb_ioctl nt;
92
93         printf("\nTESTING FSCTL FUNCTIONS\n");
94
95         fnum = create_complex_file(cli, mem_ctx, fname);
96         if (fnum == -1) {
97                 printf("Failed to create test.dat - %s\n", smbcli_errstr(cli->tree));
98                 ret = False;
99                 goto done;
100         }
101
102         printf("trying sparse file\n");
103         nt.ioctl.level = RAW_IOCTL_NTIOCTL;
104         nt.ntioctl.in.function = FSCTL_SET_SPARSE;
105         nt.ntioctl.in.file.fnum = fnum;
106         nt.ntioctl.in.fsctl = True;
107         nt.ntioctl.in.filter = 0;
108
109         status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
110         CHECK_STATUS(status, NT_STATUS_OK);
111
112         printf("trying batch oplock\n");
113         nt.ioctl.level = RAW_IOCTL_NTIOCTL;
114         nt.ntioctl.in.function = (FSCTL_FILESYSTEM | (2<<2));
115         nt.ntioctl.in.file.fnum = fnum;
116         nt.ntioctl.in.fsctl = True;
117         nt.ntioctl.in.filter = 0;
118
119         status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
120         if (NT_STATUS_IS_OK(status)) {
121                 printf("Server supports batch oplock upgrades on open files\n");
122         } else {
123                 printf("Server does not support batch oplock upgrades on open files\n");
124         }
125
126         printf("Trying bad handle\n");
127         nt.ntioctl.in.file.fnum = fnum+1;
128         status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
129         CHECK_STATUS(status, NT_STATUS_INVALID_HANDLE);
130
131 #if 0
132         nt.ntioctl.in.file.fnum = fnum;
133         for (i=0;i<100;i++) {
134                 nt.ntioctl.in.function = FSCTL_FILESYSTEM + (i<<2);
135                 status = smb_raw_ioctl(cli->tree, mem_ctx, &nt);
136                 if (!NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
137                         printf("filesystem fsctl 0x%x - %s\n",
138                                i, nt_errstr(status));
139                 }
140         }
141 #endif
142
143 done:
144         smbcli_close(cli->tree, fnum);
145         return ret;
146 }
147
148 /* 
149    basic testing of some ioctl calls 
150 */
151 BOOL torture_raw_ioctl(void)
152 {
153         struct smbcli_state *cli;
154         BOOL ret = True;
155         TALLOC_CTX *mem_ctx;
156
157         if (!torture_open_connection(&cli)) {
158                 return False;
159         }
160
161         mem_ctx = talloc_init("torture_raw_ioctl");
162
163         if (!torture_setup_dir(cli, BASEDIR)) {
164                 return False;
165         }
166
167         if (!test_ioctl(cli, mem_ctx)) {
168                 ret = False;
169         }
170
171         if (!test_fsctl(cli, mem_ctx)) {
172                 ret = False;
173         }
174
175         smb_raw_exit(cli->session);
176         smbcli_deltree(cli->tree, BASEDIR);
177
178         torture_close_connection(cli);
179         talloc_free(mem_ctx);
180         return ret;
181 }