2013-11-24 15:54:58 +01:00
|
|
|
/*
|
|
|
|
* fs/kernfs/inode.c - kernfs inode implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2001-3 Patrick Mochel
|
|
|
|
* Copyright (c) 2007 SUSE Linux Products GmbH
|
|
|
|
* Copyright (c) 2007, 2013 Tejun Heo <tj@kernel.org>
|
|
|
|
*
|
|
|
|
* This file is released under the GPLv2.
|
|
|
|
*/
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
#include <linux/pagemap.h>
|
|
|
|
#include <linux/backing-dev.h>
|
|
|
|
#include <linux/capability.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/xattr.h>
|
|
|
|
#include <linux/security.h>
|
|
|
|
|
|
|
|
#include "kernfs-internal.h"
|
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
static const struct address_space_operations kernfs_aops = {
|
2013-11-28 20:54:32 +01:00
|
|
|
.readpage = simple_readpage,
|
|
|
|
.write_begin = simple_write_begin,
|
|
|
|
.write_end = simple_write_end,
|
|
|
|
};
|
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
static const struct inode_operations kernfs_iops = {
|
2013-12-11 20:11:58 +01:00
|
|
|
.permission = kernfs_iop_permission,
|
|
|
|
.setattr = kernfs_iop_setattr,
|
|
|
|
.getattr = kernfs_iop_getattr,
|
|
|
|
.listxattr = kernfs_iop_listxattr,
|
2013-11-28 20:54:32 +01:00
|
|
|
};
|
|
|
|
|
2013-12-11 20:11:55 +01:00
|
|
|
static struct kernfs_iattrs *kernfs_iattrs(struct kernfs_node *kn)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2014-04-02 22:40:52 +02:00
|
|
|
static DEFINE_MUTEX(iattr_mutex);
|
|
|
|
struct kernfs_iattrs *ret;
|
2013-11-28 20:54:32 +01:00
|
|
|
struct iattr *iattrs;
|
|
|
|
|
2014-04-02 22:40:52 +02:00
|
|
|
mutex_lock(&iattr_mutex);
|
|
|
|
|
2013-12-11 20:11:54 +01:00
|
|
|
if (kn->iattr)
|
2014-04-02 22:40:52 +02:00
|
|
|
goto out_unlock;
|
2013-11-23 23:40:01 +01:00
|
|
|
|
2013-12-11 20:11:55 +01:00
|
|
|
kn->iattr = kzalloc(sizeof(struct kernfs_iattrs), GFP_KERNEL);
|
2013-12-11 20:11:54 +01:00
|
|
|
if (!kn->iattr)
|
2014-04-02 22:40:52 +02:00
|
|
|
goto out_unlock;
|
2013-12-11 20:11:54 +01:00
|
|
|
iattrs = &kn->iattr->ia_iattr;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
/* assign default attributes */
|
2013-12-11 20:11:54 +01:00
|
|
|
iattrs->ia_mode = kn->mode;
|
2013-11-28 20:54:32 +01:00
|
|
|
iattrs->ia_uid = GLOBAL_ROOT_UID;
|
|
|
|
iattrs->ia_gid = GLOBAL_ROOT_GID;
|
2016-02-22 16:17:53 +01:00
|
|
|
|
|
|
|
ktime_get_real_ts(&iattrs->ia_atime);
|
|
|
|
iattrs->ia_mtime = iattrs->ia_atime;
|
|
|
|
iattrs->ia_ctime = iattrs->ia_atime;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-12-11 20:11:54 +01:00
|
|
|
simple_xattrs_init(&kn->iattr->xattrs);
|
2014-04-02 22:40:52 +02:00
|
|
|
out_unlock:
|
|
|
|
ret = kn->iattr;
|
|
|
|
mutex_unlock(&iattr_mutex);
|
|
|
|
return ret;
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:53 +01:00
|
|
|
static int __kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2013-12-11 20:11:55 +01:00
|
|
|
struct kernfs_iattrs *attrs;
|
2013-11-28 20:54:32 +01:00
|
|
|
struct iattr *iattrs;
|
|
|
|
unsigned int ia_valid = iattr->ia_valid;
|
|
|
|
|
2013-12-11 20:11:55 +01:00
|
|
|
attrs = kernfs_iattrs(kn);
|
2013-11-23 23:40:01 +01:00
|
|
|
if (!attrs)
|
|
|
|
return -ENOMEM;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-11-23 23:40:01 +01:00
|
|
|
iattrs = &attrs->ia_iattr;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
if (ia_valid & ATTR_UID)
|
|
|
|
iattrs->ia_uid = iattr->ia_uid;
|
|
|
|
if (ia_valid & ATTR_GID)
|
|
|
|
iattrs->ia_gid = iattr->ia_gid;
|
|
|
|
if (ia_valid & ATTR_ATIME)
|
|
|
|
iattrs->ia_atime = iattr->ia_atime;
|
|
|
|
if (ia_valid & ATTR_MTIME)
|
|
|
|
iattrs->ia_mtime = iattr->ia_mtime;
|
|
|
|
if (ia_valid & ATTR_CTIME)
|
|
|
|
iattrs->ia_ctime = iattr->ia_ctime;
|
|
|
|
if (ia_valid & ATTR_MODE) {
|
|
|
|
umode_t mode = iattr->ia_mode;
|
2013-12-11 20:11:54 +01:00
|
|
|
iattrs->ia_mode = kn->mode = mode;
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* kernfs_setattr - set iattr on a node
|
2013-12-11 20:11:53 +01:00
|
|
|
* @kn: target node
|
2013-11-28 20:54:32 +01:00
|
|
|
* @iattr: iattr to set
|
|
|
|
*
|
|
|
|
* Returns 0 on success, -errno on failure.
|
|
|
|
*/
|
2013-12-11 20:11:53 +01:00
|
|
|
int kernfs_setattr(struct kernfs_node *kn, const struct iattr *iattr)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_lock(&kernfs_mutex);
|
2013-12-11 20:11:53 +01:00
|
|
|
ret = __kernfs_setattr(kn, iattr);
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_unlock(&kernfs_mutex);
|
2013-11-28 20:54:32 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:58 +01:00
|
|
|
int kernfs_iop_setattr(struct dentry *dentry, struct iattr *iattr)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2015-03-17 23:25:59 +01:00
|
|
|
struct inode *inode = d_inode(dentry);
|
2013-12-11 20:11:53 +01:00
|
|
|
struct kernfs_node *kn = dentry->d_fsdata;
|
2013-11-28 20:54:32 +01:00
|
|
|
int error;
|
|
|
|
|
2013-12-11 20:11:53 +01:00
|
|
|
if (!kn)
|
2013-11-28 20:54:32 +01:00
|
|
|
return -EINVAL;
|
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_lock(&kernfs_mutex);
|
2016-05-26 16:55:18 +02:00
|
|
|
error = setattr_prepare(dentry, iattr);
|
2013-11-28 20:54:32 +01:00
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
2013-12-11 20:11:53 +01:00
|
|
|
error = __kernfs_setattr(kn, iattr);
|
2013-11-28 20:54:32 +01:00
|
|
|
if (error)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* this ignores size changes */
|
|
|
|
setattr_copy(inode, iattr);
|
|
|
|
|
|
|
|
out:
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_unlock(&kernfs_mutex);
|
2013-11-28 20:54:32 +01:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-09-29 17:48:33 +02:00
|
|
|
static int kernfs_node_setsecdata(struct kernfs_iattrs *attrs, void **secdata,
|
2013-12-11 20:11:58 +01:00
|
|
|
u32 *secdata_len)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
|
|
|
void *old_secdata;
|
|
|
|
size_t old_secdata_len;
|
|
|
|
|
2013-11-23 23:40:01 +01:00
|
|
|
old_secdata = attrs->ia_secdata;
|
|
|
|
old_secdata_len = attrs->ia_secdata_len;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-11-23 23:40:01 +01:00
|
|
|
attrs->ia_secdata = *secdata;
|
|
|
|
attrs->ia_secdata_len = *secdata_len;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
*secdata = old_secdata;
|
|
|
|
*secdata_len = old_secdata_len;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:58 +01:00
|
|
|
ssize_t kernfs_iop_listxattr(struct dentry *dentry, char *buf, size_t size)
|
2013-11-23 23:40:02 +01:00
|
|
|
{
|
2013-12-11 20:11:53 +01:00
|
|
|
struct kernfs_node *kn = dentry->d_fsdata;
|
2013-12-11 20:11:55 +01:00
|
|
|
struct kernfs_iattrs *attrs;
|
2013-11-23 23:40:02 +01:00
|
|
|
|
2013-12-11 20:11:55 +01:00
|
|
|
attrs = kernfs_iattrs(kn);
|
2013-11-23 23:40:02 +01:00
|
|
|
if (!attrs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
2015-12-02 14:44:39 +01:00
|
|
|
return simple_xattr_list(d_inode(dentry), &attrs->xattrs, buf, size);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_default_inode_attr(struct inode *inode, umode_t mode)
|
|
|
|
{
|
|
|
|
inode->i_mode = mode;
|
2016-02-22 16:17:53 +01:00
|
|
|
inode->i_atime = inode->i_mtime =
|
2016-09-14 16:48:06 +02:00
|
|
|
inode->i_ctime = current_time(inode);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_inode_attr(struct inode *inode, struct iattr *iattr)
|
|
|
|
{
|
2016-02-22 16:17:53 +01:00
|
|
|
struct super_block *sb = inode->i_sb;
|
2013-11-28 20:54:32 +01:00
|
|
|
inode->i_uid = iattr->ia_uid;
|
|
|
|
inode->i_gid = iattr->ia_gid;
|
2016-02-22 16:17:53 +01:00
|
|
|
inode->i_atime = timespec_trunc(iattr->ia_atime, sb->s_time_gran);
|
|
|
|
inode->i_mtime = timespec_trunc(iattr->ia_mtime, sb->s_time_gran);
|
|
|
|
inode->i_ctime = timespec_trunc(iattr->ia_ctime, sb->s_time_gran);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:58 +01:00
|
|
|
static void kernfs_refresh_inode(struct kernfs_node *kn, struct inode *inode)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2013-12-11 20:11:55 +01:00
|
|
|
struct kernfs_iattrs *attrs = kn->iattr;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-12-11 20:11:54 +01:00
|
|
|
inode->i_mode = kn->mode;
|
2013-11-23 23:40:01 +01:00
|
|
|
if (attrs) {
|
2013-12-11 20:11:53 +01:00
|
|
|
/*
|
|
|
|
* kernfs_node has non-default attributes get them from
|
|
|
|
* persistent copy in kernfs_node.
|
2013-11-28 20:54:32 +01:00
|
|
|
*/
|
2013-11-23 23:40:01 +01:00
|
|
|
set_inode_attr(inode, &attrs->ia_iattr);
|
|
|
|
security_inode_notifysecctx(inode, attrs->ia_secdata,
|
|
|
|
attrs->ia_secdata_len);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:56 +01:00
|
|
|
if (kernfs_type(kn) == KERNFS_DIR)
|
2013-12-11 20:11:54 +01:00
|
|
|
set_nlink(inode, kn->dir.subdirs + 2);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
statx: Add a system call to make enhanced file info available
Add a system call to make extended file information available, including
file creation and some attribute flags where available through the
underlying filesystem.
The getattr inode operation is altered to take two additional arguments: a
u32 request_mask and an unsigned int flags that indicate the
synchronisation mode. This change is propagated to the vfs_getattr*()
function.
Functions like vfs_stat() are now inline wrappers around new functions
vfs_statx() and vfs_statx_fd() to reduce stack usage.
========
OVERVIEW
========
The idea was initially proposed as a set of xattrs that could be retrieved
with getxattr(), but the general preference proved to be for a new syscall
with an extended stat structure.
A number of requests were gathered for features to be included. The
following have been included:
(1) Make the fields a consistent size on all arches and make them large.
(2) Spare space, request flags and information flags are provided for
future expansion.
(3) Better support for the y2038 problem [Arnd Bergmann] (tv_sec is an
__s64).
(4) Creation time: The SMB protocol carries the creation time, which could
be exported by Samba, which will in turn help CIFS make use of
FS-Cache as that can be used for coherency data (stx_btime).
This is also specified in NFSv4 as a recommended attribute and could
be exported by NFSD [Steve French].
(5) Lightweight stat: Ask for just those details of interest, and allow a
netfs (such as NFS) to approximate anything not of interest, possibly
without going to the server [Trond Myklebust, Ulrich Drepper, Andreas
Dilger] (AT_STATX_DONT_SYNC).
(6) Heavyweight stat: Force a netfs to go to the server, even if it thinks
its cached attributes are up to date [Trond Myklebust]
(AT_STATX_FORCE_SYNC).
And the following have been left out for future extension:
(7) Data version number: Could be used by userspace NFS servers [Aneesh
Kumar].
Can also be used to modify fill_post_wcc() in NFSD which retrieves
i_version directly, but has just called vfs_getattr(). It could get
it from the kstat struct if it used vfs_xgetattr() instead.
(There's disagreement on the exact semantics of a single field, since
not all filesystems do this the same way).
(8) BSD stat compatibility: Including more fields from the BSD stat such
as creation time (st_btime) and inode generation number (st_gen)
[Jeremy Allison, Bernd Schubert].
(9) Inode generation number: Useful for FUSE and userspace NFS servers
[Bernd Schubert].
(This was asked for but later deemed unnecessary with the
open-by-handle capability available and caused disagreement as to
whether it's a security hole or not).
(10) Extra coherency data may be useful in making backups [Andreas Dilger].
(No particular data were offered, but things like last backup
timestamp, the data version number and the DOS archive bit would come
into this category).
(11) Allow the filesystem to indicate what it can/cannot provide: A
filesystem can now say it doesn't support a standard stat feature if
that isn't available, so if, for instance, inode numbers or UIDs don't
exist or are fabricated locally...
(This requires a separate system call - I have an fsinfo() call idea
for this).
(12) Store a 16-byte volume ID in the superblock that can be returned in
struct xstat [Steve French].
(Deferred to fsinfo).
(13) Include granularity fields in the time data to indicate the
granularity of each of the times (NFSv4 time_delta) [Steve French].
(Deferred to fsinfo).
(14) FS_IOC_GETFLAGS value. These could be translated to BSD's st_flags.
Note that the Linux IOC flags are a mess and filesystems such as Ext4
define flags that aren't in linux/fs.h, so translation in the kernel
may be a necessity (or, possibly, we provide the filesystem type too).
(Some attributes are made available in stx_attributes, but the general
feeling was that the IOC flags were to ext[234]-specific and shouldn't
be exposed through statx this way).
(15) Mask of features available on file (eg: ACLs, seclabel) [Brad Boyer,
Michael Kerrisk].
(Deferred, probably to fsinfo. Finding out if there's an ACL or
seclabal might require extra filesystem operations).
(16) Femtosecond-resolution timestamps [Dave Chinner].
(A __reserved field has been left in the statx_timestamp struct for
this - if there proves to be a need).
(17) A set multiple attributes syscall to go with this.
===============
NEW SYSTEM CALL
===============
The new system call is:
int ret = statx(int dfd,
const char *filename,
unsigned int flags,
unsigned int mask,
struct statx *buffer);
The dfd, filename and flags parameters indicate the file to query, in a
similar way to fstatat(). There is no equivalent of lstat() as that can be
emulated with statx() by passing AT_SYMLINK_NOFOLLOW in flags. There is
also no equivalent of fstat() as that can be emulated by passing a NULL
filename to statx() with the fd of interest in dfd.
Whether or not statx() synchronises the attributes with the backing store
can be controlled by OR'ing a value into the flags argument (this typically
only affects network filesystems):
(1) AT_STATX_SYNC_AS_STAT tells statx() to behave as stat() does in this
respect.
(2) AT_STATX_FORCE_SYNC will require a network filesystem to synchronise
its attributes with the server - which might require data writeback to
occur to get the timestamps correct.
(3) AT_STATX_DONT_SYNC will suppress synchronisation with the server in a
network filesystem. The resulting values should be considered
approximate.
mask is a bitmask indicating the fields in struct statx that are of
interest to the caller. The user should set this to STATX_BASIC_STATS to
get the basic set returned by stat(). It should be noted that asking for
more information may entail extra I/O operations.
buffer points to the destination for the data. This must be 256 bytes in
size.
======================
MAIN ATTRIBUTES RECORD
======================
The following structures are defined in which to return the main attribute
set:
struct statx_timestamp {
__s64 tv_sec;
__s32 tv_nsec;
__s32 __reserved;
};
struct statx {
__u32 stx_mask;
__u32 stx_blksize;
__u64 stx_attributes;
__u32 stx_nlink;
__u32 stx_uid;
__u32 stx_gid;
__u16 stx_mode;
__u16 __spare0[1];
__u64 stx_ino;
__u64 stx_size;
__u64 stx_blocks;
__u64 __spare1[1];
struct statx_timestamp stx_atime;
struct statx_timestamp stx_btime;
struct statx_timestamp stx_ctime;
struct statx_timestamp stx_mtime;
__u32 stx_rdev_major;
__u32 stx_rdev_minor;
__u32 stx_dev_major;
__u32 stx_dev_minor;
__u64 __spare2[14];
};
The defined bits in request_mask and stx_mask are:
STATX_TYPE Want/got stx_mode & S_IFMT
STATX_MODE Want/got stx_mode & ~S_IFMT
STATX_NLINK Want/got stx_nlink
STATX_UID Want/got stx_uid
STATX_GID Want/got stx_gid
STATX_ATIME Want/got stx_atime{,_ns}
STATX_MTIME Want/got stx_mtime{,_ns}
STATX_CTIME Want/got stx_ctime{,_ns}
STATX_INO Want/got stx_ino
STATX_SIZE Want/got stx_size
STATX_BLOCKS Want/got stx_blocks
STATX_BASIC_STATS [The stuff in the normal stat struct]
STATX_BTIME Want/got stx_btime{,_ns}
STATX_ALL [All currently available stuff]
stx_btime is the file creation time, stx_mask is a bitmask indicating the
data provided and __spares*[] are where as-yet undefined fields can be
placed.
Time fields are structures with separate seconds and nanoseconds fields
plus a reserved field in case we want to add even finer resolution. Note
that times will be negative if before 1970; in such a case, the nanosecond
fields will also be negative if not zero.
The bits defined in the stx_attributes field convey information about a
file, how it is accessed, where it is and what it does. The following
attributes map to FS_*_FL flags and are the same numerical value:
STATX_ATTR_COMPRESSED File is compressed by the fs
STATX_ATTR_IMMUTABLE File is marked immutable
STATX_ATTR_APPEND File is append-only
STATX_ATTR_NODUMP File is not to be dumped
STATX_ATTR_ENCRYPTED File requires key to decrypt in fs
Within the kernel, the supported flags are listed by:
KSTAT_ATTR_FS_IOC_FLAGS
[Are any other IOC flags of sufficient general interest to be exposed
through this interface?]
New flags include:
STATX_ATTR_AUTOMOUNT Object is an automount trigger
These are for the use of GUI tools that might want to mark files specially,
depending on what they are.
Fields in struct statx come in a number of classes:
(0) stx_dev_*, stx_blksize.
These are local system information and are always available.
(1) stx_mode, stx_nlinks, stx_uid, stx_gid, stx_[amc]time, stx_ino,
stx_size, stx_blocks.
These will be returned whether the caller asks for them or not. The
corresponding bits in stx_mask will be set to indicate whether they
actually have valid values.
If the caller didn't ask for them, then they may be approximated. For
example, NFS won't waste any time updating them from the server,
unless as a byproduct of updating something requested.
If the values don't actually exist for the underlying object (such as
UID or GID on a DOS file), then the bit won't be set in the stx_mask,
even if the caller asked for the value. In such a case, the returned
value will be a fabrication.
Note that there are instances where the type might not be valid, for
instance Windows reparse points.
(2) stx_rdev_*.
This will be set only if stx_mode indicates we're looking at a
blockdev or a chardev, otherwise will be 0.
(3) stx_btime.
Similar to (1), except this will be set to 0 if it doesn't exist.
=======
TESTING
=======
The following test program can be used to test the statx system call:
samples/statx/test-statx.c
Just compile and run, passing it paths to the files you want to examine.
The file is built automatically if CONFIG_SAMPLES is enabled.
Here's some example output. Firstly, an NFS directory that crosses to
another FSID. Note that the AUTOMOUNT attribute is set because transiting
this directory will cause d_automount to be invoked by the VFS.
[root@andromeda ~]# /tmp/test-statx -A /warthog/data
statx(/warthog/data) = 0
results=7ff
Size: 4096 Blocks: 8 IO Block: 1048576 directory
Device: 00:26 Inode: 1703937 Links: 125
Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
Access: 2016-11-24 09:02:12.219699527+0000
Modify: 2016-11-17 10:44:36.225653653+0000
Change: 2016-11-17 10:44:36.225653653+0000
Attributes: 0000000000001000 (-------- -------- -------- -------- -------- -------- ---m---- --------)
Secondly, the result of automounting on that directory.
[root@andromeda ~]# /tmp/test-statx /warthog/data
statx(/warthog/data) = 0
results=7ff
Size: 4096 Blocks: 8 IO Block: 1048576 directory
Device: 00:27 Inode: 2 Links: 125
Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
Access: 2016-11-24 09:02:12.219699527+0000
Modify: 2016-11-17 10:44:36.225653653+0000
Change: 2016-11-17 10:44:36.225653653+0000
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2017-01-31 17:46:22 +01:00
|
|
|
int kernfs_iop_getattr(const struct path *path, struct kstat *stat,
|
|
|
|
u32 request_mask, unsigned int query_flags)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
statx: Add a system call to make enhanced file info available
Add a system call to make extended file information available, including
file creation and some attribute flags where available through the
underlying filesystem.
The getattr inode operation is altered to take two additional arguments: a
u32 request_mask and an unsigned int flags that indicate the
synchronisation mode. This change is propagated to the vfs_getattr*()
function.
Functions like vfs_stat() are now inline wrappers around new functions
vfs_statx() and vfs_statx_fd() to reduce stack usage.
========
OVERVIEW
========
The idea was initially proposed as a set of xattrs that could be retrieved
with getxattr(), but the general preference proved to be for a new syscall
with an extended stat structure.
A number of requests were gathered for features to be included. The
following have been included:
(1) Make the fields a consistent size on all arches and make them large.
(2) Spare space, request flags and information flags are provided for
future expansion.
(3) Better support for the y2038 problem [Arnd Bergmann] (tv_sec is an
__s64).
(4) Creation time: The SMB protocol carries the creation time, which could
be exported by Samba, which will in turn help CIFS make use of
FS-Cache as that can be used for coherency data (stx_btime).
This is also specified in NFSv4 as a recommended attribute and could
be exported by NFSD [Steve French].
(5) Lightweight stat: Ask for just those details of interest, and allow a
netfs (such as NFS) to approximate anything not of interest, possibly
without going to the server [Trond Myklebust, Ulrich Drepper, Andreas
Dilger] (AT_STATX_DONT_SYNC).
(6) Heavyweight stat: Force a netfs to go to the server, even if it thinks
its cached attributes are up to date [Trond Myklebust]
(AT_STATX_FORCE_SYNC).
And the following have been left out for future extension:
(7) Data version number: Could be used by userspace NFS servers [Aneesh
Kumar].
Can also be used to modify fill_post_wcc() in NFSD which retrieves
i_version directly, but has just called vfs_getattr(). It could get
it from the kstat struct if it used vfs_xgetattr() instead.
(There's disagreement on the exact semantics of a single field, since
not all filesystems do this the same way).
(8) BSD stat compatibility: Including more fields from the BSD stat such
as creation time (st_btime) and inode generation number (st_gen)
[Jeremy Allison, Bernd Schubert].
(9) Inode generation number: Useful for FUSE and userspace NFS servers
[Bernd Schubert].
(This was asked for but later deemed unnecessary with the
open-by-handle capability available and caused disagreement as to
whether it's a security hole or not).
(10) Extra coherency data may be useful in making backups [Andreas Dilger].
(No particular data were offered, but things like last backup
timestamp, the data version number and the DOS archive bit would come
into this category).
(11) Allow the filesystem to indicate what it can/cannot provide: A
filesystem can now say it doesn't support a standard stat feature if
that isn't available, so if, for instance, inode numbers or UIDs don't
exist or are fabricated locally...
(This requires a separate system call - I have an fsinfo() call idea
for this).
(12) Store a 16-byte volume ID in the superblock that can be returned in
struct xstat [Steve French].
(Deferred to fsinfo).
(13) Include granularity fields in the time data to indicate the
granularity of each of the times (NFSv4 time_delta) [Steve French].
(Deferred to fsinfo).
(14) FS_IOC_GETFLAGS value. These could be translated to BSD's st_flags.
Note that the Linux IOC flags are a mess and filesystems such as Ext4
define flags that aren't in linux/fs.h, so translation in the kernel
may be a necessity (or, possibly, we provide the filesystem type too).
(Some attributes are made available in stx_attributes, but the general
feeling was that the IOC flags were to ext[234]-specific and shouldn't
be exposed through statx this way).
(15) Mask of features available on file (eg: ACLs, seclabel) [Brad Boyer,
Michael Kerrisk].
(Deferred, probably to fsinfo. Finding out if there's an ACL or
seclabal might require extra filesystem operations).
(16) Femtosecond-resolution timestamps [Dave Chinner].
(A __reserved field has been left in the statx_timestamp struct for
this - if there proves to be a need).
(17) A set multiple attributes syscall to go with this.
===============
NEW SYSTEM CALL
===============
The new system call is:
int ret = statx(int dfd,
const char *filename,
unsigned int flags,
unsigned int mask,
struct statx *buffer);
The dfd, filename and flags parameters indicate the file to query, in a
similar way to fstatat(). There is no equivalent of lstat() as that can be
emulated with statx() by passing AT_SYMLINK_NOFOLLOW in flags. There is
also no equivalent of fstat() as that can be emulated by passing a NULL
filename to statx() with the fd of interest in dfd.
Whether or not statx() synchronises the attributes with the backing store
can be controlled by OR'ing a value into the flags argument (this typically
only affects network filesystems):
(1) AT_STATX_SYNC_AS_STAT tells statx() to behave as stat() does in this
respect.
(2) AT_STATX_FORCE_SYNC will require a network filesystem to synchronise
its attributes with the server - which might require data writeback to
occur to get the timestamps correct.
(3) AT_STATX_DONT_SYNC will suppress synchronisation with the server in a
network filesystem. The resulting values should be considered
approximate.
mask is a bitmask indicating the fields in struct statx that are of
interest to the caller. The user should set this to STATX_BASIC_STATS to
get the basic set returned by stat(). It should be noted that asking for
more information may entail extra I/O operations.
buffer points to the destination for the data. This must be 256 bytes in
size.
======================
MAIN ATTRIBUTES RECORD
======================
The following structures are defined in which to return the main attribute
set:
struct statx_timestamp {
__s64 tv_sec;
__s32 tv_nsec;
__s32 __reserved;
};
struct statx {
__u32 stx_mask;
__u32 stx_blksize;
__u64 stx_attributes;
__u32 stx_nlink;
__u32 stx_uid;
__u32 stx_gid;
__u16 stx_mode;
__u16 __spare0[1];
__u64 stx_ino;
__u64 stx_size;
__u64 stx_blocks;
__u64 __spare1[1];
struct statx_timestamp stx_atime;
struct statx_timestamp stx_btime;
struct statx_timestamp stx_ctime;
struct statx_timestamp stx_mtime;
__u32 stx_rdev_major;
__u32 stx_rdev_minor;
__u32 stx_dev_major;
__u32 stx_dev_minor;
__u64 __spare2[14];
};
The defined bits in request_mask and stx_mask are:
STATX_TYPE Want/got stx_mode & S_IFMT
STATX_MODE Want/got stx_mode & ~S_IFMT
STATX_NLINK Want/got stx_nlink
STATX_UID Want/got stx_uid
STATX_GID Want/got stx_gid
STATX_ATIME Want/got stx_atime{,_ns}
STATX_MTIME Want/got stx_mtime{,_ns}
STATX_CTIME Want/got stx_ctime{,_ns}
STATX_INO Want/got stx_ino
STATX_SIZE Want/got stx_size
STATX_BLOCKS Want/got stx_blocks
STATX_BASIC_STATS [The stuff in the normal stat struct]
STATX_BTIME Want/got stx_btime{,_ns}
STATX_ALL [All currently available stuff]
stx_btime is the file creation time, stx_mask is a bitmask indicating the
data provided and __spares*[] are where as-yet undefined fields can be
placed.
Time fields are structures with separate seconds and nanoseconds fields
plus a reserved field in case we want to add even finer resolution. Note
that times will be negative if before 1970; in such a case, the nanosecond
fields will also be negative if not zero.
The bits defined in the stx_attributes field convey information about a
file, how it is accessed, where it is and what it does. The following
attributes map to FS_*_FL flags and are the same numerical value:
STATX_ATTR_COMPRESSED File is compressed by the fs
STATX_ATTR_IMMUTABLE File is marked immutable
STATX_ATTR_APPEND File is append-only
STATX_ATTR_NODUMP File is not to be dumped
STATX_ATTR_ENCRYPTED File requires key to decrypt in fs
Within the kernel, the supported flags are listed by:
KSTAT_ATTR_FS_IOC_FLAGS
[Are any other IOC flags of sufficient general interest to be exposed
through this interface?]
New flags include:
STATX_ATTR_AUTOMOUNT Object is an automount trigger
These are for the use of GUI tools that might want to mark files specially,
depending on what they are.
Fields in struct statx come in a number of classes:
(0) stx_dev_*, stx_blksize.
These are local system information and are always available.
(1) stx_mode, stx_nlinks, stx_uid, stx_gid, stx_[amc]time, stx_ino,
stx_size, stx_blocks.
These will be returned whether the caller asks for them or not. The
corresponding bits in stx_mask will be set to indicate whether they
actually have valid values.
If the caller didn't ask for them, then they may be approximated. For
example, NFS won't waste any time updating them from the server,
unless as a byproduct of updating something requested.
If the values don't actually exist for the underlying object (such as
UID or GID on a DOS file), then the bit won't be set in the stx_mask,
even if the caller asked for the value. In such a case, the returned
value will be a fabrication.
Note that there are instances where the type might not be valid, for
instance Windows reparse points.
(2) stx_rdev_*.
This will be set only if stx_mode indicates we're looking at a
blockdev or a chardev, otherwise will be 0.
(3) stx_btime.
Similar to (1), except this will be set to 0 if it doesn't exist.
=======
TESTING
=======
The following test program can be used to test the statx system call:
samples/statx/test-statx.c
Just compile and run, passing it paths to the files you want to examine.
The file is built automatically if CONFIG_SAMPLES is enabled.
Here's some example output. Firstly, an NFS directory that crosses to
another FSID. Note that the AUTOMOUNT attribute is set because transiting
this directory will cause d_automount to be invoked by the VFS.
[root@andromeda ~]# /tmp/test-statx -A /warthog/data
statx(/warthog/data) = 0
results=7ff
Size: 4096 Blocks: 8 IO Block: 1048576 directory
Device: 00:26 Inode: 1703937 Links: 125
Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
Access: 2016-11-24 09:02:12.219699527+0000
Modify: 2016-11-17 10:44:36.225653653+0000
Change: 2016-11-17 10:44:36.225653653+0000
Attributes: 0000000000001000 (-------- -------- -------- -------- -------- -------- ---m---- --------)
Secondly, the result of automounting on that directory.
[root@andromeda ~]# /tmp/test-statx /warthog/data
statx(/warthog/data) = 0
results=7ff
Size: 4096 Blocks: 8 IO Block: 1048576 directory
Device: 00:27 Inode: 2 Links: 125
Access: (3777/drwxrwxrwx) Uid: 0 Gid: 4041
Access: 2016-11-24 09:02:12.219699527+0000
Modify: 2016-11-17 10:44:36.225653653+0000
Change: 2016-11-17 10:44:36.225653653+0000
Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
2017-01-31 17:46:22 +01:00
|
|
|
struct kernfs_node *kn = path->dentry->d_fsdata;
|
|
|
|
struct inode *inode = d_inode(path->dentry);
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_lock(&kernfs_mutex);
|
2013-12-11 20:11:58 +01:00
|
|
|
kernfs_refresh_inode(kn, inode);
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_unlock(&kernfs_mutex);
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
generic_fillattr(inode, stat);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:58 +01:00
|
|
|
static void kernfs_init_inode(struct kernfs_node *kn, struct inode *inode)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2013-12-11 20:11:53 +01:00
|
|
|
kernfs_get(kn);
|
|
|
|
inode->i_private = kn;
|
2013-12-11 20:11:57 +01:00
|
|
|
inode->i_mapping->a_ops = &kernfs_aops;
|
|
|
|
inode->i_op = &kernfs_iops;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-12-11 20:11:54 +01:00
|
|
|
set_default_inode_attr(inode, kn->mode);
|
2013-12-11 20:11:58 +01:00
|
|
|
kernfs_refresh_inode(kn, inode);
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
/* initialize inode according to type */
|
2013-12-11 20:11:56 +01:00
|
|
|
switch (kernfs_type(kn)) {
|
|
|
|
case KERNFS_DIR:
|
2013-12-11 20:11:57 +01:00
|
|
|
inode->i_op = &kernfs_dir_iops;
|
|
|
|
inode->i_fop = &kernfs_dir_fops;
|
2015-05-13 23:09:29 +02:00
|
|
|
if (kn->flags & KERNFS_EMPTY_DIR)
|
|
|
|
make_empty_dir_inode(inode);
|
2013-11-28 20:54:32 +01:00
|
|
|
break;
|
2013-12-11 20:11:56 +01:00
|
|
|
case KERNFS_FILE:
|
2013-12-11 20:11:54 +01:00
|
|
|
inode->i_size = kn->attr.size;
|
2013-12-11 20:11:57 +01:00
|
|
|
inode->i_fop = &kernfs_file_fops;
|
2013-11-28 20:54:32 +01:00
|
|
|
break;
|
2013-12-11 20:11:56 +01:00
|
|
|
case KERNFS_LINK:
|
2013-12-11 20:11:57 +01:00
|
|
|
inode->i_op = &kernfs_symlink_iops;
|
2013-11-28 20:54:32 +01:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
|
|
|
|
|
|
|
unlock_new_inode(inode);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2013-12-11 20:11:58 +01:00
|
|
|
* kernfs_get_inode - get inode for kernfs_node
|
2013-11-28 20:54:32 +01:00
|
|
|
* @sb: super block
|
2013-12-11 20:11:53 +01:00
|
|
|
* @kn: kernfs_node to allocate inode for
|
2013-11-28 20:54:32 +01:00
|
|
|
*
|
2013-12-11 20:11:53 +01:00
|
|
|
* Get inode for @kn. If such inode doesn't exist, a new inode is
|
|
|
|
* allocated and basics are initialized. New inode is returned
|
|
|
|
* locked.
|
2013-11-28 20:54:32 +01:00
|
|
|
*
|
|
|
|
* LOCKING:
|
|
|
|
* Kernel thread context (may sleep).
|
|
|
|
*
|
|
|
|
* RETURNS:
|
|
|
|
* Pointer to allocated inode on success, NULL on failure.
|
|
|
|
*/
|
2013-12-11 20:11:58 +01:00
|
|
|
struct inode *kernfs_get_inode(struct super_block *sb, struct kernfs_node *kn)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
|
|
|
struct inode *inode;
|
|
|
|
|
2013-12-11 20:11:54 +01:00
|
|
|
inode = iget_locked(sb, kn->ino);
|
2013-11-28 20:54:32 +01:00
|
|
|
if (inode && (inode->i_state & I_NEW))
|
2013-12-11 20:11:58 +01:00
|
|
|
kernfs_init_inode(kn, inode);
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
return inode;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2013-12-11 20:11:58 +01:00
|
|
|
* The kernfs_node serves as both an inode and a directory entry for
|
|
|
|
* kernfs. To prevent the kernfs inode numbers from being freed
|
|
|
|
* prematurely we take a reference to kernfs_node from the kernfs inode. A
|
2013-11-28 20:54:32 +01:00
|
|
|
* super_operations.evict_inode() implementation is needed to drop that
|
|
|
|
* reference upon inode destruction.
|
|
|
|
*/
|
2013-12-11 20:11:58 +01:00
|
|
|
void kernfs_evict_inode(struct inode *inode)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2013-12-11 20:11:53 +01:00
|
|
|
struct kernfs_node *kn = inode->i_private;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2014-04-03 23:47:49 +02:00
|
|
|
truncate_inode_pages_final(&inode->i_data);
|
2013-11-28 20:54:32 +01:00
|
|
|
clear_inode(inode);
|
2013-12-11 20:11:53 +01:00
|
|
|
kernfs_put(kn);
|
2013-11-28 20:54:32 +01:00
|
|
|
}
|
|
|
|
|
2013-12-11 20:11:58 +01:00
|
|
|
int kernfs_iop_permission(struct inode *inode, int mask)
|
2013-11-28 20:54:32 +01:00
|
|
|
{
|
2013-12-11 20:11:53 +01:00
|
|
|
struct kernfs_node *kn;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
if (mask & MAY_NOT_BLOCK)
|
|
|
|
return -ECHILD;
|
|
|
|
|
2013-12-11 20:11:53 +01:00
|
|
|
kn = inode->i_private;
|
2013-11-28 20:54:32 +01:00
|
|
|
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_lock(&kernfs_mutex);
|
2013-12-11 20:11:58 +01:00
|
|
|
kernfs_refresh_inode(kn, inode);
|
2013-12-11 20:11:57 +01:00
|
|
|
mutex_unlock(&kernfs_mutex);
|
2013-11-28 20:54:32 +01:00
|
|
|
|
|
|
|
return generic_permission(inode, mask);
|
|
|
|
}
|
2016-09-29 17:48:33 +02:00
|
|
|
|
|
|
|
static int kernfs_xattr_get(const struct xattr_handler *handler,
|
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *suffix, void *value, size_t size)
|
|
|
|
{
|
|
|
|
const char *name = xattr_full_name(handler, suffix);
|
|
|
|
struct kernfs_node *kn = inode->i_private;
|
|
|
|
struct kernfs_iattrs *attrs;
|
|
|
|
|
|
|
|
attrs = kernfs_iattrs(kn);
|
|
|
|
if (!attrs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
return simple_xattr_get(&attrs->xattrs, name, value, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int kernfs_xattr_set(const struct xattr_handler *handler,
|
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *suffix, const void *value,
|
|
|
|
size_t size, int flags)
|
|
|
|
{
|
|
|
|
const char *name = xattr_full_name(handler, suffix);
|
|
|
|
struct kernfs_node *kn = inode->i_private;
|
|
|
|
struct kernfs_iattrs *attrs;
|
|
|
|
|
|
|
|
attrs = kernfs_iattrs(kn);
|
|
|
|
if (!attrs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
return simple_xattr_set(&attrs->xattrs, name, value, size, flags);
|
|
|
|
}
|
|
|
|
|
2016-11-12 01:45:58 +01:00
|
|
|
static const struct xattr_handler kernfs_trusted_xattr_handler = {
|
2016-09-29 17:48:33 +02:00
|
|
|
.prefix = XATTR_TRUSTED_PREFIX,
|
|
|
|
.get = kernfs_xattr_get,
|
|
|
|
.set = kernfs_xattr_set,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int kernfs_security_xattr_set(const struct xattr_handler *handler,
|
|
|
|
struct dentry *unused, struct inode *inode,
|
|
|
|
const char *suffix, const void *value,
|
|
|
|
size_t size, int flags)
|
|
|
|
{
|
|
|
|
struct kernfs_node *kn = inode->i_private;
|
|
|
|
struct kernfs_iattrs *attrs;
|
|
|
|
void *secdata;
|
|
|
|
u32 secdata_len = 0;
|
|
|
|
int error;
|
|
|
|
|
|
|
|
attrs = kernfs_iattrs(kn);
|
|
|
|
if (!attrs)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
error = security_inode_setsecurity(inode, suffix, value, size, flags);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
error = security_inode_getsecctx(inode, &secdata, &secdata_len);
|
|
|
|
if (error)
|
|
|
|
return error;
|
|
|
|
|
|
|
|
mutex_lock(&kernfs_mutex);
|
|
|
|
error = kernfs_node_setsecdata(attrs, &secdata, &secdata_len);
|
|
|
|
mutex_unlock(&kernfs_mutex);
|
|
|
|
|
|
|
|
if (secdata)
|
|
|
|
security_release_secctx(secdata, secdata_len);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-11-12 01:45:58 +01:00
|
|
|
static const struct xattr_handler kernfs_security_xattr_handler = {
|
2016-09-29 17:48:33 +02:00
|
|
|
.prefix = XATTR_SECURITY_PREFIX,
|
|
|
|
.get = kernfs_xattr_get,
|
|
|
|
.set = kernfs_security_xattr_set,
|
|
|
|
};
|
|
|
|
|
|
|
|
const struct xattr_handler *kernfs_xattr_handlers[] = {
|
|
|
|
&kernfs_trusted_xattr_handler,
|
|
|
|
&kernfs_security_xattr_handler,
|
|
|
|
NULL
|
|
|
|
};
|