d7772c62119b00b4ad770b8c667cbf1496904008
[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  * Track unique connections, as virtual mounts, to cephfs file systems.
70  * Individual mounts will be set on the handle->data attribute, but
71  * the mounts themselves will be shared so as not to spawn extra mounts
72  * to the same cephfs.
73  *
74  * Individual mounts are IDed by a 'cookie' value that is a string built
75  * from identifying parameters found in smb.conf.
76  */
77
78 static struct cephmount_cached {
79         char *cookie;
80         uint32_t count;
81         struct ceph_mount_info *mount;
82         struct cephmount_cached *next, *prev;
83 } *cephmount_cached;
84
85 static int cephmount_cache_add(const char *cookie,
86                                struct ceph_mount_info *mount)
87 {
88         struct cephmount_cached *entry = NULL;
89
90         entry = talloc_zero(NULL, struct cephmount_cached);
91         if (entry == NULL) {
92                 errno = ENOMEM;
93                 return -1;
94         }
95
96         entry->cookie = talloc_strdup(entry, cookie);
97         if (entry->cookie == NULL) {
98                 talloc_free(entry);
99                 errno = ENOMEM;
100                 return -1;
101         }
102
103         entry->mount = mount;
104         entry->count = 1;
105
106         DBG_DEBUG("adding mount cache entry for %s\n", entry->cookie);
107         DLIST_ADD(cephmount_cached, entry);
108         return 0;
109 }
110
111 static struct ceph_mount_info *cephmount_cache_update(const char *cookie)
112 {
113         struct cephmount_cached *entry = NULL;
114
115         for (entry = cephmount_cached; entry; entry = entry->next) {
116                 if (strcmp(entry->cookie, cookie) == 0) {
117                         entry->count++;
118                         DBG_DEBUG("updated mount cache: count is [%"
119                                   PRIu32 "]\n", entry->count);
120                         return entry->mount;
121                 }
122         }
123
124         errno = ENOENT;
125         return NULL;
126 }
127
128 static int cephmount_cache_remove(struct ceph_mount_info *mount)
129 {
130         struct cephmount_cached *entry = NULL;
131
132         for (entry = cephmount_cached; entry; entry = entry->next) {
133                 if (entry->mount == mount) {
134                         if (--entry->count) {
135                                 DBG_DEBUG("updated mount cache: count is [%"
136                                           PRIu32 "]\n", entry->count);
137                                 return entry->count;
138                         }
139
140                         DBG_DEBUG("removing mount cache entry for %s\n",
141                                   entry->cookie);
142                         DLIST_REMOVE(cephmount_cached, entry);
143                         talloc_free(entry);
144                         return 0;
145                 }
146         }
147         errno = ENOENT;
148         return -1;
149 }
150
151 static char *cephmount_get_cookie(TALLOC_CTX * mem_ctx, const int snum)
152 {
153         const char *conf_file =
154             lp_parm_const_string(snum, "ceph", "config_file", ".");
155         const char *user_id = lp_parm_const_string(snum, "ceph", "user_id", "");
156         const char *fsname =
157             lp_parm_const_string(snum, "ceph", "filesystem", "");
158         return talloc_asprintf(mem_ctx, "(%s/%s/%s)", conf_file, user_id,
159                                fsname);
160 }
161
162 static int cephmount_select_fs(struct ceph_mount_info *mnt, const char *fsname)
163 {
164         /*
165          * ceph_select_filesystem was added in ceph 'nautilus' (v14).
166          * Earlier versions of libcephfs will lack that API function.
167          * At the time of this writing (Feb 2023) all versions of ceph
168          * supported by ceph upstream have this function.
169          */
170 #if defined(HAVE_CEPH_SELECT_FILESYSTEM)
171         DBG_DEBUG("[CEPH] calling: ceph_select_filesystem with %s\n", fsname);
172         return ceph_select_filesystem(mnt, fsname);
173 #else
174         DBG_ERR("[CEPH] ceph_select_filesystem not available\n");
175         return -ENOTSUP;
176 #endif
177 }
178
179 static struct ceph_mount_info *cephmount_mount_fs(const int snum)
180 {
181         int ret;
182         char buf[256];
183         struct ceph_mount_info *mnt = NULL;
184         /* if config_file and/or user_id are NULL, ceph will use defaults */
185         const char *conf_file =
186             lp_parm_const_string(snum, "ceph", "config_file", NULL);
187         const char *user_id =
188             lp_parm_const_string(snum, "ceph", "user_id", NULL);
189         const char *fsname =
190             lp_parm_const_string(snum, "ceph", "filesystem", NULL);
191
192         DBG_DEBUG("[CEPH] calling: ceph_create\n");
193         ret = ceph_create(&mnt, user_id);
194         if (ret) {
195                 errno = -ret;
196                 return NULL;
197         }
198
199         DBG_DEBUG("[CEPH] calling: ceph_conf_read_file with %s\n",
200                   (conf_file == NULL ? "default path" : conf_file));
201         ret = ceph_conf_read_file(mnt, conf_file);
202         if (ret) {
203                 goto err_cm_release;
204         }
205
206         DBG_DEBUG("[CEPH] calling: ceph_conf_get\n");
207         ret = ceph_conf_get(mnt, "log file", buf, sizeof(buf));
208         if (ret < 0) {
209                 goto err_cm_release;
210         }
211
212         /* libcephfs disables POSIX ACL support by default, enable it... */
213         ret = ceph_conf_set(mnt, "client_acl_type", "posix_acl");
214         if (ret < 0) {
215                 goto err_cm_release;
216         }
217         /* tell libcephfs to perform local permission checks */
218         ret = ceph_conf_set(mnt, "fuse_default_permissions", "false");
219         if (ret < 0) {
220                 goto err_cm_release;
221         }
222         /*
223          * select a cephfs file system to use:
224          * In ceph, multiple file system support has been stable since 'pacific'.
225          * Permit different shares to access different file systems.
226          */
227         if (fsname != NULL) {
228                 ret = cephmount_select_fs(mnt, fsname);
229                 if (ret < 0) {
230                         goto err_cm_release;
231                 }
232         }
233
234         DBG_DEBUG("[CEPH] calling: ceph_mount\n");
235         ret = ceph_mount(mnt, NULL);
236         if (ret >= 0) {
237                 goto cm_done;
238         }
239
240       err_cm_release:
241         ceph_release(mnt);
242         mnt = NULL;
243         DBG_DEBUG("[CEPH] Error mounting fs: %s\n", strerror(-ret));
244       cm_done:
245         /*
246          * Handle the error correctly. Ceph returns -errno.
247          */
248         if (ret) {
249                 errno = -ret;
250         }
251         return mnt;
252 }
253
254 /* Check for NULL pointer parameters in cephwrap_* functions */
255
256 /* We don't want to have NULL function pointers lying around.  Someone
257    is sure to try and execute them.  These stubs are used to prevent
258    this possibility. */
259
260 static int cephwrap_connect(struct vfs_handle_struct *handle,
261                             const char *service, const char *user)
262 {
263         int ret = 0;
264         struct ceph_mount_info *cmount = NULL;
265         int snum = SNUM(handle->conn);
266         char *cookie = cephmount_get_cookie(handle, snum);
267         if (cookie == NULL) {
268                 return -1;
269         }
270
271         cmount = cephmount_cache_update(cookie);
272         if (cmount != NULL) {
273                 goto connect_ok;
274         }
275
276         cmount = cephmount_mount_fs(snum);
277         if (cmount == NULL) {
278                 ret = -1;
279                 goto connect_fail;
280         }
281         ret = cephmount_cache_add(cookie, cmount);
282         if (ret) {
283                 goto connect_fail;
284         }
285
286       connect_ok:
287         handle->data = cmount;
288         /*
289          * Unless we have an async implementation of getxattrat turn this off.
290          */
291         lp_do_parameter(SNUM(handle->conn), "smbd async dosmode", "false");
292       connect_fail:
293         talloc_free(cookie);
294         return ret;
295 }
296
297 static void cephwrap_disconnect(struct vfs_handle_struct *handle)
298 {
299         int ret = cephmount_cache_remove(handle->data);
300         if (ret < 0) {
301                 DBG_ERR("failed to remove ceph mount from cache: %s\n",
302                         strerror(errno));
303                 return;
304         }
305         if (ret > 0) {
306                 DBG_DEBUG("mount cache entry still in use\n");
307                 return;
308         }
309
310         ret = ceph_unmount(handle->data);
311         if (ret < 0) {
312                 DBG_ERR("[CEPH] failed to unmount: %s\n", strerror(-ret));
313         }
314
315         ret = ceph_release(handle->data);
316         if (ret < 0) {
317                 DBG_ERR("[CEPH] failed to release: %s\n", strerror(-ret));
318         }
319         handle->data = NULL;
320 }
321
322 /* Disk operations */
323
324 static uint64_t cephwrap_disk_free(struct vfs_handle_struct *handle,
325                                 const struct smb_filename *smb_fname,
326                                 uint64_t *bsize,
327                                 uint64_t *dfree,
328                                 uint64_t *dsize)
329 {
330         struct statvfs statvfs_buf;
331         int ret;
332
333         if (!(ret = ceph_statfs(handle->data, smb_fname->base_name,
334                         &statvfs_buf))) {
335                 /*
336                  * Provide all the correct values.
337                  */
338                 *bsize = statvfs_buf.f_bsize;
339                 *dfree = statvfs_buf.f_bavail;
340                 *dsize = statvfs_buf.f_blocks;
341                 DBG_DEBUG("[CEPH] bsize: %llu, dfree: %llu, dsize: %llu\n",
342                         llu(*bsize), llu(*dfree), llu(*dsize));
343                 return *dfree;
344         } else {
345                 DBG_DEBUG("[CEPH] ceph_statfs returned %d\n", ret);
346                 WRAP_RETURN(ret);
347         }
348 }
349
350 static int cephwrap_get_quota(struct vfs_handle_struct *handle,
351                                 const struct smb_filename *smb_fname,
352                                 enum SMB_QUOTA_TYPE qtype,
353                                 unid_t id,
354                                 SMB_DISK_QUOTA *qt)
355 {
356         /* libceph: Ceph does not implement this */
357 #if 0
358 /* was ifdef HAVE_SYS_QUOTAS */
359         int ret;
360
361         ret = ceph_get_quota(handle->conn->connectpath, qtype, id, qt);
362
363         if (ret) {
364                 errno = -ret;
365                 ret = -1;
366         }
367
368         return ret;
369 #else
370         errno = ENOSYS;
371         return -1;
372 #endif
373 }
374
375 static int cephwrap_set_quota(struct vfs_handle_struct *handle,  enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *qt)
376 {
377         /* libceph: Ceph does not implement this */
378 #if 0
379 /* was ifdef HAVE_SYS_QUOTAS */
380         int ret;
381
382         ret = ceph_set_quota(handle->conn->connectpath, qtype, id, qt);
383         if (ret) {
384                 errno = -ret;
385                 ret = -1;
386         }
387
388         return ret;
389 #else
390         WRAP_RETURN(-ENOSYS);
391 #endif
392 }
393
394 static int cephwrap_statvfs(struct vfs_handle_struct *handle,
395                             const struct smb_filename *smb_fname,
396                             struct vfs_statvfs_struct *statbuf)
397 {
398         struct statvfs statvfs_buf;
399         int ret;
400
401         ret = ceph_statfs(handle->data, smb_fname->base_name, &statvfs_buf);
402         if (ret < 0) {
403                 WRAP_RETURN(ret);
404         }
405
406         statbuf->OptimalTransferSize = statvfs_buf.f_frsize;
407         statbuf->BlockSize = statvfs_buf.f_bsize;
408         statbuf->TotalBlocks = statvfs_buf.f_blocks;
409         statbuf->BlocksAvail = statvfs_buf.f_bfree;
410         statbuf->UserBlocksAvail = statvfs_buf.f_bavail;
411         statbuf->TotalFileNodes = statvfs_buf.f_files;
412         statbuf->FreeFileNodes = statvfs_buf.f_ffree;
413         statbuf->FsIdentifier = statvfs_buf.f_fsid;
414         DBG_DEBUG("[CEPH] f_bsize: %ld, f_blocks: %ld, f_bfree: %ld, f_bavail: %ld\n",
415                 (long int)statvfs_buf.f_bsize, (long int)statvfs_buf.f_blocks,
416                 (long int)statvfs_buf.f_bfree, (long int)statvfs_buf.f_bavail);
417
418         return ret;
419 }
420
421 static uint32_t cephwrap_fs_capabilities(struct vfs_handle_struct *handle,
422                                          enum timestamp_set_resolution *p_ts_res)
423 {
424         uint32_t caps = FILE_CASE_SENSITIVE_SEARCH | FILE_CASE_PRESERVED_NAMES;
425
426         *p_ts_res = TIMESTAMP_SET_NT_OR_BETTER;
427
428         return caps;
429 }
430
431 /* Directory operations */
432
433 static DIR *cephwrap_fdopendir(struct vfs_handle_struct *handle,
434                                struct files_struct *fsp,
435                                const char *mask,
436                                uint32_t attributes)
437 {
438         int ret = 0;
439         struct ceph_dir_result *result;
440         DBG_DEBUG("[CEPH] fdopendir(%p, %p)\n", handle, fsp);
441
442         ret = ceph_opendir(handle->data, fsp->fsp_name->base_name, &result);
443         if (ret < 0) {
444                 result = NULL;
445                 errno = -ret; /* We return result which is NULL in this case */
446         }
447
448         DBG_DEBUG("[CEPH] fdopendir(...) = %d\n", ret);
449         return (DIR *) result;
450 }
451
452 static struct dirent *cephwrap_readdir(struct vfs_handle_struct *handle,
453                                        struct files_struct *dirfsp,
454                                        DIR *dirp)
455 {
456         struct dirent *result;
457
458         DBG_DEBUG("[CEPH] readdir(%p, %p)\n", handle, dirp);
459         result = ceph_readdir(handle->data, (struct ceph_dir_result *) dirp);
460         DBG_DEBUG("[CEPH] readdir(...) = %p\n", result);
461
462         return result;
463 }
464
465 static void cephwrap_rewinddir(struct vfs_handle_struct *handle, DIR *dirp)
466 {
467         DBG_DEBUG("[CEPH] rewinddir(%p, %p)\n", handle, dirp);
468         ceph_rewinddir(handle->data, (struct ceph_dir_result *) dirp);
469 }
470
471 static int cephwrap_mkdirat(struct vfs_handle_struct *handle,
472                         files_struct *dirfsp,
473                         const struct smb_filename *smb_fname,
474                         mode_t mode)
475 {
476         struct smb_filename *full_fname = NULL;
477         int result;
478
479         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
480                                                 dirfsp,
481                                                 smb_fname);
482         if (full_fname == NULL) {
483                 return -1;
484         }
485
486         DBG_DEBUG("[CEPH] mkdir(%p, %s)\n",
487                   handle, smb_fname_str_dbg(full_fname));
488
489         result = ceph_mkdir(handle->data, full_fname->base_name, mode);
490
491         TALLOC_FREE(full_fname);
492
493         return WRAP_RETURN(result);
494 }
495
496 static int cephwrap_closedir(struct vfs_handle_struct *handle, DIR *dirp)
497 {
498         int result;
499
500         DBG_DEBUG("[CEPH] closedir(%p, %p)\n", handle, dirp);
501         result = ceph_closedir(handle->data, (struct ceph_dir_result *) dirp);
502         DBG_DEBUG("[CEPH] closedir(...) = %d\n", result);
503         WRAP_RETURN(result);
504 }
505
506 /* File operations */
507
508 static int cephwrap_openat(struct vfs_handle_struct *handle,
509                            const struct files_struct *dirfsp,
510                            const struct smb_filename *smb_fname,
511                            files_struct *fsp,
512                            const struct vfs_open_how *how)
513 {
514         int flags = how->flags;
515         mode_t mode = how->mode;
516         struct smb_filename *name = NULL;
517         bool have_opath = false;
518         bool became_root = false;
519         int result = -ENOENT;
520
521         if (how->resolve != 0) {
522                 errno = ENOSYS;
523                 return -1;
524         }
525
526         /*
527          * ceph doesn't have openat().
528          */
529         if (fsp_get_pathref_fd(dirfsp) != AT_FDCWD) {
530                 name = full_path_from_dirfsp_atname(talloc_tos(),
531                                                     dirfsp,
532                                                     smb_fname);
533                 if (name == NULL) {
534                         return -1;
535                 }
536                 smb_fname = name;
537         }
538
539         DBG_DEBUG("[CEPH] openat(%p, %s, %p, %d, %d)\n", handle,
540                   smb_fname_str_dbg(smb_fname), fsp, flags, mode);
541
542         if (smb_fname->stream_name) {
543                 goto out;
544         }
545
546 #ifdef O_PATH
547         have_opath = true;
548         if (fsp->fsp_flags.is_pathref) {
549                 flags |= O_PATH;
550         }
551 #endif
552
553         if (fsp->fsp_flags.is_pathref && !have_opath) {
554                 become_root();
555                 became_root = true;
556         }
557
558         result = ceph_open(handle->data, smb_fname->base_name, flags, mode);
559
560         if (became_root) {
561                 unbecome_root();
562         }
563
564 out:
565         TALLOC_FREE(name);
566         fsp->fsp_flags.have_proc_fds = false;
567         DBG_DEBUG("[CEPH] open(...) = %d\n", result);
568         WRAP_RETURN(result);
569 }
570
571 static int cephwrap_close(struct vfs_handle_struct *handle, files_struct *fsp)
572 {
573         int result;
574
575         DBG_DEBUG("[CEPH] close(%p, %p)\n", handle, fsp);
576         result = ceph_close(handle->data, fsp_get_pathref_fd(fsp));
577         DBG_DEBUG("[CEPH] close(...) = %d\n", result);
578
579         WRAP_RETURN(result);
580 }
581
582 static ssize_t cephwrap_pread(struct vfs_handle_struct *handle, files_struct *fsp, void *data,
583                         size_t n, off_t offset)
584 {
585         ssize_t result;
586
587         DBG_DEBUG("[CEPH] pread(%p, %p, %p, %llu, %llu)\n", handle, fsp, data, llu(n), llu(offset));
588
589         result = ceph_read(handle->data, fsp_get_io_fd(fsp), data, n, offset);
590         DBG_DEBUG("[CEPH] pread(...) = %llu\n", llu(result));
591         WRAP_RETURN(result);
592 }
593
594 struct cephwrap_pread_state {
595         ssize_t bytes_read;
596         struct vfs_aio_state vfs_aio_state;
597 };
598
599 /*
600  * Fake up an async ceph read by calling the synchronous API.
601  */
602 static struct tevent_req *cephwrap_pread_send(struct vfs_handle_struct *handle,
603                                               TALLOC_CTX *mem_ctx,
604                                               struct tevent_context *ev,
605                                               struct files_struct *fsp,
606                                               void *data,
607                                               size_t n, off_t offset)
608 {
609         struct tevent_req *req = NULL;
610         struct cephwrap_pread_state *state = NULL;
611         int ret = -1;
612
613         DBG_DEBUG("[CEPH] %s\n", __func__);
614         req = tevent_req_create(mem_ctx, &state, struct cephwrap_pread_state);
615         if (req == NULL) {
616                 return NULL;
617         }
618
619         ret = ceph_read(handle->data, fsp_get_io_fd(fsp), data, n, offset);
620         if (ret < 0) {
621                 /* ceph returns -errno on error. */
622                 tevent_req_error(req, -ret);
623                 return tevent_req_post(req, ev);
624         }
625
626         state->bytes_read = ret;
627         tevent_req_done(req);
628         /* Return and schedule the completion of the call. */
629         return tevent_req_post(req, ev);
630 }
631
632 static ssize_t cephwrap_pread_recv(struct tevent_req *req,
633                                    struct vfs_aio_state *vfs_aio_state)
634 {
635         struct cephwrap_pread_state *state =
636                 tevent_req_data(req, struct cephwrap_pread_state);
637
638         DBG_DEBUG("[CEPH] %s\n", __func__);
639         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
640                 return -1;
641         }
642         *vfs_aio_state = state->vfs_aio_state;
643         return state->bytes_read;
644 }
645
646 static ssize_t cephwrap_pwrite(struct vfs_handle_struct *handle, files_struct *fsp, const void *data,
647                         size_t n, off_t offset)
648 {
649         ssize_t result;
650
651         DBG_DEBUG("[CEPH] pwrite(%p, %p, %p, %llu, %llu)\n", handle, fsp, data, llu(n), llu(offset));
652         result = ceph_write(handle->data, fsp_get_io_fd(fsp), data, n, offset);
653         DBG_DEBUG("[CEPH] pwrite(...) = %llu\n", llu(result));
654         WRAP_RETURN(result);
655 }
656
657 struct cephwrap_pwrite_state {
658         ssize_t bytes_written;
659         struct vfs_aio_state vfs_aio_state;
660 };
661
662 /*
663  * Fake up an async ceph write by calling the synchronous API.
664  */
665 static struct tevent_req *cephwrap_pwrite_send(struct vfs_handle_struct *handle,
666                                                TALLOC_CTX *mem_ctx,
667                                                struct tevent_context *ev,
668                                                struct files_struct *fsp,
669                                                const void *data,
670                                                size_t n, off_t offset)
671 {
672         struct tevent_req *req = NULL;
673         struct cephwrap_pwrite_state *state = NULL;
674         int ret = -1;
675
676         DBG_DEBUG("[CEPH] %s\n", __func__);
677         req = tevent_req_create(mem_ctx, &state, struct cephwrap_pwrite_state);
678         if (req == NULL) {
679                 return NULL;
680         }
681
682         ret = ceph_write(handle->data, fsp_get_io_fd(fsp), data, n, offset);
683         if (ret < 0) {
684                 /* ceph returns -errno on error. */
685                 tevent_req_error(req, -ret);
686                 return tevent_req_post(req, ev);
687         }
688
689         state->bytes_written = ret;
690         tevent_req_done(req);
691         /* Return and schedule the completion of the call. */
692         return tevent_req_post(req, ev);
693 }
694
695 static ssize_t cephwrap_pwrite_recv(struct tevent_req *req,
696                                     struct vfs_aio_state *vfs_aio_state)
697 {
698         struct cephwrap_pwrite_state *state =
699                 tevent_req_data(req, struct cephwrap_pwrite_state);
700
701         DBG_DEBUG("[CEPH] %s\n", __func__);
702         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
703                 return -1;
704         }
705         *vfs_aio_state = state->vfs_aio_state;
706         return state->bytes_written;
707 }
708
709 static off_t cephwrap_lseek(struct vfs_handle_struct *handle, files_struct *fsp, off_t offset, int whence)
710 {
711         off_t result = 0;
712
713         DBG_DEBUG("[CEPH] cephwrap_lseek\n");
714         result = ceph_lseek(handle->data, fsp_get_io_fd(fsp), offset, whence);
715         WRAP_RETURN(result);
716 }
717
718 static ssize_t cephwrap_sendfile(struct vfs_handle_struct *handle, int tofd, files_struct *fromfsp, const DATA_BLOB *hdr,
719                         off_t offset, size_t n)
720 {
721         /*
722          * We cannot support sendfile because libceph is in user space.
723          */
724         DBG_DEBUG("[CEPH] cephwrap_sendfile\n");
725         errno = ENOTSUP;
726         return -1;
727 }
728
729 static ssize_t cephwrap_recvfile(struct vfs_handle_struct *handle,
730                         int fromfd,
731                         files_struct *tofsp,
732                         off_t offset,
733                         size_t n)
734 {
735         /*
736          * We cannot support recvfile because libceph is in user space.
737          */
738         DBG_DEBUG("[CEPH] cephwrap_recvfile\n");
739         errno=ENOTSUP;
740         return -1;
741 }
742
743 static int cephwrap_renameat(struct vfs_handle_struct *handle,
744                         files_struct *srcfsp,
745                         const struct smb_filename *smb_fname_src,
746                         files_struct *dstfsp,
747                         const struct smb_filename *smb_fname_dst)
748 {
749         struct smb_filename *full_fname_src = NULL;
750         struct smb_filename *full_fname_dst = NULL;
751         int result = -1;
752
753         DBG_DEBUG("[CEPH] cephwrap_renameat\n");
754         if (smb_fname_src->stream_name || smb_fname_dst->stream_name) {
755                 errno = ENOENT;
756                 return result;
757         }
758
759         full_fname_src = full_path_from_dirfsp_atname(talloc_tos(),
760                                                   srcfsp,
761                                                   smb_fname_src);
762         if (full_fname_src == NULL) {
763                 errno = ENOMEM;
764                 return -1;
765         }
766         full_fname_dst = full_path_from_dirfsp_atname(talloc_tos(),
767                                                   dstfsp,
768                                                   smb_fname_dst);
769         if (full_fname_dst == NULL) {
770                 TALLOC_FREE(full_fname_src);
771                 errno = ENOMEM;
772                 return -1;
773         }
774
775         result = ceph_rename(handle->data,
776                              full_fname_src->base_name,
777                              full_fname_dst->base_name);
778
779         TALLOC_FREE(full_fname_src);
780         TALLOC_FREE(full_fname_dst);
781
782         WRAP_RETURN(result);
783 }
784
785 /*
786  * Fake up an async ceph fsync by calling the synchronous API.
787  */
788
789 static struct tevent_req *cephwrap_fsync_send(struct vfs_handle_struct *handle,
790                                         TALLOC_CTX *mem_ctx,
791                                         struct tevent_context *ev,
792                                         files_struct *fsp)
793 {
794         struct tevent_req *req = NULL;
795         struct vfs_aio_state *state = NULL;
796         int ret = -1;
797
798         DBG_DEBUG("[CEPH] cephwrap_fsync_send\n");
799
800         req = tevent_req_create(mem_ctx, &state, struct vfs_aio_state);
801         if (req == NULL) {
802                 return NULL;
803         }
804
805         /* Make sync call. */
806         ret = ceph_fsync(handle->data, fsp_get_io_fd(fsp), false);
807
808         if (ret != 0) {
809                 /* ceph_fsync returns -errno on error. */
810                 tevent_req_error(req, -ret);
811                 return tevent_req_post(req, ev);
812         }
813
814         /* Mark it as done. */
815         tevent_req_done(req);
816         /* Return and schedule the completion of the call. */
817         return tevent_req_post(req, ev);
818 }
819
820 static int cephwrap_fsync_recv(struct tevent_req *req,
821                                 struct vfs_aio_state *vfs_aio_state)
822 {
823         struct vfs_aio_state *state =
824                 tevent_req_data(req, struct vfs_aio_state);
825
826         DBG_DEBUG("[CEPH] cephwrap_fsync_recv\n");
827
828         if (tevent_req_is_unix_error(req, &vfs_aio_state->error)) {
829                 return -1;
830         }
831         *vfs_aio_state = *state;
832         return 0;
833 }
834
835 #define SAMBA_STATX_ATTR_MASK   (CEPH_STATX_BASIC_STATS|CEPH_STATX_BTIME)
836
837 static void init_stat_ex_from_ceph_statx(struct stat_ex *dst, const struct ceph_statx *stx)
838 {
839         DBG_DEBUG("[CEPH]\tstx = {dev = %llx, ino = %llu, mode = 0x%x, "
840                   "nlink = %llu, uid = %d, gid = %d, rdev = %llx, size = %llu, "
841                   "blksize = %llu, blocks = %llu, atime = %llu, mtime = %llu, "
842                   "ctime = %llu, btime = %llu}\n",
843                   llu(stx->stx_dev), llu(stx->stx_ino), stx->stx_mode,
844                   llu(stx->stx_nlink), stx->stx_uid, stx->stx_gid,
845                   llu(stx->stx_rdev), llu(stx->stx_size), llu(stx->stx_blksize),
846                   llu(stx->stx_blocks), llu(stx->stx_atime.tv_sec),
847                   llu(stx->stx_mtime.tv_sec), llu(stx->stx_ctime.tv_sec),
848                   llu(stx->stx_btime.tv_sec));
849
850         if ((stx->stx_mask & SAMBA_STATX_ATTR_MASK) != SAMBA_STATX_ATTR_MASK) {
851                 DBG_WARNING("%s: stx->stx_mask is incorrect (wanted %x, got %x)",
852                                 __func__, SAMBA_STATX_ATTR_MASK, stx->stx_mask);
853         }
854
855         dst->st_ex_dev = stx->stx_dev;
856         dst->st_ex_rdev = stx->stx_rdev;
857         dst->st_ex_ino = stx->stx_ino;
858         dst->st_ex_mode = stx->stx_mode;
859         dst->st_ex_uid = stx->stx_uid;
860         dst->st_ex_gid = stx->stx_gid;
861         dst->st_ex_size = stx->stx_size;
862         dst->st_ex_nlink = stx->stx_nlink;
863         dst->st_ex_atime = stx->stx_atime;
864         dst->st_ex_btime = stx->stx_btime;
865         dst->st_ex_ctime = stx->stx_ctime;
866         dst->st_ex_mtime = stx->stx_mtime;
867         dst->st_ex_blksize = stx->stx_blksize;
868         dst->st_ex_blocks = stx->stx_blocks;
869 }
870
871 static int cephwrap_stat(struct vfs_handle_struct *handle,
872                         struct smb_filename *smb_fname)
873 {
874         int result = -1;
875         struct ceph_statx stx;
876
877         DBG_DEBUG("[CEPH] stat(%p, %s)\n", handle, smb_fname_str_dbg(smb_fname));
878
879         if (smb_fname->stream_name) {
880                 errno = ENOENT;
881                 return result;
882         }
883
884         result = ceph_statx(handle->data, smb_fname->base_name, &stx,
885                                 SAMBA_STATX_ATTR_MASK, 0);
886         DBG_DEBUG("[CEPH] statx(...) = %d\n", result);
887         if (result < 0) {
888                 WRAP_RETURN(result);
889         }
890
891         init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
892         DBG_DEBUG("[CEPH] mode = 0x%x\n", smb_fname->st.st_ex_mode);
893         return result;
894 }
895
896 static int cephwrap_fstat(struct vfs_handle_struct *handle, files_struct *fsp, SMB_STRUCT_STAT *sbuf)
897 {
898         int result = -1;
899         struct ceph_statx stx;
900         int fd = fsp_get_pathref_fd(fsp);
901
902         DBG_DEBUG("[CEPH] fstat(%p, %d)\n", handle, fd);
903         result = ceph_fstatx(handle->data, fd, &stx,
904                                 SAMBA_STATX_ATTR_MASK, 0);
905         DBG_DEBUG("[CEPH] fstat(...) = %d\n", result);
906         if (result < 0) {
907                 WRAP_RETURN(result);
908         }
909
910         init_stat_ex_from_ceph_statx(sbuf, &stx);
911         DBG_DEBUG("[CEPH] mode = 0x%x\n", sbuf->st_ex_mode);
912         return result;
913 }
914
915 static int cephwrap_lstat(struct vfs_handle_struct *handle,
916                          struct smb_filename *smb_fname)
917 {
918         int result = -1;
919         struct ceph_statx stx;
920
921         DBG_DEBUG("[CEPH] lstat(%p, %s)\n", handle, smb_fname_str_dbg(smb_fname));
922
923         if (smb_fname->stream_name) {
924                 errno = ENOENT;
925                 return result;
926         }
927
928         result = ceph_statx(handle->data, smb_fname->base_name, &stx,
929                                 SAMBA_STATX_ATTR_MASK, AT_SYMLINK_NOFOLLOW);
930         DBG_DEBUG("[CEPH] lstat(...) = %d\n", result);
931         if (result < 0) {
932                 WRAP_RETURN(result);
933         }
934
935         init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
936         return result;
937 }
938
939 static int cephwrap_fntimes(struct vfs_handle_struct *handle,
940                             files_struct *fsp,
941                             struct smb_file_time *ft)
942 {
943         struct ceph_statx stx = { 0 };
944         int result;
945         int mask = 0;
946
947         if (!is_omit_timespec(&ft->atime)) {
948                 stx.stx_atime = ft->atime;
949                 mask |= CEPH_SETATTR_ATIME;
950         }
951         if (!is_omit_timespec(&ft->mtime)) {
952                 stx.stx_mtime = ft->mtime;
953                 mask |= CEPH_SETATTR_MTIME;
954         }
955         if (!is_omit_timespec(&ft->create_time)) {
956                 stx.stx_btime = ft->create_time;
957                 mask |= CEPH_SETATTR_BTIME;
958         }
959
960         if (!mask) {
961                 return 0;
962         }
963
964         if (!fsp->fsp_flags.is_pathref) {
965                 /*
966                  * We can use an io_fd to set xattrs.
967                  */
968                 result = ceph_fsetattrx(handle->data,
969                                         fsp_get_io_fd(fsp),
970                                         &stx,
971                                         mask);
972         } else {
973                 /*
974                  * This is no longer a handle based call.
975                  */
976                 result = ceph_setattrx(handle->data,
977                                        fsp->fsp_name->base_name,
978                                        &stx,
979                                        mask,
980                                        0);
981         }
982
983         DBG_DEBUG("[CEPH] ntimes(%p, %s, {%ld, %ld, %ld, %ld}) = %d\n",
984                   handle, fsp_str_dbg(fsp), ft->mtime.tv_sec, ft->atime.tv_sec,
985                   ft->ctime.tv_sec, ft->create_time.tv_sec, result);
986
987         return result;
988 }
989
990 static int cephwrap_unlinkat(struct vfs_handle_struct *handle,
991                         struct files_struct *dirfsp,
992                         const struct smb_filename *smb_fname,
993                         int flags)
994 {
995         struct smb_filename *full_fname = NULL;
996         int result = -1;
997
998         DBG_DEBUG("[CEPH] unlink(%p, %s)\n",
999                 handle,
1000                 smb_fname_str_dbg(smb_fname));
1001
1002         if (smb_fname->stream_name) {
1003                 errno = ENOENT;
1004                 return result;
1005         }
1006
1007         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1008                                                   dirfsp,
1009                                                   smb_fname);
1010         if (full_fname == NULL) {
1011                 return -1;
1012         }
1013
1014         if (flags & AT_REMOVEDIR) {
1015                 result = ceph_rmdir(handle->data, full_fname->base_name);
1016         } else {
1017                 result = ceph_unlink(handle->data, full_fname->base_name);
1018         }
1019         TALLOC_FREE(full_fname);
1020         DBG_DEBUG("[CEPH] unlink(...) = %d\n", result);
1021         WRAP_RETURN(result);
1022 }
1023
1024 static int cephwrap_fchmod(struct vfs_handle_struct *handle, files_struct *fsp, mode_t mode)
1025 {
1026         int result;
1027
1028         DBG_DEBUG("[CEPH] fchmod(%p, %p, %d)\n", handle, fsp, mode);
1029         if (!fsp->fsp_flags.is_pathref) {
1030                 /*
1031                  * We can use an io_fd to remove xattrs.
1032                  */
1033                 result = ceph_fchmod(handle->data, fsp_get_io_fd(fsp), mode);
1034         } else {
1035                 /*
1036                  * This is no longer a handle based call.
1037                  */
1038                 result = ceph_chmod(handle->data,
1039                                     fsp->fsp_name->base_name,
1040                                     mode);
1041         }
1042         DBG_DEBUG("[CEPH] fchmod(...) = %d\n", result);
1043         WRAP_RETURN(result);
1044 }
1045
1046 static int cephwrap_fchown(struct vfs_handle_struct *handle, files_struct *fsp, uid_t uid, gid_t gid)
1047 {
1048         int result;
1049
1050         DBG_DEBUG("[CEPH] fchown(%p, %p, %d, %d)\n", handle, fsp, uid, gid);
1051         result = ceph_fchown(handle->data, fsp_get_io_fd(fsp), uid, gid);
1052         DBG_DEBUG("[CEPH] fchown(...) = %d\n", result);
1053         WRAP_RETURN(result);
1054 }
1055
1056 static int cephwrap_lchown(struct vfs_handle_struct *handle,
1057                         const struct smb_filename *smb_fname,
1058                         uid_t uid,
1059                         gid_t gid)
1060 {
1061         int result;
1062         DBG_DEBUG("[CEPH] lchown(%p, %s, %d, %d)\n", handle, smb_fname->base_name, uid, gid);
1063         result = ceph_lchown(handle->data, smb_fname->base_name, uid, gid);
1064         DBG_DEBUG("[CEPH] lchown(...) = %d\n", result);
1065         WRAP_RETURN(result);
1066 }
1067
1068 static int cephwrap_chdir(struct vfs_handle_struct *handle,
1069                         const struct smb_filename *smb_fname)
1070 {
1071         int result = -1;
1072         DBG_DEBUG("[CEPH] chdir(%p, %s)\n", handle, smb_fname->base_name);
1073         result = ceph_chdir(handle->data, smb_fname->base_name);
1074         DBG_DEBUG("[CEPH] chdir(...) = %d\n", result);
1075         WRAP_RETURN(result);
1076 }
1077
1078 static struct smb_filename *cephwrap_getwd(struct vfs_handle_struct *handle,
1079                         TALLOC_CTX *ctx)
1080 {
1081         const char *cwd = ceph_getcwd(handle->data);
1082         DBG_DEBUG("[CEPH] getwd(%p) = %s\n", handle, cwd);
1083         return synthetic_smb_fname(ctx,
1084                                 cwd,
1085                                 NULL,
1086                                 NULL,
1087                                 0,
1088                                 0);
1089 }
1090
1091 static int strict_allocate_ftruncate(struct vfs_handle_struct *handle, files_struct *fsp, off_t len)
1092 {
1093         off_t space_to_write;
1094         int result;
1095         NTSTATUS status;
1096         SMB_STRUCT_STAT *pst;
1097
1098         status = vfs_stat_fsp(fsp);
1099         if (!NT_STATUS_IS_OK(status)) {
1100                 return -1;
1101         }
1102         pst = &fsp->fsp_name->st;
1103
1104 #ifdef S_ISFIFO
1105         if (S_ISFIFO(pst->st_ex_mode))
1106                 return 0;
1107 #endif
1108
1109         if (pst->st_ex_size == len)
1110                 return 0;
1111
1112         /* Shrink - just ftruncate. */
1113         if (pst->st_ex_size > len) {
1114                 result = ceph_ftruncate(handle->data, fsp_get_io_fd(fsp), len);
1115                 WRAP_RETURN(result);
1116         }
1117
1118         space_to_write = len - pst->st_ex_size;
1119         result = ceph_fallocate(handle->data, fsp_get_io_fd(fsp), 0, pst->st_ex_size,
1120                                 space_to_write);
1121         WRAP_RETURN(result);
1122 }
1123
1124 static int cephwrap_ftruncate(struct vfs_handle_struct *handle, files_struct *fsp, off_t len)
1125 {
1126         int result = -1;
1127
1128         DBG_DEBUG("[CEPH] ftruncate(%p, %p, %llu\n", handle, fsp, llu(len));
1129
1130         if (lp_strict_allocate(SNUM(fsp->conn))) {
1131                 return strict_allocate_ftruncate(handle, fsp, len);
1132         }
1133
1134         result = ceph_ftruncate(handle->data, fsp_get_io_fd(fsp), len);
1135         WRAP_RETURN(result);
1136 }
1137
1138 static int cephwrap_fallocate(struct vfs_handle_struct *handle,
1139                               struct files_struct *fsp,
1140                               uint32_t mode,
1141                               off_t offset,
1142                               off_t len)
1143 {
1144         int result;
1145
1146         DBG_DEBUG("[CEPH] fallocate(%p, %p, %u, %llu, %llu\n",
1147                   handle, fsp, mode, llu(offset), llu(len));
1148         /* unsupported mode flags are rejected by libcephfs */
1149         result = ceph_fallocate(handle->data, fsp_get_io_fd(fsp), mode, offset, len);
1150         DBG_DEBUG("[CEPH] fallocate(...) = %d\n", result);
1151         WRAP_RETURN(result);
1152 }
1153
1154 static bool cephwrap_lock(struct vfs_handle_struct *handle, files_struct *fsp, int op, off_t offset, off_t count, int type)
1155 {
1156         DBG_DEBUG("[CEPH] lock\n");
1157         return true;
1158 }
1159
1160 static int cephwrap_filesystem_sharemode(struct vfs_handle_struct *handle,
1161                                          files_struct *fsp,
1162                                          uint32_t share_access,
1163                                          uint32_t access_mask)
1164 {
1165         DBG_ERR("[CEPH] filesystem sharemodes unsupported! Consider setting "
1166                 "\"kernel share modes = no\"\n");
1167
1168         errno = ENOSYS;
1169         return -1;
1170 }
1171
1172 static int cephwrap_fcntl(vfs_handle_struct *handle,
1173                           files_struct *fsp, int cmd, va_list cmd_arg)
1174 {
1175         /*
1176          * SMB_VFS_FCNTL() is currently only called by vfs_set_blocking() to
1177          * clear O_NONBLOCK, etc for LOCK_MAND and FIFOs. Ignore it.
1178          */
1179         if (cmd == F_GETFL) {
1180                 return 0;
1181         } else if (cmd == F_SETFL) {
1182                 va_list dup_cmd_arg;
1183                 int opt;
1184
1185                 va_copy(dup_cmd_arg, cmd_arg);
1186                 opt = va_arg(dup_cmd_arg, int);
1187                 va_end(dup_cmd_arg);
1188                 if (opt == 0) {
1189                         return 0;
1190                 }
1191                 DBG_ERR("unexpected fcntl SETFL(%d)\n", opt);
1192                 goto err_out;
1193         }
1194         DBG_ERR("unexpected fcntl: %d\n", cmd);
1195 err_out:
1196         errno = EINVAL;
1197         return -1;
1198 }
1199
1200 static bool cephwrap_getlock(struct vfs_handle_struct *handle, files_struct *fsp, off_t *poffset, off_t *pcount, int *ptype, pid_t *ppid)
1201 {
1202         DBG_DEBUG("[CEPH] getlock returning false and errno=0\n");
1203
1204         errno = 0;
1205         return false;
1206 }
1207
1208 /*
1209  * We cannot let this fall through to the default, because the file might only
1210  * be accessible from libceph (which is a user-space client) but the fd might
1211  * be for some file the kernel knows about.
1212  */
1213 static int cephwrap_linux_setlease(struct vfs_handle_struct *handle, files_struct *fsp,
1214                                 int leasetype)
1215 {
1216         int result = -1;
1217
1218         DBG_DEBUG("[CEPH] linux_setlease\n");
1219         errno = ENOSYS;
1220         return result;
1221 }
1222
1223 static int cephwrap_symlinkat(struct vfs_handle_struct *handle,
1224                 const struct smb_filename *link_target,
1225                 struct files_struct *dirfsp,
1226                 const struct smb_filename *new_smb_fname)
1227 {
1228         struct smb_filename *full_fname = NULL;
1229         int result = -1;
1230
1231         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1232                                                 dirfsp,
1233                                                 new_smb_fname);
1234         if (full_fname == NULL) {
1235                 return -1;
1236         }
1237
1238         DBG_DEBUG("[CEPH] symlink(%p, %s, %s)\n", handle,
1239                         link_target->base_name,
1240                         full_fname->base_name);
1241
1242         result = ceph_symlink(handle->data,
1243                         link_target->base_name,
1244                         full_fname->base_name);
1245         TALLOC_FREE(full_fname);
1246         DBG_DEBUG("[CEPH] symlink(...) = %d\n", result);
1247         WRAP_RETURN(result);
1248 }
1249
1250 static int cephwrap_readlinkat(struct vfs_handle_struct *handle,
1251                 const struct files_struct *dirfsp,
1252                 const struct smb_filename *smb_fname,
1253                 char *buf,
1254                 size_t bufsiz)
1255 {
1256         struct smb_filename *full_fname = NULL;
1257         int result = -1;
1258
1259         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1260                                                 dirfsp,
1261                                                 smb_fname);
1262         if (full_fname == NULL) {
1263                 return -1;
1264         }
1265
1266         DBG_DEBUG("[CEPH] readlink(%p, %s, %p, %llu)\n", handle,
1267                         full_fname->base_name, buf, llu(bufsiz));
1268
1269         result = ceph_readlink(handle->data, full_fname->base_name, buf, bufsiz);
1270         TALLOC_FREE(full_fname);
1271         DBG_DEBUG("[CEPH] readlink(...) = %d\n", result);
1272         WRAP_RETURN(result);
1273 }
1274
1275 static int cephwrap_linkat(struct vfs_handle_struct *handle,
1276                 files_struct *srcfsp,
1277                 const struct smb_filename *old_smb_fname,
1278                 files_struct *dstfsp,
1279                 const struct smb_filename *new_smb_fname,
1280                 int flags)
1281 {
1282         struct smb_filename *full_fname_old = NULL;
1283         struct smb_filename *full_fname_new = NULL;
1284         int result = -1;
1285
1286         full_fname_old = full_path_from_dirfsp_atname(talloc_tos(),
1287                                         srcfsp,
1288                                         old_smb_fname);
1289         if (full_fname_old == NULL) {
1290                 return -1;
1291         }
1292         full_fname_new = full_path_from_dirfsp_atname(talloc_tos(),
1293                                         dstfsp,
1294                                         new_smb_fname);
1295         if (full_fname_new == NULL) {
1296                 TALLOC_FREE(full_fname_old);
1297                 return -1;
1298         }
1299
1300         DBG_DEBUG("[CEPH] link(%p, %s, %s)\n", handle,
1301                         full_fname_old->base_name,
1302                         full_fname_new->base_name);
1303
1304         result = ceph_link(handle->data,
1305                                 full_fname_old->base_name,
1306                                 full_fname_new->base_name);
1307         DBG_DEBUG("[CEPH] link(...) = %d\n", result);
1308         TALLOC_FREE(full_fname_old);
1309         TALLOC_FREE(full_fname_new);
1310         WRAP_RETURN(result);
1311 }
1312
1313 static int cephwrap_mknodat(struct vfs_handle_struct *handle,
1314                 files_struct *dirfsp,
1315                 const struct smb_filename *smb_fname,
1316                 mode_t mode,
1317                 SMB_DEV_T dev)
1318 {
1319         struct smb_filename *full_fname = NULL;
1320         int result = -1;
1321
1322         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1323                                                 dirfsp,
1324                                                 smb_fname);
1325         if (full_fname == NULL) {
1326                 return -1;
1327         }
1328
1329         DBG_DEBUG("[CEPH] mknodat(%p, %s)\n", handle, full_fname->base_name);
1330         result = ceph_mknod(handle->data, full_fname->base_name, mode, dev);
1331         DBG_DEBUG("[CEPH] mknodat(...) = %d\n", result);
1332
1333         TALLOC_FREE(full_fname);
1334
1335         WRAP_RETURN(result);
1336 }
1337
1338 /*
1339  * This is a simple version of real-path ... a better version is needed to
1340  * ask libceph about symbolic links.
1341  */
1342 static struct smb_filename *cephwrap_realpath(struct vfs_handle_struct *handle,
1343                                 TALLOC_CTX *ctx,
1344                                 const struct smb_filename *smb_fname)
1345 {
1346         char *result = NULL;
1347         const char *path = smb_fname->base_name;
1348         size_t len = strlen(path);
1349         struct smb_filename *result_fname = NULL;
1350         int r = -1;
1351
1352         if (len && (path[0] == '/')) {
1353                 r = asprintf(&result, "%s", path);
1354         } else if ((len >= 2) && (path[0] == '.') && (path[1] == '/')) {
1355                 if (len == 2) {
1356                         r = asprintf(&result, "%s",
1357                                         handle->conn->cwd_fsp->fsp_name->base_name);
1358                 } else {
1359                         r = asprintf(&result, "%s/%s",
1360                                         handle->conn->cwd_fsp->fsp_name->base_name, &path[2]);
1361                 }
1362         } else {
1363                 r = asprintf(&result, "%s/%s",
1364                                 handle->conn->cwd_fsp->fsp_name->base_name, path);
1365         }
1366
1367         if (r < 0) {
1368                 return NULL;
1369         }
1370
1371         DBG_DEBUG("[CEPH] realpath(%p, %s) = %s\n", handle, path, result);
1372         result_fname = synthetic_smb_fname(ctx,
1373                                 result,
1374                                 NULL,
1375                                 NULL,
1376                                 0,
1377                                 0);
1378         SAFE_FREE(result);
1379         return result_fname;
1380 }
1381
1382
1383 static int cephwrap_fchflags(struct vfs_handle_struct *handle,
1384                         struct files_struct *fsp,
1385                         unsigned int flags)
1386 {
1387         errno = ENOSYS;
1388         return -1;
1389 }
1390
1391 static NTSTATUS cephwrap_get_real_filename_at(
1392         struct vfs_handle_struct *handle,
1393         struct files_struct *dirfsp,
1394         const char *name,
1395         TALLOC_CTX *mem_ctx,
1396         char **found_name)
1397 {
1398         /*
1399          * Don't fall back to get_real_filename so callers can differentiate
1400          * between a full directory scan and an actual case-insensitive stat.
1401          */
1402         return NT_STATUS_NOT_SUPPORTED;
1403 }
1404
1405 static const char *cephwrap_connectpath(
1406         struct vfs_handle_struct *handle,
1407         const struct files_struct *dirfsp,
1408         const struct smb_filename *smb_fname)
1409 {
1410         return handle->conn->connectpath;
1411 }
1412
1413 /****************************************************************
1414  Extended attribute operations.
1415 *****************************************************************/
1416
1417 static ssize_t cephwrap_fgetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, void *value, size_t size)
1418 {
1419         int ret;
1420         DBG_DEBUG("[CEPH] fgetxattr(%p, %p, %s, %p, %llu)\n", handle, fsp, name, value, llu(size));
1421         ret = ceph_fgetxattr(handle->data, fsp_get_io_fd(fsp), name, value, size);
1422         DBG_DEBUG("[CEPH] fgetxattr(...) = %d\n", ret);
1423         if (ret < 0) {
1424                 WRAP_RETURN(ret);
1425         }
1426         return (ssize_t)ret;
1427 }
1428
1429 static ssize_t cephwrap_flistxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, char *list, size_t size)
1430 {
1431         int ret;
1432         DBG_DEBUG("[CEPH] flistxattr(%p, %p, %p, %llu)\n",
1433                   handle, fsp, list, llu(size));
1434         if (!fsp->fsp_flags.is_pathref) {
1435                 /*
1436                  * We can use an io_fd to list xattrs.
1437                  */
1438                 ret = ceph_flistxattr(handle->data,
1439                                         fsp_get_io_fd(fsp),
1440                                         list,
1441                                         size);
1442         } else {
1443                 /*
1444                  * This is no longer a handle based call.
1445                  */
1446                 ret = ceph_listxattr(handle->data,
1447                                         fsp->fsp_name->base_name,
1448                                         list,
1449                                         size);
1450         }
1451         DBG_DEBUG("[CEPH] flistxattr(...) = %d\n", ret);
1452         if (ret < 0) {
1453                 WRAP_RETURN(ret);
1454         }
1455         return (ssize_t)ret;
1456 }
1457
1458 static int cephwrap_fremovexattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name)
1459 {
1460         int ret;
1461         DBG_DEBUG("[CEPH] fremovexattr(%p, %p, %s)\n", handle, fsp, name);
1462         if (!fsp->fsp_flags.is_pathref) {
1463                 /*
1464                  * We can use an io_fd to remove xattrs.
1465                  */
1466                 ret = ceph_fremovexattr(handle->data, fsp_get_io_fd(fsp), name);
1467         } else {
1468                 /*
1469                  * This is no longer a handle based call.
1470                  */
1471                 ret = ceph_removexattr(handle->data,
1472                                         fsp->fsp_name->base_name,
1473                                         name);
1474         }
1475         DBG_DEBUG("[CEPH] fremovexattr(...) = %d\n", ret);
1476         WRAP_RETURN(ret);
1477 }
1478
1479 static int cephwrap_fsetxattr(struct vfs_handle_struct *handle, struct files_struct *fsp, const char *name, const void *value, size_t size, int flags)
1480 {
1481         int ret;
1482         DBG_DEBUG("[CEPH] fsetxattr(%p, %p, %s, %p, %llu, %d)\n", handle, fsp, name, value, llu(size), flags);
1483         if (!fsp->fsp_flags.is_pathref) {
1484                 /*
1485                  * We can use an io_fd to set xattrs.
1486                  */
1487                 ret = ceph_fsetxattr(handle->data,
1488                                 fsp_get_io_fd(fsp),
1489                                 name,
1490                                 value,
1491                                 size,
1492                                 flags);
1493         } else {
1494                 /*
1495                  * This is no longer a handle based call.
1496                  */
1497                 ret = ceph_setxattr(handle->data,
1498                                 fsp->fsp_name->base_name,
1499                                 name,
1500                                 value,
1501                                 size,
1502                                 flags);
1503         }
1504         DBG_DEBUG("[CEPH] fsetxattr(...) = %d\n", ret);
1505         WRAP_RETURN(ret);
1506 }
1507
1508 static bool cephwrap_aio_force(struct vfs_handle_struct *handle, struct files_struct *fsp)
1509 {
1510
1511         /*
1512          * We do not support AIO yet.
1513          */
1514
1515         DBG_DEBUG("[CEPH] cephwrap_aio_force(%p, %p) = false (errno = ENOTSUP)\n", handle, fsp);
1516         errno = ENOTSUP;
1517         return false;
1518 }
1519
1520 static NTSTATUS cephwrap_create_dfs_pathat(struct vfs_handle_struct *handle,
1521                                 struct files_struct *dirfsp,
1522                                 const struct smb_filename *smb_fname,
1523                                 const struct referral *reflist,
1524                                 size_t referral_count)
1525 {
1526         TALLOC_CTX *frame = talloc_stackframe();
1527         NTSTATUS status = NT_STATUS_NO_MEMORY;
1528         int ret;
1529         char *msdfs_link = NULL;
1530         struct smb_filename *full_fname = NULL;
1531
1532         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1533                                                 dirfsp,
1534                                                 smb_fname);
1535         if (full_fname == NULL) {
1536                 goto out;
1537         }
1538
1539         /* Form the msdfs_link contents */
1540         msdfs_link = msdfs_link_string(frame,
1541                                         reflist,
1542                                         referral_count);
1543         if (msdfs_link == NULL) {
1544                 goto out;
1545         }
1546
1547         ret = ceph_symlink(handle->data,
1548                         msdfs_link,
1549                         full_fname->base_name);
1550         if (ret == 0) {
1551                 status = NT_STATUS_OK;
1552         } else {
1553                 status = map_nt_error_from_unix(-ret);
1554         }
1555
1556   out:
1557
1558         DBG_DEBUG("[CEPH] create_dfs_pathat(%s) = %s\n",
1559                         full_fname != NULL ? full_fname->base_name : "",
1560                         nt_errstr(status));
1561
1562         TALLOC_FREE(frame);
1563         return status;
1564 }
1565
1566 /*
1567  * Read and return the contents of a DFS redirect given a
1568  * pathname. A caller can pass in NULL for ppreflist and
1569  * preferral_count but still determine if this was a
1570  * DFS redirect point by getting NT_STATUS_OK back
1571  * without incurring the overhead of reading and parsing
1572  * the referral contents.
1573  */
1574
1575 static NTSTATUS cephwrap_read_dfs_pathat(struct vfs_handle_struct *handle,
1576                                 TALLOC_CTX *mem_ctx,
1577                                 struct files_struct *dirfsp,
1578                                 struct smb_filename *smb_fname,
1579                                 struct referral **ppreflist,
1580                                 size_t *preferral_count)
1581 {
1582         NTSTATUS status = NT_STATUS_NO_MEMORY;
1583         size_t bufsize;
1584         char *link_target = NULL;
1585         int referral_len;
1586         bool ok;
1587 #if defined(HAVE_BROKEN_READLINK)
1588         char link_target_buf[PATH_MAX];
1589 #else
1590         char link_target_buf[7];
1591 #endif
1592         struct ceph_statx stx;
1593         struct smb_filename *full_fname = NULL;
1594         int ret;
1595
1596         if (is_named_stream(smb_fname)) {
1597                 status = NT_STATUS_OBJECT_NAME_NOT_FOUND;
1598                 goto err;
1599         }
1600
1601         if (ppreflist == NULL && preferral_count == NULL) {
1602                 /*
1603                  * We're only checking if this is a DFS
1604                  * redirect. We don't need to return data.
1605                  */
1606                 bufsize = sizeof(link_target_buf);
1607                 link_target = link_target_buf;
1608         } else {
1609                 bufsize = PATH_MAX;
1610                 link_target = talloc_array(mem_ctx, char, bufsize);
1611                 if (!link_target) {
1612                         goto err;
1613                 }
1614         }
1615
1616         full_fname = full_path_from_dirfsp_atname(talloc_tos(),
1617                                                   dirfsp,
1618                                                   smb_fname);
1619         if (full_fname == NULL) {
1620                 status = NT_STATUS_NO_MEMORY;
1621                 goto err;
1622         }
1623
1624         ret = ceph_statx(handle->data,
1625                          full_fname->base_name,
1626                          &stx,
1627                          SAMBA_STATX_ATTR_MASK,
1628                          AT_SYMLINK_NOFOLLOW);
1629         if (ret < 0) {
1630                 status = map_nt_error_from_unix(-ret);
1631                 goto err;
1632         }
1633
1634         referral_len = ceph_readlink(handle->data,
1635                                 full_fname->base_name,
1636                                 link_target,
1637                                 bufsize - 1);
1638         if (referral_len < 0) {
1639                 /* ceph errors are -errno. */
1640                 if (-referral_len == EINVAL) {
1641                         DBG_INFO("%s is not a link.\n",
1642                                 full_fname->base_name);
1643                         status = NT_STATUS_OBJECT_TYPE_MISMATCH;
1644                 } else {
1645                         status = map_nt_error_from_unix(-referral_len);
1646                         DBG_ERR("Error reading "
1647                                 "msdfs link %s: %s\n",
1648                                 full_fname->base_name,
1649                         strerror(errno));
1650                 }
1651                 goto err;
1652         }
1653         link_target[referral_len] = '\0';
1654
1655         DBG_INFO("%s -> %s\n",
1656                         full_fname->base_name,
1657                         link_target);
1658
1659         if (!strnequal(link_target, "msdfs:", 6)) {
1660                 status = NT_STATUS_OBJECT_TYPE_MISMATCH;
1661                 goto err;
1662         }
1663
1664         if (ppreflist == NULL && preferral_count == NULL) {
1665                 /* Early return for checking if this is a DFS link. */
1666                 TALLOC_FREE(full_fname);
1667                 init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
1668                 return NT_STATUS_OK;
1669         }
1670
1671         ok = parse_msdfs_symlink(mem_ctx,
1672                         lp_msdfs_shuffle_referrals(SNUM(handle->conn)),
1673                         link_target,
1674                         ppreflist,
1675                         preferral_count);
1676
1677         if (ok) {
1678                 init_stat_ex_from_ceph_statx(&smb_fname->st, &stx);
1679                 status = NT_STATUS_OK;
1680         } else {
1681                 status = NT_STATUS_NO_MEMORY;
1682         }
1683
1684   err:
1685
1686         if (link_target != link_target_buf) {
1687                 TALLOC_FREE(link_target);
1688         }
1689         TALLOC_FREE(full_fname);
1690         return status;
1691 }
1692
1693 static struct vfs_fn_pointers ceph_fns = {
1694         /* Disk operations */
1695
1696         .connect_fn = cephwrap_connect,
1697         .disconnect_fn = cephwrap_disconnect,
1698         .disk_free_fn = cephwrap_disk_free,
1699         .get_quota_fn = cephwrap_get_quota,
1700         .set_quota_fn = cephwrap_set_quota,
1701         .statvfs_fn = cephwrap_statvfs,
1702         .fs_capabilities_fn = cephwrap_fs_capabilities,
1703
1704         /* Directory operations */
1705
1706         .fdopendir_fn = cephwrap_fdopendir,
1707         .readdir_fn = cephwrap_readdir,
1708         .rewind_dir_fn = cephwrap_rewinddir,
1709         .mkdirat_fn = cephwrap_mkdirat,
1710         .closedir_fn = cephwrap_closedir,
1711
1712         /* File operations */
1713
1714         .create_dfs_pathat_fn = cephwrap_create_dfs_pathat,
1715         .read_dfs_pathat_fn = cephwrap_read_dfs_pathat,
1716         .openat_fn = cephwrap_openat,
1717         .close_fn = cephwrap_close,
1718         .pread_fn = cephwrap_pread,
1719         .pread_send_fn = cephwrap_pread_send,
1720         .pread_recv_fn = cephwrap_pread_recv,
1721         .pwrite_fn = cephwrap_pwrite,
1722         .pwrite_send_fn = cephwrap_pwrite_send,
1723         .pwrite_recv_fn = cephwrap_pwrite_recv,
1724         .lseek_fn = cephwrap_lseek,
1725         .sendfile_fn = cephwrap_sendfile,
1726         .recvfile_fn = cephwrap_recvfile,
1727         .renameat_fn = cephwrap_renameat,
1728         .fsync_send_fn = cephwrap_fsync_send,
1729         .fsync_recv_fn = cephwrap_fsync_recv,
1730         .stat_fn = cephwrap_stat,
1731         .fstat_fn = cephwrap_fstat,
1732         .lstat_fn = cephwrap_lstat,
1733         .unlinkat_fn = cephwrap_unlinkat,
1734         .fchmod_fn = cephwrap_fchmod,
1735         .fchown_fn = cephwrap_fchown,
1736         .lchown_fn = cephwrap_lchown,
1737         .chdir_fn = cephwrap_chdir,
1738         .getwd_fn = cephwrap_getwd,
1739         .fntimes_fn = cephwrap_fntimes,
1740         .ftruncate_fn = cephwrap_ftruncate,
1741         .fallocate_fn = cephwrap_fallocate,
1742         .lock_fn = cephwrap_lock,
1743         .filesystem_sharemode_fn = cephwrap_filesystem_sharemode,
1744         .fcntl_fn = cephwrap_fcntl,
1745         .linux_setlease_fn = cephwrap_linux_setlease,
1746         .getlock_fn = cephwrap_getlock,
1747         .symlinkat_fn = cephwrap_symlinkat,
1748         .readlinkat_fn = cephwrap_readlinkat,
1749         .linkat_fn = cephwrap_linkat,
1750         .mknodat_fn = cephwrap_mknodat,
1751         .realpath_fn = cephwrap_realpath,
1752         .fchflags_fn = cephwrap_fchflags,
1753         .get_real_filename_at_fn = cephwrap_get_real_filename_at,
1754         .connectpath_fn = cephwrap_connectpath,
1755
1756         /* EA operations. */
1757         .getxattrat_send_fn = vfs_not_implemented_getxattrat_send,
1758         .getxattrat_recv_fn = vfs_not_implemented_getxattrat_recv,
1759         .fgetxattr_fn = cephwrap_fgetxattr,
1760         .flistxattr_fn = cephwrap_flistxattr,
1761         .fremovexattr_fn = cephwrap_fremovexattr,
1762         .fsetxattr_fn = cephwrap_fsetxattr,
1763
1764         /* Posix ACL Operations */
1765         .sys_acl_get_fd_fn = posixacl_xattr_acl_get_fd,
1766         .sys_acl_blob_get_fd_fn = posix_sys_acl_blob_get_fd,
1767         .sys_acl_set_fd_fn = posixacl_xattr_acl_set_fd,
1768         .sys_acl_delete_def_fd_fn = posixacl_xattr_acl_delete_def_fd,
1769
1770         /* aio operations */
1771         .aio_force_fn = cephwrap_aio_force,
1772 };
1773
1774 static_decl_vfs;
1775 NTSTATUS vfs_ceph_init(TALLOC_CTX *ctx)
1776 {
1777         return smb_register_vfs(SMB_VFS_INTERFACE_VERSION,
1778                                 "ceph", &ceph_fns);
1779 }