2011-01-26 23:03:58 +03:00
|
|
|
/*
|
|
|
|
* CDDL HEADER START
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the terms of the
|
|
|
|
* Common Development and Distribution License (the "License").
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
*
|
|
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
2022-07-12 00:16:13 +03:00
|
|
|
* or https://opensource.org/licenses/CDDL-1.0.
|
2011-01-26 23:03:58 +03:00
|
|
|
* See the License for the specific language governing permissions
|
|
|
|
* and limitations under the License.
|
|
|
|
*
|
|
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
|
|
*
|
|
|
|
* CDDL HEADER END
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2011, Lawrence Livermore National Security, LLC.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SYS_ZPL_H
|
|
|
|
#define _SYS_ZPL_H
|
|
|
|
|
2015-09-01 02:46:01 +03:00
|
|
|
#include <sys/mntent.h>
|
2011-01-26 23:03:58 +03:00
|
|
|
#include <sys/vfs.h>
|
2014-11-14 21:21:53 +03:00
|
|
|
#include <linux/aio.h>
|
2013-01-16 04:41:09 +04:00
|
|
|
#include <linux/dcache_compat.h>
|
2011-04-28 20:35:50 +04:00
|
|
|
#include <linux/exportfs.h>
|
2011-09-02 11:42:07 +04:00
|
|
|
#include <linux/falloc.h>
|
2015-09-01 02:46:01 +03:00
|
|
|
#include <linux/parser.h>
|
2013-11-15 21:59:09 +04:00
|
|
|
#include <linux/task_io_accounting_ops.h>
|
2014-11-14 21:21:53 +03:00
|
|
|
#include <linux/vfs_compat.h>
|
|
|
|
#include <linux/writeback.h>
|
|
|
|
#include <linux/xattr_compat.h>
|
2011-01-26 23:03:58 +03:00
|
|
|
|
|
|
|
/* zpl_inode.c */
|
2011-11-11 11:15:53 +04:00
|
|
|
extern void zpl_vap_init(vattr_t *vap, struct inode *dir,
|
2022-10-19 21:17:09 +03:00
|
|
|
umode_t mode, cred_t *cr, zuserns_t *mnt_ns);
|
2011-11-11 11:15:53 +04:00
|
|
|
|
2011-01-26 23:03:58 +03:00
|
|
|
extern const struct inode_operations zpl_inode_operations;
|
2019-06-22 03:35:11 +03:00
|
|
|
#ifdef HAVE_RENAME2_OPERATIONS_WRAPPER
|
|
|
|
extern const struct inode_operations_wrapper zpl_dir_inode_operations;
|
|
|
|
#else
|
2011-01-26 23:03:58 +03:00
|
|
|
extern const struct inode_operations zpl_dir_inode_operations;
|
2019-06-22 03:35:11 +03:00
|
|
|
#endif
|
2011-01-26 23:03:58 +03:00
|
|
|
extern const struct inode_operations zpl_symlink_inode_operations;
|
|
|
|
extern const struct inode_operations zpl_special_inode_operations;
|
2019-12-05 03:52:27 +03:00
|
|
|
|
|
|
|
/* zpl_file.c */
|
2011-01-26 23:03:58 +03:00
|
|
|
extern const struct address_space_operations zpl_address_space_operations;
|
|
|
|
extern const struct file_operations zpl_file_operations;
|
|
|
|
extern const struct file_operations zpl_dir_file_operations;
|
|
|
|
|
|
|
|
/* zpl_super.c */
|
2015-03-18 01:07:47 +03:00
|
|
|
extern void zpl_prune_sb(int64_t nr_to_scan, void *arg);
|
2011-12-23 00:20:43 +04:00
|
|
|
|
2011-01-26 23:03:58 +03:00
|
|
|
extern const struct super_operations zpl_super_operations;
|
2011-04-28 20:35:50 +04:00
|
|
|
extern const struct export_operations zpl_export_operations;
|
2011-01-26 23:03:58 +03:00
|
|
|
extern struct file_system_type zpl_fs_type;
|
|
|
|
|
|
|
|
/* zpl_xattr.c */
|
|
|
|
extern ssize_t zpl_xattr_list(struct dentry *dentry, char *buf, size_t size);
|
2011-05-19 23:47:32 +04:00
|
|
|
extern int zpl_xattr_security_init(struct inode *ip, struct inode *dip,
|
|
|
|
const struct qstr *qstr);
|
2013-11-03 03:40:26 +04:00
|
|
|
#if defined(CONFIG_FS_POSIX_ACL)
|
2019-11-12 19:59:06 +03:00
|
|
|
#if defined(HAVE_SET_ACL)
|
2021-05-27 18:55:49 +03:00
|
|
|
#if defined(HAVE_SET_ACL_USERNS)
|
|
|
|
extern int zpl_set_acl(struct user_namespace *userns, struct inode *ip,
|
|
|
|
struct posix_acl *acl, int type);
|
2023-01-24 22:20:50 +03:00
|
|
|
#elif defined(HAVE_SET_ACL_USERNS_DENTRY_ARG2)
|
|
|
|
extern int zpl_set_acl(struct user_namespace *userns, struct dentry *dentry,
|
|
|
|
struct posix_acl *acl, int type);
|
2021-05-27 18:55:49 +03:00
|
|
|
#else
|
2016-11-09 21:37:17 +03:00
|
|
|
extern int zpl_set_acl(struct inode *ip, struct posix_acl *acl, int type);
|
2021-05-27 18:55:49 +03:00
|
|
|
#endif /* HAVE_SET_ACL_USERNS */
|
2019-11-12 19:59:06 +03:00
|
|
|
#endif /* HAVE_SET_ACL */
|
2022-12-27 06:04:34 +03:00
|
|
|
#if defined(HAVE_GET_ACL_RCU) || defined(HAVE_GET_INODE_ACL)
|
2021-09-09 19:38:35 +03:00
|
|
|
extern struct posix_acl *zpl_get_acl(struct inode *ip, int type, bool rcu);
|
|
|
|
#elif defined(HAVE_GET_ACL)
|
2013-10-28 20:22:15 +04:00
|
|
|
extern struct posix_acl *zpl_get_acl(struct inode *ip, int type);
|
2021-09-09 19:38:35 +03:00
|
|
|
#endif
|
2013-10-28 20:22:15 +04:00
|
|
|
extern int zpl_init_acl(struct inode *ip, struct inode *dir);
|
|
|
|
extern int zpl_chmod_acl(struct inode *ip);
|
2013-11-03 03:40:26 +04:00
|
|
|
#else
|
|
|
|
static inline int
|
|
|
|
zpl_init_acl(struct inode *ip, struct inode *dir)
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
zpl_chmod_acl(struct inode *ip)
|
|
|
|
{
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_FS_POSIX_ACL */
|
2011-01-26 23:03:58 +03:00
|
|
|
|
2011-02-11 03:16:52 +03:00
|
|
|
extern xattr_handler_t *zpl_xattr_handlers[];
|
2011-01-26 23:03:58 +03:00
|
|
|
|
2011-11-11 11:15:53 +04:00
|
|
|
/* zpl_ctldir.c */
|
|
|
|
extern const struct file_operations zpl_fops_root;
|
|
|
|
extern const struct inode_operations zpl_ops_root;
|
|
|
|
|
|
|
|
extern const struct file_operations zpl_fops_snapdir;
|
|
|
|
extern const struct inode_operations zpl_ops_snapdir;
|
|
|
|
|
|
|
|
extern const struct file_operations zpl_fops_shares;
|
|
|
|
extern const struct inode_operations zpl_ops_shares;
|
|
|
|
|
2016-05-19 00:30:20 +03:00
|
|
|
#if defined(HAVE_VFS_ITERATE) || defined(HAVE_VFS_ITERATE_SHARED)
|
2013-08-07 16:53:45 +04:00
|
|
|
|
2018-05-03 01:01:24 +03:00
|
|
|
#define ZPL_DIR_CONTEXT_INIT(_dirent, _actor, _pos) { \
|
2013-08-07 16:53:45 +04:00
|
|
|
.actor = _actor, \
|
|
|
|
.pos = _pos, \
|
|
|
|
}
|
|
|
|
|
2018-05-03 01:01:24 +03:00
|
|
|
typedef struct dir_context zpl_dir_context_t;
|
|
|
|
|
|
|
|
#define zpl_dir_emit dir_emit
|
|
|
|
#define zpl_dir_emit_dot dir_emit_dot
|
|
|
|
#define zpl_dir_emit_dotdot dir_emit_dotdot
|
|
|
|
#define zpl_dir_emit_dots dir_emit_dots
|
|
|
|
|
2013-08-07 16:53:45 +04:00
|
|
|
#else
|
|
|
|
|
2018-05-03 01:01:24 +03:00
|
|
|
typedef struct zpl_dir_context {
|
2013-08-07 16:53:45 +04:00
|
|
|
void *dirent;
|
|
|
|
const filldir_t actor;
|
|
|
|
loff_t pos;
|
2018-05-03 01:01:24 +03:00
|
|
|
} zpl_dir_context_t;
|
2013-08-07 16:53:45 +04:00
|
|
|
|
2018-05-03 01:01:24 +03:00
|
|
|
#define ZPL_DIR_CONTEXT_INIT(_dirent, _actor, _pos) { \
|
2013-08-07 16:53:45 +04:00
|
|
|
.dirent = _dirent, \
|
|
|
|
.actor = _actor, \
|
|
|
|
.pos = _pos, \
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
2018-05-03 01:01:24 +03:00
|
|
|
zpl_dir_emit(zpl_dir_context_t *ctx, const char *name, int namelen,
|
2013-08-07 16:53:45 +04:00
|
|
|
uint64_t ino, unsigned type)
|
|
|
|
{
|
2016-12-12 21:46:26 +03:00
|
|
|
return (!ctx->actor(ctx->dirent, name, namelen, ctx->pos, ino, type));
|
2013-08-07 16:53:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
2018-05-03 01:01:24 +03:00
|
|
|
zpl_dir_emit_dot(struct file *file, zpl_dir_context_t *ctx)
|
2013-08-07 16:53:45 +04:00
|
|
|
{
|
2013-11-01 23:26:11 +04:00
|
|
|
return (ctx->actor(ctx->dirent, ".", 1, ctx->pos,
|
2016-08-04 18:57:35 +03:00
|
|
|
file_inode(file)->i_ino, DT_DIR) == 0);
|
2013-08-07 16:53:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
2018-05-03 01:01:24 +03:00
|
|
|
zpl_dir_emit_dotdot(struct file *file, zpl_dir_context_t *ctx)
|
2013-08-07 16:53:45 +04:00
|
|
|
{
|
2013-11-01 23:26:11 +04:00
|
|
|
return (ctx->actor(ctx->dirent, "..", 2, ctx->pos,
|
2016-08-04 18:57:35 +03:00
|
|
|
parent_ino(file_dentry(file)), DT_DIR) == 0);
|
2013-08-07 16:53:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool
|
2018-05-03 01:01:24 +03:00
|
|
|
zpl_dir_emit_dots(struct file *file, zpl_dir_context_t *ctx)
|
2013-08-07 16:53:45 +04:00
|
|
|
{
|
|
|
|
if (ctx->pos == 0) {
|
2018-05-03 01:01:24 +03:00
|
|
|
if (!zpl_dir_emit_dot(file, ctx))
|
2013-11-01 23:26:11 +04:00
|
|
|
return (false);
|
2013-08-07 16:53:45 +04:00
|
|
|
ctx->pos = 1;
|
|
|
|
}
|
|
|
|
if (ctx->pos == 1) {
|
2018-05-03 01:01:24 +03:00
|
|
|
if (!zpl_dir_emit_dotdot(file, ctx))
|
2013-11-01 23:26:11 +04:00
|
|
|
return (false);
|
2013-08-07 16:53:45 +04:00
|
|
|
ctx->pos = 2;
|
|
|
|
}
|
2013-11-01 23:26:11 +04:00
|
|
|
return (true);
|
2013-08-07 16:53:45 +04:00
|
|
|
}
|
|
|
|
#endif /* HAVE_VFS_ITERATE */
|
|
|
|
|
2020-02-06 23:37:25 +03:00
|
|
|
#if defined(HAVE_INODE_TIMESTAMP_TRUNCATE)
|
|
|
|
#define zpl_inode_timestamp_truncate(ts, ip) timestamp_truncate(ts, ip)
|
|
|
|
#elif defined(HAVE_INODE_TIMESPEC64_TIMES)
|
|
|
|
#define zpl_inode_timestamp_truncate(ts, ip) \
|
|
|
|
timespec64_trunc(ts, (ip)->i_sb->s_time_gran)
|
2018-06-20 07:51:18 +03:00
|
|
|
#else
|
2020-02-06 23:37:25 +03:00
|
|
|
#define zpl_inode_timestamp_truncate(ts, ip) \
|
|
|
|
timespec_trunc(ts, (ip)->i_sb->s_time_gran)
|
2018-06-20 07:51:18 +03:00
|
|
|
#endif
|
|
|
|
|
2021-03-20 07:00:59 +03:00
|
|
|
#if defined(HAVE_INODE_OWNER_OR_CAPABLE)
|
|
|
|
#define zpl_inode_owner_or_capable(ns, ip) inode_owner_or_capable(ip)
|
|
|
|
#elif defined(HAVE_INODE_OWNER_OR_CAPABLE_IDMAPPED)
|
|
|
|
#define zpl_inode_owner_or_capable(ns, ip) inode_owner_or_capable(ns, ip)
|
|
|
|
#else
|
|
|
|
#error "Unsupported kernel"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SETATTR_PREPARE_USERNS
|
|
|
|
#define zpl_setattr_prepare(ns, dentry, ia) setattr_prepare(ns, dentry, ia)
|
|
|
|
#else
|
|
|
|
/*
|
|
|
|
* Use kernel-provided version, or our own from
|
|
|
|
* linux/vfs_compat.h
|
|
|
|
*/
|
|
|
|
#define zpl_setattr_prepare(ns, dentry, ia) setattr_prepare(dentry, ia)
|
|
|
|
#endif
|
|
|
|
|
2011-01-26 23:03:58 +03:00
|
|
|
#endif /* _SYS_ZPL_H */
|