r12608: Remove some unused #include lines.
[sfrench/samba-autobuild/.git] / source4 / torture / smb2 / util.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    helper functions for SMB2 test suite
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 2 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, write to the Free Software
20    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 */
22
23 #include "includes.h"
24 #include "libcli/smb2/smb2.h"
25 #include "libcli/smb2/smb2_calls.h"
26 #include "lib/cmdline/popt_common.h"
27 #include "lib/events/events.h"
28 #include "system/time.h"
29
30
31 /*
32   close a handle with SMB2
33 */
34 NTSTATUS smb2_util_close(struct smb2_tree *tree, struct smb2_handle h)
35 {
36         struct smb2_close c;
37
38         ZERO_STRUCT(c);
39         c.in.handle = h;
40
41         return smb2_close(tree, &c);
42 }
43
44 /*
45   unlink a file with SMB2
46 */
47 NTSTATUS smb2_util_unlink(struct smb2_tree *tree, const char *fname)
48 {
49         struct smb2_create io;
50         NTSTATUS status;
51
52         ZERO_STRUCT(io);
53         io.in.access_mask = SEC_RIGHTS_FILE_ALL;
54         io.in.file_attr   = FILE_ATTRIBUTE_NORMAL;
55         io.in.open_disposition = NTCREATEX_DISP_OPEN;
56         io.in.share_access = 
57                 NTCREATEX_SHARE_ACCESS_DELETE|
58                 NTCREATEX_SHARE_ACCESS_READ|
59                 NTCREATEX_SHARE_ACCESS_WRITE;
60         io.in.create_options = NTCREATEX_OPTIONS_DELETE_ON_CLOSE;
61         io.in.fname = fname;
62
63         status = smb2_create(tree, tree, &io);
64         if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
65                 return NT_STATUS_OK;
66         }
67         NT_STATUS_NOT_OK_RETURN(status);
68
69         return smb2_util_close(tree, io.out.handle);
70 }
71
72 /*
73   write to a file on SMB2
74 */
75 NTSTATUS smb2_util_write(struct smb2_tree *tree,
76                          struct smb2_handle handle, 
77                          const void *buf, off_t offset, size_t size)
78 {
79         struct smb2_write w;
80
81         ZERO_STRUCT(w);
82         w.in.offset      = offset;
83         w.in.handle      = handle;
84         w.in.data        = data_blob_const(buf, size);
85
86         return smb2_write(tree, &w);
87 }
88
89 /*
90   create a complex file/dir using the SMB2 protocol
91 */
92 static NTSTATUS smb2_create_complex(struct smb2_tree *tree, const char *fname, 
93                                          struct smb2_handle *handle, BOOL dir)
94 {
95         TALLOC_CTX *tmp_ctx = talloc_new(tree);
96         char buf[7] = "abc";
97         struct smb2_create io;
98         union smb_setfileinfo setfile;
99         union smb_fileinfo fileinfo;
100         time_t t = (time(NULL) & ~1);
101         NTSTATUS status;
102
103         smb2_util_unlink(tree, fname);
104         ZERO_STRUCT(io);
105         io.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED;
106         io.in.file_attr   = FILE_ATTRIBUTE_NORMAL;
107         io.in.open_disposition = NTCREATEX_DISP_OVERWRITE_IF;
108         io.in.share_access = 
109                 NTCREATEX_SHARE_ACCESS_DELETE|
110                 NTCREATEX_SHARE_ACCESS_READ|
111                 NTCREATEX_SHARE_ACCESS_WRITE;
112         io.in.create_options = 0;
113         io.in.fname = fname;
114         if (dir) {
115                 io.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
116                 io.in.share_access &= ~NTCREATEX_SHARE_ACCESS_DELETE;
117                 io.in.file_attr   = FILE_ATTRIBUTE_DIRECTORY;
118                 io.in.open_disposition = NTCREATEX_DISP_CREATE;
119         }
120
121         if (strchr(fname, ':') == NULL) {
122                 /* setup some EAs */
123                 io.in.eas.num_eas = 2;
124                 io.in.eas.eas = talloc_array(tmp_ctx, struct ea_struct, 2);
125                 io.in.eas.eas[0].flags = 0;
126                 io.in.eas.eas[0].name.s = "EAONE";
127                 io.in.eas.eas[0].value = data_blob_talloc(tmp_ctx, "VALUE1", 6);
128                 io.in.eas.eas[1].flags = 0;
129                 io.in.eas.eas[1].name.s = "SECONDEA";
130                 io.in.eas.eas[1].value = data_blob_talloc(tmp_ctx, "ValueTwo", 8);
131         }
132
133         status = smb2_create(tree, tmp_ctx, &io);
134         talloc_free(tmp_ctx);
135         NT_STATUS_NOT_OK_RETURN(status);
136
137         *handle = io.out.handle;
138
139         if (!dir) {
140                 status = smb2_util_write(tree, *handle, buf, 0, sizeof(buf));
141                 NT_STATUS_NOT_OK_RETURN(status);
142         }
143
144         /* make sure all the timestamps aren't the same, and are also 
145            in different DST zones*/
146         setfile.generic.level = RAW_SFILEINFO_BASIC_INFORMATION;
147         setfile.generic.file.handle = *handle;
148
149         setfile.basic_info.in.create_time = t +  9*30*24*60*60;
150         setfile.basic_info.in.access_time = t +  6*30*24*60*60;
151         setfile.basic_info.in.write_time  = t +  3*30*24*60*60;
152         setfile.basic_info.in.change_time = t +  1*30*24*60*60;
153         setfile.basic_info.in.attrib      = FILE_ATTRIBUTE_NORMAL;
154
155         status = smb2_setinfo_file(tree, &setfile);
156         if (!NT_STATUS_IS_OK(status)) {
157                 printf("Failed to setup file times - %s\n", nt_errstr(status));
158         }
159
160         /* make sure all the timestamps aren't the same */
161         fileinfo.generic.level = RAW_FILEINFO_BASIC_INFORMATION;
162         fileinfo.generic.in.handle = *handle;
163
164         status = smb2_getinfo_file(tree, tree, &fileinfo);
165         if (!NT_STATUS_IS_OK(status)) {
166                 printf("Failed to query file times - %s\n", nt_errstr(status));
167         }
168
169         if (setfile.basic_info.in.create_time != fileinfo.basic_info.out.create_time) {
170                 printf("create_time not setup correctly\n");
171         }
172         if (setfile.basic_info.in.access_time != fileinfo.basic_info.out.access_time) {
173                 printf("access_time not setup correctly\n");
174         }
175         if (setfile.basic_info.in.write_time != fileinfo.basic_info.out.write_time) {
176                 printf("write_time not setup correctly\n");
177         }
178         
179         return NT_STATUS_OK;
180 }
181
182 /*
183   create a complex file using the SMB2 protocol
184 */
185 NTSTATUS smb2_create_complex_file(struct smb2_tree *tree, const char *fname, 
186                                          struct smb2_handle *handle)
187 {
188         return smb2_create_complex(tree, fname, handle, False);
189 }
190
191 /*
192   create a complex dir using the SMB2 protocol
193 */
194 NTSTATUS smb2_create_complex_dir(struct smb2_tree *tree, const char *fname, 
195                                  struct smb2_handle *handle)
196 {
197         return smb2_create_complex(tree, fname, handle, True);
198 }
199
200 /*
201   show lots of information about a file
202 */
203 void torture_smb2_all_info(struct smb2_tree *tree, struct smb2_handle handle)
204 {
205         NTSTATUS status;
206         TALLOC_CTX *tmp_ctx = talloc_new(tree);
207         union smb_fileinfo io;
208
209         io.generic.level = RAW_FILEINFO_SMB2_ALL_INFORMATION;
210         io.generic.in.handle = handle;
211
212         status = smb2_getinfo_file(tree, tmp_ctx, &io);
213         if (!NT_STATUS_IS_OK(status)) {
214                 DEBUG(0,("getinfo failed - %s\n", nt_errstr(status)));
215                 talloc_free(tmp_ctx);
216                 return;
217         }
218
219         d_printf("all_info for '%s'\n", io.all_info2.out.fname.s);
220         d_printf("\tcreate_time:    %s\n", nt_time_string(tmp_ctx, io.all_info2.out.create_time));
221         d_printf("\taccess_time:    %s\n", nt_time_string(tmp_ctx, io.all_info2.out.access_time));
222         d_printf("\twrite_time:     %s\n", nt_time_string(tmp_ctx, io.all_info2.out.write_time));
223         d_printf("\tchange_time:    %s\n", nt_time_string(tmp_ctx, io.all_info2.out.change_time));
224         d_printf("\tattrib:         0x%x\n", io.all_info2.out.attrib);
225         d_printf("\tunknown1:       0x%x\n", io.all_info2.out.unknown1);
226         d_printf("\talloc_size:     %llu\n", (long long)io.all_info2.out.alloc_size);
227         d_printf("\tsize:           %llu\n", (long long)io.all_info2.out.size);
228         d_printf("\tnlink:          %u\n", io.all_info2.out.nlink);
229         d_printf("\tdelete_pending: %u\n", io.all_info2.out.delete_pending);
230         d_printf("\tdirectory:      %u\n", io.all_info2.out.directory);
231         d_printf("\tfile_id:        %llu\n", (long long)io.all_info2.out.file_id);
232         d_printf("\tea_size:        %u\n", io.all_info2.out.ea_size);
233         d_printf("\taccess_mask:    0x%08x\n", io.all_info2.out.access_mask);
234         d_printf("\tposition:       0x%llx\n", (long long)io.all_info2.out.position);
235         d_printf("\tmode:           0x%llx\n", (long long)io.all_info2.out.mode);
236
237         /* short name, if any */
238         io.generic.level = RAW_FILEINFO_ALT_NAME_INFORMATION;
239         status = smb2_getinfo_file(tree, tmp_ctx, &io);
240         if (NT_STATUS_IS_OK(status)) {
241                 d_printf("\tshort name:     '%s'\n", io.alt_name_info.out.fname.s);
242         }
243
244         /* the EAs, if any */
245         io.generic.level = RAW_FILEINFO_SMB2_ALL_EAS;
246         status = smb2_getinfo_file(tree, tmp_ctx, &io);
247         if (NT_STATUS_IS_OK(status)) {
248                 int i;
249                 for (i=0;i<io.all_eas.out.num_eas;i++) {
250                         d_printf("\tEA[%d] flags=%d len=%d '%s'\n", i,
251                                  io.all_eas.out.eas[i].flags,
252                                  (int)io.all_eas.out.eas[i].value.length,
253                                  io.all_eas.out.eas[i].name.s);
254                 }
255         }
256
257         /* streams, if available */
258         io.generic.level = RAW_FILEINFO_STREAM_INFORMATION;
259         status = smb2_getinfo_file(tree, tmp_ctx, &io);
260         if (NT_STATUS_IS_OK(status)) {
261                 int i;
262                 for (i=0;i<io.stream_info.out.num_streams;i++) {
263                         d_printf("\tstream %d:\n", i);
264                         d_printf("\t\tsize       %ld\n", 
265                                  (long)io.stream_info.out.streams[i].size);
266                         d_printf("\t\talloc size %ld\n", 
267                                  (long)io.stream_info.out.streams[i].alloc_size);
268                         d_printf("\t\tname       %s\n", io.stream_info.out.streams[i].stream_name.s);
269                 }
270         }       
271
272         if (DEBUGLVL(1)) {
273                 /* the security descriptor */
274                 io.query_secdesc.level = RAW_FILEINFO_SEC_DESC;
275                 io.query_secdesc.secinfo_flags = 
276                         SECINFO_OWNER|SECINFO_GROUP|
277                         SECINFO_DACL;
278                 status = smb2_getinfo_file(tree, tmp_ctx, &io);
279                 if (NT_STATUS_IS_OK(status)) {
280                         NDR_PRINT_DEBUG(security_descriptor, io.query_secdesc.out.sd);
281                 }
282         }
283
284         talloc_free(tmp_ctx);   
285 }
286
287
288 /*
289   open a smb2 connection
290 */
291 BOOL torture_smb2_connection(TALLOC_CTX *mem_ctx, struct smb2_tree **tree)
292 {
293         NTSTATUS status;
294         const char *host = lp_parm_string(-1, "torture", "host");
295         const char *share = lp_parm_string(-1, "torture", "share");
296         struct cli_credentials *credentials = cmdline_credentials;
297
298         status = smb2_connect(mem_ctx, host, share, credentials, tree, 
299                               event_context_find(mem_ctx));
300         if (!NT_STATUS_IS_OK(status)) {
301                 printf("Failed to connect to SMB2 share \\\\%s\\%s - %s\n",
302                        host, share, nt_errstr(status));
303                 return False;
304         }
305         return True;
306 }
307
308
309 /*
310   create and return a handle to a test file
311 */
312 NTSTATUS torture_smb2_testfile(struct smb2_tree *tree, const char *fname, 
313                                struct smb2_handle *handle)
314 {
315         struct smb2_create io;
316         struct smb2_read r;
317         NTSTATUS status;
318
319         ZERO_STRUCT(io);
320         io.in.oplock_flags = 0;
321         io.in.access_mask = SEC_RIGHTS_FILE_ALL;
322         io.in.file_attr   = FILE_ATTRIBUTE_NORMAL;
323         io.in.open_disposition = NTCREATEX_DISP_OPEN_IF;
324         io.in.share_access = 
325                 NTCREATEX_SHARE_ACCESS_DELETE|
326                 NTCREATEX_SHARE_ACCESS_READ|
327                 NTCREATEX_SHARE_ACCESS_WRITE;
328         io.in.create_options = 0;
329         io.in.fname = fname;
330
331         status = smb2_create(tree, tree, &io);
332         NT_STATUS_NOT_OK_RETURN(status);
333
334         *handle = io.out.handle;
335
336         ZERO_STRUCT(r);
337         r.in.length      = 5;
338         r.in.offset      = 0;
339         r.in.handle      = *handle;
340
341         smb2_read(tree, tree, &r);
342
343         return NT_STATUS_OK;
344 }
345
346 /*
347   create and return a handle to a test directory
348 */
349 NTSTATUS torture_smb2_testdir(struct smb2_tree *tree, const char *fname, 
350                               struct smb2_handle *handle)
351 {
352         struct smb2_create io;
353         NTSTATUS status;
354
355         ZERO_STRUCT(io);
356         io.in.oplock_flags = 0;
357         io.in.access_mask = SEC_RIGHTS_DIR_ALL;
358         io.in.file_attr   = FILE_ATTRIBUTE_DIRECTORY;
359         io.in.open_disposition = NTCREATEX_DISP_OPEN_IF;
360         io.in.share_access = NTCREATEX_SHARE_ACCESS_READ|NTCREATEX_SHARE_ACCESS_WRITE|NTCREATEX_SHARE_ACCESS_DELETE;
361         io.in.create_options = NTCREATEX_OPTIONS_DIRECTORY;
362         io.in.fname = fname;
363
364         status = smb2_create(tree, tree, &io);
365         NT_STATUS_NOT_OK_RETURN(status);
366
367         *handle = io.out.handle;
368
369         return NT_STATUS_OK;
370 }
371
372
373 /*
374   create a complex file using the old SMB protocol, to make it easier to 
375   find fields in SMB2 getinfo levels
376 */
377 NTSTATUS torture_setup_complex_file(struct smb2_tree *tree, const char *fname)
378 {
379         struct smb2_handle handle;
380         NTSTATUS status = smb2_create_complex_file(tree, fname, &handle);
381         NT_STATUS_NOT_OK_RETURN(status);
382         return smb2_util_close(tree, handle);
383 }
384
385
386 /*
387   create a complex dir using the old SMB protocol, to make it easier to 
388   find fields in SMB2 getinfo levels
389 */
390 NTSTATUS torture_setup_complex_dir(struct smb2_tree *tree, const char *fname)
391 {
392         struct smb2_handle handle;
393         NTSTATUS status = smb2_create_complex_dir(tree, fname, &handle);
394         NT_STATUS_NOT_OK_RETURN(status);
395         return smb2_util_close(tree, handle);
396 }
397
398
399 /*
400   return a handle to the root of the share
401 */
402 NTSTATUS smb2_util_roothandle(struct smb2_tree *tree, struct smb2_handle *handle)
403 {
404         struct smb2_create io;
405         NTSTATUS status;
406
407         ZERO_STRUCT(io);
408         io.in.oplock_flags = 0;
409         io.in.access_mask = SEC_STD_SYNCHRONIZE | SEC_DIR_READ_ATTRIBUTE | SEC_DIR_LIST;
410         io.in.file_attr   = 0;
411         io.in.open_disposition = NTCREATEX_DISP_OPEN;
412         io.in.share_access = NTCREATEX_SHARE_ACCESS_READ|NTCREATEX_SHARE_ACCESS_DELETE;
413         io.in.create_options = NTCREATEX_OPTIONS_ASYNC_ALERT;
414         io.in.fname = "";
415
416         status = smb2_create(tree, tree, &io);
417         NT_STATUS_NOT_OK_RETURN(status);
418
419         *handle = io.out.handle;
420
421         return NT_STATUS_OK;
422 }