LibCephFS (Python)

The cephfs python module provides access to CephFS service.

API calls

This module is a thin wrapper around libcephfs.

class cephfs.DirEntry(d_ino, d_off, d_reclen, d_type, d_name)
class cephfs.LibCephFS

libcephfs python wrapper

abort_conn()

Abort mds connections.

chdir()

Change the current working directory.

参数

path -- the path to the working directory to change into.

chmod()

Change directory mode.

参数
  • path -- the path of the directory to create. This must be either an absolute path or a relative path off of the current working directory.

  • mode -- the permissions the directory should have once created.

chown()

Change directory ownership

参数
  • path -- the path of the directory to change.

  • uid -- the uid to set

  • gid -- the gid to set

  • follow_symlink -- perform the operation on the target file if @path is a symbolic link (default)

close()

Close the open file.

参数

fd -- the file descriptor referring to the open file.

closedir()

Close the open directory.

参数

handle -- the open directory stream handle

conf_get()

Gets the configuration value as a string.

参数

option -- the config option to get

conf_parse_argv()

Parse the command line arguments and load the configuration parameters.

参数

argv -- the argument list

conf_read_file()

Load the ceph configuration from the specified config file.

参数

opt (conffile str) -- the path to ceph.conf to override the default settings

conf_set()

Sets a configuration value from a string.

参数
  • option -- the configuration option to set

  • value -- the value of the configuration option to set

create()

Create a mount handle for interacting with Ceph. All libcephfs functions operate on a mount info handle.

参数
  • opt (conf dict) -- settings overriding the default ones and conffile

  • optional (conffile Union[int,str],) -- the path to ceph.conf to override the default settings

Auth_id str opt

the id used to authenticate the client entity

debug_get_fd_caps()

Get the capabilities currently issued to the client given the fd.

参数

fd -- the file descriptor to get issued

debug_get_file_caps()

Get the capabilities currently issued to the client given the path.

参数

path -- the path of the file/directory to get the capabilities of.

fallocate()

Preallocate or release disk space for the file for the byte range.

参数
  • fd -- the file descriptor of the file to fallocate.

  • 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.

  • offset -- the byte range starting.

  • length -- the length of the range.

fchmod()

Change file mode based on fd.

参数
  • fd -- the file descriptor of the file to change file mode

  • mode -- the permissions to be set.

fchown()

Change file ownership

参数
  • fd -- the file descriptor of the file to change ownership

  • uid -- the uid to set

  • gid -- the gid to set

fgetxattr()

Get an extended attribute given the fd of a file.

参数
  • fd -- the open file descriptor referring to the file

  • name -- the name of the extended attribute to get

  • size -- the size of the pre-allocated buffer

flistxattr()

List the extended attribute keys set on a file.

参数
  • fd -- the open file descriptor referring to the file.

  • size -- the size of list buffer to be filled with extended attribute keys.

flock()

Apply or remove an advisory lock.

参数
  • fd -- the open file descriptor to change advisory lock.

  • operation -- the advisory lock operation to be performed on the file

  • owner -- the user-supplied owner identifier (an arbitrary integer)

fremovexattr()

Remove an extended attribute of a file.

参数
  • fd -- the open file descriptor referring to the file.

  • name -- name of the extended attribute to remove.

fsetattrx()

Set a file's attributes.

参数
  • path -- the path to the file/directory to set the attributes of.

  • mask -- a mask of all the CEPH_SETATTR_* values that have been set in the statx struct.

  • stx -- a dict of statx structure that must include attribute values to set on the file.

fsetxattr()

Set an extended attribute on a file.

参数
  • fd -- the open file descriptor referring to the file.

  • name -- the name of the extended attribute to set.

  • value -- the bytes of the extended attribute value

fstat()

Get an open file's extended statistics and attributes.

参数

fd -- the file descriptor of the file to get statistics of.

fsync()

Synchronize an open file to persistent media.

参数
  • fd -- the file descriptor of the file to sync.

  • syncdataonly -- a boolean whether to synchronize metadata and data (0) or just data (1).

