2 Unix SMB/CIFS implementation.
4 POSIX NTVFS backend - read
6 Copyright (C) Andrew Tridgell 2004
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.
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.
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/>.
23 #include "vfs_posix.h"
24 #include "librpc/gen_ndr/xattr.h"
28 determine what access bits are needed for a call
30 static uint32_t pvfs_fileinfo_access(union smb_fileinfo *info)
34 switch (info->generic.level) {
35 case RAW_FILEINFO_EA_LIST:
36 case RAW_FILEINFO_ALL_EAS:
37 needed = SEC_FILE_READ_EA;
40 case RAW_FILEINFO_IS_NAME_VALID:
44 case RAW_FILEINFO_SEC_DESC:
46 if (info->query_secdesc.in.secinfo_flags & (SECINFO_OWNER|SECINFO_GROUP)) {
47 needed |= SEC_STD_READ_CONTROL;
49 if (info->query_secdesc.in.secinfo_flags & SECINFO_DACL) {
50 needed |= SEC_STD_READ_CONTROL;
52 if (info->query_secdesc.in.secinfo_flags & SECINFO_SACL) {
53 needed |= SEC_FLAG_SYSTEM_SECURITY;
58 needed = SEC_FILE_READ_ATTRIBUTE;
66 reply to a RAW_FILEINFO_EA_LIST call
68 NTSTATUS pvfs_query_ea_list(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
69 struct pvfs_filename *name, int fd,
71 struct ea_name *names,
72 struct smb_ea_list *eas)
76 struct xattr_DosEAs *ealist = talloc(mem_ctx, struct xattr_DosEAs);
79 status = pvfs_doseas_load(pvfs, name, fd, ealist);
80 if (!NT_STATUS_IS_OK(status)) {
83 eas->eas = talloc_array(mem_ctx, struct ea_struct, num_names);
84 if (eas->eas == NULL) {
85 return NT_STATUS_NO_MEMORY;
87 eas->num_eas = num_names;
88 for (i=0;i<num_names;i++) {
90 eas->eas[i].flags = 0;
91 eas->eas[i].name.s = names[i].name.s;
92 eas->eas[i].value = data_blob(NULL, 0);
93 for (j=0;j<ealist->num_eas;j++) {
94 if (strcasecmp_m(eas->eas[i].name.s,
95 ealist->eas[j].name) == 0) {
96 eas->eas[i].value = ealist->eas[j].value;
105 reply to a RAW_FILEINFO_ALL_EAS call
107 static NTSTATUS pvfs_query_all_eas(struct pvfs_state *pvfs, TALLOC_CTX *mem_ctx,
108 struct pvfs_filename *name, int fd,
109 struct smb_ea_list *eas)
113 struct xattr_DosEAs *ealist = talloc(mem_ctx, struct xattr_DosEAs);
116 status = pvfs_doseas_load(pvfs, name, fd, ealist);
117 if (!NT_STATUS_IS_OK(status)) {
120 eas->eas = talloc_array(mem_ctx, struct ea_struct, ealist->num_eas);
121 if (eas->eas == NULL) {
122 return NT_STATUS_NO_MEMORY;
125 for (i=0;i<ealist->num_eas;i++) {
126 eas->eas[eas->num_eas].flags = 0;
127 eas->eas[eas->num_eas].name.s = ealist->eas[i].name;
128 eas->eas[eas->num_eas].value = ealist->eas[i].value;
135 approximately map a struct pvfs_filename to a generic fileinfo struct
137 static NTSTATUS pvfs_map_fileinfo(struct pvfs_state *pvfs,
138 struct ntvfs_request *req,
139 struct pvfs_filename *name, union smb_fileinfo *info,
142 switch (info->generic.level) {
143 case RAW_FILEINFO_GENERIC:
144 return NT_STATUS_INVALID_LEVEL;
146 case RAW_FILEINFO_GETATTR:
147 info->getattr.out.attrib = name->dos.attrib;
148 info->getattr.out.size = name->st.st_size;
149 info->getattr.out.write_time = nt_time_to_unix(name->dos.write_time);
152 case RAW_FILEINFO_GETATTRE:
153 case RAW_FILEINFO_STANDARD:
154 info->standard.out.create_time = nt_time_to_unix(name->dos.create_time);
155 info->standard.out.access_time = nt_time_to_unix(name->dos.access_time);
156 info->standard.out.write_time = nt_time_to_unix(name->dos.write_time);
157 info->standard.out.size = name->st.st_size;
158 info->standard.out.alloc_size = name->dos.alloc_size;
159 info->standard.out.attrib = name->dos.attrib;
162 case RAW_FILEINFO_EA_SIZE:
163 info->ea_size.out.create_time = nt_time_to_unix(name->dos.create_time);
164 info->ea_size.out.access_time = nt_time_to_unix(name->dos.access_time);
165 info->ea_size.out.write_time = nt_time_to_unix(name->dos.write_time);
166 info->ea_size.out.size = name->st.st_size;
167 info->ea_size.out.alloc_size = name->dos.alloc_size;
168 info->ea_size.out.attrib = name->dos.attrib;
169 info->ea_size.out.ea_size = name->dos.ea_size;
172 case RAW_FILEINFO_EA_LIST:
173 return pvfs_query_ea_list(pvfs, req, name, fd,
174 info->ea_list.in.num_names,
175 info->ea_list.in.ea_names,
178 case RAW_FILEINFO_ALL_EAS:
179 return pvfs_query_all_eas(pvfs, req, name, fd, &info->all_eas.out);
181 case RAW_FILEINFO_SMB2_ALL_EAS: {
182 NTSTATUS status = pvfs_query_all_eas(pvfs, req, name, fd, &info->all_eas.out);
183 if (NT_STATUS_IS_OK(status) &&
184 info->all_eas.out.num_eas == 0) {
185 return NT_STATUS_NO_EAS_ON_FILE;
190 case RAW_FILEINFO_IS_NAME_VALID:
193 case RAW_FILEINFO_BASIC_INFO:
194 case RAW_FILEINFO_BASIC_INFORMATION:
195 info->basic_info.out.create_time = name->dos.create_time;
196 info->basic_info.out.access_time = name->dos.access_time;
197 info->basic_info.out.write_time = name->dos.write_time;
198 info->basic_info.out.change_time = name->dos.change_time;
199 info->basic_info.out.attrib = name->dos.attrib;
202 case RAW_FILEINFO_STANDARD_INFO:
203 case RAW_FILEINFO_STANDARD_INFORMATION:
204 info->standard_info.out.alloc_size = name->dos.alloc_size;
205 info->standard_info.out.size = name->st.st_size;
206 info->standard_info.out.nlink = name->dos.nlink;
207 info->standard_info.out.delete_pending = 0; /* only for qfileinfo */
208 info->standard_info.out.directory =
209 (name->dos.attrib & FILE_ATTRIBUTE_DIRECTORY)? 1 : 0;
212 case RAW_FILEINFO_EA_INFO:
213 case RAW_FILEINFO_EA_INFORMATION:
214 info->ea_info.out.ea_size = name->dos.ea_size;
217 case RAW_FILEINFO_NAME_INFO:
218 case RAW_FILEINFO_NAME_INFORMATION:
219 if (req->ctx->protocol == PROTOCOL_SMB2) {
220 /* strange that SMB2 doesn't have this */
221 return NT_STATUS_NOT_SUPPORTED;
223 info->name_info.out.fname.s = name->original_name;
226 case RAW_FILEINFO_ALL_INFO:
227 case RAW_FILEINFO_ALL_INFORMATION:
228 info->all_info.out.create_time = name->dos.create_time;
229 info->all_info.out.access_time = name->dos.access_time;
230 info->all_info.out.write_time = name->dos.write_time;
231 info->all_info.out.change_time = name->dos.change_time;
232 info->all_info.out.attrib = name->dos.attrib;
233 info->all_info.out.alloc_size = name->dos.alloc_size;
234 info->all_info.out.size = name->st.st_size;
235 info->all_info.out.nlink = name->dos.nlink;
236 info->all_info.out.delete_pending = 0; /* only set by qfileinfo */
237 info->all_info.out.directory =
238 (name->dos.attrib & FILE_ATTRIBUTE_DIRECTORY)? 1 : 0;
239 info->all_info.out.ea_size = name->dos.ea_size;
240 info->all_info.out.fname.s = name->original_name;
243 case RAW_FILEINFO_ALT_NAME_INFO:
244 case RAW_FILEINFO_ALT_NAME_INFORMATION:
245 info->name_info.out.fname.s = pvfs_short_name(pvfs, name, name);
248 case RAW_FILEINFO_STREAM_INFO:
249 case RAW_FILEINFO_STREAM_INFORMATION:
250 return pvfs_stream_information(pvfs, req, name, fd, &info->stream_info.out);
252 case RAW_FILEINFO_COMPRESSION_INFO:
253 case RAW_FILEINFO_COMPRESSION_INFORMATION:
254 info->compression_info.out.compressed_size = name->st.st_size;
255 info->compression_info.out.format = 0;
256 info->compression_info.out.unit_shift = 0;
257 info->compression_info.out.chunk_shift = 0;
258 info->compression_info.out.cluster_shift = 0;
261 case RAW_FILEINFO_INTERNAL_INFORMATION:
262 info->internal_information.out.file_id = name->dos.file_id;
265 case RAW_FILEINFO_ACCESS_INFORMATION:
266 info->access_information.out.access_flags = 0; /* only set by qfileinfo */
269 case RAW_FILEINFO_POSITION_INFORMATION:
270 info->position_information.out.position = 0; /* only set by qfileinfo */
273 case RAW_FILEINFO_MODE_INFORMATION:
274 info->mode_information.out.mode = 0; /* only set by qfileinfo */
277 case RAW_FILEINFO_ALIGNMENT_INFORMATION:
278 info->alignment_information.out.alignment_requirement = 0;
281 case RAW_FILEINFO_NETWORK_OPEN_INFORMATION:
282 info->network_open_information.out.create_time = name->dos.create_time;
283 info->network_open_information.out.access_time = name->dos.access_time;
284 info->network_open_information.out.write_time = name->dos.write_time;
285 info->network_open_information.out.change_time = name->dos.change_time;
286 info->network_open_information.out.alloc_size = name->dos.alloc_size;
287 info->network_open_information.out.size = name->st.st_size;
288 info->network_open_information.out.attrib = name->dos.attrib;
291 case RAW_FILEINFO_ATTRIBUTE_TAG_INFORMATION:
292 info->attribute_tag_information.out.attrib = name->dos.attrib;
293 info->attribute_tag_information.out.reparse_tag = 0;
296 case RAW_FILEINFO_SEC_DESC:
297 return pvfs_acl_query(pvfs, req, name, fd, info);
299 case RAW_FILEINFO_SMB2_ALL_INFORMATION:
300 info->all_info2.out.create_time = name->dos.create_time;
301 info->all_info2.out.access_time = name->dos.access_time;
302 info->all_info2.out.write_time = name->dos.write_time;
303 info->all_info2.out.change_time = name->dos.change_time;
304 info->all_info2.out.attrib = name->dos.attrib;
305 info->all_info2.out.unknown1 = 0;
306 info->all_info2.out.alloc_size = name->dos.alloc_size;
307 info->all_info2.out.size = name->st.st_size;
308 info->all_info2.out.nlink = name->dos.nlink;
309 info->all_info2.out.delete_pending = 0; /* only set by qfileinfo */
310 info->all_info2.out.directory =
311 (name->dos.attrib & FILE_ATTRIBUTE_DIRECTORY)? 1 : 0;
312 info->all_info2.out.file_id = name->dos.file_id;
313 info->all_info2.out.ea_size = name->dos.ea_size;
314 info->all_info2.out.access_mask = 0; /* only set by qfileinfo */
315 info->all_info2.out.position = 0; /* only set by qfileinfo */
316 info->all_info2.out.mode = 0; /* only set by qfileinfo */
317 /* windows wants the full path on disk for this
318 result, but I really don't want to expose that on
319 the wire, so I'll give the path with a share
320 prefix, which is a good approximation */
321 info->all_info2.out.fname.s = talloc_asprintf(req, "\\%s\\%s",
323 name->original_name);
324 NT_STATUS_HAVE_NO_MEMORY(info->all_info2.out.fname.s);
328 return NT_STATUS_INVALID_LEVEL;
332 return info on a pathname
334 NTSTATUS pvfs_qpathinfo(struct ntvfs_module_context *ntvfs,
335 struct ntvfs_request *req, union smb_fileinfo *info)
337 struct pvfs_state *pvfs = ntvfs->private_data;
338 struct pvfs_filename *name;
341 /* resolve the cifs name to a posix name */
342 status = pvfs_resolve_name(pvfs, req, info->generic.in.file.path, PVFS_RESOLVE_STREAMS, &name);
343 if (!NT_STATUS_IS_OK(status)) {
347 if (!name->stream_exists) {
348 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
351 status = pvfs_can_stat(pvfs, req, name);
352 if (!NT_STATUS_IS_OK(status)) {
356 status = pvfs_access_check_simple(pvfs, req, name,
357 pvfs_fileinfo_access(info));
358 if (!NT_STATUS_IS_OK(status)) {
362 status = pvfs_map_fileinfo(pvfs, req, name, info, -1);
368 query info on a open file
370 NTSTATUS pvfs_qfileinfo(struct ntvfs_module_context *ntvfs,
371 struct ntvfs_request *req, union smb_fileinfo *info)
373 struct pvfs_state *pvfs = ntvfs->private_data;
375 struct pvfs_file_handle *h;
377 uint32_t access_needed;
379 f = pvfs_find_fd(pvfs, req, info->generic.in.file.ntvfs);
381 return NT_STATUS_INVALID_HANDLE;
385 access_needed = pvfs_fileinfo_access(info);
386 if ((f->access_mask & access_needed) != access_needed) {
387 return NT_STATUS_ACCESS_DENIED;
390 /* update the file information */
391 status = pvfs_resolve_name_handle(pvfs, h);
392 if (!NT_STATUS_IS_OK(status)) {
396 status = pvfs_map_fileinfo(pvfs, req, h->name, info, h->fd);
398 /* a qfileinfo can fill in a bit more info than a qpathinfo -
399 now modify the levels that need to be fixed up */
400 switch (info->generic.level) {
401 case RAW_FILEINFO_STANDARD_INFO:
402 case RAW_FILEINFO_STANDARD_INFORMATION:
403 if (pvfs_delete_on_close_set(pvfs, h)) {
404 info->standard_info.out.delete_pending = 1;
405 info->standard_info.out.nlink--;
409 case RAW_FILEINFO_ALL_INFO:
410 case RAW_FILEINFO_ALL_INFORMATION:
411 if (pvfs_delete_on_close_set(pvfs, h)) {
412 info->all_info.out.delete_pending = 1;
413 info->all_info.out.nlink--;
417 case RAW_FILEINFO_POSITION_INFORMATION:
418 info->position_information.out.position = h->position;
421 case RAW_FILEINFO_ACCESS_INFORMATION:
422 info->access_information.out.access_flags = f->access_mask;
425 case RAW_FILEINFO_MODE_INFORMATION:
426 info->mode_information.out.mode = h->mode;
429 case RAW_FILEINFO_SMB2_ALL_INFORMATION:
430 if (pvfs_delete_on_close_set(pvfs, h)) {
431 info->all_info2.out.delete_pending = 1;
432 info->all_info2.out.nlink--;
434 info->all_info2.out.position = h->position;
435 info->all_info2.out.access_mask = f->access_mask;
436 info->all_info2.out.mode = h->mode;