diff mbox

[v4] Ceph-fuse: Fallocate and punch hole support

Message ID 1376450637-15567-1-git-send-email-liwang@ubuntukylin.com (mailing list archive)
State New, archived
Headers show

Commit Message

Li Wang Aug. 14, 2013, 3:23 a.m. UTC
This patch implements fallocate and punch hole support for Ceph fuse client.

Signed-off-by: Yunchuan Wen <yunchuanwen@ubuntukylin.com>
Signed-off-by: Li Wang <liwang@ubuntukylin.com>
---
Since the i_size is untrustable without Fs cap, we'd better let the fallocate go without checking if it beyond the EOF, since OSD will take care of the situation while truncating beyond end of object. In addition, during fallocate(), we do not change the i_size, so the file size recorded by MDS is kept unchanged, that meets the semantic requirement. Instead, if we thrink the hole to not beyond EOF, consider the following example:
Two clients, say, A and B
1 Both A and B open the same empty file with O_RW
2 A do a stat(), confirm the file size is zero
3 B do writing, get the file bigger
4 A do punch_hole [0, 999999]
5 A close file
6 B close file
Since the file size seen by A may always be zero, if limit the truncate not beyond EOF, the hole punching will always be cancelled, in spite of the file is no longer empty.

Does that make sense?

Another question, do we need give a special consideration to the very first object? For fuse code, filter->zero() does all the hard job, has it already taken this into account? 
---
 src/client/Client.cc           |   93 ++++++++++++++++++++++++++++++++++++++++
 src/client/Client.h            |    3 ++
 src/client/fuse_ll.cc          |   26 +++++++++++
 src/include/cephfs/libcephfs.h |   18 ++++++++
 src/libcephfs.cc               |    8 ++++
 5 files changed, 148 insertions(+)

Comments

Sage Weil Aug. 14, 2013, 4:44 a.m. UTC | #1
On Wed, 14 Aug 2013, Li Wang wrote:
> This patch implements fallocate and punch hole support for Ceph fuse client.
> 
> Signed-off-by: Yunchuan Wen <yunchuanwen@ubuntukylin.com>
> Signed-off-by: Li Wang <liwang@ubuntukylin.com>
> ---
> Since the i_size is untrustable without Fs cap, we'd better let the fallocate go without checking if it beyond the EOF, since OSD will take care of the situation while truncating beyond end of object. In addition, during fallocate(), we do not change the i_size, so the file size recorded by MDS is kept unchanged, that meets the semantic requirement. Instead, if we thrink the hole to not beyond EOF, consider the following example:
> Two clients, say, A and B
> 1 Both A and B open the same empty file with O_RW
> 2 A do a stat(), confirm the file size is zero
> 3 B do writing, get the file bigger
> 4 A do punch_hole [0, 999999]
> 5 A close file
> 6 B close file
> Since the file size seen by A may always be zero, if limit the truncate not beyond EOF, the hole punching will always be cancelled, in spite of the file is no longer empty.
> 
> Does that make sense?

Yep, this sounds right.

BTW, it is pretty easy to write tests along the lines of 
https://github.com/ceph/ceph/blob/master/qa/workunits/fs/multiclient_sync_read_eof.py 
to verify this sort of behavior.  A simple python script that takes 2 
mount points can be called from the QA harness.

> Another question, do we need give a special consideration to the very 
> first object? For fuse code, filter->zero() does all the hard job, has 
> it already taken this into account? 

Hmm, it looks like Filer is not smart enough to do that. I suggest adding 
a flag that makes it not delete the first object.

In the meantime I'll pull all of this into wip-fallocate!

sage


