Use torture_setting_* rather than lp_parm_* where possible.
[samba-svnmirror.git] / source / torture / smb2 / getinfo.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    SMB2 getinfo 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
27 #include "torture/torture.h"
28 #include "torture/smb2/proto.h"
29
30 static struct {
31         const char *name;
32         uint16_t level;
33         NTSTATUS fstatus;
34         NTSTATUS dstatus;
35         union smb_fileinfo finfo;
36         union smb_fileinfo dinfo;
37 } file_levels[] = {
38 #define LEVEL(x) #x, x
39  { LEVEL(RAW_FILEINFO_BASIC_INFORMATION) },
40  { LEVEL(RAW_FILEINFO_STANDARD_INFORMATION) },
41  { LEVEL(RAW_FILEINFO_INTERNAL_INFORMATION) },
42  { LEVEL(RAW_FILEINFO_EA_INFORMATION) },
43  { LEVEL(RAW_FILEINFO_ACCESS_INFORMATION) },
44  { LEVEL(RAW_FILEINFO_POSITION_INFORMATION) },
45  { LEVEL(RAW_FILEINFO_MODE_INFORMATION) },
46  { LEVEL(RAW_FILEINFO_ALIGNMENT_INFORMATION) },
47  { LEVEL(RAW_FILEINFO_ALL_INFORMATION) },
48  { LEVEL(RAW_FILEINFO_ALT_NAME_INFORMATION) },
49  { LEVEL(RAW_FILEINFO_STREAM_INFORMATION) },
50  { LEVEL(RAW_FILEINFO_COMPRESSION_INFORMATION) },
51  { LEVEL(RAW_FILEINFO_NETWORK_OPEN_INFORMATION) },
52  { LEVEL(RAW_FILEINFO_ATTRIBUTE_TAG_INFORMATION) },
53  { LEVEL(RAW_FILEINFO_SMB2_ALL_EAS) },
54  { LEVEL(RAW_FILEINFO_SMB2_ALL_INFORMATION) },
55  { LEVEL(RAW_FILEINFO_SEC_DESC) }
56 };
57
58 static struct {
59         const char *name;
60         uint16_t level;
61         NTSTATUS status;
62         union smb_fsinfo info;
63 } fs_levels[] = {
64  { LEVEL(RAW_QFS_VOLUME_INFORMATION) },
65  { LEVEL(RAW_QFS_SIZE_INFORMATION) },
66  { LEVEL(RAW_QFS_DEVICE_INFORMATION) },
67  { LEVEL(RAW_QFS_ATTRIBUTE_INFORMATION) },
68  { LEVEL(RAW_QFS_QUOTA_INFORMATION) },
69  { LEVEL(RAW_QFS_FULL_SIZE_INFORMATION) },
70  { LEVEL(RAW_QFS_OBJECTID_INFORMATION) }
71 };
72
73 #define FNAME "testsmb2_file.dat"
74 #define DNAME "testsmb2_dir"
75
76 /*
77   test fileinfo levels
78 */
79 static BOOL torture_smb2_fileinfo(struct smb2_tree *tree)
80 {
81         struct smb2_handle hfile, hdir;
82         NTSTATUS status;
83         int i;
84
85         status = torture_smb2_testfile(tree, FNAME, &hfile);
86         if (!NT_STATUS_IS_OK(status)) {
87                 printf("Unable to create test file '%s' - %s\n", FNAME, nt_errstr(status));
88                 goto failed;
89         }
90
91         status = torture_smb2_testdir(tree, DNAME, &hdir);
92         if (!NT_STATUS_IS_OK(status)) {
93                 printf("Unable to create test directory '%s' - %s\n", DNAME, nt_errstr(status));
94                 goto failed;
95         }
96
97         printf("Testing file info levels\n");
98         torture_smb2_all_info(tree, hfile);
99         torture_smb2_all_info(tree, hdir);
100
101         for (i=0;i<ARRAY_SIZE(file_levels);i++) {
102                 if (file_levels[i].level == RAW_FILEINFO_SEC_DESC) {
103                         file_levels[i].finfo.query_secdesc.in.secinfo_flags = 0x7;
104                         file_levels[i].dinfo.query_secdesc.in.secinfo_flags = 0x7;
105                 }
106                 if (file_levels[i].level == RAW_FILEINFO_SMB2_ALL_EAS) {
107                         if (lp_parm_bool(-1, "torture", "samba4", False)) {
108                                 continue;
109                         }
110                         file_levels[i].finfo.all_eas.in.continue_flags = 
111                                 SMB2_CONTINUE_FLAG_RESTART;
112                         file_levels[i].dinfo.all_eas.in.continue_flags = 
113                                 SMB2_CONTINUE_FLAG_RESTART;
114                 }
115                 file_levels[i].finfo.generic.level = file_levels[i].level;
116                 file_levels[i].finfo.generic.in.file.handle = hfile;
117                 file_levels[i].fstatus = smb2_getinfo_file(tree, tree, &file_levels[i].finfo);
118                 if (!NT_STATUS_IS_OK(file_levels[i].fstatus)) {
119                         printf("(%s) %s failed on file - %s\n", __location__,
120                                 file_levels[i].name, nt_errstr(file_levels[i].fstatus));
121                         goto failed;
122                 }
123                 file_levels[i].dinfo.generic.level = file_levels[i].level;
124                 file_levels[i].dinfo.generic.in.file.handle = hdir;
125                 file_levels[i].dstatus = smb2_getinfo_file(tree, tree, &file_levels[i].dinfo);
126                 if (!NT_STATUS_IS_OK(file_levels[i].dstatus)) {
127                         printf("(%s) %s failed on dir - %s\n", __location__,
128                                 file_levels[i].name, nt_errstr(file_levels[i].dstatus));
129                         goto failed;
130                 }
131         }
132
133         return True;
134
135 failed:
136         return False;
137 }
138
139
140 /*
141   test fsinfo levels
142 */
143 static BOOL torture_smb2_fsinfo(struct smb2_tree *tree)
144 {
145         int i;
146         NTSTATUS status;
147         struct smb2_handle handle;
148
149         printf("Testing fsinfo levels\n");
150         status = smb2_util_roothandle(tree, &handle);
151         if (!NT_STATUS_IS_OK(status)) {
152                 printf("Unable to create test directory '%s' - %s\n", DNAME, nt_errstr(status));
153                 return False;
154         }
155
156         for (i=0;i<ARRAY_SIZE(fs_levels);i++) {
157                 fs_levels[i].info.generic.level = fs_levels[i].level;
158                 fs_levels[i].info.generic.handle = handle;
159                 fs_levels[i].status = smb2_getinfo_fs(tree, tree, &fs_levels[i].info);
160                 if (!NT_STATUS_IS_OK(fs_levels[i].status)) {
161                         printf("%s failed - %s\n", fs_levels[i].name, nt_errstr(fs_levels[i].status));
162                         return False;
163                 }
164         }
165
166         return True;
167 }
168
169
170 /* basic testing of all SMB2 getinfo levels
171 */
172 BOOL torture_smb2_getinfo(struct torture_context *torture)
173 {
174         TALLOC_CTX *mem_ctx = talloc_new(NULL);
175         struct smb2_tree *tree;
176         BOOL ret = True;
177         NTSTATUS status;
178
179         if (!torture_smb2_connection(mem_ctx, &tree)) {
180                 return False;
181         }
182
183         status = torture_setup_complex_file(tree, FNAME);
184         if (!NT_STATUS_IS_OK(status)) {
185                 return False;
186         }
187         torture_setup_complex_file(tree, FNAME ":streamtwo");
188         status = torture_setup_complex_dir(tree, DNAME);
189         if (!NT_STATUS_IS_OK(status)) {
190                 return False;
191         }
192         torture_setup_complex_file(tree, DNAME ":streamtwo");
193
194         ret &= torture_smb2_fileinfo(tree);
195         ret &= torture_smb2_fsinfo(tree);
196
197         talloc_free(mem_ctx);
198
199         return ret;
200 }