Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-wsgi
[kai/samba.git] / source4 / torture / smb2 / scan.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    SMB2 opcode scanner
5
6    Copyright (C) Andrew Tridgell 2005
7    
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12    
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17    
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 #include "includes.h"
23 #include "libcli/smb2/smb2.h"
24 #include "libcli/smb2/smb2_calls.h"
25 #include "lib/cmdline/popt_common.h"
26 #include "lib/events/events.h"
27 #include "torture/torture.h"
28 #include "param/param.h"
29 #include "libcli/resolve/resolve.h"
30
31 #include "torture/smb2/proto.h"
32
33 #define FNAME "scan-getinfo.dat"
34 #define DNAME "scan-getinfo.dir"
35
36
37 /* 
38    scan for valid SMB2 getinfo levels
39 */
40 bool torture_smb2_getinfo_scan(struct torture_context *torture)
41 {
42         struct smb2_tree *tree;
43         NTSTATUS status;
44         struct smb2_getinfo io;
45         struct smb2_handle fhandle, dhandle;
46         int c, i;
47
48         if (!torture_smb2_connection(torture, &tree)) {
49                 return false;
50         }
51
52         status = torture_setup_complex_file(tree, FNAME);
53         if (!NT_STATUS_IS_OK(status)) {
54                 printf("Failed to setup complex file '%s'\n", FNAME);
55                 return false;
56         }
57         torture_setup_complex_file(tree, FNAME ":2ndstream");
58
59         status = torture_setup_complex_dir(tree, DNAME);
60         if (!NT_STATUS_IS_OK(status)) {
61                 printf("Failed to setup complex dir  '%s'\n", DNAME);
62                 return false;
63         }
64         torture_setup_complex_file(tree, DNAME ":2ndstream");
65
66         torture_smb2_testfile(tree, FNAME, &fhandle);
67         torture_smb2_testdir(tree, DNAME, &dhandle);
68
69
70         ZERO_STRUCT(io);
71         io.in.output_buffer_length = 0xFFFF;
72
73         for (c=1;c<5;c++) {
74                 for (i=0;i<0x100;i++) {
75                         io.in.info_type = c;
76                         io.in.info_class = i;
77
78                         io.in.file.handle = fhandle;
79                         status = smb2_getinfo(tree, torture, &io);
80                         if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) &&
81                             !NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) &&
82                             !NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
83                                 printf("file level 0x%02x:%02x is %ld bytes - %s\n", 
84                                        io.in.info_type, io.in.info_class, 
85                                        (long)io.out.blob.length, nt_errstr(status));
86                                 dump_data(1, io.out.blob.data, io.out.blob.length);
87                         }
88
89                         io.in.file.handle = dhandle;
90                         status = smb2_getinfo(tree, torture, &io);
91                         if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) &&
92                             !NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) &&
93                             !NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
94                                 printf("dir  level 0x%02x:%02x is %ld bytes - %s\n", 
95                                        io.in.info_type, io.in.info_class,
96                                        (long)io.out.blob.length, nt_errstr(status));
97                                 dump_data(1, io.out.blob.data, io.out.blob.length);
98                         }
99                 }
100         }
101
102         return true;
103 }
104
105 /* 
106    scan for valid SMB2 setinfo levels
107 */
108 bool torture_smb2_setinfo_scan(struct torture_context *torture)
109 {
110         struct smb2_tree *tree;
111         NTSTATUS status;
112         struct smb2_setinfo io;
113         struct smb2_handle handle;
114         int c, i;
115
116         if (!torture_smb2_connection(torture, &tree)) {
117                 return false;
118         }
119
120         status = torture_setup_complex_file(tree, FNAME);
121         if (!NT_STATUS_IS_OK(status)) {
122                 printf("Failed to setup complex file '%s'\n", FNAME);
123                 return false;
124         }
125         torture_setup_complex_file(tree, FNAME ":2ndstream");
126
127         torture_smb2_testfile(tree, FNAME, &handle);
128
129         ZERO_STRUCT(io);
130         io.in.blob = data_blob_talloc_zero(torture, 1024);
131
132         for (c=1;c<5;c++) {
133                 for (i=0;i<0x100;i++) {
134                         io.in.level = (i<<8) | c;
135                         io.in.file.handle = handle;
136                         status = smb2_setinfo(tree, &io);
137                         if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) &&
138                             !NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
139                                 printf("file level 0x%04x - %s\n", 
140                                        io.in.level, nt_errstr(status));
141                         }
142                 }
143         }
144
145         return true;
146 }
147
148
149 /* 
150    scan for valid SMB2 scan levels
151 */
152 bool torture_smb2_find_scan(struct torture_context *torture)
153 {
154         struct smb2_tree *tree;
155         NTSTATUS status;
156         struct smb2_find io;
157         struct smb2_handle handle;
158         int i;
159
160         if (!torture_smb2_connection(torture, &tree)) {
161                 return false;
162         }
163
164         status = smb2_util_roothandle(tree, &handle);
165         if (!NT_STATUS_IS_OK(status)) {
166                 printf("Failed to open roothandle - %s\n", nt_errstr(status));
167                 return false;
168         }
169
170         ZERO_STRUCT(io);
171         io.in.file.handle       = handle;
172         io.in.pattern           = "*";
173         io.in.continue_flags    = SMB2_CONTINUE_FLAG_RESTART;
174         io.in.max_response_size = 0x10000;
175
176         for (i=1;i<0x100;i++) {
177                 io.in.level = i;
178
179                 io.in.file.handle = handle;
180                 status = smb2_find(tree, torture, &io);
181                 if (!NT_STATUS_EQUAL(status, NT_STATUS_INVALID_INFO_CLASS) &&
182                     !NT_STATUS_EQUAL(status, NT_STATUS_INVALID_PARAMETER) &&
183                     !NT_STATUS_EQUAL(status, NT_STATUS_NOT_SUPPORTED)) {
184                         printf("find level 0x%04x is %ld bytes - %s\n", 
185                                io.in.level, (long)io.out.blob.length, nt_errstr(status));
186                         dump_data(1, io.out.blob.data, io.out.blob.length);
187                 }
188         }
189
190         return true;
191 }
192
193 /* 
194    scan for valid SMB2 opcodes
195 */
196 bool torture_smb2_scan(struct torture_context *torture)
197 {
198         TALLOC_CTX *mem_ctx = talloc_new(NULL);
199         struct smb2_tree *tree;
200         const char *host = torture_setting_string(torture, "host", NULL);
201         const char *share = torture_setting_string(torture, "share", NULL);
202         struct cli_credentials *credentials = cmdline_credentials;
203         NTSTATUS status;
204         int opcode;
205         struct smb2_request *req;
206
207         status = smb2_connect(mem_ctx, host, share, 
208                               lp_resolve_context(torture->lp_ctx), 
209                               credentials, &tree, 
210                               torture->ev);
211         if (!NT_STATUS_IS_OK(status)) {
212                 printf("Connection failed - %s\n", nt_errstr(status));
213                 return false;
214         }
215
216         tree->session->transport->options.timeout = 3;
217
218         for (opcode=0;opcode<1000;opcode++) {
219                 req = smb2_request_init_tree(tree, opcode, 2, false, 0);
220                 SSVAL(req->out.body, 0, 0);
221                 smb2_transport_send(req);
222                 if (!smb2_request_receive(req)) {
223                         talloc_free(tree);
224                         status = smb2_connect(mem_ctx, host, share, 
225                                               lp_resolve_context(torture->lp_ctx), 
226                                               credentials, &tree, 
227                                               torture->ev);
228                         if (!NT_STATUS_IS_OK(status)) {
229                                 printf("Connection failed - %s\n", nt_errstr(status));
230                                 return false;
231                         }
232                         tree->session->transport->options.timeout = 3;
233                 } else {
234                         status = smb2_request_destroy(req);
235                         printf("active opcode %4d gave status %s\n", opcode, nt_errstr(status));
236                 }
237         }
238
239         talloc_free(mem_ctx);
240
241         return true;
242 }