ftruncate()

Truncate the file to the given size. If this operation causes the file to expand, the empty bytes will be filled in with zeros.

参数
  • path -- the path to the file to truncate.

  • size -- the new size of the file.

futime()

Set access and modification time for a file pointed by descriptor

参数
  • fd -- file descriptor of the open file

  • times -- if times is not None, it must be a tuple (atime, mtime)

futimens()

Set access and modification time for a file pointer by descriptor

参数
  • fd -- file descriptor of the open file

  • times -- if times is not None, it must be a tuple (atime, mtime)

futimes()

Set access and modification time for a file pointer by descriptor

参数
  • fd -- file descriptor of the open file

  • times -- if times is not None, it must be a tuple (atime, mtime)

get_addrs()

Get associated client addresses with this RADOS session.

get_cap_return_timeout()

Get the amount of time that the client has to return caps

In the event that a client does not return its caps, the MDS may blocklist it after this timeout. Applications should check this value and ensure that they set the delegation timeout to a value lower than this.

get_default_pool()

Get the default pool name and id of cephfs. This returns dict{pool_name, pool_id}.

get_file_replication()

Get the file replication information from an open file descriptor.

参数

fd -- the open file descriptor referring to the file to get the replication information of.

get_fscid()

Return the file system id for this fs client.

get_instance_id()

Get a global id for current instance

get_layout()

Get the file layout from an open file descriptor.

参数

fd -- the open file descriptor referring to the file to get the layout of.

get_path_replication()

Get the file replication information given the path.

参数

path -- the path of the file/directory to get the replication information of.

get_pool_id()

Get the id of the named pool.

参数

pool_name -- the name of the pool.

get_pool_replication()

Get the pool replication factor.

参数

pool_id -- the pool id to look up

getcwd()

Get the current working directory.

返回

the path to the current working directory

getxattr()

Get an extended attribute.

参数
  • path -- the path to the file

  • name -- the name of the extended attribute to get

  • size -- the size of the pre-allocated buffer

init()

Initialize the filesystem client (but do not mount the filesystem yet)

lazyio()

Enable/disable lazyio for the file.

参数
  • fd -- the file descriptor of the file for which to enable lazio.

  • enable -- a boolean to enable lazyio or disable lazyio.

lazyio_propagate()

Flushes the write buffer for the file thereby propogating the buffered write to the file.

参数
  • fd -- the file descriptor of the file to sync.

  • offset -- the byte range starting.

  • count -- the number of bytes starting from offset.

lazyio_synchronize()

Flushes the write buffer for the file and invalidate the read cache. This allows a subsequent read operation to read and cache data directly from the file and hence everyone's propagated writes would be visible.

参数
  • fd -- the file descriptor of the file to sync.

  • offset -- the byte range starting.

  • count -- the number of bytes starting from offset.

lchmod()

Change file mode. If the path is a symbolic link, it won't be dereferenced.

参数
  • path -- the path of the file. This must be either an absolute path or a relative path off of the current working directory.

  • mode -- the permissions to be set .

lchown()

Change ownership of a symbolic link

参数
  • path -- the path of the symbolic link to change.

  • uid -- the uid to set

  • gid -- the gid to set

lgetxattr()

Get an extended attribute without following symbolic links. This function is identical to ceph_getxattr, but if the path refers to a symbolic link, we get the extended attributes of the symlink rather than the attributes of the file it points to.

参数
  • path -- the path to the file

  • name -- the name of the extended attribute to get

  • size -- the size of the pre-allocated buffer

Create a link.

参数
  • existing -- the path to the existing file/directory to link to.

  • newname -- the path to the new file/directory to link from.

listxattr()

List the extended attribute keys set on a file.

参数
  • path -- path of the file.

  • size -- the size of list buffer to be filled with extended attribute keys.

llistxattr()

List the extended attribute keys set on a file but do not follow symbolic link.

参数
  • path -- path of the file.

  • size -- the size of list buffer to be filled with extended attribute keys.

