smbd: convert SMB_VFS_GET_REAL_FILENAME() arg path to be a struct smb_filename
[samba.git] / source3 / modules / vfs_ceph.c
1 /*
2    Unix SMB/CIFS implementation.
3    Wrap disk only vfs functions to sidestep dodgy compilers.
4    Copyright (C) Tim Potter 1998
5    Copyright (C) Jeremy Allison 2007
6    Copyright (C) Brian Chrisman 2011 <bchrisman@gmail.com>
7    Copyright (C) Richard Sharpe 2011 <realrichardsharpe@gmail.com>
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 3 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 */
22
23 /*
24  * This VFS only works with the libceph.so user-space client. It is not needed
25  * if you are using the kernel client or the FUSE client.
26  *
27  * Add the following smb.conf parameter to each share that will be hosted on
28  * Ceph:
29  *
30  *   vfs objects = ceph [any others you need go here]
31  */
32
33 #include "includes.h"
34 #include "smbd/smbd.h"
35 #include "system/filesys.h"
36 #include <dirent.h>
37 #include <sys/statvfs.h>
38 #include "cephfs/libcephfs.h"
39 #include "smbprofile.h"
40 #include "modules/posixacl_xattr.h"
41 #include "lib/util/tevent_unix.h"
42
43 #undef DBGC_CLASS
44 #define DBGC_CLASS DBGC_VFS
45
46 #ifndef LIBCEPHFS_VERSION
47 #define LIBCEPHFS_VERSION(maj, min, extra) ((maj << 16) + (min << 8) + extra)
48 #define LIBCEPHFS_VERSION_CODE LIBCEPHFS_VERSION(0, 0, 0)
49 #endif
50
51 /*
52  * Use %llu whenever we have a 64bit unsigned int, and cast to (long long unsigned)
53  */
54 #define llu(_var) ((long long unsigned)_var)
55
56 /*
57  * Note, libceph's return code model is to return -errno! So we have to convert
58  * to what Samba expects, with is set errno to -return and return -1
59  */
60 #define WRAP_RETURN(_res) \
61         errno = 0; \
62         if (_res < 0) { \
63                 errno = -_res; \
64                 return -1; \
65         } \
66         return _res \
67
68 /*
69  * We mount only one file system and then all shares are assumed to be in that.
70  * FIXME: If we want to support more than one FS, then we have to deal with
71  * this differently.
72  *
73  * So, cmount tells us if we have been this way before and whether
74  * we need to mount ceph and cmount_cnt tells us how many times we have
75  * connected
76  */
77 static struct ceph_mount_info * cmount = NULL;
78 static uint32_t cmount_cnt = 0;
79
80 /* Check for NULL pointer parameters in cephwrap_* functions */
81
82 /* We don't want to have NULL function pointers lying around.  Someone
83    is sure to try and execute them.  These stubs are used to prevent
84    this possibility. */
85
86 static int cephwrap_connect(struct vfs_handle_struct *handle,  const char *service, const char *user)
87 {
88         int ret;
89         char buf[256];
90         int snum = SNUM(handle->conn);
91         const char *conf_file;
92         const char *user_id;
93
94         if (cmount) {
95                 handle->data = cmount; /* We have been here before */
96                 cmount_cnt++;
97                 return 0;
98         }
99
100         /* if config_file and/or user_id are NULL, ceph will use defaults */
101         conf_file = lp_parm_const_string(snum, "ceph", "config_file", NULL);
102         user_id = lp_parm_const_string(snum, "ceph", "user_id", NULL);
103
104         DBG_DEBUG("[CEPH] calling: ceph_create\n");
105         ret = ceph_create(&cmount, user_id);
106         if (ret) {
107                 goto err_out;
108         }
109
110         DBG_DEBUG("[CEPH] calling: ceph_conf_read_file with %s\n",
111                   (conf_file == NULL ? "default path" : conf_file));
112         ret = ceph_conf_read_file(cmount, conf_file);
113         if (ret) {
114                 goto err_cm_release;
115         }
116
117         DBG_DEBUG("[CEPH] calling: ceph_conf_get\n");
118         ret = ceph_conf_get(cmount, "log file", buf, sizeof(buf));
119         if (ret < 0) {
120                 goto err_cm_release;
121         }
122
123         /* libcephfs disables POSIX ACL support by default, enable it... */
124         ret = ceph_conf_set(cmount, "client_acl_type", "posix_acl");
125         if (ret < 0) {
126                 goto err_cm_release;
127         }
128         /* tell libcephfs to perform local permission checks */
129         ret = ceph_conf_set(cmount, "fuse_default_permissions", "false");
130         if (ret < 0) {
131                 goto err_cm_release;
132         }
133
134         DBG_DEBUG("[CEPH] calling: ceph_mount\n");
135         ret = ceph_mount(cmount, NULL);
136         if (ret < 0) {
137                 goto err_cm_release;
138         }
139
140         /*
141          * encode mount context/state into our vfs/connection holding structure
142          * cmount is a ceph_mount_t*
143          */
144         handle->data = cmount;
145         cmount_cnt++;
146
147         /*
148          * Unless we have an async implementation of getxattrat turn this off.
149          */
150         lp_do_parameter(SNUM(handle->conn), "smbd async dosmode", "false");
151
152         return 0;
153
154 err_cm_release:
155         ceph_release(cmount);
156         cmount = NULL;
157 err_out:
158         /*
159          * Handle the error correctly. Ceph returns -errno.
160          */
161         DBG_DEBUG("[CEPH] Error return: %s\n", strerror(-ret));
162         WRAP_RETURN(ret);
163 }
164
165 static void cephwrap_disconnect(struct vfs_handle_struct *handle)
166 {
167         int ret;
168
169         if (!cmount) {
170                 DBG_ERR("[CEPH] Error, ceph not mounted\n");
171                 return;
172         }
173
174         /* Should we unmount/shutdown? Only if the last disconnect? */
175         if (--cmount_cnt) {
176                 DBG_DEBUG("[CEPH] Not shuting down CEPH because still more connections\n");
177                 return;
178         }
179
180         ret = ceph_unmount(cmount);
181         if (ret < 0) {
182                 DBG_ERR("[CEPH] failed to unmount: %s\n", strerror(-ret));
183         }
184
185         ret = ceph_release(cmount);
186         if (ret < 0) {
187                 DBG_ERR("[CEPH] failed to release: %s\n", strerror(-ret));
188         }
189
190         cmount = NULL;  /* Make it safe */
191 }
192
193 /* Disk operations */
194
195 static uint64_t cephwrap_disk_free(struct vfs_handle_struct *handle,
196                                 const struct smb_filename *smb_fname,
197                                 uint64_t *bsize,
198                                 uint64_t *dfree,
199                                 uint64_t *dsize)
200 {
201         struct statvfs statvfs_buf;
202         int ret;
203
204         if (!(ret = ceph_statfs(handle->data, smb_fname->base_name,
205                         &statvfs_buf))) {
206                 /*
207                  * Provide all the correct values.
208                  */
209                 *bsize = statvfs_buf.f_bsize;
210                 *dfree = statvfs_buf.f_bavail;
211                 *dsize = statvfs_buf.f_blocks;
212                 DBG_DEBUG("[CEPH] bsize: %llu, dfree: %llu, dsize: %llu\n",
213                         llu(*bsize), llu(*dfree), llu(*dsize));
214                 return *dfree;
215         } else {
216                 DBG_DEBUG("[CEPH] ceph_statfs returned %d\n", ret);
217                 WRAP_RETURN(ret);
218         }
219 }
220
221 static int cephwrap_get_quota(struct vfs_handle_struct *handle,
222                                 const struct smb_filename *smb_fname,
223                                 enum SMB_QUOTA_TYPE qtype,
224                                 unid_t id,
225                                 SMB_DISK_QUOTA *qt)
226 {
227         /* libceph: Ceph does not implement this */
228 #if 0
229 /* was ifdef HAVE_SYS_QUOTAS */
230         int ret;
231
232         ret = ceph_get_quota(handle->conn->connectpath, qtype, id, qt);
233
234         if (ret) {
235                 errno = -ret;
236                 ret = -1;
237         }
238
239         return ret;
240 #else
241         errno = ENOSYS;
242         return -1;
243 #endif
244 }
245
246 static int cephwrap_set_quota(struct vfs_handle_struct *handle,  enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt)
247 {
248         /* libceph: Ceph does not implement this */
249 #if 0
250 /* was ifdef HAVE_SYS_QUOTAS */
251         int ret;
252
253         ret = ceph_set_quota(handle->conn->connectpath, qtype, id, qt);
254         if (ret) {
255                 errno = -ret;
256                 ret = -1;
257         }
258
259         return ret;
260 #else
261         WRAP_RETURN(-ENOSYS);
262 #endif
263 }
264
265 static int cephwrap_statvfs(struct vfs_handle_struct *handle,
266                                 const struct smb_filename *smb_fname,
267                                 vfs_statvfs_struct *statbuf)
268 {
269         struct statvfs statvfs_buf;
270         int ret;
271
272         ret = ceph_statfs(handle->data, smb_fname->base_name, &statvfs_buf);
273         if (ret < 0) {
274                 WRAP_RETURN(ret);
275         }
276
277         statbuf->OptimalTransferSize = statvfs_buf.f_frsize;
278         statbuf->BlockSize = statvfs_buf.f_bsize;
279         statbuf->TotalBlocks = statvfs_buf.f_blocks;
280         statbuf->BlocksAvail = statvfs_buf.f_bfree;
281         statbuf->UserBlocksAvail = statvfs_buf.f_bavail;
282         statbuf->TotalFileNodes = statvfs_buf.f_files;
283         statbuf->FreeFileNodes = statvfs_buf.f_ffree;
284         statbuf->FsIdentifier = statvfs_buf.f_fsid;
285         DBG_DEBUG("[CEPH] f_bsize: %ld, f_blocks: %ld, f_bfree: %ld, f_bavail: %ld\n",
286                 (long int)statvfs_buf.f_bsize, (long int)statvfs_buf.f_blocks,
287                 (long int)statvfs_buf.f_bfree, (long int)statvfs_buf.f_bavail);
288
289         return ret;
290 }
291
292 static uint32_t cephwrap_fs_capabilities(struct vfs_handle_struct *handle,
293                                          enum timestamp_set_resolution *p_ts_res)
294 {
295         uint32_t caps = FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVED_NAMES;
296
297         *p_ts_res = TIMESTAMP_SET_NT_OR_BETTER;
298
299         return caps;
300 }
301
302 /* Directory operations */
303
304 static DIR *cephwrap_fdopendir(struct vfs_handle_struct *handle,
305                                struct files_struct *fsp,
306                                const char *mask,
307                                uint32_t attributes)
308 {
309         /* OpenDir_fsp() falls back to regular open */
310         errno = ENOSYS;
311         return NULL;
312 }
313
314 static struct dirent *cephwrap_readdir(struct vfs_handle_struct *handle,
315                                        DIR *dirp,
316                                        SMB_STRUCT_STAT *sbuf)
317 {
318         struct dirent *result;
319
320         DBG_DEBUG("[CEPH] readdir(%p, %p)\n", handle, dirp);
321         result = ceph_readdir(handle->data, (struct ceph_dir_result *) dirp);
322         DBG_DEBUG("[CEPH] readdir(...) = %p\n", result);
323
324         /* Default Posix readdir() does not give us stat info.
325          * Set to invalid to indicate we didn't return this info. */
326         if (sbuf)
327                 SET_STAT_INVALID(*sbuf);
328         return result;
329 }
330
331 static void cephwrap_seekdir(struct vfs_handle_struct *handle, DIR *dirp, long offset)
332 {
333         DBG_DEBUG("[CEPH] seekdir(%p, %p, %ld)\n", handle, dirp, offset);
334         ceph_seekdir(handle->data, (struct ceph_dir_result *) dirp, offset);
335 }
336
337 static long cephwrap_telldir(struct vfs_handle_struct *handle, DIR *dirp)
338 {
339         long ret;
340         DBG_DEBUG("[CEPH] telldir(%p, %p)\n", handle, dirp);
341         ret = ceph_telldir(handle->data, (struct ceph_dir_result *) dirp);
342         DBG_DEBUG("[CEPH] telldir(...) = %ld\n", ret);
343         WRAP_RETURN(ret);
344 }
345
346 static void cephwrap_rewinddir(struct vfs_handle_struct *handle, DIR *dirp)
347 {
348         DBG_DEBUG("[CEPH] rewinddir(%p, %p)\n", handle, dirp);
349         ceph_rewinddir(handle->data, (struct ceph_dir_result *) dirp);
350 }
351
352 static int cephwrap_mkdirat(struct vfs_handle_struct *handle,
353                         files_struct *dirfsp,
354                         const struct smb_filename *smb_fname,
355                         mode_t mode)
356 {
357         int result;
358         struct smb_filename *parent = NULL;
359         bool ok;
360
361         DBG_DEBUG("[CEPH] mkdir(%p, %s)\n",
362                   handle, smb_fname_str_dbg(smb_fname));
363
364         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
365
366         if (lp_inherit_acls(SNUM(handle->conn))) {
367                 ok = parent_smb_fname(talloc_tos(), smb_fname, &parent, NULL);
368                 if (ok && directory_has_default_acl(handle->conn,
369                                 dirfsp,
370                                 parent))
371                 {
372                         mode = 0777;
373                 }
374         }
375
376         TALLOC_FREE(parent);
377
378         result = ceph_mkdir(handle->data, smb_fname->base_name, mode);
379         return WRAP_RETURN(result);
380 }
381
382 static int cephwrap_closedir(struct vfs_handle_struct *handle, DIR *dirp)
383 {
384         int result;
385
386         DBG_DEBUG("[CEPH] closedir(%p, %p)\n", handle, dirp);
387         result = ceph_closedir(handle->data, (struct ceph_dir_result *) dirp);
388         DBG_DEBUG("[CEPH] closedir(...) = %d\n", result);
389         WRAP_RETURN(result);
390 }
391
392 /* File operations */
393
394 static int cephwrap_open(struct vfs_handle_struct *handle,
395                         struct smb_filename *smb_fname,
396                         files_struct *fsp, int flags, mode_t mode)
397 {
398         int result = -ENOENT;
399         DBG_DEBUG("[CEPH] open(%p, %s, %p, %d, %d)\n", handle,
400                   smb_fname_str_dbg(smb_fname), fsp, flags, mode);
401
402         if (smb_fname->stream_name) {
403                 goto out;
404         }
405
406         result = ceph_open(handle->data, smb_fname->base_name, flags, mode);
407 out:
408         DBG_DEBUG("[CEPH] open(...) = %d\n", result);
409         WRAP_RETURN(result);
410 }
411
412 static int cephwrap_close(struct vfs_handle_struct *handle, files_struct *fsp)
413 {
414         int result;
415
416         DBG_DEBUG("[CEPH] close(%p, %p)\n", handle, fsp);
417         result = ceph_close(handle->data, fsp->fh->fd);
418         DBG_DEBUG("[CEPH] close(...) = %d\n", result);
419
420         WRAP_RETURN(result);
421 }
422
423 static ssize_t cephwrap_pread(struct vfs_handle_struct *handle, files_struct *fsp, void *data,
424                         size_t n, off_t offset)
425 {
426         ssize_t result;
427
428         DBG_DEBUG("[CEPH] pread(%p, %p, %p, %llu, %llu)\n", handle, fsp, data, llu(n), llu(offset));
429
430         result = ceph_read(handle->data, fsp->fh->fd, data, n, offset);
431         DBG_DEBUG("[CEPH] pread(...) = %llu\n", llu(result));
432         WRAP_RETURN(result);
433 }
434
435 struct cephwrap_pread_state {
436         ssize_t bytes_read;
437         struct vfs_aio_state vfs_aio_state;
438 };
439
440 /*
441  * Fake up an async ceph read by calling the synchronous API.
442  */
443 static struct tevent_req *cephwrap_pread_send(struct vfs_handle_struct *handle,
444                                               TALLOC_CTX *mem_ctx,
445                                               struct tevent_context *ev,
446                                               struct files_struct *fsp,
447                                               void *data,
448                                               size_t n, off_t offset)
449 {
450         struct tevent_req *req = NULL;
451         struct cephwrap_pread_state *state = NULL;
452         int ret = -1;
453
454         DBG_DEBUG("[CEPH] %s\n", __func__);
455         req = tevent_req_create(mem_ctx, &state, struct cephwrap_pread_state);
456         if (req == NULL) {
457                 return NULL;
458         }
459
460         ret = ceph_read(handle->data, fsp->fh->fd, data, n, offset);
461         if (ret < 0) {
462                 /* ceph returns -errno on error. */
463                 tevent_req_error(req, -ret);
464                 return tevent_req_post(req, ev);
465         }
466
467         state->bytes_read = ret;
468         tevent_req_done(req);
469         /* Return and schedule the completion of the call. */
470         return tevent_req_post(req, ev);
471 }
472
473 static ssize_t cephwrap_pread_recv(struct tevent_req *req,
474                                    struct vfs_aio_state *vfs_aio_state)
475 {
476         struct cephwrap_pread_state *state =
477                 tevent_req_data(req, struct cephwrap_pread_state);
478
479         DBG_DEBUG("[CEPH] %s\n", __func__);
480         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
481                 return -1;
482         }
483         *vfs_aio_state = state->vfs_aio_state;
484         return state->bytes_read;
485 }
486
487 static ssize_t cephwrap_pwrite(struct vfs_handle_struct *handle, files_struct *fsp, const void *data,
488                         size_t n, off_t offset)
489 {
490         ssize_t result;
491
492         DBG_DEBUG("[CEPH] pwrite(%p, %p, %p, %llu, %llu)\n", handle, fsp, data, llu(n), llu(offset));
493         result = ceph_write(handle->data, fsp->fh->fd, data, n, offset);
494         DBG_DEBUG("[CEPH] pwrite(...) = %llu\n", llu(result));
495         WRAP_RETURN(result);
496 }
497
498 struct cephwrap_pwrite_state {
499         ssize_t bytes_written;
500         struct vfs_aio_state vfs_aio_state;
501 };
502
503 /*
504  * Fake up an async ceph write by calling the synchronous API.
505  */
506 static struct tevent_req *cephwrap_pwrite_send(struct vfs_handle_struct *handle,
507                                                TALLOC_CTX *mem_ctx,
508                                                struct tevent_context *ev,
509                                                struct files_struct *fsp,
510                                                const void *data,
511                                                size_t n, off_t offset)
512 {
513         struct tevent_req *req = NULL;
514         struct cephwrap_pwrite_state *state = NULL;
515         int ret = -1;
516
517         DBG_DEBUG("[CEPH] %s\n", __func__);
518         req = tevent_req_create(mem_ctx, &state, struct cephwrap_pwrite_state);
519         if (req == NULL) {
520                 return NULL;
521         }
522
523         ret = ceph_write(handle->data, fsp->fh->fd, data, n, offset);
524         if (ret < 0) {
525                 /* ceph returns -errno on error. */
526                 tevent_req_error(req, -ret);
527                 return tevent_req_post(req, ev);
528         }
529
530         state->bytes_written = ret;
531         tevent_req_done(req);
532         /* Return and schedule the completion of the call. */
533         return tevent_req_post(req, ev);
534 }
535
536 static ssize_t cephwrap_pwrite_recv(struct tevent_req *req,
537                                     struct vfs_aio_state *vfs_aio_state)
538 {
539         struct cephwrap_pwrite_state *state =
540                 tevent_req_data(req, struct cephwrap_pwrite_state);
541
542         DBG_DEBUG("[CEPH] %s\n", __func__);
543         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
544                 return -1;
545         }
546         *vfs_aio_state = state->vfs_aio_state;
547         return state->bytes_written;
548 }
549
550 static off_t cephwrap_lseek(struct vfs_handle_struct *handle, files_struct *fsp, off_t offset, int whence)
551 {
552         off_t result = 0;
553
554         DBG_DEBUG("[CEPH] cephwrap_lseek\n");
555         result = ceph_lseek(handle->data, fsp->fh->fd, offset, whence);
556         WRAP_RETURN(result);
557 }
558
559 static ssize_t cephwrap_sendfile(struct vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr,
560                         off_t offset, size_t n)
561 {
562         /*
563          * We cannot support sendfile because libceph is in user space.
564          */
565         DBG_DEBUG("[CEPH] cephwrap_sendfile\n");
566         errno = ENOTSUP;
567         return -1;
568 }
569
570 static ssize_t cephwrap_recvfile(struct vfs_handle_struct *handle,
571                         int fromfd,
572                         files_struct *tofsp,
573                         off_t offset,
574                         size_t n)
575 {
576         /*
577          * We cannot support recvfile because libceph is in user space.
578          */
579         DBG_DEBUG("[CEPH] cephwrap_recvfile\n");
580         errno=ENOTSUP;
581         return -1;
582 }
583
584 static int cephwrap_renameat(struct vfs_handle_struct *handle,
585                         files_struct *srcfsp,
586                         const struct smb_filename *smb_fname_src,
587                         files_struct *dstfsp,
588                         const struct smb_filename *smb_fname_dst)
589 {
590         int result = -1;
591         DBG_DEBUG("[CEPH] cephwrap_renameat\n");
592         if (smb_fname_src->stream_name || smb_fname_dst->stream_name) {
593                 errno = ENOENT;
594                 return result;
595         }
596
597         SMB_ASSERT(srcfsp == srcfsp->conn->cwd_fsp);
598         SMB_ASSERT(dstfsp == dstfsp->conn->cwd_fsp);
599
600         result = ceph_rename(handle->data, smb_fname_src->base_name, smb_fname_dst->base_name);
601         WRAP_RETURN(result);
602 }
603
604 /*
605  * Fake up an async ceph fsync by calling the synchronous API.
606  */
607
608 static struct tevent_req *cephwrap_fsync_send(struct vfs_handle_struct *handle,
609                                         TALLOC_CTX *mem_ctx,
610                                         struct tevent_context *ev,
611                                         files_struct *fsp)
612 {
613         struct tevent_req *req = NULL;
614         struct vfs_aio_state *state = NULL;
615         int ret = -1;
616
617         DBG_DEBUG("[CEPH] cephwrap_fsync_send\n");
618
619         req = tevent_req_create(mem_ctx, &state, struct vfs_aio_state);
620         if (req == NULL) {
621                 return NULL;
622         }
623
624         /* Make sync call. */
625         ret = ceph_fsync(handle->data, fsp->fh->fd, false);
626
627         if (ret != 0) {
628                 /* ceph_fsync returns -errno on error. */
629                 tevent_req_error(req, -ret);
630                 return tevent_req_post(req, ev);
631         }
632
633         /* Mark it as done. */
634         tevent_req_done(req);
635         /* Return and schedule the completion of the call. */
636         return tevent_req_post(req, ev);
637 }
638
639 static int cephwrap_fsync_recv(struct tevent_req *req,
640                                 struct vfs_aio_state *vfs_aio_state)
641 {
642         struct vfs_aio_state *state =
643                 tevent_req_data(req, struct vfs_aio_state);
644
645         DBG_DEBUG("[CEPH] cephwrap_fsync_recv\n");
646
647         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
648                 return -1;
649         }
650         *vfs_aio_state = *state;
651         return 0;
652 }
653
654 #define SAMBA_STATX_ATTR_MASK   (CEPH_STATX_BASIC_STATS|CEPH_STATX_BTIME)
655
656 static void init_stat_ex_from_ceph_statx(struct stat_ex *dst, const struct ceph_statx *stx)
657 {
658         DBG_DEBUG("[CEPH]\tstx = {dev = %llx, ino = %llu, mode = 0x%x, "
659                   "nlink = %llu, uid = %d, gid = %d, rdev = %llx, size = %llu, "
660                   "blksize = %llu, blocks = %llu, atime = %llu, mtime = %llu, "
661                   "ctime = %llu, btime = %llu}\n",
662                   llu(stx->stx_dev), llu(stx->stx_ino), stx->stx_mode,
663                   llu(stx->stx_nlink), stx->stx_uid, stx->stx_gid,
664                   llu(stx->stx_rdev), llu(stx->stx_size), llu(stx->stx_blksize),
665                   llu(stx->stx_blocks), llu(stx->stx_atime.tv_sec),
666                   llu(stx->stx_mtime.tv_sec), llu(stx->stx_ctime.tv_sec),
667                   llu(stx->stx_btime.tv_sec));
668
669         if ((stx->stx_mask & SAMBA_STATX_ATTR_MASK) != SAMBA_STATX_ATTR_MASK) {
670                 DBG_WARNING("%s: stx->stx_mask is incorrect (wanted %x, got %x)",
671                                 __func__, SAMBA_STATX_ATTR_MASK, stx->stx_mask);
672         }
673
674         dst->st_ex_dev = stx->stx_dev;
675         dst->st_ex_rdev = stx->stx_rdev;
676         dst->st_ex_ino = stx->stx_ino;
677         dst->st_ex_mode = stx->stx_mode;
678         dst->st_ex_uid = stx->stx_uid;
679         dst->st_ex_gid = stx->stx_gid;
680         dst->st_ex_size = stx->stx_size;
681         dst->st_ex_nlink = stx->stx_nlink;
682         dst->st_ex_atime = stx->stx_atime;
683         dst->st_ex_btime = stx->stx_btime;
684         dst->st_ex_ctime = stx->stx_ctime;
685         dst->st_ex_mtime = stx->stx_mtime;
686         dst->st_ex_itime = dst->st_ex_btime;
687         dst->st_ex_iflags = ST_EX_IFLAG_CALCULATED_ITIME;
688         dst->st_ex_blksize = stx->stx_blksize;
689         dst->st_ex_blocks = stx->stx_blocks;
690         dst->st_ex_file_id = dst->st_ex_ino;
691         dst->st_ex_iflags |= ST_EX_IFLAG_CALCULATED_FILE_ID;
692 }
693
694 static int cephwrap_stat(struct vfs_handle_struct *handle,
695                         struct smb_filename *smb_fname)
696 {
697         int result = -1;
698         struct ceph_statx stx;
699
700         DBG_DEBUG("[CEPH] stat(%p, %s)\n", handle, smb_fname_str_dbg(smb_fname));
701
702         if (smb_fname->stream_name) {
703                 errno = ENOENT;
704                 return result;
705         }
706
707         result = ceph_statx(handle->data, smb_fname->base_name, &stx,
708                                 SAMBA_STATX_ATTR_MASK, 0);
709         DBG_DEBUG("[CEPH] statx(...) = %d\n", result);
710         if (result < 0) {
711                 WRAP_RETURN(result);
712         }
713
714         init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
715         DBG_DEBUG("[CEPH] mode = 0x%x\n", smb_fname->st.st_ex_mode);
716         return result;
717 }
718
719 static int cephwrap_fstat(struct vfs_handle_struct *handle, files_struct *fsp, SMB_STRUCT_STAT *sbuf)
720 {
721         int result = -1;
722         struct ceph_statx stx;
723
724         DBG_DEBUG("[CEPH] fstat(%p, %d)\n", handle, fsp->fh->fd);
725         result = ceph_fstatx(handle->data, fsp->fh->fd, &stx,
726                                 SAMBA_STATX_ATTR_MASK, 0);
727         DBG_DEBUG("[CEPH] fstat(...) = %d\n", result);
728         if (result < 0) {
729                 WRAP_RETURN(result);
730         }
731
732         init_stat_ex_from_ceph_statx(sbuf, &stx);
733         DBG_DEBUG("[CEPH] mode = 0x%x\n", sbuf->st_ex_mode);
734         return result;
735 }
736
737 static int cephwrap_lstat(struct vfs_handle_struct *handle,
738                          struct smb_filename *smb_fname)
739 {
740         int result = -1;
741         struct ceph_statx stx;
742
743         DBG_DEBUG("[CEPH] lstat(%p, %s)\n", handle, smb_fname_str_dbg(smb_fname));
744
745         if (smb_fname->stream_name) {
746                 errno = ENOENT;
747                 return result;
748         }
749
750         result = ceph_statx(handle->data, smb_fname->base_name, &stx,
751                                 SAMBA_STATX_ATTR_MASK, AT_SYMLINK_NOFOLLOW);
752         DBG_DEBUG("[CEPH] lstat(...) = %d\n", result);
753         if (result < 0) {
754                 WRAP_RETURN(result);
755         }
756
757         init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
758         return result;
759 }
760
761 static int cephwrap_ntimes(struct vfs_handle_struct *handle,
762                          const struct smb_filename *smb_fname,
763                          struct smb_file_time *ft)
764 {
765         struct ceph_statx stx = { 0 };
766         int result;
767         int mask = 0;
768
769         if (!is_omit_timespec(&ft->atime)) {
770                 stx.stx_atime = ft->atime;
771                 mask |= CEPH_SETATTR_ATIME;
772         }
773         if (!is_omit_timespec(&ft->mtime)) {
774                 stx.stx_mtime = ft->mtime;
775                 mask |= CEPH_SETATTR_MTIME;
776         }
777         if (!is_omit_timespec(&ft->create_time)) {
778                 stx.stx_btime = ft->create_time;
779                 mask |= CEPH_SETATTR_BTIME;
780         }
781
782         if (!mask) {
783                 return 0;
784         }
785
786         result = ceph_setattrx(handle->data, smb_fname->base_name, &stx, mask, 0);
787         DBG_DEBUG("[CEPH] ntimes(%p, %s, {%ld, %ld, %ld, %ld}) = %d\n", handle, smb_fname_str_dbg(smb_fname),
788                                 ft->mtime.tv_sec, ft->atime.tv_sec, ft->ctime.tv_sec,
789                                 ft->create_time.tv_sec, result);
790         return result;
791 }
792
793 static int cephwrap_unlinkat(struct vfs_handle_struct *handle,
794                         struct files_struct *dirfsp,
795                         const struct smb_filename *smb_fname,
796                         int flags)
797 {
798         int result = -1;
799
800         DBG_DEBUG("[CEPH] unlink(%p, %s)\n",
801                 handle,
802                 smb_fname_str_dbg(smb_fname));
803         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
804         if (smb_fname->stream_name) {
805                 errno = ENOENT;
806                 return result;
807         }
808         if (flags & AT_REMOVEDIR) {
809                 result = ceph_rmdir(handle->data, smb_fname->base_name);
810         } else {
811                 result = ceph_unlink(handle->data, smb_fname->base_name);
812         }
813         DBG_DEBUG("[CEPH] unlink(...) = %d\n", result);
814         WRAP_RETURN(result);
815 }
816
817 static int cephwrap_chmod(struct vfs_handle_struct *handle,
818                         const struct smb_filename *smb_fname,
819                         mode_t mode)
820 {
821         int result;
822
823         DBG_DEBUG("[CEPH] chmod(%p, %s, %d)\n", handle, smb_fname->base_name, mode);
824         result = ceph_chmod(handle->data, smb_fname->base_name, mode);
825         DBG_DEBUG("[CEPH] chmod(...) = %d\n", result);
826         WRAP_RETURN(result);
827 }
828
829 static int cephwrap_fchmod(struct vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
830 {
831         int result;
832
833         DBG_DEBUG("[CEPH] fchmod(%p, %p, %d)\n", handle, fsp, mode);
834         result = ceph_fchmod(handle->data, fsp->fh->fd, mode);
835         DBG_DEBUG("[CEPH] fchmod(...) = %d\n", result);
836         WRAP_RETURN(result);
837 }
838
839 static int cephwrap_fchown(struct vfs_handle_struct *handle, files_struct *fsp, uid_t uid, gid_t gid)
840 {
841         int result;
842
843         DBG_DEBUG("[CEPH] fchown(%p, %p, %d, %d)\n", handle, fsp, uid, gid);
844         result = ceph_fchown(handle->data, fsp->fh->fd, uid, gid);
845         DBG_DEBUG("[CEPH] fchown(...) = %d\n", result);
846         WRAP_RETURN(result);
847 }
848
849 static int cephwrap_lchown(struct vfs_handle_struct *handle,
850                         const struct smb_filename *smb_fname,
851                         uid_t uid,
852                         gid_t gid)
853 {
854         int result;
855         DBG_DEBUG("[CEPH] lchown(%p, %s, %d, %d)\n", handle, smb_fname->base_name, uid, gid);
856         result = ceph_lchown(handle->data, smb_fname->base_name, uid, gid);
857         DBG_DEBUG("[CEPH] lchown(...) = %d\n", result);
858         WRAP_RETURN(result);
859 }
860
861 static int cephwrap_chdir(struct vfs_handle_struct *handle,
862                         const struct smb_filename *smb_fname)
863 {
864         int result = -1;
865         DBG_DEBUG("[CEPH] chdir(%p, %s)\n", handle, smb_fname->base_name);
866         result = ceph_chdir(handle->data, smb_fname->base_name);
867         DBG_DEBUG("[CEPH] chdir(...) = %d\n", result);
868         WRAP_RETURN(result);
869 }
870
871 static struct smb_filename *cephwrap_getwd(struct vfs_handle_struct *handle,
872                         TALLOC_CTX *ctx)
873 {
874         const char *cwd = ceph_getcwd(handle->data);
875         DBG_DEBUG("[CEPH] getwd(%p) = %s\n", handle, cwd);
876         return synthetic_smb_fname(ctx,
877                                 cwd,
878                                 NULL,
879                                 NULL,
880                                 0,
881                                 0);
882 }
883
884 static int strict_allocate_ftruncate(struct vfs_handle_struct *handle, files_struct *fsp, off_t len)
885 {
886         off_t space_to_write;
887         int result;
888         NTSTATUS status;
889         SMB_STRUCT_STAT *pst;
890
891         status = vfs_stat_fsp(fsp);
892         if (!NT_STATUS_IS_OK(status)) {
893                 return -1;
894         }
895         pst = &fsp->fsp_name->st;
896
897 #ifdef S_ISFIFO
898         if (S_ISFIFO(pst->st_ex_mode))
899                 return 0;
900 #endif
901
902         if (pst->st_ex_size == len)
903                 return 0;
904
905         /* Shrink - just ftruncate. */
906         if (pst->st_ex_size > len) {
907                 result = ceph_ftruncate(handle->data, fsp->fh->fd, len);
908                 WRAP_RETURN(result);
909         }
910
911         space_to_write = len - pst->st_ex_size;
912         result = ceph_fallocate(handle->data, fsp->fh->fd, 0, pst->st_ex_size,
913                                 space_to_write);
914         WRAP_RETURN(result);
915 }
916
917 static int cephwrap_ftruncate(struct vfs_handle_struct *handle, files_struct *fsp, off_t len)
918 {
919         int result = -1;
920
921         DBG_DEBUG("[CEPH] ftruncate(%p, %p, %llu\n", handle, fsp, llu(len));
922
923         if (lp_strict_allocate(SNUM(fsp->conn))) {
924                 return strict_allocate_ftruncate(handle, fsp, len);
925         }
926
927         result = ceph_ftruncate(handle->data, fsp->fh->fd, len);
928         WRAP_RETURN(result);
929 }
930
931 static int cephwrap_fallocate(struct vfs_handle_struct *handle,
932                               struct files_struct *fsp,
933                               uint32_t mode,
934                               off_t offset,
935                               off_t len)
936 {
937         int result;
938
939         DBG_DEBUG("[CEPH] fallocate(%p, %p, %u, %llu, %llu\n",
940                   handle, fsp, mode, llu(offset), llu(len));
941         /* unsupported mode flags are rejected by libcephfs */
942         result = ceph_fallocate(handle->data, fsp->fh->fd, mode, offset, len);
943         DBG_DEBUG("[CEPH] fallocate(...) = %d\n", result);
944         WRAP_RETURN(result);
945 }
946
947 static bool cephwrap_lock(struct vfs_handle_struct *handle, files_struct *fsp, int op, off_t offset, off_t count, int type)
948 {
949         DBG_DEBUG("[CEPH] lock\n");
950         return true;
951 }
952
953 static int cephwrap_kernel_flock(struct vfs_handle_struct *handle,
954                                  files_struct *fsp,
955                                  uint32_t share_access,
956                                  uint32_t access_mask)
957 {
958         DBG_ERR("[CEPH] flock unsupported! Consider setting "
959                 "\"kernel share modes = no\"\n");
960
961         errno = ENOSYS;
962         return -1;
963 }
964
965 static int cephwrap_fcntl(vfs_handle_struct *handle,
966                           files_struct *fsp, int cmd, va_list cmd_arg)
967 {
968         /*
969          * SMB_VFS_FCNTL() is currently only called by vfs_set_blocking() to
970          * clear O_NONBLOCK, etc for LOCK_MAND and FIFOs. Ignore it.
971          */
972         if (cmd == F_GETFL) {
973                 return 0;
974         } else if (cmd == F_SETFL) {
975                 va_list dup_cmd_arg;
976                 int opt;
977
978                 va_copy(dup_cmd_arg, cmd_arg);
979                 opt = va_arg(dup_cmd_arg, int);
980                 va_end(dup_cmd_arg);
981                 if (opt == 0) {
982                         return 0;
983                 }
984                 DBG_ERR("unexpected fcntl SETFL(%d)\n", opt);
985                 goto err_out;
986         }
987         DBG_ERR("unexpected fcntl: %d\n", cmd);
988 err_out:
989         errno = EINVAL;
990         return -1;
991 }
992
993 static bool cephwrap_getlock(struct vfs_handle_struct *handle, files_struct *fsp, off_t *poffset, off_t *pcount, int *ptype, pid_t *ppid)
994 {
995         DBG_DEBUG("[CEPH] getlock returning false and errno=0\n");
996
997         errno = 0;
998         return false;
999 }
1000
1001 /*
1002  * We cannot let this fall through to the default, because the file might only
1003  * be accessible from libceph (which is a user-space client) but the fd might
1004  * be for some file the kernel knows about.
1005  */
1006 static int cephwrap_linux_setlease(struct vfs_handle_struct *handle, files_struct *fsp,
1007                                 int leasetype)
1008 {
1009         int result = -1;
1010
1011         DBG_DEBUG("[CEPH] linux_setlease\n");
1012         errno = ENOSYS;
1013         return result;
1014 }
1015
1016 static int cephwrap_symlinkat(struct vfs_handle_struct *handle,
1017                 const char *link_target,
1018                 struct files_struct *dirfsp,
1019                 const struct smb_filename *new_smb_fname)
1020 {
1021         int result = -1;
1022         DBG_DEBUG("[CEPH] symlink(%p, %s, %s)\n", handle,
1023                         link_target,
1024                         new_smb_fname->base_name);
1025
1026         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
1027
1028         result = ceph_symlink(handle->data,
1029                         link_target,
1030                         new_smb_fname->base_name);
1031         DBG_DEBUG("[CEPH] symlink(...) = %d\n", result);
1032         WRAP_RETURN(result);
1033 }
1034
1035 static int cephwrap_readlinkat(struct vfs_handle_struct *handle,
1036                 files_struct *dirfsp,
1037                 const struct smb_filename *smb_fname,
1038                 char *buf,
1039                 size_t bufsiz)
1040 {
1041         int result = -1;
1042         DBG_DEBUG("[CEPH] readlink(%p, %s, %p, %llu)\n", handle,
1043                         smb_fname->base_name, buf, llu(bufsiz));
1044
1045         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
1046
1047         result = ceph_readlink(handle->data, smb_fname->base_name, buf, bufsiz);
1048         DBG_DEBUG("[CEPH] readlink(...) = %d\n", result);
1049         WRAP_RETURN(result);
1050 }
1051
1052 static int cephwrap_linkat(struct vfs_handle_struct *handle,
1053                 files_struct *srcfsp,
1054                 const struct smb_filename *old_smb_fname,
1055                 files_struct *dstfsp,
1056                 const struct smb_filename *new_smb_fname,
1057                 int flags)
1058 {
1059         int result = -1;
1060         DBG_DEBUG("[CEPH] link(%p, %s, %s)\n", handle,
1061                         old_smb_fname->base_name,
1062                         new_smb_fname->base_name);
1063
1064         SMB_ASSERT(srcfsp == srcfsp->conn->cwd_fsp);
1065         SMB_ASSERT(dstfsp == dstfsp->conn->cwd_fsp);
1066
1067         result = ceph_link(handle->data,
1068                                 old_smb_fname->base_name,
1069                                 new_smb_fname->base_name);
1070         DBG_DEBUG("[CEPH] link(...) = %d\n", result);
1071         WRAP_RETURN(result);
1072 }
1073
1074 static int cephwrap_mknodat(struct vfs_handle_struct *handle,
1075                 files_struct *dirfsp,
1076                 const struct smb_filename *smb_fname,
1077                 mode_t mode,
1078                 SMB_DEV_T dev)
1079 {
1080         int result = -1;
1081         DBG_DEBUG("[CEPH] mknodat(%p, %s)\n", handle, smb_fname->base_name);
1082         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
1083         result = ceph_mknod(handle->data, smb_fname->base_name, mode, dev);
1084         DBG_DEBUG("[CEPH] mknodat(...) = %d\n", result);
1085         WRAP_RETURN(result);
1086 }
1087
1088 /*
1089  * This is a simple version of real-path ... a better version is needed to
1090  * ask libceph about symbolic links.
1091  */
1092 static struct smb_filename *cephwrap_realpath(struct vfs_handle_struct *handle,
1093                                 TALLOC_CTX *ctx,
1094                                 const struct smb_filename *smb_fname)
1095 {
1096         char *result = NULL;
1097         const char *path = smb_fname->base_name;
1098         size_t len = strlen(path);
1099         struct smb_filename *result_fname = NULL;
1100         int r = -1;
1101
1102         if (len && (path[0] == '/')) {
1103                 r = asprintf(&result, "%s", path);
1104         } else if ((len >= 2) && (path[0] == '.') && (path[1] == '/')) {
1105                 if (len == 2) {
1106                         r = asprintf(&result, "%s",
1107                                         handle->conn->cwd_fsp->fsp_name->base_name);
1108                 } else {
1109                         r = asprintf(&result, "%s/%s",
1110                                         handle->conn->cwd_fsp->fsp_name->base_name, &path[2]);
1111                 }
1112         } else {
1113                 r = asprintf(&result, "%s/%s",
1114                                 handle->conn->cwd_fsp->fsp_name->base_name, path);
1115         }
1116
1117         if (r < 0) {
1118                 return NULL;
1119         }
1120
1121         DBG_DEBUG("[CEPH] realpath(%p, %s) = %s\n", handle, path, result);
1122         result_fname = synthetic_smb_fname(ctx,
1123                                 result,
1124                                 NULL,
1125                                 NULL,
1126                                 0,
1127                                 0);
1128         SAFE_FREE(result);
1129         return result_fname;
1130 }
1131
1132 static int cephwrap_chflags(struct vfs_handle_struct *handle,
1133                         const struct smb_filename *smb_fname,
1134                         unsigned int flags)
1135 {
1136         errno = ENOSYS;
1137         return -1;
1138 }
1139
1140 static int cephwrap_get_real_filename(struct vfs_handle_struct *handle,
1141                                      const struct smb_filename *path,
1142                                      const char *name,
1143                                      TALLOC_CTX *mem_ctx,
1144                                      char **found_name)
1145 {
1146         /*
1147          * Don't fall back to get_real_filename so callers can differentiate
1148          * between a full directory scan and an actual case-insensitive stat.
1149          */
1150         errno = EOPNOTSUPP;
1151         return -1;
1152 }
1153
1154 static const char *cephwrap_connectpath(struct vfs_handle_struct *handle,
1155                                        const struct smb_filename *smb_fname)
1156 {
1157         return handle->conn->connectpath;
1158 }
1159
1160 /****************************************************************
1161  Extended attribute operations.
1162 *****************************************************************/
1163
1164 static ssize_t cephwrap_getxattr(struct vfs_handle_struct *handle,
1165                         const struct smb_filename *smb_fname,
1166                         const char *name,
1167                         void *value,
1168                         size_t size)
1169 {
1170         int ret;
1171         DBG_DEBUG("[CEPH] getxattr(%p, %s, %s, %p, %llu)\n", handle,
1172                         smb_fname->base_name, name, value, llu(size));
1173         ret = ceph_getxattr(handle->data,
1174                         smb_fname->base_name, name, value, size);
1175         DBG_DEBUG("[CEPH] getxattr(...) = %d\n", ret);
1176         if (ret < 0) {
1177                 WRAP_RETURN(ret);
1178         }
1179         return (ssize_t)ret;
1180 }
1181
1182 static ssize_t cephwrap_fgetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, void *value, size_t size)
1183 {
1184         int ret;
1185         DBG_DEBUG("[CEPH] fgetxattr(%p, %p, %s, %p, %llu)\n", handle, fsp, name, value, llu(size));
1186         ret = ceph_fgetxattr(handle->data, fsp->fh->fd, name, value, size);
1187         DBG_DEBUG("[CEPH] fgetxattr(...) = %d\n", ret);
1188         if (ret < 0) {
1189                 WRAP_RETURN(ret);
1190         }
1191         return (ssize_t)ret;
1192 }
1193
1194 static ssize_t cephwrap_listxattr(struct vfs_handle_struct *handle,
1195                         const struct smb_filename *smb_fname,
1196                         char *list,
1197                         size_t size)
1198 {
1199         int ret;
1200         DBG_DEBUG("[CEPH] listxattr(%p, %s, %p, %llu)\n", handle,
1201                         smb_fname->base_name, list, llu(size));
1202         ret = ceph_listxattr(handle->data, smb_fname->base_name, list, size);
1203         DBG_DEBUG("[CEPH] listxattr(...) = %d\n", ret);
1204         if (ret < 0) {
1205                 WRAP_RETURN(ret);
1206         }
1207         return (ssize_t)ret;
1208 }
1209
1210 static ssize_t cephwrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
1211 {
1212         int ret;
1213         DBG_DEBUG("[CEPH] flistxattr(%p, %p, %p, %llu)\n",
1214                   handle, fsp, list, llu(size));
1215         ret = ceph_flistxattr(handle->data, fsp->fh->fd, list, size);
1216         DBG_DEBUG("[CEPH] flistxattr(...) = %d\n", ret);
1217         if (ret < 0) {
1218                 WRAP_RETURN(ret);
1219         }
1220         return (ssize_t)ret;
1221 }
1222
1223 static int cephwrap_removexattr(struct vfs_handle_struct *handle,
1224                                 const struct smb_filename *smb_fname,
1225                                 const char *name)
1226 {
1227         int ret;
1228         DBG_DEBUG("[CEPH] removexattr(%p, %s, %s)\n", handle,
1229                         smb_fname->base_name, name);
1230         ret = ceph_removexattr(handle->data, smb_fname->base_name, name);
1231         DBG_DEBUG("[CEPH] removexattr(...) = %d\n", ret);
1232         WRAP_RETURN(ret);
1233 }
1234
1235 static int cephwrap_fremovexattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name)
1236 {
1237         int ret;
1238         DBG_DEBUG("[CEPH] fremovexattr(%p, %p, %s)\n", handle, fsp, name);
1239         ret = ceph_fremovexattr(handle->data, fsp->fh->fd, name);
1240         DBG_DEBUG("[CEPH] fremovexattr(...) = %d\n", ret);
1241         WRAP_RETURN(ret);
1242 }
1243
1244 static int cephwrap_setxattr(struct vfs_handle_struct *handle,
1245                                 const struct smb_filename *smb_fname,
1246                                 const char *name,
1247                                 const void *value,
1248                                 size_t size,
1249                                 int flags)
1250 {
1251         int ret;
1252         DBG_DEBUG("[CEPH] setxattr(%p, %s, %s, %p, %llu, %d)\n", handle,
1253                         smb_fname->base_name, name, value, llu(size), flags);
1254         ret = ceph_setxattr(handle->data, smb_fname->base_name,
1255                         name, value, size, flags);
1256         DBG_DEBUG("[CEPH] setxattr(...) = %d\n", ret);
1257         WRAP_RETURN(ret);
1258 }
1259
1260 static int cephwrap_fsetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags)
1261 {
1262         int ret;
1263         DBG_DEBUG("[CEPH] fsetxattr(%p, %p, %s, %p, %llu, %d)\n", handle, fsp, name, value, llu(size), flags);
1264         ret = ceph_fsetxattr(handle->data, fsp->fh->fd,
1265                              name, value, size, flags);
1266         DBG_DEBUG("[CEPH] fsetxattr(...) = %d\n", ret);
1267         WRAP_RETURN(ret);
1268 }
1269
1270 static bool cephwrap_aio_force(struct vfs_handle_struct *handle, struct files_struct *fsp)
1271 {
1272
1273         /*
1274          * We do not support AIO yet.
1275          */
1276
1277         DBG_DEBUG("[CEPH] cephwrap_aio_force(%p, %p) = false (errno = ENOTSUP)\n", handle, fsp);
1278         errno = ENOTSUP;
1279         return false;
1280 }
1281
1282 static NTSTATUS cephwrap_create_dfs_pathat(struct vfs_handle_struct *handle,
1283                                 struct files_struct *dirfsp,
1284                                 const struct smb_filename *smb_fname,
1285                                 const struct referral *reflist,
1286                                 size_t referral_count)
1287 {
1288         TALLOC_CTX *frame = talloc_stackframe();
1289         NTSTATUS status = NT_STATUS_NO_MEMORY;
1290         int ret;
1291         char *msdfs_link = NULL;
1292
1293         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
1294
1295         /* Form the msdfs_link contents */
1296         msdfs_link = msdfs_link_string(frame,
1297                                         reflist,
1298                                         referral_count);
1299         if (msdfs_link == NULL) {
1300                 goto out;
1301         }
1302
1303         ret = ceph_symlink(handle->data,
1304                         msdfs_link,
1305                         smb_fname->base_name);
1306         if (ret == 0) {
1307                 status = NT_STATUS_OK;
1308         } else {
1309                 status = map_nt_error_from_unix(-ret);
1310         }
1311
1312   out:
1313
1314         DBG_DEBUG("[CEPH] create_dfs_pathat(%s) = %s\n",
1315                         smb_fname->base_name,
1316                         nt_errstr(status));
1317
1318         TALLOC_FREE(frame);
1319         return status;
1320 }
1321
1322 /*
1323  * Read and return the contents of a DFS redirect given a
1324  * pathname. A caller can pass in NULL for ppreflist and
1325  * preferral_count but still determine if this was a
1326  * DFS redirect point by getting NT_STATUS_OK back
1327  * without incurring the overhead of reading and parsing
1328  * the referral contents.
1329  */
1330
1331 static NTSTATUS cephwrap_read_dfs_pathat(struct vfs_handle_struct *handle,
1332                                 TALLOC_CTX *mem_ctx,
1333                                 struct files_struct *dirfsp,
1334                                 const struct smb_filename *smb_fname,
1335                                 struct referral **ppreflist,
1336                                 size_t *preferral_count)
1337 {
1338         NTSTATUS status = NT_STATUS_NO_MEMORY;
1339         size_t bufsize;
1340         char *link_target = NULL;
1341         int referral_len;
1342         bool ok;
1343 #if defined(HAVE_BROKEN_READLINK)
1344         char link_target_buf[PATH_MAX];
1345 #else
1346         char link_target_buf[7];
1347 #endif
1348
1349         SMB_ASSERT(dirfsp == dirfsp->conn->cwd_fsp);
1350
1351         if (ppreflist == NULL && preferral_count == NULL) {
1352                 /*
1353                  * We're only checking if this is a DFS
1354                  * redirect. We don't need to return data.
1355                  */
1356                 bufsize = sizeof(link_target_buf);
1357                 link_target = link_target_buf;
1358         } else {
1359                 bufsize = PATH_MAX;
1360                 link_target = talloc_array(mem_ctx, char, bufsize);
1361                 if (!link_target) {
1362                         goto err;
1363                 }
1364         }
1365
1366         referral_len = ceph_readlink(handle->data,
1367                                 smb_fname->base_name,
1368                                 link_target,
1369                                 bufsize - 1);
1370         if (referral_len < 0) {
1371                 /* ceph errors are -errno. */
1372                 if (-referral_len == EINVAL) {
1373                         DBG_INFO("%s is not a link.\n",
1374                                 smb_fname->base_name);
1375                         status = NT_STATUS_OBJECT_TYPE_MISMATCH;
1376                 } else {
1377                         status = map_nt_error_from_unix(-referral_len);
1378                         DBG_ERR("Error reading "
1379                                 "msdfs link %s: %s\n",
1380                                 smb_fname->base_name,
1381                         strerror(errno));
1382                 }
1383                 goto err;
1384         }
1385         link_target[referral_len] = '\0';
1386
1387         DBG_INFO("%s -> %s\n",
1388                         smb_fname->base_name,
1389                         link_target);
1390
1391         if (!strnequal(link_target, "msdfs:", 6)) {
1392                 status = NT_STATUS_OBJECT_TYPE_MISMATCH;
1393                 goto err;
1394         }
1395
1396         if (ppreflist == NULL && preferral_count == NULL) {
1397                 /* Early return for checking if this is a DFS link. */
1398                 return NT_STATUS_OK;
1399         }
1400
1401         ok = parse_msdfs_symlink(mem_ctx,
1402                         lp_msdfs_shuffle_referrals(SNUM(handle->conn)),
1403                         link_target,
1404                         ppreflist,
1405                         preferral_count);
1406
1407         if (ok) {
1408                 status = NT_STATUS_OK;
1409         } else {
1410                 status = NT_STATUS_NO_MEMORY;
1411         }
1412
1413   err:
1414
1415         if (link_target != link_target_buf) {
1416                 TALLOC_FREE(link_target);
1417         }
1418         return status;
1419 }
1420
1421 static struct vfs_fn_pointers ceph_fns = {
1422         /* Disk operations */
1423
1424         .connect_fn = cephwrap_connect,
1425         .disconnect_fn = cephwrap_disconnect,
1426         .disk_free_fn = cephwrap_disk_free,
1427         .get_quota_fn = cephwrap_get_quota,
1428         .set_quota_fn = cephwrap_set_quota,
1429         .statvfs_fn = cephwrap_statvfs,
1430         .fs_capabilities_fn = cephwrap_fs_capabilities,
1431
1432         /* Directory operations */
1433
1434         .fdopendir_fn = cephwrap_fdopendir,
1435         .readdir_fn = cephwrap_readdir,
1436         .seekdir_fn = cephwrap_seekdir,
1437         .telldir_fn = cephwrap_telldir,
1438         .rewind_dir_fn = cephwrap_rewinddir,
1439         .mkdirat_fn = cephwrap_mkdirat,
1440         .closedir_fn = cephwrap_closedir,
1441
1442         /* File operations */
1443
1444         .create_dfs_pathat_fn = cephwrap_create_dfs_pathat,
1445         .read_dfs_pathat_fn = cephwrap_read_dfs_pathat,
1446         .open_fn = cephwrap_open,
1447         .close_fn = cephwrap_close,
1448         .pread_fn = cephwrap_pread,
1449         .pread_send_fn = cephwrap_pread_send,
1450         .pread_recv_fn = cephwrap_pread_recv,
1451         .pwrite_fn = cephwrap_pwrite,
1452         .pwrite_send_fn = cephwrap_pwrite_send,
1453         .pwrite_recv_fn = cephwrap_pwrite_recv,
1454         .lseek_fn = cephwrap_lseek,
1455         .sendfile_fn = cephwrap_sendfile,
1456         .recvfile_fn = cephwrap_recvfile,
1457         .renameat_fn = cephwrap_renameat,
1458         .fsync_send_fn = cephwrap_fsync_send,
1459         .fsync_recv_fn = cephwrap_fsync_recv,
1460         .stat_fn = cephwrap_stat,
1461         .fstat_fn = cephwrap_fstat,
1462         .lstat_fn = cephwrap_lstat,
1463         .unlinkat_fn = cephwrap_unlinkat,
1464         .chmod_fn = cephwrap_chmod,
1465         .fchmod_fn = cephwrap_fchmod,
1466         .fchown_fn = cephwrap_fchown,
1467         .lchown_fn = cephwrap_lchown,
1468         .chdir_fn = cephwrap_chdir,
1469         .getwd_fn = cephwrap_getwd,
1470         .ntimes_fn = cephwrap_ntimes,
1471         .ftruncate_fn = cephwrap_ftruncate,
1472         .fallocate_fn = cephwrap_fallocate,
1473         .lock_fn = cephwrap_lock,
1474         .kernel_flock_fn = cephwrap_kernel_flock,
1475         .fcntl_fn = cephwrap_fcntl,
1476         .linux_setlease_fn = cephwrap_linux_setlease,
1477         .getlock_fn = cephwrap_getlock,
1478         .symlinkat_fn = cephwrap_symlinkat,
1479         .readlinkat_fn = cephwrap_readlinkat,
1480         .linkat_fn = cephwrap_linkat,
1481         .mknodat_fn = cephwrap_mknodat,
1482         .realpath_fn = cephwrap_realpath,
1483         .chflags_fn = cephwrap_chflags,
1484         .get_real_filename_fn = cephwrap_get_real_filename,
1485         .connectpath_fn = cephwrap_connectpath,
1486
1487         /* EA operations. */
1488         .getxattr_fn = cephwrap_getxattr,
1489         .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
1490         .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
1491         .fgetxattr_fn = cephwrap_fgetxattr,
1492         .listxattr_fn = cephwrap_listxattr,
1493         .flistxattr_fn = cephwrap_flistxattr,
1494         .removexattr_fn = cephwrap_removexattr,
1495         .fremovexattr_fn = cephwrap_fremovexattr,
1496         .setxattr_fn = cephwrap_setxattr,
1497         .fsetxattr_fn = cephwrap_fsetxattr,
1498
1499         /* Posix ACL Operations */
1500         .sys_acl_get_file_fn = posixacl_xattr_acl_get_file,
1501         .sys_acl_get_fd_fn = posixacl_xattr_acl_get_fd,
1502         .sys_acl_blob_get_file_fn = posix_sys_acl_blob_get_file,
1503         .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,
1504         .sys_acl_set_file_fn = posixacl_xattr_acl_set_file,
1505         .sys_acl_set_fd_fn = posixacl_xattr_acl_set_fd,
1506         .sys_acl_delete_def_file_fn = posixacl_xattr_acl_delete_def_file,
1507
1508         /* aio operations */
1509         .aio_force_fn = cephwrap_aio_force,
1510 };
1511
1512 static_decl_vfs;
1513 NTSTATUS vfs_ceph_init(TALLOC_CTX *ctx)
1514 {
1515         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
1516                                 "ceph", &ceph_fns);
1517 }