> ---
>  src/client/Client.cc           |   93 ++++++++++++++++++++++++++++++++++++++++
>  src/client/Client.h            |    3 ++
>  src/client/fuse_ll.cc          |   26 +++++++++++
>  src/include/cephfs/libcephfs.h |   18 ++++++++
>  src/libcephfs.cc               |    8 ++++
>  5 files changed, 148 insertions(+)
> 
> diff --git a/src/client/Client.cc b/src/client/Client.cc
> index ae7ddf6..b340df5 100644
> --- a/src/client/Client.cc
> +++ b/src/client/Client.cc
> @@ -22,6 +22,7 @@
>  #include <sys/stat.h>
>  #include <sys/param.h>
>  #include <fcntl.h>
> +#include <linux/falloc.h>
>  
>  #include <sys/statvfs.h>
>  
> @@ -7664,6 +7665,98 @@ int Client::ll_fsync(Fh *fh, bool syncdataonly)
>    return _fsync(fh, syncdataonly);
>  }
>  
> +int Client::_fallocate(Fh *fh, int mode, int64_t offset, int64_t length)
> +{
> +  if (offset < 0 || length <= 0)
> +    return -EINVAL;
> +
> +  if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
> +    return -EOPNOTSUPP;
> +
> +  if ((mode & FALLOC_FL_PUNCH_HOLE) && !(mode & FALLOC_FL_KEEP_SIZE))
> +    return -EOPNOTSUPP;
> +
> +  if (osdmap->test_flag(CEPH_OSDMAP_FULL) && !(mode & FALLOC_FL_PUNCH_HOLE))
> +    return -ENOSPC;
> +
> +  Inode *in = fh->inode;
> +
> +  if (in->snapid != CEPH_NOSNAP)
> +    return -EROFS;
> +
> +  if ((fh->mode & CEPH_FILE_MODE_WR) == 0)
> +    return -EBADF;
> +
> +  int have;
> +  int r = get_caps(in, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER, &have, -1);
> +  if (r < 0)
> +    return r;
> +
> +  if (mode & FALLOC_FL_PUNCH_HOLE) {
> +    Mutex flock("Client::_punch_hole flock");
> +    Cond cond;
> +    bool done = false;
> +    Context *onfinish = new C_SafeCond(&flock, &cond, &done);
> +    Context *onsafe = new C_Client_SyncCommit(this, in);
> +
> +    unsafe_sync_write++;
> +    get_cap_ref(in, CEPH_CAP_FILE_BUFFER);
> +
> +    _invalidate_inode_cache(in, offset, length, true);
> +    r = filer->zero(in->ino, &in->layout,
> +                    in->snaprealm->get_snap_context(),
> +                    offset, length,
> +                    ceph_clock_now(cct),
> +                    0, onfinish, onsafe);
> +    if (r < 0)
> +      goto done;
> +
> +    client_lock.Unlock();
> +    flock.Lock();
> +    while (!done)
> +      cond.Wait(flock);
> +    flock.Unlock();
> +    client_lock.Lock();
> +  } else if (!(mode & FALLOC_FL_KEEP_SIZE)) {
> +    uint64_t size = offset + length;
> +    if (size > in->size) {
> +      in->size = size;
> +      mark_caps_dirty(in, CEPH_CAP_FILE_WR);
> +
> +      if ((in->size << 1) >= in->max_size &&
> +          (in->reported_size << 1) < in->max_size)
> +        check_caps(in, false);
> +    }
> +  }
> +
> +  in->mtime = ceph_clock_now(cct);
> +  mark_caps_dirty(in, CEPH_CAP_FILE_WR);
> +
> +done:
> +  put_cap_ref(in, CEPH_CAP_FILE_WR);
> +  return r;
> +}
> +
> +int Client::ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length)
> +{
> +  Mutex::Locker lock(client_lock);
> +  ldout(cct, 3) << "ll_fallocate " << fh << " " << fh->inode->ino << " " << dendl;
> +  tout(cct) << "ll_fallocate " << mode << " " << offset << " " << length << std::endl;
> +  tout(cct) << (unsigned long)fh << std::endl;
> +
> +  return _fallocate(fh, mode, offset, length);
> +}
> +
> +int Client::fallocate(int fd, int mode, loff_t offset, loff_t length)
> +{
> +  Mutex::Locker lock(client_lock);
> +  tout(cct) << "fallocate " << " " << fd << mode << " " << offset << " " << length << std::endl;
> +
> +  Fh *fh = get_filehandle(fd);
> +  if (!fh)
> +    return -EBADF;
> +  return _fallocate(fh, mode, offset, length);
> +}
>  
>  int Client::ll_release(Fh *fh)
>  {
> diff --git a/src/client/Client.h b/src/client/Client.h
> index 96e8937..218fe10 100644
> --- a/src/client/Client.h
> +++ b/src/client/Client.h
> @@ -555,6 +555,7 @@ private:
>    int _flush(Fh *fh);
>    int _fsync(Fh *fh, bool syncdataonly);
>    int _sync_fs();
> +  int _fallocate(Fh *fh, int mode, int64_t offset, int64_t length);
>  
>    int get_or_create(Inode *dir, const char* name,
>  		    Dentry **pdn, bool expect_null=false);
> @@ -653,6 +654,7 @@ public:
>    int ftruncate(int fd, loff_t size);
>    int fsync(int fd, bool syncdataonly);
>    int fstat(int fd, struct stat *stbuf);
> +  int fallocate(int fd, int mode, loff_t offset, loff_t length);
>  
>    // full path xattr ops
>    int getxattr(const char *path, const char *name, void *value, size_t size);
> @@ -722,6 +724,7 @@ public:
>    int ll_write(Fh *fh, loff_t off, loff_t len, const char *data);
>    int ll_flush(Fh *fh);
>    int ll_fsync(Fh *fh, bool syncdataonly);
> +  int ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length);
>    int ll_release(Fh *fh);
>    int ll_statfs(vinodeno_t vino, struct statvfs *stbuf);
>  
> diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc
> index 8339553..3eab648 100644
> --- a/src/client/fuse_ll.cc
> +++ b/src/client/fuse_ll.cc
> @@ -399,6 +399,20 @@ static void fuse_ll_ioctl(fuse_req_t req, fuse_ino_t ino, int cmd, void *arg, st
>  }
>  #endif
>  
> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
> +
> +static void fuse_ll_fallocate(fuse_req_t req, fuse_ino_t ino, int mode,
> +                              off_t offset, off_t length,
> +                              struct fuse_file_info *fi)
> +{
> +  CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
> +  Fh *fh = (Fh*)fi->fh;
> +  int r = cfuse->client->ll_fallocate(fh, mode, offset, length);
> +  fuse_reply_err(req, -r);
> +}
> +
> +#endif
> +
>  static void fuse_ll_release(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
>  {
>    CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
> @@ -599,8 +613,20 @@ const static struct fuse_lowlevel_ops fuse_ll_oper = {
>   getlk: 0,
>   setlk: 0,
>   bmap: 0,
> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 8)
>  #ifdef FUSE_IOCTL_COMPAT
>   ioctl: fuse_ll_ioctl,
> +#else
> + ioctl: 0,
> +#endif
> + poll: 0,
> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
> + write_buf: 0,
> + retrieve_reply: 0,
> + forget_multi: 0,
> + flock: 0,
> + fallocate: fuse_ll_fallocate
> +#endif
>  #endif
>  };
>  
> diff --git a/src/include/cephfs/libcephfs.h b/src/include/cephfs/libcephfs.h
> index 93e86e7..9b74f63 100644
> --- a/src/include/cephfs/libcephfs.h
> +++ b/src/include/cephfs/libcephfs.h
> @@ -709,6 +709,24 @@ int ceph_ftruncate(struct ceph_mount_info *cmount, int fd, loff_t size);
>  int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataonly);
>  
>  /**
> + * Preallocate or release disk space for the file for the byte range.
> + *
> + * @param cmount the ceph mount handle to use for performing the fallocate.
> + * @param fd the file descriptor of the file to fallocate.
> + * @param mode the flags determines the operation to be performed on the given range.
> + *        default operation (0) allocate and initialize to zero the file in the byte range,
> + *        and the file size will be changed if offset + length is greater than
> + *        the file size. if the FALLOC_FL_KEEP_SIZE flag is specified in the mode,
> + *        the file size will not be changed. if the FALLOC_FL_PUNCH_HOLE flag is
> + *        specified in the mode, the operation is deallocate space and zero the byte range.
> + * @param offset the byte range starting.
> + * @param length the length of the range.
> + * @return 0 on success or a negative error code on failure.
> + */
> +int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
> +	                      loff_t offset, loff_t length);
> +
> +/**
>   * Get the open file's statistics.
>   *
>   * @param cmount the ceph mount handle to use for performing the fstat.
> diff --git a/src/libcephfs.cc b/src/libcephfs.cc
> index 16b130a..306c4ba 100644
> --- a/src/libcephfs.cc
> +++ b/src/libcephfs.cc
> @@ -700,6 +700,14 @@ extern "C" int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataon
>    return cmount->get_client()->fsync(fd, syncdataonly);
>  }
>  
> +extern "C" int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
> +	                      loff_t offset, loff_t length)
> +{
> +  if (!cmount->is_mounted())
> +    return -ENOTCONN;
> +  return cmount->get_client()->fallocate(fd, mode, offset, length);
> +}
> +
>  extern "C" int ceph_fstat(struct ceph_mount_info *cmount, int fd, struct stat *stbuf)
>  {
>    if (!cmount->is_mounted())
> -- 
> 1.7.9.5
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Li Wang Aug. 14, 2013, 7:06 a.m. UTC | #2
Ok, regarding the very 'FIRST' object, what does 'FIRST' refer to?
Suppose the object size is 4MB, we open an empty file, write at [6MB, 
7MB], then an object named something like 0001 generated. Is it the 
first object? Then next time, if we write at [0MB, 1MB], then the object 
named 0000 exists, at this time, who is the first? The order is file 
location or generating time?

On 08/14/2013 12:44 PM, Sage Weil wrote:
> On Wed, 14 Aug 2013, Li Wang wrote:
>> This patch implements fallocate and punch hole support for Ceph fuse client.
>>
>> Signed-off-by: Yunchuan Wen <yunchuanwen@ubuntukylin.com>
>> Signed-off-by: Li Wang <liwang@ubuntukylin.com>
>> ---
>> Since the i_size is untrustable without Fs cap, we'd better let the fallocate go without checking if it beyond the EOF, since OSD will take care of the situation while truncating beyond end of object. In addition, during fallocate(), we do not change the i_size, so the file size recorded by MDS is kept unchanged, that meets the semantic requirement. Instead, if we thrink the hole to not beyond EOF, consider the following example:
>> Two clients, say, A and B
>> 1 Both A and B open the same empty file with O_RW
>> 2 A do a stat(), confirm the file size is zero
>> 3 B do writing, get the file bigger
>> 4 A do punch_hole [0, 999999]
>> 5 A close file
>> 6 B close file
>> Since the file size seen by A may always be zero, if limit the truncate not beyond EOF, the hole punching will always be cancelled, in spite of the file is no longer empty.s
>>
>> Does that make sense?
>
> Yep, this sounds right.
>
> BTW, it is pretty easy to write tests along the lines of
> https://github.com/ceph/ceph/blob/master/qa/workunits/fs/multiclient_sync_read_eof.py
> to verify this sort of behavior.  A simple python script that takes 2
> mount points can be called from the QA harness.
>
>> Another question, do we need give a special consideration to the very
>> first object? For fuse code, filter->zero() does all the hard job, has
>> it already taken this into account?
>
> Hmm, it looks like Filer is not smart enough to do that. I suggest adding
> a flag that makes it not delete the first object.
>
> In the meantime I'll pull all of this into wip-fallocate!
>
> sage
>
>
>> ---
>>   src/client/Client.cc           |   93 ++++++++++++++++++++++++++++++++++++++++
>>   src/client/Client.h            |    3 ++
>>   src/client/fuse_ll.cc          |   26 +++++++++++
>>   src/include/cephfs/libcephfs.h |   18 ++++++++
>>   src/libcephfs.cc               |    8 ++++
>>   5 files changed, 148 insertions(+)
>>
>> diff --git a/src/client/Client.cc b/src/client/Client.cc
>> index ae7ddf6..b340df5 100644
>> --- a/src/client/Client.cc
>> +++ b/src/client/Client.cc
>> @@ -22,6 +22,7 @@
>>   #include <sys/stat.h>
>>   #include <sys/param.h>
>>   #include <fcntl.h>
>> +#include <linux/falloc.h>
>>
>>   #include <sys/statvfs.h>
>>
>> @@ -7664,6 +7665,98 @@ int Client::ll_fsync(Fh *fh, bool syncdataonly)
>>     return _fsync(fh, syncdataonly);
>>   }
>>
>> +int Client::_fallocate(Fh *fh, int mode, int64_t offset, int64_t length)
>> +{
>> +  if (offset < 0 || length <= 0)
>> +    return -EINVAL;
>> +
>> +  if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
>> +    return -EOPNOTSUPP;
>> +
>> +  if ((mode & FALLOC_FL_PUNCH_HOLE) && !(mode & FALLOC_FL_KEEP_SIZE))
>> +    return -EOPNOTSUPP;
>> +
>> +  if (osdmap->test_flag(CEPH_OSDMAP_FULL) && !(mode & FALLOC_FL_PUNCH_HOLE))
>> +    return -ENOSPC;
>> +
>> +  Inode *in = fh->inode;
>> +
>> +  if (in->snapid != CEPH_NOSNAP)
>> +    return -EROFS;
>> +
>> +  if ((fh->mode & CEPH_FILE_MODE_WR) == 0)
>> +    return -EBADF;
>> +
>> +  int have;
>> +  int r = get_caps(in, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER, &have, -1);
>> +  if (r < 0)
>> +    return r;
>> +
>> +  if (mode & FALLOC_FL_PUNCH_HOLE) {
>> +    Mutex flock("Client::_punch_hole flock");
>> +    Cond cond;
>> +    bool done = false;
>> +    Context *onfinish = new C_SafeCond(&flock, &cond, &done);
>> +    Context *onsafe = new C_Client_SyncCommit(this, in);
>> +
>> +    unsafe_sync_write++;
>> +    get_cap_ref(in, CEPH_CAP_FILE_BUFFER);
>> +
>> +    _invalidate_inode_cache(in, offset, length, true);
>> +    r = filer->zero(in->ino, &in->layout,
>> +                    in->snaprealm->get_snap_context(),
>> +                    offset, length,
>> +                    ceph_clock_now(cct),
>> +                    0, onfinish, onsafe);
>> +    if (r < 0)
>> +      goto done;
>> +
>> +    client_lock.Unlock();
>> +    flock.Lock();
>> +    while (!done)
>> +      cond.Wait(flock);
>> +    flock.Unlock();
>> +    client_lock.Lock();
>> +  } else if (!(mode & FALLOC_FL_KEEP_SIZE)) {
>> +    uint64_t size = offset + length;
>> +    if (size > in->size) {
>> +      in->size = size;
>> +      mark_caps_dirty(in, CEPH_CAP_FILE_WR);
>> +
>> +      if ((in->size << 1) >= in->max_size &&
>> +          (in->reported_size << 1) < in->max_size)
>> +        check_caps(in, false);
>> +    }
>> +  }
>> +
>> +  in->mtime = ceph_clock_now(cct);
>> +  mark_caps_dirty(in, CEPH_CAP_FILE_WR);
>> +
>> +done:
>> +  put_cap_ref(in, CEPH_CAP_FILE_WR);
>> +  return r;
>> +}
>> +
>> +int Client::ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length)
>> +{
>> +  Mutex::Locker lock(client_lock);
>> +  ldout(cct, 3) << "ll_fallocate " << fh << " " << fh->inode->ino << " " << dendl;
>> +  tout(cct) << "ll_fallocate " << mode << " " << offset << " " << length << std::endl;
>> +  tout(cct) << (unsigned long)fh << std::endl;
>> +
>> +  return _fallocate(fh, mode, offset, length);
>> +}
>> +
>> +int Client::fallocate(int fd, int mode, loff_t offset, loff_t length)
>> +{
>> +  Mutex::Locker lock(client_lock);
>> +  tout(cct) << "fallocate " << " " << fd << mode << " " << offset << " " << length << std::endl;
>> +
>> +  Fh *fh = get_filehandle(fd);
>> +  if (!fh)
>> +    return -EBADF;
>> +  return _fallocate(fh, mode, offset, length);
>> +}
>>
>>   int Client::ll_release(Fh *fh)
>>   {
>> diff --git a/src/client/Client.h b/src/client/Client.h
>> index 96e8937..218fe10 100644
>> --- a/src/client/Client.h
>> +++ b/src/client/Client.h
>> @@ -555,6 +555,7 @@ private:
>>     int _flush(Fh *fh);
>>     int _fsync(Fh *fh, bool syncdataonly);
>>     int _sync_fs();
>> +  int _fallocate(Fh *fh, int mode, int64_t offset, int64_t length);
>>
>>     int get_or_create(Inode *dir, const char* name,
>>   		    Dentry **pdn, bool expect_null=false);
>> @@ -653,6 +654,7 @@ public:
>>     int ftruncate(int fd, loff_t size);
>>     int fsync(int fd, bool syncdataonly);
>>     int fstat(int fd, struct stat *stbuf);
>> +  int fallocate(int fd, int mode, loff_t offset, loff_t length);
>>
>>     // full path xattr ops
>>     int getxattr(const char *path, const char *name, void *value, size_t size);
>> @@ -722,6 +724,7 @@ public:
>>     int ll_write(Fh *fh, loff_t off, loff_t len, const char *data);
>>     int ll_flush(Fh *fh);
>>     int ll_fsync(Fh *fh, bool syncdataonly);
>> +  int ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length);
>>     int ll_release(Fh *fh);
>>     int ll_statfs(vinodeno_t vino, struct statvfs *stbuf);
>>
>> diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc
>> index 8339553..3eab648 100644
>> --- a/src/client/fuse_ll.cc
>> +++ b/src/client/fuse_ll.cc
>> @@ -399,6 +399,20 @@ static void fuse_ll_ioctl(fuse_req_t req, fuse_ino_t ino, int cmd, void *arg, st
>>   }
>>   #endif
>>
>> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
>> +
>> +static void fuse_ll_fallocate(fuse_req_t req, fuse_ino_t ino, int mode,
>> +                              off_t offset, off_t length,
>> +                              struct fuse_file_info *fi)
>> +{
>> +  CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
>> +  Fh *fh = (Fh*)fi->fh;
>> +  int r = cfuse->client->ll_fallocate(fh, mode, offset, length);
>> +  fuse_reply_err(req, -r);
>> +}
>> +
>> +#endif
>> +
>>   static void fuse_ll_release(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
>>   {
>>     CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
>> @@ -599,8 +613,20 @@ const static struct fuse_lowlevel_ops fuse_ll_oper = {
>>    getlk: 0,
>>    setlk: 0,
>>    bmap: 0,
>> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 8)
>>   #ifdef FUSE_IOCTL_COMPAT
>>    ioctl: fuse_ll_ioctl,
>> +#else
>> + ioctl: 0,
>> +#endif
>> + poll: 0,
>> +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
>> + write_buf: 0,
>> + retrieve_reply: 0,
>> + forget_multi: 0,
>> + flock: 0,
>> + fallocate: fuse_ll_fallocate
>> +#endif
>>   #endif
>>   };
>>
>> diff --git a/src/include/cephfs/libcephfs.h b/src/include/cephfs/libcephfs.h
>> index 93e86e7..9b74f63 100644
>> --- a/src/include/cephfs/libcephfs.h
>> +++ b/src/include/cephfs/libcephfs.h
>> @@ -709,6 +709,24 @@ int ceph_ftruncate(struct ceph_mount_info *cmount, int fd, loff_t size);
>>   int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataonly);
>>
>>   /**
>> + * Preallocate or release disk space for the file for the byte range.
>> + *
>> + * @param cmount the ceph mount handle to use for performing the fallocate.
>> + * @param fd the file descriptor of the file to fallocate.
>> + * @param mode the flags determines the operation to be performed on the given range.
>> + *        default operation (0) allocate and initialize to zero the file in the byte range,
>> + *        and the file size will be changed if offset + length is greater than
>> + *        the file size. if the FALLOC_FL_KEEP_SIZE flag is specified in the mode,
>> + *        the file size will not be changed. if the FALLOC_FL_PUNCH_HOLE flag is
>> + *        specified in the mode, the operation is deallocate space and zero the byte range.
>> + * @param offset the byte range starting.
>> + * @param length the length of the range.
>> + * @return 0 on success or a negative error code on failure.
>> + */
>> +int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
>> +	                      loff_t offset, loff_t length);
>> +
>> +/**
>>    * Get the open file's statistics.
>>    *
>>    * @param cmount the ceph mount handle to use for performing the fstat.
>> diff --git a/src/libcephfs.cc b/src/libcephfs.cc
>> index 16b130a..306c4ba 100644
>> --- a/src/libcephfs.cc
>> +++ b/src/libcephfs.cc
>> @@ -700,6 +700,14 @@ extern "C" int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataon
>>     return cmount->get_client()->fsync(fd, syncdataonly);
>>   }
>>
>> +extern "C" int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
>> +	                      loff_t offset, loff_t length)
>> +{
>> +  if (!cmount->is_mounted())
>> +    return -ENOTCONN;
>> +  return cmount->get_client()->fallocate(fd, mode, offset, length);
>> +}
>> +
>>   extern "C" int ceph_fstat(struct ceph_mount_info *cmount, int fd, struct stat *stbuf)
>>   {
>>     if (!cmount->is_mounted())
>> --
>> 1.7.9.5
>>
>>
>
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Yan, Zheng Aug. 14, 2013, 7:42 a.m. UTC | #3
On Wed, Aug 14, 2013 at 3:06 PM, Li Wang <liwang@ubuntukylin.com> wrote:
> Ok, regarding the very 'FIRST' object, what does 'FIRST' refer to?
> Suppose the object size is 4MB, we open an empty file, write at [6MB, 7MB],
> then an object named something like 0001 generated. Is it the first object?
> Then next time, if we write at [0MB, 1MB], then the object named 0000
> exists, at this time, who is the first? The order is file location or
> generating time?

first object is the object with offset 0. If client does not write to
the object, MDS
will create it.
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Sage Weil Aug. 14, 2013, 3:40 p.m. UTC | #4
On Wed, 14 Aug 2013, Li Wang wrote:
> Ok, regarding the very 'FIRST' object, what does 'FIRST' refer to?
> Suppose the object size is 4MB, we open an empty file, write at [6MB, 7MB],
> then an object named something like 0001 generated. Is it the first object?
> Then next time, if we write at [0MB, 1MB], then the object named 0000 exists,
> at this time, who is the first? The order is file location or generating time?

It's the object 0 that contains the byte at offset 0, so this logic only 
needs to kick in when zeroing [0, x].

sage

> 
> On 08/14/2013 12:44 PM, Sage Weil wrote:
> > On Wed, 14 Aug 2013, Li Wang wrote:
> > > This patch implements fallocate and punch hole support for Ceph fuse
> > > client.
> > > 
> > > Signed-off-by: Yunchuan Wen <yunchuanwen@ubuntukylin.com>
> > > Signed-off-by: Li Wang <liwang@ubuntukylin.com>
> > > ---
> > > Since the i_size is untrustable without Fs cap, we'd better let the
> > > fallocate go without checking if it beyond the EOF, since OSD will take
> > > care of the situation while truncating beyond end of object. In addition,
> > > during fallocate(), we do not change the i_size, so the file size recorded
> > > by MDS is kept unchanged, that meets the semantic requirement. Instead, if
> > > we thrink the hole to not beyond EOF, consider the following example:
> > > Two clients, say, A and B
> > > 1 Both A and B open the same empty file with O_RW
> > > 2 A do a stat(), confirm the file size is zero
> > > 3 B do writing, get the file bigger
> > > 4 A do punch_hole [0, 999999]
> > > 5 A close file
> > > 6 B close file
> > > Since the file size seen by A may always be zero, if limit the truncate
> > > not beyond EOF, the hole punching will always be cancelled, in spite of
> > > the file is no longer empty.s
> > > 
> > > Does that make sense?
> > 
> > Yep, this sounds right.
> > 
> > BTW, it is pretty easy to write tests along the lines of
> > https://github.com/ceph/ceph/blob/master/qa/workunits/fs/multiclient_sync_read_eof.py
> > to verify this sort of behavior.  A simple python script that takes 2
> > mount points can be called from the QA harness.
> > 
> > > Another question, do we need give a special consideration to the very
> > > first object? For fuse code, filter->zero() does all the hard job, has
> > > it already taken this into account?
> > 
> > Hmm, it looks like Filer is not smart enough to do that. I suggest adding
> > a flag that makes it not delete the first object.
> > 
> > In the meantime I'll pull all of this into wip-fallocate!
> > 
> > sage
> > 
> > 
> > > ---
> > >   src/client/Client.cc           |   93
> > > ++++++++++++++++++++++++++++++++++++++++
> > >   src/client/Client.h            |    3 ++
> > >   src/client/fuse_ll.cc          |   26 +++++++++++
> > >   src/include/cephfs/libcephfs.h |   18 ++++++++
> > >   src/libcephfs.cc               |    8 ++++
> > >   5 files changed, 148 insertions(+)
> > > 
> > > diff --git a/src/client/Client.cc b/src/client/Client.cc
> > > index ae7ddf6..b340df5 100644
> > > --- a/src/client/Client.cc
> > > +++ b/src/client/Client.cc
> > > @@ -22,6 +22,7 @@
> > >   #include <sys/stat.h>
> > >   #include <sys/param.h>
> > >   #include <fcntl.h>
> > > +#include <linux/falloc.h>
> > > 
> > >   #include <sys/statvfs.h>
> > > 
> > > @@ -7664,6 +7665,98 @@ int Client::ll_fsync(Fh *fh, bool syncdataonly)
> > >     return _fsync(fh, syncdataonly);
> > >   }
> > > 
> > > +int Client::_fallocate(Fh *fh, int mode, int64_t offset, int64_t length)
> > > +{
> > > +  if (offset < 0 || length <= 0)
> > > +    return -EINVAL;
> > > +
> > > +  if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
> > > +    return -EOPNOTSUPP;
> > > +
> > > +  if ((mode & FALLOC_FL_PUNCH_HOLE) && !(mode & FALLOC_FL_KEEP_SIZE))
> > > +    return -EOPNOTSUPP;
> > > +
> > > +  if (osdmap->test_flag(CEPH_OSDMAP_FULL) && !(mode &
> > > FALLOC_FL_PUNCH_HOLE))
> > > +    return -ENOSPC;
> > > +
> > > +  Inode *in = fh->inode;
> > > +
> > > +  if (in->snapid != CEPH_NOSNAP)
> > > +    return -EROFS;
> > > +
> > > +  if ((fh->mode & CEPH_FILE_MODE_WR) == 0)
> > > +    return -EBADF;
> > > +
> > > +  int have;
> > > +  int r = get_caps(in, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER, &have,
> > > -1);
> > > +  if (r < 0)
> > > +    return r;
> > > +
> > > +  if (mode & FALLOC_FL_PUNCH_HOLE) {
> > > +    Mutex flock("Client::_punch_hole flock");
> > > +    Cond cond;
> > > +    bool done = false;
> > > +    Context *onfinish = new C_SafeCond(&flock, &cond, &done);
> > > +    Context *onsafe = new C_Client_SyncCommit(this, in);
> > > +
> > > +    unsafe_sync_write++;
> > > +    get_cap_ref(in, CEPH_CAP_FILE_BUFFER);
> > > +
> > > +    _invalidate_inode_cache(in, offset, length, true);
> > > +    r = filer->zero(in->ino, &in->layout,
> > > +                    in->snaprealm->get_snap_context(),
> > > +                    offset, length,
> > > +                    ceph_clock_now(cct),
> > > +                    0, onfinish, onsafe);
> > > +    if (r < 0)
> > > +      goto done;
> > > +
> > > +    client_lock.Unlock();
> > > +    flock.Lock();
> > > +    while (!done)
> > > +      cond.Wait(flock);
> > > +    flock.Unlock();
> > > +    client_lock.Lock();
> > > +  } else if (!(mode & FALLOC_FL_KEEP_SIZE)) {
> > > +    uint64_t size = offset + length;
> > > +    if (size > in->size) {
> > > +      in->size = size;
> > > +      mark_caps_dirty(in, CEPH_CAP_FILE_WR);
> > > +
> > > +      if ((in->size << 1) >= in->max_size &&
> > > +          (in->reported_size << 1) < in->max_size)
> > > +        check_caps(in, false);
> > > +    }
> > > +  }
> > > +
> > > +  in->mtime = ceph_clock_now(cct);
> > > +  mark_caps_dirty(in, CEPH_CAP_FILE_WR);
> > > +
> > > +done:
> > > +  put_cap_ref(in, CEPH_CAP_FILE_WR);
> > > +  return r;
> > > +}
> > > +
> > > +int Client::ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length)
> > > +{
> > > +  Mutex::Locker lock(client_lock);
> > > +  ldout(cct, 3) << "ll_fallocate " << fh << " " << fh->inode->ino << " "
> > > << dendl;
> > > +  tout(cct) << "ll_fallocate " << mode << " " << offset << " " << length
> > > << std::endl;
> > > +  tout(cct) << (unsigned long)fh << std::endl;
> > > +
> > > +  return _fallocate(fh, mode, offset, length);
> > > +}
> > > +
> > > +int Client::fallocate(int fd, int mode, loff_t offset, loff_t length)
> > > +{
> > > +  Mutex::Locker lock(client_lock);
> > > +  tout(cct) << "fallocate " << " " << fd << mode << " " << offset << " "
> > > << length << std::endl;
> > > +
> > > +  Fh *fh = get_filehandle(fd);
> > > +  if (!fh)
> > > +    return -EBADF;
> > > +  return _fallocate(fh, mode, offset, length);
> > > +}
> > > 
> > >   int Client::ll_release(Fh *fh)
> > >   {
> > > diff --git a/src/client/Client.h b/src/client/Client.h
> > > index 96e8937..218fe10 100644
> > > --- a/src/client/Client.h
> > > +++ b/src/client/Client.h
> > > @@ -555,6 +555,7 @@ private:
> > >     int _flush(Fh *fh);
> > >     int _fsync(Fh *fh, bool syncdataonly);
> > >     int _sync_fs();
> > > +  int _fallocate(Fh *fh, int mode, int64_t offset, int64_t length);
> > > 
> > >     int get_or_create(Inode *dir, const char* name,
> > >   		    Dentry **pdn, bool expect_null=false);
> > > @@ -653,6 +654,7 @@ public:
> > >     int ftruncate(int fd, loff_t size);
> > >     int fsync(int fd, bool syncdataonly);
> > >     int fstat(int fd, struct stat *stbuf);
> > > +  int fallocate(int fd, int mode, loff_t offset, loff_t length);
> > > 
> > >     // full path xattr ops
> > >     int getxattr(const char *path, const char *name, void *value, size_t
> > > size);
> > > @@ -722,6 +724,7 @@ public:
> > >     int ll_write(Fh *fh, loff_t off, loff_t len, const char *data);
> > >     int ll_flush(Fh *fh);
> > >     int ll_fsync(Fh *fh, bool syncdataonly);
> > > +  int ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length);
> > >     int ll_release(Fh *fh);
> > >     int ll_statfs(vinodeno_t vino, struct statvfs *stbuf);
> > > 
> > > diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc
> > > index 8339553..3eab648 100644
> > > --- a/src/client/fuse_ll.cc
> > > +++ b/src/client/fuse_ll.cc
> > > @@ -399,6 +399,20 @@ static void fuse_ll_ioctl(fuse_req_t req, fuse_ino_t
> > > ino, int cmd, void *arg, st
> > >   }
> > >   #endif
> > > 
> > > +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
> > > +
> > > +static void fuse_ll_fallocate(fuse_req_t req, fuse_ino_t ino, int mode,
> > > +                              off_t offset, off_t length,
> > > +                              struct fuse_file_info *fi)
> > > +{
> > > +  CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
> > > +  Fh *fh = (Fh*)fi->fh;
> > > +  int r = cfuse->client->ll_fallocate(fh, mode, offset, length);
> > > +  fuse_reply_err(req, -r);
> > > +}
> > > +
> > > +#endif
> > > +
> > >   static void fuse_ll_release(fuse_req_t req, fuse_ino_t ino, struct
> > > fuse_file_info *fi)
> > >   {
> > >     CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
> > > @@ -599,8 +613,20 @@ const static struct fuse_lowlevel_ops fuse_ll_oper =
> > > {
> > >    getlk: 0,
> > >    setlk: 0,
> > >    bmap: 0,
> > > +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 8)
> > >   #ifdef FUSE_IOCTL_COMPAT
> > >    ioctl: fuse_ll_ioctl,
> > > +#else
> > > + ioctl: 0,
> > > +#endif
> > > + poll: 0,
> > > +#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
> > > + write_buf: 0,
> > > + retrieve_reply: 0,
> > > + forget_multi: 0,
> > > + flock: 0,
> > > + fallocate: fuse_ll_fallocate
> > > +#endif
> > >   #endif
> > >   };
> > > 
> > > diff --git a/src/include/cephfs/libcephfs.h
> > > b/src/include/cephfs/libcephfs.h
> > > index 93e86e7..9b74f63 100644
> > > --- a/src/include/cephfs/libcephfs.h
> > > +++ b/src/include/cephfs/libcephfs.h
> > > @@ -709,6 +709,24 @@ int ceph_ftruncate(struct ceph_mount_info *cmount,
> > > int fd, loff_t size);
> > >   int ceph_fsync(struct ceph_mount_info *cmount, int fd, int
> > > syncdataonly);
> > > 
> > >   /**
> > > + * Preallocate or release disk space for the file for the byte range.
> > > + *
> > > + * @param cmount the ceph mount handle to use for performing the
> > > fallocate.
> > > + * @param fd the file descriptor of the file to fallocate.
> > > + * @param mode the flags determines the operation to be performed on the
> > > given range.
> > > + *        default operation (0) allocate and initialize to zero the file
> > > in the byte range,
> > > + *        and the file size will be changed if offset + length is greater
> > > than
> > > + *        the file size. if the FALLOC_FL_KEEP_SIZE flag is specified in
> > > the mode,
> > > + *        the file size will not be changed. if the FALLOC_FL_PUNCH_HOLE
> > > flag is
> > > + *        specified in the mode, the operation is deallocate space and
> > > zero the byte range.
> > > + * @param offset the byte range starting.
> > > + * @param length the length of the range.
> > > + * @return 0 on success or a negative error code on failure.
> > > + */
> > > +int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
> > > +	                      loff_t offset, loff_t length);
> > > +
> > > +/**
> > >    * Get the open file's statistics.
> > >    *
> > >    * @param cmount the ceph mount handle to use for performing the fstat.
> > > diff --git a/src/libcephfs.cc b/src/libcephfs.cc
> > > index 16b130a..306c4ba 100644
> > > --- a/src/libcephfs.cc
> > > +++ b/src/libcephfs.cc
> > > @@ -700,6 +700,14 @@ extern "C" int ceph_fsync(struct ceph_mount_info
> > > *cmount, int fd, int syncdataon
> > >     return cmount->get_client()->fsync(fd, syncdataonly);
> > >   }
> > > 
> > > +extern "C" int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int
> > > mode,
> > > +	                      loff_t offset, loff_t length)
> > > +{
> > > +  if (!cmount->is_mounted())
> > > +    return -ENOTCONN;
> > > +  return cmount->get_client()->fallocate(fd, mode, offset, length);
> > > +}
> > > +
> > >   extern "C" int ceph_fstat(struct ceph_mount_info *cmount, int fd, struct
> > > stat *stbuf)
> > >   {
> > >     if (!cmount->is_mounted())
> > > --
> > > 1.7.9.5
> > > 
> > > 
> > 
> --
> To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> 
--
To unsubscribe from this list: send the line "unsubscribe ceph-devel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/src/client/Client.cc b/src/client/Client.cc
index ae7ddf6..b340df5 100644
--- a/src/client/Client.cc
+++ b/src/client/Client.cc
@@ -22,6 +22,7 @@ 
 #include <sys/stat.h>
 #include <sys/param.h>
 #include <fcntl.h>
+#include <linux/falloc.h>
 
 #include <sys/statvfs.h>
 
@@ -7664,6 +7665,98 @@  int Client::ll_fsync(Fh *fh, bool syncdataonly)
   return _fsync(fh, syncdataonly);
 }
 
+int Client::_fallocate(Fh *fh, int mode, int64_t offset, int64_t length)
+{
+  if (offset < 0 || length <= 0)
+    return -EINVAL;
+
+  if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
+    return -EOPNOTSUPP;
+
+  if ((mode & FALLOC_FL_PUNCH_HOLE) && !(mode & FALLOC_FL_KEEP_SIZE))
+    return -EOPNOTSUPP;
+
+  if (osdmap->test_flag(CEPH_OSDMAP_FULL) && !(mode & FALLOC_FL_PUNCH_HOLE))
+    return -ENOSPC;
+
+  Inode *in = fh->inode;
+
+  if (in->snapid != CEPH_NOSNAP)
+    return -EROFS;
+
+  if ((fh->mode & CEPH_FILE_MODE_WR) == 0)
+    return -EBADF;
+
+  int have;
+  int r = get_caps(in, CEPH_CAP_FILE_WR, CEPH_CAP_FILE_BUFFER, &have, -1);
+  if (r < 0)
+    return r;
+
+  if (mode & FALLOC_FL_PUNCH_HOLE) {
+    Mutex flock("Client::_punch_hole flock");
+    Cond cond;
+    bool done = false;
+    Context *onfinish = new C_SafeCond(&flock, &cond, &done);
+    Context *onsafe = new C_Client_SyncCommit(this, in);
+
+    unsafe_sync_write++;
+    get_cap_ref(in, CEPH_CAP_FILE_BUFFER);
+
+    _invalidate_inode_cache(in, offset, length, true);
+    r = filer->zero(in->ino, &in->layout,
+                    in->snaprealm->get_snap_context(),
+                    offset, length,
+                    ceph_clock_now(cct),
+                    0, onfinish, onsafe);
+    if (r < 0)
+      goto done;
+
+    client_lock.Unlock();
+    flock.Lock();
+    while (!done)
+      cond.Wait(flock);
+    flock.Unlock();
+    client_lock.Lock();
+  } else if (!(mode & FALLOC_FL_KEEP_SIZE)) {
+    uint64_t size = offset + length;
+    if (size > in->size) {
+      in->size = size;
+      mark_caps_dirty(in, CEPH_CAP_FILE_WR);
+
+      if ((in->size << 1) >= in->max_size &&
+          (in->reported_size << 1) < in->max_size)
+        check_caps(in, false);
+    }
+  }
+
+  in->mtime = ceph_clock_now(cct);
+  mark_caps_dirty(in, CEPH_CAP_FILE_WR);
+
+done:
+  put_cap_ref(in, CEPH_CAP_FILE_WR);
+  return r;
+}
+
+int Client::ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length)
+{
+  Mutex::Locker lock(client_lock);
+  ldout(cct, 3) << "ll_fallocate " << fh << " " << fh->inode->ino << " " << dendl;
+  tout(cct) << "ll_fallocate " << mode << " " << offset << " " << length << std::endl;
+  tout(cct) << (unsigned long)fh << std::endl;
+
+  return _fallocate(fh, mode, offset, length);
+}
+
+int Client::fallocate(int fd, int mode, loff_t offset, loff_t length)
+{
+  Mutex::Locker lock(client_lock);
+  tout(cct) << "fallocate " << " " << fd << mode << " " << offset << " " << length << std::endl;
+
+  Fh *fh = get_filehandle(fd);
+  if (!fh)
+    return -EBADF;
+  return _fallocate(fh, mode, offset, length);
+}
 
 int Client::ll_release(Fh *fh)
 {
diff --git a/src/client/Client.h b/src/client/Client.h
index 96e8937..218fe10 100644
--- a/src/client/Client.h
+++ b/src/client/Client.h
@@ -555,6 +555,7 @@  private:
   int _flush(Fh *fh);
   int _fsync(Fh *fh, bool syncdataonly);
   int _sync_fs();
+  int _fallocate(Fh *fh, int mode, int64_t offset, int64_t length);
 
   int get_or_create(Inode *dir, const char* name,
 		    Dentry **pdn, bool expect_null=false);
@@ -653,6 +654,7 @@  public:
   int ftruncate(int fd, loff_t size);
   int fsync(int fd, bool syncdataonly);
   int fstat(int fd, struct stat *stbuf);
+  int fallocate(int fd, int mode, loff_t offset, loff_t length);
 
   // full path xattr ops
   int getxattr(const char *path, const char *name, void *value, size_t size);
@@ -722,6 +724,7 @@  public:
   int ll_write(Fh *fh, loff_t off, loff_t len, const char *data);
   int ll_flush(Fh *fh);
   int ll_fsync(Fh *fh, bool syncdataonly);
+  int ll_fallocate(Fh *fh, int mode, loff_t offset, loff_t length);
   int ll_release(Fh *fh);
   int ll_statfs(vinodeno_t vino, struct statvfs *stbuf);
 
diff --git a/src/client/fuse_ll.cc b/src/client/fuse_ll.cc
index 8339553..3eab648 100644
--- a/src/client/fuse_ll.cc
+++ b/src/client/fuse_ll.cc
@@ -399,6 +399,20 @@  static void fuse_ll_ioctl(fuse_req_t req, fuse_ino_t ino, int cmd, void *arg, st
 }
 #endif
 
+#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
+
+static void fuse_ll_fallocate(fuse_req_t req, fuse_ino_t ino, int mode,
+                              off_t offset, off_t length,
+                              struct fuse_file_info *fi)
+{
+  CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
+  Fh *fh = (Fh*)fi->fh;
+  int r = cfuse->client->ll_fallocate(fh, mode, offset, length);
+  fuse_reply_err(req, -r);
+}
+
+#endif
+
 static void fuse_ll_release(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi)
 {
   CephFuse::Handle *cfuse = (CephFuse::Handle *)fuse_req_userdata(req);
@@ -599,8 +613,20 @@  const static struct fuse_lowlevel_ops fuse_ll_oper = {
  getlk: 0,
  setlk: 0,
  bmap: 0,
+#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 8)
 #ifdef FUSE_IOCTL_COMPAT
  ioctl: fuse_ll_ioctl,
+#else
+ ioctl: 0,
+#endif
+ poll: 0,
+#if FUSE_VERSION >= FUSE_MAKE_VERSION(2, 9)
+ write_buf: 0,
+ retrieve_reply: 0,
+ forget_multi: 0,
+ flock: 0,
+ fallocate: fuse_ll_fallocate
+#endif
 #endif
 };
 
diff --git a/src/include/cephfs/libcephfs.h b/src/include/cephfs/libcephfs.h
index 93e86e7..9b74f63 100644
--- a/src/include/cephfs/libcephfs.h
+++ b/src/include/cephfs/libcephfs.h
@@ -709,6 +709,24 @@  int ceph_ftruncate(struct ceph_mount_info *cmount, int fd, loff_t size);
 int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataonly);
 
 /**
+ * Preallocate or release disk space for the file for the byte range.
+ *
+ * @param cmount the ceph mount handle to use for performing the fallocate.
+ * @param fd the file descriptor of the file to fallocate.
+ * @param mode the flags determines the operation to be performed on the given range.
+ *        default operation (0) allocate and initialize to zero the file in the byte range,
+ *        and the file size will be changed if offset + length is greater than
+ *        the file size. if the FALLOC_FL_KEEP_SIZE flag is specified in the mode,
+ *        the file size will not be changed. if the FALLOC_FL_PUNCH_HOLE flag is
+ *        specified in the mode, the operation is deallocate space and zero the byte range.
+ * @param offset the byte range starting.
+ * @param length the length of the range.
+ * @return 0 on success or a negative error code on failure.
+ */
+int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
+	                      loff_t offset, loff_t length);
+
+/**
  * Get the open file's statistics.
  *
  * @param cmount the ceph mount handle to use for performing the fstat.
diff --git a/src/libcephfs.cc b/src/libcephfs.cc
index 16b130a..306c4ba 100644
--- a/src/libcephfs.cc
+++ b/src/libcephfs.cc
@@ -700,6 +700,14 @@  extern "C" int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataon
   return cmount->get_client()->fsync(fd, syncdataonly);
 }
 
+extern "C" int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode,
+	                      loff_t offset, loff_t length)
+{
+  if (!cmount->is_mounted())
+    return -ENOTCONN;
+  return cmount->get_client()->fallocate(fd, mode, offset, length);
+}
+
 extern "C" int ceph_fstat(struct ceph_mount_info *cmount, int fd, struct stat *stbuf)
 {
   if (!cmount->is_mounted())