lremovexattr()

Remove an extended attribute of a file but do not follow symbolic link.

参数
  • path -- path of the file.

  • name -- name of the extended attribute to remove.

lseek()

Set the file's current position.

参数
  • fd -- the file descriptor of the open file to read from.

  • offset -- the offset in the file to read from. If this value is negative, the function reads from the current offset of the file descriptor.

  • whence -- the flag to indicate what type of seeking to performs:SEEK_SET, SEEK_CUR, SEEK_END

lsetxattr()

Set an extended attribute on a file but do not follow symbolic link.

参数
  • path -- the path to the file.

  • name -- the name of the extended attribute to set.

  • value -- the bytes of the extended attribute value

lstat()

Get a file's extended statistics and attributes. When file's a symbolic link, return the informaion of the link itself rather than that of the file it points too.

参数

path -- the file or directory to get the statistics of.

lutimes()

Set access and modification time for a file. If the file is a symbolic link do not follow to the target.

参数
  • path -- file path for which timestamps have to be changed

  • times -- if times is not None, it must be a tuple (atime, mtime)

mds_command()
返回

3-tuple of output status int, output status string, output data

mkdir()

Create a directory.

参数
  • path -- the path of the directory to create. This must be either an absolute path or a relative path off of the current working directory.

  • mode -- the permissions the directory should have once created.

mkdirs()

Create multiple directories at once.

参数
  • path -- the full path of directories and sub-directories that should be created.

  • mode -- the permissions the directory should have once created

mknod()

Make a block or character special file.

参数
  • path -- the path to the special file.

  • mode -- the permissions to use and the type of special file. The type can be one of stat.S_IFREG, stat.S_IFCHR, stat.S_IFBLK, stat.S_IFIFO. Both should be combined using bitwise OR.

  • rdev -- If the file type is stat.S_IFCHR or stat.S_IFBLK then this parameter specifies the major and minor numbers of the newly created device special file. Otherwise, it is ignored.

mksnap()

Create a snapshot.

参数
  • path -- path of the directory to snapshot.

  • name -- snapshot name

  • mode -- permission of the snapshot

  • metadata -- metadata key/value to store with the snapshot

Raises
class

TypeError

Raises
class

Error

返回

0 on success

mount()

Perform a mount using the path for the root of the mount.

open()

Create and/or open a file.

参数
  • path -- the path of the file to open. If the flags parameter includes O_CREAT, the file will first be created before opening.

  • flags -- set of option masks that control how the file is created/opened.

  • mode -- the permissions to place on the file if the file does not exist and O_CREAT is specified in the flags.

opendir()

Open the given directory.

参数

path -- the path name of the directory to open. Must be either an absolute path or a path relative to the current working directory.

返回

the open directory stream handle

preadv()

Write data to a file.

参数
  • fd -- the file descriptor of the open file to read from

  • buffers -- the list of byte object to read from the file

  • offset -- the offset of the file read from. If this value is negative, the function reads from the current offset of the file descriptor.

pwritev()

Write data to a file.

参数
  • fd -- the file descriptor of the open file to write to

  • buffers -- the list of byte object to write to the file

  • offset -- the offset of the file write into. If this value is negative, the function writes to the current offset of the file descriptor.

read()

Read data from the file.

参数
  • fd -- the file descriptor of the open file to read from.

  • offset -- the offset in the file to read from. If this value is negative, the function reads from the current offset of the file descriptor.

  • l -- the flag to indicate what type of seeking to perform

readdir()

Get the next entry in an open directory.

参数

handle -- the open directory stream handle

返回

