d0360e67ed73219f96b35c20880f6f3f5496a605
[kai/samba.git] / source4 / ntvfs / posix / pvfs_ioctl.c
1 /* 
2    Unix SMB/CIFS implementation.
3
4    POSIX NTVFS backend - open and close
5
6    Copyright (C) Andrew Tridgell 2004
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 "vfs_posix.h"
24 #include "libcli/raw/ioctl.h"
25
26 /*
27   old ioctl interface 
28 */
29 static NTSTATUS pvfs_ioctl_old(struct ntvfs_module_context *ntvfs,
30                         struct ntvfs_request *req, union smb_ioctl *io)
31 {
32         return NT_STATUS_DOS(ERRSRV, ERRerror);
33 }
34
35 /*
36   nt ioctl interface 
37 */
38 static NTSTATUS pvfs_ntioctl(struct ntvfs_module_context *ntvfs,
39                              struct ntvfs_request *req, union smb_ioctl *io)
40 {
41         struct pvfs_state *pvfs = ntvfs->private_data;
42         struct pvfs_file *f;
43
44         f = pvfs_find_fd(pvfs, req, io->ntioctl.in.file.ntvfs);
45         if (!f) {
46                 return NT_STATUS_INVALID_HANDLE;
47         }
48
49         switch (io->ntioctl.in.function) {
50         case FSCTL_SET_SPARSE:
51                 /* maybe some posix systems have a way of marking
52                    a file non-sparse? */
53                 io->ntioctl.out.blob = data_blob(NULL, 0);
54                 return NT_STATUS_OK;
55         }
56
57         return NT_STATUS_NOT_SUPPORTED;
58 }
59
60 /*
61   ioctl interface 
62 */
63 NTSTATUS pvfs_ioctl(struct ntvfs_module_context *ntvfs,
64                     struct ntvfs_request *req,
65                     union smb_ioctl *io)
66 {
67         switch (io->generic.level) {
68         case RAW_IOCTL_IOCTL:
69                 return pvfs_ioctl_old(ntvfs, req, io);
70
71         case RAW_IOCTL_NTIOCTL:
72                 return pvfs_ntioctl(ntvfs, req, io);
73
74         case RAW_IOCTL_SMB2:
75         case RAW_IOCTL_SMB2_NO_HANDLE:
76                 return NT_STATUS_FS_DRIVER_REQUIRED;
77         }
78
79         return NT_STATUS_INVALID_LEVEL;
80 }