2 * Unix SMB/CIFS implementation.
5 * Copyright (C) Steven Danneman, 2008
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, see <http://www.gnu.org/licenses/>.
25 * vfs interface handlers
27 SMB_STRUCT_DIR
*onefs_opendir(struct vfs_handle_struct
*handle
,
28 const char *fname
, const char *mask
,
31 SMB_STRUCT_DIRENT
*onefs_readdir(struct vfs_handle_struct
*handle
,
32 SMB_STRUCT_DIR
*dirp
, SMB_STRUCT_STAT
*sbuf
);
34 void onefs_seekdir(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
,
37 long onefs_telldir(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
);
39 void onefs_rewinddir(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dirp
);
41 int onefs_closedir(struct vfs_handle_struct
*handle
, SMB_STRUCT_DIR
*dir
);
43 void onefs_init_search_op(struct vfs_handle_struct
*handle
,
44 SMB_STRUCT_DIR
*dirp
);
46 NTSTATUS
onefs_create_file(vfs_handle_struct
*handle
,
47 struct smb_request
*req
,
48 uint16_t root_dir_fid
,
50 uint32_t create_file_flags
,
52 uint32_t share_access
,
53 uint32_t create_disposition
,
54 uint32_t create_options
,
55 uint32_t file_attributes
,
56 uint32_t oplock_request
,
57 uint64_t allocation_size
,
58 struct security_descriptor
*sd
,
59 struct ea_list
*ea_list
,
60 files_struct
**result
,
62 SMB_STRUCT_STAT
*psbuf
);
64 int onefs_close(vfs_handle_struct
*handle
, struct files_struct
*fsp
);
66 int onefs_rename(vfs_handle_struct
*handle
, const char *oldname
,
69 int onefs_stat(vfs_handle_struct
*handle
, const char *fname
,
70 SMB_STRUCT_STAT
*sbuf
);
72 int onefs_fstat(vfs_handle_struct
*handle
, struct files_struct
*fsp
,
73 SMB_STRUCT_STAT
*sbuf
);
75 int onefs_lstat(vfs_handle_struct
*handle
, const char *path
,
76 SMB_STRUCT_STAT
*sbuf
);
78 int onefs_unlink(vfs_handle_struct
*handle
, const char *path
);
80 int onefs_chflags(vfs_handle_struct
*handle
, const char *path
,
83 NTSTATUS
onefs_streaminfo(vfs_handle_struct
*handle
,
84 struct files_struct
*fsp
,
87 unsigned int *num_streams
,
88 struct stream_struct
**streams
);
90 int onefs_vtimes_streams(vfs_handle_struct
*handle
, const char *fname
,
91 int flags
, struct timespec times
[3]);
93 NTSTATUS
onefs_brl_lock_windows(vfs_handle_struct
*handle
,
94 struct byte_range_lock
*br_lck
,
95 struct lock_struct
*plock
,
97 struct blocking_lock_record
*blr
);
99 bool onefs_brl_unlock_windows(vfs_handle_struct
*handle
,
100 struct messaging_context
*msg_ctx
,
101 struct byte_range_lock
*br_lck
,
102 const struct lock_struct
*plock
);
104 bool onefs_brl_cancel_windows(vfs_handle_struct
*handle
,
105 struct byte_range_lock
*br_lck
,
106 struct lock_struct
*plock
,
107 struct blocking_lock_record
*blr
);
109 bool onefs_strict_lock(vfs_handle_struct
*handle
,
111 struct lock_struct
*plock
);
113 void onefs_strict_unlock(vfs_handle_struct
*handle
,
115 struct lock_struct
*plock
);
117 NTSTATUS
onefs_notify_watch(vfs_handle_struct
*vfs_handle
,
118 struct sys_notify_context
*ctx
,
119 struct notify_entry
*e
,
120 void (*callback
)(struct sys_notify_context
*ctx
,
122 struct notify_event
*ev
),
126 NTSTATUS
onefs_fget_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
127 uint32 security_info
, SEC_DESC
**ppdesc
);
129 NTSTATUS
onefs_get_nt_acl(vfs_handle_struct
*handle
, const char* name
,
130 uint32 security_info
, SEC_DESC
**ppdesc
);
132 NTSTATUS
onefs_fset_nt_acl(vfs_handle_struct
*handle
, files_struct
*fsp
,
133 uint32 security_info_sent
, SEC_DESC
*psd
);
138 struct ifs_security_descriptor
;
139 NTSTATUS
onefs_samba_sd_to_sd(uint32_t security_info_sent
, SEC_DESC
*psd
,
140 struct ifs_security_descriptor
*sd
, int snum
,
141 uint32_t *security_info_effective
);
143 NTSTATUS
onefs_split_ntfs_stream_name(TALLOC_CTX
*mem_ctx
, const char *fname
,
144 char **pbase
, char **pstream
);
146 int onefs_rdp_add_dir_state(connection_struct
*conn
, SMB_STRUCT_DIR
*dirp
);
151 int onefs_sys_create_file(connection_struct
*conn
,
154 uint32_t access_mask
,
155 uint32_t open_access_mask
,
156 uint32_t share_access
,
157 uint32_t create_options
,
162 struct security_descriptor
*sd
,
164 int *granted_oplock
);
166 ssize_t
onefs_sys_sendfile(connection_struct
*conn
, int tofd
, int fromfd
,
167 const DATA_BLOB
*header
, SMB_OFF_T offset
,
170 ssize_t
onefs_sys_recvfile(int fromfd
, int tofd
, SMB_OFF_T offset
,
173 #endif /* _ONEFS_H */