the next directory entry or None if at the end of the directory (or the directory is empty. This pointer should not be freed by the caller, and is only safe to access between return and the next call to readdir or closedir.

Read a symbolic link.

参数
  • path -- the path to the symlink to read

  • size -- the length of the buffer

返回

buffer to hold the path of the file that the symlink points to.

removexattr()

Remove an extended attribute of a file.

参数
  • path -- path of the file.

  • name -- name of the extended attribute to remove.

rename()

Rename a file or directory.

参数
  • src -- the path to the existing file or directory.

  • dst -- the new name of the file or directory.

rewinddir()

Rewind the directory stream to the beginning of the directory.

参数

handle -- the open directory stream handle

rmdir()

Remove a directory.

参数

path -- the path of the directory to remove.

rmsnap()

Remove a snapshot.

参数
  • path -- path of the directory for removing snapshot

  • name -- snapshot name

Raises
class

Error

返回

0 on success

seekdir()

Move the directory stream to a position specified by the given offset.

参数
  • handle -- the open directory stream handle

  • offset -- the position to move the directory stream to. This offset should be a value returned by telldir. Note that this value does not refer to the nth entry in a directory, and can not be manipulated with plus or minus.

set_mount_timeout()

Set mount timeout

参数

timeout -- mount timeout

set_session_timeout()

Set ceph client session timeout. Must be called before mount.

参数

timeout -- the timeout to set

set_uuid()

Set ceph client uuid. Must be called before mount.

参数

uuid -- the uuid to set

setattrx()

Set a file's attributes.

参数
  • path -- the path to the file/directory to set the attributes of.

  • mask -- a mask of all the CEPH_SETATTR_* values that have been set in the statx struct.

  • stx -- a dict of statx structure that must include attribute values to set on the file.

  • flags -- mask of AT_* flags (only AT_ATTR_NOFOLLOW is respected for now)

setxattr()

Set an extended attribute on a file.

参数
  • path -- the path to the file.

  • name -- the name of the extended attribute to set.

  • value -- the bytes of the extended attribute value

shutdown()

Unmount and destroy the ceph mount handle.

snap_info()

Fetch sapshot info

参数

path -- snapshot path

Raises
class

Error

返回

snapshot metadata

stat()

Get a file's extended statistics and attributes.

参数

path -- the file or directory to get the statistics of.

statfs()

Perform a statfs on the ceph file system. This call fills in file system wide statistics into the passed in buffer.

参数

path -- any path within the mounted filesystem

statx()

Get a file's extended statistics and attributes.

参数
  • path -- the file or directory to get the statistics of.

  • mask -- want bitfield of CEPH_STATX_* flags showing designed attributes.

  • flag -- bitfield that can be used to set AT_* modifier flags (only AT_NO_ATTR_SYNC and AT_SYMLINK_NOFOLLOW)

Creates a symbolic link.

参数
  • existing -- the path to the existing file/directory to link to.

  • newname -- the path to the new file/directory to link from.

sync_fs()

Synchronize all filesystem data to persistent media

telldir()

Get the current position of a directory stream.

参数

handle -- the open directory stream handle

Return value

The position of the directory stream. Note that the offsets returned by ceph_telldir do not have a particular order (cannot be compared with inequality).

truncate()

Truncate the file to the given size. If this operation causes the file to expand, the empty bytes will be filled in with zeros.

参数
  • path -- the path to the file to truncate.

  • size -- the new size of the file.

Removes a file, link, or symbolic link. If the file/link has multiple links to it, the file will not disappear from the namespace until all references to it are removed.

参数

path -- the path of the file or link to unlink.

unmount()

Unmount a mount handle.

utime()

Set access and modification time for path

参数
  • path -- file path for which timestamps have to be changed

  • times -- if times is not None, it must be a tuple (atime, mtime)

utimes()

Set access and modification time for path

参数
  • path -- file path for which timestamps have to be changed

  • times -- if times is not None, it must be a tuple (atime, mtime)

  • follow_symlink -- perform the operation on the target file if @path is a symbolic link (default)

version()

Get the version number of the libcephfs C library.

返回

a tuple of (major, minor, extra) components of the libcephfs version

write()

Write data to a file.

参数
  • fd -- the file descriptor of the open file to write to

  • buf -- the bytes to write to the file

  • offset -- the offset of the file write into. If this value is negative, the function writes to the current offset of the file descriptor.