s3 OneFS: Add defaults to the fake timestamp parameters
[metze/samba/wip.git] / source3 / modules / vfs_onefs.c
1 /*
2  * Unix SMB/CIFS implementation.
3  * Support for OneFS
4  *
5  * Copyright (C) Tim Prouty, 2008
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 #include "includes.h"
22 #include "onefs.h"
23
24 #undef DBGC_CLASS
25 #define DBGC_CLASS DBGC_VFS
26
27 #define ONEFS_DATA_FASTBUF      10
28
29 struct onefs_vfs_config share_config[ONEFS_DATA_FASTBUF];
30 struct onefs_vfs_config *pshare_config;
31
32 static void onefs_load_faketimestamp_config(struct vfs_handle_struct *handle,
33                                             struct onefs_vfs_config *cfg)
34 {
35         const char **parm;
36         int snum = SNUM(handle->conn);
37
38         parm = lp_parm_string_list(snum, PARM_ONEFS_TYPE, PARM_ATIME_NOW,
39                                    PARM_ATIME_NOW_DEFAULT);
40
41         if (parm) {
42                 cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
43                 set_namearray(&cfg->atime_now_list,*parm);
44         }
45
46         parm = lp_parm_string_list(snum, PARM_ONEFS_TYPE, PARM_CTIME_NOW,
47                                    PARM_CTIME_NOW_DEFAULT);
48
49         if (parm) {
50                 cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
51                 set_namearray(&cfg->ctime_now_list,*parm);
52         }
53
54         parm = lp_parm_string_list(snum, PARM_ONEFS_TYPE, PARM_MTIME_NOW,
55                                    PARM_MTIME_NOW_DEFAULT);
56
57         if (parm) {
58                 cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
59                 set_namearray(&cfg->mtime_now_list,*parm);
60         }
61
62         parm = lp_parm_string_list(snum, PARM_ONEFS_TYPE, PARM_ATIME_STATIC,
63                                    PARM_ATIME_STATIC_DEFAULT);
64
65         if (parm) {
66                 cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
67                 set_namearray(&cfg->atime_static_list,*parm);
68         }
69
70         parm = lp_parm_string_list(snum, PARM_ONEFS_TYPE, PARM_MTIME_STATIC,
71                                    PARM_MTIME_STATIC_DEFAULT);
72
73         if (parm) {
74                 cfg->init_flags |= ONEFS_VFS_CONFIG_FAKETIMESTAMPS;
75                 set_namearray(&cfg->mtime_static_list,*parm);
76         }
77
78         cfg->atime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_ATIME_SLOP,
79                                       PARM_ATIME_SLOP_DEFAULT);
80         cfg->ctime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_CTIME_SLOP,
81                                       PARM_CTIME_SLOP_DEFAULT);
82         cfg->mtime_slop = lp_parm_int(snum, PARM_ONEFS_TYPE, PARM_MTIME_SLOP,
83                                       PARM_MTIME_SLOP_DEFAULT);
84 }
85
86
87 static int onefs_load_config(struct vfs_handle_struct *handle)
88 {
89         int snum = SNUM(handle->conn);
90         int share_count = lp_numservices();
91
92         if (!pshare_config) {
93
94                 if (share_count <= ONEFS_DATA_FASTBUF)
95                         pshare_config = share_config;
96                 else {
97                         pshare_config =
98                             SMB_MALLOC_ARRAY(struct onefs_vfs_config,
99                                              share_count);
100                         if (!pshare_config) {
101                                 errno = ENOMEM;
102                                 return -1;
103                         }
104
105                         memset(pshare_config, 0,
106                             (sizeof(struct onefs_vfs_config) * share_count));
107                 }
108         }
109
110         if ((pshare_config[snum].init_flags &
111                 ONEFS_VFS_CONFIG_INITIALIZED) == 0) {
112                         pshare_config[snum].init_flags =
113                             ONEFS_VFS_CONFIG_INITIALIZED;
114                         onefs_load_faketimestamp_config(handle,
115                                                         &pshare_config[snum]);
116         }
117
118         return 0;
119 }
120
121 bool onefs_get_config(int snum, int config_type,
122                       struct onefs_vfs_config *cfg)
123 {
124         if (share_config[snum].init_flags & config_type)
125                 *cfg = share_config[snum];
126         else
127                 return false;
128
129         return true;
130 }
131
132 static int onefs_connect(struct vfs_handle_struct *handle, const char *service,
133                          const char *user)
134 {
135         int ret = onefs_load_config(handle);
136
137         if (ret)
138                 return ret;
139
140         return SMB_VFS_NEXT_CONNECT(handle, service, user);
141 }
142
143 static int onefs_mkdir(vfs_handle_struct *handle, const char *path,
144                        mode_t mode)
145 {
146         /* SMB_VFS_MKDIR should never be called in vfs_onefs */
147         SMB_ASSERT(false);
148         return SMB_VFS_NEXT_MKDIR(handle, path, mode);
149 }
150
151 static int onefs_open(vfs_handle_struct *handle, const char *fname,
152                       files_struct *fsp, int flags, mode_t mode)
153 {
154         /* SMB_VFS_OPEN should never be called in vfs_onefs */
155         SMB_ASSERT(false);
156         return SMB_VFS_NEXT_OPEN(handle, fname, fsp, flags, mode);
157 }
158
159 static ssize_t onefs_recvfile(vfs_handle_struct *handle, int fromfd,
160                               files_struct *tofsp, SMB_OFF_T offset,
161                               size_t count)
162 {
163         ssize_t result;
164
165         START_PROFILE_BYTES(syscall_recvfile, count);
166         result = onefs_sys_recvfile(fromfd, tofsp->fh->fd, offset, count);
167         END_PROFILE(syscall_recvfile);
168         return result;
169 }
170
171 static uint64_t onefs_get_alloc_size(struct vfs_handle_struct *handle,
172                                      files_struct *fsp,
173                                      const SMB_STRUCT_STAT *sbuf)
174 {
175         uint64_t result;
176
177         START_PROFILE(syscall_get_alloc_size);
178
179         if(S_ISDIR(sbuf->st_mode)) {
180                 result = 0;
181                 goto out;
182         }
183
184         /* Just use the file size since st_blocks is unreliable on OneFS. */
185         result = get_file_size_stat(sbuf);
186
187         if (fsp && fsp->initial_allocation_size)
188                 result = MAX(result,fsp->initial_allocation_size);
189
190         result = smb_roundup(handle->conn, result);
191
192  out:
193         END_PROFILE(syscall_get_alloc_size);
194         return result;
195 }
196
197 static int onefs_statvfs(vfs_handle_struct *handle, const char *path,
198                          vfs_statvfs_struct *statbuf)
199 {
200         struct statvfs statvfs_buf;
201         int result;
202
203         DEBUG(5, ("Calling SMB_STAT_VFS \n"));
204         result = statvfs(path, &statvfs_buf);
205         ZERO_STRUCTP(statbuf);
206
207         if (!result) {
208                 statbuf->OptimalTransferSize = statvfs_buf.f_iosize;
209                 statbuf->BlockSize = statvfs_buf.f_bsize;
210                 statbuf->TotalBlocks = statvfs_buf.f_blocks;
211                 statbuf->BlocksAvail = statvfs_buf.f_bfree;
212                 statbuf->UserBlocksAvail = statvfs_buf.f_bavail;
213                 statbuf->TotalFileNodes = statvfs_buf.f_files;
214                 statbuf->FreeFileNodes = statvfs_buf.f_ffree;
215                 statbuf->FsIdentifier =
216                     (((uint64_t)statvfs_buf.f_fsid.val[0]<<32) &
217                         0xffffffff00000000LL) |
218                     (uint64_t)statvfs_buf.f_fsid.val[1];
219         }
220         return result;
221 }
222
223 static int onefs_get_real_filename(vfs_handle_struct *handle, const char *path,
224                                    const char *name, TALLOC_CTX *mem_ctx,
225                                    char **found_name)
226 {
227         SMB_STRUCT_STAT sb;
228         struct stat_extra se;
229         int result;
230         char *full_name = NULL;
231
232         ZERO_STRUCT(se);
233         se.se_version = ESTAT_CURRENT_VERSION;
234         se.se_flags = ESTAT_CASE_INSENSITIVE | ESTAT_SYMLINK_NOFOLLOW;
235
236         if (*path != '\0') {
237                 if (!(full_name = talloc_asprintf(mem_ctx, "%s/%s", path, name))) {
238                         errno = ENOMEM;
239                         DEBUG(2, ("talloc_asprintf failed\n"));
240                         result = -1;
241                         goto done;
242                 }
243         }
244
245         if ((result = estat(full_name ? full_name : name, &sb, &se)) != 0) {
246                 DEBUG(2, ("error calling estat: %s\n", strerror(errno)));
247                 goto done;
248         }
249
250         *found_name = talloc_strdup(mem_ctx, se.se_realname);
251         if (*found_name == NULL) {
252                 errno = ENOMEM;
253                 result = -1;
254                 goto done;
255         }
256
257 done:
258         TALLOC_FREE(full_name);
259         return result;
260 }
261
262 static int onefs_ntimes(vfs_handle_struct *handle, const char *fname,
263                         struct smb_file_time *ft)
264 {
265         int flags = 0;
266         struct timespec times[3];
267
268         if (!null_timespec(ft->atime)) {
269                 flags |= VT_ATIME;
270                 times[0] = ft->atime;
271                 DEBUG(6,("**** onefs_ntimes: actime: %s.%d\n",
272                         time_to_asc(convert_timespec_to_time_t(ft->atime)),
273                         ft->atime.tv_nsec));
274         }
275
276         if (!null_timespec(ft->mtime)) {
277                 flags |= VT_MTIME;
278                 times[1] = ft->mtime;
279                 DEBUG(6,("**** onefs_ntimes: modtime: %s.%d\n",
280                         time_to_asc(convert_timespec_to_time_t(ft->mtime)),
281                         ft->mtime.tv_nsec));
282         }
283
284         if (!null_timespec(ft->create_time)) {
285                 flags |= VT_BTIME;
286                 times[2] = ft->create_time;
287                 DEBUG(6,("**** onefs_ntimes: createtime: %s.%d\n",
288                    time_to_asc(convert_timespec_to_time_t(ft->create_time)),
289                    ft->create_time.tv_nsec));
290         }
291
292         return onefs_vtimes_streams(handle, fname, flags, times);
293 }
294
295 static uint32_t onefs_fs_capabilities(struct vfs_handle_struct *handle)
296 {
297         return SMB_VFS_NEXT_FS_CAPABILITIES(handle) | FILE_NAMED_STREAMS;
298 }
299
300 static vfs_op_tuple onefs_ops[] = {
301         {SMB_VFS_OP(onefs_connect), SMB_VFS_OP_CONNECT,
302          SMB_VFS_LAYER_TRANSPARENT},
303         {SMB_VFS_OP(onefs_fs_capabilities), SMB_VFS_OP_FS_CAPABILITIES,
304          SMB_VFS_LAYER_TRANSPARENT},
305         {SMB_VFS_OP(onefs_opendir), SMB_VFS_OP_OPENDIR,
306          SMB_VFS_LAYER_TRANSPARENT},
307         {SMB_VFS_OP(onefs_readdir), SMB_VFS_OP_READDIR,
308          SMB_VFS_LAYER_OPAQUE},
309         {SMB_VFS_OP(onefs_seekdir), SMB_VFS_OP_SEEKDIR,
310          SMB_VFS_LAYER_OPAQUE},
311         {SMB_VFS_OP(onefs_telldir), SMB_VFS_OP_TELLDIR,
312          SMB_VFS_LAYER_OPAQUE},
313         {SMB_VFS_OP(onefs_rewinddir), SMB_VFS_OP_REWINDDIR,
314          SMB_VFS_LAYER_OPAQUE},
315         {SMB_VFS_OP(onefs_mkdir), SMB_VFS_OP_MKDIR,
316          SMB_VFS_LAYER_OPAQUE},
317         {SMB_VFS_OP(onefs_closedir), SMB_VFS_OP_CLOSEDIR,
318          SMB_VFS_LAYER_TRANSPARENT},
319         {SMB_VFS_OP(onefs_init_search_op), SMB_VFS_OP_INIT_SEARCH_OP,
320          SMB_VFS_LAYER_OPAQUE},
321         {SMB_VFS_OP(onefs_open), SMB_VFS_OP_OPEN,
322          SMB_VFS_LAYER_OPAQUE},
323         {SMB_VFS_OP(onefs_create_file), SMB_VFS_OP_CREATE_FILE,
324          SMB_VFS_LAYER_OPAQUE},
325         {SMB_VFS_OP(onefs_close), SMB_VFS_OP_CLOSE,
326          SMB_VFS_LAYER_TRANSPARENT},
327         {SMB_VFS_OP(onefs_recvfile), SMB_VFS_OP_RECVFILE,
328          SMB_VFS_LAYER_OPAQUE},
329         {SMB_VFS_OP(onefs_rename), SMB_VFS_OP_RENAME,
330          SMB_VFS_LAYER_TRANSPARENT},
331         {SMB_VFS_OP(onefs_stat), SMB_VFS_OP_STAT,
332          SMB_VFS_LAYER_TRANSPARENT},
333         {SMB_VFS_OP(onefs_fstat), SMB_VFS_OP_FSTAT,
334          SMB_VFS_LAYER_TRANSPARENT},
335         {SMB_VFS_OP(onefs_lstat), SMB_VFS_OP_LSTAT,
336          SMB_VFS_LAYER_TRANSPARENT},
337         {SMB_VFS_OP(onefs_get_alloc_size), SMB_VFS_OP_GET_ALLOC_SIZE,
338          SMB_VFS_LAYER_OPAQUE},
339         {SMB_VFS_OP(onefs_unlink), SMB_VFS_OP_UNLINK,
340          SMB_VFS_LAYER_TRANSPARENT},
341         {SMB_VFS_OP(onefs_ntimes), SMB_VFS_OP_NTIMES,
342          SMB_VFS_LAYER_OPAQUE},
343         {SMB_VFS_OP(onefs_chflags), SMB_VFS_OP_CHFLAGS,
344          SMB_VFS_LAYER_TRANSPARENT},
345         {SMB_VFS_OP(onefs_streaminfo), SMB_VFS_OP_STREAMINFO,
346          SMB_VFS_LAYER_OPAQUE},
347         {SMB_VFS_OP(onefs_brl_lock_windows), SMB_VFS_OP_BRL_LOCK_WINDOWS,
348          SMB_VFS_LAYER_OPAQUE},
349         {SMB_VFS_OP(onefs_brl_unlock_windows), SMB_VFS_OP_BRL_UNLOCK_WINDOWS,
350          SMB_VFS_LAYER_OPAQUE},
351         {SMB_VFS_OP(onefs_brl_cancel_windows), SMB_VFS_OP_BRL_CANCEL_WINDOWS,
352          SMB_VFS_LAYER_OPAQUE},
353         {SMB_VFS_OP(onefs_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
354          SMB_VFS_LAYER_OPAQUE},
355         {SMB_VFS_OP(onefs_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,
356          SMB_VFS_LAYER_OPAQUE},
357         {SMB_VFS_OP(onefs_fset_nt_acl), SMB_VFS_OP_FSET_NT_ACL,
358          SMB_VFS_LAYER_OPAQUE},
359         {SMB_VFS_OP(onefs_statvfs), SMB_VFS_OP_STATVFS,
360          SMB_VFS_LAYER_OPAQUE},
361         {SMB_VFS_OP(onefs_get_real_filename), SMB_VFS_OP_GET_REAL_FILENAME,
362          SMB_VFS_LAYER_OPAQUE},
363         {SMB_VFS_OP(NULL), SMB_VFS_OP_NOOP, SMB_VFS_LAYER_NOOP}
364 };
365
366 NTSTATUS vfs_onefs_init(void)
367 {
368         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "onefs",
369                                 onefs_ops);
370 }